@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.
- package/AUTHORS.txt +337 -0
- package/LICENSE.txt +20 -0
- package/README.md +58 -3
- package/bower.json +14 -0
- package/dist/jquery.js +10996 -0
- package/dist/jquery.min.js +2 -0
- package/dist/jquery.min.map +1 -0
- package/dist/jquery.slim.js +8894 -0
- package/dist/jquery.slim.min.js +2 -0
- package/dist/jquery.slim.min.map +1 -0
- package/external/sizzle/LICENSE.txt +36 -0
- package/external/sizzle/dist/sizzle.js +2542 -0
- package/external/sizzle/dist/sizzle.min.js +3 -0
- package/external/sizzle/dist/sizzle.min.map +1 -0
- package/package.json +143 -3
- package/register-client.js +12 -0
- package/src/ajax/jsonp.js +103 -0
- package/src/ajax/load.js +77 -0
- package/src/ajax/script.js +74 -0
- package/src/ajax/var/location.js +5 -0
- package/src/ajax/var/nonce.js +5 -0
- package/src/ajax/var/rquery.js +5 -0
- package/src/ajax/xhr.js +170 -0
- package/src/ajax.js +876 -0
- package/src/attributes/attr.js +141 -0
- package/src/attributes/classes.js +184 -0
- package/src/attributes/prop.js +142 -0
- package/src/attributes/support.js +33 -0
- package/src/attributes/val.js +191 -0
- package/src/attributes.js +13 -0
- package/src/callbacks.js +236 -0
- package/src/core/DOMEval.js +43 -0
- package/src/core/access.js +72 -0
- package/src/core/camelCase.js +23 -0
- package/src/core/init.js +129 -0
- package/src/core/isAttached.js +26 -0
- package/src/core/nodeName.js +13 -0
- package/src/core/parseHTML.js +65 -0
- package/src/core/parseXML.js +35 -0
- package/src/core/ready-no-deferred.js +97 -0
- package/src/core/ready.js +86 -0
- package/src/core/readyException.js +13 -0
- package/src/core/stripAndCollapse.js +14 -0
- package/src/core/support.js +20 -0
- package/src/core/toType.js +20 -0
- package/src/core/var/rsingleTag.js +7 -0
- package/src/core.js +400 -0
- package/src/css/addGetHookIf.js +26 -0
- package/src/css/adjustCSS.js +74 -0
- package/src/css/curCSS.js +100 -0
- package/src/css/finalPropName.js +42 -0
- package/src/css/hiddenVisibleSelectors.js +15 -0
- package/src/css/showHide.js +105 -0
- package/src/css/support.js +152 -0
- package/src/css/var/cssExpand.js +5 -0
- package/src/css/var/getStyles.js +17 -0
- package/src/css/var/isHiddenWithinTree.js +34 -0
- package/src/css/var/rboxStyle.js +7 -0
- package/src/css/var/rcustomProp.js +7 -0
- package/src/css/var/rnumnonpx.js +7 -0
- package/src/css/var/swap.js +26 -0
- package/src/css.js +495 -0
- package/src/data/Data.js +162 -0
- package/src/data/var/acceptData.js +19 -0
- package/src/data/var/dataPriv.js +7 -0
- package/src/data/var/dataUser.js +7 -0
- package/src/data.js +180 -0
- package/src/deferred/exceptionHook.js +21 -0
- package/src/deferred.js +399 -0
- package/src/deprecated/ajax-event-alias.js +22 -0
- package/src/deprecated/event.js +50 -0
- package/src/deprecated.js +89 -0
- package/src/dimensions.js +60 -0
- package/src/effects/Tween.js +125 -0
- package/src/effects/animatedSelector.js +15 -0
- package/src/effects.js +702 -0
- package/src/event/focusin.js +58 -0
- package/src/event/support.js +11 -0
- package/src/event/trigger.js +199 -0
- package/src/event.js +874 -0
- package/src/exports/amd.js +26 -0
- package/src/exports/global.js +34 -0
- package/src/jquery.js +41 -0
- package/src/manipulation/_evalUrl.js +32 -0
- package/src/manipulation/buildFragment.js +106 -0
- package/src/manipulation/getAll.js +32 -0
- package/src/manipulation/setGlobalEval.js +22 -0
- package/src/manipulation/support.js +41 -0
- package/src/manipulation/var/rscriptType.js +5 -0
- package/src/manipulation/var/rtagName.js +8 -0
- package/src/manipulation/wrapMap.js +30 -0
- package/src/manipulation.js +487 -0
- package/src/offset.js +232 -0
- package/src/queue/delay.js +23 -0
- package/src/queue.js +145 -0
- package/src/selector-native.js +240 -0
- package/src/selector-sizzle.js +19 -0
- package/src/selector.js +3 -0
- package/src/serialize.js +134 -0
- package/src/traversing/findFilter.js +97 -0
- package/src/traversing/var/dir.js +22 -0
- package/src/traversing/var/rneedsContext.js +8 -0
- package/src/traversing/var/siblings.js +17 -0
- package/src/traversing.js +198 -0
- package/src/var/ObjectFunctionString.js +7 -0
- package/src/var/arr.js +5 -0
- package/src/var/class2type.js +6 -0
- package/src/var/document.js +5 -0
- package/src/var/documentElement.js +7 -0
- package/src/var/flat.js +16 -0
- package/src/var/fnToString.js +7 -0
- package/src/var/getProto.js +5 -0
- package/src/var/hasOwn.js +7 -0
- package/src/var/indexOf.js +7 -0
- package/src/var/isFunction.js +17 -0
- package/src/var/isWindow.js +8 -0
- package/src/var/pnum.js +5 -0
- package/src/var/push.js +7 -0
- package/src/var/rcheckableType.js +5 -0
- package/src/var/rcssNum.js +9 -0
- package/src/var/rnothtmlwhite.js +8 -0
- package/src/var/rtrimCSS.js +12 -0
- package/src/var/slice.js +7 -0
- package/src/var/support.js +6 -0
- package/src/var/toString.js +7 -0
- package/src/var/whitespace.js +8 -0
- package/src/wrap.js +78 -0
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
define( [
|
|
2
|
+
"./core",
|
|
3
|
+
"./var/getProto",
|
|
4
|
+
"./var/indexOf",
|
|
5
|
+
"./traversing/var/dir",
|
|
6
|
+
"./traversing/var/siblings",
|
|
7
|
+
"./traversing/var/rneedsContext",
|
|
8
|
+
"./core/nodeName",
|
|
9
|
+
|
|
10
|
+
"./core/init",
|
|
11
|
+
"./traversing/findFilter",
|
|
12
|
+
"./selector"
|
|
13
|
+
], function( jQuery, getProto, indexOf, dir, siblings, rneedsContext, nodeName ) {
|
|
14
|
+
|
|
15
|
+
"use strict";
|
|
16
|
+
|
|
17
|
+
var rparentsprev = /^(?:parents|prev(?:Until|All))/,
|
|
18
|
+
|
|
19
|
+
// Methods guaranteed to produce a unique set when starting from a unique set
|
|
20
|
+
guaranteedUnique = {
|
|
21
|
+
children: true,
|
|
22
|
+
contents: true,
|
|
23
|
+
next: true,
|
|
24
|
+
prev: true
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
jQuery.fn.extend( {
|
|
28
|
+
has: function( target ) {
|
|
29
|
+
var targets = jQuery( target, this ),
|
|
30
|
+
l = targets.length;
|
|
31
|
+
|
|
32
|
+
return this.filter( function() {
|
|
33
|
+
var i = 0;
|
|
34
|
+
for ( ; i < l; i++ ) {
|
|
35
|
+
if ( jQuery.contains( this, targets[ i ] ) ) {
|
|
36
|
+
return true;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
} );
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
closest: function( selectors, context ) {
|
|
43
|
+
var cur,
|
|
44
|
+
i = 0,
|
|
45
|
+
l = this.length,
|
|
46
|
+
matched = [],
|
|
47
|
+
targets = typeof selectors !== "string" && jQuery( selectors );
|
|
48
|
+
|
|
49
|
+
// Positional selectors never match, since there's no _selection_ context
|
|
50
|
+
if ( !rneedsContext.test( selectors ) ) {
|
|
51
|
+
for ( ; i < l; i++ ) {
|
|
52
|
+
for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {
|
|
53
|
+
|
|
54
|
+
// Always skip document fragments
|
|
55
|
+
if ( cur.nodeType < 11 && ( targets ?
|
|
56
|
+
targets.index( cur ) > -1 :
|
|
57
|
+
|
|
58
|
+
// Don't pass non-elements to Sizzle
|
|
59
|
+
cur.nodeType === 1 &&
|
|
60
|
+
jQuery.find.matchesSelector( cur, selectors ) ) ) {
|
|
61
|
+
|
|
62
|
+
matched.push( cur );
|
|
63
|
+
break;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );
|
|
70
|
+
},
|
|
71
|
+
|
|
72
|
+
// Determine the position of an element within the set
|
|
73
|
+
index: function( elem ) {
|
|
74
|
+
|
|
75
|
+
// No argument, return index in parent
|
|
76
|
+
if ( !elem ) {
|
|
77
|
+
return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
// Index in selector
|
|
81
|
+
if ( typeof elem === "string" ) {
|
|
82
|
+
return indexOf.call( jQuery( elem ), this[ 0 ] );
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// Locate the position of the desired element
|
|
86
|
+
return indexOf.call( this,
|
|
87
|
+
|
|
88
|
+
// If it receives a jQuery object, the first element is used
|
|
89
|
+
elem.jquery ? elem[ 0 ] : elem
|
|
90
|
+
);
|
|
91
|
+
},
|
|
92
|
+
|
|
93
|
+
add: function( selector, context ) {
|
|
94
|
+
return this.pushStack(
|
|
95
|
+
jQuery.uniqueSort(
|
|
96
|
+
jQuery.merge( this.get(), jQuery( selector, context ) )
|
|
97
|
+
)
|
|
98
|
+
);
|
|
99
|
+
},
|
|
100
|
+
|
|
101
|
+
addBack: function( selector ) {
|
|
102
|
+
return this.add( selector == null ?
|
|
103
|
+
this.prevObject : this.prevObject.filter( selector )
|
|
104
|
+
);
|
|
105
|
+
}
|
|
106
|
+
} );
|
|
107
|
+
|
|
108
|
+
function sibling( cur, dir ) {
|
|
109
|
+
while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}
|
|
110
|
+
return cur;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
jQuery.each( {
|
|
114
|
+
parent: function( elem ) {
|
|
115
|
+
var parent = elem.parentNode;
|
|
116
|
+
return parent && parent.nodeType !== 11 ? parent : null;
|
|
117
|
+
},
|
|
118
|
+
parents: function( elem ) {
|
|
119
|
+
return dir( elem, "parentNode" );
|
|
120
|
+
},
|
|
121
|
+
parentsUntil: function( elem, _i, until ) {
|
|
122
|
+
return dir( elem, "parentNode", until );
|
|
123
|
+
},
|
|
124
|
+
next: function( elem ) {
|
|
125
|
+
return sibling( elem, "nextSibling" );
|
|
126
|
+
},
|
|
127
|
+
prev: function( elem ) {
|
|
128
|
+
return sibling( elem, "previousSibling" );
|
|
129
|
+
},
|
|
130
|
+
nextAll: function( elem ) {
|
|
131
|
+
return dir( elem, "nextSibling" );
|
|
132
|
+
},
|
|
133
|
+
prevAll: function( elem ) {
|
|
134
|
+
return dir( elem, "previousSibling" );
|
|
135
|
+
},
|
|
136
|
+
nextUntil: function( elem, _i, until ) {
|
|
137
|
+
return dir( elem, "nextSibling", until );
|
|
138
|
+
},
|
|
139
|
+
prevUntil: function( elem, _i, until ) {
|
|
140
|
+
return dir( elem, "previousSibling", until );
|
|
141
|
+
},
|
|
142
|
+
siblings: function( elem ) {
|
|
143
|
+
return siblings( ( elem.parentNode || {} ).firstChild, elem );
|
|
144
|
+
},
|
|
145
|
+
children: function( elem ) {
|
|
146
|
+
return siblings( elem.firstChild );
|
|
147
|
+
},
|
|
148
|
+
contents: function( elem ) {
|
|
149
|
+
if ( elem.contentDocument != null &&
|
|
150
|
+
|
|
151
|
+
// Support: IE 11+
|
|
152
|
+
// <object> elements with no `data` attribute has an object
|
|
153
|
+
// `contentDocument` with a `null` prototype.
|
|
154
|
+
getProto( elem.contentDocument ) ) {
|
|
155
|
+
|
|
156
|
+
return elem.contentDocument;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only
|
|
160
|
+
// Treat the template element as a regular one in browsers that
|
|
161
|
+
// don't support it.
|
|
162
|
+
if ( nodeName( elem, "template" ) ) {
|
|
163
|
+
elem = elem.content || elem;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
return jQuery.merge( [], elem.childNodes );
|
|
167
|
+
}
|
|
168
|
+
}, function( name, fn ) {
|
|
169
|
+
jQuery.fn[ name ] = function( until, selector ) {
|
|
170
|
+
var matched = jQuery.map( this, fn, until );
|
|
171
|
+
|
|
172
|
+
if ( name.slice( -5 ) !== "Until" ) {
|
|
173
|
+
selector = until;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
if ( selector && typeof selector === "string" ) {
|
|
177
|
+
matched = jQuery.filter( selector, matched );
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
if ( this.length > 1 ) {
|
|
181
|
+
|
|
182
|
+
// Remove duplicates
|
|
183
|
+
if ( !guaranteedUnique[ name ] ) {
|
|
184
|
+
jQuery.uniqueSort( matched );
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
// Reverse order for parents* and prev-derivatives
|
|
188
|
+
if ( rparentsprev.test( name ) ) {
|
|
189
|
+
matched.reverse();
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
return this.pushStack( matched );
|
|
194
|
+
};
|
|
195
|
+
} );
|
|
196
|
+
|
|
197
|
+
return jQuery;
|
|
198
|
+
} );
|
package/src/var/arr.js
ADDED
package/src/var/flat.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
define( [
|
|
2
|
+
"./arr"
|
|
3
|
+
], function( arr ) {
|
|
4
|
+
|
|
5
|
+
"use strict";
|
|
6
|
+
|
|
7
|
+
// Support: IE 9 - 11+, Edge 18+, Android Browser 4.0 - 4.3 only, iOS 7 - 11 only, Safari 11 only,
|
|
8
|
+
// Firefox <= 61 only
|
|
9
|
+
// Provide fallback for browsers without Array#flat.
|
|
10
|
+
return arr.flat ? function( array ) {
|
|
11
|
+
return arr.flat.call( array );
|
|
12
|
+
} : function( array ) {
|
|
13
|
+
return arr.concat.apply( [], array );
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
} );
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
define( function() {
|
|
2
|
+
"use strict";
|
|
3
|
+
|
|
4
|
+
return function isFunction( obj ) {
|
|
5
|
+
|
|
6
|
+
// Support: Chrome <=57, Firefox <=52
|
|
7
|
+
// In some browsers, typeof returns "function" for HTML <object> elements
|
|
8
|
+
// (i.e., `typeof document.createElement( "object" ) === "function"`).
|
|
9
|
+
// We don't want to classify *any* DOM node as a function.
|
|
10
|
+
// Support: QtWeb <=3.8.5, WebKit <=534.34, wkhtmltopdf tool <=0.12.5
|
|
11
|
+
// Plus for old WebKit, typeof returns "function" for HTML collections
|
|
12
|
+
// (e.g., `typeof document.getElementsByTagName("div") === "function"`). (gh-4756)
|
|
13
|
+
return typeof obj === "function" && typeof obj.nodeType !== "number" &&
|
|
14
|
+
typeof obj.item !== "function";
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
} );
|
package/src/var/pnum.js
ADDED
package/src/var/push.js
ADDED
package/src/var/slice.js
ADDED
package/src/wrap.js
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
define( [
|
|
2
|
+
"./core",
|
|
3
|
+
"./var/isFunction",
|
|
4
|
+
"./core/init",
|
|
5
|
+
"./manipulation", // clone
|
|
6
|
+
"./traversing" // parent, contents
|
|
7
|
+
], function( jQuery, isFunction ) {
|
|
8
|
+
|
|
9
|
+
"use strict";
|
|
10
|
+
|
|
11
|
+
jQuery.fn.extend( {
|
|
12
|
+
wrapAll: function( html ) {
|
|
13
|
+
var wrap;
|
|
14
|
+
|
|
15
|
+
if ( this[ 0 ] ) {
|
|
16
|
+
if ( isFunction( html ) ) {
|
|
17
|
+
html = html.call( this[ 0 ] );
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// The elements to wrap the target around
|
|
21
|
+
wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );
|
|
22
|
+
|
|
23
|
+
if ( this[ 0 ].parentNode ) {
|
|
24
|
+
wrap.insertBefore( this[ 0 ] );
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
wrap.map( function() {
|
|
28
|
+
var elem = this;
|
|
29
|
+
|
|
30
|
+
while ( elem.firstElementChild ) {
|
|
31
|
+
elem = elem.firstElementChild;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
return elem;
|
|
35
|
+
} ).append( this );
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
return this;
|
|
39
|
+
},
|
|
40
|
+
|
|
41
|
+
wrapInner: function( html ) {
|
|
42
|
+
if ( isFunction( html ) ) {
|
|
43
|
+
return this.each( function( i ) {
|
|
44
|
+
jQuery( this ).wrapInner( html.call( this, i ) );
|
|
45
|
+
} );
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
return this.each( function() {
|
|
49
|
+
var self = jQuery( this ),
|
|
50
|
+
contents = self.contents();
|
|
51
|
+
|
|
52
|
+
if ( contents.length ) {
|
|
53
|
+
contents.wrapAll( html );
|
|
54
|
+
|
|
55
|
+
} else {
|
|
56
|
+
self.append( html );
|
|
57
|
+
}
|
|
58
|
+
} );
|
|
59
|
+
},
|
|
60
|
+
|
|
61
|
+
wrap: function( html ) {
|
|
62
|
+
var htmlIsFunction = isFunction( html );
|
|
63
|
+
|
|
64
|
+
return this.each( function( i ) {
|
|
65
|
+
jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );
|
|
66
|
+
} );
|
|
67
|
+
},
|
|
68
|
+
|
|
69
|
+
unwrap: function( selector ) {
|
|
70
|
+
this.parent( selector ).not( "body" ).each( function() {
|
|
71
|
+
jQuery( this ).replaceWith( this.childNodes );
|
|
72
|
+
} );
|
|
73
|
+
return this;
|
|
74
|
+
}
|
|
75
|
+
} );
|
|
76
|
+
|
|
77
|
+
return jQuery;
|
|
78
|
+
} );
|