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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (127) 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 +143 -3
  16. package/register-client.js +12 -0
  17. package/src/ajax/jsonp.js +103 -0
  18. package/src/ajax/load.js +77 -0
  19. package/src/ajax/script.js +74 -0
  20. package/src/ajax/var/location.js +5 -0
  21. package/src/ajax/var/nonce.js +5 -0
  22. package/src/ajax/var/rquery.js +5 -0
  23. package/src/ajax/xhr.js +170 -0
  24. package/src/ajax.js +876 -0
  25. package/src/attributes/attr.js +141 -0
  26. package/src/attributes/classes.js +184 -0
  27. package/src/attributes/prop.js +142 -0
  28. package/src/attributes/support.js +33 -0
  29. package/src/attributes/val.js +191 -0
  30. package/src/attributes.js +13 -0
  31. package/src/callbacks.js +236 -0
  32. package/src/core/DOMEval.js +43 -0
  33. package/src/core/access.js +72 -0
  34. package/src/core/camelCase.js +23 -0
  35. package/src/core/init.js +129 -0
  36. package/src/core/isAttached.js +26 -0
  37. package/src/core/nodeName.js +13 -0
  38. package/src/core/parseHTML.js +65 -0
  39. package/src/core/parseXML.js +35 -0
  40. package/src/core/ready-no-deferred.js +97 -0
  41. package/src/core/ready.js +86 -0
  42. package/src/core/readyException.js +13 -0
  43. package/src/core/stripAndCollapse.js +14 -0
  44. package/src/core/support.js +20 -0
  45. package/src/core/toType.js +20 -0
  46. package/src/core/var/rsingleTag.js +7 -0
  47. package/src/core.js +400 -0
  48. package/src/css/addGetHookIf.js +26 -0
  49. package/src/css/adjustCSS.js +74 -0
  50. package/src/css/curCSS.js +100 -0
  51. package/src/css/finalPropName.js +42 -0
  52. package/src/css/hiddenVisibleSelectors.js +15 -0
  53. package/src/css/showHide.js +105 -0
  54. package/src/css/support.js +152 -0
  55. package/src/css/var/cssExpand.js +5 -0
  56. package/src/css/var/getStyles.js +17 -0
  57. package/src/css/var/isHiddenWithinTree.js +34 -0
  58. package/src/css/var/rboxStyle.js +7 -0
  59. package/src/css/var/rcustomProp.js +7 -0
  60. package/src/css/var/rnumnonpx.js +7 -0
  61. package/src/css/var/swap.js +26 -0
  62. package/src/css.js +495 -0
  63. package/src/data/Data.js +162 -0
  64. package/src/data/var/acceptData.js +19 -0
  65. package/src/data/var/dataPriv.js +7 -0
  66. package/src/data/var/dataUser.js +7 -0
  67. package/src/data.js +180 -0
  68. package/src/deferred/exceptionHook.js +21 -0
  69. package/src/deferred.js +399 -0
  70. package/src/deprecated/ajax-event-alias.js +22 -0
  71. package/src/deprecated/event.js +50 -0
  72. package/src/deprecated.js +89 -0
  73. package/src/dimensions.js +60 -0
  74. package/src/effects/Tween.js +125 -0
  75. package/src/effects/animatedSelector.js +15 -0
  76. package/src/effects.js +702 -0
  77. package/src/event/focusin.js +58 -0
  78. package/src/event/support.js +11 -0
  79. package/src/event/trigger.js +199 -0
  80. package/src/event.js +874 -0
  81. package/src/exports/amd.js +26 -0
  82. package/src/exports/global.js +34 -0
  83. package/src/jquery.js +41 -0
  84. package/src/manipulation/_evalUrl.js +32 -0
  85. package/src/manipulation/buildFragment.js +106 -0
  86. package/src/manipulation/getAll.js +32 -0
  87. package/src/manipulation/setGlobalEval.js +22 -0
  88. package/src/manipulation/support.js +41 -0
  89. package/src/manipulation/var/rscriptType.js +5 -0
  90. package/src/manipulation/var/rtagName.js +8 -0
  91. package/src/manipulation/wrapMap.js +30 -0
  92. package/src/manipulation.js +487 -0
  93. package/src/offset.js +232 -0
  94. package/src/queue/delay.js +23 -0
  95. package/src/queue.js +145 -0
  96. package/src/selector-native.js +240 -0
  97. package/src/selector-sizzle.js +19 -0
  98. package/src/selector.js +3 -0
  99. package/src/serialize.js +134 -0
  100. package/src/traversing/findFilter.js +97 -0
  101. package/src/traversing/var/dir.js +22 -0
  102. package/src/traversing/var/rneedsContext.js +8 -0
  103. package/src/traversing/var/siblings.js +17 -0
  104. package/src/traversing.js +198 -0
  105. package/src/var/ObjectFunctionString.js +7 -0
  106. package/src/var/arr.js +5 -0
  107. package/src/var/class2type.js +6 -0
  108. package/src/var/document.js +5 -0
  109. package/src/var/documentElement.js +7 -0
  110. package/src/var/flat.js +16 -0
  111. package/src/var/fnToString.js +7 -0
  112. package/src/var/getProto.js +5 -0
  113. package/src/var/hasOwn.js +7 -0
  114. package/src/var/indexOf.js +7 -0
  115. package/src/var/isFunction.js +17 -0
  116. package/src/var/isWindow.js +8 -0
  117. package/src/var/pnum.js +5 -0
  118. package/src/var/push.js +7 -0
  119. package/src/var/rcheckableType.js +5 -0
  120. package/src/var/rcssNum.js +9 -0
  121. package/src/var/rnothtmlwhite.js +8 -0
  122. package/src/var/rtrimCSS.js +12 -0
  123. package/src/var/slice.js +7 -0
  124. package/src/var/support.js +6 -0
  125. package/src/var/toString.js +7 -0
  126. package/src/var/whitespace.js +8 -0
  127. package/src/wrap.js +78 -0
