@bigbinary/neeto-icons 1.12.2 → 1.13.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.
- package/dist/app-icons.cjs.js +6078 -0
- package/dist/app-icons.cjs.js.map +1 -0
- package/dist/app-icons.js +3317 -839
- package/dist/app-icons.js.map +1 -1
- package/dist/{index-881eb5c0.js → misc.cjs.js} +856 -4
- package/dist/misc.cjs.js.map +1 -0
- package/dist/misc.js +2692 -202
- package/dist/misc.js.map +1 -1
- package/dist/neeto-icons.cjs.js +9606 -0
- package/dist/neeto-icons.cjs.js.map +1 -0
- package/dist/neeto-icons.js +3504 -1243
- package/dist/neeto-icons.js.map +1 -1
- package/dist/{index-3dd40946.js → neeto-logos.cjs.js} +2053 -2
- package/dist/neeto-logos.cjs.js.map +1 -0
- package/dist/neeto-logos.js +3007 -528
- package/dist/neeto-logos.js.map +1 -1
- package/dist/typeface-logos.cjs.js +4461 -0
- package/dist/typeface-logos.cjs.js.map +1 -0
- package/dist/typeface-logos.js +3375 -2080
- package/dist/typeface-logos.js.map +1 -1
- package/package.json +1 -1
- package/dist/index-3dd40946.js.map +0 -1
- package/dist/index-881eb5c0.js.map +0 -1
package/dist/misc.js
CHANGED
|
@@ -1,38 +1,2544 @@
|
|
|
1
|
-
|
|
1
|
+
function _extends() {
|
|
2
|
+
_extends = Object.assign || function (target) {
|
|
3
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
4
|
+
var source = arguments[i];
|
|
2
5
|
|
|
3
|
-
|
|
6
|
+
for (var key in source) {
|
|
7
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
8
|
+
target[key] = source[key];
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
return target;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
return _extends.apply(this, arguments);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
20
|
+
if (source == null) return {};
|
|
21
|
+
var target = {};
|
|
22
|
+
var sourceKeys = Object.keys(source);
|
|
23
|
+
var key, i;
|
|
24
|
+
|
|
25
|
+
for (i = 0; i < sourceKeys.length; i++) {
|
|
26
|
+
key = sourceKeys[i];
|
|
27
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
28
|
+
target[key] = source[key];
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
return target;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
function _objectWithoutProperties(source, excluded) {
|
|
35
|
+
if (source == null) return {};
|
|
36
|
+
|
|
37
|
+
var target = _objectWithoutPropertiesLoose(source, excluded);
|
|
38
|
+
|
|
39
|
+
var key, i;
|
|
40
|
+
|
|
41
|
+
if (Object.getOwnPropertySymbols) {
|
|
42
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
43
|
+
|
|
44
|
+
for (i = 0; i < sourceSymbolKeys.length; i++) {
|
|
45
|
+
key = sourceSymbolKeys[i];
|
|
46
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
47
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
48
|
+
target[key] = source[key];
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
return target;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
var react = {exports: {}};
|
|
56
|
+
|
|
57
|
+
var react_production_min = {};
|
|
58
|
+
|
|
59
|
+
/*
|
|
60
|
+
object-assign
|
|
61
|
+
(c) Sindre Sorhus
|
|
62
|
+
@license MIT
|
|
63
|
+
*/
|
|
64
|
+
/* eslint-disable no-unused-vars */
|
|
65
|
+
var getOwnPropertySymbols = Object.getOwnPropertySymbols;
|
|
66
|
+
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
67
|
+
var propIsEnumerable = Object.prototype.propertyIsEnumerable;
|
|
68
|
+
|
|
69
|
+
function toObject(val) {
|
|
70
|
+
if (val === null || val === undefined) {
|
|
71
|
+
throw new TypeError('Object.assign cannot be called with null or undefined');
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
return Object(val);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
function shouldUseNative() {
|
|
78
|
+
try {
|
|
79
|
+
if (!Object.assign) {
|
|
80
|
+
return false;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// Detect buggy property enumeration order in older V8 versions.
|
|
84
|
+
|
|
85
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=4118
|
|
86
|
+
var test1 = new String('abc'); // eslint-disable-line no-new-wrappers
|
|
87
|
+
test1[5] = 'de';
|
|
88
|
+
if (Object.getOwnPropertyNames(test1)[0] === '5') {
|
|
89
|
+
return false;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=3056
|
|
93
|
+
var test2 = {};
|
|
94
|
+
for (var i = 0; i < 10; i++) {
|
|
95
|
+
test2['_' + String.fromCharCode(i)] = i;
|
|
96
|
+
}
|
|
97
|
+
var order2 = Object.getOwnPropertyNames(test2).map(function (n) {
|
|
98
|
+
return test2[n];
|
|
99
|
+
});
|
|
100
|
+
if (order2.join('') !== '0123456789') {
|
|
101
|
+
return false;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=3056
|
|
105
|
+
var test3 = {};
|
|
106
|
+
'abcdefghijklmnopqrst'.split('').forEach(function (letter) {
|
|
107
|
+
test3[letter] = letter;
|
|
108
|
+
});
|
|
109
|
+
if (Object.keys(Object.assign({}, test3)).join('') !==
|
|
110
|
+
'abcdefghijklmnopqrst') {
|
|
111
|
+
return false;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
return true;
|
|
115
|
+
} catch (err) {
|
|
116
|
+
// We don't expect any of the above to throw, but better to be safe.
|
|
117
|
+
return false;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
var objectAssign = shouldUseNative() ? Object.assign : function (target, source) {
|
|
122
|
+
var from;
|
|
123
|
+
var to = toObject(target);
|
|
124
|
+
var symbols;
|
|
125
|
+
|
|
126
|
+
for (var s = 1; s < arguments.length; s++) {
|
|
127
|
+
from = Object(arguments[s]);
|
|
128
|
+
|
|
129
|
+
for (var key in from) {
|
|
130
|
+
if (hasOwnProperty.call(from, key)) {
|
|
131
|
+
to[key] = from[key];
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
if (getOwnPropertySymbols) {
|
|
136
|
+
symbols = getOwnPropertySymbols(from);
|
|
137
|
+
for (var i = 0; i < symbols.length; i++) {
|
|
138
|
+
if (propIsEnumerable.call(from, symbols[i])) {
|
|
139
|
+
to[symbols[i]] = from[symbols[i]];
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
return to;
|
|
146
|
+
};
|
|
147
|
+
|
|
148
|
+
/** @license React v17.0.2
|
|
149
|
+
* react.production.min.js
|
|
150
|
+
*
|
|
151
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
152
|
+
*
|
|
153
|
+
* This source code is licensed under the MIT license found in the
|
|
154
|
+
* LICENSE file in the root directory of this source tree.
|
|
155
|
+
*/
|
|
156
|
+
var l=objectAssign,n=60103,p=60106;react_production_min.Fragment=60107;react_production_min.StrictMode=60108;react_production_min.Profiler=60114;var q=60109,r=60110,t=60112;react_production_min.Suspense=60113;var u=60115,v=60116;
|
|
157
|
+
if("function"===typeof Symbol&&Symbol.for){var w=Symbol.for;n=w("react.element");p=w("react.portal");react_production_min.Fragment=w("react.fragment");react_production_min.StrictMode=w("react.strict_mode");react_production_min.Profiler=w("react.profiler");q=w("react.provider");r=w("react.context");t=w("react.forward_ref");react_production_min.Suspense=w("react.suspense");u=w("react.memo");v=w("react.lazy");}var x="function"===typeof Symbol&&Symbol.iterator;
|
|
158
|
+
function y(a){if(null===a||"object"!==typeof a)return null;a=x&&a[x]||a["@@iterator"];return "function"===typeof a?a:null}function z(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,c=1;c<arguments.length;c++)b+="&args[]="+encodeURIComponent(arguments[c]);return "Minified React error #"+a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}
|
|
159
|
+
var A={isMounted:function(){return !1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},B={};function C(a,b,c){this.props=a;this.context=b;this.refs=B;this.updater=c||A;}C.prototype.isReactComponent={};C.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(z(85));this.updater.enqueueSetState(this,a,b,"setState");};C.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate");};
|
|
160
|
+
function D(){}D.prototype=C.prototype;function E(a,b,c){this.props=a;this.context=b;this.refs=B;this.updater=c||A;}var F=E.prototype=new D;F.constructor=E;l(F,C.prototype);F.isPureReactComponent=!0;var G={current:null},H=Object.prototype.hasOwnProperty,I={key:!0,ref:!0,__self:!0,__source:!0};
|
|
161
|
+
function J(a,b,c){var e,d={},k=null,h=null;if(null!=b)for(e in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(k=""+b.key),b)H.call(b,e)&&!I.hasOwnProperty(e)&&(d[e]=b[e]);var g=arguments.length-2;if(1===g)d.children=c;else if(1<g){for(var f=Array(g),m=0;m<g;m++)f[m]=arguments[m+2];d.children=f;}if(a&&a.defaultProps)for(e in g=a.defaultProps,g)void 0===d[e]&&(d[e]=g[e]);return {$$typeof:n,type:a,key:k,ref:h,props:d,_owner:G.current}}
|
|
162
|
+
function K(a,b){return {$$typeof:n,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function L(a){return "object"===typeof a&&null!==a&&a.$$typeof===n}function escape(a){var b={"=":"=0",":":"=2"};return "$"+a.replace(/[=:]/g,function(a){return b[a]})}var M=/\/+/g;function N(a,b){return "object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}
|
|
163
|
+
function O(a,b,c,e,d){var k=typeof a;if("undefined"===k||"boolean"===k)a=null;var h=!1;if(null===a)h=!0;else switch(k){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case n:case p:h=!0;}}if(h)return h=a,d=d(h),a=""===e?"."+N(h,0):e,Array.isArray(d)?(c="",null!=a&&(c=a.replace(M,"$&/")+"/"),O(d,b,c,"",function(a){return a})):null!=d&&(L(d)&&(d=K(d,c+(!d.key||h&&h.key===d.key?"":(""+d.key).replace(M,"$&/")+"/")+a)),b.push(d)),1;h=0;e=""===e?".":e+":";if(Array.isArray(a))for(var g=
|
|
164
|
+
0;g<a.length;g++){k=a[g];var f=e+N(k,g);h+=O(k,b,c,f,d);}else if(f=y(a),"function"===typeof f)for(a=f.call(a),g=0;!(k=a.next()).done;)k=k.value,f=e+N(k,g++),h+=O(k,b,c,f,d);else if("object"===k)throw b=""+a,Error(z(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return h}function P(a,b,c){if(null==a)return a;var e=[],d=0;O(a,e,"","",function(a){return b.call(c,a,d++)});return e}
|
|
165
|
+
function Q(a){if(-1===a._status){var b=a._result;b=b();a._status=0;a._result=b;b.then(function(b){0===a._status&&(b=b.default,a._status=1,a._result=b);},function(b){0===a._status&&(a._status=2,a._result=b);});}if(1===a._status)return a._result;throw a._result;}var R={current:null};function S(){var a=R.current;if(null===a)throw Error(z(321));return a}var T={ReactCurrentDispatcher:R,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:G,IsSomeRendererActing:{current:!1},assign:l};
|
|
166
|
+
react_production_min.Children={map:P,forEach:function(a,b,c){P(a,function(){b.apply(this,arguments);},c);},count:function(a){var b=0;P(a,function(){b++;});return b},toArray:function(a){return P(a,function(a){return a})||[]},only:function(a){if(!L(a))throw Error(z(143));return a}};react_production_min.Component=C;react_production_min.PureComponent=E;react_production_min.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=T;
|
|
167
|
+
react_production_min.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(z(267,a));var e=l({},a.props),d=a.key,k=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(k=b.ref,h=G.current);void 0!==b.key&&(d=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(f in b)H.call(b,f)&&!I.hasOwnProperty(f)&&(e[f]=void 0===b[f]&&void 0!==g?g[f]:b[f]);}var f=arguments.length-2;if(1===f)e.children=c;else if(1<f){g=Array(f);for(var m=0;m<f;m++)g[m]=arguments[m+2];e.children=g;}return {$$typeof:n,type:a.type,
|
|
168
|
+
key:d,ref:k,props:e,_owner:h}};react_production_min.createContext=function(a,b){void 0===b&&(b=null);a={$$typeof:r,_calculateChangedBits:b,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:q,_context:a};return a.Consumer=a};react_production_min.createElement=J;react_production_min.createFactory=function(a){var b=J.bind(null,a);b.type=a;return b};react_production_min.createRef=function(){return {current:null}};react_production_min.forwardRef=function(a){return {$$typeof:t,render:a}};react_production_min.isValidElement=L;
|
|
169
|
+
react_production_min.lazy=function(a){return {$$typeof:v,_payload:{_status:-1,_result:a},_init:Q}};react_production_min.memo=function(a,b){return {$$typeof:u,type:a,compare:void 0===b?null:b}};react_production_min.useCallback=function(a,b){return S().useCallback(a,b)};react_production_min.useContext=function(a,b){return S().useContext(a,b)};react_production_min.useDebugValue=function(){};react_production_min.useEffect=function(a,b){return S().useEffect(a,b)};react_production_min.useImperativeHandle=function(a,b,c){return S().useImperativeHandle(a,b,c)};
|
|
170
|
+
react_production_min.useLayoutEffect=function(a,b){return S().useLayoutEffect(a,b)};react_production_min.useMemo=function(a,b){return S().useMemo(a,b)};react_production_min.useReducer=function(a,b,c){return S().useReducer(a,b,c)};react_production_min.useRef=function(a){return S().useRef(a)};react_production_min.useState=function(a){return S().useState(a)};react_production_min.version="17.0.2";
|
|
171
|
+
|
|
172
|
+
var react_development = {};
|
|
173
|
+
|
|
174
|
+
/** @license React v17.0.2
|
|
175
|
+
* react.development.js
|
|
176
|
+
*
|
|
177
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
178
|
+
*
|
|
179
|
+
* This source code is licensed under the MIT license found in the
|
|
180
|
+
* LICENSE file in the root directory of this source tree.
|
|
181
|
+
*/
|
|
182
|
+
|
|
183
|
+
(function (exports) {
|
|
184
|
+
|
|
185
|
+
if (process.env.NODE_ENV !== "production") {
|
|
186
|
+
(function() {
|
|
187
|
+
|
|
188
|
+
var _assign = objectAssign;
|
|
189
|
+
|
|
190
|
+
// TODO: this is special because it gets imported during build.
|
|
191
|
+
var ReactVersion = '17.0.2';
|
|
192
|
+
|
|
193
|
+
// ATTENTION
|
|
194
|
+
// When adding new symbols to this file,
|
|
195
|
+
// Please consider also adding to 'react-devtools-shared/src/backend/ReactSymbols'
|
|
196
|
+
// The Symbol used to tag the ReactElement-like types. If there is no native Symbol
|
|
197
|
+
// nor polyfill, then a plain number is used for performance.
|
|
198
|
+
var REACT_ELEMENT_TYPE = 0xeac7;
|
|
199
|
+
var REACT_PORTAL_TYPE = 0xeaca;
|
|
200
|
+
exports.Fragment = 0xeacb;
|
|
201
|
+
exports.StrictMode = 0xeacc;
|
|
202
|
+
exports.Profiler = 0xead2;
|
|
203
|
+
var REACT_PROVIDER_TYPE = 0xeacd;
|
|
204
|
+
var REACT_CONTEXT_TYPE = 0xeace;
|
|
205
|
+
var REACT_FORWARD_REF_TYPE = 0xead0;
|
|
206
|
+
exports.Suspense = 0xead1;
|
|
207
|
+
var REACT_SUSPENSE_LIST_TYPE = 0xead8;
|
|
208
|
+
var REACT_MEMO_TYPE = 0xead3;
|
|
209
|
+
var REACT_LAZY_TYPE = 0xead4;
|
|
210
|
+
var REACT_BLOCK_TYPE = 0xead9;
|
|
211
|
+
var REACT_SERVER_BLOCK_TYPE = 0xeada;
|
|
212
|
+
var REACT_FUNDAMENTAL_TYPE = 0xead5;
|
|
213
|
+
var REACT_DEBUG_TRACING_MODE_TYPE = 0xeae1;
|
|
214
|
+
var REACT_LEGACY_HIDDEN_TYPE = 0xeae3;
|
|
215
|
+
|
|
216
|
+
if (typeof Symbol === 'function' && Symbol.for) {
|
|
217
|
+
var symbolFor = Symbol.for;
|
|
218
|
+
REACT_ELEMENT_TYPE = symbolFor('react.element');
|
|
219
|
+
REACT_PORTAL_TYPE = symbolFor('react.portal');
|
|
220
|
+
exports.Fragment = symbolFor('react.fragment');
|
|
221
|
+
exports.StrictMode = symbolFor('react.strict_mode');
|
|
222
|
+
exports.Profiler = symbolFor('react.profiler');
|
|
223
|
+
REACT_PROVIDER_TYPE = symbolFor('react.provider');
|
|
224
|
+
REACT_CONTEXT_TYPE = symbolFor('react.context');
|
|
225
|
+
REACT_FORWARD_REF_TYPE = symbolFor('react.forward_ref');
|
|
226
|
+
exports.Suspense = symbolFor('react.suspense');
|
|
227
|
+
REACT_SUSPENSE_LIST_TYPE = symbolFor('react.suspense_list');
|
|
228
|
+
REACT_MEMO_TYPE = symbolFor('react.memo');
|
|
229
|
+
REACT_LAZY_TYPE = symbolFor('react.lazy');
|
|
230
|
+
REACT_BLOCK_TYPE = symbolFor('react.block');
|
|
231
|
+
REACT_SERVER_BLOCK_TYPE = symbolFor('react.server.block');
|
|
232
|
+
REACT_FUNDAMENTAL_TYPE = symbolFor('react.fundamental');
|
|
233
|
+
symbolFor('react.scope');
|
|
234
|
+
symbolFor('react.opaque.id');
|
|
235
|
+
REACT_DEBUG_TRACING_MODE_TYPE = symbolFor('react.debug_trace_mode');
|
|
236
|
+
symbolFor('react.offscreen');
|
|
237
|
+
REACT_LEGACY_HIDDEN_TYPE = symbolFor('react.legacy_hidden');
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
var MAYBE_ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator;
|
|
241
|
+
var FAUX_ITERATOR_SYMBOL = '@@iterator';
|
|
242
|
+
function getIteratorFn(maybeIterable) {
|
|
243
|
+
if (maybeIterable === null || typeof maybeIterable !== 'object') {
|
|
244
|
+
return null;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];
|
|
248
|
+
|
|
249
|
+
if (typeof maybeIterator === 'function') {
|
|
250
|
+
return maybeIterator;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
return null;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
/**
|
|
257
|
+
* Keeps track of the current dispatcher.
|
|
258
|
+
*/
|
|
259
|
+
var ReactCurrentDispatcher = {
|
|
260
|
+
/**
|
|
261
|
+
* @internal
|
|
262
|
+
* @type {ReactComponent}
|
|
263
|
+
*/
|
|
264
|
+
current: null
|
|
265
|
+
};
|
|
266
|
+
|
|
267
|
+
/**
|
|
268
|
+
* Keeps track of the current batch's configuration such as how long an update
|
|
269
|
+
* should suspend for if it needs to.
|
|
270
|
+
*/
|
|
271
|
+
var ReactCurrentBatchConfig = {
|
|
272
|
+
transition: 0
|
|
273
|
+
};
|
|
274
|
+
|
|
275
|
+
/**
|
|
276
|
+
* Keeps track of the current owner.
|
|
277
|
+
*
|
|
278
|
+
* The current owner is the component who should own any components that are
|
|
279
|
+
* currently being constructed.
|
|
280
|
+
*/
|
|
281
|
+
var ReactCurrentOwner = {
|
|
282
|
+
/**
|
|
283
|
+
* @internal
|
|
284
|
+
* @type {ReactComponent}
|
|
285
|
+
*/
|
|
286
|
+
current: null
|
|
287
|
+
};
|
|
288
|
+
|
|
289
|
+
var ReactDebugCurrentFrame = {};
|
|
290
|
+
var currentExtraStackFrame = null;
|
|
291
|
+
function setExtraStackFrame(stack) {
|
|
292
|
+
{
|
|
293
|
+
currentExtraStackFrame = stack;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
{
|
|
298
|
+
ReactDebugCurrentFrame.setExtraStackFrame = function (stack) {
|
|
299
|
+
{
|
|
300
|
+
currentExtraStackFrame = stack;
|
|
301
|
+
}
|
|
302
|
+
}; // Stack implementation injected by the current renderer.
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
ReactDebugCurrentFrame.getCurrentStack = null;
|
|
306
|
+
|
|
307
|
+
ReactDebugCurrentFrame.getStackAddendum = function () {
|
|
308
|
+
var stack = ''; // Add an extra top frame while an element is being validated
|
|
309
|
+
|
|
310
|
+
if (currentExtraStackFrame) {
|
|
311
|
+
stack += currentExtraStackFrame;
|
|
312
|
+
} // Delegate to the injected renderer-specific implementation
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
var impl = ReactDebugCurrentFrame.getCurrentStack;
|
|
316
|
+
|
|
317
|
+
if (impl) {
|
|
318
|
+
stack += impl() || '';
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
return stack;
|
|
322
|
+
};
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
/**
|
|
326
|
+
* Used by act() to track whether you're inside an act() scope.
|
|
327
|
+
*/
|
|
328
|
+
var IsSomeRendererActing = {
|
|
329
|
+
current: false
|
|
330
|
+
};
|
|
331
|
+
|
|
332
|
+
var ReactSharedInternals = {
|
|
333
|
+
ReactCurrentDispatcher: ReactCurrentDispatcher,
|
|
334
|
+
ReactCurrentBatchConfig: ReactCurrentBatchConfig,
|
|
335
|
+
ReactCurrentOwner: ReactCurrentOwner,
|
|
336
|
+
IsSomeRendererActing: IsSomeRendererActing,
|
|
337
|
+
// Used by renderers to avoid bundling object-assign twice in UMD bundles:
|
|
338
|
+
assign: _assign
|
|
339
|
+
};
|
|
340
|
+
|
|
341
|
+
{
|
|
342
|
+
ReactSharedInternals.ReactDebugCurrentFrame = ReactDebugCurrentFrame;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
// by calls to these methods by a Babel plugin.
|
|
346
|
+
//
|
|
347
|
+
// In PROD (or in packages without access to React internals),
|
|
348
|
+
// they are left as they are instead.
|
|
349
|
+
|
|
350
|
+
function warn(format) {
|
|
351
|
+
{
|
|
352
|
+
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
353
|
+
args[_key - 1] = arguments[_key];
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
printWarning('warn', format, args);
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
function error(format) {
|
|
360
|
+
{
|
|
361
|
+
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
|
|
362
|
+
args[_key2 - 1] = arguments[_key2];
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
printWarning('error', format, args);
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
function printWarning(level, format, args) {
|
|
370
|
+
// When changing this logic, you might want to also
|
|
371
|
+
// update consoleWithStackDev.www.js as well.
|
|
372
|
+
{
|
|
373
|
+
var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
|
|
374
|
+
var stack = ReactDebugCurrentFrame.getStackAddendum();
|
|
375
|
+
|
|
376
|
+
if (stack !== '') {
|
|
377
|
+
format += '%s';
|
|
378
|
+
args = args.concat([stack]);
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
var argsWithFormat = args.map(function (item) {
|
|
382
|
+
return '' + item;
|
|
383
|
+
}); // Careful: RN currently depends on this prefix
|
|
384
|
+
|
|
385
|
+
argsWithFormat.unshift('Warning: ' + format); // We intentionally don't use spread (or .apply) directly because it
|
|
386
|
+
// breaks IE9: https://github.com/facebook/react/issues/13610
|
|
387
|
+
// eslint-disable-next-line react-internal/no-production-logging
|
|
388
|
+
|
|
389
|
+
Function.prototype.apply.call(console[level], console, argsWithFormat);
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
var didWarnStateUpdateForUnmountedComponent = {};
|
|
394
|
+
|
|
395
|
+
function warnNoop(publicInstance, callerName) {
|
|
396
|
+
{
|
|
397
|
+
var _constructor = publicInstance.constructor;
|
|
398
|
+
var componentName = _constructor && (_constructor.displayName || _constructor.name) || 'ReactClass';
|
|
399
|
+
var warningKey = componentName + "." + callerName;
|
|
400
|
+
|
|
401
|
+
if (didWarnStateUpdateForUnmountedComponent[warningKey]) {
|
|
402
|
+
return;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
error("Can't call %s on a component that is not yet mounted. " + 'This is a no-op, but it might indicate a bug in your application. ' + 'Instead, assign to `this.state` directly or define a `state = {};` ' + 'class property with the desired state in the %s component.', callerName, componentName);
|
|
406
|
+
|
|
407
|
+
didWarnStateUpdateForUnmountedComponent[warningKey] = true;
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
/**
|
|
411
|
+
* This is the abstract API for an update queue.
|
|
412
|
+
*/
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
var ReactNoopUpdateQueue = {
|
|
416
|
+
/**
|
|
417
|
+
* Checks whether or not this composite component is mounted.
|
|
418
|
+
* @param {ReactClass} publicInstance The instance we want to test.
|
|
419
|
+
* @return {boolean} True if mounted, false otherwise.
|
|
420
|
+
* @protected
|
|
421
|
+
* @final
|
|
422
|
+
*/
|
|
423
|
+
isMounted: function (publicInstance) {
|
|
424
|
+
return false;
|
|
425
|
+
},
|
|
426
|
+
|
|
427
|
+
/**
|
|
428
|
+
* Forces an update. This should only be invoked when it is known with
|
|
429
|
+
* certainty that we are **not** in a DOM transaction.
|
|
430
|
+
*
|
|
431
|
+
* You may want to call this when you know that some deeper aspect of the
|
|
432
|
+
* component's state has changed but `setState` was not called.
|
|
433
|
+
*
|
|
434
|
+
* This will not invoke `shouldComponentUpdate`, but it will invoke
|
|
435
|
+
* `componentWillUpdate` and `componentDidUpdate`.
|
|
436
|
+
*
|
|
437
|
+
* @param {ReactClass} publicInstance The instance that should rerender.
|
|
438
|
+
* @param {?function} callback Called after component is updated.
|
|
439
|
+
* @param {?string} callerName name of the calling function in the public API.
|
|
440
|
+
* @internal
|
|
441
|
+
*/
|
|
442
|
+
enqueueForceUpdate: function (publicInstance, callback, callerName) {
|
|
443
|
+
warnNoop(publicInstance, 'forceUpdate');
|
|
444
|
+
},
|
|
445
|
+
|
|
446
|
+
/**
|
|
447
|
+
* Replaces all of the state. Always use this or `setState` to mutate state.
|
|
448
|
+
* You should treat `this.state` as immutable.
|
|
449
|
+
*
|
|
450
|
+
* There is no guarantee that `this.state` will be immediately updated, so
|
|
451
|
+
* accessing `this.state` after calling this method may return the old value.
|
|
452
|
+
*
|
|
453
|
+
* @param {ReactClass} publicInstance The instance that should rerender.
|
|
454
|
+
* @param {object} completeState Next state.
|
|
455
|
+
* @param {?function} callback Called after component is updated.
|
|
456
|
+
* @param {?string} callerName name of the calling function in the public API.
|
|
457
|
+
* @internal
|
|
458
|
+
*/
|
|
459
|
+
enqueueReplaceState: function (publicInstance, completeState, callback, callerName) {
|
|
460
|
+
warnNoop(publicInstance, 'replaceState');
|
|
461
|
+
},
|
|
462
|
+
|
|
463
|
+
/**
|
|
464
|
+
* Sets a subset of the state. This only exists because _pendingState is
|
|
465
|
+
* internal. This provides a merging strategy that is not available to deep
|
|
466
|
+
* properties which is confusing. TODO: Expose pendingState or don't use it
|
|
467
|
+
* during the merge.
|
|
468
|
+
*
|
|
469
|
+
* @param {ReactClass} publicInstance The instance that should rerender.
|
|
470
|
+
* @param {object} partialState Next partial state to be merged with state.
|
|
471
|
+
* @param {?function} callback Called after component is updated.
|
|
472
|
+
* @param {?string} Name of the calling function in the public API.
|
|
473
|
+
* @internal
|
|
474
|
+
*/
|
|
475
|
+
enqueueSetState: function (publicInstance, partialState, callback, callerName) {
|
|
476
|
+
warnNoop(publicInstance, 'setState');
|
|
477
|
+
}
|
|
478
|
+
};
|
|
479
|
+
|
|
480
|
+
var emptyObject = {};
|
|
481
|
+
|
|
482
|
+
{
|
|
483
|
+
Object.freeze(emptyObject);
|
|
484
|
+
}
|
|
485
|
+
/**
|
|
486
|
+
* Base class helpers for the updating state of a component.
|
|
487
|
+
*/
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
function Component(props, context, updater) {
|
|
491
|
+
this.props = props;
|
|
492
|
+
this.context = context; // If a component has string refs, we will assign a different object later.
|
|
493
|
+
|
|
494
|
+
this.refs = emptyObject; // We initialize the default updater but the real one gets injected by the
|
|
495
|
+
// renderer.
|
|
496
|
+
|
|
497
|
+
this.updater = updater || ReactNoopUpdateQueue;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
Component.prototype.isReactComponent = {};
|
|
501
|
+
/**
|
|
502
|
+
* Sets a subset of the state. Always use this to mutate
|
|
503
|
+
* state. You should treat `this.state` as immutable.
|
|
504
|
+
*
|
|
505
|
+
* There is no guarantee that `this.state` will be immediately updated, so
|
|
506
|
+
* accessing `this.state` after calling this method may return the old value.
|
|
507
|
+
*
|
|
508
|
+
* There is no guarantee that calls to `setState` will run synchronously,
|
|
509
|
+
* as they may eventually be batched together. You can provide an optional
|
|
510
|
+
* callback that will be executed when the call to setState is actually
|
|
511
|
+
* completed.
|
|
512
|
+
*
|
|
513
|
+
* When a function is provided to setState, it will be called at some point in
|
|
514
|
+
* the future (not synchronously). It will be called with the up to date
|
|
515
|
+
* component arguments (state, props, context). These values can be different
|
|
516
|
+
* from this.* because your function may be called after receiveProps but before
|
|
517
|
+
* shouldComponentUpdate, and this new state, props, and context will not yet be
|
|
518
|
+
* assigned to this.
|
|
519
|
+
*
|
|
520
|
+
* @param {object|function} partialState Next partial state or function to
|
|
521
|
+
* produce next partial state to be merged with current state.
|
|
522
|
+
* @param {?function} callback Called after state is updated.
|
|
523
|
+
* @final
|
|
524
|
+
* @protected
|
|
525
|
+
*/
|
|
526
|
+
|
|
527
|
+
Component.prototype.setState = function (partialState, callback) {
|
|
528
|
+
if (!(typeof partialState === 'object' || typeof partialState === 'function' || partialState == null)) {
|
|
529
|
+
{
|
|
530
|
+
throw Error( "setState(...): takes an object of state variables to update or a function which returns an object of state variables." );
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
this.updater.enqueueSetState(this, partialState, callback, 'setState');
|
|
535
|
+
};
|
|
536
|
+
/**
|
|
537
|
+
* Forces an update. This should only be invoked when it is known with
|
|
538
|
+
* certainty that we are **not** in a DOM transaction.
|
|
539
|
+
*
|
|
540
|
+
* You may want to call this when you know that some deeper aspect of the
|
|
541
|
+
* component's state has changed but `setState` was not called.
|
|
542
|
+
*
|
|
543
|
+
* This will not invoke `shouldComponentUpdate`, but it will invoke
|
|
544
|
+
* `componentWillUpdate` and `componentDidUpdate`.
|
|
545
|
+
*
|
|
546
|
+
* @param {?function} callback Called after update is complete.
|
|
547
|
+
* @final
|
|
548
|
+
* @protected
|
|
549
|
+
*/
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
Component.prototype.forceUpdate = function (callback) {
|
|
553
|
+
this.updater.enqueueForceUpdate(this, callback, 'forceUpdate');
|
|
554
|
+
};
|
|
555
|
+
/**
|
|
556
|
+
* Deprecated APIs. These APIs used to exist on classic React classes but since
|
|
557
|
+
* we would like to deprecate them, we're not going to move them over to this
|
|
558
|
+
* modern base class. Instead, we define a getter that warns if it's accessed.
|
|
559
|
+
*/
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
{
|
|
563
|
+
var deprecatedAPIs = {
|
|
564
|
+
isMounted: ['isMounted', 'Instead, make sure to clean up subscriptions and pending requests in ' + 'componentWillUnmount to prevent memory leaks.'],
|
|
565
|
+
replaceState: ['replaceState', 'Refactor your code to use setState instead (see ' + 'https://github.com/facebook/react/issues/3236).']
|
|
566
|
+
};
|
|
567
|
+
|
|
568
|
+
var defineDeprecationWarning = function (methodName, info) {
|
|
569
|
+
Object.defineProperty(Component.prototype, methodName, {
|
|
570
|
+
get: function () {
|
|
571
|
+
warn('%s(...) is deprecated in plain JavaScript React classes. %s', info[0], info[1]);
|
|
572
|
+
|
|
573
|
+
return undefined;
|
|
574
|
+
}
|
|
575
|
+
});
|
|
576
|
+
};
|
|
577
|
+
|
|
578
|
+
for (var fnName in deprecatedAPIs) {
|
|
579
|
+
if (deprecatedAPIs.hasOwnProperty(fnName)) {
|
|
580
|
+
defineDeprecationWarning(fnName, deprecatedAPIs[fnName]);
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
function ComponentDummy() {}
|
|
586
|
+
|
|
587
|
+
ComponentDummy.prototype = Component.prototype;
|
|
588
|
+
/**
|
|
589
|
+
* Convenience component with default shallow equality check for sCU.
|
|
590
|
+
*/
|
|
591
|
+
|
|
592
|
+
function PureComponent(props, context, updater) {
|
|
593
|
+
this.props = props;
|
|
594
|
+
this.context = context; // If a component has string refs, we will assign a different object later.
|
|
595
|
+
|
|
596
|
+
this.refs = emptyObject;
|
|
597
|
+
this.updater = updater || ReactNoopUpdateQueue;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
var pureComponentPrototype = PureComponent.prototype = new ComponentDummy();
|
|
601
|
+
pureComponentPrototype.constructor = PureComponent; // Avoid an extra prototype jump for these methods.
|
|
602
|
+
|
|
603
|
+
_assign(pureComponentPrototype, Component.prototype);
|
|
604
|
+
|
|
605
|
+
pureComponentPrototype.isPureReactComponent = true;
|
|
606
|
+
|
|
607
|
+
// an immutable object with a single mutable value
|
|
608
|
+
function createRef() {
|
|
609
|
+
var refObject = {
|
|
610
|
+
current: null
|
|
611
|
+
};
|
|
612
|
+
|
|
613
|
+
{
|
|
614
|
+
Object.seal(refObject);
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
return refObject;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
function getWrappedName(outerType, innerType, wrapperName) {
|
|
621
|
+
var functionName = innerType.displayName || innerType.name || '';
|
|
622
|
+
return outerType.displayName || (functionName !== '' ? wrapperName + "(" + functionName + ")" : wrapperName);
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
function getContextName(type) {
|
|
626
|
+
return type.displayName || 'Context';
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
function getComponentName(type) {
|
|
630
|
+
if (type == null) {
|
|
631
|
+
// Host root, text node or just invalid type.
|
|
632
|
+
return null;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
{
|
|
636
|
+
if (typeof type.tag === 'number') {
|
|
637
|
+
error('Received an unexpected object in getComponentName(). ' + 'This is likely a bug in React. Please file an issue.');
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
if (typeof type === 'function') {
|
|
642
|
+
return type.displayName || type.name || null;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
if (typeof type === 'string') {
|
|
646
|
+
return type;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
switch (type) {
|
|
650
|
+
case exports.Fragment:
|
|
651
|
+
return 'Fragment';
|
|
652
|
+
|
|
653
|
+
case REACT_PORTAL_TYPE:
|
|
654
|
+
return 'Portal';
|
|
655
|
+
|
|
656
|
+
case exports.Profiler:
|
|
657
|
+
return 'Profiler';
|
|
658
|
+
|
|
659
|
+
case exports.StrictMode:
|
|
660
|
+
return 'StrictMode';
|
|
661
|
+
|
|
662
|
+
case exports.Suspense:
|
|
663
|
+
return 'Suspense';
|
|
664
|
+
|
|
665
|
+
case REACT_SUSPENSE_LIST_TYPE:
|
|
666
|
+
return 'SuspenseList';
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
if (typeof type === 'object') {
|
|
670
|
+
switch (type.$$typeof) {
|
|
671
|
+
case REACT_CONTEXT_TYPE:
|
|
672
|
+
var context = type;
|
|
673
|
+
return getContextName(context) + '.Consumer';
|
|
674
|
+
|
|
675
|
+
case REACT_PROVIDER_TYPE:
|
|
676
|
+
var provider = type;
|
|
677
|
+
return getContextName(provider._context) + '.Provider';
|
|
678
|
+
|
|
679
|
+
case REACT_FORWARD_REF_TYPE:
|
|
680
|
+
return getWrappedName(type, type.render, 'ForwardRef');
|
|
681
|
+
|
|
682
|
+
case REACT_MEMO_TYPE:
|
|
683
|
+
return getComponentName(type.type);
|
|
684
|
+
|
|
685
|
+
case REACT_BLOCK_TYPE:
|
|
686
|
+
return getComponentName(type._render);
|
|
687
|
+
|
|
688
|
+
case REACT_LAZY_TYPE:
|
|
689
|
+
{
|
|
690
|
+
var lazyComponent = type;
|
|
691
|
+
var payload = lazyComponent._payload;
|
|
692
|
+
var init = lazyComponent._init;
|
|
693
|
+
|
|
694
|
+
try {
|
|
695
|
+
return getComponentName(init(payload));
|
|
696
|
+
} catch (x) {
|
|
697
|
+
return null;
|
|
698
|
+
}
|
|
699
|
+
}
|
|
700
|
+
}
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
return null;
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
707
|
+
var RESERVED_PROPS = {
|
|
708
|
+
key: true,
|
|
709
|
+
ref: true,
|
|
710
|
+
__self: true,
|
|
711
|
+
__source: true
|
|
712
|
+
};
|
|
713
|
+
var specialPropKeyWarningShown, specialPropRefWarningShown, didWarnAboutStringRefs;
|
|
714
|
+
|
|
715
|
+
{
|
|
716
|
+
didWarnAboutStringRefs = {};
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
function hasValidRef(config) {
|
|
720
|
+
{
|
|
721
|
+
if (hasOwnProperty.call(config, 'ref')) {
|
|
722
|
+
var getter = Object.getOwnPropertyDescriptor(config, 'ref').get;
|
|
723
|
+
|
|
724
|
+
if (getter && getter.isReactWarning) {
|
|
725
|
+
return false;
|
|
726
|
+
}
|
|
727
|
+
}
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
return config.ref !== undefined;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
function hasValidKey(config) {
|
|
734
|
+
{
|
|
735
|
+
if (hasOwnProperty.call(config, 'key')) {
|
|
736
|
+
var getter = Object.getOwnPropertyDescriptor(config, 'key').get;
|
|
737
|
+
|
|
738
|
+
if (getter && getter.isReactWarning) {
|
|
739
|
+
return false;
|
|
740
|
+
}
|
|
741
|
+
}
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
return config.key !== undefined;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
function defineKeyPropWarningGetter(props, displayName) {
|
|
748
|
+
var warnAboutAccessingKey = function () {
|
|
749
|
+
{
|
|
750
|
+
if (!specialPropKeyWarningShown) {
|
|
751
|
+
specialPropKeyWarningShown = true;
|
|
752
|
+
|
|
753
|
+
error('%s: `key` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);
|
|
754
|
+
}
|
|
755
|
+
}
|
|
756
|
+
};
|
|
757
|
+
|
|
758
|
+
warnAboutAccessingKey.isReactWarning = true;
|
|
759
|
+
Object.defineProperty(props, 'key', {
|
|
760
|
+
get: warnAboutAccessingKey,
|
|
761
|
+
configurable: true
|
|
762
|
+
});
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
function defineRefPropWarningGetter(props, displayName) {
|
|
766
|
+
var warnAboutAccessingRef = function () {
|
|
767
|
+
{
|
|
768
|
+
if (!specialPropRefWarningShown) {
|
|
769
|
+
specialPropRefWarningShown = true;
|
|
770
|
+
|
|
771
|
+
error('%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
};
|
|
775
|
+
|
|
776
|
+
warnAboutAccessingRef.isReactWarning = true;
|
|
777
|
+
Object.defineProperty(props, 'ref', {
|
|
778
|
+
get: warnAboutAccessingRef,
|
|
779
|
+
configurable: true
|
|
780
|
+
});
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
function warnIfStringRefCannotBeAutoConverted(config) {
|
|
784
|
+
{
|
|
785
|
+
if (typeof config.ref === 'string' && ReactCurrentOwner.current && config.__self && ReactCurrentOwner.current.stateNode !== config.__self) {
|
|
786
|
+
var componentName = getComponentName(ReactCurrentOwner.current.type);
|
|
787
|
+
|
|
788
|
+
if (!didWarnAboutStringRefs[componentName]) {
|
|
789
|
+
error('Component "%s" contains the string ref "%s". ' + 'Support for string refs will be removed in a future major release. ' + 'This case cannot be automatically converted to an arrow function. ' + 'We ask you to manually fix this case by using useRef() or createRef() instead. ' + 'Learn more about using refs safely here: ' + 'https://reactjs.org/link/strict-mode-string-ref', componentName, config.ref);
|
|
790
|
+
|
|
791
|
+
didWarnAboutStringRefs[componentName] = true;
|
|
792
|
+
}
|
|
793
|
+
}
|
|
794
|
+
}
|
|
795
|
+
}
|
|
796
|
+
/**
|
|
797
|
+
* Factory method to create a new React element. This no longer adheres to
|
|
798
|
+
* the class pattern, so do not use new to call it. Also, instanceof check
|
|
799
|
+
* will not work. Instead test $$typeof field against Symbol.for('react.element') to check
|
|
800
|
+
* if something is a React Element.
|
|
801
|
+
*
|
|
802
|
+
* @param {*} type
|
|
803
|
+
* @param {*} props
|
|
804
|
+
* @param {*} key
|
|
805
|
+
* @param {string|object} ref
|
|
806
|
+
* @param {*} owner
|
|
807
|
+
* @param {*} self A *temporary* helper to detect places where `this` is
|
|
808
|
+
* different from the `owner` when React.createElement is called, so that we
|
|
809
|
+
* can warn. We want to get rid of owner and replace string `ref`s with arrow
|
|
810
|
+
* functions, and as long as `this` and owner are the same, there will be no
|
|
811
|
+
* change in behavior.
|
|
812
|
+
* @param {*} source An annotation object (added by a transpiler or otherwise)
|
|
813
|
+
* indicating filename, line number, and/or other information.
|
|
814
|
+
* @internal
|
|
815
|
+
*/
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
var ReactElement = function (type, key, ref, self, source, owner, props) {
|
|
819
|
+
var element = {
|
|
820
|
+
// This tag allows us to uniquely identify this as a React Element
|
|
821
|
+
$$typeof: REACT_ELEMENT_TYPE,
|
|
822
|
+
// Built-in properties that belong on the element
|
|
823
|
+
type: type,
|
|
824
|
+
key: key,
|
|
825
|
+
ref: ref,
|
|
826
|
+
props: props,
|
|
827
|
+
// Record the component responsible for creating this element.
|
|
828
|
+
_owner: owner
|
|
829
|
+
};
|
|
830
|
+
|
|
831
|
+
{
|
|
832
|
+
// The validation flag is currently mutative. We put it on
|
|
833
|
+
// an external backing store so that we can freeze the whole object.
|
|
834
|
+
// This can be replaced with a WeakMap once they are implemented in
|
|
835
|
+
// commonly used development environments.
|
|
836
|
+
element._store = {}; // To make comparing ReactElements easier for testing purposes, we make
|
|
837
|
+
// the validation flag non-enumerable (where possible, which should
|
|
838
|
+
// include every environment we run tests in), so the test framework
|
|
839
|
+
// ignores it.
|
|
840
|
+
|
|
841
|
+
Object.defineProperty(element._store, 'validated', {
|
|
842
|
+
configurable: false,
|
|
843
|
+
enumerable: false,
|
|
844
|
+
writable: true,
|
|
845
|
+
value: false
|
|
846
|
+
}); // self and source are DEV only properties.
|
|
847
|
+
|
|
848
|
+
Object.defineProperty(element, '_self', {
|
|
849
|
+
configurable: false,
|
|
850
|
+
enumerable: false,
|
|
851
|
+
writable: false,
|
|
852
|
+
value: self
|
|
853
|
+
}); // Two elements created in two different places should be considered
|
|
854
|
+
// equal for testing purposes and therefore we hide it from enumeration.
|
|
855
|
+
|
|
856
|
+
Object.defineProperty(element, '_source', {
|
|
857
|
+
configurable: false,
|
|
858
|
+
enumerable: false,
|
|
859
|
+
writable: false,
|
|
860
|
+
value: source
|
|
861
|
+
});
|
|
862
|
+
|
|
863
|
+
if (Object.freeze) {
|
|
864
|
+
Object.freeze(element.props);
|
|
865
|
+
Object.freeze(element);
|
|
866
|
+
}
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
return element;
|
|
870
|
+
};
|
|
871
|
+
/**
|
|
872
|
+
* Create and return a new ReactElement of the given type.
|
|
873
|
+
* See https://reactjs.org/docs/react-api.html#createelement
|
|
874
|
+
*/
|
|
875
|
+
|
|
876
|
+
function createElement(type, config, children) {
|
|
877
|
+
var propName; // Reserved names are extracted
|
|
878
|
+
|
|
879
|
+
var props = {};
|
|
880
|
+
var key = null;
|
|
881
|
+
var ref = null;
|
|
882
|
+
var self = null;
|
|
883
|
+
var source = null;
|
|
884
|
+
|
|
885
|
+
if (config != null) {
|
|
886
|
+
if (hasValidRef(config)) {
|
|
887
|
+
ref = config.ref;
|
|
888
|
+
|
|
889
|
+
{
|
|
890
|
+
warnIfStringRefCannotBeAutoConverted(config);
|
|
891
|
+
}
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
if (hasValidKey(config)) {
|
|
895
|
+
key = '' + config.key;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
self = config.__self === undefined ? null : config.__self;
|
|
899
|
+
source = config.__source === undefined ? null : config.__source; // Remaining properties are added to a new props object
|
|
900
|
+
|
|
901
|
+
for (propName in config) {
|
|
902
|
+
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
|
|
903
|
+
props[propName] = config[propName];
|
|
904
|
+
}
|
|
905
|
+
}
|
|
906
|
+
} // Children can be more than one argument, and those are transferred onto
|
|
907
|
+
// the newly allocated props object.
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
var childrenLength = arguments.length - 2;
|
|
911
|
+
|
|
912
|
+
if (childrenLength === 1) {
|
|
913
|
+
props.children = children;
|
|
914
|
+
} else if (childrenLength > 1) {
|
|
915
|
+
var childArray = Array(childrenLength);
|
|
916
|
+
|
|
917
|
+
for (var i = 0; i < childrenLength; i++) {
|
|
918
|
+
childArray[i] = arguments[i + 2];
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
{
|
|
922
|
+
if (Object.freeze) {
|
|
923
|
+
Object.freeze(childArray);
|
|
924
|
+
}
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
props.children = childArray;
|
|
928
|
+
} // Resolve default props
|
|
929
|
+
|
|
930
|
+
|
|
931
|
+
if (type && type.defaultProps) {
|
|
932
|
+
var defaultProps = type.defaultProps;
|
|
933
|
+
|
|
934
|
+
for (propName in defaultProps) {
|
|
935
|
+
if (props[propName] === undefined) {
|
|
936
|
+
props[propName] = defaultProps[propName];
|
|
937
|
+
}
|
|
938
|
+
}
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
{
|
|
942
|
+
if (key || ref) {
|
|
943
|
+
var displayName = typeof type === 'function' ? type.displayName || type.name || 'Unknown' : type;
|
|
944
|
+
|
|
945
|
+
if (key) {
|
|
946
|
+
defineKeyPropWarningGetter(props, displayName);
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
if (ref) {
|
|
950
|
+
defineRefPropWarningGetter(props, displayName);
|
|
951
|
+
}
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);
|
|
956
|
+
}
|
|
957
|
+
function cloneAndReplaceKey(oldElement, newKey) {
|
|
958
|
+
var newElement = ReactElement(oldElement.type, newKey, oldElement.ref, oldElement._self, oldElement._source, oldElement._owner, oldElement.props);
|
|
959
|
+
return newElement;
|
|
960
|
+
}
|
|
961
|
+
/**
|
|
962
|
+
* Clone and return a new ReactElement using element as the starting point.
|
|
963
|
+
* See https://reactjs.org/docs/react-api.html#cloneelement
|
|
964
|
+
*/
|
|
965
|
+
|
|
966
|
+
function cloneElement(element, config, children) {
|
|
967
|
+
if (!!(element === null || element === undefined)) {
|
|
968
|
+
{
|
|
969
|
+
throw Error( "React.cloneElement(...): The argument must be a React element, but you passed " + element + "." );
|
|
970
|
+
}
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
var propName; // Original props are copied
|
|
974
|
+
|
|
975
|
+
var props = _assign({}, element.props); // Reserved names are extracted
|
|
976
|
+
|
|
977
|
+
|
|
978
|
+
var key = element.key;
|
|
979
|
+
var ref = element.ref; // Self is preserved since the owner is preserved.
|
|
980
|
+
|
|
981
|
+
var self = element._self; // Source is preserved since cloneElement is unlikely to be targeted by a
|
|
982
|
+
// transpiler, and the original source is probably a better indicator of the
|
|
983
|
+
// true owner.
|
|
984
|
+
|
|
985
|
+
var source = element._source; // Owner will be preserved, unless ref is overridden
|
|
986
|
+
|
|
987
|
+
var owner = element._owner;
|
|
988
|
+
|
|
989
|
+
if (config != null) {
|
|
990
|
+
if (hasValidRef(config)) {
|
|
991
|
+
// Silently steal the ref from the parent.
|
|
992
|
+
ref = config.ref;
|
|
993
|
+
owner = ReactCurrentOwner.current;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
if (hasValidKey(config)) {
|
|
997
|
+
key = '' + config.key;
|
|
998
|
+
} // Remaining properties override existing props
|
|
999
|
+
|
|
1000
|
+
|
|
1001
|
+
var defaultProps;
|
|
1002
|
+
|
|
1003
|
+
if (element.type && element.type.defaultProps) {
|
|
1004
|
+
defaultProps = element.type.defaultProps;
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
for (propName in config) {
|
|
1008
|
+
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
|
|
1009
|
+
if (config[propName] === undefined && defaultProps !== undefined) {
|
|
1010
|
+
// Resolve default props
|
|
1011
|
+
props[propName] = defaultProps[propName];
|
|
1012
|
+
} else {
|
|
1013
|
+
props[propName] = config[propName];
|
|
1014
|
+
}
|
|
1015
|
+
}
|
|
1016
|
+
}
|
|
1017
|
+
} // Children can be more than one argument, and those are transferred onto
|
|
1018
|
+
// the newly allocated props object.
|
|
1019
|
+
|
|
1020
|
+
|
|
1021
|
+
var childrenLength = arguments.length - 2;
|
|
1022
|
+
|
|
1023
|
+
if (childrenLength === 1) {
|
|
1024
|
+
props.children = children;
|
|
1025
|
+
} else if (childrenLength > 1) {
|
|
1026
|
+
var childArray = Array(childrenLength);
|
|
1027
|
+
|
|
1028
|
+
for (var i = 0; i < childrenLength; i++) {
|
|
1029
|
+
childArray[i] = arguments[i + 2];
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
props.children = childArray;
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
return ReactElement(element.type, key, ref, self, source, owner, props);
|
|
1036
|
+
}
|
|
1037
|
+
/**
|
|
1038
|
+
* Verifies the object is a ReactElement.
|
|
1039
|
+
* See https://reactjs.org/docs/react-api.html#isvalidelement
|
|
1040
|
+
* @param {?object} object
|
|
1041
|
+
* @return {boolean} True if `object` is a ReactElement.
|
|
1042
|
+
* @final
|
|
1043
|
+
*/
|
|
1044
|
+
|
|
1045
|
+
function isValidElement(object) {
|
|
1046
|
+
return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
var SEPARATOR = '.';
|
|
1050
|
+
var SUBSEPARATOR = ':';
|
|
1051
|
+
/**
|
|
1052
|
+
* Escape and wrap key so it is safe to use as a reactid
|
|
1053
|
+
*
|
|
1054
|
+
* @param {string} key to be escaped.
|
|
1055
|
+
* @return {string} the escaped key.
|
|
1056
|
+
*/
|
|
1057
|
+
|
|
1058
|
+
function escape(key) {
|
|
1059
|
+
var escapeRegex = /[=:]/g;
|
|
1060
|
+
var escaperLookup = {
|
|
1061
|
+
'=': '=0',
|
|
1062
|
+
':': '=2'
|
|
1063
|
+
};
|
|
1064
|
+
var escapedString = key.replace(escapeRegex, function (match) {
|
|
1065
|
+
return escaperLookup[match];
|
|
1066
|
+
});
|
|
1067
|
+
return '$' + escapedString;
|
|
1068
|
+
}
|
|
1069
|
+
/**
|
|
1070
|
+
* TODO: Test that a single child and an array with one item have the same key
|
|
1071
|
+
* pattern.
|
|
1072
|
+
*/
|
|
1073
|
+
|
|
1074
|
+
|
|
1075
|
+
var didWarnAboutMaps = false;
|
|
1076
|
+
var userProvidedKeyEscapeRegex = /\/+/g;
|
|
1077
|
+
|
|
1078
|
+
function escapeUserProvidedKey(text) {
|
|
1079
|
+
return text.replace(userProvidedKeyEscapeRegex, '$&/');
|
|
1080
|
+
}
|
|
1081
|
+
/**
|
|
1082
|
+
* Generate a key string that identifies a element within a set.
|
|
1083
|
+
*
|
|
1084
|
+
* @param {*} element A element that could contain a manual key.
|
|
1085
|
+
* @param {number} index Index that is used if a manual key is not provided.
|
|
1086
|
+
* @return {string}
|
|
1087
|
+
*/
|
|
1088
|
+
|
|
1089
|
+
|
|
1090
|
+
function getElementKey(element, index) {
|
|
1091
|
+
// Do some typechecking here since we call this blindly. We want to ensure
|
|
1092
|
+
// that we don't block potential future ES APIs.
|
|
1093
|
+
if (typeof element === 'object' && element !== null && element.key != null) {
|
|
1094
|
+
// Explicit key
|
|
1095
|
+
return escape('' + element.key);
|
|
1096
|
+
} // Implicit key determined by the index in the set
|
|
1097
|
+
|
|
1098
|
+
|
|
1099
|
+
return index.toString(36);
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
|
|
1103
|
+
var type = typeof children;
|
|
1104
|
+
|
|
1105
|
+
if (type === 'undefined' || type === 'boolean') {
|
|
1106
|
+
// All of the above are perceived as null.
|
|
1107
|
+
children = null;
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
var invokeCallback = false;
|
|
1111
|
+
|
|
1112
|
+
if (children === null) {
|
|
1113
|
+
invokeCallback = true;
|
|
1114
|
+
} else {
|
|
1115
|
+
switch (type) {
|
|
1116
|
+
case 'string':
|
|
1117
|
+
case 'number':
|
|
1118
|
+
invokeCallback = true;
|
|
1119
|
+
break;
|
|
1120
|
+
|
|
1121
|
+
case 'object':
|
|
1122
|
+
switch (children.$$typeof) {
|
|
1123
|
+
case REACT_ELEMENT_TYPE:
|
|
1124
|
+
case REACT_PORTAL_TYPE:
|
|
1125
|
+
invokeCallback = true;
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
}
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
if (invokeCallback) {
|
|
1132
|
+
var _child = children;
|
|
1133
|
+
var mappedChild = callback(_child); // If it's the only child, treat the name as if it was wrapped in an array
|
|
1134
|
+
// so that it's consistent if the number of children grows:
|
|
1135
|
+
|
|
1136
|
+
var childKey = nameSoFar === '' ? SEPARATOR + getElementKey(_child, 0) : nameSoFar;
|
|
1137
|
+
|
|
1138
|
+
if (Array.isArray(mappedChild)) {
|
|
1139
|
+
var escapedChildKey = '';
|
|
1140
|
+
|
|
1141
|
+
if (childKey != null) {
|
|
1142
|
+
escapedChildKey = escapeUserProvidedKey(childKey) + '/';
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
mapIntoArray(mappedChild, array, escapedChildKey, '', function (c) {
|
|
1146
|
+
return c;
|
|
1147
|
+
});
|
|
1148
|
+
} else if (mappedChild != null) {
|
|
1149
|
+
if (isValidElement(mappedChild)) {
|
|
1150
|
+
mappedChild = cloneAndReplaceKey(mappedChild, // Keep both the (mapped) and old keys if they differ, just as
|
|
1151
|
+
// traverseAllChildren used to do for objects as children
|
|
1152
|
+
escapedPrefix + ( // $FlowFixMe Flow incorrectly thinks React.Portal doesn't have a key
|
|
1153
|
+
mappedChild.key && (!_child || _child.key !== mappedChild.key) ? // $FlowFixMe Flow incorrectly thinks existing element's key can be a number
|
|
1154
|
+
escapeUserProvidedKey('' + mappedChild.key) + '/' : '') + childKey);
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
array.push(mappedChild);
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
return 1;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
var child;
|
|
1164
|
+
var nextName;
|
|
1165
|
+
var subtreeCount = 0; // Count of children found in the current subtree.
|
|
1166
|
+
|
|
1167
|
+
var nextNamePrefix = nameSoFar === '' ? SEPARATOR : nameSoFar + SUBSEPARATOR;
|
|
1168
|
+
|
|
1169
|
+
if (Array.isArray(children)) {
|
|
1170
|
+
for (var i = 0; i < children.length; i++) {
|
|
1171
|
+
child = children[i];
|
|
1172
|
+
nextName = nextNamePrefix + getElementKey(child, i);
|
|
1173
|
+
subtreeCount += mapIntoArray(child, array, escapedPrefix, nextName, callback);
|
|
1174
|
+
}
|
|
1175
|
+
} else {
|
|
1176
|
+
var iteratorFn = getIteratorFn(children);
|
|
1177
|
+
|
|
1178
|
+
if (typeof iteratorFn === 'function') {
|
|
1179
|
+
var iterableChildren = children;
|
|
1180
|
+
|
|
1181
|
+
{
|
|
1182
|
+
// Warn about using Maps as children
|
|
1183
|
+
if (iteratorFn === iterableChildren.entries) {
|
|
1184
|
+
if (!didWarnAboutMaps) {
|
|
1185
|
+
warn('Using Maps as children is not supported. ' + 'Use an array of keyed ReactElements instead.');
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
didWarnAboutMaps = true;
|
|
1189
|
+
}
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
var iterator = iteratorFn.call(iterableChildren);
|
|
1193
|
+
var step;
|
|
1194
|
+
var ii = 0;
|
|
1195
|
+
|
|
1196
|
+
while (!(step = iterator.next()).done) {
|
|
1197
|
+
child = step.value;
|
|
1198
|
+
nextName = nextNamePrefix + getElementKey(child, ii++);
|
|
1199
|
+
subtreeCount += mapIntoArray(child, array, escapedPrefix, nextName, callback);
|
|
1200
|
+
}
|
|
1201
|
+
} else if (type === 'object') {
|
|
1202
|
+
var childrenString = '' + children;
|
|
1203
|
+
|
|
1204
|
+
{
|
|
1205
|
+
{
|
|
1206
|
+
throw Error( "Objects are not valid as a React child (found: " + (childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString) + "). If you meant to render a collection of children, use an array instead." );
|
|
1207
|
+
}
|
|
1208
|
+
}
|
|
1209
|
+
}
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
return subtreeCount;
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
/**
|
|
1216
|
+
* Maps children that are typically specified as `props.children`.
|
|
1217
|
+
*
|
|
1218
|
+
* See https://reactjs.org/docs/react-api.html#reactchildrenmap
|
|
1219
|
+
*
|
|
1220
|
+
* The provided mapFunction(child, index) will be called for each
|
|
1221
|
+
* leaf child.
|
|
1222
|
+
*
|
|
1223
|
+
* @param {?*} children Children tree container.
|
|
1224
|
+
* @param {function(*, int)} func The map function.
|
|
1225
|
+
* @param {*} context Context for mapFunction.
|
|
1226
|
+
* @return {object} Object containing the ordered map of results.
|
|
1227
|
+
*/
|
|
1228
|
+
function mapChildren(children, func, context) {
|
|
1229
|
+
if (children == null) {
|
|
1230
|
+
return children;
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
var result = [];
|
|
1234
|
+
var count = 0;
|
|
1235
|
+
mapIntoArray(children, result, '', '', function (child) {
|
|
1236
|
+
return func.call(context, child, count++);
|
|
1237
|
+
});
|
|
1238
|
+
return result;
|
|
1239
|
+
}
|
|
1240
|
+
/**
|
|
1241
|
+
* Count the number of children that are typically specified as
|
|
1242
|
+
* `props.children`.
|
|
1243
|
+
*
|
|
1244
|
+
* See https://reactjs.org/docs/react-api.html#reactchildrencount
|
|
1245
|
+
*
|
|
1246
|
+
* @param {?*} children Children tree container.
|
|
1247
|
+
* @return {number} The number of children.
|
|
1248
|
+
*/
|
|
1249
|
+
|
|
1250
|
+
|
|
1251
|
+
function countChildren(children) {
|
|
1252
|
+
var n = 0;
|
|
1253
|
+
mapChildren(children, function () {
|
|
1254
|
+
n++; // Don't return anything
|
|
1255
|
+
});
|
|
1256
|
+
return n;
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
/**
|
|
1260
|
+
* Iterates through children that are typically specified as `props.children`.
|
|
1261
|
+
*
|
|
1262
|
+
* See https://reactjs.org/docs/react-api.html#reactchildrenforeach
|
|
1263
|
+
*
|
|
1264
|
+
* The provided forEachFunc(child, index) will be called for each
|
|
1265
|
+
* leaf child.
|
|
1266
|
+
*
|
|
1267
|
+
* @param {?*} children Children tree container.
|
|
1268
|
+
* @param {function(*, int)} forEachFunc
|
|
1269
|
+
* @param {*} forEachContext Context for forEachContext.
|
|
1270
|
+
*/
|
|
1271
|
+
function forEachChildren(children, forEachFunc, forEachContext) {
|
|
1272
|
+
mapChildren(children, function () {
|
|
1273
|
+
forEachFunc.apply(this, arguments); // Don't return anything.
|
|
1274
|
+
}, forEachContext);
|
|
1275
|
+
}
|
|
1276
|
+
/**
|
|
1277
|
+
* Flatten a children object (typically specified as `props.children`) and
|
|
1278
|
+
* return an array with appropriately re-keyed children.
|
|
1279
|
+
*
|
|
1280
|
+
* See https://reactjs.org/docs/react-api.html#reactchildrentoarray
|
|
1281
|
+
*/
|
|
1282
|
+
|
|
1283
|
+
|
|
1284
|
+
function toArray(children) {
|
|
1285
|
+
return mapChildren(children, function (child) {
|
|
1286
|
+
return child;
|
|
1287
|
+
}) || [];
|
|
1288
|
+
}
|
|
1289
|
+
/**
|
|
1290
|
+
* Returns the first child in a collection of children and verifies that there
|
|
1291
|
+
* is only one child in the collection.
|
|
1292
|
+
*
|
|
1293
|
+
* See https://reactjs.org/docs/react-api.html#reactchildrenonly
|
|
1294
|
+
*
|
|
1295
|
+
* The current implementation of this function assumes that a single child gets
|
|
1296
|
+
* passed without a wrapper, but the purpose of this helper function is to
|
|
1297
|
+
* abstract away the particular structure of children.
|
|
1298
|
+
*
|
|
1299
|
+
* @param {?object} children Child collection structure.
|
|
1300
|
+
* @return {ReactElement} The first and only `ReactElement` contained in the
|
|
1301
|
+
* structure.
|
|
1302
|
+
*/
|
|
1303
|
+
|
|
1304
|
+
|
|
1305
|
+
function onlyChild(children) {
|
|
1306
|
+
if (!isValidElement(children)) {
|
|
1307
|
+
{
|
|
1308
|
+
throw Error( "React.Children.only expected to receive a single React element child." );
|
|
1309
|
+
}
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1312
|
+
return children;
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
function createContext(defaultValue, calculateChangedBits) {
|
|
1316
|
+
if (calculateChangedBits === undefined) {
|
|
1317
|
+
calculateChangedBits = null;
|
|
1318
|
+
} else {
|
|
1319
|
+
{
|
|
1320
|
+
if (calculateChangedBits !== null && typeof calculateChangedBits !== 'function') {
|
|
1321
|
+
error('createContext: Expected the optional second argument to be a ' + 'function. Instead received: %s', calculateChangedBits);
|
|
1322
|
+
}
|
|
1323
|
+
}
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1326
|
+
var context = {
|
|
1327
|
+
$$typeof: REACT_CONTEXT_TYPE,
|
|
1328
|
+
_calculateChangedBits: calculateChangedBits,
|
|
1329
|
+
// As a workaround to support multiple concurrent renderers, we categorize
|
|
1330
|
+
// some renderers as primary and others as secondary. We only expect
|
|
1331
|
+
// there to be two concurrent renderers at most: React Native (primary) and
|
|
1332
|
+
// Fabric (secondary); React DOM (primary) and React ART (secondary).
|
|
1333
|
+
// Secondary renderers store their context values on separate fields.
|
|
1334
|
+
_currentValue: defaultValue,
|
|
1335
|
+
_currentValue2: defaultValue,
|
|
1336
|
+
// Used to track how many concurrent renderers this context currently
|
|
1337
|
+
// supports within in a single renderer. Such as parallel server rendering.
|
|
1338
|
+
_threadCount: 0,
|
|
1339
|
+
// These are circular
|
|
1340
|
+
Provider: null,
|
|
1341
|
+
Consumer: null
|
|
1342
|
+
};
|
|
1343
|
+
context.Provider = {
|
|
1344
|
+
$$typeof: REACT_PROVIDER_TYPE,
|
|
1345
|
+
_context: context
|
|
1346
|
+
};
|
|
1347
|
+
var hasWarnedAboutUsingNestedContextConsumers = false;
|
|
1348
|
+
var hasWarnedAboutUsingConsumerProvider = false;
|
|
1349
|
+
var hasWarnedAboutDisplayNameOnConsumer = false;
|
|
1350
|
+
|
|
1351
|
+
{
|
|
1352
|
+
// A separate object, but proxies back to the original context object for
|
|
1353
|
+
// backwards compatibility. It has a different $$typeof, so we can properly
|
|
1354
|
+
// warn for the incorrect usage of Context as a Consumer.
|
|
1355
|
+
var Consumer = {
|
|
1356
|
+
$$typeof: REACT_CONTEXT_TYPE,
|
|
1357
|
+
_context: context,
|
|
1358
|
+
_calculateChangedBits: context._calculateChangedBits
|
|
1359
|
+
}; // $FlowFixMe: Flow complains about not setting a value, which is intentional here
|
|
1360
|
+
|
|
1361
|
+
Object.defineProperties(Consumer, {
|
|
1362
|
+
Provider: {
|
|
1363
|
+
get: function () {
|
|
1364
|
+
if (!hasWarnedAboutUsingConsumerProvider) {
|
|
1365
|
+
hasWarnedAboutUsingConsumerProvider = true;
|
|
1366
|
+
|
|
1367
|
+
error('Rendering <Context.Consumer.Provider> is not supported and will be removed in ' + 'a future major release. Did you mean to render <Context.Provider> instead?');
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1370
|
+
return context.Provider;
|
|
1371
|
+
},
|
|
1372
|
+
set: function (_Provider) {
|
|
1373
|
+
context.Provider = _Provider;
|
|
1374
|
+
}
|
|
1375
|
+
},
|
|
1376
|
+
_currentValue: {
|
|
1377
|
+
get: function () {
|
|
1378
|
+
return context._currentValue;
|
|
1379
|
+
},
|
|
1380
|
+
set: function (_currentValue) {
|
|
1381
|
+
context._currentValue = _currentValue;
|
|
1382
|
+
}
|
|
1383
|
+
},
|
|
1384
|
+
_currentValue2: {
|
|
1385
|
+
get: function () {
|
|
1386
|
+
return context._currentValue2;
|
|
1387
|
+
},
|
|
1388
|
+
set: function (_currentValue2) {
|
|
1389
|
+
context._currentValue2 = _currentValue2;
|
|
1390
|
+
}
|
|
1391
|
+
},
|
|
1392
|
+
_threadCount: {
|
|
1393
|
+
get: function () {
|
|
1394
|
+
return context._threadCount;
|
|
1395
|
+
},
|
|
1396
|
+
set: function (_threadCount) {
|
|
1397
|
+
context._threadCount = _threadCount;
|
|
1398
|
+
}
|
|
1399
|
+
},
|
|
1400
|
+
Consumer: {
|
|
1401
|
+
get: function () {
|
|
1402
|
+
if (!hasWarnedAboutUsingNestedContextConsumers) {
|
|
1403
|
+
hasWarnedAboutUsingNestedContextConsumers = true;
|
|
1404
|
+
|
|
1405
|
+
error('Rendering <Context.Consumer.Consumer> is not supported and will be removed in ' + 'a future major release. Did you mean to render <Context.Consumer> instead?');
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
return context.Consumer;
|
|
1409
|
+
}
|
|
1410
|
+
},
|
|
1411
|
+
displayName: {
|
|
1412
|
+
get: function () {
|
|
1413
|
+
return context.displayName;
|
|
1414
|
+
},
|
|
1415
|
+
set: function (displayName) {
|
|
1416
|
+
if (!hasWarnedAboutDisplayNameOnConsumer) {
|
|
1417
|
+
warn('Setting `displayName` on Context.Consumer has no effect. ' + "You should set it directly on the context with Context.displayName = '%s'.", displayName);
|
|
1418
|
+
|
|
1419
|
+
hasWarnedAboutDisplayNameOnConsumer = true;
|
|
1420
|
+
}
|
|
1421
|
+
}
|
|
1422
|
+
}
|
|
1423
|
+
}); // $FlowFixMe: Flow complains about missing properties because it doesn't understand defineProperty
|
|
1424
|
+
|
|
1425
|
+
context.Consumer = Consumer;
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
{
|
|
1429
|
+
context._currentRenderer = null;
|
|
1430
|
+
context._currentRenderer2 = null;
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
return context;
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
var Uninitialized = -1;
|
|
1437
|
+
var Pending = 0;
|
|
1438
|
+
var Resolved = 1;
|
|
1439
|
+
var Rejected = 2;
|
|
1440
|
+
|
|
1441
|
+
function lazyInitializer(payload) {
|
|
1442
|
+
if (payload._status === Uninitialized) {
|
|
1443
|
+
var ctor = payload._result;
|
|
1444
|
+
var thenable = ctor(); // Transition to the next state.
|
|
1445
|
+
|
|
1446
|
+
var pending = payload;
|
|
1447
|
+
pending._status = Pending;
|
|
1448
|
+
pending._result = thenable;
|
|
1449
|
+
thenable.then(function (moduleObject) {
|
|
1450
|
+
if (payload._status === Pending) {
|
|
1451
|
+
var defaultExport = moduleObject.default;
|
|
1452
|
+
|
|
1453
|
+
{
|
|
1454
|
+
if (defaultExport === undefined) {
|
|
1455
|
+
error('lazy: Expected the result of a dynamic import() call. ' + 'Instead received: %s\n\nYour code should look like: \n ' + // Break up imports to avoid accidentally parsing them as dependencies.
|
|
1456
|
+
'const MyComponent = lazy(() => imp' + "ort('./MyComponent'))", moduleObject);
|
|
1457
|
+
}
|
|
1458
|
+
} // Transition to the next state.
|
|
1459
|
+
|
|
1460
|
+
|
|
1461
|
+
var resolved = payload;
|
|
1462
|
+
resolved._status = Resolved;
|
|
1463
|
+
resolved._result = defaultExport;
|
|
1464
|
+
}
|
|
1465
|
+
}, function (error) {
|
|
1466
|
+
if (payload._status === Pending) {
|
|
1467
|
+
// Transition to the next state.
|
|
1468
|
+
var rejected = payload;
|
|
1469
|
+
rejected._status = Rejected;
|
|
1470
|
+
rejected._result = error;
|
|
1471
|
+
}
|
|
1472
|
+
});
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
if (payload._status === Resolved) {
|
|
1476
|
+
return payload._result;
|
|
1477
|
+
} else {
|
|
1478
|
+
throw payload._result;
|
|
1479
|
+
}
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
function lazy(ctor) {
|
|
1483
|
+
var payload = {
|
|
1484
|
+
// We use these fields to store the result.
|
|
1485
|
+
_status: -1,
|
|
1486
|
+
_result: ctor
|
|
1487
|
+
};
|
|
1488
|
+
var lazyType = {
|
|
1489
|
+
$$typeof: REACT_LAZY_TYPE,
|
|
1490
|
+
_payload: payload,
|
|
1491
|
+
_init: lazyInitializer
|
|
1492
|
+
};
|
|
1493
|
+
|
|
1494
|
+
{
|
|
1495
|
+
// In production, this would just set it on the object.
|
|
1496
|
+
var defaultProps;
|
|
1497
|
+
var propTypes; // $FlowFixMe
|
|
1498
|
+
|
|
1499
|
+
Object.defineProperties(lazyType, {
|
|
1500
|
+
defaultProps: {
|
|
1501
|
+
configurable: true,
|
|
1502
|
+
get: function () {
|
|
1503
|
+
return defaultProps;
|
|
1504
|
+
},
|
|
1505
|
+
set: function (newDefaultProps) {
|
|
1506
|
+
error('React.lazy(...): It is not supported to assign `defaultProps` to ' + 'a lazy component import. Either specify them where the component ' + 'is defined, or create a wrapping component around it.');
|
|
1507
|
+
|
|
1508
|
+
defaultProps = newDefaultProps; // Match production behavior more closely:
|
|
1509
|
+
// $FlowFixMe
|
|
1510
|
+
|
|
1511
|
+
Object.defineProperty(lazyType, 'defaultProps', {
|
|
1512
|
+
enumerable: true
|
|
1513
|
+
});
|
|
1514
|
+
}
|
|
1515
|
+
},
|
|
1516
|
+
propTypes: {
|
|
1517
|
+
configurable: true,
|
|
1518
|
+
get: function () {
|
|
1519
|
+
return propTypes;
|
|
1520
|
+
},
|
|
1521
|
+
set: function (newPropTypes) {
|
|
1522
|
+
error('React.lazy(...): It is not supported to assign `propTypes` to ' + 'a lazy component import. Either specify them where the component ' + 'is defined, or create a wrapping component around it.');
|
|
1523
|
+
|
|
1524
|
+
propTypes = newPropTypes; // Match production behavior more closely:
|
|
1525
|
+
// $FlowFixMe
|
|
1526
|
+
|
|
1527
|
+
Object.defineProperty(lazyType, 'propTypes', {
|
|
1528
|
+
enumerable: true
|
|
1529
|
+
});
|
|
1530
|
+
}
|
|
1531
|
+
}
|
|
1532
|
+
});
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
return lazyType;
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
function forwardRef(render) {
|
|
1539
|
+
{
|
|
1540
|
+
if (render != null && render.$$typeof === REACT_MEMO_TYPE) {
|
|
1541
|
+
error('forwardRef requires a render function but received a `memo` ' + 'component. Instead of forwardRef(memo(...)), use ' + 'memo(forwardRef(...)).');
|
|
1542
|
+
} else if (typeof render !== 'function') {
|
|
1543
|
+
error('forwardRef requires a render function but was given %s.', render === null ? 'null' : typeof render);
|
|
1544
|
+
} else {
|
|
1545
|
+
if (render.length !== 0 && render.length !== 2) {
|
|
1546
|
+
error('forwardRef render functions accept exactly two parameters: props and ref. %s', render.length === 1 ? 'Did you forget to use the ref parameter?' : 'Any additional parameter will be undefined.');
|
|
1547
|
+
}
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1550
|
+
if (render != null) {
|
|
1551
|
+
if (render.defaultProps != null || render.propTypes != null) {
|
|
1552
|
+
error('forwardRef render functions do not support propTypes or defaultProps. ' + 'Did you accidentally pass a React component?');
|
|
1553
|
+
}
|
|
1554
|
+
}
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
var elementType = {
|
|
1558
|
+
$$typeof: REACT_FORWARD_REF_TYPE,
|
|
1559
|
+
render: render
|
|
1560
|
+
};
|
|
1561
|
+
|
|
1562
|
+
{
|
|
1563
|
+
var ownName;
|
|
1564
|
+
Object.defineProperty(elementType, 'displayName', {
|
|
1565
|
+
enumerable: false,
|
|
1566
|
+
configurable: true,
|
|
1567
|
+
get: function () {
|
|
1568
|
+
return ownName;
|
|
1569
|
+
},
|
|
1570
|
+
set: function (name) {
|
|
1571
|
+
ownName = name;
|
|
1572
|
+
|
|
1573
|
+
if (render.displayName == null) {
|
|
1574
|
+
render.displayName = name;
|
|
1575
|
+
}
|
|
1576
|
+
}
|
|
1577
|
+
});
|
|
1578
|
+
}
|
|
1579
|
+
|
|
1580
|
+
return elementType;
|
|
1581
|
+
}
|
|
1582
|
+
|
|
1583
|
+
// Filter certain DOM attributes (e.g. src, href) if their values are empty strings.
|
|
1584
|
+
|
|
1585
|
+
var enableScopeAPI = false; // Experimental Create Event Handle API.
|
|
1586
|
+
|
|
1587
|
+
function isValidElementType(type) {
|
|
1588
|
+
if (typeof type === 'string' || typeof type === 'function') {
|
|
1589
|
+
return true;
|
|
1590
|
+
} // Note: typeof might be other than 'symbol' or 'number' (e.g. if it's a polyfill).
|
|
1591
|
+
|
|
1592
|
+
|
|
1593
|
+
if (type === exports.Fragment || type === exports.Profiler || type === REACT_DEBUG_TRACING_MODE_TYPE || type === exports.StrictMode || type === exports.Suspense || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_LEGACY_HIDDEN_TYPE || enableScopeAPI ) {
|
|
1594
|
+
return true;
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1597
|
+
if (typeof type === 'object' && type !== null) {
|
|
1598
|
+
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_BLOCK_TYPE || type[0] === REACT_SERVER_BLOCK_TYPE) {
|
|
1599
|
+
return true;
|
|
1600
|
+
}
|
|
1601
|
+
}
|
|
1602
|
+
|
|
1603
|
+
return false;
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
function memo(type, compare) {
|
|
1607
|
+
{
|
|
1608
|
+
if (!isValidElementType(type)) {
|
|
1609
|
+
error('memo: The first argument must be a component. Instead ' + 'received: %s', type === null ? 'null' : typeof type);
|
|
1610
|
+
}
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
var elementType = {
|
|
1614
|
+
$$typeof: REACT_MEMO_TYPE,
|
|
1615
|
+
type: type,
|
|
1616
|
+
compare: compare === undefined ? null : compare
|
|
1617
|
+
};
|
|
1618
|
+
|
|
1619
|
+
{
|
|
1620
|
+
var ownName;
|
|
1621
|
+
Object.defineProperty(elementType, 'displayName', {
|
|
1622
|
+
enumerable: false,
|
|
1623
|
+
configurable: true,
|
|
1624
|
+
get: function () {
|
|
1625
|
+
return ownName;
|
|
1626
|
+
},
|
|
1627
|
+
set: function (name) {
|
|
1628
|
+
ownName = name;
|
|
1629
|
+
|
|
1630
|
+
if (type.displayName == null) {
|
|
1631
|
+
type.displayName = name;
|
|
1632
|
+
}
|
|
1633
|
+
}
|
|
1634
|
+
});
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
return elementType;
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1640
|
+
function resolveDispatcher() {
|
|
1641
|
+
var dispatcher = ReactCurrentDispatcher.current;
|
|
1642
|
+
|
|
1643
|
+
if (!(dispatcher !== null)) {
|
|
1644
|
+
{
|
|
1645
|
+
throw Error( "Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem." );
|
|
1646
|
+
}
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
return dispatcher;
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
function useContext(Context, unstable_observedBits) {
|
|
1653
|
+
var dispatcher = resolveDispatcher();
|
|
1654
|
+
|
|
1655
|
+
{
|
|
1656
|
+
if (unstable_observedBits !== undefined) {
|
|
1657
|
+
error('useContext() second argument is reserved for future ' + 'use in React. Passing it is not supported. ' + 'You passed: %s.%s', unstable_observedBits, typeof unstable_observedBits === 'number' && Array.isArray(arguments[2]) ? '\n\nDid you call array.map(useContext)? ' + 'Calling Hooks inside a loop is not supported. ' + 'Learn more at https://reactjs.org/link/rules-of-hooks' : '');
|
|
1658
|
+
} // TODO: add a more generic warning for invalid values.
|
|
1659
|
+
|
|
1660
|
+
|
|
1661
|
+
if (Context._context !== undefined) {
|
|
1662
|
+
var realContext = Context._context; // Don't deduplicate because this legitimately causes bugs
|
|
1663
|
+
// and nobody should be using this in existing code.
|
|
1664
|
+
|
|
1665
|
+
if (realContext.Consumer === Context) {
|
|
1666
|
+
error('Calling useContext(Context.Consumer) is not supported, may cause bugs, and will be ' + 'removed in a future major release. Did you mean to call useContext(Context) instead?');
|
|
1667
|
+
} else if (realContext.Provider === Context) {
|
|
1668
|
+
error('Calling useContext(Context.Provider) is not supported. ' + 'Did you mean to call useContext(Context) instead?');
|
|
1669
|
+
}
|
|
1670
|
+
}
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
return dispatcher.useContext(Context, unstable_observedBits);
|
|
1674
|
+
}
|
|
1675
|
+
function useState(initialState) {
|
|
1676
|
+
var dispatcher = resolveDispatcher();
|
|
1677
|
+
return dispatcher.useState(initialState);
|
|
1678
|
+
}
|
|
1679
|
+
function useReducer(reducer, initialArg, init) {
|
|
1680
|
+
var dispatcher = resolveDispatcher();
|
|
1681
|
+
return dispatcher.useReducer(reducer, initialArg, init);
|
|
1682
|
+
}
|
|
1683
|
+
function useRef(initialValue) {
|
|
1684
|
+
var dispatcher = resolveDispatcher();
|
|
1685
|
+
return dispatcher.useRef(initialValue);
|
|
1686
|
+
}
|
|
1687
|
+
function useEffect(create, deps) {
|
|
1688
|
+
var dispatcher = resolveDispatcher();
|
|
1689
|
+
return dispatcher.useEffect(create, deps);
|
|
1690
|
+
}
|
|
1691
|
+
function useLayoutEffect(create, deps) {
|
|
1692
|
+
var dispatcher = resolveDispatcher();
|
|
1693
|
+
return dispatcher.useLayoutEffect(create, deps);
|
|
1694
|
+
}
|
|
1695
|
+
function useCallback(callback, deps) {
|
|
1696
|
+
var dispatcher = resolveDispatcher();
|
|
1697
|
+
return dispatcher.useCallback(callback, deps);
|
|
1698
|
+
}
|
|
1699
|
+
function useMemo(create, deps) {
|
|
1700
|
+
var dispatcher = resolveDispatcher();
|
|
1701
|
+
return dispatcher.useMemo(create, deps);
|
|
1702
|
+
}
|
|
1703
|
+
function useImperativeHandle(ref, create, deps) {
|
|
1704
|
+
var dispatcher = resolveDispatcher();
|
|
1705
|
+
return dispatcher.useImperativeHandle(ref, create, deps);
|
|
1706
|
+
}
|
|
1707
|
+
function useDebugValue(value, formatterFn) {
|
|
1708
|
+
{
|
|
1709
|
+
var dispatcher = resolveDispatcher();
|
|
1710
|
+
return dispatcher.useDebugValue(value, formatterFn);
|
|
1711
|
+
}
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
// Helpers to patch console.logs to avoid logging during side-effect free
|
|
1715
|
+
// replaying on render function. This currently only patches the object
|
|
1716
|
+
// lazily which won't cover if the log function was extracted eagerly.
|
|
1717
|
+
// We could also eagerly patch the method.
|
|
1718
|
+
var disabledDepth = 0;
|
|
1719
|
+
var prevLog;
|
|
1720
|
+
var prevInfo;
|
|
1721
|
+
var prevWarn;
|
|
1722
|
+
var prevError;
|
|
1723
|
+
var prevGroup;
|
|
1724
|
+
var prevGroupCollapsed;
|
|
1725
|
+
var prevGroupEnd;
|
|
1726
|
+
|
|
1727
|
+
function disabledLog() {}
|
|
1728
|
+
|
|
1729
|
+
disabledLog.__reactDisabledLog = true;
|
|
1730
|
+
function disableLogs() {
|
|
1731
|
+
{
|
|
1732
|
+
if (disabledDepth === 0) {
|
|
1733
|
+
/* eslint-disable react-internal/no-production-logging */
|
|
1734
|
+
prevLog = console.log;
|
|
1735
|
+
prevInfo = console.info;
|
|
1736
|
+
prevWarn = console.warn;
|
|
1737
|
+
prevError = console.error;
|
|
1738
|
+
prevGroup = console.group;
|
|
1739
|
+
prevGroupCollapsed = console.groupCollapsed;
|
|
1740
|
+
prevGroupEnd = console.groupEnd; // https://github.com/facebook/react/issues/19099
|
|
1741
|
+
|
|
1742
|
+
var props = {
|
|
1743
|
+
configurable: true,
|
|
1744
|
+
enumerable: true,
|
|
1745
|
+
value: disabledLog,
|
|
1746
|
+
writable: true
|
|
1747
|
+
}; // $FlowFixMe Flow thinks console is immutable.
|
|
1748
|
+
|
|
1749
|
+
Object.defineProperties(console, {
|
|
1750
|
+
info: props,
|
|
1751
|
+
log: props,
|
|
1752
|
+
warn: props,
|
|
1753
|
+
error: props,
|
|
1754
|
+
group: props,
|
|
1755
|
+
groupCollapsed: props,
|
|
1756
|
+
groupEnd: props
|
|
1757
|
+
});
|
|
1758
|
+
/* eslint-enable react-internal/no-production-logging */
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
disabledDepth++;
|
|
1762
|
+
}
|
|
1763
|
+
}
|
|
1764
|
+
function reenableLogs() {
|
|
1765
|
+
{
|
|
1766
|
+
disabledDepth--;
|
|
1767
|
+
|
|
1768
|
+
if (disabledDepth === 0) {
|
|
1769
|
+
/* eslint-disable react-internal/no-production-logging */
|
|
1770
|
+
var props = {
|
|
1771
|
+
configurable: true,
|
|
1772
|
+
enumerable: true,
|
|
1773
|
+
writable: true
|
|
1774
|
+
}; // $FlowFixMe Flow thinks console is immutable.
|
|
1775
|
+
|
|
1776
|
+
Object.defineProperties(console, {
|
|
1777
|
+
log: _assign({}, props, {
|
|
1778
|
+
value: prevLog
|
|
1779
|
+
}),
|
|
1780
|
+
info: _assign({}, props, {
|
|
1781
|
+
value: prevInfo
|
|
1782
|
+
}),
|
|
1783
|
+
warn: _assign({}, props, {
|
|
1784
|
+
value: prevWarn
|
|
1785
|
+
}),
|
|
1786
|
+
error: _assign({}, props, {
|
|
1787
|
+
value: prevError
|
|
1788
|
+
}),
|
|
1789
|
+
group: _assign({}, props, {
|
|
1790
|
+
value: prevGroup
|
|
1791
|
+
}),
|
|
1792
|
+
groupCollapsed: _assign({}, props, {
|
|
1793
|
+
value: prevGroupCollapsed
|
|
1794
|
+
}),
|
|
1795
|
+
groupEnd: _assign({}, props, {
|
|
1796
|
+
value: prevGroupEnd
|
|
1797
|
+
})
|
|
1798
|
+
});
|
|
1799
|
+
/* eslint-enable react-internal/no-production-logging */
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
if (disabledDepth < 0) {
|
|
1803
|
+
error('disabledDepth fell below zero. ' + 'This is a bug in React. Please file an issue.');
|
|
1804
|
+
}
|
|
1805
|
+
}
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
var ReactCurrentDispatcher$1 = ReactSharedInternals.ReactCurrentDispatcher;
|
|
1809
|
+
var prefix;
|
|
1810
|
+
function describeBuiltInComponentFrame(name, source, ownerFn) {
|
|
1811
|
+
{
|
|
1812
|
+
if (prefix === undefined) {
|
|
1813
|
+
// Extract the VM specific prefix used by each line.
|
|
1814
|
+
try {
|
|
1815
|
+
throw Error();
|
|
1816
|
+
} catch (x) {
|
|
1817
|
+
var match = x.stack.trim().match(/\n( *(at )?)/);
|
|
1818
|
+
prefix = match && match[1] || '';
|
|
1819
|
+
}
|
|
1820
|
+
} // We use the prefix to ensure our stacks line up with native stack frames.
|
|
1821
|
+
|
|
1822
|
+
|
|
1823
|
+
return '\n' + prefix + name;
|
|
1824
|
+
}
|
|
1825
|
+
}
|
|
1826
|
+
var reentry = false;
|
|
1827
|
+
var componentFrameCache;
|
|
1828
|
+
|
|
1829
|
+
{
|
|
1830
|
+
var PossiblyWeakMap = typeof WeakMap === 'function' ? WeakMap : Map;
|
|
1831
|
+
componentFrameCache = new PossiblyWeakMap();
|
|
1832
|
+
}
|
|
1833
|
+
|
|
1834
|
+
function describeNativeComponentFrame(fn, construct) {
|
|
1835
|
+
// If something asked for a stack inside a fake render, it should get ignored.
|
|
1836
|
+
if (!fn || reentry) {
|
|
1837
|
+
return '';
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
{
|
|
1841
|
+
var frame = componentFrameCache.get(fn);
|
|
1842
|
+
|
|
1843
|
+
if (frame !== undefined) {
|
|
1844
|
+
return frame;
|
|
1845
|
+
}
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
var control;
|
|
1849
|
+
reentry = true;
|
|
1850
|
+
var previousPrepareStackTrace = Error.prepareStackTrace; // $FlowFixMe It does accept undefined.
|
|
1851
|
+
|
|
1852
|
+
Error.prepareStackTrace = undefined;
|
|
1853
|
+
var previousDispatcher;
|
|
1854
|
+
|
|
1855
|
+
{
|
|
1856
|
+
previousDispatcher = ReactCurrentDispatcher$1.current; // Set the dispatcher in DEV because this might be call in the render function
|
|
1857
|
+
// for warnings.
|
|
1858
|
+
|
|
1859
|
+
ReactCurrentDispatcher$1.current = null;
|
|
1860
|
+
disableLogs();
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
try {
|
|
1864
|
+
// This should throw.
|
|
1865
|
+
if (construct) {
|
|
1866
|
+
// Something should be setting the props in the constructor.
|
|
1867
|
+
var Fake = function () {
|
|
1868
|
+
throw Error();
|
|
1869
|
+
}; // $FlowFixMe
|
|
1870
|
+
|
|
1871
|
+
|
|
1872
|
+
Object.defineProperty(Fake.prototype, 'props', {
|
|
1873
|
+
set: function () {
|
|
1874
|
+
// We use a throwing setter instead of frozen or non-writable props
|
|
1875
|
+
// because that won't throw in a non-strict mode function.
|
|
1876
|
+
throw Error();
|
|
1877
|
+
}
|
|
1878
|
+
});
|
|
1879
|
+
|
|
1880
|
+
if (typeof Reflect === 'object' && Reflect.construct) {
|
|
1881
|
+
// We construct a different control for this case to include any extra
|
|
1882
|
+
// frames added by the construct call.
|
|
1883
|
+
try {
|
|
1884
|
+
Reflect.construct(Fake, []);
|
|
1885
|
+
} catch (x) {
|
|
1886
|
+
control = x;
|
|
1887
|
+
}
|
|
1888
|
+
|
|
1889
|
+
Reflect.construct(fn, [], Fake);
|
|
1890
|
+
} else {
|
|
1891
|
+
try {
|
|
1892
|
+
Fake.call();
|
|
1893
|
+
} catch (x) {
|
|
1894
|
+
control = x;
|
|
1895
|
+
}
|
|
1896
|
+
|
|
1897
|
+
fn.call(Fake.prototype);
|
|
1898
|
+
}
|
|
1899
|
+
} else {
|
|
1900
|
+
try {
|
|
1901
|
+
throw Error();
|
|
1902
|
+
} catch (x) {
|
|
1903
|
+
control = x;
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
fn();
|
|
1907
|
+
}
|
|
1908
|
+
} catch (sample) {
|
|
1909
|
+
// This is inlined manually because closure doesn't do it for us.
|
|
1910
|
+
if (sample && control && typeof sample.stack === 'string') {
|
|
1911
|
+
// This extracts the first frame from the sample that isn't also in the control.
|
|
1912
|
+
// Skipping one frame that we assume is the frame that calls the two.
|
|
1913
|
+
var sampleLines = sample.stack.split('\n');
|
|
1914
|
+
var controlLines = control.stack.split('\n');
|
|
1915
|
+
var s = sampleLines.length - 1;
|
|
1916
|
+
var c = controlLines.length - 1;
|
|
1917
|
+
|
|
1918
|
+
while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {
|
|
1919
|
+
// We expect at least one stack frame to be shared.
|
|
1920
|
+
// Typically this will be the root most one. However, stack frames may be
|
|
1921
|
+
// cut off due to maximum stack limits. In this case, one maybe cut off
|
|
1922
|
+
// earlier than the other. We assume that the sample is longer or the same
|
|
1923
|
+
// and there for cut off earlier. So we should find the root most frame in
|
|
1924
|
+
// the sample somewhere in the control.
|
|
1925
|
+
c--;
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
for (; s >= 1 && c >= 0; s--, c--) {
|
|
1929
|
+
// Next we find the first one that isn't the same which should be the
|
|
1930
|
+
// frame that called our sample function and the control.
|
|
1931
|
+
if (sampleLines[s] !== controlLines[c]) {
|
|
1932
|
+
// In V8, the first line is describing the message but other VMs don't.
|
|
1933
|
+
// If we're about to return the first line, and the control is also on the same
|
|
1934
|
+
// line, that's a pretty good indicator that our sample threw at same line as
|
|
1935
|
+
// the control. I.e. before we entered the sample frame. So we ignore this result.
|
|
1936
|
+
// This can happen if you passed a class to function component, or non-function.
|
|
1937
|
+
if (s !== 1 || c !== 1) {
|
|
1938
|
+
do {
|
|
1939
|
+
s--;
|
|
1940
|
+
c--; // We may still have similar intermediate frames from the construct call.
|
|
1941
|
+
// The next one that isn't the same should be our match though.
|
|
1942
|
+
|
|
1943
|
+
if (c < 0 || sampleLines[s] !== controlLines[c]) {
|
|
1944
|
+
// V8 adds a "new" prefix for native classes. Let's remove it to make it prettier.
|
|
1945
|
+
var _frame = '\n' + sampleLines[s].replace(' at new ', ' at ');
|
|
1946
|
+
|
|
1947
|
+
{
|
|
1948
|
+
if (typeof fn === 'function') {
|
|
1949
|
+
componentFrameCache.set(fn, _frame);
|
|
1950
|
+
}
|
|
1951
|
+
} // Return the line we found.
|
|
1952
|
+
|
|
1953
|
+
|
|
1954
|
+
return _frame;
|
|
1955
|
+
}
|
|
1956
|
+
} while (s >= 1 && c >= 0);
|
|
1957
|
+
}
|
|
1958
|
+
|
|
1959
|
+
break;
|
|
1960
|
+
}
|
|
1961
|
+
}
|
|
1962
|
+
}
|
|
1963
|
+
} finally {
|
|
1964
|
+
reentry = false;
|
|
1965
|
+
|
|
1966
|
+
{
|
|
1967
|
+
ReactCurrentDispatcher$1.current = previousDispatcher;
|
|
1968
|
+
reenableLogs();
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
Error.prepareStackTrace = previousPrepareStackTrace;
|
|
1972
|
+
} // Fallback to just using the name if we couldn't make it throw.
|
|
1973
|
+
|
|
1974
|
+
|
|
1975
|
+
var name = fn ? fn.displayName || fn.name : '';
|
|
1976
|
+
var syntheticFrame = name ? describeBuiltInComponentFrame(name) : '';
|
|
1977
|
+
|
|
1978
|
+
{
|
|
1979
|
+
if (typeof fn === 'function') {
|
|
1980
|
+
componentFrameCache.set(fn, syntheticFrame);
|
|
1981
|
+
}
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
return syntheticFrame;
|
|
1985
|
+
}
|
|
1986
|
+
function describeFunctionComponentFrame(fn, source, ownerFn) {
|
|
1987
|
+
{
|
|
1988
|
+
return describeNativeComponentFrame(fn, false);
|
|
1989
|
+
}
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
function shouldConstruct(Component) {
|
|
1993
|
+
var prototype = Component.prototype;
|
|
1994
|
+
return !!(prototype && prototype.isReactComponent);
|
|
1995
|
+
}
|
|
1996
|
+
|
|
1997
|
+
function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
|
|
1998
|
+
|
|
1999
|
+
if (type == null) {
|
|
2000
|
+
return '';
|
|
2001
|
+
}
|
|
2002
|
+
|
|
2003
|
+
if (typeof type === 'function') {
|
|
2004
|
+
{
|
|
2005
|
+
return describeNativeComponentFrame(type, shouldConstruct(type));
|
|
2006
|
+
}
|
|
2007
|
+
}
|
|
2008
|
+
|
|
2009
|
+
if (typeof type === 'string') {
|
|
2010
|
+
return describeBuiltInComponentFrame(type);
|
|
2011
|
+
}
|
|
2012
|
+
|
|
2013
|
+
switch (type) {
|
|
2014
|
+
case exports.Suspense:
|
|
2015
|
+
return describeBuiltInComponentFrame('Suspense');
|
|
2016
|
+
|
|
2017
|
+
case REACT_SUSPENSE_LIST_TYPE:
|
|
2018
|
+
return describeBuiltInComponentFrame('SuspenseList');
|
|
2019
|
+
}
|
|
2020
|
+
|
|
2021
|
+
if (typeof type === 'object') {
|
|
2022
|
+
switch (type.$$typeof) {
|
|
2023
|
+
case REACT_FORWARD_REF_TYPE:
|
|
2024
|
+
return describeFunctionComponentFrame(type.render);
|
|
2025
|
+
|
|
2026
|
+
case REACT_MEMO_TYPE:
|
|
2027
|
+
// Memo may contain any component type so we recursively resolve it.
|
|
2028
|
+
return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
|
|
2029
|
+
|
|
2030
|
+
case REACT_BLOCK_TYPE:
|
|
2031
|
+
return describeFunctionComponentFrame(type._render);
|
|
2032
|
+
|
|
2033
|
+
case REACT_LAZY_TYPE:
|
|
2034
|
+
{
|
|
2035
|
+
var lazyComponent = type;
|
|
2036
|
+
var payload = lazyComponent._payload;
|
|
2037
|
+
var init = lazyComponent._init;
|
|
2038
|
+
|
|
2039
|
+
try {
|
|
2040
|
+
// Lazy may contain any component type so we recursively resolve it.
|
|
2041
|
+
return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
|
|
2042
|
+
} catch (x) {}
|
|
2043
|
+
}
|
|
2044
|
+
}
|
|
2045
|
+
}
|
|
2046
|
+
|
|
2047
|
+
return '';
|
|
2048
|
+
}
|
|
2049
|
+
|
|
2050
|
+
var loggedTypeFailures = {};
|
|
2051
|
+
var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
|
|
2052
|
+
|
|
2053
|
+
function setCurrentlyValidatingElement(element) {
|
|
2054
|
+
{
|
|
2055
|
+
if (element) {
|
|
2056
|
+
var owner = element._owner;
|
|
2057
|
+
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
|
|
2058
|
+
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
|
|
2059
|
+
} else {
|
|
2060
|
+
ReactDebugCurrentFrame$1.setExtraStackFrame(null);
|
|
2061
|
+
}
|
|
2062
|
+
}
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
function checkPropTypes(typeSpecs, values, location, componentName, element) {
|
|
2066
|
+
{
|
|
2067
|
+
// $FlowFixMe This is okay but Flow doesn't know it.
|
|
2068
|
+
var has = Function.call.bind(Object.prototype.hasOwnProperty);
|
|
2069
|
+
|
|
2070
|
+
for (var typeSpecName in typeSpecs) {
|
|
2071
|
+
if (has(typeSpecs, typeSpecName)) {
|
|
2072
|
+
var error$1 = void 0; // Prop type validation may throw. In case they do, we don't want to
|
|
2073
|
+
// fail the render phase where it didn't fail before. So we log it.
|
|
2074
|
+
// After these have been cleaned up, we'll let them throw.
|
|
2075
|
+
|
|
2076
|
+
try {
|
|
2077
|
+
// This is intentionally an invariant that gets caught. It's the same
|
|
2078
|
+
// behavior as without this statement except with a better message.
|
|
2079
|
+
if (typeof typeSpecs[typeSpecName] !== 'function') {
|
|
2080
|
+
var err = Error((componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.');
|
|
2081
|
+
err.name = 'Invariant Violation';
|
|
2082
|
+
throw err;
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED');
|
|
2086
|
+
} catch (ex) {
|
|
2087
|
+
error$1 = ex;
|
|
2088
|
+
}
|
|
2089
|
+
|
|
2090
|
+
if (error$1 && !(error$1 instanceof Error)) {
|
|
2091
|
+
setCurrentlyValidatingElement(element);
|
|
2092
|
+
|
|
2093
|
+
error('%s: type specification of %s' + ' `%s` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a %s. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).', componentName || 'React class', location, typeSpecName, typeof error$1);
|
|
2094
|
+
|
|
2095
|
+
setCurrentlyValidatingElement(null);
|
|
2096
|
+
}
|
|
2097
|
+
|
|
2098
|
+
if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {
|
|
2099
|
+
// Only monitor this failure once because there tends to be a lot of the
|
|
2100
|
+
// same error.
|
|
2101
|
+
loggedTypeFailures[error$1.message] = true;
|
|
2102
|
+
setCurrentlyValidatingElement(element);
|
|
2103
|
+
|
|
2104
|
+
error('Failed %s type: %s', location, error$1.message);
|
|
2105
|
+
|
|
2106
|
+
setCurrentlyValidatingElement(null);
|
|
2107
|
+
}
|
|
2108
|
+
}
|
|
2109
|
+
}
|
|
2110
|
+
}
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
function setCurrentlyValidatingElement$1(element) {
|
|
2114
|
+
{
|
|
2115
|
+
if (element) {
|
|
2116
|
+
var owner = element._owner;
|
|
2117
|
+
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
|
|
2118
|
+
setExtraStackFrame(stack);
|
|
2119
|
+
} else {
|
|
2120
|
+
setExtraStackFrame(null);
|
|
2121
|
+
}
|
|
2122
|
+
}
|
|
2123
|
+
}
|
|
2124
|
+
|
|
2125
|
+
var propTypesMisspellWarningShown;
|
|
2126
|
+
|
|
2127
|
+
{
|
|
2128
|
+
propTypesMisspellWarningShown = false;
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2131
|
+
function getDeclarationErrorAddendum() {
|
|
2132
|
+
if (ReactCurrentOwner.current) {
|
|
2133
|
+
var name = getComponentName(ReactCurrentOwner.current.type);
|
|
2134
|
+
|
|
2135
|
+
if (name) {
|
|
2136
|
+
return '\n\nCheck the render method of `' + name + '`.';
|
|
2137
|
+
}
|
|
2138
|
+
}
|
|
2139
|
+
|
|
2140
|
+
return '';
|
|
2141
|
+
}
|
|
2142
|
+
|
|
2143
|
+
function getSourceInfoErrorAddendum(source) {
|
|
2144
|
+
if (source !== undefined) {
|
|
2145
|
+
var fileName = source.fileName.replace(/^.*[\\\/]/, '');
|
|
2146
|
+
var lineNumber = source.lineNumber;
|
|
2147
|
+
return '\n\nCheck your code at ' + fileName + ':' + lineNumber + '.';
|
|
2148
|
+
}
|
|
2149
|
+
|
|
2150
|
+
return '';
|
|
2151
|
+
}
|
|
2152
|
+
|
|
2153
|
+
function getSourceInfoErrorAddendumForProps(elementProps) {
|
|
2154
|
+
if (elementProps !== null && elementProps !== undefined) {
|
|
2155
|
+
return getSourceInfoErrorAddendum(elementProps.__source);
|
|
2156
|
+
}
|
|
2157
|
+
|
|
2158
|
+
return '';
|
|
2159
|
+
}
|
|
2160
|
+
/**
|
|
2161
|
+
* Warn if there's no key explicitly set on dynamic arrays of children or
|
|
2162
|
+
* object keys are not valid. This allows us to keep track of children between
|
|
2163
|
+
* updates.
|
|
2164
|
+
*/
|
|
2165
|
+
|
|
2166
|
+
|
|
2167
|
+
var ownerHasKeyUseWarning = {};
|
|
2168
|
+
|
|
2169
|
+
function getCurrentComponentErrorInfo(parentType) {
|
|
2170
|
+
var info = getDeclarationErrorAddendum();
|
|
2171
|
+
|
|
2172
|
+
if (!info) {
|
|
2173
|
+
var parentName = typeof parentType === 'string' ? parentType : parentType.displayName || parentType.name;
|
|
2174
|
+
|
|
2175
|
+
if (parentName) {
|
|
2176
|
+
info = "\n\nCheck the top-level render call using <" + parentName + ">.";
|
|
2177
|
+
}
|
|
2178
|
+
}
|
|
2179
|
+
|
|
2180
|
+
return info;
|
|
2181
|
+
}
|
|
2182
|
+
/**
|
|
2183
|
+
* Warn if the element doesn't have an explicit key assigned to it.
|
|
2184
|
+
* This element is in an array. The array could grow and shrink or be
|
|
2185
|
+
* reordered. All children that haven't already been validated are required to
|
|
2186
|
+
* have a "key" property assigned to it. Error statuses are cached so a warning
|
|
2187
|
+
* will only be shown once.
|
|
2188
|
+
*
|
|
2189
|
+
* @internal
|
|
2190
|
+
* @param {ReactElement} element Element that requires a key.
|
|
2191
|
+
* @param {*} parentType element's parent's type.
|
|
2192
|
+
*/
|
|
2193
|
+
|
|
2194
|
+
|
|
2195
|
+
function validateExplicitKey(element, parentType) {
|
|
2196
|
+
if (!element._store || element._store.validated || element.key != null) {
|
|
2197
|
+
return;
|
|
2198
|
+
}
|
|
2199
|
+
|
|
2200
|
+
element._store.validated = true;
|
|
2201
|
+
var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);
|
|
2202
|
+
|
|
2203
|
+
if (ownerHasKeyUseWarning[currentComponentErrorInfo]) {
|
|
2204
|
+
return;
|
|
2205
|
+
}
|
|
2206
|
+
|
|
2207
|
+
ownerHasKeyUseWarning[currentComponentErrorInfo] = true; // Usually the current owner is the offender, but if it accepts children as a
|
|
2208
|
+
// property, it may be the creator of the child that's responsible for
|
|
2209
|
+
// assigning it a key.
|
|
2210
|
+
|
|
2211
|
+
var childOwner = '';
|
|
2212
|
+
|
|
2213
|
+
if (element && element._owner && element._owner !== ReactCurrentOwner.current) {
|
|
2214
|
+
// Give the component that originally created this child.
|
|
2215
|
+
childOwner = " It was passed a child from " + getComponentName(element._owner.type) + ".";
|
|
2216
|
+
}
|
|
2217
|
+
|
|
2218
|
+
{
|
|
2219
|
+
setCurrentlyValidatingElement$1(element);
|
|
2220
|
+
|
|
2221
|
+
error('Each child in a list should have a unique "key" prop.' + '%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner);
|
|
2222
|
+
|
|
2223
|
+
setCurrentlyValidatingElement$1(null);
|
|
2224
|
+
}
|
|
2225
|
+
}
|
|
2226
|
+
/**
|
|
2227
|
+
* Ensure that every element either is passed in a static location, in an
|
|
2228
|
+
* array with an explicit keys property defined, or in an object literal
|
|
2229
|
+
* with valid key property.
|
|
2230
|
+
*
|
|
2231
|
+
* @internal
|
|
2232
|
+
* @param {ReactNode} node Statically passed child of any type.
|
|
2233
|
+
* @param {*} parentType node's parent's type.
|
|
2234
|
+
*/
|
|
2235
|
+
|
|
2236
|
+
|
|
2237
|
+
function validateChildKeys(node, parentType) {
|
|
2238
|
+
if (typeof node !== 'object') {
|
|
2239
|
+
return;
|
|
2240
|
+
}
|
|
2241
|
+
|
|
2242
|
+
if (Array.isArray(node)) {
|
|
2243
|
+
for (var i = 0; i < node.length; i++) {
|
|
2244
|
+
var child = node[i];
|
|
2245
|
+
|
|
2246
|
+
if (isValidElement(child)) {
|
|
2247
|
+
validateExplicitKey(child, parentType);
|
|
2248
|
+
}
|
|
2249
|
+
}
|
|
2250
|
+
} else if (isValidElement(node)) {
|
|
2251
|
+
// This element was passed in a valid location.
|
|
2252
|
+
if (node._store) {
|
|
2253
|
+
node._store.validated = true;
|
|
2254
|
+
}
|
|
2255
|
+
} else if (node) {
|
|
2256
|
+
var iteratorFn = getIteratorFn(node);
|
|
2257
|
+
|
|
2258
|
+
if (typeof iteratorFn === 'function') {
|
|
2259
|
+
// Entry iterators used to provide implicit keys,
|
|
2260
|
+
// but now we print a separate warning for them later.
|
|
2261
|
+
if (iteratorFn !== node.entries) {
|
|
2262
|
+
var iterator = iteratorFn.call(node);
|
|
2263
|
+
var step;
|
|
2264
|
+
|
|
2265
|
+
while (!(step = iterator.next()).done) {
|
|
2266
|
+
if (isValidElement(step.value)) {
|
|
2267
|
+
validateExplicitKey(step.value, parentType);
|
|
2268
|
+
}
|
|
2269
|
+
}
|
|
2270
|
+
}
|
|
2271
|
+
}
|
|
2272
|
+
}
|
|
2273
|
+
}
|
|
2274
|
+
/**
|
|
2275
|
+
* Given an element, validate that its props follow the propTypes definition,
|
|
2276
|
+
* provided by the type.
|
|
2277
|
+
*
|
|
2278
|
+
* @param {ReactElement} element
|
|
2279
|
+
*/
|
|
2280
|
+
|
|
2281
|
+
|
|
2282
|
+
function validatePropTypes(element) {
|
|
2283
|
+
{
|
|
2284
|
+
var type = element.type;
|
|
2285
|
+
|
|
2286
|
+
if (type === null || type === undefined || typeof type === 'string') {
|
|
2287
|
+
return;
|
|
2288
|
+
}
|
|
2289
|
+
|
|
2290
|
+
var propTypes;
|
|
2291
|
+
|
|
2292
|
+
if (typeof type === 'function') {
|
|
2293
|
+
propTypes = type.propTypes;
|
|
2294
|
+
} else if (typeof type === 'object' && (type.$$typeof === REACT_FORWARD_REF_TYPE || // Note: Memo only checks outer props here.
|
|
2295
|
+
// Inner props are checked in the reconciler.
|
|
2296
|
+
type.$$typeof === REACT_MEMO_TYPE)) {
|
|
2297
|
+
propTypes = type.propTypes;
|
|
2298
|
+
} else {
|
|
2299
|
+
return;
|
|
2300
|
+
}
|
|
2301
|
+
|
|
2302
|
+
if (propTypes) {
|
|
2303
|
+
// Intentionally inside to avoid triggering lazy initializers:
|
|
2304
|
+
var name = getComponentName(type);
|
|
2305
|
+
checkPropTypes(propTypes, element.props, 'prop', name, element);
|
|
2306
|
+
} else if (type.PropTypes !== undefined && !propTypesMisspellWarningShown) {
|
|
2307
|
+
propTypesMisspellWarningShown = true; // Intentionally inside to avoid triggering lazy initializers:
|
|
2308
|
+
|
|
2309
|
+
var _name = getComponentName(type);
|
|
2310
|
+
|
|
2311
|
+
error('Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?', _name || 'Unknown');
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
if (typeof type.getDefaultProps === 'function' && !type.getDefaultProps.isReactClassApproved) {
|
|
2315
|
+
error('getDefaultProps is only used on classic React.createClass ' + 'definitions. Use a static property named `defaultProps` instead.');
|
|
2316
|
+
}
|
|
2317
|
+
}
|
|
2318
|
+
}
|
|
2319
|
+
/**
|
|
2320
|
+
* Given a fragment, validate that it can only be provided with fragment props
|
|
2321
|
+
* @param {ReactElement} fragment
|
|
2322
|
+
*/
|
|
2323
|
+
|
|
2324
|
+
|
|
2325
|
+
function validateFragmentProps(fragment) {
|
|
2326
|
+
{
|
|
2327
|
+
var keys = Object.keys(fragment.props);
|
|
2328
|
+
|
|
2329
|
+
for (var i = 0; i < keys.length; i++) {
|
|
2330
|
+
var key = keys[i];
|
|
2331
|
+
|
|
2332
|
+
if (key !== 'children' && key !== 'key') {
|
|
2333
|
+
setCurrentlyValidatingElement$1(fragment);
|
|
2334
|
+
|
|
2335
|
+
error('Invalid prop `%s` supplied to `React.Fragment`. ' + 'React.Fragment can only have `key` and `children` props.', key);
|
|
2336
|
+
|
|
2337
|
+
setCurrentlyValidatingElement$1(null);
|
|
2338
|
+
break;
|
|
2339
|
+
}
|
|
2340
|
+
}
|
|
2341
|
+
|
|
2342
|
+
if (fragment.ref !== null) {
|
|
2343
|
+
setCurrentlyValidatingElement$1(fragment);
|
|
2344
|
+
|
|
2345
|
+
error('Invalid attribute `ref` supplied to `React.Fragment`.');
|
|
2346
|
+
|
|
2347
|
+
setCurrentlyValidatingElement$1(null);
|
|
2348
|
+
}
|
|
2349
|
+
}
|
|
2350
|
+
}
|
|
2351
|
+
function createElementWithValidation(type, props, children) {
|
|
2352
|
+
var validType = isValidElementType(type); // We warn in this case but don't throw. We expect the element creation to
|
|
2353
|
+
// succeed and there will likely be errors in render.
|
|
2354
|
+
|
|
2355
|
+
if (!validType) {
|
|
2356
|
+
var info = '';
|
|
2357
|
+
|
|
2358
|
+
if (type === undefined || typeof type === 'object' && type !== null && Object.keys(type).length === 0) {
|
|
2359
|
+
info += ' You likely forgot to export your component from the file ' + "it's defined in, or you might have mixed up default and named imports.";
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2362
|
+
var sourceInfo = getSourceInfoErrorAddendumForProps(props);
|
|
2363
|
+
|
|
2364
|
+
if (sourceInfo) {
|
|
2365
|
+
info += sourceInfo;
|
|
2366
|
+
} else {
|
|
2367
|
+
info += getDeclarationErrorAddendum();
|
|
2368
|
+
}
|
|
2369
|
+
|
|
2370
|
+
var typeString;
|
|
2371
|
+
|
|
2372
|
+
if (type === null) {
|
|
2373
|
+
typeString = 'null';
|
|
2374
|
+
} else if (Array.isArray(type)) {
|
|
2375
|
+
typeString = 'array';
|
|
2376
|
+
} else if (type !== undefined && type.$$typeof === REACT_ELEMENT_TYPE) {
|
|
2377
|
+
typeString = "<" + (getComponentName(type.type) || 'Unknown') + " />";
|
|
2378
|
+
info = ' Did you accidentally export a JSX literal instead of a component?';
|
|
2379
|
+
} else {
|
|
2380
|
+
typeString = typeof type;
|
|
2381
|
+
}
|
|
2382
|
+
|
|
2383
|
+
{
|
|
2384
|
+
error('React.createElement: type is invalid -- expected a string (for ' + 'built-in components) or a class/function (for composite ' + 'components) but got: %s.%s', typeString, info);
|
|
2385
|
+
}
|
|
2386
|
+
}
|
|
2387
|
+
|
|
2388
|
+
var element = createElement.apply(this, arguments); // The result can be nullish if a mock or a custom function is used.
|
|
2389
|
+
// TODO: Drop this when these are no longer allowed as the type argument.
|
|
2390
|
+
|
|
2391
|
+
if (element == null) {
|
|
2392
|
+
return element;
|
|
2393
|
+
} // Skip key warning if the type isn't valid since our key validation logic
|
|
2394
|
+
// doesn't expect a non-string/function type and can throw confusing errors.
|
|
2395
|
+
// We don't want exception behavior to differ between dev and prod.
|
|
2396
|
+
// (Rendering will throw with a helpful message and as soon as the type is
|
|
2397
|
+
// fixed, the key warnings will appear.)
|
|
2398
|
+
|
|
2399
|
+
|
|
2400
|
+
if (validType) {
|
|
2401
|
+
for (var i = 2; i < arguments.length; i++) {
|
|
2402
|
+
validateChildKeys(arguments[i], type);
|
|
2403
|
+
}
|
|
2404
|
+
}
|
|
2405
|
+
|
|
2406
|
+
if (type === exports.Fragment) {
|
|
2407
|
+
validateFragmentProps(element);
|
|
2408
|
+
} else {
|
|
2409
|
+
validatePropTypes(element);
|
|
2410
|
+
}
|
|
2411
|
+
|
|
2412
|
+
return element;
|
|
2413
|
+
}
|
|
2414
|
+
var didWarnAboutDeprecatedCreateFactory = false;
|
|
2415
|
+
function createFactoryWithValidation(type) {
|
|
2416
|
+
var validatedFactory = createElementWithValidation.bind(null, type);
|
|
2417
|
+
validatedFactory.type = type;
|
|
2418
|
+
|
|
2419
|
+
{
|
|
2420
|
+
if (!didWarnAboutDeprecatedCreateFactory) {
|
|
2421
|
+
didWarnAboutDeprecatedCreateFactory = true;
|
|
2422
|
+
|
|
2423
|
+
warn('React.createFactory() is deprecated and will be removed in ' + 'a future major release. Consider using JSX ' + 'or use React.createElement() directly instead.');
|
|
2424
|
+
} // Legacy hook: remove it
|
|
2425
|
+
|
|
2426
|
+
|
|
2427
|
+
Object.defineProperty(validatedFactory, 'type', {
|
|
2428
|
+
enumerable: false,
|
|
2429
|
+
get: function () {
|
|
2430
|
+
warn('Factory.type is deprecated. Access the class directly ' + 'before passing it to createFactory.');
|
|
2431
|
+
|
|
2432
|
+
Object.defineProperty(this, 'type', {
|
|
2433
|
+
value: type
|
|
2434
|
+
});
|
|
2435
|
+
return type;
|
|
2436
|
+
}
|
|
2437
|
+
});
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
return validatedFactory;
|
|
2441
|
+
}
|
|
2442
|
+
function cloneElementWithValidation(element, props, children) {
|
|
2443
|
+
var newElement = cloneElement.apply(this, arguments);
|
|
2444
|
+
|
|
2445
|
+
for (var i = 2; i < arguments.length; i++) {
|
|
2446
|
+
validateChildKeys(arguments[i], newElement.type);
|
|
2447
|
+
}
|
|
2448
|
+
|
|
2449
|
+
validatePropTypes(newElement);
|
|
2450
|
+
return newElement;
|
|
2451
|
+
}
|
|
2452
|
+
|
|
2453
|
+
{
|
|
2454
|
+
|
|
2455
|
+
try {
|
|
2456
|
+
var frozenObject = Object.freeze({});
|
|
2457
|
+
/* eslint-disable no-new */
|
|
2458
|
+
|
|
2459
|
+
new Map([[frozenObject, null]]);
|
|
2460
|
+
new Set([frozenObject]);
|
|
2461
|
+
/* eslint-enable no-new */
|
|
2462
|
+
} catch (e) {
|
|
2463
|
+
}
|
|
2464
|
+
}
|
|
2465
|
+
|
|
2466
|
+
var createElement$1 = createElementWithValidation ;
|
|
2467
|
+
var cloneElement$1 = cloneElementWithValidation ;
|
|
2468
|
+
var createFactory = createFactoryWithValidation ;
|
|
2469
|
+
var Children = {
|
|
2470
|
+
map: mapChildren,
|
|
2471
|
+
forEach: forEachChildren,
|
|
2472
|
+
count: countChildren,
|
|
2473
|
+
toArray: toArray,
|
|
2474
|
+
only: onlyChild
|
|
2475
|
+
};
|
|
2476
|
+
|
|
2477
|
+
exports.Children = Children;
|
|
2478
|
+
exports.Component = Component;
|
|
2479
|
+
exports.PureComponent = PureComponent;
|
|
2480
|
+
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = ReactSharedInternals;
|
|
2481
|
+
exports.cloneElement = cloneElement$1;
|
|
2482
|
+
exports.createContext = createContext;
|
|
2483
|
+
exports.createElement = createElement$1;
|
|
2484
|
+
exports.createFactory = createFactory;
|
|
2485
|
+
exports.createRef = createRef;
|
|
2486
|
+
exports.forwardRef = forwardRef;
|
|
2487
|
+
exports.isValidElement = isValidElement;
|
|
2488
|
+
exports.lazy = lazy;
|
|
2489
|
+
exports.memo = memo;
|
|
2490
|
+
exports.useCallback = useCallback;
|
|
2491
|
+
exports.useContext = useContext;
|
|
2492
|
+
exports.useDebugValue = useDebugValue;
|
|
2493
|
+
exports.useEffect = useEffect;
|
|
2494
|
+
exports.useImperativeHandle = useImperativeHandle;
|
|
2495
|
+
exports.useLayoutEffect = useLayoutEffect;
|
|
2496
|
+
exports.useMemo = useMemo;
|
|
2497
|
+
exports.useReducer = useReducer;
|
|
2498
|
+
exports.useRef = useRef;
|
|
2499
|
+
exports.useState = useState;
|
|
2500
|
+
exports.version = ReactVersion;
|
|
2501
|
+
})();
|
|
2502
|
+
}
|
|
2503
|
+
}(react_development));
|
|
2504
|
+
|
|
2505
|
+
if (process.env.NODE_ENV === 'production') {
|
|
2506
|
+
react.exports = react_production_min;
|
|
2507
|
+
} else {
|
|
2508
|
+
react.exports = react_development;
|
|
2509
|
+
}
|
|
4
2510
|
|
|
5
|
-
var
|
|
2511
|
+
var React = react.exports;
|
|
6
2512
|
|
|
7
2513
|
var _excluded$g = ["size"];
|
|
8
2514
|
var Daily = function Daily(_ref) {
|
|
9
2515
|
var _ref$size = _ref.size,
|
|
10
2516
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
11
|
-
props =
|
|
2517
|
+
props = _objectWithoutProperties(_ref, _excluded$g);
|
|
12
2518
|
|
|
13
|
-
return /*#__PURE__*/
|
|
2519
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
14
2520
|
width: size,
|
|
15
2521
|
height: size,
|
|
16
2522
|
fill: "none",
|
|
17
2523
|
viewBox: "0 0 80 32"
|
|
18
|
-
}, props), /*#__PURE__*/
|
|
2524
|
+
}, props), /*#__PURE__*/React.createElement("linearGradient", {
|
|
19
2525
|
id: "Daily_js__a",
|
|
20
2526
|
x1: 8.887,
|
|
21
2527
|
x2: 8.887,
|
|
22
2528
|
y1: -0.223,
|
|
23
2529
|
y2: 30,
|
|
24
2530
|
gradientUnits: "userSpaceOnUse"
|
|
25
|
-
}, /*#__PURE__*/
|
|
2531
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
26
2532
|
offset: 0,
|
|
27
2533
|
stopColor: "#1bebb9"
|
|
28
|
-
}), /*#__PURE__*/
|
|
2534
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
29
2535
|
offset: 1,
|
|
30
2536
|
stopColor: "#ff9254"
|
|
31
|
-
})), /*#__PURE__*/
|
|
2537
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
32
2538
|
fill: "#121a24"
|
|
33
|
-
}, /*#__PURE__*/
|
|
2539
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
34
2540
|
d: "M21.589 27.015c2.298 0 4.209-1.343 5.015-2.925v2.597h4.298V4h-4.299v9.403c-.865-1.582-2.417-2.687-4.925-2.687-3.91 0-6.866 3.015-6.866 8.15v.239c0 5.194 2.986 7.91 6.777 7.91zm1.283-3.373c-2.15 0-3.642-1.523-3.642-4.627v-.239c0-3.104 1.344-4.746 3.762-4.746 2.358 0 3.73 1.582 3.73 4.686v.24c0 3.163-1.581 4.686-3.85 4.686zM37.953 27.015c2.448 0 3.821-.955 4.717-2.209v1.88h4.209V16.509c0-4.24-2.717-5.792-6.538-5.792s-6.746 1.642-7.015 5.344h4.09c.18-1.344.955-2.21 2.657-2.21 1.97 0 2.537 1.016 2.537 2.866v.627H40.85c-4.776 0-8.12 1.373-8.12 5.015 0 3.284 2.389 4.657 5.224 4.657zM39.237 24c-1.582 0-2.269-.746-2.269-1.88 0-1.672 1.463-2.21 3.97-2.21h1.672v1.314c0 1.731-1.463 2.776-3.373 2.776zM49.647 26.687h4.299V11.075h-4.299zm2.12-17.732c1.402 0 2.477-1.015 2.477-2.358 0-1.343-1.075-2.358-2.477-2.358-1.374 0-2.448 1.015-2.448 2.358 0 1.343 1.074 2.358 2.447 2.358zM56.977 26.687h4.298V4h-4.298zM70.563 32l8.429-20.925h-4.12l-3.522 9.373-3.791-9.373h-4.657l6.25 14.12L66.378 32z"
|
|
35
|
-
})), /*#__PURE__*/
|
|
2541
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
36
2542
|
fill: "url(#Daily_js__a)",
|
|
37
2543
|
d: "M0 32h4.188L17.076 0h-4.085z"
|
|
38
2544
|
}));
|
|
@@ -42,13 +2548,13 @@ var _excluded$f = ["size"];
|
|
|
42
2548
|
var Github = function Github(_ref) {
|
|
43
2549
|
var _ref$size = _ref.size,
|
|
44
2550
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
45
|
-
props =
|
|
2551
|
+
props = _objectWithoutProperties(_ref, _excluded$f);
|
|
46
2552
|
|
|
47
|
-
return /*#__PURE__*/
|
|
2553
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
48
2554
|
width: size,
|
|
49
2555
|
height: size,
|
|
50
2556
|
viewBox: "0 0 32 32"
|
|
51
|
-
}, props), /*#__PURE__*/
|
|
2557
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
52
2558
|
d: "M15.953 0C7.133 0 0 7.332 0 16.406c0 7.25 4.57 13.39 10.906 15.563.793.164 1.086-.352 1.086-.785 0-.383-.027-1.688-.027-3.043-4.438.976-5.363-1.957-5.363-1.957-.711-1.903-1.77-2.391-1.77-2.391-1.453-1.004.106-1.004.106-1.004 1.613.11 2.457 1.684 2.457 1.684 1.425 2.5 3.722 1.793 4.648 1.359.133-1.062.555-1.793 1.004-2.203-3.54-.379-7.262-1.79-7.262-8.094 0-1.793.633-3.258 1.637-4.398-.16-.407-.715-2.094.16-4.348 0 0 1.344-.434 4.383 1.684 1.3-.36 2.64-.54 3.988-.543 1.348 0 2.719.191 3.988.543 3.036-2.118 4.383-1.684 4.383-1.684.871 2.254.317 3.941.16 4.348 1.028 1.14 1.637 2.605 1.637 4.398 0 6.305-3.723 7.688-7.289 8.094.582.52 1.082 1.496 1.082 3.043 0 2.2-.027 3.965-.027 4.508 0 .437.293.953 1.082.789 6.34-2.172 10.91-8.313 10.91-15.563C31.906 7.332 24.746 0 15.953 0Zm0 0",
|
|
53
2559
|
style: {
|
|
54
2560
|
stroke: "none",
|
|
@@ -63,22 +2569,22 @@ var _excluded$e = ["size"];
|
|
|
63
2569
|
var Google = function Google(_ref) {
|
|
64
2570
|
var _ref$size = _ref.size,
|
|
65
2571
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
66
|
-
props =
|
|
2572
|
+
props = _objectWithoutProperties(_ref, _excluded$e);
|
|
67
2573
|
|
|
68
|
-
return /*#__PURE__*/
|
|
2574
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
69
2575
|
width: size,
|
|
70
2576
|
height: size,
|
|
71
2577
|
viewBox: "0 0 24 24"
|
|
72
|
-
}, props), /*#__PURE__*/
|
|
2578
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
73
2579
|
fill: "#4285F4",
|
|
74
2580
|
d: "M23.745 12.27c0-.79-.07-1.54-.19-2.27h-11.3v4.51h6.47c-.29 1.48-1.14 2.73-2.4 3.58v3h3.86c2.26-2.09 3.56-5.17 3.56-8.82Z"
|
|
75
|
-
}), /*#__PURE__*/
|
|
2581
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
76
2582
|
fill: "#34A853",
|
|
77
2583
|
d: "M12.255 24c3.24 0 5.95-1.08 7.93-2.91l-3.86-3c-1.08.72-2.45 1.16-4.07 1.16-3.13 0-5.78-2.11-6.73-4.96h-3.98v3.09C3.515 21.3 7.565 24 12.255 24Z"
|
|
78
|
-
}), /*#__PURE__*/
|
|
2584
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
79
2585
|
fill: "#FBBC05",
|
|
80
2586
|
d: "M5.525 14.29c-.25-.72-.38-1.49-.38-2.29s.14-1.57.38-2.29V6.62h-3.98a11.86 11.86 0 0 0 0 10.76l3.98-3.09Z"
|
|
81
|
-
}), /*#__PURE__*/
|
|
2587
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
82
2588
|
fill: "#EA4335",
|
|
83
2589
|
d: "M12.255 4.75c1.77 0 3.35.61 4.6 1.8l3.42-3.42C18.205 1.19 15.495 0 12.255 0c-4.69 0-8.74 2.7-10.71 6.62l3.98 3.09c.95-2.85 3.6-4.96 6.73-4.96Z"
|
|
84
2590
|
}));
|
|
@@ -88,34 +2594,34 @@ var _excluded$d = ["size"];
|
|
|
88
2594
|
var GoogleCalendar = function GoogleCalendar(_ref) {
|
|
89
2595
|
var _ref$size = _ref.size,
|
|
90
2596
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
91
|
-
props =
|
|
2597
|
+
props = _objectWithoutProperties(_ref, _excluded$d);
|
|
92
2598
|
|
|
93
|
-
return /*#__PURE__*/
|
|
2599
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
94
2600
|
width: size,
|
|
95
2601
|
height: size,
|
|
96
2602
|
viewBox: "186 38 76 76"
|
|
97
|
-
}, props), /*#__PURE__*/
|
|
2603
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
98
2604
|
fill: "#fff",
|
|
99
2605
|
d: "M244 56h-40v40h40V56z"
|
|
100
|
-
}), /*#__PURE__*/
|
|
2606
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
101
2607
|
fill: "#EA4335",
|
|
102
2608
|
d: "m244 114 18-18h-18v18z"
|
|
103
|
-
}), /*#__PURE__*/
|
|
2609
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
104
2610
|
fill: "#FBBC04",
|
|
105
2611
|
d: "M262 56h-18v40h18V56z"
|
|
106
|
-
}), /*#__PURE__*/
|
|
2612
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
107
2613
|
fill: "#34A853",
|
|
108
2614
|
d: "M244 96h-40v18h40V96z"
|
|
109
|
-
}), /*#__PURE__*/
|
|
2615
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
110
2616
|
fill: "#188038",
|
|
111
2617
|
d: "M186 96v12c0 3.315 2.685 6 6 6h12V96h-18z"
|
|
112
|
-
}), /*#__PURE__*/
|
|
2618
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
113
2619
|
fill: "#1967D2",
|
|
114
2620
|
d: "M262 56V44c0-3.315-2.685-6-6-6h-12v18h18z"
|
|
115
|
-
}), /*#__PURE__*/
|
|
2621
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
116
2622
|
fill: "#4285F4",
|
|
117
2623
|
d: "M244 38h-52c-3.315 0-6 2.685-6 6v52h18V56h40V38z"
|
|
118
|
-
}), /*#__PURE__*/
|
|
2624
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
119
2625
|
fill: "#4285F4",
|
|
120
2626
|
d: "M212.205 87.03c-1.495-1.01-2.53-2.485-3.095-4.435l3.47-1.43c.315 1.2.865 2.13 1.65 2.79.78.66 1.73.985 2.84.985 1.135 0 2.11-.345 2.925-1.035s1.225-1.57 1.225-2.635c0-1.09-.43-1.98-1.29-2.67-.86-.69-1.94-1.035-3.23-1.035h-2.005V74.13h1.8c1.11 0 2.045-.3 2.805-.9.76-.6 1.14-1.42 1.14-2.465 0-.93-.34-1.67-1.02-2.225-.68-.555-1.54-.835-2.585-.835-1.02 0-1.83.27-2.43.815a4.784 4.784 0 0 0-1.31 2.005l-3.435-1.43c.455-1.29 1.29-2.43 2.515-3.415 1.225-.985 2.79-1.48 4.69-1.48 1.405 0 2.67.27 3.79.815 1.12.545 2 1.3 2.635 2.26.635.965.95 2.045.95 3.245 0 1.225-.295 2.26-.885 3.11-.59.85-1.315 1.5-2.175 1.955v.205a6.605 6.605 0 0 1 2.79 2.175c.725.975 1.09 2.14 1.09 3.5 0 1.36-.345 2.575-1.035 3.64s-1.645 1.905-2.855 2.515c-1.215.61-2.58.92-4.095.92-1.755.005-3.375-.5-4.87-1.51zm21.315-17.22-3.81 2.755-1.905-2.89 6.835-4.93h2.62V88h-3.74V69.81z"
|
|
121
2627
|
}));
|
|
@@ -125,34 +2631,34 @@ var _excluded$c = ["size"];
|
|
|
125
2631
|
var GoogleMeet = function GoogleMeet(_ref) {
|
|
126
2632
|
var _ref$size = _ref.size,
|
|
127
2633
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
128
|
-
props =
|
|
2634
|
+
props = _objectWithoutProperties(_ref, _excluded$c);
|
|
129
2635
|
|
|
130
|
-
return /*#__PURE__*/
|
|
2636
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
131
2637
|
width: size,
|
|
132
2638
|
height: size,
|
|
133
2639
|
viewBox: "0 0 48 48"
|
|
134
|
-
}, props), /*#__PURE__*/
|
|
2640
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
135
2641
|
fill: "#fff",
|
|
136
2642
|
d: "M12 32V16h16v16z"
|
|
137
|
-
}), /*#__PURE__*/
|
|
2643
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
138
2644
|
fill: "#1e88e5",
|
|
139
2645
|
d: "M3 17v14l5 1 5-1V17l-5-1z"
|
|
140
|
-
}), /*#__PURE__*/
|
|
2646
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
141
2647
|
fill: "#4caf50",
|
|
142
2648
|
d: "M37 24v14a3 3 0 0 1-3 3H13l-1-5 1-5h14v-7l5-1 5 1z"
|
|
143
|
-
}), /*#__PURE__*/
|
|
2649
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
144
2650
|
fill: "#fbc02d",
|
|
145
2651
|
d: "M37 10v14H27v-7H13l-1-5 1-5h21a3 3 0 0 1 3 3z"
|
|
146
|
-
}), /*#__PURE__*/
|
|
2652
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
147
2653
|
fill: "#1565c0",
|
|
148
2654
|
d: "M13 31v10H6a3 3 0 0 1-3-3v-7h10z"
|
|
149
|
-
}), /*#__PURE__*/
|
|
2655
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
150
2656
|
fill: "#e53935",
|
|
151
2657
|
d: "M13 7v10H3z"
|
|
152
|
-
}), /*#__PURE__*/
|
|
2658
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
153
2659
|
fill: "#2e7d32",
|
|
154
2660
|
d: "m38 24-1 8.45L27 24l10-8.45z"
|
|
155
|
-
}), /*#__PURE__*/
|
|
2661
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
156
2662
|
fill: "#4caf50",
|
|
157
2663
|
d: "M46 10.11v27.78c0 .84-.98 1.31-1.63.78L37 32.45v-16.9l7.37-6.22c.65-.53 1.63-.06 1.63.78z"
|
|
158
2664
|
}));
|
|
@@ -162,13 +2668,13 @@ var _excluded$b = ["size"];
|
|
|
162
2668
|
var Instagram = function Instagram(_ref) {
|
|
163
2669
|
var _ref$size = _ref.size,
|
|
164
2670
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
165
|
-
props =
|
|
2671
|
+
props = _objectWithoutProperties(_ref, _excluded$b);
|
|
166
2672
|
|
|
167
|
-
return /*#__PURE__*/
|
|
2673
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
168
2674
|
width: size,
|
|
169
2675
|
height: size,
|
|
170
2676
|
viewBox: "0 0 32 32"
|
|
171
|
-
}, props), /*#__PURE__*/
|
|
2677
|
+
}, props), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
|
172
2678
|
id: "Instagram_js__a",
|
|
173
2679
|
cx: 158.429,
|
|
174
2680
|
cy: 578.088,
|
|
@@ -177,31 +2683,31 @@ var Instagram = function Instagram(_ref) {
|
|
|
177
2683
|
fy: 578.088,
|
|
178
2684
|
gradientTransform: "matrix(0 -.48048 .447 0 -249.793 110.304)",
|
|
179
2685
|
gradientUnits: "userSpaceOnUse"
|
|
180
|
-
}, /*#__PURE__*/
|
|
2686
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
181
2687
|
offset: 0,
|
|
182
2688
|
style: {
|
|
183
2689
|
stopColor: "#fd5",
|
|
184
2690
|
stopOpacity: 1
|
|
185
2691
|
}
|
|
186
|
-
}), /*#__PURE__*/
|
|
2692
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
187
2693
|
offset: 0.1,
|
|
188
2694
|
style: {
|
|
189
2695
|
stopColor: "#fd5",
|
|
190
2696
|
stopOpacity: 1
|
|
191
2697
|
}
|
|
192
|
-
}), /*#__PURE__*/
|
|
2698
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
193
2699
|
offset: 0.5,
|
|
194
2700
|
style: {
|
|
195
2701
|
stopColor: "#ff543e",
|
|
196
2702
|
stopOpacity: 1
|
|
197
2703
|
}
|
|
198
|
-
}), /*#__PURE__*/
|
|
2704
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
199
2705
|
offset: 1,
|
|
200
2706
|
style: {
|
|
201
2707
|
stopColor: "#c837ab",
|
|
202
2708
|
stopOpacity: 1
|
|
203
2709
|
}
|
|
204
|
-
})), /*#__PURE__*/
|
|
2710
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
|
205
2711
|
id: "Instagram_js__b",
|
|
206
2712
|
cx: 147.694,
|
|
207
2713
|
cy: 473.455,
|
|
@@ -210,39 +2716,39 @@ var Instagram = function Instagram(_ref) {
|
|
|
210
2716
|
fy: 473.455,
|
|
211
2717
|
gradientTransform: "matrix(.04217 .2106 -.86831 .17386 399.843 -110.907)",
|
|
212
2718
|
gradientUnits: "userSpaceOnUse"
|
|
213
|
-
}, /*#__PURE__*/
|
|
2719
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
214
2720
|
offset: 0,
|
|
215
2721
|
style: {
|
|
216
2722
|
stopColor: "#3771c8",
|
|
217
2723
|
stopOpacity: 1
|
|
218
2724
|
}
|
|
219
|
-
}), /*#__PURE__*/
|
|
2725
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
220
2726
|
offset: 0.128,
|
|
221
2727
|
style: {
|
|
222
2728
|
stopColor: "#3771c8",
|
|
223
2729
|
stopOpacity: 1
|
|
224
2730
|
}
|
|
225
|
-
}), /*#__PURE__*/
|
|
2731
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
226
2732
|
offset: 1,
|
|
227
2733
|
style: {
|
|
228
2734
|
stopColor: "#60f",
|
|
229
2735
|
stopOpacity: 0
|
|
230
2736
|
}
|
|
231
|
-
}))), /*#__PURE__*/
|
|
2737
|
+
}))), /*#__PURE__*/React.createElement("path", {
|
|
232
2738
|
d: "M16.008.242c-6.578 0-8.504.008-8.88.04-1.347.109-2.19.323-3.105.78a6.21 6.21 0 0 0-1.808 1.325c-1 1.039-1.61 2.316-1.828 3.832-.106.738-.137.886-.145 4.652v5.121c0 6.574.008 8.496.04 8.871.109 1.313.316 2.14.753 3.043a6.635 6.635 0 0 0 4.3 3.516c.653.168 1.368.262 2.29.305.39.015 4.367.027 8.348.027 3.984 0 7.964-.004 8.343-.024 1.067-.05 1.688-.132 2.372-.308a6.615 6.615 0 0 0 4.304-3.524c.426-.882.645-1.742.742-2.988.02-.27.028-4.598.028-8.922 0-4.324-.008-8.644-.028-8.918-.101-1.265-.316-2.113-.761-3.015a6.185 6.185 0 0 0-1.348-1.848c-1.043-.996-2.316-1.602-3.836-1.82-.738-.106-.883-.137-4.652-.145Zm0 0",
|
|
233
2739
|
style: {
|
|
234
2740
|
stroke: "none",
|
|
235
2741
|
fillRule: "nonzero",
|
|
236
2742
|
fill: "url(#Instagram_js__a)"
|
|
237
2743
|
}
|
|
238
|
-
}), /*#__PURE__*/
|
|
2744
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
239
2745
|
d: "M16.008.242c-6.578 0-8.504.008-8.88.04-1.347.109-2.19.323-3.105.78a6.21 6.21 0 0 0-1.808 1.325c-1 1.039-1.61 2.316-1.828 3.832-.106.738-.137.886-.145 4.652v5.121c0 6.574.008 8.496.04 8.871.109 1.313.316 2.14.753 3.043a6.635 6.635 0 0 0 4.3 3.516c.653.168 1.368.262 2.29.305.39.015 4.367.027 8.348.027 3.984 0 7.964-.004 8.343-.024 1.067-.05 1.688-.132 2.372-.308a6.615 6.615 0 0 0 4.304-3.524c.426-.882.645-1.742.742-2.988.02-.27.028-4.598.028-8.922 0-4.324-.008-8.644-.028-8.918-.101-1.265-.316-2.113-.761-3.015a6.185 6.185 0 0 0-1.348-1.848c-1.043-.996-2.316-1.602-3.836-1.82-.738-.106-.883-.137-4.652-.145Zm0 0",
|
|
240
2746
|
style: {
|
|
241
2747
|
stroke: "none",
|
|
242
2748
|
fillRule: "nonzero",
|
|
243
2749
|
fill: "url(#Instagram_js__b)"
|
|
244
2750
|
}
|
|
245
|
-
}), /*#__PURE__*/
|
|
2751
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
246
2752
|
d: "M16 4.363c-3.16 0-3.555.016-4.797.07-1.238.06-2.086.255-2.824.54-.766.3-1.414.695-2.063 1.343A5.8 5.8 0 0 0 4.973 8.38c-.285.738-.485 1.586-.54 2.824-.054 1.238-.07 1.637-.07 4.797 0 3.16.016 3.555.07 4.797.06 1.238.255 2.086.54 2.824.3.766.695 1.414 1.343 2.063a5.8 5.8 0 0 0 2.063 1.343c.738.285 1.586.48 2.824.54 1.238.054 1.637.07 4.797.07 3.16 0 3.555-.016 4.797-.07 1.238-.06 2.086-.255 2.824-.54a5.8 5.8 0 0 0 2.063-1.343 5.736 5.736 0 0 0 1.34-2.063c.288-.738.484-1.586.542-2.824.055-1.242.07-1.637.07-4.797 0-3.16-.015-3.559-.07-4.797-.058-1.238-.253-2.086-.543-2.824a5.736 5.736 0 0 0-1.34-2.063 5.748 5.748 0 0 0-2.062-1.343c-.742-.285-1.586-.48-2.828-.54-1.238-.054-1.633-.07-4.797-.07Zm-1.043 2.098H16c3.11 0 3.477.012 4.703.066 1.133.051 1.75.243 2.16.403.543.21.93.46 1.336.867.41.41.66.797.871 1.34.16.41.352 1.027.403 2.16.054 1.226.066 1.594.066 4.7 0 3.105-.012 3.476-.066 4.702-.051 1.133-.243 1.75-.403 2.16-.21.543-.46.93-.87 1.336-.407.407-.794.66-1.337.871-.41.16-1.027.348-2.16.399-1.226.058-1.594.07-4.703.07-3.105 0-3.473-.012-4.7-.07-1.136-.05-1.753-.242-2.163-.399a3.603 3.603 0 0 1-1.336-.87 3.618 3.618 0 0 1-.871-1.34c-.16-.407-.348-1.024-.403-2.16-.054-1.227-.066-1.594-.066-4.7 0-3.11.012-3.476.066-4.703.055-1.133.243-1.75.403-2.16.21-.543.465-.93.87-1.336.407-.41.794-.66 1.337-.871.41-.16 1.027-.352 2.164-.403 1.07-.046 1.488-.062 3.656-.066Zm7.254 1.934a1.395 1.395 0 1 0 .002 2.795 1.395 1.395 0 0 0-.002-2.8ZM16 10.023A5.977 5.977 0 0 0 10.023 16c0 3.3 2.676 5.973 5.977 5.973 3.3 0 5.977-2.672 5.977-5.973 0-3.3-2.676-5.977-5.977-5.977Zm0 2.098a3.878 3.878 0 1 1 0 7.757 3.878 3.878 0 0 1 0-7.757Zm0 0",
|
|
247
2753
|
style: {
|
|
248
2754
|
stroke: "none",
|
|
@@ -257,9 +2763,9 @@ var _excluded$a = ["size"];
|
|
|
257
2763
|
var Linear = function Linear(_ref) {
|
|
258
2764
|
var _ref$size = _ref.size,
|
|
259
2765
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
260
|
-
props =
|
|
2766
|
+
props = _objectWithoutProperties(_ref, _excluded$a);
|
|
261
2767
|
|
|
262
|
-
return /*#__PURE__*/
|
|
2768
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
263
2769
|
xmlSpace: "preserve",
|
|
264
2770
|
width: size,
|
|
265
2771
|
height: size,
|
|
@@ -267,9 +2773,9 @@ var Linear = function Linear(_ref) {
|
|
|
267
2773
|
enableBackground: "new 0 0 50 50"
|
|
268
2774
|
},
|
|
269
2775
|
viewBox: "0 0 50 50"
|
|
270
|
-
}, props), /*#__PURE__*/
|
|
2776
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
271
2777
|
fill: "#5E6AD2"
|
|
272
|
-
}, /*#__PURE__*/
|
|
2778
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
273
2779
|
d: "M41.3 44c.5-.4.9-.8 1.3-1.3 9.8-9.8 9.8-25.6 0-35.4-9.8-9.8-25.6-9.8-35.4 0-.4.5-.8.9-1.2 1.4L41.3 44zM38.3 46.2 3.8 11.7c-.7 1.1-1.3 2.2-1.8 3.4L34.9 48c1.2-.5 2.3-1.1 3.4-1.8zM31.1 49.3.7 18.9c-.4 1.5-.6 3-.7 4.5L26.6 50c1.5-.1 3-.3 4.5-.7zM21.1 49.8.2 28.9c.8 5.1 3.1 9.9 7 13.9 4 3.8 8.9 6.2 13.9 7z"
|
|
274
2780
|
})));
|
|
275
2781
|
};
|
|
@@ -278,22 +2784,22 @@ var _excluded$9 = ["size"];
|
|
|
278
2784
|
var Microsoft = function Microsoft(_ref) {
|
|
279
2785
|
var _ref$size = _ref.size,
|
|
280
2786
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
281
|
-
props =
|
|
2787
|
+
props = _objectWithoutProperties(_ref, _excluded$9);
|
|
282
2788
|
|
|
283
|
-
return /*#__PURE__*/
|
|
2789
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
284
2790
|
viewBox: "0 0 200 200",
|
|
285
2791
|
width: size,
|
|
286
2792
|
height: size
|
|
287
|
-
}, props), /*#__PURE__*/
|
|
2793
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
288
2794
|
fill: "#F65314",
|
|
289
2795
|
d: "M20 20h80v80H20z"
|
|
290
|
-
}), /*#__PURE__*/
|
|
2796
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
291
2797
|
fill: "#7CBB00",
|
|
292
2798
|
d: "M120 20h80v80h-80z"
|
|
293
|
-
}), /*#__PURE__*/
|
|
2799
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
294
2800
|
fill: "#00A4EF",
|
|
295
2801
|
d: "M20 120h80v80H20z"
|
|
296
|
-
}), /*#__PURE__*/
|
|
2802
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
297
2803
|
fill: "#FB0",
|
|
298
2804
|
d: "M120 120h80v80h-80z"
|
|
299
2805
|
}));
|
|
@@ -303,27 +2809,27 @@ var _excluded$8 = ["size"];
|
|
|
303
2809
|
var Shopify = function Shopify(_ref) {
|
|
304
2810
|
var _ref$size = _ref.size,
|
|
305
2811
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
306
|
-
props =
|
|
2812
|
+
props = _objectWithoutProperties(_ref, _excluded$8);
|
|
307
2813
|
|
|
308
|
-
return /*#__PURE__*/
|
|
2814
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
309
2815
|
width: size,
|
|
310
2816
|
height: size,
|
|
311
2817
|
fill: "none",
|
|
312
2818
|
viewBox: "0 0 48 48"
|
|
313
|
-
}, props), /*#__PURE__*/
|
|
2819
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
314
2820
|
clipPath: "url(#Shopify_js__a)"
|
|
315
|
-
}, /*#__PURE__*/
|
|
2821
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
316
2822
|
fill: "#95BF47",
|
|
317
2823
|
d: "M39.851 9.363a.475.475 0 0 0-.423-.395c-.168-.028-3.877-.282-3.877-.282l-2.828-2.828c-.255-.282-.819-.2-1.032-.14-.027 0-.564.168-1.441.453-.853-2.468-2.363-4.73-5.022-4.73H25C24.239.455 23.306 0 22.518 0c-6.192.028-9.142 7.75-10.075 11.695l-4.328 1.328c-1.327.423-1.376.454-1.555 1.72L2.91 42.88 30.261 48l14.822-3.195c0-.028-5.205-35.173-5.232-35.441v-.001ZM28.733 6.645c-.687.227-1.472.454-2.317.709v-.51a11.274 11.274 0 0 0-.564-3.75c1.386.214 2.317 1.768 2.882 3.55v.001Zm-4.55-3.223a11.79 11.79 0 0 1 .619 4.145v.255L20.02 9.294c.936-3.495 2.662-5.222 4.162-5.873Zm-1.838-1.72c.283.006.558.094.791.254-1.995.929-4.104 3.275-5.008 7.97l-3.784 1.16c1.067-3.564 3.557-9.391 7.999-9.391l.002.007Z"
|
|
318
|
-
}), /*#__PURE__*/
|
|
2824
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
319
2825
|
fill: "#5E8E3E",
|
|
320
2826
|
d: "M39.43 8.968c-.169-.028-3.878-.282-3.878-.282l-2.827-2.828a.564.564 0 0 0-.395-.168L30.266 48l14.822-3.195-5.235-35.413a.51.51 0 0 0-.423-.423v-.001Z"
|
|
321
|
-
}), /*#__PURE__*/
|
|
2827
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
322
2828
|
fill: "#fff",
|
|
323
2829
|
d: "m25.231 17.168-1.84 5.431a8.522 8.522 0 0 0-3.564-.85c-2.886 0-3.027 1.81-3.027 2.264 0 2.473 6.477 3.423 6.477 9.25 0 4.582-2.914 7.522-6.825 7.522-4.695 0-7.1-2.914-7.1-2.914L10.6 33.71s2.46 2.122 4.555 2.122a1.853 1.853 0 0 0 1.923-1.867c0-3.255-5.317-3.395-5.317-8.714 0-4.471 3.223-8.827 9.7-8.827 2.546.037 3.764.742 3.764.742l.006.003Z"
|
|
324
|
-
})), /*#__PURE__*/
|
|
2830
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
325
2831
|
id: "Shopify_js__a"
|
|
326
|
-
}, /*#__PURE__*/
|
|
2832
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
327
2833
|
fill: "#fff",
|
|
328
2834
|
d: "M0 0h48v48H0z"
|
|
329
2835
|
}))));
|
|
@@ -333,29 +2839,29 @@ var _excluded$7 = ["size"];
|
|
|
333
2839
|
var Slack = function Slack(_ref) {
|
|
334
2840
|
var _ref$size = _ref.size,
|
|
335
2841
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
336
|
-
props =
|
|
2842
|
+
props = _objectWithoutProperties(_ref, _excluded$7);
|
|
337
2843
|
|
|
338
|
-
return /*#__PURE__*/
|
|
2844
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
339
2845
|
width: size,
|
|
340
2846
|
height: size,
|
|
341
2847
|
fill: "none",
|
|
342
2848
|
viewBox: "0 0 32 32"
|
|
343
|
-
}, props), /*#__PURE__*/
|
|
2849
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
344
2850
|
fill: "#36C5F0",
|
|
345
2851
|
fillRule: "evenodd",
|
|
346
2852
|
d: "M11.71 0a3.196 3.196 0 0 0-3.194 3.2 3.197 3.197 0 0 0 3.194 3.199h3.195V3.2A3.2 3.2 0 0 0 11.709 0c.002 0 .002 0 0 0Zm0 8.533H3.193A3.197 3.197 0 0 0 0 11.733a3.197 3.197 0 0 0 3.193 3.2h8.516a3.197 3.197 0 0 0 3.194-3.199 3.197 3.197 0 0 0-3.194-3.2Z",
|
|
347
2853
|
clipRule: "evenodd"
|
|
348
|
-
}), /*#__PURE__*/
|
|
2854
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
349
2855
|
fill: "#2EB67D",
|
|
350
2856
|
fillRule: "evenodd",
|
|
351
2857
|
d: "M31.935 11.733a3.197 3.197 0 0 0-3.194-3.2 3.197 3.197 0 0 0-3.195 3.2v3.2h3.195a3.197 3.197 0 0 0 3.194-3.2Zm-8.517 0V3.199A3.198 3.198 0 0 0 20.225 0a3.197 3.197 0 0 0-3.194 3.2v8.533a3.197 3.197 0 0 0 3.193 3.2 3.197 3.197 0 0 0 3.194-3.2Z",
|
|
352
2858
|
clipRule: "evenodd"
|
|
353
|
-
}), /*#__PURE__*/
|
|
2859
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
354
2860
|
fill: "#ECB22E",
|
|
355
2861
|
fillRule: "evenodd",
|
|
356
2862
|
d: "M20.225 32a3.197 3.197 0 0 0 3.194-3.2 3.197 3.197 0 0 0-3.194-3.199h-3.194v3.2a3.199 3.199 0 0 0 3.194 3.2Zm0-8.535h8.517a3.197 3.197 0 0 0 3.194-3.199 3.197 3.197 0 0 0-3.193-3.2h-8.516a3.197 3.197 0 0 0-3.194 3.199 3.196 3.196 0 0 0 3.192 3.2Z",
|
|
357
2863
|
clipRule: "evenodd"
|
|
358
|
-
}), /*#__PURE__*/
|
|
2864
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
359
2865
|
fill: "#E01E5A",
|
|
360
2866
|
fillRule: "evenodd",
|
|
361
2867
|
d: "M0 20.266a3.197 3.197 0 0 0 3.194 3.2 3.197 3.197 0 0 0 3.194-3.2v-3.2H3.194A3.197 3.197 0 0 0 0 20.266Zm8.516 0v8.533A3.197 3.197 0 0 0 11.71 32a3.197 3.197 0 0 0 3.194-3.198v-8.533a3.194 3.194 0 1 0-6.387-.003s0 .002 0 0Z",
|
|
@@ -367,19 +2873,19 @@ var _excluded$6 = ["size"];
|
|
|
367
2873
|
var Stripe = function Stripe(_ref) {
|
|
368
2874
|
var _ref$size = _ref.size,
|
|
369
2875
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
370
|
-
props =
|
|
2876
|
+
props = _objectWithoutProperties(_ref, _excluded$6);
|
|
371
2877
|
|
|
372
|
-
return /*#__PURE__*/
|
|
2878
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
373
2879
|
width: size,
|
|
374
2880
|
height: size,
|
|
375
2881
|
fill: "#6772e5",
|
|
376
2882
|
viewBox: "0 0 32 32"
|
|
377
|
-
}, props), /*#__PURE__*/
|
|
2883
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
378
2884
|
fillRule: "evenodd",
|
|
379
2885
|
d: "M111.328 15.602c0-4.97-2.415-8.9-7.013-8.9s-7.423 3.924-7.423 8.863c0 5.85 3.32 8.8 8.036 8.8 2.318 0 4.06-.528 5.377-1.26V19.22a10.246 10.246 0 0 1-4.764 1.075c-1.9 0-3.556-.67-3.774-2.943h9.497a39.64 39.64 0 0 0 .063-1.748zm-9.606-1.835c0-2.186 1.35-3.1 2.56-3.1s2.454.906 2.454 3.1zM89.4 6.712a5.434 5.434 0 0 0-3.801 1.509l-.254-1.208h-4.27v22.64l4.85-1.032v-5.488a5.434 5.434 0 0 0 3.444 1.265c3.472 0 6.64-2.792 6.64-8.957.003-5.66-3.206-8.73-6.614-8.73zM88.23 20.1a2.898 2.898 0 0 1-2.288-.906l-.03-7.2a2.928 2.928 0 0 1 2.315-.96c1.775 0 2.998 2 2.998 4.528.003 2.593-1.198 4.546-2.995 4.546zM79.25.57l-4.87 1.035v3.95l4.87-1.032z"
|
|
380
|
-
}), /*#__PURE__*/
|
|
2886
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
381
2887
|
d: "M74.38 7.035h4.87V24.04h-4.87z"
|
|
382
|
-
}), /*#__PURE__*/
|
|
2888
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
383
2889
|
fillRule: "evenodd",
|
|
384
2890
|
d: "m69.164 8.47-.302-1.434h-4.196V24.04h4.848V12.5c1.147-1.5 3.082-1.208 3.698-1.017V7.038c-.646-.232-2.913-.658-4.048 1.43zm-9.73-5.646L54.698 3.83l-.02 15.562c0 2.87 2.158 4.993 5.038 4.993 1.585 0 2.756-.302 3.405-.643v-3.95c-.622.248-3.683 1.138-3.683-1.72v-6.9h3.683V7.035h-3.683zM46.3 11.97c0-.758.63-1.05 1.648-1.05a10.868 10.868 0 0 1 4.83 1.25V7.6a12.815 12.815 0 0 0-4.83-.888c-3.924 0-6.557 2.056-6.557 5.488 0 5.37 7.375 4.498 7.375 6.813 0 .906-.78 1.186-1.863 1.186-1.606 0-3.68-.664-5.307-1.55v4.63a13.461 13.461 0 0 0 5.307 1.117c4.033 0 6.813-1.992 6.813-5.485 0-5.796-7.417-4.76-7.417-6.943zM13.88 9.515c0-1.37 1.14-1.9 2.982-1.9A19.661 19.661 0 0 1 25.6 9.876v-8.27A23.184 23.184 0 0 0 16.862.001C9.762.001 5 3.72 5 9.93c0 9.716 13.342 8.138 13.342 12.326 0 1.638-1.4 2.146-3.37 2.146-2.905 0-6.657-1.202-9.6-2.802v8.378A24.353 24.353 0 0 0 14.973 32C22.27 32 27.3 28.395 27.3 22.077c0-10.486-13.42-8.613-13.42-12.56z"
|
|
385
2891
|
}));
|
|
@@ -389,137 +2895,137 @@ var _excluded$5 = ["size"];
|
|
|
389
2895
|
var Teams = function Teams(_ref) {
|
|
390
2896
|
var _ref$size = _ref.size,
|
|
391
2897
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
392
|
-
props =
|
|
2898
|
+
props = _objectWithoutProperties(_ref, _excluded$5);
|
|
393
2899
|
|
|
394
|
-
return /*#__PURE__*/
|
|
2900
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
395
2901
|
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
396
2902
|
width: size,
|
|
397
2903
|
height: size,
|
|
398
2904
|
viewBox: "0 0 32 30"
|
|
399
|
-
}, props), /*#__PURE__*/
|
|
2905
|
+
}, props), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
400
2906
|
id: "Teams_js__b"
|
|
401
|
-
}, /*#__PURE__*/
|
|
2907
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
402
2908
|
d: "M0 0h32v30H0z"
|
|
403
|
-
})), /*#__PURE__*/
|
|
2909
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
404
2910
|
id: "Teams_js__c"
|
|
405
|
-
}, /*#__PURE__*/
|
|
2911
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
406
2912
|
d: "M0 0h32v30H0z"
|
|
407
|
-
})), /*#__PURE__*/
|
|
2913
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
408
2914
|
id: "Teams_js__d"
|
|
409
|
-
}, /*#__PURE__*/
|
|
2915
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
410
2916
|
d: "M0 0h32v30H0z"
|
|
411
|
-
})), /*#__PURE__*/
|
|
2917
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
412
2918
|
id: "Teams_js__e"
|
|
413
|
-
}, /*#__PURE__*/
|
|
2919
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
414
2920
|
d: "M0 0h32v30H0z"
|
|
415
|
-
})), /*#__PURE__*/
|
|
2921
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
416
2922
|
id: "Teams_js__f"
|
|
417
|
-
}, /*#__PURE__*/
|
|
2923
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
418
2924
|
d: "M0 0h32v30H0z"
|
|
419
|
-
})), /*#__PURE__*/
|
|
2925
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
420
2926
|
id: "Teams_js__g"
|
|
421
|
-
}, /*#__PURE__*/
|
|
2927
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
422
2928
|
d: "M0 0h32v30H0z"
|
|
423
|
-
})), /*#__PURE__*/
|
|
2929
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
424
2930
|
id: "Teams_js__h"
|
|
425
|
-
}, /*#__PURE__*/
|
|
2931
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
426
2932
|
d: "M0 0h32v30H0z"
|
|
427
|
-
})), /*#__PURE__*/
|
|
2933
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
428
2934
|
id: "Teams_js__i"
|
|
429
|
-
}, /*#__PURE__*/
|
|
2935
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
430
2936
|
d: "M0 0h32v30H0z"
|
|
431
|
-
})), /*#__PURE__*/
|
|
2937
|
+
})), /*#__PURE__*/React.createElement("mask", {
|
|
432
2938
|
id: "Teams_js__k"
|
|
433
|
-
}, /*#__PURE__*/
|
|
2939
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
434
2940
|
filter: "url(#Teams_js__a)"
|
|
435
|
-
}, /*#__PURE__*/
|
|
2941
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
436
2942
|
d: "M0 0h32v30H0z",
|
|
437
2943
|
style: {
|
|
438
2944
|
fill: "#000",
|
|
439
2945
|
fillOpacity: 0.101961,
|
|
440
2946
|
stroke: "none"
|
|
441
2947
|
}
|
|
442
|
-
}))), /*#__PURE__*/
|
|
2948
|
+
}))), /*#__PURE__*/React.createElement("mask", {
|
|
443
2949
|
id: "Teams_js__m"
|
|
444
|
-
}, /*#__PURE__*/
|
|
2950
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
445
2951
|
filter: "url(#Teams_js__a)"
|
|
446
|
-
}, /*#__PURE__*/
|
|
2952
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
447
2953
|
d: "M0 0h32v30H0z",
|
|
448
2954
|
style: {
|
|
449
2955
|
fill: "#000",
|
|
450
2956
|
fillOpacity: 0.2,
|
|
451
2957
|
stroke: "none"
|
|
452
2958
|
}
|
|
453
|
-
}))), /*#__PURE__*/
|
|
2959
|
+
}))), /*#__PURE__*/React.createElement("mask", {
|
|
454
2960
|
id: "Teams_js__o"
|
|
455
|
-
}, /*#__PURE__*/
|
|
2961
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
456
2962
|
filter: "url(#Teams_js__a)"
|
|
457
|
-
}, /*#__PURE__*/
|
|
2963
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
458
2964
|
d: "M0 0h32v30H0z",
|
|
459
2965
|
style: {
|
|
460
2966
|
fill: "#000",
|
|
461
2967
|
fillOpacity: 0.2,
|
|
462
2968
|
stroke: "none"
|
|
463
2969
|
}
|
|
464
|
-
}))), /*#__PURE__*/
|
|
2970
|
+
}))), /*#__PURE__*/React.createElement("mask", {
|
|
465
2971
|
id: "Teams_js__q"
|
|
466
|
-
}, /*#__PURE__*/
|
|
2972
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
467
2973
|
filter: "url(#Teams_js__a)"
|
|
468
|
-
}, /*#__PURE__*/
|
|
2974
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
469
2975
|
d: "M0 0h32v30H0z",
|
|
470
2976
|
style: {
|
|
471
2977
|
fill: "#000",
|
|
472
2978
|
fillOpacity: 0.2,
|
|
473
2979
|
stroke: "none"
|
|
474
2980
|
}
|
|
475
|
-
}))), /*#__PURE__*/
|
|
2981
|
+
}))), /*#__PURE__*/React.createElement("mask", {
|
|
476
2982
|
id: "Teams_js__s"
|
|
477
|
-
}, /*#__PURE__*/
|
|
2983
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
478
2984
|
filter: "url(#Teams_js__a)"
|
|
479
|
-
}, /*#__PURE__*/
|
|
2985
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
480
2986
|
d: "M0 0h32v30H0z",
|
|
481
2987
|
style: {
|
|
482
2988
|
fill: "#000",
|
|
483
2989
|
fillOpacity: 0.101961,
|
|
484
2990
|
stroke: "none"
|
|
485
2991
|
}
|
|
486
|
-
}))), /*#__PURE__*/
|
|
2992
|
+
}))), /*#__PURE__*/React.createElement("mask", {
|
|
487
2993
|
id: "Teams_js__u"
|
|
488
|
-
}, /*#__PURE__*/
|
|
2994
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
489
2995
|
filter: "url(#Teams_js__a)"
|
|
490
|
-
}, /*#__PURE__*/
|
|
2996
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
491
2997
|
d: "M0 0h32v30H0z",
|
|
492
2998
|
style: {
|
|
493
2999
|
fill: "#000",
|
|
494
3000
|
fillOpacity: 0.2,
|
|
495
3001
|
stroke: "none"
|
|
496
3002
|
}
|
|
497
|
-
}))), /*#__PURE__*/
|
|
3003
|
+
}))), /*#__PURE__*/React.createElement("mask", {
|
|
498
3004
|
id: "Teams_js__w"
|
|
499
|
-
}, /*#__PURE__*/
|
|
3005
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
500
3006
|
filter: "url(#Teams_js__a)"
|
|
501
|
-
}, /*#__PURE__*/
|
|
3007
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
502
3008
|
d: "M0 0h32v30H0z",
|
|
503
3009
|
style: {
|
|
504
3010
|
fill: "#000",
|
|
505
3011
|
fillOpacity: 0.2,
|
|
506
3012
|
stroke: "none"
|
|
507
3013
|
}
|
|
508
|
-
}))), /*#__PURE__*/
|
|
3014
|
+
}))), /*#__PURE__*/React.createElement("mask", {
|
|
509
3015
|
id: "Teams_js__y"
|
|
510
|
-
}, /*#__PURE__*/
|
|
3016
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
511
3017
|
filter: "url(#Teams_js__a)"
|
|
512
|
-
}, /*#__PURE__*/
|
|
3018
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
513
3019
|
d: "M0 0h32v30H0z",
|
|
514
3020
|
style: {
|
|
515
3021
|
fill: "#000",
|
|
516
3022
|
fillOpacity: 0.2,
|
|
517
3023
|
stroke: "none"
|
|
518
3024
|
}
|
|
519
|
-
}))), /*#__PURE__*/
|
|
3025
|
+
}))), /*#__PURE__*/React.createElement("g", {
|
|
520
3026
|
id: "Teams_js__j",
|
|
521
3027
|
clipPath: "url(#Teams_js__b)"
|
|
522
|
-
}, /*#__PURE__*/
|
|
3028
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
523
3029
|
d: "M17.86 11.25v12.129a1.376 1.376 0 0 1-1.36 1.371H9.586a8.491 8.491 0 0 1-.258-.75 9.114 9.114 0 0 1-.394-2.656V12.69a1.401 1.401 0 0 1 1.359-1.441Zm0 0",
|
|
524
3030
|
style: {
|
|
525
3031
|
stroke: "none",
|
|
@@ -527,10 +3033,10 @@ var Teams = function Teams(_ref) {
|
|
|
527
3033
|
fill: "#000",
|
|
528
3034
|
fillOpacity: 1
|
|
529
3035
|
}
|
|
530
|
-
})), /*#__PURE__*/
|
|
3036
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
531
3037
|
id: "Teams_js__l",
|
|
532
3038
|
clipPath: "url(#Teams_js__c)"
|
|
533
|
-
}, /*#__PURE__*/
|
|
3039
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
534
3040
|
d: "M17.117 11.25v12.879c0 .176-.035.351-.105.516a1.37 1.37 0 0 1-1.258.855H9.938a9.325 9.325 0 0 1-.352-.75 8.112 8.112 0 0 1-.258-.75 9.114 9.114 0 0 1-.394-2.656V12.69a1.401 1.401 0 0 1 1.359-1.441Zm0 0",
|
|
535
3041
|
style: {
|
|
536
3042
|
stroke: "none",
|
|
@@ -538,10 +3044,10 @@ var Teams = function Teams(_ref) {
|
|
|
538
3044
|
fill: "#000",
|
|
539
3045
|
fillOpacity: 1
|
|
540
3046
|
}
|
|
541
|
-
})), /*#__PURE__*/
|
|
3047
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
542
3048
|
id: "Teams_js__n",
|
|
543
3049
|
clipPath: "url(#Teams_js__d)"
|
|
544
|
-
}, /*#__PURE__*/
|
|
3050
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
545
3051
|
d: "M17.117 11.25v11.379A1.379 1.379 0 0 1 15.754 24H9.328a9.114 9.114 0 0 1-.394-2.656V12.69a1.401 1.401 0 0 1 1.359-1.441Zm0 0",
|
|
546
3052
|
style: {
|
|
547
3053
|
stroke: "none",
|
|
@@ -549,10 +3055,10 @@ var Teams = function Teams(_ref) {
|
|
|
549
3055
|
fill: "#000",
|
|
550
3056
|
fillOpacity: 1
|
|
551
3057
|
}
|
|
552
|
-
})), /*#__PURE__*/
|
|
3058
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
553
3059
|
id: "Teams_js__p",
|
|
554
3060
|
clipPath: "url(#Teams_js__e)"
|
|
555
|
-
}, /*#__PURE__*/
|
|
3061
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
556
3062
|
d: "M16.371 11.25v11.379A1.373 1.373 0 0 1 15.011 24H9.329a9.114 9.114 0 0 1-.394-2.656V12.69a1.401 1.401 0 0 1 1.359-1.441Zm0 0",
|
|
557
3063
|
style: {
|
|
558
3064
|
stroke: "none",
|
|
@@ -560,10 +3066,10 @@ var Teams = function Teams(_ref) {
|
|
|
560
3066
|
fill: "#000",
|
|
561
3067
|
fillOpacity: 1
|
|
562
3068
|
}
|
|
563
|
-
})), /*#__PURE__*/
|
|
3069
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
564
3070
|
id: "Teams_js__r",
|
|
565
3071
|
clipPath: "url(#Teams_js__f)"
|
|
566
|
-
}, /*#__PURE__*/
|
|
3072
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
567
3073
|
d: "M17.86 7.371v2.363c-.126.008-.247.016-.372.016s-.246-.008-.37-.016a3.716 3.716 0 0 1-.747-.12A4.848 4.848 0 0 1 12.785 6H16.5c.75.004 1.355.617 1.36 1.371Zm0 0",
|
|
568
3074
|
style: {
|
|
569
3075
|
stroke: "none",
|
|
@@ -571,10 +3077,10 @@ var Teams = function Teams(_ref) {
|
|
|
571
3077
|
fill: "#000",
|
|
572
3078
|
fillOpacity: 1
|
|
573
3079
|
}
|
|
574
|
-
})), /*#__PURE__*/
|
|
3080
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
575
3081
|
id: "Teams_js__t",
|
|
576
3082
|
clipPath: "url(#Teams_js__g)"
|
|
577
|
-
}, /*#__PURE__*/
|
|
3083
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
578
3084
|
d: "M17.117 8.121v1.613a3.716 3.716 0 0 1-.746-.12 4.848 4.848 0 0 1-3.348-2.864h2.73c.75.004 1.36.617 1.364 1.371Zm0 0",
|
|
579
3085
|
style: {
|
|
580
3086
|
stroke: "none",
|
|
@@ -582,10 +3088,10 @@ var Teams = function Teams(_ref) {
|
|
|
582
3088
|
fill: "#000",
|
|
583
3089
|
fillOpacity: 1
|
|
584
3090
|
}
|
|
585
|
-
})), /*#__PURE__*/
|
|
3091
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
586
3092
|
id: "Teams_js__v",
|
|
587
3093
|
clipPath: "url(#Teams_js__h)"
|
|
588
|
-
}, /*#__PURE__*/
|
|
3094
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
589
3095
|
d: "M17.117 8.121v1.613a3.716 3.716 0 0 1-.746-.12 4.848 4.848 0 0 1-3.348-2.864h2.73c.75.004 1.36.617 1.364 1.371Zm0 0",
|
|
590
3096
|
style: {
|
|
591
3097
|
stroke: "none",
|
|
@@ -593,10 +3099,10 @@ var Teams = function Teams(_ref) {
|
|
|
593
3099
|
fill: "#000",
|
|
594
3100
|
fillOpacity: 1
|
|
595
3101
|
}
|
|
596
|
-
})), /*#__PURE__*/
|
|
3102
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
597
3103
|
id: "Teams_js__x",
|
|
598
3104
|
clipPath: "url(#Teams_js__i)"
|
|
599
|
-
}, /*#__PURE__*/
|
|
3105
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
600
3106
|
d: "M16.371 8.121v1.492a4.848 4.848 0 0 1-3.348-2.863h1.989a1.37 1.37 0 0 1 1.36 1.371Zm0 0",
|
|
601
3107
|
style: {
|
|
602
3108
|
stroke: "none",
|
|
@@ -604,7 +3110,7 @@ var Teams = function Teams(_ref) {
|
|
|
604
3110
|
fill: "#000",
|
|
605
3111
|
fillOpacity: 1
|
|
606
3112
|
}
|
|
607
|
-
})), /*#__PURE__*/
|
|
3113
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
608
3114
|
id: "Teams_js__z",
|
|
609
3115
|
x1: 198.099,
|
|
610
3116
|
x2: 942.234,
|
|
@@ -612,35 +3118,35 @@ var Teams = function Teams(_ref) {
|
|
|
612
3118
|
y2: 394.261,
|
|
613
3119
|
gradientTransform: "matrix(.01435 0 0 -.01447 .004 30.029)",
|
|
614
3120
|
gradientUnits: "userSpaceOnUse"
|
|
615
|
-
}, /*#__PURE__*/
|
|
3121
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
616
3122
|
offset: 0,
|
|
617
3123
|
style: {
|
|
618
3124
|
stopColor: "#5a62c3",
|
|
619
3125
|
stopOpacity: 1
|
|
620
3126
|
}
|
|
621
|
-
}), /*#__PURE__*/
|
|
3127
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
622
3128
|
offset: 0.5,
|
|
623
3129
|
style: {
|
|
624
3130
|
stopColor: "#4d55bd",
|
|
625
3131
|
stopOpacity: 1
|
|
626
3132
|
}
|
|
627
|
-
}), /*#__PURE__*/
|
|
3133
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
628
3134
|
offset: 1,
|
|
629
3135
|
style: {
|
|
630
3136
|
stopColor: "#3940ab",
|
|
631
3137
|
stopOpacity: 1
|
|
632
3138
|
}
|
|
633
|
-
})), /*#__PURE__*/
|
|
3139
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
634
3140
|
id: "Teams_js__a",
|
|
635
3141
|
width: "100%",
|
|
636
3142
|
height: "100%",
|
|
637
3143
|
x: "0%",
|
|
638
3144
|
y: "0%",
|
|
639
3145
|
filterUnits: "objectBoundingBox"
|
|
640
|
-
}, /*#__PURE__*/
|
|
3146
|
+
}, /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
641
3147
|
in: "SourceGraphic",
|
|
642
3148
|
values: "0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
|
|
643
|
-
}))), /*#__PURE__*/
|
|
3149
|
+
}))), /*#__PURE__*/React.createElement("path", {
|
|
644
3150
|
d: "M22.32 11.25h8.262c.781 0 1.414.637 1.414 1.426v7.586c0 2.894-2.324 5.238-5.195 5.238h-.024c-2.87 0-5.195-2.344-5.199-5.238v-8.266a.745.745 0 0 1 .742-.746ZM31.254 6.375c0 1.863-1.5 3.375-3.352 3.375-1.847 0-3.347-1.512-3.347-3.375S26.055 3 27.902 3c1.852 0 3.352 1.512 3.352 3.375Zm0 0",
|
|
645
3151
|
style: {
|
|
646
3152
|
stroke: "none",
|
|
@@ -648,7 +3154,7 @@ var Teams = function Teams(_ref) {
|
|
|
648
3154
|
fill: "#5059c9",
|
|
649
3155
|
fillOpacity: 1
|
|
650
3156
|
}
|
|
651
|
-
}), /*#__PURE__*/
|
|
3157
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
652
3158
|
d: "M22.324 4.875c0 2.691-2.164 4.875-4.836 4.875s-4.836-2.184-4.836-4.875S14.816 0 17.488 0s4.836 2.184 4.836 4.875ZM23.938 11.25H10.296a1.402 1.402 0 0 0-1.363 1.441v8.657c-.11 4.664 3.554 8.539 8.183 8.652 4.63-.113 8.29-3.988 8.184-8.652V12.69a1.407 1.407 0 0 0-1.363-1.441Zm0 0",
|
|
653
3159
|
style: {
|
|
654
3160
|
stroke: "none",
|
|
@@ -656,38 +3162,38 @@ var Teams = function Teams(_ref) {
|
|
|
656
3162
|
fill: "#7b83eb",
|
|
657
3163
|
fillOpacity: 1
|
|
658
3164
|
}
|
|
659
|
-
}), /*#__PURE__*/
|
|
3165
|
+
}), /*#__PURE__*/React.createElement("use", {
|
|
660
3166
|
xlinkHref: "#Teams_js__j",
|
|
661
3167
|
mask: "url(#Teams_js__k)"
|
|
662
|
-
}), /*#__PURE__*/
|
|
3168
|
+
}), /*#__PURE__*/React.createElement("use", {
|
|
663
3169
|
xlinkHref: "#Teams_js__l",
|
|
664
3170
|
mask: "url(#Teams_js__m)"
|
|
665
|
-
}), /*#__PURE__*/
|
|
3171
|
+
}), /*#__PURE__*/React.createElement("use", {
|
|
666
3172
|
xlinkHref: "#Teams_js__n",
|
|
667
3173
|
mask: "url(#Teams_js__o)"
|
|
668
|
-
}), /*#__PURE__*/
|
|
3174
|
+
}), /*#__PURE__*/React.createElement("use", {
|
|
669
3175
|
xlinkHref: "#Teams_js__p",
|
|
670
3176
|
mask: "url(#Teams_js__q)"
|
|
671
|
-
}), /*#__PURE__*/
|
|
3177
|
+
}), /*#__PURE__*/React.createElement("use", {
|
|
672
3178
|
xlinkHref: "#Teams_js__r",
|
|
673
3179
|
mask: "url(#Teams_js__s)"
|
|
674
|
-
}), /*#__PURE__*/
|
|
3180
|
+
}), /*#__PURE__*/React.createElement("use", {
|
|
675
3181
|
xlinkHref: "#Teams_js__t",
|
|
676
3182
|
mask: "url(#Teams_js__u)"
|
|
677
|
-
}), /*#__PURE__*/
|
|
3183
|
+
}), /*#__PURE__*/React.createElement("use", {
|
|
678
3184
|
xlinkHref: "#Teams_js__v",
|
|
679
3185
|
mask: "url(#Teams_js__w)"
|
|
680
|
-
}), /*#__PURE__*/
|
|
3186
|
+
}), /*#__PURE__*/React.createElement("use", {
|
|
681
3187
|
xlinkHref: "#Teams_js__x",
|
|
682
3188
|
mask: "url(#Teams_js__y)"
|
|
683
|
-
}), /*#__PURE__*/
|
|
3189
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
684
3190
|
d: "M1.367 6.75h13.64a1.37 1.37 0 0 1 1.364 1.375v13.75a1.37 1.37 0 0 1-1.363 1.375H1.368a1.37 1.37 0 0 1-1.364-1.375V8.125c0-.758.61-1.375 1.363-1.375Zm0 0",
|
|
685
3191
|
style: {
|
|
686
3192
|
stroke: "none",
|
|
687
3193
|
fillRule: "nonzero",
|
|
688
3194
|
fill: "url(#Teams_js__z)"
|
|
689
3195
|
}
|
|
690
|
-
}), /*#__PURE__*/
|
|
3196
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
691
3197
|
d: "M11.777 11.984H9.051v7.485H7.312v-7.485H4.598v-1.453h7.18Zm0 0",
|
|
692
3198
|
style: {
|
|
693
3199
|
stroke: "none",
|
|
@@ -702,14 +3208,14 @@ var _excluded$4 = ["size"];
|
|
|
702
3208
|
var Twilio = function Twilio(_ref) {
|
|
703
3209
|
var _ref$size = _ref.size,
|
|
704
3210
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
705
|
-
props =
|
|
3211
|
+
props = _objectWithoutProperties(_ref, _excluded$4);
|
|
706
3212
|
|
|
707
|
-
return /*#__PURE__*/
|
|
3213
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
708
3214
|
width: size,
|
|
709
3215
|
height: size,
|
|
710
3216
|
fill: "#F22F46",
|
|
711
3217
|
viewBox: "0 0 30 30"
|
|
712
|
-
}, props), /*#__PURE__*/
|
|
3218
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
713
3219
|
d: "M15 0C6.7 0 0 6.7 0 15s6.7 15 15 15 15-6.7 15-15S23.3 0 15 0zm0 26C8.9 26 4 21.1 4 15S8.9 4 15 4s11 4.9 11 11-4.9 11-11 11zm6.8-14.7c0 1.7-1.4 3.1-3.1 3.1s-3.1-1.4-3.1-3.1 1.4-3.1 3.1-3.1 3.1 1.4 3.1 3.1zm0 7.4c0 1.7-1.4 3.1-3.1 3.1s-3.1-1.4-3.1-3.1c0-1.7 1.4-3.1 3.1-3.1s3.1 1.4 3.1 3.1zm-7.4 0c0 1.7-1.4 3.1-3.1 3.1s-3.1-1.4-3.1-3.1c0-1.7 1.4-3.1 3.1-3.1s3.1 1.4 3.1 3.1zm0-7.4c0 1.7-1.4 3.1-3.1 3.1S8.2 13 8.2 11.3s1.4-3.1 3.1-3.1 3.1 1.4 3.1 3.1z"
|
|
714
3220
|
}));
|
|
715
3221
|
};
|
|
@@ -718,13 +3224,13 @@ var _excluded$3 = ["size"];
|
|
|
718
3224
|
var Whatsapp = function Whatsapp(_ref) {
|
|
719
3225
|
var _ref$size = _ref.size,
|
|
720
3226
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
721
|
-
props =
|
|
3227
|
+
props = _objectWithoutProperties(_ref, _excluded$3);
|
|
722
3228
|
|
|
723
|
-
return /*#__PURE__*/
|
|
3229
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
724
3230
|
width: size,
|
|
725
3231
|
height: size,
|
|
726
3232
|
viewBox: "0 0 48 48"
|
|
727
|
-
}, props), /*#__PURE__*/
|
|
3233
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
728
3234
|
d: "m1.68 46.52 3.144-11.473a22.093 22.093 0 0 1-2.96-11.07c.007-12.211 9.94-22.145 22.152-22.145 5.925.004 11.488 2.309 15.668 6.496 4.183 4.184 6.484 9.746 6.484 15.664-.004 12.211-9.945 22.145-22.152 22.145h-.008c-3.707 0-7.352-.93-10.586-2.696Zm0 0",
|
|
729
3235
|
style: {
|
|
730
3236
|
stroke: "none",
|
|
@@ -732,7 +3238,7 @@ var Whatsapp = function Whatsapp(_ref) {
|
|
|
732
3238
|
fill: "#fff",
|
|
733
3239
|
fillOpacity: 1
|
|
734
3240
|
}
|
|
735
|
-
}), /*#__PURE__*/
|
|
3241
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
736
3242
|
d: "M1.68 47.105a.587.587 0 0 1-.563-.738l3.078-11.242a22.773 22.773 0 0 1-2.914-11.148C1.29 11.445 11.484 1.25 24.016 1.25c6.078.004 11.789 2.371 16.082 6.664 4.293 4.297 6.656 10.008 6.652 16.078-.004 12.531-10.203 22.727-22.734 22.727-3.72 0-7.403-.918-10.668-2.657l-11.52 3.02a.49.49 0 0 1-.148.023Zm0 0",
|
|
737
3243
|
style: {
|
|
738
3244
|
stroke: "none",
|
|
@@ -740,7 +3246,7 @@ var Whatsapp = function Whatsapp(_ref) {
|
|
|
740
3246
|
fill: "#fff",
|
|
741
3247
|
fillOpacity: 1
|
|
742
3248
|
}
|
|
743
|
-
}), /*#__PURE__*/
|
|
3249
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
744
3250
|
d: "M24.016 1.832c5.925.004 11.488 2.309 15.668 6.496 4.183 4.184 6.484 9.746 6.484 15.664-.004 12.211-9.945 22.145-22.152 22.145h-.008c-3.707 0-7.352-.93-10.586-2.696L1.68 46.52l3.144-11.473a22.093 22.093 0 0 1-2.96-11.07c.007-12.211 9.94-22.145 22.152-22.145M24.016.668C11.164.668.703 11.121.699 23.977A23.31 23.31 0 0 0 3.57 35.203L.555 46.215c-.11.402 0 .832.297 1.125a1.15 1.15 0 0 0 1.125.308l11.3-2.96a23.37 23.37 0 0 0 10.73 2.617c12.86 0 23.321-10.457 23.329-23.309 0-6.23-2.422-12.086-6.824-16.492A23.167 23.167 0 0 0 24.016.668Zm0 0",
|
|
745
3251
|
style: {
|
|
746
3252
|
stroke: "none",
|
|
@@ -748,7 +3254,7 @@ var Whatsapp = function Whatsapp(_ref) {
|
|
|
748
3254
|
fill: "#cfd8dc",
|
|
749
3255
|
fillOpacity: 1
|
|
750
3256
|
}
|
|
751
|
-
}), /*#__PURE__*/
|
|
3257
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
752
3258
|
d: "M37.04 10.969a18.287 18.287 0 0 0-13.017-5.395c-10.156 0-18.414 8.254-18.418 18.403a18.344 18.344 0 0 0 2.813 9.796l.441.696-1.863 6.793 6.969-1.828.676.398a18.414 18.414 0 0 0 9.367 2.566h.008c10.148 0 18.406-8.257 18.41-18.406 0-4.918-1.91-9.543-5.387-13.023Zm0 0",
|
|
753
3259
|
style: {
|
|
754
3260
|
stroke: "none",
|
|
@@ -756,7 +3262,7 @@ var Whatsapp = function Whatsapp(_ref) {
|
|
|
756
3262
|
fill: "#40c351",
|
|
757
3263
|
fillOpacity: 1
|
|
758
3264
|
}
|
|
759
|
-
}), /*#__PURE__*/
|
|
3265
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
760
3266
|
d: "M18.48 14.719c-.414-.922-.851-.942-1.246-.957-.324-.012-.691-.012-1.062-.012-.367 0-.969.137-1.477.691-.504.555-1.937 1.895-1.937 4.618 0 2.722 1.984 5.355 2.262 5.722.277.371 3.828 6.137 9.453 8.356 4.675 1.843 5.629 1.476 6.644 1.383 1.012-.09 3.274-1.336 3.735-2.63.46-1.292.46-2.398.324-2.632-.14-.23-.508-.367-1.063-.645-.55-.277-3.273-1.617-3.781-1.8-.508-.184-.875-.278-1.246.277-.367.555-1.43 1.8-1.754 2.168-.32.37-.645.418-1.2.14-.55-.277-2.335-.859-4.448-2.746-1.645-1.468-2.758-3.277-3.079-3.832-.324-.554-.035-.855.243-1.129.246-.25.55-.648.828-.972.277-.32.37-.551.554-.922.184-.367.094-.692-.046-.969-.137-.277-1.211-3.015-1.704-4.11Zm0 0",
|
|
761
3267
|
style: {
|
|
762
3268
|
stroke: "none",
|
|
@@ -771,20 +3277,20 @@ var _excluded$2 = ["size"];
|
|
|
771
3277
|
var Wordpress = function Wordpress(_ref) {
|
|
772
3278
|
var _ref$size = _ref.size,
|
|
773
3279
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
774
|
-
props =
|
|
3280
|
+
props = _objectWithoutProperties(_ref, _excluded$2);
|
|
775
3281
|
|
|
776
|
-
return /*#__PURE__*/
|
|
3282
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
777
3283
|
width: size,
|
|
778
3284
|
height: size,
|
|
779
3285
|
fill: "none",
|
|
780
3286
|
viewBox: "0 0 48 48"
|
|
781
|
-
}, props), /*#__PURE__*/
|
|
3287
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
782
3288
|
fill: "#464342",
|
|
783
3289
|
d: "M3.41 24c0 8.149 4.736 15.192 11.604 18.529L5.193 15.62A20.51 20.51 0 0 0 3.41 24Zm34.488-1.04c0-2.544-.914-4.306-1.698-5.678-1.044-1.696-2.022-3.132-2.022-4.828 0-1.893 1.436-3.654 3.457-3.654.092 0 .178.011.267.016A20.513 20.513 0 0 0 24 3.411c-7.193 0-13.521 3.69-17.202 9.28.483.015.938.025 1.325.025 2.153 0 5.486-.261 5.486-.261 1.11-.066 1.241 1.565.133 1.696 0 0-1.116.131-2.357.196l7.498 22.301 4.505-13.513-3.207-8.789a37.569 37.569 0 0 1-2.16-.196c-1.109-.065-.979-1.761.13-1.696 0 0 3.4.261 5.424.261 2.153 0 5.487-.26 5.487-.26 1.11-.066 1.241 1.564.132 1.695 0 0-1.118.131-2.357.196l7.44 22.133 2.054-6.863c.89-2.848 1.568-4.893 1.568-6.655Z"
|
|
784
|
-
}), /*#__PURE__*/
|
|
3290
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
785
3291
|
fill: "#464342",
|
|
786
3292
|
d: "m24.36 25.8-6.176 17.95a20.588 20.588 0 0 0 12.653-.328 1.8 1.8 0 0 1-.147-.283L24.36 25.8Zm17.706-11.679c.088.656.138 1.36.138 2.118 0 2.089-.39 4.438-1.565 7.374l-6.29 18.183c6.122-3.57 10.239-10.2 10.239-17.796 0-3.58-.914-6.946-2.523-9.879Z"
|
|
787
|
-
}), /*#__PURE__*/
|
|
3293
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
788
3294
|
fill: "#464342",
|
|
789
3295
|
d: "M24 0C10.767 0 0 10.766 0 24s10.767 24 24 24 24.002-10.766 24.002-24S37.233 0 24 0Zm0 46.9C11.374 46.9 1.1 36.627 1.1 24 1.1 11.372 11.373 1.1 24 1.1 36.626 1.1 46.9 11.373 46.9 24c0 12.627-10.273 22.9-22.899 22.9Z"
|
|
790
3296
|
}));
|
|
@@ -794,26 +3300,26 @@ var _excluded$1 = ["size"];
|
|
|
794
3300
|
var Zapier = function Zapier(_ref) {
|
|
795
3301
|
var _ref$size = _ref.size,
|
|
796
3302
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
797
|
-
props =
|
|
3303
|
+
props = _objectWithoutProperties(_ref, _excluded$1);
|
|
798
3304
|
|
|
799
|
-
return /*#__PURE__*/
|
|
3305
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
800
3306
|
width: size,
|
|
801
3307
|
height: size,
|
|
802
3308
|
fill: "none",
|
|
803
3309
|
viewBox: "0 0 517 517"
|
|
804
|
-
}, props), /*#__PURE__*/
|
|
3310
|
+
}, props), /*#__PURE__*/React.createElement("rect", {
|
|
805
3311
|
width: 517,
|
|
806
3312
|
height: 517,
|
|
807
3313
|
fill: "#FF4F00",
|
|
808
3314
|
rx: 59
|
|
809
|
-
}), /*#__PURE__*/
|
|
3315
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
810
3316
|
fill: "#fff",
|
|
811
3317
|
clipPath: "url(#Zapier_js__a)"
|
|
812
|
-
}, /*#__PURE__*/
|
|
3318
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
813
3319
|
d: "m78.05 421.305-.073-.236 46.591-43.094v-20.763H49.82v20.763h44.647l.073.199-46.135 43.131v20.764h76.913v-20.764H78.05ZM171.198 355.235c-8.622 0-15.648 1.313-21.08 3.941a27.756 27.756 0 0 0-12.232 10.829 39.7 39.7 0 0 0-5.131 15.666l22.679 3.22c.821-4.882 2.462-8.342 4.923-10.381a14.915 14.915 0 0 1 9.746-3.046c4.603 0 7.942 1.243 10.018 3.729 2.055 2.487 3.101 5.931 3.101 10.469v2.263h-21.807c-11.1 0-19.074 2.487-23.922 7.46-4.85 4.973-7.269 11.538-7.261 19.694 0 8.355 2.42 14.572 7.261 18.65 4.839 4.078 10.927 6.105 18.262 6.08 9.098 0 16.096-3.162 20.993-9.486a35.408 35.408 0 0 0 6.067-13.068h.825l3.126 20.763h20.552v-52.579c0-10.867-2.835-19.284-8.504-25.252-5.67-5.968-14.874-8.952-27.616-8.952Zm7.187 64.814c-3.261 2.748-7.53 4.115-12.847 4.115-4.382 0-7.425-.775-9.131-2.325a7.586 7.586 0 0 1-1.938-2.663 7.664 7.664 0 0 1-.634-3.242 7.819 7.819 0 0 1 .481-3.087 7.757 7.757 0 0 1 1.648-2.645 7.873 7.873 0 0 1 5.845-2.151h21.45v1.43a13.296 13.296 0 0 1-1.218 5.857 13.172 13.172 0 0 1-3.656 4.711ZM331.577 357.212h-24.28v84.869h24.28v-84.869ZM474.922 357.212c-6.858 0-12.265 2.445-16.219 7.335-2.839 3.515-4.997 8.708-6.473 15.579h-.714l-3.174-22.914h-20.737v84.857h24.281v-43.517c0-5.487 1.271-9.694 3.815-12.62 2.542-2.925 7.235-4.388 14.078-4.388h9.217v-24.332h-4.074ZM403.535 359.986c-5.669-3.407-12.818-5.106-21.45-5.098-13.585 0-24.218 3.908-31.897 11.725-7.679 7.816-11.518 18.592-11.518 32.326a51.966 51.966 0 0 0 5.229 23.984 37.936 37.936 0 0 0 14.891 15.852c6.432 3.756 14.082 5.637 22.95 5.644 7.672 0 14.079-1.193 19.223-3.579a30.965 30.965 0 0 0 12.232-9.761 42.746 42.746 0 0 0 6.646-13.875l-20.921-5.919a19.606 19.606 0 0 1-4.922 8.604c-2.363 2.387-6.322 3.581-11.876 3.581-6.604 0-11.526-1.911-14.767-5.732-2.35-2.76-3.827-6.701-4.48-11.811h57.286c.234-2.388.357-4.389.357-6.006v-5.284a47.545 47.545 0 0 0-4.246-20.589 32.102 32.102 0 0 0-12.737-14.062Zm-22.151 15.131c9.845 0 15.428 4.895 16.748 14.684h-34.826a20.31 20.31 0 0 1 3.902-8.965c3.191-3.821 7.916-5.727 14.176-5.719ZM319.697 323.008a13.514 13.514 0 0 0-5.354.908 13.611 13.611 0 0 0-4.577 2.946 13.315 13.315 0 0 0-2.985 4.559 13.399 13.399 0 0 0-.916 5.388 13.607 13.607 0 0 0 .919 5.423 13.526 13.526 0 0 0 2.987 4.601 13.36 13.36 0 0 0 4.557 3.014c1.708.677 3.536.992 5.369.924a13 13 0 0 0 5.333-.924 13.135 13.135 0 0 0 4.512-3.017 13.685 13.685 0 0 0 2.914-4.618c.654-1.722.956-3.56.888-5.403a13.306 13.306 0 0 0-.867-5.373 13.198 13.198 0 0 0-2.939-4.561 13.03 13.03 0 0 0-4.512-2.974 12.94 12.94 0 0 0-5.317-.881l-.012-.012ZM269.547 354.888c-8.269 0-14.914 2.624-19.935 7.87-3.718 3.888-6.444 9.69-8.184 17.407h-.776l-3.174-22.915h-20.737v109.214h24.28v-44.983h.887a46.147 46.147 0 0 0 3.101 8.703 24.622 24.622 0 0 0 9.66 10.916 28.14 28.14 0 0 0 14.349 3.494c10.165 0 17.906-3.999 23.222-11.998 5.316-7.999 7.974-19.16 7.974-33.483 0-13.834-2.571-24.663-7.716-32.488-5.144-7.824-12.794-11.737-22.951-11.737Zm2.462 61.495c-2.831 4.144-7.261 6.217-13.291 6.217a15.54 15.54 0 0 1-7.228-1.413 15.684 15.684 0 0 1-5.792-4.593c-3.142-3.987-4.709-9.445-4.701-16.374v-1.617c0-7.037 1.567-12.425 4.701-16.163 3.134-3.738 7.474-5.587 13.02-5.545 6.137 0 10.595 1.969 13.376 5.906 2.782 3.937 4.173 9.428 4.173 16.474.016 7.286-1.395 12.988-4.234 17.108h-.024Z"
|
|
814
|
-
})), /*#__PURE__*/
|
|
3320
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
815
3321
|
id: "Zapier_js__a"
|
|
816
|
-
}, /*#__PURE__*/
|
|
3322
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
817
3323
|
fill: "#fff",
|
|
818
3324
|
d: "M-45 323h524v144H-45z"
|
|
819
3325
|
}))));
|
|
@@ -823,38 +3329,22 @@ var _excluded = ["size"];
|
|
|
823
3329
|
var Zoom = function Zoom(_ref) {
|
|
824
3330
|
var _ref$size = _ref.size,
|
|
825
3331
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
826
|
-
props =
|
|
3332
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
827
3333
|
|
|
828
|
-
return /*#__PURE__*/
|
|
3334
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
829
3335
|
width: size,
|
|
830
3336
|
height: size,
|
|
831
3337
|
viewBox: "0 0 48 48"
|
|
832
|
-
}, props), /*#__PURE__*/
|
|
3338
|
+
}, props), /*#__PURE__*/React.createElement("circle", {
|
|
833
3339
|
cx: 24,
|
|
834
3340
|
cy: 24,
|
|
835
3341
|
r: 20,
|
|
836
3342
|
fill: "#2196f3"
|
|
837
|
-
}), /*#__PURE__*/
|
|
3343
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
838
3344
|
fill: "#fff",
|
|
839
3345
|
d: "M29 31H14a3 3 0 0 1-3-3V17h15a3 3 0 0 1 3 3v11zM37 31l-6-4v-6l6-4z"
|
|
840
3346
|
}));
|
|
841
3347
|
};
|
|
842
3348
|
|
|
843
|
-
|
|
844
|
-
exports.Github = Github;
|
|
845
|
-
exports.Google = Google;
|
|
846
|
-
exports.GoogleCalendar = GoogleCalendar;
|
|
847
|
-
exports.GoogleMeet = GoogleMeet;
|
|
848
|
-
exports.Instagram = Instagram;
|
|
849
|
-
exports.Linear = Linear;
|
|
850
|
-
exports.Microsoft = Microsoft;
|
|
851
|
-
exports.Shopify = Shopify;
|
|
852
|
-
exports.Slack = Slack;
|
|
853
|
-
exports.Stripe = Stripe;
|
|
854
|
-
exports.Teams = Teams;
|
|
855
|
-
exports.Twilio = Twilio;
|
|
856
|
-
exports.Whatsapp = Whatsapp;
|
|
857
|
-
exports.Wordpress = Wordpress;
|
|
858
|
-
exports.Zapier = Zapier;
|
|
859
|
-
exports.Zoom = Zoom;
|
|
3349
|
+
export { Daily, Github, Google, GoogleCalendar, GoogleMeet, Instagram, Linear, Microsoft, Shopify, Slack, Stripe, Teams, Twilio, Whatsapp, Wordpress, Zapier, Zoom };
|
|
860
3350
|
//# sourceMappingURL=misc.js.map
|