From 995a6ce3414b59d7541c41eb9085a0a473f79199 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Mon, 23 Sep 2013 11:48:14 -0400
Subject: [PATCH 001/280] jQuery.widget: Started adding method examples.
---
entries/jQuery.widget.xml | 64 +++++++++++++++++++++++++++++++++++++++
1 file changed, 64 insertions(+)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index 61fbe232..6feac249 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -186,11 +186,27 @@
The _create()
method is the widget's constructor.
There are no parameters, but this.element
and this.options
are already set.
+
+ Set the background color of the widget's element based on an option.
+
+
The public destroy()
method cleans up all common data, events, etc. and then delegates out to _destroy()
for custom, widget-specific, cleanup.
+
+ Remove a class from the widget's element when the wiget is destroyed.
+
+
@@ -289,6 +305,12 @@
The number of milliseconds to wait before invoking the function. Defaults to 0
.
+
+ Call the _foo()
method on the widget after 100 milliseconds.
+
+
@@ -307,6 +329,12 @@
The element(s) to apply the focusable behavior to.
+
+ Apply focusable styling to a set of elements within the widget.
+
+
@@ -325,6 +353,23 @@
A hash of data associated with the event.
+
+ Trigger a search
event whenever a key is pressed.
+
+
@@ -340,6 +385,15 @@
Callback to invoke after the element has been fully shown.
+
+ Pass along the show
option for custom animations.
+
+
@@ -355,6 +409,16 @@
Callback to invoke after the element has been fully hidden.
+
+ Pass along the hide
option for custom animations.
+
+
From 33fa3448011f180a78baa2f464bf2423206167ae Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Sat, 28 Sep 2013 14:58:26 -0400
Subject: [PATCH 002/280] jQuery.widget: Example for _getCreateEventData
method.
---
entries/jQuery.widget.xml | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index 6feac249..2331e8fe 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -212,6 +212,14 @@ _destroy: function() {
All widgets trigger the create
event. By default, no data is provided in the event, but this method can return an object which will be passed as the create
event's data.
+
+ Pass the widget's options create
event handlers as an argument.
+
+
From 99f466b922d63a95d42acef0b1179bb38cf21e1f Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Tue, 1 Oct 2013 19:18:06 +0300
Subject: [PATCH 003/280] jQuery.widget: Adding an example for
_getCreateOptions()
---
entries/jQuery.widget.xml | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index 2331e8fe..52d8a9cb 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -213,7 +213,7 @@ _destroy: function() {
All widgets trigger the create
event. By default, no data is provided in the event, but this method can return an object which will be passed as the create
event's data.
- Pass the widget's options create
event handlers as an argument.
+ Pass the widget's options to create
event handlers as an argument.
+
From 9daa400331d4285e5534a3405ef1c6ec20002971 Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Tue, 1 Oct 2013 19:28:48 +0300
Subject: [PATCH 004/280] jQuery.widget: Add example for _hoverable()
---
entries/jQuery.widget.xml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index 52d8a9cb..963b4940 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -336,6 +336,12 @@ this._delay( this._foo, 100 );
The element(s) to apply the hoverable behavior to.
+
+ Apply the ui-state-hover
class to all <div>
s within the element on hover.
+
+
From 5cff6e47ce3fe71e79b4a2377b730ea75ea6d32c Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Wed, 2 Oct 2013 18:02:15 +0300
Subject: [PATCH 005/280] jQuery.widget: Adding the only logical example I can
think of for _init().
---
entries/jQuery.widget.xml | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index 963b4940..33d50faa 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -240,6 +240,16 @@ _getCreateOptions: function() {
Note: Initialization should only be handled if there is a logical action to perform on successive calls to the widget with no arguments.
+
+ Call the open()
method if the autoOpen
option is set.
+
+
@@ -337,7 +347,7 @@ this._delay( this._foo, 100 );
The element(s) to apply the hoverable behavior to.
- Apply the ui-state-hover
class to all <div>
s within the element on hover.
+ Apply hoverable styling to all <div>
s within the element on hover.
From d9b092f0b455a2b8aea226253e62eccd85df1eae Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Thu, 3 Oct 2013 19:44:33 +0300
Subject: [PATCH 006/280] jQuery.widget: Adding an example for _setOptions().
---
entries/jQuery.widget.xml | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index 33d50faa..4e46088e 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -256,6 +256,26 @@ _init: function() {
Called whenever the option()
method is called, regardless of the form in which the option()
method was called.
Overriding this is useful if you can defer processor-intensive changes for multiple option changes.
+
+ Call a resize()
method if the height
or width
options change.
+
+
A map of option-value pairs to set.
From 96ccdbd2e67855b26726d03b30daf1865c836d70 Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Thu, 3 Oct 2013 19:52:58 +0300
Subject: [PATCH 007/280] jQuery.widget: Adding example for _setOption().
---
entries/jQuery.widget.xml | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index 4e46088e..1bc4ea75 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -290,6 +290,20 @@ _setOptions: function( options ) {
A value to set for the option.
+
+ Update a widget's element when its height
or width
option changes.
+
+
From 53007d126d76150a2e02aee9b7ebfe51a6a66b80 Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Thu, 3 Oct 2013 22:29:50 +0300
Subject: [PATCH 008/280] jQuery.widget: Adding example for _on().
---
entries/jQuery.widget.xml | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index 1bc4ea75..fb372f73 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -325,6 +325,16 @@ _setOption: function( key, value ) {
A map in which the string keys represent the event type and optional selector for delegation, and the values represent a handler function to be called for the event.
+
+ Prevent the default action of all links clicked within the widget's element.
+
+
From 7333b3098bb66d6e129e9b9ec3f0ebb59894e701 Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Thu, 3 Oct 2013 23:07:26 +0300
Subject: [PATCH 009/280] jQuery.widget: Adding example for _off().
---
entries/jQuery.widget.xml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index fb372f73..c1ce4e60 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -348,6 +348,12 @@ this._on( this.element, {
One or more space-separated event types.
+
+ Unbind all click events from the widget's element.
+
+
From 6817f59627d201f3347727f01cacb7a6ba9d8eb3 Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Thu, 3 Oct 2013 23:22:31 +0300
Subject: [PATCH 010/280] jQuery.widget: Adding examples for _super() and
_superApply().
---
entries/jQuery.widget.xml | 24 ++++++++++++++++++++----
1 file changed, 20 insertions(+), 4 deletions(-)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index c1ce4e60..23d22a4a 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -265,7 +265,7 @@ _setOptions: function( options ) {
$.each( options, function( key, value ) {
that._setOption( key, value );
- if ( key == "height" || key == "width" ) {
+ if ( key === "height" || key === "width" ) {
resize = true;
}
});
@@ -294,10 +294,10 @@ _setOptions: function( options ) {
Update a widget's element when its height
or width
option changes.
+
@@ -367,6 +375,14 @@ this._off( this.element, "click" );
Array of arguments to pass to the parent method.
+
+ Call the parent widget's _setOption()
method.
+
+
@@ -414,7 +430,7 @@ this._hoverable( this.element.find( "div" ) );
Apply focusable styling to a set of elements within the widget.
From 8245cc795cdd66201f9fdb6b624998a22fd8410a Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Sun, 6 Oct 2013 22:15:20 +0300
Subject: [PATCH 011/280] jQuery.widget: Adding a code example for destroy().
---
entries/jQuery.widget.xml | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index 23d22a4a..104b25f2 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -176,7 +176,22 @@
-
+
+
+ Removes the functionality completely. This will return the element back to its pre-init state.
+
+
+ Destroy the widget when any of its anchors are clicked.
+
+
+
From 5d6024a22e63055a1ad7266ae757d0612a6633d1 Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Sun, 6 Oct 2013 22:20:34 +0300
Subject: [PATCH 012/280] jQuery.widget: Change the _super() and _superApply()
examples to do something other than the default behavior.
---
entries/jQuery.widget.xml | 16 ++++++++++++----
1 file changed, 12 insertions(+), 4 deletions(-)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index 104b25f2..9a7e7144 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -375,10 +375,14 @@ this._off( this.element, "click" );
Invokes the method of the same name from the parent widget, with any specified arguments. Essentially .call()
.
- Call the parent widget's _setOption()
method.
+ Handle the width option and call the parent widget's _setOption()
method to handle all other options.
@@ -391,10 +395,14 @@ _setOption: function( key, value ) {
Array of arguments to pass to the parent method.
- Call the parent widget's _setOption()
method.
+ Handle the width option and call the parent widget's _setOption()
method to handle all other options.
From dfb2a85dcabf04f197eb8f8432398b7280a0cdaf Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Sun, 6 Oct 2013 22:28:39 +0300
Subject: [PATCH 013/280] jQuery.widget: Fix context of _hide() and _show()
examples.
---
entries/jQuery.widget.xml | 82 +++++++++++++++++++--------------------
1 file changed, 41 insertions(+), 41 deletions(-)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index 9a7e7144..459f2ff8 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -184,10 +184,10 @@
Destroy the widget when any of its anchors are clicked.
@@ -275,19 +275,19 @@ _init: function() {
Call a resize()
method if the height
or width
options change.
@@ -309,13 +309,13 @@ _setOptions: function( options ) {
Update a widget's element when its height
or width
option changes.
@@ -344,9 +344,9 @@ _setOption: function( key, value ) {
Prevent the default action of all links clicked within the widget's element.
@@ -378,11 +378,11 @@ this._off( this.element, "click" );
Handle the width option and call the parent widget's _setOption()
method to handle all other options.
@@ -398,11 +398,11 @@ _setOption: function( key, value ) {
Handle the width option and call the parent widget's _setOption()
method to handle all other options.
@@ -511,8 +511,8 @@ this._on( this.element, {
@@ -535,8 +535,8 @@ this._show( this.element, this.options.show, function() {
From 7b373103b4cb3eafd98c45c220f9d3e9ec66ef1d Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Sun, 6 Oct 2013 22:43:38 +0300
Subject: [PATCH 014/280] jQuery.widget: Adding code examples for enable(),
disable(), and widget().
---
entries/jQuery.widget.xml | 48 ++++++++++++++++++++++++++++++++++++---
1 file changed, 45 insertions(+), 3 deletions(-)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index 459f2ff8..2d08de87 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -192,10 +192,52 @@ this._on( this.element, {
]]>
-
-
+
+
+ Disables the .
+
+
+ Disable the widget when any of its anchors are clicked.
+
+
+
+
+
+ Enables the .
+
+
+ Enable the widget when any of its anchors are clicked.
+
+
+
-
+
+
+ Returns a jQuery
object containing the .
+
+
+ Place a red border around the widget's original element when it's created.
+
+
+
The _create()
method is the widget's constructor.
From 46143c2163dc7bd3ce403e45ee9b995ace7d1221 Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Sun, 6 Oct 2013 22:58:40 +0300
Subject: [PATCH 015/280] jQuery.widget: Adding code examples for the various
permutations of the option() method.
---
entries/jQuery.widget.xml | 60 ++++++++++++++++++++++++++++++++++++++-
1 file changed, 59 insertions(+), 1 deletion(-)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index 2d08de87..9dd7a311 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -224,7 +224,65 @@ this._on( this.element, {
]]>
-
+
+
+ Sets one or more options for the .
+
+
+ Gets the value currently associated with the specified optionName
.
+
+ The name of the option to get.
+
+
+ Retrieve the value of the width
option.
+
+
+
+
+ Gets an object containing key/value pairs representing the current options hash.
+
+ Log the key and value of each of the widget's options for debugging.
+
+
+
+
+ Sets the value of the option associated with the specified optionName
.
+
+ The name of the option to set.
+
+
+ A value to set for the option.
+
+
+ Set the width
option to 500
.
+
+
+
+
+ Sets one or more options for the .
+
+ A map of option-value pairs to set.
+
+
+ Set the height
and width
options to 500
.
+
+
+
+
Returns a jQuery
object containing the .
From 3139dbf276efe0c2db7a2081cef78b5d231a43ba Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Mon, 7 Oct 2013 10:42:52 -0400
Subject: [PATCH 016/280] jQuery.widget: Final updates to widget method
examples. Fixes #76.
---
entries/jQuery.widget.xml | 20 +++++++++-----------
1 file changed, 9 insertions(+), 11 deletions(-)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index 9dd7a311..95158576 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -475,14 +475,13 @@ this._off( this.element, "click" );
Invokes the method of the same name from the parent widget, with any specified arguments. Essentially .call()
.
- Handle the width option and call the parent widget's _setOption()
method to handle all other options.
+ Handle title
option updates and call the parent widget's _setOption()
to update the internal storage of the option.
@@ -495,14 +494,13 @@ _setOption: function( key, value ) {
Array of arguments to pass to the parent method.
- Handle the width option and call the parent widget's _setOption()
method to handle all other options.
+ Handle title
option updates and call the parent widget's _setOption()
to update the internal storage of the option.
@@ -636,7 +634,7 @@ this._show( this.element, this.options.show, function() {
this._hide( this.element, this.options.hide, function() {
// Remove the element from the DOM when it's fully hidden.
- this.remove();
+ $( this ).remove();
});
]]>
From ac9138253128d4e3827283569f57d98fe98454ed Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Wed, 9 Oct 2013 12:49:59 -0400
Subject: [PATCH 017/280] 1.10.5
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 491bc20d..6f64bb6a 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "api.jqueryui.com",
"title": "jQuery UI API Docs",
"description": "API reference documentation for jQuery UI.",
- "version": "1.10.4",
+ "version": "1.10.5",
"homepage": "https://github.com/jquery/api.jqueryui.com",
"author": {
"name": "jQuery Foundation (http://jquery.org/)"
From 806e5394664f19d24fcf1354360157515be285dc Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Fri, 11 Oct 2013 10:37:24 -0400
Subject: [PATCH 018/280] jQuery.widget: Documenting _super()'s optional string
argument(s). Fixes #179.
---
entries/jQuery.widget.xml | 5 +++++
package.json | 2 +-
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index 95158576..d6173d36 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -474,6 +474,11 @@ this._off( this.element, "click" );
Invokes the method of the same name from the parent widget, with any specified arguments. Essentially .call()
.
+
+
+ Zero to many string arguments to pass to the parent widget's method.
+
+
Handle title
option updates and call the parent widget's _setOption()
to update the internal storage of the option.
Invokes the method of the same name from the parent widget, with any specified arguments. Essentially .call()
.
-
+
- Zero to many string arguments to pass to the parent widget's method.
+ Zero to many arguments to pass to the parent widget's method.
From ee9939715cea1c4245d893dc391ddbe8488cc924 Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Mon, 14 Oct 2013 08:44:36 -0400
Subject: [PATCH 020/280] Autocomplete: Wrong argument type for change, focus,
and select events. Fixes #181.
---
entries/autocomplete.xml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/entries/autocomplete.xml b/entries/autocomplete.xml
index d0d60fa3..09f71ced 100644
--- a/entries/autocomplete.xml
+++ b/entries/autocomplete.xml
@@ -104,7 +104,7 @@
Triggered when the field is blurred, if the value has changed.
-
+
The item selected from the menu, if any. Otherwise the property is null
.
@@ -122,7 +122,7 @@
-
+
The focused item.
@@ -153,8 +153,8 @@
-
- The selected item.
+
+ An Object with label
and value
properties for the selected option.
From a6989a47404d2f6f0828cd32788179f1d80ea901 Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Wed, 23 Oct 2013 10:03:43 -0700
Subject: [PATCH 021/280] Upgrading grunt-jquery-content to 0.10.7.
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 1adb4f0f..ebae25c2 100644
--- a/package.json
+++ b/package.json
@@ -24,7 +24,7 @@
"grunt": "0.3.17",
"grunt-clean": "0.3.0",
"grunt-wordpress": "1.0.7",
- "grunt-jquery-content": "0.10.6",
+ "grunt-jquery-content": "0.10.7",
"grunt-check-modules": "0.1.0"
},
"devDependencies": {},
From eadec64ec0f25fa91fbfca8528e5d7b380fc8e3e Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Wed, 23 Oct 2013 10:04:02 -0700
Subject: [PATCH 022/280] 1.10.6
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index ebae25c2..d59c22e1 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "api.jqueryui.com",
"title": "jQuery UI API Docs",
"description": "API reference documentation for jQuery UI.",
- "version": "1.10.5",
+ "version": "1.10.6",
"homepage": "https://github.com/jquery/api.jqueryui.com",
"author": {
"name": "jQuery Foundation (http://jquery.org/)"
From c44a59b8f2f0c2bda4280303ddbb75413c805cba Mon Sep 17 00:00:00 2001
From: Anne-Gaelle Colom
Date: Mon, 4 Nov 2013 15:24:00 +0000
Subject: [PATCH 023/280] jQuery.widget: minor cleanup
---
entries/jQuery.widget.xml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index 4bba8aa5..ea6d748f 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -19,7 +19,7 @@
jQuery UI contains many widgets that maintain state and therefore have a slightly different usage pattern than typical jQuery plugins. All of jQuery UI's widgets use the same patterns, which is defined by the widget factory. So if you learn how to use one widget, then you'll know how to use all of them.
- Note: This documentation shows examples using the progressbar widget but the syntax is the same for every widget.
+ Note: This documentation shows examples using the progressbar widget but the syntax is the same for every widget.
Initialization
@@ -113,11 +113,11 @@
$( "#elem" ).data( "ui-progressbar" );
- Whether an element has a given widget bound to it can be determined using the :data
selector.
+ Whether an element has a given widget bound to it can be determined using the :data
selector.
$( "#elem" ).is( ":data( 'ui-progressbar' )" ); // true
- $( "#elem" ).is( ":data( 'ui-draggable' )" ); //false
+ $( "#elem" ).is( ":data( 'ui-draggable' )" ); // false
You can also use :data
to get a list of all elements that are instances of a given widget.
@@ -150,7 +150,7 @@
version : The string version of the widget. For jQuery UI widgets this will be set to the version of jQuery UI the widget is using. Widget developers have to set this property in their prototype explicitly.
- widgetEventPrefix : The prefix prepended to the name of events fired from this widget. For example the widgetEventPrefix
of the draggable widget is "drag"
, therefore when a draggable is created, the name of the event fired is "dragcreate"
. By default the widgetEventPrefix
of a widget is its name. Note: This property is deprecated and will be removed in a later release. Event names will be changed to widgetName:eventName (e.g. "draggable:create"
.
+ widgetEventPrefix : The prefix prepended to the name of events fired from this widget. For example the widgetEventPrefix
of the draggable widget is "drag"
, therefore when a draggable is created, the name of the event fired is "dragcreate"
. By default the widgetEventPrefix
of a widget is its name. Note: This property is deprecated and will be removed in a later release. Event names will be changed to widgetName:eventName (e.g. "draggable:create"
.
widgetFullName : The full name of the widget including the namespace. For $.widget( "myNamespace.myWidget", {} )
, widgetFullName
will be "myNamespace-myWidget"
.
From f1f6b9f3c5f2f426bfa1bff6d08f2431104dda25 Mon Sep 17 00:00:00 2001
From: Anne-Gaelle Colom
Date: Mon, 4 Nov 2013 15:32:06 +0000
Subject: [PATCH 024/280] widget-theming: added missing trailing slash
---
includes/widget-theming.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/includes/widget-theming.xml b/includes/widget-theming.xml
index 05491004..79812e92 100644
--- a/includes/widget-theming.xml
+++ b/includes/widget-theming.xml
@@ -2,5 +2,5 @@
Theming
-
The widget uses the jQuery UI CSS framework to style its look and feel. If specific styling is needed, the following CSS class names can be used:
+
The widget uses the jQuery UI CSS framework to style its look and feel. If specific styling is needed, the following CSS class names can be used:
From 7ed578a5264906e86cb5be0cb2537f1d77abc9d0 Mon Sep 17 00:00:00 2001
From: Anne-Gaelle Colom
Date: Mon, 4 Nov 2013 15:48:20 +0000
Subject: [PATCH 025/280] various files: added the missing trailing slash in
links, based on regexp search by Scott
---
entries/autocomplete.xml | 2 +-
entries/dialog.xml | 2 +-
entries/removeUniqueId.xml | 2 +-
entries/tabs.xml | 2 +-
entries/tooltip.xml | 2 +-
entries/uniqueId.xml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/entries/autocomplete.xml b/entries/autocomplete.xml
index 09f71ced..8d6bbd18 100644
--- a/entries/autocomplete.xml
+++ b/entries/autocomplete.xml
@@ -63,7 +63,7 @@
The minimum number of characters a user must type before a search is performed. Zero is useful for local data with just a few items, but a higher value should be used when a single character search could match a few thousand items.
- Identifies the position of the suggestions menu in relation to the associated input element. The of
option defaults to the input element, but you can specify another element to position against. You can refer to the jQuery UI Position utility for more details about the various options.
+ Identifies the position of the suggestions menu in relation to the associated input element. The of
option defaults to the input element, but you can specify another element to position against. You can refer to the jQuery UI Position utility for more details about the various options.
diff --git a/entries/dialog.xml b/entries/dialog.xml
index d0151e63..0935e2d7 100644
--- a/entries/dialog.xml
+++ b/entries/dialog.xml
@@ -177,7 +177,7 @@
Note: The String
and Array
forms are deprecated.
- Identifies the position of the dialog when opened. The of
option defaults to the window, but you can specify another element to position against. You can refer to the jQuery UI Position utility for more details about the various options.
+ Identifies the position of the dialog when opened. The of
option defaults to the window, but you can specify another element to position against. You can refer to the jQuery UI Position utility for more details about the various options.
A string representing the position within the viewport. Possible values: "center"
, "left"
, "right"
, "top"
, "bottom"
.
diff --git a/entries/removeUniqueId.xml b/entries/removeUniqueId.xml
index b9ef87c5..11814843 100644
--- a/entries/removeUniqueId.xml
+++ b/entries/removeUniqueId.xml
@@ -6,7 +6,7 @@
1.9
- The .removeUniqueId()
will remove ids that were set by .uniqueId()
. Calling .removeUniqueId()
on an element that did not have its id set by .uniqueId()
will have no affect, even if the element has an id.
+ The .removeUniqueId()
will remove ids that were set by .uniqueId()
. Calling .removeUniqueId()
on an element that did not have its id set by .uniqueId()
will have no affect, even if the element has an id.
diff --git a/entries/tabs.xml b/entries/tabs.xml
index 6f48a711..f671beef 100644
--- a/entries/tabs.xml
+++ b/entries/tabs.xml
@@ -182,7 +182,7 @@
The jqXHR
object that is requesting the content.
- The settings that will be used by jQuery.ajax
to request the content.
+ The settings that will be used by jQuery.ajax
to request the content.
diff --git a/entries/tooltip.xml b/entries/tooltip.xml
index 766bbdbd..dd7def9a 100644
--- a/entries/tooltip.xml
+++ b/entries/tooltip.xml
@@ -64,7 +64,7 @@
- Identifies the position of the tooltip in relation to the associated target element. The of
option defaults to the target element, but you can specify another element to position against. You can refer to the jQuery UI Position utility for more details about the various options.
+ Identifies the position of the tooltip in relation to the associated target element. The of
option defaults to the target element, but you can specify another element to position against. You can refer to the jQuery UI Position utility for more details about the various options.
diff --git a/entries/uniqueId.xml b/entries/uniqueId.xml
index 3cf76c2f..7cd1e710 100644
--- a/entries/uniqueId.xml
+++ b/entries/uniqueId.xml
@@ -6,7 +6,7 @@
1.9
- Many widgets need to generate unique ids for elements. .uniqueId()
will check if the element has an id, and if not, it will generate one and set it on the element. It is safe to call .uniqueId()
on an element without checking if it already has an id. If/when the widget needs to clean up after itself, the .removeUniqueId()
method will remove the id from the element if it was added by .uniqueId()
and leave the id alone if it was not. .removeUniqueId()
is able to be smart about this because the generated ids have a prefix of "ui-id-"
.
+ Many widgets need to generate unique ids for elements. .uniqueId()
will check if the element has an id, and if not, it will generate one and set it on the element. It is safe to call .uniqueId()
on an element without checking if it already has an id. If/when the widget needs to clean up after itself, the .removeUniqueId()
method will remove the id from the element if it was added by .uniqueId()
and leave the id alone if it was not. .removeUniqueId()
is able to be smart about this because the generated ids have a prefix of "ui-id-"
.
From 1894f0421030a4338196551335630e1db998253f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Mon, 18 Nov 2013 13:58:26 -0500
Subject: [PATCH 026/280] Upgrade to grunt-jquery-content 0.10.8 and lint
include files.
---
grunt.js | 2 +-
package.json | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/grunt.js b/grunt.js
index 9f62f6d4..431baddd 100644
--- a/grunt.js
+++ b/grunt.js
@@ -19,7 +19,7 @@ grunt.initConfig({
tasks: "deploy"
},
xmllint: {
- all: [].concat( entryFiles, "categories.xml", "entries2html.xsl", "notes.xsl" )
+ all: [].concat( entryFiles, grunt.file.expandFiles( "includes/**" ), "categories.xml", "entries2html.xsl", "notes.xsl" )
},
xmltidy: {
all: [].concat( entryFiles, "categories.xml" )
diff --git a/package.json b/package.json
index d59c22e1..fd2aa78f 100644
--- a/package.json
+++ b/package.json
@@ -24,7 +24,7 @@
"grunt": "0.3.17",
"grunt-clean": "0.3.0",
"grunt-wordpress": "1.0.7",
- "grunt-jquery-content": "0.10.7",
+ "grunt-jquery-content": "0.10.8",
"grunt-check-modules": "0.1.0"
},
"devDependencies": {},
From 85ad6ee3584c4fb1979b504bade4cf2386539b15 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Mon, 18 Nov 2013 14:00:50 -0500
Subject: [PATCH 027/280] cleanup
---
grunt.js | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/grunt.js b/grunt.js
index 431baddd..26a9b080 100644
--- a/grunt.js
+++ b/grunt.js
@@ -19,7 +19,8 @@ grunt.initConfig({
tasks: "deploy"
},
xmllint: {
- all: [].concat( entryFiles, grunt.file.expandFiles( "includes/**" ), "categories.xml", "entries2html.xsl", "notes.xsl" )
+ all: [].concat( entryFiles, grunt.file.expandFiles( "includes/**" ),
+ "categories.xml", "entries2html.xsl", "notes.xsl" )
},
xmltidy: {
all: [].concat( entryFiles, "categories.xml" )
From 6d402ce294479ed48462d890d9e232f0daf4386c Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Fri, 22 Nov 2013 15:42:42 -0500
Subject: [PATCH 028/280] Dialog: "slow" isn't a valid value for the show
option. "fade" is.
---
entries/dialog.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/entries/dialog.xml b/entries/dialog.xml
index 0935e2d7..313b77a7 100644
--- a/entries/dialog.xml
+++ b/entries/dialog.xml
@@ -190,7 +190,7 @@
If set to true
, the dialog will be resizable. Requires the jQuery UI Resizable widget to be included.
-
+
If and how to animate the showing of the dialog.
From d4465ffbc35a4c38c8f3877f1f98dc45da1485b2 Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Fri, 22 Nov 2013 16:03:46 -0500
Subject: [PATCH 029/280] Dialog: Use common include for show and hide options.
---
entries/dialog.xml | 36 +++---------------------------------
1 file changed, 3 insertions(+), 33 deletions(-)
diff --git a/entries/dialog.xml b/entries/dialog.xml
index 313b77a7..aa1dc254 100644
--- a/entries/dialog.xml
+++ b/entries/dialog.xml
@@ -1,5 +1,5 @@
-
+
Dialog Widget
Open content in an interactive overlay.
@@ -135,22 +135,7 @@
The only supported string value is "auto"
which will allow the dialog height to adjust based on its content.
-
- If and how to animate the hiding of the dialog.
-
-
- The dialog will fade out while animating the height and width for the specified duration.
-
-
-
-
- The dialog will be hidden using the specified jQuery UI effect. See the list of effects for possible values.
-
-
-
- If the value is an object, then effect
, delay
, duration
, and easing
properties may be provided. The effect
property must be the name of a jQuery UI effect. When using a jQuery UI effect that supports additional settings, you may include those settings in the object and they will be passed to the effect. If duration
or easing
is omitted, then the default values will be used. If delay
is omitted, then no delay is used.
-
-
+
The maximum height to which the dialog can be resized, in pixels.
@@ -190,22 +175,7 @@
If set to true
, the dialog will be resizable. Requires the jQuery UI Resizable widget to be included.
-
- If and how to animate the showing of the dialog.
-
-
- The dialog will fade in while animating the height and width for the specified duration.
-
-
-
-
- The dialog will be shown using the specified jQuery UI effect. See the list of effects for possible values.
-
-
-
- If the value is an object, then effect
, delay
, duration
, and easing
properties may be provided. The effect
property must be the name of a jQuery UI effect. When using a jQuery UI effect that supports additional settings, you may include those settings in the object and they will be passed to the effect. If duration
or easing
is omitted, then the default values will be used. If delay
is omitted, then no delay is used.
-
-
+
Specifies the title of the dialog. If the value is null
, the title
attribute on the dialog source element will be used.
From 5e7d7845ad5723c4211f03470f90390187c690c0 Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Fri, 22 Nov 2013 16:06:19 -0500
Subject: [PATCH 030/280] show and hide options: Link "jQuery UI effect" to
effects documentation.
---
includes/widget-option-hide.xml | 2 +-
includes/widget-option-show.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/includes/widget-option-hide.xml b/includes/widget-option-hide.xml
index 94712fc9..5c38a8ca 100644
--- a/includes/widget-option-hide.xml
+++ b/includes/widget-option-hide.xml
@@ -15,7 +15,7 @@
The will be hidden using the specified effect.
- The value can either be the name of a built-in jQuery animation method, such as "slideUp"
, or the name of a jQuery UI effect, such as "fold"
.
+ The value can either be the name of a built-in jQuery animation method, such as "slideUp"
, or the name of a jQuery UI effect , such as "fold"
.
In either case the effect will be used with the default duration and the default easing.
diff --git a/includes/widget-option-show.xml b/includes/widget-option-show.xml
index 16d2b3c6..c7987948 100644
--- a/includes/widget-option-show.xml
+++ b/includes/widget-option-show.xml
@@ -15,7 +15,7 @@
The will be shown using the specified effect.
- The value can either be the name of a built-in jQuery animation method, such as "slideDown"
, or the name of a jQuery UI effect, such as "fold"
.
+ The value can either be the name of a built-in jQuery animation method, such as "slideDown"
, or the name of a jQuery UI effect , such as "fold"
.
In either case the effect will be used with the default duration and the default easing.
From 38a01cf65f5411a223a52115357c97a1b869269e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Mon, 25 Nov 2013 11:57:37 -0500
Subject: [PATCH 031/280] Upgrade to grunt-jquery-content 0.10.9.
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index fd2aa78f..f24fadf9 100644
--- a/package.json
+++ b/package.json
@@ -24,7 +24,7 @@
"grunt": "0.3.17",
"grunt-clean": "0.3.0",
"grunt-wordpress": "1.0.7",
- "grunt-jquery-content": "0.10.8",
+ "grunt-jquery-content": "0.10.9",
"grunt-check-modules": "0.1.0"
},
"devDependencies": {},
From 71e400e778025605632707ae701050cc7fac989c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Mon, 25 Nov 2013 11:59:25 -0500
Subject: [PATCH 032/280] Added support for overriding default value of
show/hide options. Fixes #186.
---
entries/tooltip.xml | 3 ++-
includes/widget-option-hide.xml | 2 +-
includes/widget-option-show.xml | 2 +-
3 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/entries/tooltip.xml b/entries/tooltip.xml
index dd7def9a..11875314 100644
--- a/entries/tooltip.xml
+++ b/entries/tooltip.xml
@@ -1,5 +1,6 @@
-
+
Tooltip Widget
Customizable, themeable tooltips, replacing native tooltips.
diff --git a/includes/widget-option-hide.xml b/includes/widget-option-hide.xml
index 5c38a8ca..627ff05b 100644
--- a/includes/widget-option-hide.xml
+++ b/includes/widget-option-hide.xml
@@ -1,5 +1,5 @@
-
+
If and how to animate the hiding of the .
diff --git a/includes/widget-option-show.xml b/includes/widget-option-show.xml
index c7987948..a440ad13 100644
--- a/includes/widget-option-show.xml
+++ b/includes/widget-option-show.xml
@@ -1,5 +1,5 @@
-
+
If and how to animate the showing of the .
From 0bc42e6c84dc3b0a68f841bd01bceaf5c83526c8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Mon, 25 Nov 2013 12:00:21 -0500
Subject: [PATCH 033/280] 1.10.7
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index f24fadf9..a05aac97 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "api.jqueryui.com",
"title": "jQuery UI API Docs",
"description": "API reference documentation for jQuery UI.",
- "version": "1.10.6",
+ "version": "1.10.7",
"homepage": "https://github.com/jquery/api.jqueryui.com",
"author": {
"name": "jQuery Foundation (http://jquery.org/)"
From 6ee221bd20c7d9b7c2d14fa42a7585d3e9b7ba5b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Tue, 26 Nov 2013 08:33:59 -0500
Subject: [PATCH 034/280] Upgrade to grunt-jquery-content 0.10.10.
---
includes/widget-option-hide.xml | 2 +-
includes/widget-option-show.xml | 2 +-
package.json | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/includes/widget-option-hide.xml b/includes/widget-option-hide.xml
index 627ff05b..5c38a8ca 100644
--- a/includes/widget-option-hide.xml
+++ b/includes/widget-option-hide.xml
@@ -1,5 +1,5 @@
-
+
If and how to animate the hiding of the .
diff --git a/includes/widget-option-show.xml b/includes/widget-option-show.xml
index a440ad13..c7987948 100644
--- a/includes/widget-option-show.xml
+++ b/includes/widget-option-show.xml
@@ -1,5 +1,5 @@
-
+
If and how to animate the showing of the .
diff --git a/package.json b/package.json
index a05aac97..7706d7f1 100644
--- a/package.json
+++ b/package.json
@@ -24,7 +24,7 @@
"grunt": "0.3.17",
"grunt-clean": "0.3.0",
"grunt-wordpress": "1.0.7",
- "grunt-jquery-content": "0.10.9",
+ "grunt-jquery-content": "0.10.10",
"grunt-check-modules": "0.1.0"
},
"devDependencies": {},
From 864cf07ad435e6ed5ee8aa0ffd387315d80946f4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Tue, 26 Nov 2013 08:35:01 -0500
Subject: [PATCH 035/280] 1.10.8
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 7706d7f1..d29b6527 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "api.jqueryui.com",
"title": "jQuery UI API Docs",
"description": "API reference documentation for jQuery UI.",
- "version": "1.10.7",
+ "version": "1.10.8",
"homepage": "https://github.com/jquery/api.jqueryui.com",
"author": {
"name": "jQuery Foundation (http://jquery.org/)"
From bf1612334ef961da1e013f834de9071e1de6506b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Wed, 4 Dec 2013 11:31:33 -0500
Subject: [PATCH 036/280] Use protocol-relative URLs.
---
LICENSE-MIT.txt | 2 +-
categories.xml | 2 +-
entries/jQuery.widget.xml | 4 ++--
entries/tabs.xml | 2 +-
entries2html.xsl | 8 ++++----
pages/color-animation.md | 2 +-
6 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/LICENSE-MIT.txt b/LICENSE-MIT.txt
index bcd35345..4c2a240b 100644
--- a/LICENSE-MIT.txt
+++ b/LICENSE-MIT.txt
@@ -2,7 +2,7 @@ Copyright (c) 2013 jQuery Foundation, http://jquery.org/
This software consists of voluntary contributions made by many
individuals. For exact contribution history, see the revision history
-and logs, available at http://github.com/jquery/api.jqueryui.com
+and logs, available at https://github.com/jquery/api.jqueryui.com
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
diff --git a/categories.xml b/categories.xml
index 73477144..c0ed6b44 100644
--- a/categories.xml
+++ b/categories.xml
@@ -2,7 +2,7 @@
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index ea6d748f..2e156203 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -41,7 +41,7 @@
We can pass as many or as few options as we want during initialization. Any options that we don't pass will just use their default values.
- You can pass multiple options arguments. Those arguments will be merged into one object (similar to $.extend( true, target, object1, objectN )
). This is useful for sharing options between instances, while overriding some settings for each one:
+ You can pass multiple options arguments. Those arguments will be merged into one object (similar to $.extend( true, target, object1, objectN )
). This is useful for sharing options between instances, while overriding some settings for each one:
var options = { modal: true, show: "slow" };
@@ -107,7 +107,7 @@
Instance
- The widget's instance is stored using jQuery.data()
with the widget's full name as the key. Therefore, you can use the following to retrieve the progressbar widget's instance object from the element.
+ The widget's instance is stored using jQuery.data()
with the widget's full name as the key. Therefore, you can use the following to retrieve the progressbar widget's instance object from the element.
$( "#elem" ).data( "ui-progressbar" );
diff --git a/entries/tabs.xml b/entries/tabs.xml
index f671beef..09b287d3 100644
--- a/entries/tabs.xml
+++ b/entries/tabs.xml
@@ -168,7 +168,7 @@
Triggered when a remote tab is about to be loaded, after the beforeActivate
event. Can be canceled to prevent the tab panel from loading content; though the panel will still be activated. This event is triggered just before the Ajax request is made, so modifications can be made to ui.jqXHR
and ui.ajaxSettings
.
- Note: Although ui.ajaxSettings
is provided and can be modified, some of these settings have already been processed by jQuery. For example, prefilters have been applied, data
has been processed, and type
has been determined. The beforeLoad
event occurs at the same time, and therefore has the same restrictions, as the beforeSend
callback from jQuery.ajax()
.
+ Note: Although ui.ajaxSettings
is provided and can be modified, some of these settings have already been processed by jQuery. For example, prefilters have been applied, data
has been processed, and type
has been determined. The beforeLoad
event occurs at the same time, and therefore has the same restrictions, as the beforeSend
callback from jQuery.ajax()
.
diff --git a/entries2html.xsl b/entries2html.xsl
index 1ffa7018..591b1db7 100644
--- a/entries2html.xsl
+++ b/entries2html.xsl
@@ -9,10 +9,10 @@
<head>
<meta charset="utf-8">
<title> demo</title>
- <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
+ <link rel="stylesheet" href="//code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<style> </style>
- <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
- <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
+ <script src="//code.jquery.com/jquery-1.9.1.js"></script>
+ <script src="//code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
</head>
<body>
@@ -27,7 +27,7 @@ the method of the same name from jQuery core -->
-
+
.
diff --git a/pages/color-animation.md b/pages/color-animation.md
index 7e40ef64..676b5bf3 100644
--- a/pages/color-animation.md
+++ b/pages/color-animation.md
@@ -8,7 +8,7 @@
jQuery UI effects core adds the ability to animate color properties using `rgb()`,
`rgba()`, hex values, or even color names such as `"aqua"`. Simply include the
-jQuery UI effects core file and [`.animate()`](http://api.jquery.com/animate/)
+jQuery UI effects core file and [`.animate()`](//api.jquery.com/animate/)
will gain support for colors.
The following properties are supported:
From 0e37dacf76d216821eb43a6225faa0df2784ce81 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Wed, 11 Dec 2013 22:12:17 -0500
Subject: [PATCH 037/280] Revert "Menu: Document _closeOnDocumentClick()
extension point."
This isn't part of the 1.10 API.
This reverts commit 1bcb2abb613e1b4f75dca5f4c22db9667593b060.
---
entries/menu.xml | 16 ----------------
1 file changed, 16 deletions(-)
diff --git a/entries/menu.xml b/entries/menu.xml
index 6af71eb0..7ea6d299 100644
--- a/entries/menu.xml
+++ b/entries/menu.xml
@@ -227,22 +227,6 @@
-
-
-
- Method that determines whether clicks on the document should close any open menus. By default, menus are closed unless the click occurred a menu.
-
-
-
- Never close menus on document click.
-
-
-
-
From 7e792c8c277cb98f84867bbaf4b1670f89a7dbc2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Wed, 11 Dec 2013 22:15:46 -0500
Subject: [PATCH 038/280] 1.10.9
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index d29b6527..41e12f0c 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "api.jqueryui.com",
"title": "jQuery UI API Docs",
"description": "API reference documentation for jQuery UI.",
- "version": "1.10.8",
+ "version": "1.10.9",
"homepage": "https://github.com/jquery/api.jqueryui.com",
"author": {
"name": "jQuery Foundation (http://jquery.org/)"
From 5db87f62f2b0c1fc4b176ac9b207ced3aae64723 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Fri, 13 Dec 2013 14:15:33 -0500
Subject: [PATCH 039/280] jQuery.widget: Triggered event names are lowercase
---
entries/jQuery.widget.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index 2e156203..ed2075ee 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -564,7 +564,7 @@ this._focusable( this.element.find( ".my-items" ) );
Triggers an event and its associated callback.
The option with the name equal to type is invoked as the callback.
- The event name is the widget name + type.
+ The event name is the lowercase concatenation of the widget name and type.
Note: When providing data, you must provide all three parameters. If there is no event to pass along, just pass null
.
If the default action is prevented, false
will be returned, otherwise true
. Preventing the default action happens when the handler returns false
or calls event.preventDefault()
.
From d4bda4d6bff8b9975ce228952828c5fd216e880a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Fri, 13 Dec 2013 14:15:41 -0500
Subject: [PATCH 040/280] 1.10.10
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 41e12f0c..d7d857a7 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "api.jqueryui.com",
"title": "jQuery UI API Docs",
"description": "API reference documentation for jQuery UI.",
- "version": "1.10.9",
+ "version": "1.10.10",
"homepage": "https://github.com/jquery/api.jqueryui.com",
"author": {
"name": "jQuery Foundation (http://jquery.org/)"
From 84dffb791121707ef230c9556bcb36e60afdf616 Mon Sep 17 00:00:00 2001
From: TJ VanToll
Date: Thu, 26 Dec 2013 09:29:45 -0500
Subject: [PATCH 041/280] Theming: Documenting ui-icon-blank class name
---
resources/icons-list.html | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/resources/icons-list.html b/resources/icons-list.html
index 26c05fe1..26ae102c 100644
--- a/resources/icons-list.html
+++ b/resources/icons-list.html
@@ -30,6 +30,10 @@
+
+
+ ui-icon-blank
+
ui-icon-carat-1-n
From ce3f9fac8d909136184bfb28e1aa1a88b3252bf4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Tue, 31 Dec 2013 09:51:51 -0500
Subject: [PATCH 042/280] Docs: Removed IRC channel links in CONTRIBUTING.md
GitHub doesn't support links with the irc protocol, so these were dead links.
---
CONTRIBUTING.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 141bca14..e9a7d254 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -2,4 +2,4 @@ Welcome! Thanks for your interest in contributing to api.jqueryui.com. You're **
You may also want to take a look at our [commit & pull request guide](http://contribute.jquery.org/commits-and-pull-requests/) and [style guides](http://contribute.jquery.org/style-guide/) for instructions on how to maintain your fork and submit your code. Before we can merge any pull request, we'll also need you to sign our [contributor license agreement](http://contribute.jquery.org/cla).
-You can find us on [IRC](http://irc.jquery.org), specifically in [#jqueryui-dev](irc://irc.freenode.net/#jqueryui-dev) and [#jquery-content](irc://irc.freenode.net/#jquery-content) should you have any questions. If you've never contributed to open source before, we've put together [a short guide with tips, tricks, and ideas on getting started](http://contribute.jquery.org/open-source/).
+You can find us on [IRC](http://irc.jquery.org), specifically in #jqueryui-dev and #jquery-content should you have any questions. If you've never contributed to open source before, we've put together [a short guide with tips, tricks, and ideas on getting started](http://contribute.jquery.org/open-source/).
From 501eb1f55ab4eed49924e17196af05e8fdfbae61 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Mon, 6 Jan 2014 13:39:37 -0500
Subject: [PATCH 043/280] Build: Upgrade to grunt-jquery-content 0.11.0
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index d7d857a7..4bc39988 100644
--- a/package.json
+++ b/package.json
@@ -24,7 +24,7 @@
"grunt": "0.3.17",
"grunt-clean": "0.3.0",
"grunt-wordpress": "1.0.7",
- "grunt-jquery-content": "0.10.10",
+ "grunt-jquery-content": "0.11.0",
"grunt-check-modules": "0.1.0"
},
"devDependencies": {},
From 0584484862acf09e4dab2ec45246d4a98b553538 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Mon, 6 Jan 2014 13:39:57 -0500
Subject: [PATCH 044/280] 1.10.11
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 4bc39988..77674c04 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "api.jqueryui.com",
"title": "jQuery UI API Docs",
"description": "API reference documentation for jQuery UI.",
- "version": "1.10.10",
+ "version": "1.10.11",
"homepage": "https://github.com/jquery/api.jqueryui.com",
"author": {
"name": "jQuery Foundation (http://jquery.org/)"
From 46ba60f133a7a0d65b6e009edba3aeaf39e1f5e5 Mon Sep 17 00:00:00 2001
From: Andrei Picus
Date: Wed, 15 Jan 2014 13:08:26 +0200
Subject: [PATCH 045/280] Sortable: Remove sender argument from 'remove' event
description
Fixes #188
---
entries/sortable.xml | 21 ++++++++++++++++++++-
1 file changed, 20 insertions(+), 1 deletion(-)
diff --git a/entries/sortable.xml b/entries/sortable.xml
index 60297f67..46f7a053 100644
--- a/entries/sortable.xml
+++ b/entries/sortable.xml
@@ -174,7 +174,26 @@
This event is triggered when a sortable item has been dragged out from the list and into another.
-
+
+
+ The jQuery object representing the helper being sorted.
+
+
+ The jQuery object representing the current dragged element.
+
+
+ The current absolute position of the helper represented as { top, left }
.
+
+
+ The current position of the helper represented as { top, left }
.
+
+
+ The original position of the element represented as { top, left }
.
+
+
+ The jQuery object representing the element being used as a placeholder.
+
+
This event is triggered when a sortable item is moved into a sortable list.
From 22441c95b2c6247c9f5b9bd11500f39537a6d044 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Wed, 15 Jan 2014 06:21:56 -0500
Subject: [PATCH 046/280] 1.10.12
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 77674c04..48c036b9 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "api.jqueryui.com",
"title": "jQuery UI API Docs",
"description": "API reference documentation for jQuery UI.",
- "version": "1.10.11",
+ "version": "1.10.12",
"homepage": "https://github.com/jquery/api.jqueryui.com",
"author": {
"name": "jQuery Foundation (http://jquery.org/)"
From d316985975988a5e8e8bd12ffff17da5070060cc Mon Sep 17 00:00:00 2001
From: Andrei Picus
Date: Wed, 15 Jan 2014 20:32:35 +0200
Subject: [PATCH 047/280] Sortable: Fix receive and remove descriptions
Make it clear that the events fire when the item is dropped and not just
dragged. Also, make it clear who receives the events.
Closes gh-190
---
entries/sortable.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/entries/sortable.xml b/entries/sortable.xml
index 46f7a053..7f83a282 100644
--- a/entries/sortable.xml
+++ b/entries/sortable.xml
@@ -167,12 +167,12 @@
- This event is triggered when a connected sortable list has received an item from another list.
+ This event is triggered when an item from a connected sortable list has been dropped into another list. The latter is the event target.
- This event is triggered when a sortable item has been dragged out from the list and into another.
+ This event is triggered when a sortable item from the list has been dropped into another. The former is the event target.
From be35f4860af571c23bd8841fb7a90775812295ef Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Wed, 15 Jan 2014 13:41:17 -0500
Subject: [PATCH 048/280] 1.10.13
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 48c036b9..c0a3e523 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "api.jqueryui.com",
"title": "jQuery UI API Docs",
"description": "API reference documentation for jQuery UI.",
- "version": "1.10.12",
+ "version": "1.10.13",
"homepage": "https://github.com/jquery/api.jqueryui.com",
"author": {
"name": "jQuery Foundation (http://jquery.org/)"
From b91fb3171b50c6b1a0776f4c02251f79ae193567 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?=
Date: Fri, 17 Jan 2014 13:05:01 -0500
Subject: [PATCH 049/280] Upgrade to jQuery UI 1.10.4
---
entries2html.xsl | 6 +++---
resources/color-animation.html | 6 +++---
resources/easing-comparison.html | 6 +++---
resources/easing-graph.html | 6 +++---
resources/icons-list.html | 6 +++---
5 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/entries2html.xsl b/entries2html.xsl
index 591b1db7..ead4e803 100644
--- a/entries2html.xsl
+++ b/entries2html.xsl
@@ -9,10 +9,10 @@
<head>
<meta charset="utf-8">
<title> demo</title>
- <link rel="stylesheet" href="//code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
+ <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<style> </style>
- <script src="//code.jquery.com/jquery-1.9.1.js"></script>
- <script src="//code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
+ <script src="//code.jquery.com/jquery-1.10.2.js"></script>
+ <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
</head>
<body>
diff --git a/resources/color-animation.html b/resources/color-animation.html
index 73e45a10..c8df26c7 100644
--- a/resources/color-animation.html
+++ b/resources/color-animation.html
@@ -3,7 +3,7 @@
Color Animation Demo
-
+
-
-
+
+
diff --git a/resources/easing-comparison.html b/resources/easing-comparison.html
index c937689c..0db995b0 100644
--- a/resources/easing-comparison.html
+++ b/resources/easing-comparison.html
@@ -3,9 +3,9 @@
jQuery UI Effects - Easing Comparison demo
-
-
-
+
+
+
-
+
diff --git a/resources/easing-comparison.html b/resources/easing-comparison.html
index 0db995b0..5048110d 100644
--- a/resources/easing-comparison.html
+++ b/resources/easing-comparison.html
@@ -3,9 +3,9 @@
jQuery UI Effects - Easing Comparison demo
-
+
-
+
-
+
diff --git a/resources/easing-comparison.html b/resources/easing-comparison.html
index 5048110d..d709b99b 100644
--- a/resources/easing-comparison.html
+++ b/resources/easing-comparison.html
@@ -3,9 +3,9 @@
jQuery UI Effects - Easing Comparison demo
-
+
-
+
-
+
diff --git a/resources/easing-comparison.html b/resources/easing-comparison.html
index d709b99b..32cd51cb 100644
--- a/resources/easing-comparison.html
+++ b/resources/easing-comparison.html
@@ -3,9 +3,9 @@
jQuery UI Effects - Easing Comparison demo
-
+
-
+
-
+
diff --git a/resources/easing-comparison.html b/resources/easing-comparison.html
index 32cd51cb..c05e6759 100644
--- a/resources/easing-comparison.html
+++ b/resources/easing-comparison.html
@@ -3,9 +3,9 @@
jQuery UI Effects - Easing Comparison demo
-
+
-
+
-
+
diff --git a/resources/easing-comparison.html b/resources/easing-comparison.html
index c05e6759..0c48372e 100644
--- a/resources/easing-comparison.html
+++ b/resources/easing-comparison.html
@@ -3,9 +3,9 @@
jQuery UI Effects - Easing Comparison demo
-
+
-
+
-
-
+
+
diff --git a/resources/easing-comparison.html b/resources/easing-comparison.html
index 0c48372e..94b8a734 100644
--- a/resources/easing-comparison.html
+++ b/resources/easing-comparison.html
@@ -3,9 +3,9 @@
jQuery UI Effects - Easing Comparison demo
-
-
-
+
+
+
-
-
+
+
diff --git a/resources/easing-comparison.html b/resources/easing-comparison.html
index 94b8a734..00a2b1f4 100644
--- a/resources/easing-comparison.html
+++ b/resources/easing-comparison.html
@@ -3,9 +3,9 @@
jQuery UI Effects - Easing Comparison demo
-
-
-
+
+
+
-
+
diff --git a/resources/easing-comparison.html b/resources/easing-comparison.html
index 00a2b1f4..5a890076 100644
--- a/resources/easing-comparison.html
+++ b/resources/easing-comparison.html
@@ -3,9 +3,9 @@
jQuery UI Effects - Easing Comparison demo
-
+
-
+
-
-
+
+
diff --git a/resources/easing-comparison.html b/resources/easing-comparison.html
index 5a890076..180ba857 100644
--- a/resources/easing-comparison.html
+++ b/resources/easing-comparison.html
@@ -3,9 +3,9 @@
jQuery UI Effects - Easing Comparison demo
-
-
-
+
+
+
-
+
diff --git a/resources/easing-comparison.html b/resources/easing-comparison.html
index 180ba857..6921c024 100644
--- a/resources/easing-comparison.html
+++ b/resources/easing-comparison.html
@@ -3,9 +3,9 @@
jQuery UI Effects - Easing Comparison demo
-
+
-
+
-
-
+
+
diff --git a/resources/easing-comparison.html b/resources/easing-comparison.html
index 6921c024..b6bcbe2d 100644
--- a/resources/easing-comparison.html
+++ b/resources/easing-comparison.html
@@ -3,9 +3,9 @@
jQuery UI Effects - Easing Comparison demo
-
-
-
+
+
+
body {
font-size: 62.5%;
diff --git a/resources/easing-graph.html b/resources/easing-graph.html
index a79f92e8..7712c50f 100644
--- a/resources/easing-graph.html
+++ b/resources/easing-graph.html
@@ -3,9 +3,9 @@
jQuery UI Easing Equations
-
-
-
+
+
+
body {
font-size: 62.5%;
diff --git a/resources/icons-list.html b/resources/icons-list.html
index b59b47ca..d2d2b9b1 100644
--- a/resources/icons-list.html
+++ b/resources/icons-list.html
@@ -3,9 +3,9 @@
jQuery UI Icons
-
-
-
+
+
+
body {
font-size: 75%;
From 5411c9b332fdddf37a2593956fe438fc0a506410 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?=
Date: Thu, 7 Oct 2021 16:42:54 +0200
Subject: [PATCH 258/280] 1.13.4
---
package-lock.json | 2 +-
package.json | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index 8c5d5d4f..b16236da 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "api.jqueryui.com",
- "version": "1.13.3",
+ "version": "1.13.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index df42c25c..c0533837 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "api.jqueryui.com",
"title": "jQuery UI API Docs",
"description": "API reference documentation for jQuery UI.",
- "version": "1.13.3",
+ "version": "1.13.4",
"homepage": "https://github.com/jquery/api.jqueryui.com",
"author": {
"name": "jQuery Foundation and other contributors"
From 3aeaeb3b52f5fdc238e75b35276d5c2baa1b23c1 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Sun, 26 Mar 2023 19:13:00 -0700
Subject: [PATCH 259/280] Build: Bump decode-uri-component from 0.2.0 to 0.2.2
Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) from 0.2.0 to 0.2.2.
- [Release notes](https://github.com/SamVerschueren/decode-uri-component/releases)
- [Commits](https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.0...v0.2.2)
Closes https://github.com/jquery/api.jqueryui.com/pull/344.
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
package-lock.json | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index b16236da..83d49522 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -314,9 +314,9 @@
}
},
"decode-uri-component": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
- "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU="
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz",
+ "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ=="
},
"define-property": {
"version": "2.0.2",
From 61aa5d9c65442e80bc0c083a435a209b9792a6a8 Mon Sep 17 00:00:00 2001
From: Timmy Willison
Date: Tue, 25 Jul 2023 22:37:13 -0400
Subject: [PATCH 260/280] Build: replace travis with GH actions workflow for
npm test (#353)
---
.github/workflows/node.js.yml | 31 +++++++++++++++++++++++++++++++
.travis.yml | 7 -------
2 files changed, 31 insertions(+), 7 deletions(-)
create mode 100644 .github/workflows/node.js.yml
delete mode 100644 .travis.yml
diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml
new file mode 100644
index 00000000..5309c6fa
--- /dev/null
+++ b/.github/workflows/node.js.yml
@@ -0,0 +1,31 @@
+# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
+
+name: Node.js CI
+
+on:
+ push:
+ branches: [ "main" ]
+ pull_request:
+ branches: [ "main" ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ # Old infra requires Node 10
+ node-version: [10.x, 18.x]
+
+ steps:
+ - name: Install xmllint
+ run: sudo apt-get install -y libxml2-utils
+ - uses: actions/checkout@v3
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: 'npm'
+ - run: npm ci
+ - run: npm test
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index c4177e89..00000000
--- a/.travis.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-language: node_js
-node_js:
- - "10"
-addons:
- apt:
- packages:
- - libxml2-utils
From 3c63cd217bf7266688d980d12308cf35e52786e3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?=
Date: Fri, 10 May 2024 16:28:35 +0200
Subject: [PATCH 261/280] Build: Update dependencies; remove `grunt-cli`
---
package-lock.json | 2327 +++++++++++++++++----------------------------
package.json | 5 +-
2 files changed, 877 insertions(+), 1455 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index 83d49522..d01a6372 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,1891 +1,1314 @@
{
"name": "api.jqueryui.com",
"version": "1.13.4",
- "lockfileVersion": 1,
+ "lockfileVersion": 3,
"requires": true,
- "dependencies": {
- "abbrev": {
+ "packages": {
+ "": {
+ "name": "api.jqueryui.com",
+ "version": "1.13.4",
+ "dependencies": {
+ "grunt": "1.6.1",
+ "grunt-jquery-content": "3.3.1"
+ }
+ },
+ "node_modules/abbrev": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
},
- "ansi-styles": {
+ "node_modules/ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
+ "dependencies": {
"color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "argparse": {
+ "node_modules/argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
- "requires": {
- "sprintf-js": "~1.0.2"
- },
"dependencies": {
- "sprintf-js": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
- "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
- }
+ "sprintf-js": "~1.0.2"
}
},
- "arr-diff": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
- "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA="
- },
- "arr-flatten": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
- "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="
- },
- "arr-union": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
- "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ="
- },
- "array-each": {
+ "node_modules/array-each": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz",
- "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8="
+ "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "array-slice": {
+ "node_modules/array-slice": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz",
- "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w=="
- },
- "array-unique": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
- "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg="
- },
- "assign-symbols": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
- "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c="
- },
- "async": {
- "version": "1.5.2",
- "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
- "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo="
+ "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "atob": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
- "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="
+ "node_modules/async": {
+ "version": "0.9.2",
+ "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz",
+ "integrity": "sha512-l6ToIJIotphWahxxHyzK9bnLR6kM4jJIIgLShZeqLY7iboHoGkdgFl7W2/Ivi4SkMJYGKqW8vSuk0uKUj6qsSw=="
},
- "balanced-match": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
- "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
- },
- "base": {
- "version": "0.11.2",
- "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
- "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
- "requires": {
- "cache-base": "^1.0.1",
- "class-utils": "^0.3.5",
- "component-emitter": "^1.2.1",
- "define-property": "^1.0.0",
- "isobject": "^3.0.1",
- "mixin-deep": "^1.2.0",
- "pascalcase": "^0.1.1"
- },
- "dependencies": {
- "define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
- "requires": {
- "is-descriptor": "^1.0.0"
- }
- },
- "is-accessor-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-data-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-descriptor": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
- "requires": {
- "is-accessor-descriptor": "^1.0.0",
- "is-data-descriptor": "^1.0.0",
- "kind-of": "^6.0.2"
- }
- }
- }
+ "node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
},
- "boolbase": {
+ "node_modules/boolbase": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
- "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24="
+ "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="
},
- "brace-expansion": {
+ "node_modules/brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "requires": {
+ "dependencies": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
- "braces": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
- "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
- "requires": {
- "arr-flatten": "^1.1.0",
- "array-unique": "^0.3.2",
- "extend-shallow": "^2.0.1",
- "fill-range": "^4.0.0",
- "isobject": "^3.0.1",
- "repeat-element": "^1.1.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
+ "node_modules/braces": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "dependencies": {
+ "fill-range": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "cache-base": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
- "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
- "requires": {
- "collection-visit": "^1.0.0",
- "component-emitter": "^1.2.1",
- "get-value": "^2.0.6",
- "has-value": "^1.0.0",
- "isobject": "^3.0.1",
- "set-value": "^2.0.0",
- "to-object-path": "^0.3.0",
- "union-value": "^1.0.0",
- "unset-value": "^1.0.0"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "requires": {
+ "node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dependencies": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
}
},
- "cheerio": {
- "version": "0.22.0",
- "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz",
- "integrity": "sha1-qbqoYKP5tZWmuBsahocxIe06Jp4=",
- "requires": {
- "css-select": "~1.2.0",
- "dom-serializer": "~0.1.0",
- "entities": "~1.1.1",
- "htmlparser2": "^3.9.1",
- "lodash.assignin": "^4.0.9",
- "lodash.bind": "^4.1.4",
- "lodash.defaults": "^4.0.1",
- "lodash.filter": "^4.4.0",
- "lodash.flatten": "^4.2.0",
- "lodash.foreach": "^4.3.0",
- "lodash.map": "^4.4.0",
- "lodash.merge": "^4.4.0",
- "lodash.pick": "^4.2.1",
- "lodash.reduce": "^4.4.0",
- "lodash.reject": "^4.4.0",
- "lodash.some": "^4.4.0"
- }
- },
- "class-utils": {
- "version": "0.3.6",
- "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
- "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
- "requires": {
- "arr-union": "^3.1.0",
- "define-property": "^0.2.5",
- "isobject": "^3.0.0",
- "static-extend": "^0.1.1"
- },
- "dependencies": {
- "define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "requires": {
- "is-descriptor": "^0.1.0"
- }
- }
+ "node_modules/cheerio": {
+ "version": "1.0.0-rc.12",
+ "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz",
+ "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==",
+ "dependencies": {
+ "cheerio-select": "^2.1.0",
+ "dom-serializer": "^2.0.0",
+ "domhandler": "^5.0.3",
+ "domutils": "^3.0.1",
+ "htmlparser2": "^8.0.1",
+ "parse5": "^7.0.0",
+ "parse5-htmlparser2-tree-adapter": "^7.0.0"
+ },
+ "engines": {
+ "node": ">= 6"
+ },
+ "funding": {
+ "url": "https://github.com/cheeriojs/cheerio?sponsor=1"
}
},
- "collection-visit": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
- "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
- "requires": {
- "map-visit": "^1.0.0",
- "object-visit": "^1.0.0"
+ "node_modules/cheerio-select": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz",
+ "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==",
+ "dependencies": {
+ "boolbase": "^1.0.0",
+ "css-select": "^5.1.0",
+ "css-what": "^6.1.0",
+ "domelementtype": "^2.3.0",
+ "domhandler": "^5.0.3",
+ "domutils": "^3.0.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
}
},
- "color-convert": {
+ "node_modules/color-convert": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "requires": {
+ "dependencies": {
"color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
}
},
- "color-name": {
+ "node_modules/color-name": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
},
- "colors": {
+ "node_modules/colors": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz",
- "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM="
- },
- "component-emitter": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz",
- "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg=="
+ "integrity": "sha512-ENwblkFQpqqia6b++zLD/KUWafYlVY/UNnAp7oz7LY7E924wmpye416wBOmvv/HMWzl8gL1kJlfvId/1Dg176w==",
+ "engines": {
+ "node": ">=0.1.90"
+ }
},
- "concat-map": {
+ "node_modules/concat-map": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
- },
- "copy-descriptor": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
- "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40="
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
},
- "css-select": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz",
- "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=",
- "requires": {
- "boolbase": "~1.0.0",
- "css-what": "2.1",
- "domutils": "1.5.1",
- "nth-check": "~1.0.1"
- }
- },
- "css-what": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz",
- "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg=="
- },
- "dateformat": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz",
- "integrity": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q=="
- },
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "requires": {
- "ms": "2.0.0"
- }
- },
- "decode-uri-component": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz",
- "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ=="
+ "node_modules/css-select": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz",
+ "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==",
+ "dependencies": {
+ "boolbase": "^1.0.0",
+ "css-what": "^6.1.0",
+ "domhandler": "^5.0.2",
+ "domutils": "^3.0.1",
+ "nth-check": "^2.0.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
+ }
},
- "define-property": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
- "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
- "requires": {
- "is-descriptor": "^1.0.2",
- "isobject": "^3.0.1"
+ "node_modules/css-what": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz",
+ "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==",
+ "engines": {
+ "node": ">= 6"
},
- "dependencies": {
- "is-accessor-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-data-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-descriptor": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
- "requires": {
- "is-accessor-descriptor": "^1.0.0",
- "is-data-descriptor": "^1.0.0",
- "kind-of": "^6.0.2"
- }
- }
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
}
},
- "detect-file": {
+ "node_modules/dateformat": {
+ "version": "4.6.3",
+ "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-4.6.3.tgz",
+ "integrity": "sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==",
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/detect-file": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz",
- "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc="
- },
- "dom-serializer": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz",
- "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==",
- "requires": {
- "domelementtype": "^1.3.0",
- "entities": "^1.1.1"
+ "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==",
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "domelementtype": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz",
- "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w=="
+ "node_modules/dom-serializer": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz",
+ "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
+ "dependencies": {
+ "domelementtype": "^2.3.0",
+ "domhandler": "^5.0.2",
+ "entities": "^4.2.0"
+ },
+ "funding": {
+ "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
+ }
+ },
+ "node_modules/domelementtype": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
+ "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fb55"
+ }
+ ]
},
- "domhandler": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz",
- "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==",
- "requires": {
- "domelementtype": "1"
+ "node_modules/domhandler": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz",
+ "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
+ "dependencies": {
+ "domelementtype": "^2.3.0"
+ },
+ "engines": {
+ "node": ">= 4"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domhandler?sponsor=1"
}
},
- "domutils": {
- "version": "1.5.1",
- "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz",
- "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=",
- "requires": {
- "dom-serializer": "0",
- "domelementtype": "1"
+ "node_modules/domutils": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz",
+ "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==",
+ "dependencies": {
+ "dom-serializer": "^2.0.0",
+ "domelementtype": "^2.3.0",
+ "domhandler": "^5.0.3"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domutils?sponsor=1"
}
},
- "entities": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz",
- "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w=="
+ "node_modules/entities": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
+ "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
+ "engines": {
+ "node": ">=0.12"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
+ }
},
- "esprima": {
+ "node_modules/esprima": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
+ "bin": {
+ "esparse": "bin/esparse.js",
+ "esvalidate": "bin/esvalidate.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
},
- "eventemitter2": {
+ "node_modules/eventemitter2": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz",
- "integrity": "sha1-j2G3XN4BKy6esoTUVFWDtWQ7Yas="
+ "integrity": "sha512-K7J4xq5xAD5jHsGM5ReWXRTFa3JRGofHiMcVgQ8PRwgWxzjHpMWCIzsmyf60+mh8KLsqYPcjUMa0AC4hd6lPyQ=="
},
- "exit": {
+ "node_modules/exit": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
- "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw="
- },
- "expand-brackets": {
- "version": "2.1.4",
- "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
- "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=",
- "requires": {
- "debug": "^2.3.3",
- "define-property": "^0.2.5",
- "extend-shallow": "^2.0.1",
- "posix-character-classes": "^0.1.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
- },
- "dependencies": {
- "define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "requires": {
- "is-descriptor": "^0.1.0"
- }
- },
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
+ "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==",
+ "engines": {
+ "node": ">= 0.8.0"
}
},
- "expand-tilde": {
+ "node_modules/expand-tilde": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz",
- "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=",
- "requires": {
+ "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==",
+ "dependencies": {
"homedir-polyfill": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "extend": {
+ "node_modules/extend": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
},
- "extend-shallow": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
- "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
- "requires": {
- "assign-symbols": "^1.0.0",
- "is-extendable": "^1.0.1"
- },
- "dependencies": {
- "is-extendable": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
- "requires": {
- "is-plain-object": "^2.0.4"
- }
- }
- }
- },
- "extglob": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
- "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
- "requires": {
- "array-unique": "^0.3.2",
- "define-property": "^1.0.0",
- "expand-brackets": "^2.1.4",
- "extend-shallow": "^2.0.1",
- "fragment-cache": "^0.2.1",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
- },
- "dependencies": {
- "define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
- "requires": {
- "is-descriptor": "^1.0.0"
- }
- },
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "requires": {
- "is-extendable": "^0.1.0"
- }
- },
- "is-accessor-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-data-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-descriptor": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
- "requires": {
- "is-accessor-descriptor": "^1.0.0",
- "is-data-descriptor": "^1.0.0",
- "kind-of": "^6.0.2"
- }
- }
- }
- },
- "fill-range": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
- "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
- "requires": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
+ "node_modules/fill-range": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+ "dependencies": {
+ "to-regex-range": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "findup-sync": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz",
- "integrity": "sha1-N5MKpdgWt3fANEXhlmzGeQpMCxY=",
- "requires": {
- "glob": "~5.0.0"
- },
- "dependencies": {
- "glob": {
- "version": "5.0.15",
- "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz",
- "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=",
- "requires": {
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "2 || 3",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- }
- }
+ "node_modules/findup-sync": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-5.0.0.tgz",
+ "integrity": "sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==",
+ "dependencies": {
+ "detect-file": "^1.0.0",
+ "is-glob": "^4.0.3",
+ "micromatch": "^4.0.4",
+ "resolve-dir": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
}
},
- "fined": {
+ "node_modules/fined": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz",
"integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==",
- "requires": {
+ "dependencies": {
"expand-tilde": "^2.0.2",
"is-plain-object": "^2.0.3",
"object.defaults": "^1.1.0",
"object.pick": "^1.2.0",
"parse-filepath": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.10"
}
},
- "flagged-respawn": {
+ "node_modules/flagged-respawn": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz",
- "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q=="
+ "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==",
+ "engines": {
+ "node": ">= 0.10"
+ }
},
- "for-in": {
+ "node_modules/for-in": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
- "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA="
+ "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "for-own": {
+ "node_modules/for-own": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz",
- "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=",
- "requires": {
+ "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==",
+ "dependencies": {
"for-in": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "fragment-cache": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
- "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=",
- "requires": {
- "map-cache": "^0.2.2"
- }
- },
- "fs.realpath": {
+ "node_modules/fs.realpath": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
- },
- "get-value": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz",
- "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg="
- },
- "getobject": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz",
- "integrity": "sha1-BHpEl4n6Fg0Bj1SG7ZEyC27HiFw="
- },
- "gilded-wordpress": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/gilded-wordpress/-/gilded-wordpress-1.0.5.tgz",
- "integrity": "sha1-EnBg4iv/x6uo+++Xq/Pr+7fsScE=",
- "requires": {
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/getobject": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/getobject/-/getobject-1.0.2.tgz",
+ "integrity": "sha512-2zblDBaFcb3rB4rF77XVnuINOE2h2k/OnqXAiy0IrTxUfV1iFp3la33oAQVY9pCpWU268WFYVt2t71hlMuLsOg==",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/gilded-wordpress": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/gilded-wordpress/-/gilded-wordpress-1.0.7.tgz",
+ "integrity": "sha512-w8g4jfs1TWywX2hZ4+LlzQoz2z/JRX/8S6OgelD3IUsNnGHxXQ1FgExoIqomwZVPAmxYs0vEu2BeA1Y4KciZlw==",
+ "dependencies": {
"async": "^0.9.0",
- "glob": "^4.0.6",
- "wordpress": "^1.1.2"
- },
- "dependencies": {
- "async": {
- "version": "0.9.2",
- "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz",
- "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0="
- },
- "glob": {
- "version": "4.5.3",
- "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz",
- "integrity": "sha1-xstz0yJsHv7wTePFbQEvAzd+4V8=",
- "requires": {
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^2.0.1",
- "once": "^1.3.0"
- }
- },
- "minimatch": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz",
- "integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=",
- "requires": {
- "brace-expansion": "^1.0.0"
- }
- }
+ "wordpress": "^1.4.2"
}
},
- "glob": {
- "version": "7.1.6",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
- "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
- "requires": {
+ "node_modules/glob": {
+ "version": "7.1.7",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
+ "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
+ "dependencies": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
"inherits": "2",
"minimatch": "^3.0.4",
"once": "^1.3.0",
"path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "global-modules": {
+ "node_modules/global-modules": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz",
"integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==",
- "requires": {
+ "dependencies": {
"global-prefix": "^1.0.1",
"is-windows": "^1.0.1",
"resolve-dir": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "global-prefix": {
+ "node_modules/global-prefix": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz",
- "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=",
- "requires": {
+ "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==",
+ "dependencies": {
"expand-tilde": "^2.0.2",
"homedir-polyfill": "^1.0.1",
"ini": "^1.3.4",
"is-windows": "^1.0.1",
"which": "^1.2.14"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "grunt": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/grunt/-/grunt-1.3.0.tgz",
- "integrity": "sha512-6ILlMXv11/4cxuhSMfSU+SfvbxrPuqZrAtLN64+tZpQ3DAKfSQPQHRbTjSbdtxfyQhGZPtN0bDZJ/LdCM5WXXA==",
- "requires": {
- "dateformat": "~3.0.3",
+ "node_modules/global-prefix/node_modules/isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
+ },
+ "node_modules/global-prefix/node_modules/which": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "which": "bin/which"
+ }
+ },
+ "node_modules/grunt": {
+ "version": "1.6.1",
+ "resolved": "https://registry.npmjs.org/grunt/-/grunt-1.6.1.tgz",
+ "integrity": "sha512-/ABUy3gYWu5iBmrUSRBP97JLpQUm0GgVveDCp6t3yRNIoltIYw7rEj3g5y1o2PGPR2vfTRGa7WC/LZHLTXnEzA==",
+ "dependencies": {
+ "dateformat": "~4.6.2",
"eventemitter2": "~0.4.13",
"exit": "~0.1.2",
- "findup-sync": "~0.3.0",
+ "findup-sync": "~5.0.0",
"glob": "~7.1.6",
- "grunt-cli": "~1.3.2",
- "grunt-known-options": "~1.1.0",
+ "grunt-cli": "~1.4.3",
+ "grunt-known-options": "~2.0.0",
"grunt-legacy-log": "~3.0.0",
- "grunt-legacy-util": "~2.0.0",
- "iconv-lite": "~0.4.13",
+ "grunt-legacy-util": "~2.0.1",
+ "iconv-lite": "~0.6.3",
"js-yaml": "~3.14.0",
"minimatch": "~3.0.4",
- "mkdirp": "~1.0.4",
- "nopt": "~3.0.6",
- "rimraf": "~3.0.2"
+ "nopt": "~3.0.6"
+ },
+ "bin": {
+ "grunt": "bin/grunt"
+ },
+ "engines": {
+ "node": ">=16"
}
},
- "grunt-check-modules": {
+ "node_modules/grunt-check-modules": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/grunt-check-modules/-/grunt-check-modules-1.1.0.tgz",
- "integrity": "sha1-fBZB28ZlSGdqbVl5Ga35C3s11kQ="
+ "integrity": "sha512-B0dWhmnqEZztfDbqEb5UWAI/9o0mmlRPEyJYdpitgr/W7i1893cq4hmN+Vw+xJEC/+A5vzmaaHfDZU3fO8JheQ==",
+ "engines": {
+ "node": ">=0.6.0"
+ },
+ "peerDependencies": {
+ "grunt": ">=0.4.0"
+ }
},
- "grunt-cli": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.3.2.tgz",
- "integrity": "sha512-8OHDiZZkcptxVXtMfDxJvmN7MVJNE8L/yIcPb4HB7TlyFD1kDvjHrb62uhySsU14wJx9ORMnTuhRMQ40lH/orQ==",
- "requires": {
- "grunt-known-options": "~1.1.0",
+ "node_modules/grunt-cli": {
+ "version": "1.4.3",
+ "resolved": "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.4.3.tgz",
+ "integrity": "sha512-9Dtx/AhVeB4LYzsViCjUQkd0Kw0McN2gYpdmGYKtE2a5Yt7v1Q+HYZVWhqXc/kGnxlMtqKDxSwotiGeFmkrCoQ==",
+ "dependencies": {
+ "grunt-known-options": "~2.0.0",
"interpret": "~1.1.0",
- "liftoff": "~2.5.0",
+ "liftup": "~3.0.1",
"nopt": "~4.0.1",
- "v8flags": "~3.1.1"
+ "v8flags": "~3.2.0"
},
+ "bin": {
+ "grunt": "bin/grunt"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/grunt-cli/node_modules/nopt": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz",
+ "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==",
"dependencies": {
- "nopt": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz",
- "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==",
- "requires": {
- "abbrev": "1",
- "osenv": "^0.1.4"
- }
- }
+ "abbrev": "1",
+ "osenv": "^0.1.4"
+ },
+ "bin": {
+ "nopt": "bin/nopt.js"
}
},
- "grunt-jquery-content": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/grunt-jquery-content/-/grunt-jquery-content-3.1.0.tgz",
- "integrity": "sha512-9FIYqv0ML0fokZqOts7ecYR3I7pyKmvFP0WrEKcZUvgN13lBiI0JtvLfWwM3FrpiQUCIa9kZWJPJj55OPi+KMQ==",
- "requires": {
- "async": "^3.2.0",
- "cheerio": "^0.22.0",
+ "node_modules/grunt-jquery-content": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/grunt-jquery-content/-/grunt-jquery-content-3.3.1.tgz",
+ "integrity": "sha512-aK4DdMYkM+qjSyXkEswvlSTHqcWDfvKKjWveeDLK/dIM1Ok7iXGd1SwFuFp2ShO+rx9XEHToX3KC5+Gn2BwAug==",
+ "dependencies": {
+ "cheerio": "^1.0.0-rc.12",
+ "gilded-wordpress": "1.0.7",
"grunt-check-modules": "^1.1.0",
- "grunt-wordpress": "^2.1.3",
"he": "^1.2.0",
"highlight.js": "^10.7.2",
- "marked": "^2.0.3",
- "rimraf": "^3.0.2",
- "spawnback": "^1.0.1",
- "which": "^2.0.2",
+ "marked": "^4.0.0",
+ "which": "^4.0.0",
"wordpress": "^1.4.1"
- },
- "dependencies": {
- "async": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/async/-/async-3.2.0.tgz",
- "integrity": "sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw=="
- },
- "which": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
- "requires": {
- "isexe": "^2.0.0"
- }
- }
}
},
- "grunt-known-options": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz",
- "integrity": "sha512-cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ=="
+ "node_modules/grunt-known-options": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-2.0.0.tgz",
+ "integrity": "sha512-GD7cTz0I4SAede1/+pAbmJRG44zFLPipVtdL9o3vqx9IEyb7b4/Y3s7r6ofI3CchR5GvYJ+8buCSioDv5dQLiA==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "grunt-legacy-log": {
+ "node_modules/grunt-legacy-log": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-3.0.0.tgz",
"integrity": "sha512-GHZQzZmhyq0u3hr7aHW4qUH0xDzwp2YXldLPZTCjlOeGscAOWWPftZG3XioW8MasGp+OBRIu39LFx14SLjXRcA==",
- "requires": {
+ "dependencies": {
"colors": "~1.1.2",
"grunt-legacy-log-utils": "~2.1.0",
"hooker": "~0.2.3",
"lodash": "~4.17.19"
+ },
+ "engines": {
+ "node": ">= 0.10.0"
}
},
- "grunt-legacy-log-utils": {
+ "node_modules/grunt-legacy-log-utils": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.1.0.tgz",
"integrity": "sha512-lwquaPXJtKQk0rUM1IQAop5noEpwFqOXasVoedLeNzaibf/OPWjKYvvdqnEHNmU+0T0CaReAXIbGo747ZD+Aaw==",
- "requires": {
+ "dependencies": {
"chalk": "~4.1.0",
"lodash": "~4.17.19"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "grunt-legacy-util": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-2.0.0.tgz",
- "integrity": "sha512-ZEmYFB44bblwPE2oz3q3ygfF6hseQja9tx8I3UZIwbUik32FMWewA+d1qSFicMFB+8dNXDkh35HcDCWlpRsGlA==",
- "requires": {
- "async": "~1.5.2",
- "exit": "~0.1.1",
- "getobject": "~0.1.0",
+ "node_modules/grunt-legacy-util": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-2.0.1.tgz",
+ "integrity": "sha512-2bQiD4fzXqX8rhNdXkAywCadeqiPiay0oQny77wA2F3WF4grPJXCvAcyoWUJV+po/b15glGkxuSiQCK299UC2w==",
+ "dependencies": {
+ "async": "~3.2.0",
+ "exit": "~0.1.2",
+ "getobject": "~1.0.0",
"hooker": "~0.2.3",
- "lodash": "~4.17.20",
+ "lodash": "~4.17.21",
"underscore.string": "~3.3.5",
- "which": "~1.3.0"
+ "which": "~2.0.2"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "grunt-wordpress": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/grunt-wordpress/-/grunt-wordpress-2.1.3.tgz",
- "integrity": "sha1-fNI9lBN9DDe+PybfZ4Y2FPUABXA=",
- "requires": {
- "gilded-wordpress": "1.0.5"
+ "node_modules/grunt-legacy-util/node_modules/async": {
+ "version": "3.2.5",
+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz",
+ "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg=="
+ },
+ "node_modules/grunt-legacy-util/node_modules/isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
+ },
+ "node_modules/grunt-legacy-util/node_modules/which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "node-which": "bin/node-which"
+ },
+ "engines": {
+ "node": ">= 8"
}
},
- "has-flag": {
+ "node_modules/has-flag": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "has-value": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz",
- "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=",
- "requires": {
- "get-value": "^2.0.6",
- "has-values": "^1.0.0",
- "isobject": "^3.0.0"
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "engines": {
+ "node": ">=8"
}
},
- "has-values": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz",
- "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=",
- "requires": {
- "is-number": "^3.0.0",
- "kind-of": "^4.0.0"
- },
- "dependencies": {
- "kind-of": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz",
- "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
+ "node_modules/hasown": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
}
},
- "he": {
+ "node_modules/he": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
- "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw=="
+ "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
+ "bin": {
+ "he": "bin/he"
+ }
},
- "highlight.js": {
- "version": "10.7.2",
- "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.2.tgz",
- "integrity": "sha512-oFLl873u4usRM9K63j4ME9u3etNF0PLiJhSQ8rdfuL51Wn3zkD6drf9ZW0dOzjnZI22YYG24z30JcmfCZjMgYg=="
+ "node_modules/highlight.js": {
+ "version": "10.7.3",
+ "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz",
+ "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==",
+ "engines": {
+ "node": "*"
+ }
},
- "homedir-polyfill": {
+ "node_modules/homedir-polyfill": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz",
"integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==",
- "requires": {
+ "dependencies": {
"parse-passwd": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "hooker": {
+ "node_modules/hooker": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz",
- "integrity": "sha1-uDT3I8xKJCqmWWNFnfbZhMXT2Vk="
- },
- "htmlparser2": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz",
- "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==",
- "requires": {
- "domelementtype": "^1.3.1",
- "domhandler": "^2.3.0",
- "domutils": "^1.5.1",
- "entities": "^1.1.1",
- "inherits": "^2.0.1",
- "readable-stream": "^3.1.1"
- }
- },
- "iconv-lite": {
- "version": "0.4.24",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "requires": {
- "safer-buffer": ">= 2.1.2 < 3"
- }
- },
- "inflight": {
+ "integrity": "sha512-t+UerCsQviSymAInD01Pw+Dn/usmz1sRO+3Zk1+lx8eg+WKpD2ulcwWqHHL0+aseRBr+3+vIhiG1K1JTwaIcTA==",
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/htmlparser2": {
+ "version": "8.0.2",
+ "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz",
+ "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==",
+ "funding": [
+ "https://github.com/fb55/htmlparser2?sponsor=1",
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fb55"
+ }
+ ],
+ "dependencies": {
+ "domelementtype": "^2.3.0",
+ "domhandler": "^5.0.3",
+ "domutils": "^3.0.1",
+ "entities": "^4.4.0"
+ }
+ },
+ "node_modules/iconv-lite": {
+ "version": "0.6.3",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
+ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/inflight": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
- "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
- "requires": {
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
+ "dependencies": {
"once": "^1.3.0",
"wrappy": "1"
}
},
- "inherits": {
+ "node_modules/inherits": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
},
- "ini": {
+ "node_modules/ini": {
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
},
- "interpret": {
+ "node_modules/interpret": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz",
- "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ="
+ "integrity": "sha512-CLM8SNMDu7C5psFCn6Wg/tgpj/bKAg7hc2gWqcuR9OD5Ft9PhBpIu8PLicPeis+xDd6YX2ncI8MCA64I9tftIA=="
},
- "is-absolute": {
+ "node_modules/is-absolute": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz",
"integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==",
- "requires": {
+ "dependencies": {
"is-relative": "^1.0.0",
"is-windows": "^1.0.1"
- }
- },
- "is-accessor-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
- "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
- "requires": {
- "kind-of": "^3.0.2"
},
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "is-buffer": {
- "version": "1.1.6",
- "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
- "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="
- },
- "is-data-descriptor": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
- "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
- "requires": {
- "kind-of": "^3.0.2"
- },
+ "node_modules/is-core-module": {
+ "version": "2.13.1",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz",
+ "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==",
"dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "is-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
- "requires": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
+ "hasown": "^2.0.0"
},
- "dependencies": {
- "kind-of": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
- }
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik="
- },
- "is-extglob": {
+ "node_modules/is-extglob": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI="
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "is-glob": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
- "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
- "requires": {
- "is-extglob": "^2.1.0"
+ "node_modules/is-glob": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+ "dependencies": {
+ "is-extglob": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "is-number": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
- "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
+ "node_modules/is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "engines": {
+ "node": ">=0.12.0"
}
},
- "is-plain-object": {
+ "node_modules/is-plain-object": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
"integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
- "requires": {
+ "dependencies": {
"isobject": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "is-relative": {
+ "node_modules/is-relative": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz",
"integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==",
- "requires": {
+ "dependencies": {
"is-unc-path": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "is-unc-path": {
+ "node_modules/is-unc-path": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz",
"integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==",
- "requires": {
+ "dependencies": {
"unc-path-regex": "^0.1.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "is-windows": {
+ "node_modules/is-windows": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
- "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA=="
- },
- "isarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
- "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
+ "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "isexe": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA="
+ "node_modules/isexe": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz",
+ "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==",
+ "engines": {
+ "node": ">=16"
+ }
},
- "isobject": {
+ "node_modules/isobject": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
- "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8="
+ "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "js-yaml": {
- "version": "3.14.0",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz",
- "integrity": "sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==",
- "requires": {
+ "node_modules/js-yaml": {
+ "version": "3.14.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
+ "dependencies": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
}
},
- "kind-of": {
+ "node_modules/kind-of": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
- "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
- },
- "liftoff": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz",
- "integrity": "sha1-IAkpG7Mc6oYbvxCnwVooyvdcMew=",
- "requires": {
- "extend": "^3.0.0",
- "findup-sync": "^2.0.0",
- "fined": "^1.0.1",
- "flagged-respawn": "^1.0.0",
+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/liftup": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/liftup/-/liftup-3.0.1.tgz",
+ "integrity": "sha512-yRHaiQDizWSzoXk3APcA71eOI/UuhEkNN9DiW2Tt44mhYzX4joFoCZlxsSOF7RyeLlfqzFLQI1ngFq3ggMPhOw==",
+ "dependencies": {
+ "extend": "^3.0.2",
+ "findup-sync": "^4.0.0",
+ "fined": "^1.2.0",
+ "flagged-respawn": "^1.0.1",
"is-plain-object": "^2.0.4",
- "object.map": "^1.0.0",
- "rechoir": "^0.6.2",
- "resolve": "^1.1.7"
- },
- "dependencies": {
- "findup-sync": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz",
- "integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=",
- "requires": {
- "detect-file": "^1.0.0",
- "is-glob": "^3.1.0",
- "micromatch": "^3.0.4",
- "resolve-dir": "^1.0.1"
- }
- }
+ "object.map": "^1.0.1",
+ "rechoir": "^0.7.0",
+ "resolve": "^1.19.0"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "lodash": {
+ "node_modules/liftup/node_modules/findup-sync": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz",
+ "integrity": "sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==",
+ "dependencies": {
+ "detect-file": "^1.0.0",
+ "is-glob": "^4.0.0",
+ "micromatch": "^4.0.2",
+ "resolve-dir": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/lodash": {
"version": "4.17.21",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
},
- "lodash.assignin": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz",
- "integrity": "sha1-uo31+4QesKPoBEIysOJjqNxqKKI="
- },
- "lodash.bind": {
- "version": "4.2.1",
- "resolved": "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz",
- "integrity": "sha1-euMBfpOWIqwxt9fX3LGzTbFpDTU="
- },
- "lodash.defaults": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz",
- "integrity": "sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw="
- },
- "lodash.filter": {
- "version": "4.6.0",
- "resolved": "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz",
- "integrity": "sha1-ZosdSYFgOuHMWm+nYBQ+SAtMSs4="
- },
- "lodash.flatten": {
- "version": "4.4.0",
- "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz",
- "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8="
- },
- "lodash.foreach": {
- "version": "4.5.0",
- "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz",
- "integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM="
- },
- "lodash.map": {
- "version": "4.6.0",
- "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz",
- "integrity": "sha1-dx7Hg540c9nEzeKLGTlMNWL09tM="
- },
- "lodash.merge": {
- "version": "4.6.2",
- "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
- "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="
- },
- "lodash.pick": {
- "version": "4.4.0",
- "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz",
- "integrity": "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM="
- },
- "lodash.reduce": {
- "version": "4.6.0",
- "resolved": "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz",
- "integrity": "sha1-8atrg5KZrUj3hKu/R2WW8DuRTTs="
- },
- "lodash.reject": {
- "version": "4.6.0",
- "resolved": "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz",
- "integrity": "sha1-gNZJLcFHCGS79YNTO2UfQqn1JBU="
- },
- "lodash.some": {
- "version": "4.6.0",
- "resolved": "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz",
- "integrity": "sha1-G7nzFO9ri63tE7VJFpsqlF62jk0="
- },
- "make-iterator": {
+ "node_modules/make-iterator": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz",
"integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==",
- "requires": {
+ "dependencies": {
"kind-of": "^6.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "map-cache": {
+ "node_modules/map-cache": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
- "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8="
+ "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "map-visit": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz",
- "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=",
- "requires": {
- "object-visit": "^1.0.0"
- }
- },
- "marked": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/marked/-/marked-2.0.5.tgz",
- "integrity": "sha512-yfCEUXmKhBPLOzEC7c+tc4XZdIeTdGoRCZakFMkCxodr7wDXqoapIME4wjcpBPJLNyUnKJ3e8rb8wlAgnLnaDw=="
- },
- "micromatch": {
- "version": "3.1.10",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
- "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
- "requires": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- }
- },
- "minimatch": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
- "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
- "requires": {
- "brace-expansion": "^1.1.7"
+ "node_modules/marked": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz",
+ "integrity": "sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==",
+ "bin": {
+ "marked": "bin/marked.js"
+ },
+ "engines": {
+ "node": ">= 12"
}
},
- "mixin-deep": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz",
- "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==",
- "requires": {
- "for-in": "^1.0.2",
- "is-extendable": "^1.0.1"
- },
- "dependencies": {
- "is-extendable": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
- "requires": {
- "is-plain-object": "^2.0.4"
- }
- }
+ "node_modules/micromatch": {
+ "version": "4.0.5",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
+ "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
+ "dependencies": {
+ "braces": "^3.0.2",
+ "picomatch": "^2.3.1"
+ },
+ "engines": {
+ "node": ">=8.6"
}
},
- "mkdirp": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
- "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="
+ "node_modules/minimatch": {
+ "version": "3.0.8",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz",
+ "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==",
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
},
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
- },
- "nanomatch": {
- "version": "1.2.13",
- "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz",
- "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==",
- "requires": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "fragment-cache": "^0.2.1",
- "is-windows": "^1.0.2",
- "kind-of": "^6.0.2",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
- }
- },
- "nopt": {
+ "node_modules/nopt": {
"version": "3.0.6",
"resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz",
- "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=",
- "requires": {
+ "integrity": "sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==",
+ "dependencies": {
"abbrev": "1"
+ },
+ "bin": {
+ "nopt": "bin/nopt.js"
}
},
- "nth-check": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz",
- "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==",
- "requires": {
- "boolbase": "~1.0.0"
- }
- },
- "object-copy": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz",
- "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=",
- "requires": {
- "copy-descriptor": "^0.1.0",
- "define-property": "^0.2.5",
- "kind-of": "^3.0.3"
- },
- "dependencies": {
- "define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "requires": {
- "is-descriptor": "^0.1.0"
- }
- },
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "object-visit": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz",
- "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=",
- "requires": {
- "isobject": "^3.0.0"
+ "node_modules/nth-check": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
+ "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
+ "dependencies": {
+ "boolbase": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/nth-check?sponsor=1"
}
},
- "object.defaults": {
+ "node_modules/object.defaults": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz",
- "integrity": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=",
- "requires": {
+ "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==",
+ "dependencies": {
"array-each": "^1.0.1",
"array-slice": "^1.0.0",
"for-own": "^1.0.0",
"isobject": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "object.map": {
+ "node_modules/object.map": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz",
- "integrity": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=",
- "requires": {
+ "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==",
+ "dependencies": {
"for-own": "^1.0.0",
"make-iterator": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "object.pick": {
+ "node_modules/object.pick": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz",
- "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=",
- "requires": {
+ "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==",
+ "dependencies": {
"isobject": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "once": {
+ "node_modules/once": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
- "requires": {
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
+ "dependencies": {
"wrappy": "1"
}
},
- "os-homedir": {
+ "node_modules/os-homedir": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz",
- "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M="
+ "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "os-tmpdir": {
+ "node_modules/os-tmpdir": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
- "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ="
+ "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "osenv": {
+ "node_modules/osenv": {
"version": "0.1.5",
"resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz",
"integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==",
- "requires": {
+ "dependencies": {
"os-homedir": "^1.0.0",
"os-tmpdir": "^1.0.0"
}
},
- "parse-filepath": {
+ "node_modules/parse-filepath": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz",
- "integrity": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=",
- "requires": {
+ "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==",
+ "dependencies": {
"is-absolute": "^1.0.0",
"map-cache": "^0.2.0",
"path-root": "^0.1.1"
+ },
+ "engines": {
+ "node": ">=0.8"
}
},
- "parse-passwd": {
+ "node_modules/parse-passwd": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz",
- "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY="
+ "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "pascalcase": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz",
- "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ="
+ "node_modules/parse5": {
+ "version": "7.1.2",
+ "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz",
+ "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==",
+ "dependencies": {
+ "entities": "^4.4.0"
+ },
+ "funding": {
+ "url": "https://github.com/inikulin/parse5?sponsor=1"
+ }
+ },
+ "node_modules/parse5-htmlparser2-tree-adapter": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz",
+ "integrity": "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==",
+ "dependencies": {
+ "domhandler": "^5.0.2",
+ "parse5": "^7.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/inikulin/parse5?sponsor=1"
+ }
},
- "path-is-absolute": {
+ "node_modules/path-is-absolute": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
- "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "path-parse": {
+ "node_modules/path-parse": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
},
- "path-root": {
+ "node_modules/path-root": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz",
- "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=",
- "requires": {
+ "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==",
+ "dependencies": {
"path-root-regex": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "path-root-regex": {
+ "node_modules/path-root-regex": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz",
- "integrity": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0="
- },
- "posix-character-classes": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz",
- "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs="
- },
- "readable-stream": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
- "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
- "requires": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
+ "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==",
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "rechoir": {
- "version": "0.6.2",
- "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz",
- "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=",
- "requires": {
- "resolve": "^1.1.6"
+ "node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
}
},
- "regex-not": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
- "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==",
- "requires": {
- "extend-shallow": "^3.0.2",
- "safe-regex": "^1.1.0"
+ "node_modules/rechoir": {
+ "version": "0.7.1",
+ "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz",
+ "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==",
+ "dependencies": {
+ "resolve": "^1.9.0"
+ },
+ "engines": {
+ "node": ">= 0.10"
}
},
- "repeat-element": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz",
- "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g=="
- },
- "repeat-string": {
- "version": "1.6.1",
- "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
- "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc="
- },
- "resolve": {
- "version": "1.17.0",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz",
- "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==",
- "requires": {
- "path-parse": "^1.0.6"
+ "node_modules/resolve": {
+ "version": "1.22.8",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz",
+ "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
+ "dependencies": {
+ "is-core-module": "^2.13.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "resolve-dir": {
+ "node_modules/resolve-dir": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz",
- "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=",
- "requires": {
+ "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==",
+ "dependencies": {
"expand-tilde": "^2.0.0",
"global-modules": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "resolve-url": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz",
- "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo="
- },
- "ret": {
- "version": "0.1.15",
- "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
- "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg=="
- },
- "rimraf": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
- "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
- "requires": {
- "glob": "^7.1.3"
- }
- },
- "safe-buffer": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
- },
- "safe-regex": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz",
- "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=",
- "requires": {
- "ret": "~0.1.10"
- }
- },
- "safer-buffer": {
+ "node_modules/safer-buffer": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
},
- "sax": {
+ "node_modules/sax": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
"integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
},
- "set-value": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz",
- "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==",
- "requires": {
- "extend-shallow": "^2.0.1",
- "is-extendable": "^0.1.1",
- "is-plain-object": "^2.0.3",
- "split-string": "^3.0.1"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "snapdragon": {
- "version": "0.8.2",
- "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz",
- "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==",
- "requires": {
- "base": "^0.11.1",
- "debug": "^2.2.0",
- "define-property": "^0.2.5",
- "extend-shallow": "^2.0.1",
- "map-cache": "^0.2.2",
- "source-map": "^0.5.6",
- "source-map-resolve": "^0.5.0",
- "use": "^3.1.0"
- },
- "dependencies": {
- "define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "requires": {
- "is-descriptor": "^0.1.0"
- }
- },
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "snapdragon-node": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz",
- "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==",
- "requires": {
- "define-property": "^1.0.0",
- "isobject": "^3.0.0",
- "snapdragon-util": "^3.0.1"
- },
- "dependencies": {
- "define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
- "requires": {
- "is-descriptor": "^1.0.0"
- }
- },
- "is-accessor-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-data-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-descriptor": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
- "requires": {
- "is-accessor-descriptor": "^1.0.0",
- "is-data-descriptor": "^1.0.0",
- "kind-of": "^6.0.2"
- }
- }
- }
- },
- "snapdragon-util": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
- "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==",
- "requires": {
- "kind-of": "^3.2.0"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "source-map": {
- "version": "0.5.7",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
- "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
- },
- "source-map-resolve": {
- "version": "0.5.3",
- "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz",
- "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==",
- "requires": {
- "atob": "^2.1.2",
- "decode-uri-component": "^0.2.0",
- "resolve-url": "^0.2.1",
- "source-map-url": "^0.4.0",
- "urix": "^0.1.0"
- }
- },
- "source-map-url": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz",
- "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM="
- },
- "spawnback": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/spawnback/-/spawnback-1.0.1.tgz",
- "integrity": "sha512-340ZqtqJzWAZtHwaCC2gx4mdQOnkUWAWNDp7y0bCEatdjmgQ4j7b0qQ7qO5WIJWx/luNrKcrYzpKbH3NTR030A=="
- },
- "split-string": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz",
- "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==",
- "requires": {
- "extend-shallow": "^3.0.0"
- }
- },
- "sprintf-js": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz",
- "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug=="
- },
- "static-extend": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz",
- "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=",
- "requires": {
- "define-property": "^0.2.5",
- "object-copy": "^0.1.0"
- },
- "dependencies": {
- "define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "requires": {
- "is-descriptor": "^0.1.0"
- }
- }
- }
- },
- "string_decoder": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
- "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
- "requires": {
- "safe-buffer": "~5.2.0"
- }
+ "node_modules/sprintf-js": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
+ "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g=="
},
- "supports-color": {
+ "node_modules/supports-color": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "requires": {
+ "dependencies": {
"has-flag": "^4.0.0"
- }
- },
- "to-object-path": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz",
- "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=",
- "requires": {
- "kind-of": "^3.0.2"
},
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
+ "engines": {
+ "node": ">=8"
}
},
- "to-regex": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz",
- "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==",
- "requires": {
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "regex-not": "^1.0.2",
- "safe-regex": "^1.1.0"
+ "node_modules/supports-preserve-symlinks-flag": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "to-regex-range": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
- "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
- "requires": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
+ "node_modules/to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "dependencies": {
+ "is-number": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8.0"
}
},
- "unc-path-regex": {
+ "node_modules/unc-path-regex": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz",
- "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo="
- },
- "underscore.string": {
- "version": "3.3.5",
- "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.5.tgz",
- "integrity": "sha512-g+dpmgn+XBneLmXXo+sGlW5xQEt4ErkS3mgeN2GFbremYeMBSJKr9Wf2KJplQVaiPY/f7FN6atosWYNm9ovrYg==",
- "requires": {
- "sprintf-js": "^1.0.3",
- "util-deprecate": "^1.0.2"
+ "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==",
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "union-value": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz",
- "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==",
- "requires": {
- "arr-union": "^3.1.0",
- "get-value": "^2.0.6",
- "is-extendable": "^0.1.1",
- "set-value": "^2.0.1"
- }
- },
- "unset-value": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz",
- "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=",
- "requires": {
- "has-value": "^0.3.1",
- "isobject": "^3.0.0"
- },
+ "node_modules/underscore.string": {
+ "version": "3.3.6",
+ "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.6.tgz",
+ "integrity": "sha512-VoC83HWXmCrF6rgkyxS9GHv8W9Q5nhMKho+OadDJGzL2oDYbYEppBaCMH6pFlwLeqj2QS+hhkw2kpXkSdD1JxQ==",
"dependencies": {
- "has-value": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz",
- "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=",
- "requires": {
- "get-value": "^2.0.3",
- "has-values": "^0.1.4",
- "isobject": "^2.0.0"
- },
- "dependencies": {
- "isobject": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
- "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=",
- "requires": {
- "isarray": "1.0.0"
- }
- }
- }
- },
- "has-values": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz",
- "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E="
- }
+ "sprintf-js": "^1.1.1",
+ "util-deprecate": "^1.0.2"
+ },
+ "engines": {
+ "node": "*"
}
},
- "urix": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
- "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI="
- },
- "use": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
- "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ=="
+ "node_modules/underscore.string/node_modules/sprintf-js": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz",
+ "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA=="
},
- "util-deprecate": {
+ "node_modules/util-deprecate": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
- "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
},
- "v8flags": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.1.3.tgz",
- "integrity": "sha512-amh9CCg3ZxkzQ48Mhcb8iX7xpAfYJgePHxWMQCBWECpOSqJUXgY26ncA61UTV0BkPqfhcy6mzwCIoP4ygxpW8w==",
- "requires": {
+ "node_modules/v8flags": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz",
+ "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==",
+ "dependencies": {
"homedir-polyfill": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.10"
}
},
- "which": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
- "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
- "requires": {
- "isexe": "^2.0.0"
+ "node_modules/which": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz",
+ "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==",
+ "dependencies": {
+ "isexe": "^3.1.1"
+ },
+ "bin": {
+ "node-which": "bin/which.js"
+ },
+ "engines": {
+ "node": "^16.13.0 || >=18.0.0"
}
},
- "wordpress": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/wordpress/-/wordpress-1.4.1.tgz",
- "integrity": "sha512-U2zADxCSyyYcpgc5i7ipiDzNx6/e0zq2ldWyqTqr8n88Nj+iHd5JT/WavZkIQ+x0b9QlBv9lHoXyrqxdbckIrw==",
- "requires": {
+ "node_modules/wordpress": {
+ "version": "1.4.2",
+ "resolved": "https://registry.npmjs.org/wordpress/-/wordpress-1.4.2.tgz",
+ "integrity": "sha512-T+o+Af6pK7mhTz/rJEZk4PpSIyRMVhx6vZm6UsmrnlL8pVudhu1gWzn1n3wZXlcEZQz7I0AOkEvPQ5hu++L+qg==",
+ "dependencies": {
"xmlrpc": "1.3.2"
}
},
- "wrappy": {
+ "node_modules/wrappy": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
- "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
},
- "xmlbuilder": {
+ "node_modules/xmlbuilder": {
"version": "8.2.2",
"resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-8.2.2.tgz",
- "integrity": "sha1-aSSGc0ELS6QuGmE2VR0pIjNap3M="
+ "integrity": "sha512-eKRAFz04jghooy8muekqzo8uCSVNeyRedbuJrp0fovbLIi7wlsYtdUn3vBAAPq2Y3/0xMz2WMEUQ8yhVVO9Stw==",
+ "engines": {
+ "node": ">=4.0"
+ }
},
- "xmlrpc": {
+ "node_modules/xmlrpc": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/xmlrpc/-/xmlrpc-1.3.2.tgz",
- "integrity": "sha1-JrLqNHhI0Ciqx+dRS1NRl23j6D0=",
- "requires": {
+ "integrity": "sha512-jQf5gbrP6wvzN71fgkcPPkF4bF/Wyovd7Xdff8d6/ihxYmgETQYSuTc+Hl+tsh/jmgPLro/Aro48LMFlIyEKKQ==",
+ "dependencies": {
"sax": "1.2.x",
"xmlbuilder": "8.2.x"
+ },
+ "engines": {
+ "node": ">=0.8",
+ "npm": ">=1.0.0"
}
}
}
diff --git a/package.json b/package.json
index c0533837..d7e02759 100644
--- a/package.json
+++ b/package.json
@@ -24,8 +24,7 @@
"test": "grunt lint"
},
"dependencies": {
- "grunt": "1.3.0",
- "grunt-cli": "1.3.2",
- "grunt-jquery-content": "3.1.0"
+ "grunt": "1.6.1",
+ "grunt-jquery-content": "3.3.1"
}
}
From 20e2eaa42e1514dd2693cdb162f970333b458a10 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?=
Date: Fri, 10 May 2024 16:29:21 +0200
Subject: [PATCH 262/280] Build: Update Node in .nvmrc from 10 to 18
---
.nvmrc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.nvmrc b/.nvmrc
index f599e28b..3c032078 100644
--- a/.nvmrc
+++ b/.nvmrc
@@ -1 +1 @@
-10
+18
From 2665219546b014f386b213ed1d870b2f4c2a30c2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?=
Date: Fri, 10 May 2024 16:31:05 +0200
Subject: [PATCH 263/280] All: Update jQuery UI & jQuery used in entries
Updates:
* jQuery UI from 1.12.1 to 1.13.3
* jQuery from 1.12.4 to 3.7.1
---
entries2html.xsl | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/entries2html.xsl b/entries2html.xsl
index fe51e73d..0ceb81a4 100644
--- a/entries2html.xsl
+++ b/entries2html.xsl
@@ -9,10 +9,10 @@
<head>
<meta charset="utf-8">
<title> demo</title>
- <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
+ <link rel="stylesheet" href="//code.jquery.com/ui/1.13.3/themes/smoothness/jquery-ui.css">
<style> </style>
- <script src="//code.jquery.com/jquery-1.12.4.js"></script>
- <script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
+ <script src="//code.jquery.com/jquery-3.7.1.js"></script>
+ <script src="//code.jquery.com/ui/1.13.3/jquery-ui.js"></script>
</head>
<body>
From 1f704bc06f4daebb1f0bf701a21737ebd1f25f4b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?=
Date: Fri, 10 May 2024 16:31:44 +0200
Subject: [PATCH 264/280] 1.13.5
---
package-lock.json | 4 ++--
package.json | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index d01a6372..10651252 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "api.jqueryui.com",
- "version": "1.13.4",
+ "version": "1.13.5",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "api.jqueryui.com",
- "version": "1.13.4",
+ "version": "1.13.5",
"dependencies": {
"grunt": "1.6.1",
"grunt-jquery-content": "3.3.1"
diff --git a/package.json b/package.json
index d7e02759..aee658be 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "api.jqueryui.com",
"title": "jQuery UI API Docs",
"description": "API reference documentation for jQuery UI.",
- "version": "1.13.4",
+ "version": "1.13.5",
"homepage": "https://github.com/jquery/api.jqueryui.com",
"author": {
"name": "jQuery Foundation and other contributors"
From 68d36a80f454f73eb9beac75efe0488937de4aa6 Mon Sep 17 00:00:00 2001
From: kkmuffme <11071985+kkmuffme@users.noreply.github.com>
Date: Fri, 10 May 2024 16:34:40 +0200
Subject: [PATCH 265/280] Draggable:Sortable: Clarity the helper description
Since the helper function is provided by the user, the docs cannot claim what
it will return but what it must return.
Closes gh-346
---
entries/draggable.xml | 2 +-
entries/sortable.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/entries/draggable.xml b/entries/draggable.xml
index 62a0e19d..f3a30395 100644
--- a/entries/draggable.xml
+++ b/entries/draggable.xml
@@ -99,7 +99,7 @@
If set to "clone"
, then the element will be cloned and the clone will be dragged.
- A function that will return a DOMElement to use while dragging.
+ A function that must return a jQuery or DOMElement to use while dragging.
diff --git a/entries/sortable.xml b/entries/sortable.xml
index 511c84a1..5b6e12a6 100644
--- a/entries/sortable.xml
+++ b/entries/sortable.xml
@@ -110,7 +110,7 @@
If set to "clone"
, then the element will be cloned and the clone will be dragged.
- A function that will return a DOMElement to use while dragging. The function receives the event and the element being sorted.
+ A function that must return a jQuery or DOMElement to use while dragging. The function receives the event and the jQuery element being sorted.
From 99038c652d615d72d2be5a3c0c3584c84cce55ef Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?=
Date: Fri, 10 May 2024 16:37:56 +0200
Subject: [PATCH 266/280] Build: Test on Node 18 & 20 instead of 10 & 18
---
.github/workflows/node.js.yml | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml
index 5309c6fa..61e032cb 100644
--- a/.github/workflows/node.js.yml
+++ b/.github/workflows/node.js.yml
@@ -15,8 +15,7 @@ jobs:
strategy:
matrix:
- # Old infra requires Node 10
- node-version: [10.x, 18.x]
+ node-version: [18.x, 20.x]
steps:
- name: Install xmllint
From 2cff14ff2833ba8f63e2d1b10b1a60a7c2f1a64d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?=
Date: Fri, 10 May 2024 16:41:27 +0200
Subject: [PATCH 267/280] Build: Update GitHub Actions
---
.github/workflows/node.js.yml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml
index 61e032cb..bcac8dd0 100644
--- a/.github/workflows/node.js.yml
+++ b/.github/workflows/node.js.yml
@@ -18,11 +18,12 @@ jobs:
node-version: [18.x, 20.x]
steps:
+ - name: Checkout
+ uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- name: Install xmllint
run: sudo apt-get install -y libxml2-utils
- - uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v3
+ uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
From 1e5510b2dc313e70c173fe4027845528a2f58ecc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?=
Date: Fri, 10 May 2024 16:41:59 +0200
Subject: [PATCH 268/280] 1.13.6
---
package-lock.json | 4 ++--
package.json | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index 10651252..d77de916 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "api.jqueryui.com",
- "version": "1.13.5",
+ "version": "1.13.6",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "api.jqueryui.com",
- "version": "1.13.5",
+ "version": "1.13.6",
"dependencies": {
"grunt": "1.6.1",
"grunt-jquery-content": "3.3.1"
diff --git a/package.json b/package.json
index aee658be..b095a0fc 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "api.jqueryui.com",
"title": "jQuery UI API Docs",
"description": "API reference documentation for jQuery UI.",
- "version": "1.13.5",
+ "version": "1.13.6",
"homepage": "https://github.com/jquery/api.jqueryui.com",
"author": {
"name": "jQuery Foundation and other contributors"
From ec2398fd72f294646b84d7dd0a293a8b0c8aea58 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?=
Date: Fri, 10 May 2024 16:45:42 +0200
Subject: [PATCH 269/280] All: Use HTTPS instead of protocol-relative URLs
---
categories.xml | 2 +-
entries/jQuery.effects.clipToBox.xml | 4 ++--
entries/jQuery.widget.xml | 4 ++--
entries/slider.xml | 2 +-
entries/tabs.xml | 4 ++--
entries2html.xsl | 6 +++---
6 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/categories.xml b/categories.xml
index 4b291c01..3869a7a1 100644
--- a/categories.xml
+++ b/categories.xml
@@ -2,7 +2,7 @@
diff --git a/entries/jQuery.effects.clipToBox.xml b/entries/jQuery.effects.clipToBox.xml
index 0300186e..de234316 100644
--- a/entries/jQuery.effects.clipToBox.xml
+++ b/entries/jQuery.effects.clipToBox.xml
@@ -4,12 +4,12 @@
jQuery.effects.clipToBox()
- A set of properties that will eventually be passed to .animate()
. The animationProperties
must contain a clip
property.
+ A set of properties that will eventually be passed to .animate()
. The animationProperties
must contain a clip
property.
Calculates position and dimensions based on a clip animation.
- This method is useful for mimicking a clip animation when using a placeholder for effects. Given a clip animation, jQuery.effects.clipToBox()
will generate an object containing top
, left
, width
, and height
properties which can be passed to .css()
or .animate()
. This method is generally used in conjunction with jQuery.effects.createPlaceholder()
.
+ This method is useful for mimicking a clip animation when using a placeholder for effects. Given a clip animation, jQuery.effects.clipToBox()
will generate an object containing top
, left
, width
, and height
properties which can be passed to .css()
or .animate()
. This method is generally used in conjunction with jQuery.effects.createPlaceholder()
.
diff --git a/entries/jQuery.widget.xml b/entries/jQuery.widget.xml
index 1e77f2a8..d544c378 100644
--- a/entries/jQuery.widget.xml
+++ b/entries/jQuery.widget.xml
@@ -43,7 +43,7 @@
We can pass as many or as few options as we want during initialization. Any options that we don't pass will just use their default values.
- You can pass multiple options arguments. Those arguments will be merged into one object (similar to $.extend( true, target, object1, objectN )
). This is useful for sharing options between instances, while overriding some properties for each one:
+ You can pass multiple options arguments. Those arguments will be merged into one object (similar to $.extend( true, target, object1, objectN )
). This is useful for sharing options between instances, while overriding some properties for each one:
var options = { modal: true, show: "slow" };
@@ -121,7 +121,7 @@
$( "#not-a-progressbar" ).progressbar( "instance" ); // undefined
- The instance is stored using jQuery.data()
with the widget's full name as the key. Therefore, the :data
selector can also determine whether an element has a given widget bound to it.
+ The instance is stored using jQuery.data()
with the widget's full name as the key. Therefore, the :data
selector can also determine whether an element has a given widget bound to it.
$( "#elem" ).is( ":data('ui-progressbar')" ); // true
diff --git a/entries/slider.xml b/entries/slider.xml
index 9a41ff73..58e6f675 100644
--- a/entries/slider.xml
+++ b/entries/slider.xml
@@ -30,7 +30,7 @@
1.5
- Whether to slide the handle smoothly when the user clicks on the slider track. Also accepts any valid animation duration .
+ Whether to slide the handle smoothly when the user clicks on the slider track. Also accepts any valid animation duration .
When set to true
, the handle will animate with the default duration.
diff --git a/entries/tabs.xml b/entries/tabs.xml
index 5e7deb60..283fcfe6 100644
--- a/entries/tabs.xml
+++ b/entries/tabs.xml
@@ -182,7 +182,7 @@
Triggered when a remote tab is about to be loaded, after the beforeActivate
event. Can be canceled to prevent the tab panel from loading content; though the panel will still be activated. This event is triggered just before the Ajax request is made, so modifications can be made to ui.jqXHR
and ui.ajaxSettings
.
- Note: Although ui.ajaxSettings
is provided and can be modified, some of these properties have already been processed by jQuery. For example, prefilters have been applied, data
has been processed, and type
has been determined. The beforeLoad
event occurs at the same time, and therefore has the same restrictions, as the beforeSend
callback from jQuery.ajax()
.
+ Note: Although ui.ajaxSettings
is provided and can be modified, some of these properties have already been processed by jQuery. For example, prefilters have been applied, data
has been processed, and type
has been determined. The beforeLoad
event occurs at the same time, and therefore has the same restrictions, as the beforeSend
callback from jQuery.ajax()
.
@@ -196,7 +196,7 @@
The jqXHR
object that is requesting the content.
- The properties that will be used by jQuery.ajax
to request the content.
+ The properties that will be used by jQuery.ajax
to request the content.
diff --git a/entries2html.xsl b/entries2html.xsl
index 0ceb81a4..0f3586ff 100644
--- a/entries2html.xsl
+++ b/entries2html.xsl
@@ -9,10 +9,10 @@
<head>
<meta charset="utf-8">
<title> demo</title>
- <link rel="stylesheet" href="//code.jquery.com/ui/1.13.3/themes/smoothness/jquery-ui.css">
+ <link rel="stylesheet" href="https://code.jquery.com/ui/1.13.3/themes/smoothness/jquery-ui.css">
<style> </style>
- <script src="//code.jquery.com/jquery-3.7.1.js"></script>
- <script src="//code.jquery.com/ui/1.13.3/jquery-ui.js"></script>
+ <script src="https://code.jquery.com/jquery-3.7.1.js"></script>
+ <script src="https://code.jquery.com/ui/1.13.3/jquery-ui.js"></script>
</head>
<body>
From a72331eebf6ae94c1aa638bfd2a9399b956e2b04 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?=
Date: Fri, 10 May 2024 16:45:45 +0200
Subject: [PATCH 270/280] 1.13.7
---
package-lock.json | 4 ++--
package.json | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index d77de916..42458170 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "api.jqueryui.com",
- "version": "1.13.6",
+ "version": "1.13.7",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "api.jqueryui.com",
- "version": "1.13.6",
+ "version": "1.13.7",
"dependencies": {
"grunt": "1.6.1",
"grunt-jquery-content": "3.3.1"
diff --git a/package.json b/package.json
index b095a0fc..710825fb 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "api.jqueryui.com",
"title": "jQuery UI API Docs",
"description": "API reference documentation for jQuery UI.",
- "version": "1.13.6",
+ "version": "1.13.7",
"homepage": "https://github.com/jquery/api.jqueryui.com",
"author": {
"name": "jQuery Foundation and other contributors"
From d9ca9c630e43ab766f2d6e22d119cbe699c77150 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?=
Date: Fri, 10 May 2024 16:48:19 +0200
Subject: [PATCH 271/280] Build: Add dependabot automatic update PRs for
actions
---
.github/dependabot.yml | 6 ++++++
1 file changed, 6 insertions(+)
create mode 100644 .github/dependabot.yml
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 00000000..6fff16c7
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,6 @@
+version: 2
+updates:
+ - package-ecosystem: github-actions
+ directory: "/"
+ schedule:
+ interval: monthly
From 0e63e1e3a1d25408735a5cc89f615e7c042e4170 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Sun, 21 Jul 2024 01:18:54 +0200
Subject: [PATCH 272/280] Build: Bump actions/checkout from 4.1.2 to 4.1.7
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.2 to 4.1.7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/9bb56186c3b09b4f86b1c65136769dd318469633...692973e3d937129bcbf40652eb9f2f61becf3332)
Closes gh-357
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
.github/workflows/node.js.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml
index bcac8dd0..3c293502 100644
--- a/.github/workflows/node.js.yml
+++ b/.github/workflows/node.js.yml
@@ -19,7 +19,7 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
+ uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Install xmllint
run: sudo apt-get install -y libxml2-utils
- name: Use Node.js ${{ matrix.node-version }}
From 076569ec930954806f9a7135b8d97e41204961a8 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Sun, 21 Jul 2024 01:22:08 +0200
Subject: [PATCH 273/280] Build: Bump braces from 3.0.2 to 3.0.3
Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3.
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
- [Commits](https://github.com/micromatch/braces/compare/3.0.2...3.0.3)
Closes gh-358
---
updated-dependencies:
- dependency-name: braces
dependency-type: indirect
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
package-lock.json | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index 42458170..51f8a2f5 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -80,11 +80,11 @@
}
},
"node_modules/braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
"dependencies": {
- "fill-range": "^7.0.1"
+ "fill-range": "^7.1.1"
},
"engines": {
"node": ">=8"
@@ -316,9 +316,9 @@
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
},
"node_modules/fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
"dependencies": {
"to-regex-range": "^5.0.1"
},
From dcbd8daa74cf62702c27fa15f5c9bf368513772c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?=
Date: Sun, 21 Jul 2024 01:24:13 +0200
Subject: [PATCH 274/280] 1.13.8
---
package-lock.json | 4 ++--
package.json | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index 51f8a2f5..a3e3c5e5 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "api.jqueryui.com",
- "version": "1.13.7",
+ "version": "1.13.8",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "api.jqueryui.com",
- "version": "1.13.7",
+ "version": "1.13.8",
"dependencies": {
"grunt": "1.6.1",
"grunt-jquery-content": "3.3.1"
diff --git a/package.json b/package.json
index 710825fb..fc71b144 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "api.jqueryui.com",
"title": "jQuery UI API Docs",
"description": "API reference documentation for jQuery UI.",
- "version": "1.13.7",
+ "version": "1.13.8",
"homepage": "https://github.com/jquery/api.jqueryui.com",
"author": {
"name": "jQuery Foundation and other contributors"
From 1c46b8ea6ca5b0220856649283c049c4946cb391 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?=
Date: Sun, 21 Jul 2024 13:25:05 +0200
Subject: [PATCH 275/280] 1.13.9
---
package-lock.json | 4 ++--
package.json | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index a3e3c5e5..70c95ed9 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "api.jqueryui.com",
- "version": "1.13.8",
+ "version": "1.13.9",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "api.jqueryui.com",
- "version": "1.13.8",
+ "version": "1.13.9",
"dependencies": {
"grunt": "1.6.1",
"grunt-jquery-content": "3.3.1"
diff --git a/package.json b/package.json
index fc71b144..3134d624 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "api.jqueryui.com",
"title": "jQuery UI API Docs",
"description": "API reference documentation for jQuery UI.",
- "version": "1.13.8",
+ "version": "1.13.9",
"homepage": "https://github.com/jquery/api.jqueryui.com",
"author": {
"name": "jQuery Foundation and other contributors"
From 61e425b7f13ca5724a4af8765ceb1f4680aaa4f1 Mon Sep 17 00:00:00 2001
From: Ralf Koller <1665422+rpkoller@users.noreply.github.com>
Date: Mon, 9 Sep 2024 17:59:00 +0200
Subject: [PATCH 276/280] Dialog: Document the `uiDialogTitleHeadingLevel`
option
Ref jquery/jquery-ui#2271
Ref jquery/jquery-ui#2275
---
entries/dialog.xml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/entries/dialog.xml b/entries/dialog.xml
index 1feb3644..d1fec480 100644
--- a/entries/dialog.xml
+++ b/entries/dialog.xml
@@ -196,6 +196,12 @@
Specifies the title of the dialog. If the value is null
, the title
attribute on the dialog source element will be used.
+
+
+ Specifies the heading level that wraps the title of the dialog. For a value between 1
to 6
, h1
to h6
is returned. Any other value, including the default 0
, uses a span
instead.
+
+
+
The width of the dialog, in pixels.
From b5bdfd2ba5634b4148f9da494db86023dda0fb72 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 7 Oct 2024 18:55:57 +0200
Subject: [PATCH 277/280] Build: Bump micromatch from 4.0.5 to 4.0.8
Bumps [micromatch](https://github.com/micromatch/micromatch) from 4.0.5 to 4.0.8.
- [Release notes](https://github.com/micromatch/micromatch/releases)
- [Changelog](https://github.com/micromatch/micromatch/blob/master/CHANGELOG.md)
- [Commits](https://github.com/micromatch/micromatch/compare/4.0.5...4.0.8)
Closes gh-362
---
updated-dependencies:
- dependency-name: micromatch
dependency-type: indirect
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
package-lock.json | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index 70c95ed9..7e62095c 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -934,11 +934,11 @@
}
},
"node_modules/micromatch": {
- "version": "4.0.5",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
- "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
"dependencies": {
- "braces": "^3.0.2",
+ "braces": "^3.0.3",
"picomatch": "^2.3.1"
},
"engines": {
From a38330b21915a4cd3e527793d0ddf81a67388dce Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski-Owczarek?=
Date: Sat, 26 Oct 2024 23:53:51 +0200
Subject: [PATCH 278/280] Build: Refer to commits of GitHub Actions, upgrade
them
Also, set up automatic Dependabot updates of actions grouped into a single PR as Core does.
Closes gh-365
Ref jquery/jquery#5503
Ref jquery/api.jquery.com#1248
---
.github/dependabot.yml | 7 +++++++
.github/workflows/node.js.yml | 27 +++++++++++++--------------
2 files changed, 20 insertions(+), 14 deletions(-)
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 6fff16c7..aa2f7456 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -4,3 +4,10 @@ updates:
directory: "/"
schedule:
interval: monthly
+
+ # Group all dependabot version update PRs into one
+ groups:
+ github-actions:
+ applies-to: version-updates
+ patterns:
+ - "*"
diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml
index 3c293502..82bcc0d3 100644
--- a/.github/workflows/node.js.yml
+++ b/.github/workflows/node.js.yml
@@ -3,10 +3,9 @@
name: Node.js CI
on:
- push:
- branches: [ "main" ]
pull_request:
- branches: [ "main" ]
+ push:
+ branches-ignore: "dependabot/**"
jobs:
build:
@@ -18,14 +17,14 @@ jobs:
node-version: [18.x, 20.x]
steps:
- - name: Checkout
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- - name: Install xmllint
- run: sudo apt-get install -y libxml2-utils
- - name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
- with:
- node-version: ${{ matrix.node-version }}
- cache: 'npm'
- - run: npm ci
- - run: npm test
+ - name: Checkout
+ uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
+ - name: Install xmllint
+ run: sudo apt-get install -y libxml2-utils
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: 'npm'
+ - run: npm ci
+ - run: npm test
From 7f7a886f4c3de8c3b1696d0c5a5651636ede5b9d Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Sun, 3 Nov 2024 13:32:19 +0100
Subject: [PATCH 279/280] Build: Bump the github-actions group with 2 updates
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-node](https://github.com/actions/setup-node).
Closes gh-366
Updates `actions/checkout` from 4.2.0 to 4.2.2
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/d632683dd7b4114ad314bca15554477dd762a938...11bd71901bbe5b1630ceea73d27597364c9af683)
Updates `actions/setup-node` from 4.0.4 to 4.1.0
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/0a44ba7841725637a19e28fa30b79a866c81b0a6...39370e3970a6d050c480ffad4ff0ed4d3fdee5af)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: github-actions
- dependency-name: actions/setup-node
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: github-actions
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
.github/workflows/node.js.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml
index 82bcc0d3..31cdcfcd 100644
--- a/.github/workflows/node.js.yml
+++ b/.github/workflows/node.js.yml
@@ -18,11 +18,11 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install xmllint
run: sudo apt-get install -y libxml2-utils
- name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
+ uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
From 62e5ad632267abd0d0ebdc4e9f5b550064fcd05f Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 1 Apr 2025 23:16:50 +0200
Subject: [PATCH 280/280] Build: Bump actions/setup-node in the github-actions
group
Bumps the github-actions group with 1 update: [actions/setup-node](https://github.com/actions/setup-node).
Closes gh-370
Updates `actions/setup-node` from 4.1.0 to 4.2.0
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/39370e3970a6d050c480ffad4ff0ed4d3fdee5af...1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a)
---
updated-dependencies:
- dependency-name: actions/setup-node
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: github-actions
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
.github/workflows/node.js.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml
index 31cdcfcd..e9d2fe6c 100644
--- a/.github/workflows/node.js.yml
+++ b/.github/workflows/node.js.yml
@@ -22,7 +22,7 @@ jobs:
- name: Install xmllint
run: sudo apt-get install -y libxml2-utils
- name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
+ uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'