@@ -0,0 +1,89 @@
1
+ define( [
2
+ "./core",
3
+ "./core/nodeName",
4
+ "./core/camelCase",
5
+ "./core/toType",
6
+ "./var/isFunction",
7
+ "./var/isWindow",
8
+ "./var/slice",
9
+
10
+ "./deprecated/ajax-event-alias",
11
+ "./deprecated/event"
12
+ ], function( jQuery, nodeName, camelCase, toType, isFunction, isWindow, slice ) {
13
+
14
+ "use strict";
15
+
16
+ // Support: Android <=4.0 only
17
+ // Make sure we trim BOM and NBSP
18
+ // Require that the "whitespace run" starts from a non-whitespace
19
+ // to avoid O(N^2) behavior when the engine would try matching "\s+$" at each space position.
20
+ var rtrim = /^[\s\uFEFF\xA0]+|([^\s\uFEFF\xA0])[\s\uFEFF\xA0]+$/g;
21
+
22
+ // Bind a function to a context, optionally partially applying any
23
+ // arguments.
24
+ // jQuery.proxy is deprecated to promote standards (specifically Function#bind)
25
+ // However, it is not slated for removal any time soon
26
+ jQuery.proxy = function( fn, context ) {
27
+ var tmp, args, proxy;
28
+
29
+ if ( typeof context === "string" ) {
30
+ tmp = fn[ context ];
31
+ context = fn;
32
+ fn = tmp;
33
+ }
34
+
35
+ // Quick check to determine if target is callable, in the spec
36
+ // this throws a TypeError, but we will just return undefined.
37
+ if ( !isFunction( fn ) ) {
38
+ return undefined;
39
+ }
40
+
41
+ // Simulated bind
42
+ args = slice.call( arguments, 2 );
43
+ proxy = function() {
44
+ return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
45
+ };
46
+
47
+ // Set the guid of unique handler to the same of original handler, so it can be removed
48
+ proxy.guid = fn.guid = fn.guid || jQuery.guid++;
49
+
50
+ return proxy;
51
+ };
52
+
53
+ jQuery.holdReady = function( hold ) {
54
+ if ( hold ) {
55
+ jQuery.readyWait++;
56
+ } else {
57
+ jQuery.ready( true );
58
+ }
59
+ };
60
+ jQuery.isArray = Array.isArray;
61
+ jQuery.parseJSON = JSON.parse;
62
+ jQuery.nodeName = nodeName;
63
+ jQuery.isFunction = isFunction;
64
+ jQuery.isWindow = isWindow;
65
+ jQuery.camelCase = camelCase;
66
+ jQuery.type = toType;
67
+
68
+ jQuery.now = Date.now;
69
+
70
+ jQuery.isNumeric = function( obj ) {
71
+
72
+ // As of jQuery 3.0, isNumeric is limited to
73
+ // strings and numbers (primitives or objects)
74
+ // that can be coerced to finite numbers (gh-2662)
75
+ var type = jQuery.type( obj );
76
+ return ( type === "number" || type === "string" ) &&
77
+
78
+ // parseFloat NaNs numeric-cast false positives ("")
79
+ // ...but misinterprets leading-number strings, particularly hex literals ("0x...")
80
+ // subtraction forces infinities to NaN
81
+ !isNaN( obj - parseFloat( obj ) );
82
+ };
83
+
84
+ jQuery.trim = function( text ) {
85
+ return text == null ?
86
+ "" :
87
+ ( text + "" ).replace( rtrim, "$1" );
88
+ };
89
+ } );
@@ -0,0 +1,60 @@
1
+ define( [
2
+ "./core",
3
+ "./core/access",
4
+ "./var/isWindow",
5
+ "./css"
6
+ ], function( jQuery, access, isWindow ) {
7
+
8
+ "use strict";
9
+
10
+ // Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
11
+ jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
12
+ jQuery.each( {
13
+ padding: "inner" + name,
14
+ content: type,
15
+ "": "outer" + name
16
+ }, function( defaultExtra, funcName ) {
17
+
18
+ // Margin is only for outerHeight, outerWidth
19
+ jQuery.fn[ funcName ] = function( margin, value ) {
20
+ var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
21
+ extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
22
+
23
+ return access( this, function( elem, type, value ) {
24
+ var doc;
25
+
26
+ if ( isWindow( elem ) ) {
27
+
28
+ // $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)
29
+ return funcName.indexOf( "outer" ) === 0 ?
30
+ elem[ "inner" + name ] :
31
+ elem.document.documentElement[ "client" + name ];
32
+ }
33
+
34
+ // Get document width or height
35
+ if ( elem.nodeType === 9 ) {
36
+ doc = elem.documentElement;
37
+
38
+ // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],
39
+ // whichever is greatest
40
+ return Math.max(
41
+ elem.body[ "scroll" + name ], doc[ "scroll" + name ],
42
+ elem.body[ "offset" + name ], doc[ "offset" + name ],
43
+ doc[ "client" + name ]
44
+ );
45
+ }
46
+
47
+ return value === undefined ?
48
+
49
+ // Get width or height on the element, requesting but not forcing parseFloat
50
+ jQuery.css( elem, type, extra ) :
51
+
52
+ // Set width or height on the element
53
+ jQuery.style( elem, type, value, extra );
54
+ }, type, chainable ? margin : undefined, chainable );
55
+ };
56
+ } );
57
+ } );
58
+
59
+ return jQuery;
60
+ } );
@@ -0,0 +1,125 @@
1
+ define( [
2
+ "../core",
3
+ "../css/finalPropName",
4
+
5
+ "../css"
6
+ ], function( jQuery, finalPropName ) {
7
+
8
+ "use strict";
9
+
10
+ function Tween( elem, options, prop, end, easing ) {
11
+ return new Tween.prototype.init( elem, options, prop, end, easing );
12
+ }
13
+ jQuery.Tween = Tween;
14
+
15
+ Tween.prototype = {
16
+ constructor: Tween,
17
+ init: function( elem, options, prop, end, easing, unit ) {
18
+ this.elem = elem;
19
+ this.prop = prop;
20
+ this.easing = easing || jQuery.easing._default;
21
+ this.options = options;
22
+ this.start = this.now = this.cur();
23
+ this.end = end;
24
+ this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
25
+ },
26
+ cur: function() {
27
+ var hooks = Tween.propHooks[ this.prop ];
28
+
29
+ return hooks && hooks.get ?
30
+ hooks.get( this ) :
31
+ Tween.propHooks._default.get( this );
32
+ },
33
+ run: function( percent ) {
34
+ var eased,
35
+ hooks = Tween.propHooks[ this.prop ];
36
+
37
+ if ( this.options.duration ) {
38
+ this.pos = eased = jQuery.easing[ this.easing ](
39
+ percent, this.options.duration * percent, 0, 1, this.options.duration
40
+ );
41
+ } else {
42
+ this.pos = eased = percent;
43
+ }
44
+ this.now = ( this.end - this.start ) * eased + this.start;
45
+
46
+ if ( this.options.step ) {
47
+ this.options.step.call( this.elem, this.now, this );
48
+ }
49
+
50
+ if ( hooks && hooks.set ) {
51
+ hooks.set( this );
52
+ } else {
53
+ Tween.propHooks._default.set( this );
54
+ }
55
+ return this;
56
+ }
57
+ };
58
+
59
+ Tween.prototype.init.prototype = Tween.prototype;
60
+
61
+ Tween.propHooks = {
62
+ _default: {
63
+ get: function( tween ) {
64
+ var result;
65
+
66
+ // Use a property on the element directly when it is not a DOM element,
67
+ // or when there is no matching style property that exists.
68
+ if ( tween.elem.nodeType !== 1 ||
69
+ tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {
70
+ return tween.elem[ tween.prop ];
71
+ }
72
+
73
+ // Passing an empty string as a 3rd parameter to .css will automatically
74
+ // attempt a parseFloat and fallback to a string if the parse fails.
75
+ // Simple values such as "10px" are parsed to Float;
76
+ // complex values such as "rotate(1rad)" are returned as-is.
77
+ result = jQuery.css( tween.elem, tween.prop, "" );
78
+
79
+ // Empty strings, null, undefined and "auto" are converted to 0.
80
+ return !result || result === "auto" ? 0 : result;
81
+ },
82
+ set: function( tween ) {
83
+
84
+ // Use step hook for back compat.
85
+ // Use cssHook if its there.
86
+ // Use .style if available and use plain properties where available.
87
+ if ( jQuery.fx.step[ tween.prop ] ) {
88
+ jQuery.fx.step[ tween.prop ]( tween );
89
+ } else if ( tween.elem.nodeType === 1 && (
90
+ jQuery.cssHooks[ tween.prop ] ||
91
+ tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {
92
+ jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
93
+ } else {
94
+ tween.elem[ tween.prop ] = tween.now;
95
+ }
96
+ }
97
+ }
98
+ };
99
+
100
+ // Support: IE <=9 only
101
+ // Panic based approach to setting things on disconnected nodes
102
+ Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
103
+ set: function( tween ) {
104
+ if ( tween.elem.nodeType && tween.elem.parentNode ) {
105
+ tween.elem[ tween.prop ] = tween.now;
106
+ }
107
+ }
108
+ };
109
+
110
+ jQuery.easing = {
111
+ linear: function( p ) {
112
+ return p;
113
+ },
114
+ swing: function( p ) {
115
+ return 0.5 - Math.cos( p * Math.PI ) / 2;
116
+ },
117
+ _default: "swing"
118
+ };
119
+
120
+ jQuery.fx = Tween.prototype.init;
121
+
122
+ // Back compat <1.8 extension point
123
+ jQuery.fx.step = {};
124
+
125
+ } );
@@ -0,0 +1,15 @@
1
+ define( [
2
+ "../core",
3
+ "../selector",
4
+ "../effects"
5
+ ], function( jQuery ) {
6
+
7
+ "use strict";
8
+
9
+ jQuery.expr.pseudos.animated = function( elem ) {
10
+ return jQuery.grep( jQuery.timers, function( fn ) {
11
+ return elem === fn.elem;
12
+ } ).length;
13
+ };
14
+
15
+ } );