@bingads-webui-campaign/accounts-grid 0.0.1-security → 13.6.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of @bingads-webui-campaign/accounts-grid might be problematic. Click here for more details.

Files changed (126) hide show
  1. package/AUTHORS.txt +337 -0
  2. package/LICENSE.txt +20 -0
  3. package/README.md +58 -3
  4. package/bower.json +14 -0
  5. package/dist/jquery.js +10996 -0
  6. package/dist/jquery.min.js +2 -0
  7. package/dist/jquery.min.map +1 -0
  8. package/dist/jquery.slim.js +8894 -0
  9. package/dist/jquery.slim.min.js +2 -0
  10. package/dist/jquery.slim.min.map +1 -0
  11. package/external/sizzle/LICENSE.txt +36 -0
  12. package/external/sizzle/dist/sizzle.js +2542 -0
  13. package/external/sizzle/dist/sizzle.min.js +3 -0
  14. package/external/sizzle/dist/sizzle.min.map +1 -0
  15. package/package.json +139 -3
  16. package/src/ajax/jsonp.js +103 -0
  17. package/src/ajax/load.js +77 -0
  18. package/src/ajax/script.js +74 -0
  19. package/src/ajax/var/location.js +5 -0
  20. package/src/ajax/var/nonce.js +5 -0
  21. package/src/ajax/var/rquery.js +5 -0
  22. package/src/ajax/xhr.js +170 -0
  23. package/src/ajax.js +876 -0
  24. package/src/attributes/attr.js +141 -0
  25. package/src/attributes/classes.js +184 -0
  26. package/src/attributes/prop.js +142 -0
  27. package/src/attributes/support.js +33 -0
  28. package/src/attributes/val.js +191 -0
  29. package/src/attributes.js +13 -0
  30. package/src/callbacks.js +236 -0
  31. package/src/core/DOMEval.js +43 -0
  32. package/src/core/access.js +72 -0
  33. package/src/core/camelCase.js +23 -0
  34. package/src/core/init.js +129 -0
  35. package/src/core/isAttached.js +26 -0
  36. package/src/core/nodeName.js +13 -0
  37. package/src/core/parseHTML.js +65 -0
  38. package/src/core/parseXML.js +35 -0
  39. package/src/core/ready-no-deferred.js +97 -0
  40. package/src/core/ready.js +86 -0
  41. package/src/core/readyException.js +13 -0
  42. package/src/core/stripAndCollapse.js +14 -0
  43. package/src/core/support.js +20 -0
  44. package/src/core/toType.js +20 -0
  45. package/src/core/var/rsingleTag.js +7 -0
  46. package/src/core.js +400 -0
  47. package/src/css/addGetHookIf.js +26 -0
  48. package/src/css/adjustCSS.js +74 -0
  49. package/src/css/curCSS.js +100 -0
  50. package/src/css/finalPropName.js +42 -0
  51. package/src/css/hiddenVisibleSelectors.js +15 -0
  52. package/src/css/showHide.js +105 -0
  53. package/src/css/support.js +152 -0
  54. package/src/css/var/cssExpand.js +5 -0
  55. package/src/css/var/getStyles.js +17 -0
  56. package/src/css/var/isHiddenWithinTree.js +34 -0
  57. package/src/css/var/rboxStyle.js +7 -0
  58. package/src/css/var/rcustomProp.js +7 -0
  59. package/src/css/var/rnumnonpx.js +7 -0
  60. package/src/css/var/swap.js +26 -0
  61. package/src/css.js +495 -0
  62. package/src/data/Data.js +162 -0
  63. package/src/data/var/acceptData.js +19 -0
  64. package/src/data/var/dataPriv.js +7 -0
  65. package/src/data/var/dataUser.js +7 -0
  66. package/src/data.js +180 -0
  67. package/src/deferred/exceptionHook.js +21 -0
  68. package/src/deferred.js +399 -0
  69. package/src/deprecated/ajax-event-alias.js +22 -0
  70. package/src/deprecated/event.js +50 -0
  71. package/src/deprecated.js +89 -0
  72. package/src/dimensions.js +60 -0
  73. package/src/effects/Tween.js +125 -0
  74. package/src/effects/animatedSelector.js +15 -0
  75. package/src/effects.js +702 -0
  76. package/src/event/focusin.js +58 -0
  77. package/src/event/support.js +11 -0
  78. package/src/event/trigger.js +199 -0
  79. package/src/event.js +874 -0
  80. package/src/exports/amd.js +26 -0
  81. package/src/exports/global.js +34 -0
  82. package/src/jquery.js +41 -0
  83. package/src/manipulation/_evalUrl.js +32 -0
  84. package/src/manipulation/buildFragment.js +106 -0
  85. package/src/manipulation/getAll.js +32 -0
  86. package/src/manipulation/setGlobalEval.js +22 -0
  87. package/src/manipulation/support.js +41 -0
  88. package/src/manipulation/var/rscriptType.js +5 -0
  89. package/src/manipulation/var/rtagName.js +8 -0
  90. package/src/manipulation/wrapMap.js +30 -0
  91. package/src/manipulation.js +487 -0
  92. package/src/offset.js +232 -0
  93. package/src/queue/delay.js +23 -0
  94. package/src/queue.js +145 -0
  95. package/src/selector-native.js +240 -0
  96. package/src/selector-sizzle.js +19 -0
  97. package/src/selector.js +3 -0
  98. package/src/serialize.js +134 -0
  99. package/src/traversing/findFilter.js +97 -0
  100. package/src/traversing/var/dir.js +22 -0
  101. package/src/traversing/var/rneedsContext.js +8 -0
  102. package/src/traversing/var/siblings.js +17 -0
  103. package/src/traversing.js +198 -0
  104. package/src/var/ObjectFunctionString.js +7 -0
  105. package/src/var/arr.js +5 -0
  106. package/src/var/class2type.js +6 -0
  107. package/src/var/document.js +5 -0
  108. package/src/var/documentElement.js +7 -0
  109. package/src/var/flat.js +16 -0
  110. package/src/var/fnToString.js +7 -0
  111. package/src/var/getProto.js +5 -0
  112. package/src/var/hasOwn.js +7 -0
  113. package/src/var/indexOf.js +7 -0
  114. package/src/var/isFunction.js +17 -0
  115. package/src/var/isWindow.js +8 -0
  116. package/src/var/pnum.js +5 -0
  117. package/src/var/push.js +7 -0
  118. package/src/var/rcheckableType.js +5 -0
  119. package/src/var/rcssNum.js +9 -0
  120. package/src/var/rnothtmlwhite.js +8 -0
  121. package/src/var/rtrimCSS.js +12 -0
  122. package/src/var/slice.js +7 -0
  123. package/src/var/support.js +6 -0
  124. package/src/var/toString.js +7 -0
  125. package/src/var/whitespace.js +8 -0
  126. package/src/wrap.js +78 -0
@@ -0,0 +1,26 @@
1
+ define( [
2
+ "../core"
3
+ ], function( jQuery ) {
4
+
5
+ "use strict";
6
+
7
+ // Register as a named AMD module, since jQuery can be concatenated with other
8
+ // files that may use define, but not via a proper concatenation script that
9
+ // understands anonymous AMD modules. A named AMD is safest and most robust
10
+ // way to register. Lowercase jquery is used because AMD module names are
11
+ // derived from file names, and jQuery is normally delivered in a lowercase
12
+ // file name. Do this after creating the global so that if an AMD module wants
13
+ // to call noConflict to hide this version of jQuery, it will work.
14
+
15
+ // Note that for maximum portability, libraries that are not jQuery should
16
+ // declare themselves as anonymous modules, and avoid setting a global if an
17
+ // AMD loader is present. jQuery is a special case. For more information, see
18
+ // https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon
19
+
20
+ if ( typeof define === "function" && define.amd ) {
21
+ define( "jquery", [], function() {
22
+ return jQuery;
23
+ } );
24
+ }
25
+
26
+ } );
@@ -0,0 +1,34 @@
1
+ define( [
2
+ "../core"
3
+ ], function( jQuery ) {
4
+
5
+ "use strict";
6
+
7
+ var
8
+
9
+ // Map over jQuery in case of overwrite
10
+ _jQuery = window.jQuery,
11
+
12
+ // Map over the $ in case of overwrite
13
+ _$ = window.$;
14
+
15
+ jQuery.noConflict = function( deep ) {
16
+ if ( window.$ === jQuery ) {
17
+ window.$ = _$;
18
+ }
19
+
20
+ if ( deep && window.jQuery === jQuery ) {
21
+ window.jQuery = _jQuery;
22
+ }
23
+
24
+ return jQuery;
25
+ };
26
+
27
+ // Expose jQuery and $ identifiers, even in AMD
28
+ // (trac-7102#comment:10, https://github.com/jquery/jquery/pull/557)
29
+ // and CommonJS for browser emulators (trac-13566)
30
+ if ( typeof noGlobal === "undefined" ) {
31
+ window.jQuery = window.$ = jQuery;
32
+ }
33
+
34
+ } );
package/src/jquery.js ADDED
@@ -0,0 +1,41 @@
1
+ define( [
2
+ "./core",
3
+ "./selector",
4
+ "./traversing",
5
+ "./callbacks",
6
+ "./deferred",
7
+ "./deferred/exceptionHook",
8
+ "./core/ready",
9
+ "./data",
10
+ "./queue",
11
+ "./queue/delay",
12
+ "./attributes",
13
+ "./event",
14
+ "./event/focusin",
15
+ "./manipulation",
16
+ "./manipulation/_evalUrl",
17
+ "./wrap",
18
+ "./css",
19
+ "./css/hiddenVisibleSelectors",
20
+ "./serialize",
21
+ "./ajax",
22
+ "./ajax/xhr",
23
+ "./ajax/script",
24
+ "./ajax/jsonp",
25
+ "./ajax/load",
26
+ "./core/parseXML",
27
+ "./core/parseHTML",
28
+ "./effects",
29
+ "./effects/animatedSelector",
30
+ "./offset",
31
+ "./dimensions",
32
+ "./deprecated",
33
+ "./exports/amd",
34
+ "./exports/global"
35
+ ], function( jQuery ) {
36
+
37
+ "use strict";
38
+
39
+ return jQuery;
40
+
41
+ } );
@@ -0,0 +1,32 @@
1
+ define( [
2
+ "../ajax"
3
+ ], function( jQuery ) {
4
+
5
+ "use strict";
6
+
7
+ jQuery._evalUrl = function( url, options, doc ) {
8
+ return jQuery.ajax( {
9
+ url: url,
10
+
11
+ // Make this explicit, since user can override this through ajaxSetup (trac-11264)
12
+ type: "GET",
13
+ dataType: "script",
14
+ cache: true,
15
+ async: false,
16
+ global: false,
17
+
18
+ // Only evaluate the response if it is successful (gh-4126)
19
+ // dataFilter is not invoked for failure responses, so using it instead
20
+ // of the default converter is kludgy but it works.
21
+ converters: {
22
+ "text script": function() {}
23
+ },
24
+ dataFilter: function( response ) {
25
+ jQuery.globalEval( response, options, doc );
26
+ }
27
+ } );
28
+ };
29
+
30
+ return jQuery._evalUrl;
31
+
32
+ } );
@@ -0,0 +1,106 @@
1
+ define( [
2
+ "../core",
3
+ "../core/toType",
4
+ "../core/isAttached",
5
+ "./var/rtagName",
6
+ "./var/rscriptType",
7
+ "./wrapMap",
8
+ "./getAll",
9
+ "./setGlobalEval"
10
+ ], function( jQuery, toType, isAttached, rtagName, rscriptType, wrapMap, getAll, setGlobalEval ) {
11
+
12
+ "use strict";
13
+
14
+ var rhtml = /<|&#?\w+;/;
15
+
16
+ function buildFragment( elems, context, scripts, selection, ignored ) {
17
+ var elem, tmp, tag, wrap, attached, j,
18
+ fragment = context.createDocumentFragment(),
19
+ nodes = [],
20
+ i = 0,
21
+ l = elems.length;
22
+
23
+ for ( ; i < l; i++ ) {
24
+ elem = elems[ i ];
25
+
26
+ if ( elem || elem === 0 ) {
27
+
28
+ // Add nodes directly
29
+ if ( toType( elem ) === "object" ) {
30
+
31
+ // Support: Android <=4.0 only, PhantomJS 1 only
32
+ // push.apply(_, arraylike) throws on ancient WebKit
33
+ jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
34
+
35
+ // Convert non-html into a text node
36
+ } else if ( !rhtml.test( elem ) ) {
37
+ nodes.push( context.createTextNode( elem ) );
38
+
39
+ // Convert html into DOM nodes
40
+ } else {
41
+ tmp = tmp || fragment.appendChild( context.createElement( "div" ) );
42
+
43
+ // Deserialize a standard representation
44
+ tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase();
45
+ wrap = wrapMap[ tag ] || wrapMap._default;
46
+ tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];
47
+
48
+ // Descend through wrappers to the right content
49
+ j = wrap[ 0 ];
50
+ while ( j-- ) {
51
+ tmp = tmp.lastChild;
52
+ }
53
+
54
+ // Support: Android <=4.0 only, PhantomJS 1 only
55
+ // push.apply(_, arraylike) throws on ancient WebKit
56
+ jQuery.merge( nodes, tmp.childNodes );
57
+
58
+ // Remember the top-level container
59
+ tmp = fragment.firstChild;
60
+
61
+ // Ensure the created nodes are orphaned (trac-12392)
62
+ tmp.textContent = "";
63
+ }
64
+ }
65
+ }
66
+
67
+ // Remove wrapper from fragment
68
+ fragment.textContent = "";
69
+
70
+ i = 0;
71
+ while ( ( elem = nodes[ i++ ] ) ) {
72
+
73
+ // Skip elements already in the context collection (trac-4087)
74
+ if ( selection && jQuery.inArray( elem, selection ) > -1 ) {
75
+ if ( ignored ) {
76
+ ignored.push( elem );
77
+ }
78
+ continue;
79
+ }
80
+
81
+ attached = isAttached( elem );
82
+
83
+ // Append to fragment
84
+ tmp = getAll( fragment.appendChild( elem ), "script" );
85
+
86
+ // Preserve script evaluation history
87
+ if ( attached ) {
88
+ setGlobalEval( tmp );
89
+ }
90
+
91
+ // Capture executables
92
+ if ( scripts ) {
93
+ j = 0;
94
+ while ( ( elem = tmp[ j++ ] ) ) {
95
+ if ( rscriptType.test( elem.type || "" ) ) {
96
+ scripts.push( elem );
97
+ }
98
+ }
99
+ }
100
+ }
101
+
102
+ return fragment;
103
+ }
104
+
105
+ return buildFragment;
106
+ } );
@@ -0,0 +1,32 @@
1
+ define( [
2
+ "../core",
3
+ "../core/nodeName"
4
+ ], function( jQuery, nodeName ) {
5
+
6
+ "use strict";
7
+
8
+ function getAll( context, tag ) {
9
+
10
+ // Support: IE <=9 - 11 only
11
+ // Use typeof to avoid zero-argument method invocation on host objects (trac-15151)
12
+ var ret;
13
+
14
+ if ( typeof context.getElementsByTagName !== "undefined" ) {
15
+ ret = context.getElementsByTagName( tag || "*" );
16
+
17
+ } else if ( typeof context.querySelectorAll !== "undefined" ) {
18
+ ret = context.querySelectorAll( tag || "*" );
19
+
20
+ } else {
21
+ ret = [];
22
+ }
23
+
24
+ if ( tag === undefined || tag && nodeName( context, tag ) ) {
25
+ return jQuery.merge( [ context ], ret );
26
+ }
27
+
28
+ return ret;
29
+ }
30
+
31
+ return getAll;
32
+ } );
@@ -0,0 +1,22 @@
1
+ define( [
2
+ "../data/var/dataPriv"
3
+ ], function( dataPriv ) {
4
+
5
+ "use strict";
6
+
7
+ // Mark scripts as having already been evaluated
8
+ function setGlobalEval( elems, refElements ) {
9
+ var i = 0,
10
+ l = elems.length;
11
+
12
+ for ( ; i < l; i++ ) {
13
+ dataPriv.set(
14
+ elems[ i ],
15
+ "globalEval",
16
+ !refElements || dataPriv.get( refElements[ i ], "globalEval" )
17
+ );
18
+ }
19
+ }
20
+
21
+ return setGlobalEval;
22
+ } );
@@ -0,0 +1,41 @@
1
+ define( [
2
+ "../var/document",
3
+ "../var/support"
4
+ ], function( document, support ) {
5
+
6
+ "use strict";
7
+
8
+ ( function() {
9
+ var fragment = document.createDocumentFragment(),
10
+ div = fragment.appendChild( document.createElement( "div" ) ),
11
+ input = document.createElement( "input" );
12
+
13
+ // Support: Android 4.0 - 4.3 only
14
+ // Check state lost if the name is set (trac-11217)
15
+ // Support: Windows Web Apps (WWA)
16
+ // `name` and `type` must use .setAttribute for WWA (trac-14901)
17
+ input.setAttribute( "type", "radio" );
18
+ input.setAttribute( "checked", "checked" );
19
+ input.setAttribute( "name", "t" );
20
+
21
+ div.appendChild( input );
22
+
23
+ // Support: Android <=4.1 only
24
+ // Older WebKit doesn't clone checked state correctly in fragments
25
+ support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
26
+
27
+ // Support: IE <=11 only
28
+ // Make sure textarea (and checkbox) defaultValue is properly cloned
29
+ div.innerHTML = "<textarea>x</textarea>";
30
+ support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
31
+
32
+ // Support: IE <=9 only
33
+ // IE <=9 replaces <option> tags with their contents when inserted outside of
34
+ // the select element.
35
+ div.innerHTML = "<option></option>";
36
+ support.option = !!div.lastChild;
37
+ } )();
38
+
39
+ return support;
40
+
41
+ } );
@@ -0,0 +1,5 @@
1
+ define( function() {
2
+ "use strict";
3
+
4
+ return ( /^$|^module$|\/(?:java|ecma)script/i );
5
+ } );
@@ -0,0 +1,8 @@
1
+ define( function() {
2
+ "use strict";
3
+
4
+ // rtagName captures the name from the first start tag in a string of HTML
5
+ // https://html.spec.whatwg.org/multipage/syntax.html#tag-open-state
6
+ // https://html.spec.whatwg.org/multipage/syntax.html#tag-name-state
7
+ return ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i );
8
+ } );
@@ -0,0 +1,30 @@
1
+ define( [
2
+ "./support"
3
+ ], function( support ) {
4
+
5
+ "use strict";
6
+
7
+ // We have to close these tags to support XHTML (trac-13200)
8
+ var wrapMap = {
9
+
10
+ // XHTML parsers do not magically insert elements in the
11
+ // same way that tag soup parsers do. So we cannot shorten
12
+ // this by omitting <tbody> or other required elements.
13
+ thead: [ 1, "<table>", "</table>" ],
14
+ col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
15
+ tr: [ 2, "<table><tbody>", "</tbody></table>" ],
16
+ td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
17
+
18
+ _default: [ 0, "", "" ]
19
+ };
20
+
21
+ wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
22
+ wrapMap.th = wrapMap.td;
23
+
24
+ // Support: IE <=9 only
25
+ if ( !support.option ) {
26
+ wrapMap.optgroup = wrapMap.option = [ 1, "<select multiple='multiple'>", "</select>" ];
27
+ }
28
+
29
+ return wrapMap;
30
+ } );