@bigbinary/neetoui 5.2.30 → 5.2.32

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/layouts.cjs.js CHANGED
@@ -3,6 +3,8 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var React = require('react');
6
+ require('@bigbinary/neeto-cist');
7
+ var ramda = require('ramda');
6
8
  var reactDom = require('react-dom');
7
9
  var neetoIcons = require('@bigbinary/neeto-icons');
8
10
  var logos = require('@bigbinary/neeto-icons/logos');
@@ -72,6 +74,61 @@ var classnames$1 = {exports: {}};
72
74
 
73
75
  var classnames = classnames$1.exports;
74
76
 
77
+ function _arrayWithHoles(arr) {
78
+ if (Array.isArray(arr)) return arr;
79
+ }
80
+
81
+ function _iterableToArrayLimit(arr, i) {
82
+ var _i = null == arr ? null : "undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"];
83
+ if (null != _i) {
84
+ var _s,
85
+ _e,
86
+ _x,
87
+ _r,
88
+ _arr = [],
89
+ _n = !0,
90
+ _d = !1;
91
+ try {
92
+ if (_x = (_i = _i.call(arr)).next, 0 === i) {
93
+ if (Object(_i) !== _i) return;
94
+ _n = !1;
95
+ } else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0);
96
+ } catch (err) {
97
+ _d = !0, _e = err;
98
+ } finally {
99
+ try {
100
+ if (!_n && null != _i["return"] && (_r = _i["return"](), Object(_r) !== _r)) return;
101
+ } finally {
102
+ if (_d) throw _e;
103
+ }
104
+ }
105
+ return _arr;
106
+ }
107
+ }
108
+
109
+ function _arrayLikeToArray(arr, len) {
110
+ if (len == null || len > arr.length) len = arr.length;
111
+ for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
112
+ return arr2;
113
+ }
114
+
115
+ function _unsupportedIterableToArray(o, minLen) {
116
+ if (!o) return;
117
+ if (typeof o === "string") return _arrayLikeToArray(o, minLen);
118
+ var n = Object.prototype.toString.call(o).slice(8, -1);
119
+ if (n === "Object" && o.constructor) n = o.constructor.name;
120
+ if (n === "Map" || n === "Set") return Array.from(o);
121
+ if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
122
+ }
123
+
124
+ function _nonIterableRest() {
125
+ throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
126
+ }
127
+
128
+ function _slicedToArray(arr, i) {
129
+ return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();
130
+ }
131
+
75
132
  function _typeof(obj) {
76
133
  "@babel/helpers - typeof";
77
134
 
@@ -98,6 +155,21 @@ function _toPropertyKey(arg) {
98
155
  return _typeof(key) === "symbol" ? key : String(key);
99
156
  }
100
157
 
158
+ function _defineProperty(obj, key, value) {
159
+ key = _toPropertyKey(key);
160
+ if (key in obj) {
161
+ Object.defineProperty(obj, key, {
162
+ value: value,
163
+ enumerable: true,
164
+ configurable: true,
165
+ writable: true
166
+ });
167
+ } else {
168
+ obj[key] = value;
169
+ }
170
+ return obj;
171
+ }
172
+
101
173
  var dayjs_min = {exports: {}};
102
174
 
103
175
  (function (module, exports) {
@@ -138,249 +210,544 @@ var weekOfYear$1 = {exports: {}};
138
210
 
139
211
  var weekOfYear = weekOfYear$1.exports;
140
212
 
141
- function _isPlaceholder(a) {
142
- return a != null && typeof a === 'object' && a['@@functional/placeholder'] === true;
143
- }
213
+ /* eslint complexity: [2, 18], max-statements: [2, 33] */
214
+ var shams = function hasSymbols() {
215
+ if (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; }
216
+ if (typeof Symbol.iterator === 'symbol') { return true; }
144
217
 
145
- /**
146
- * Optimized internal one-arity curry function.
147
- *
148
- * @private
149
- * @category Function
150
- * @param {Function} fn The function to curry.
151
- * @return {Function} The curried function.
152
- */
218
+ var obj = {};
219
+ var sym = Symbol('test');
220
+ var symObj = Object(sym);
221
+ if (typeof sym === 'string') { return false; }
153
222
 
154
- function _curry1(fn) {
155
- return function f1(a) {
156
- if (arguments.length === 0 || _isPlaceholder(a)) {
157
- return f1;
158
- } else {
159
- return fn.apply(this, arguments);
160
- }
161
- };
162
- }
223
+ if (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; }
224
+ if (Object.prototype.toString.call(symObj) !== '[object Symbol]') { return false; }
163
225
 
164
- function _has(prop, obj) {
165
- return Object.prototype.hasOwnProperty.call(obj, prop);
166
- }
226
+ // temp disabled per https://github.com/ljharb/object.assign/issues/17
227
+ // if (sym instanceof Symbol) { return false; }
228
+ // temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4
229
+ // if (!(symObj instanceof Symbol)) { return false; }
167
230
 
168
- var toString = Object.prototype.toString;
231
+ // if (typeof Symbol.prototype.toString !== 'function') { return false; }
232
+ // if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; }
169
233
 
170
- var _isArguments =
171
- /*#__PURE__*/
172
- function () {
173
- return toString.call(arguments) === '[object Arguments]' ? function _isArguments(x) {
174
- return toString.call(x) === '[object Arguments]';
175
- } : function _isArguments(x) {
176
- return _has('callee', x);
177
- };
178
- }();
234
+ var symVal = 42;
235
+ obj[sym] = symVal;
236
+ for (sym in obj) { return false; } // eslint-disable-line no-restricted-syntax, no-unreachable-loop
237
+ if (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; }
179
238
 
180
- var hasEnumBug = !
181
- /*#__PURE__*/
182
- {
183
- toString: null
184
- }.propertyIsEnumerable('toString');
185
- var nonEnumerableProps = ['constructor', 'valueOf', 'isPrototypeOf', 'toString', 'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString']; // Safari bug
239
+ if (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; }
186
240
 
187
- var hasArgsEnumBug =
188
- /*#__PURE__*/
189
- function () {
241
+ var syms = Object.getOwnPropertySymbols(obj);
242
+ if (syms.length !== 1 || syms[0] !== sym) { return false; }
190
243
 
191
- return arguments.propertyIsEnumerable('length');
192
- }();
244
+ if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; }
193
245
 
194
- var contains$1 = function contains(list, item) {
195
- var idx = 0;
246
+ if (typeof Object.getOwnPropertyDescriptor === 'function') {
247
+ var descriptor = Object.getOwnPropertyDescriptor(obj, sym);
248
+ if (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; }
249
+ }
196
250
 
197
- while (idx < list.length) {
198
- if (list[idx] === item) {
199
- return true;
200
- }
251
+ return true;
252
+ };
201
253
 
202
- idx += 1;
203
- }
254
+ var origSymbol = typeof Symbol !== 'undefined' && Symbol;
255
+ var hasSymbolSham = shams;
204
256
 
205
- return false;
257
+ var hasSymbols$1 = function hasNativeSymbols() {
258
+ if (typeof origSymbol !== 'function') { return false; }
259
+ if (typeof Symbol !== 'function') { return false; }
260
+ if (typeof origSymbol('foo') !== 'symbol') { return false; }
261
+ if (typeof Symbol('bar') !== 'symbol') { return false; }
262
+
263
+ return hasSymbolSham();
206
264
  };
207
- /**
208
- * Returns a list containing the names of all the enumerable own properties of
209
- * the supplied object.
210
- * Note that the order of the output array is not guaranteed to be consistent
211
- * across different JS platforms.
212
- *
213
- * @func
214
- * @memberOf R
215
- * @since v0.1.0
216
- * @category Object
217
- * @sig {k: v} -> [k]
218
- * @param {Object} obj The object to extract properties from
219
- * @return {Array} An array of the object's own properties.
220
- * @see R.keysIn, R.values, R.toPairs
221
- * @example
222
- *
223
- * R.keys({a: 1, b: 2, c: 3}); //=> ['a', 'b', 'c']
224
- */
225
265
 
266
+ /* eslint no-invalid-this: 1 */
226
267
 
227
- var keys = typeof Object.keys === 'function' && !hasArgsEnumBug ?
228
- /*#__PURE__*/
229
- _curry1(function keys(obj) {
230
- return Object(obj) !== obj ? [] : Object.keys(obj);
231
- }) :
232
- /*#__PURE__*/
233
- _curry1(function keys(obj) {
234
- if (Object(obj) !== obj) {
235
- return [];
236
- }
268
+ var ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';
269
+ var slice = Array.prototype.slice;
270
+ var toStr = Object.prototype.toString;
271
+ var funcType = '[object Function]';
272
+
273
+ var implementation$1 = function bind(that) {
274
+ var target = this;
275
+ if (typeof target !== 'function' || toStr.call(target) !== funcType) {
276
+ throw new TypeError(ERROR_MESSAGE + target);
277
+ }
278
+ var args = slice.call(arguments, 1);
279
+
280
+ var bound;
281
+ var binder = function () {
282
+ if (this instanceof bound) {
283
+ var result = target.apply(
284
+ this,
285
+ args.concat(slice.call(arguments))
286
+ );
287
+ if (Object(result) === result) {
288
+ return result;
289
+ }
290
+ return this;
291
+ } else {
292
+ return target.apply(
293
+ that,
294
+ args.concat(slice.call(arguments))
295
+ );
296
+ }
297
+ };
237
298
 
238
- var prop, nIdx;
239
- var ks = [];
299
+ var boundLength = Math.max(0, target.length - args.length);
300
+ var boundArgs = [];
301
+ for (var i = 0; i < boundLength; i++) {
302
+ boundArgs.push('$' + i);
303
+ }
240
304
 
241
- var checkArgsLength = hasArgsEnumBug && _isArguments(obj);
305
+ bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this,arguments); }')(binder);
242
306
 
243
- for (prop in obj) {
244
- if (_has(prop, obj) && (!checkArgsLength || prop !== 'length')) {
245
- ks[ks.length] = prop;
307
+ if (target.prototype) {
308
+ var Empty = function Empty() {};
309
+ Empty.prototype = target.prototype;
310
+ bound.prototype = new Empty();
311
+ Empty.prototype = null;
246
312
  }
247
- }
248
313
 
249
- if (hasEnumBug) {
250
- nIdx = nonEnumerableProps.length - 1;
314
+ return bound;
315
+ };
251
316
 
252
- while (nIdx >= 0) {
253
- prop = nonEnumerableProps[nIdx];
317
+ var implementation = implementation$1;
254
318
 
255
- if (_has(prop, obj) && !contains$1(ks, prop)) {
256
- ks[ks.length] = prop;
257
- }
319
+ var functionBind = Function.prototype.bind || implementation;
258
320
 
259
- nIdx -= 1;
260
- }
261
- }
321
+ var bind$1 = functionBind;
262
322
 
263
- return ks;
264
- });
323
+ var src = bind$1.call(Function.call, Object.prototype.hasOwnProperty);
265
324
 
266
- /**
267
- * Returns a list of all the enumerable own properties of the supplied object.
268
- * Note that the order of the output array is not guaranteed across different
269
- * JS platforms.
270
- *
271
- * @func
272
- * @memberOf R
273
- * @since v0.1.0
274
- * @category Object
275
- * @sig {k: v} -> [v]
276
- * @param {Object} obj The object to extract values from
277
- * @return {Array} An array of the values of the object's own properties.
278
- * @see R.valuesIn, R.keys, R.toPairs
279
- * @example
280
- *
281
- * R.values({a: 1, b: 2, c: 3}); //=> [1, 2, 3]
282
- */
325
+ var undefined$1;
283
326
 
284
- var values =
285
- /*#__PURE__*/
286
- _curry1(function values(obj) {
287
- var props = keys(obj);
288
- var len = props.length;
289
- var vals = [];
290
- var idx = 0;
291
-
292
- while (idx < len) {
293
- vals[idx] = obj[props[idx]];
294
- idx += 1;
295
- }
327
+ var $SyntaxError = SyntaxError;
328
+ var $Function = Function;
329
+ var $TypeError = TypeError;
296
330
 
297
- return vals;
298
- });
331
+ // eslint-disable-next-line consistent-return
332
+ var getEvalledConstructor = function (expressionSyntax) {
333
+ try {
334
+ return $Function('"use strict"; return (' + expressionSyntax + ').constructor;')();
335
+ } catch (e) {}
336
+ };
299
337
 
300
- /**
301
- * Checks if the input value is `null` or `undefined`.
302
- *
303
- * @func
304
- * @memberOf R
305
- * @since v0.9.0
306
- * @category Type
307
- * @sig * -> Boolean
308
- * @param {*} x The value to test.
309
- * @return {Boolean} `true` if `x` is `undefined` or `null`, otherwise `false`.
310
- * @example
311
- *
312
- * R.isNil(null); //=> true
313
- * R.isNil(undefined); //=> true
314
- * R.isNil(0); //=> false
315
- * R.isNil([]); //=> false
316
- */
338
+ var $gOPD = Object.getOwnPropertyDescriptor;
339
+ if ($gOPD) {
340
+ try {
341
+ $gOPD({}, '');
342
+ } catch (e) {
343
+ $gOPD = null; // this is IE 8, which has a broken gOPD
344
+ }
345
+ }
317
346
 
318
- var isNil =
319
- /*#__PURE__*/
320
- _curry1(function isNil(x) {
321
- return x == null;
322
- });
347
+ var throwTypeError = function () {
348
+ throw new $TypeError();
349
+ };
350
+ var ThrowTypeError = $gOPD
351
+ ? (function () {
352
+ try {
353
+ // eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties
354
+ arguments.callee; // IE 8 does not throw here
355
+ return throwTypeError;
356
+ } catch (calleeThrows) {
357
+ try {
358
+ // IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '')
359
+ return $gOPD(arguments, 'callee').get;
360
+ } catch (gOPDthrows) {
361
+ return throwTypeError;
362
+ }
363
+ }
364
+ }())
365
+ : throwTypeError;
366
+
367
+ var hasSymbols = hasSymbols$1();
368
+
369
+ var getProto = Object.getPrototypeOf || function (x) { return x.__proto__; }; // eslint-disable-line no-proto
370
+
371
+ var needsEval = {};
372
+
373
+ var TypedArray = typeof Uint8Array === 'undefined' ? undefined$1 : getProto(Uint8Array);
374
+
375
+ var INTRINSICS = {
376
+ '%AggregateError%': typeof AggregateError === 'undefined' ? undefined$1 : AggregateError,
377
+ '%Array%': Array,
378
+ '%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined$1 : ArrayBuffer,
379
+ '%ArrayIteratorPrototype%': hasSymbols ? getProto([][Symbol.iterator]()) : undefined$1,
380
+ '%AsyncFromSyncIteratorPrototype%': undefined$1,
381
+ '%AsyncFunction%': needsEval,
382
+ '%AsyncGenerator%': needsEval,
383
+ '%AsyncGeneratorFunction%': needsEval,
384
+ '%AsyncIteratorPrototype%': needsEval,
385
+ '%Atomics%': typeof Atomics === 'undefined' ? undefined$1 : Atomics,
386
+ '%BigInt%': typeof BigInt === 'undefined' ? undefined$1 : BigInt,
387
+ '%Boolean%': Boolean,
388
+ '%DataView%': typeof DataView === 'undefined' ? undefined$1 : DataView,
389
+ '%Date%': Date,
390
+ '%decodeURI%': decodeURI,
391
+ '%decodeURIComponent%': decodeURIComponent,
392
+ '%encodeURI%': encodeURI,
393
+ '%encodeURIComponent%': encodeURIComponent,
394
+ '%Error%': Error,
395
+ '%eval%': eval, // eslint-disable-line no-eval
396
+ '%EvalError%': EvalError,
397
+ '%Float32Array%': typeof Float32Array === 'undefined' ? undefined$1 : Float32Array,
398
+ '%Float64Array%': typeof Float64Array === 'undefined' ? undefined$1 : Float64Array,
399
+ '%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? undefined$1 : FinalizationRegistry,
400
+ '%Function%': $Function,
401
+ '%GeneratorFunction%': needsEval,
402
+ '%Int8Array%': typeof Int8Array === 'undefined' ? undefined$1 : Int8Array,
403
+ '%Int16Array%': typeof Int16Array === 'undefined' ? undefined$1 : Int16Array,
404
+ '%Int32Array%': typeof Int32Array === 'undefined' ? undefined$1 : Int32Array,
405
+ '%isFinite%': isFinite,
406
+ '%isNaN%': isNaN,
407
+ '%IteratorPrototype%': hasSymbols ? getProto(getProto([][Symbol.iterator]())) : undefined$1,
408
+ '%JSON%': typeof JSON === 'object' ? JSON : undefined$1,
409
+ '%Map%': typeof Map === 'undefined' ? undefined$1 : Map,
410
+ '%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols ? undefined$1 : getProto(new Map()[Symbol.iterator]()),
411
+ '%Math%': Math,
412
+ '%Number%': Number,
413
+ '%Object%': Object,
414
+ '%parseFloat%': parseFloat,
415
+ '%parseInt%': parseInt,
416
+ '%Promise%': typeof Promise === 'undefined' ? undefined$1 : Promise,
417
+ '%Proxy%': typeof Proxy === 'undefined' ? undefined$1 : Proxy,
418
+ '%RangeError%': RangeError,
419
+ '%ReferenceError%': ReferenceError,
420
+ '%Reflect%': typeof Reflect === 'undefined' ? undefined$1 : Reflect,
421
+ '%RegExp%': RegExp,
422
+ '%Set%': typeof Set === 'undefined' ? undefined$1 : Set,
423
+ '%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols ? undefined$1 : getProto(new Set()[Symbol.iterator]()),
424
+ '%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined$1 : SharedArrayBuffer,
425
+ '%String%': String,
426
+ '%StringIteratorPrototype%': hasSymbols ? getProto(''[Symbol.iterator]()) : undefined$1,
427
+ '%Symbol%': hasSymbols ? Symbol : undefined$1,
428
+ '%SyntaxError%': $SyntaxError,
429
+ '%ThrowTypeError%': ThrowTypeError,
430
+ '%TypedArray%': TypedArray,
431
+ '%TypeError%': $TypeError,
432
+ '%Uint8Array%': typeof Uint8Array === 'undefined' ? undefined$1 : Uint8Array,
433
+ '%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined$1 : Uint8ClampedArray,
434
+ '%Uint16Array%': typeof Uint16Array === 'undefined' ? undefined$1 : Uint16Array,
435
+ '%Uint32Array%': typeof Uint32Array === 'undefined' ? undefined$1 : Uint32Array,
436
+ '%URIError%': URIError,
437
+ '%WeakMap%': typeof WeakMap === 'undefined' ? undefined$1 : WeakMap,
438
+ '%WeakRef%': typeof WeakRef === 'undefined' ? undefined$1 : WeakRef,
439
+ '%WeakSet%': typeof WeakSet === 'undefined' ? undefined$1 : WeakSet
440
+ };
323
441
 
324
- dayjs.extend(weekOfYear);
325
- dayjs.extend(weekday);
326
- dayjs.extend(localeData);
327
- dayjs.extend(utc);
328
- var noop = function noop() {};
442
+ var doEval = function doEval(name) {
443
+ var value;
444
+ if (name === '%AsyncFunction%') {
445
+ value = getEvalledConstructor('async function () {}');
446
+ } else if (name === '%GeneratorFunction%') {
447
+ value = getEvalledConstructor('function* () {}');
448
+ } else if (name === '%AsyncGeneratorFunction%') {
449
+ value = getEvalledConstructor('async function* () {}');
450
+ } else if (name === '%AsyncGenerator%') {
451
+ var fn = doEval('%AsyncGeneratorFunction%');
452
+ if (fn) {
453
+ value = fn.prototype;
454
+ }
455
+ } else if (name === '%AsyncIteratorPrototype%') {
456
+ var gen = doEval('%AsyncGenerator%');
457
+ if (gen) {
458
+ value = getProto(gen.prototype);
459
+ }
460
+ }
329
461
 
330
- function _arrayWithHoles(arr) {
331
- if (Array.isArray(arr)) return arr;
332
- }
462
+ INTRINSICS[name] = value;
333
463
 
334
- function _iterableToArrayLimit(arr, i) {
335
- var _i = null == arr ? null : "undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"];
336
- if (null != _i) {
337
- var _s,
338
- _e,
339
- _x,
340
- _r,
341
- _arr = [],
342
- _n = !0,
343
- _d = !1;
344
- try {
345
- if (_x = (_i = _i.call(arr)).next, 0 === i) {
346
- if (Object(_i) !== _i) return;
347
- _n = !1;
348
- } else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0);
349
- } catch (err) {
350
- _d = !0, _e = err;
351
- } finally {
352
- try {
353
- if (!_n && null != _i["return"] && (_r = _i["return"](), Object(_r) !== _r)) return;
354
- } finally {
355
- if (_d) throw _e;
356
- }
357
- }
358
- return _arr;
359
- }
360
- }
464
+ return value;
465
+ };
361
466
 
362
- function _arrayLikeToArray(arr, len) {
363
- if (len == null || len > arr.length) len = arr.length;
364
- for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
365
- return arr2;
366
- }
467
+ var LEGACY_ALIASES = {
468
+ '%ArrayBufferPrototype%': ['ArrayBuffer', 'prototype'],
469
+ '%ArrayPrototype%': ['Array', 'prototype'],
470
+ '%ArrayProto_entries%': ['Array', 'prototype', 'entries'],
471
+ '%ArrayProto_forEach%': ['Array', 'prototype', 'forEach'],
472
+ '%ArrayProto_keys%': ['Array', 'prototype', 'keys'],
473
+ '%ArrayProto_values%': ['Array', 'prototype', 'values'],
474
+ '%AsyncFunctionPrototype%': ['AsyncFunction', 'prototype'],
475
+ '%AsyncGenerator%': ['AsyncGeneratorFunction', 'prototype'],
476
+ '%AsyncGeneratorPrototype%': ['AsyncGeneratorFunction', 'prototype', 'prototype'],
477
+ '%BooleanPrototype%': ['Boolean', 'prototype'],
478
+ '%DataViewPrototype%': ['DataView', 'prototype'],
479
+ '%DatePrototype%': ['Date', 'prototype'],
480
+ '%ErrorPrototype%': ['Error', 'prototype'],
481
+ '%EvalErrorPrototype%': ['EvalError', 'prototype'],
482
+ '%Float32ArrayPrototype%': ['Float32Array', 'prototype'],
483
+ '%Float64ArrayPrototype%': ['Float64Array', 'prototype'],
484
+ '%FunctionPrototype%': ['Function', 'prototype'],
485
+ '%Generator%': ['GeneratorFunction', 'prototype'],
486
+ '%GeneratorPrototype%': ['GeneratorFunction', 'prototype', 'prototype'],
487
+ '%Int8ArrayPrototype%': ['Int8Array', 'prototype'],
488
+ '%Int16ArrayPrototype%': ['Int16Array', 'prototype'],
489
+ '%Int32ArrayPrototype%': ['Int32Array', 'prototype'],
490
+ '%JSONParse%': ['JSON', 'parse'],
491
+ '%JSONStringify%': ['JSON', 'stringify'],
492
+ '%MapPrototype%': ['Map', 'prototype'],
493
+ '%NumberPrototype%': ['Number', 'prototype'],
494
+ '%ObjectPrototype%': ['Object', 'prototype'],
495
+ '%ObjProto_toString%': ['Object', 'prototype', 'toString'],
496
+ '%ObjProto_valueOf%': ['Object', 'prototype', 'valueOf'],
497
+ '%PromisePrototype%': ['Promise', 'prototype'],
498
+ '%PromiseProto_then%': ['Promise', 'prototype', 'then'],
499
+ '%Promise_all%': ['Promise', 'all'],
500
+ '%Promise_reject%': ['Promise', 'reject'],
501
+ '%Promise_resolve%': ['Promise', 'resolve'],
502
+ '%RangeErrorPrototype%': ['RangeError', 'prototype'],
503
+ '%ReferenceErrorPrototype%': ['ReferenceError', 'prototype'],
504
+ '%RegExpPrototype%': ['RegExp', 'prototype'],
505
+ '%SetPrototype%': ['Set', 'prototype'],
506
+ '%SharedArrayBufferPrototype%': ['SharedArrayBuffer', 'prototype'],
507
+ '%StringPrototype%': ['String', 'prototype'],
508
+ '%SymbolPrototype%': ['Symbol', 'prototype'],
509
+ '%SyntaxErrorPrototype%': ['SyntaxError', 'prototype'],
510
+ '%TypedArrayPrototype%': ['TypedArray', 'prototype'],
511
+ '%TypeErrorPrototype%': ['TypeError', 'prototype'],
512
+ '%Uint8ArrayPrototype%': ['Uint8Array', 'prototype'],
513
+ '%Uint8ClampedArrayPrototype%': ['Uint8ClampedArray', 'prototype'],
514
+ '%Uint16ArrayPrototype%': ['Uint16Array', 'prototype'],
515
+ '%Uint32ArrayPrototype%': ['Uint32Array', 'prototype'],
516
+ '%URIErrorPrototype%': ['URIError', 'prototype'],
517
+ '%WeakMapPrototype%': ['WeakMap', 'prototype'],
518
+ '%WeakSetPrototype%': ['WeakSet', 'prototype']
519
+ };
367
520
 
368
- function _unsupportedIterableToArray(o, minLen) {
369
- if (!o) return;
370
- if (typeof o === "string") return _arrayLikeToArray(o, minLen);
371
- var n = Object.prototype.toString.call(o).slice(8, -1);
372
- if (n === "Object" && o.constructor) n = o.constructor.name;
373
- if (n === "Map" || n === "Set") return Array.from(o);
374
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
375
- }
521
+ var bind = functionBind;
522
+ var hasOwn = src;
523
+ var $concat = bind.call(Function.call, Array.prototype.concat);
524
+ var $spliceApply = bind.call(Function.apply, Array.prototype.splice);
525
+ var $replace = bind.call(Function.call, String.prototype.replace);
526
+ var $strSlice = bind.call(Function.call, String.prototype.slice);
527
+ var $exec = bind.call(Function.call, RegExp.prototype.exec);
528
+
529
+ /* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */
530
+ var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;
531
+ var reEscapeChar = /\\(\\)?/g; /** Used to match backslashes in property paths. */
532
+ var stringToPath = function stringToPath(string) {
533
+ var first = $strSlice(string, 0, 1);
534
+ var last = $strSlice(string, -1);
535
+ if (first === '%' && last !== '%') {
536
+ throw new $SyntaxError('invalid intrinsic syntax, expected closing `%`');
537
+ } else if (last === '%' && first !== '%') {
538
+ throw new $SyntaxError('invalid intrinsic syntax, expected opening `%`');
539
+ }
540
+ var result = [];
541
+ $replace(string, rePropName, function (match, number, quote, subString) {
542
+ result[result.length] = quote ? $replace(subString, reEscapeChar, '$1') : number || match;
543
+ });
544
+ return result;
545
+ };
546
+ /* end adaptation */
547
+
548
+ var getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) {
549
+ var intrinsicName = name;
550
+ var alias;
551
+ if (hasOwn(LEGACY_ALIASES, intrinsicName)) {
552
+ alias = LEGACY_ALIASES[intrinsicName];
553
+ intrinsicName = '%' + alias[0] + '%';
554
+ }
555
+
556
+ if (hasOwn(INTRINSICS, intrinsicName)) {
557
+ var value = INTRINSICS[intrinsicName];
558
+ if (value === needsEval) {
559
+ value = doEval(intrinsicName);
560
+ }
561
+ if (typeof value === 'undefined' && !allowMissing) {
562
+ throw new $TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!');
563
+ }
376
564
 
377
- function _nonIterableRest() {
378
- throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
379
- }
565
+ return {
566
+ alias: alias,
567
+ name: intrinsicName,
568
+ value: value
569
+ };
570
+ }
380
571
 
381
- function _slicedToArray(arr, i) {
382
- return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();
383
- }
572
+ throw new $SyntaxError('intrinsic ' + name + ' does not exist!');
573
+ };
574
+
575
+ var getIntrinsic = function GetIntrinsic(name, allowMissing) {
576
+ if (typeof name !== 'string' || name.length === 0) {
577
+ throw new $TypeError('intrinsic name must be a non-empty string');
578
+ }
579
+ if (arguments.length > 1 && typeof allowMissing !== 'boolean') {
580
+ throw new $TypeError('"allowMissing" argument must be a boolean');
581
+ }
582
+
583
+ if ($exec(/^%?[^%]*%?$/, name) === null) {
584
+ throw new $SyntaxError('`%` may not be present anywhere but at the beginning and end of the intrinsic name');
585
+ }
586
+ var parts = stringToPath(name);
587
+ var intrinsicBaseName = parts.length > 0 ? parts[0] : '';
588
+
589
+ var intrinsic = getBaseIntrinsic('%' + intrinsicBaseName + '%', allowMissing);
590
+ var intrinsicRealName = intrinsic.name;
591
+ var value = intrinsic.value;
592
+ var skipFurtherCaching = false;
593
+
594
+ var alias = intrinsic.alias;
595
+ if (alias) {
596
+ intrinsicBaseName = alias[0];
597
+ $spliceApply(parts, $concat([0, 1], alias));
598
+ }
599
+
600
+ for (var i = 1, isOwn = true; i < parts.length; i += 1) {
601
+ var part = parts[i];
602
+ var first = $strSlice(part, 0, 1);
603
+ var last = $strSlice(part, -1);
604
+ if (
605
+ (
606
+ (first === '"' || first === "'" || first === '`')
607
+ || (last === '"' || last === "'" || last === '`')
608
+ )
609
+ && first !== last
610
+ ) {
611
+ throw new $SyntaxError('property names with quotes must have matching quotes');
612
+ }
613
+ if (part === 'constructor' || !isOwn) {
614
+ skipFurtherCaching = true;
615
+ }
616
+
617
+ intrinsicBaseName += '.' + part;
618
+ intrinsicRealName = '%' + intrinsicBaseName + '%';
619
+
620
+ if (hasOwn(INTRINSICS, intrinsicRealName)) {
621
+ value = INTRINSICS[intrinsicRealName];
622
+ } else if (value != null) {
623
+ if (!(part in value)) {
624
+ if (!allowMissing) {
625
+ throw new $TypeError('base intrinsic for ' + name + ' exists, but the property is not available.');
626
+ }
627
+ return void undefined$1;
628
+ }
629
+ if ($gOPD && (i + 1) >= parts.length) {
630
+ var desc = $gOPD(value, part);
631
+ isOwn = !!desc;
632
+
633
+ // By convention, when a data property is converted to an accessor
634
+ // property to emulate a data property that does not suffer from
635
+ // the override mistake, that accessor's getter is marked with
636
+ // an `originalValue` property. Here, when we detect this, we
637
+ // uphold the illusion by pretending to see that original data
638
+ // property, i.e., returning the value rather than the getter
639
+ // itself.
640
+ if (isOwn && 'get' in desc && !('originalValue' in desc.get)) {
641
+ value = desc.get;
642
+ } else {
643
+ value = value[part];
644
+ }
645
+ } else {
646
+ isOwn = hasOwn(value, part);
647
+ value = value[part];
648
+ }
649
+
650
+ if (isOwn && !skipFurtherCaching) {
651
+ INTRINSICS[intrinsicRealName] = value;
652
+ }
653
+ }
654
+ }
655
+ return value;
656
+ };
657
+
658
+ var callBind$1 = {exports: {}};
659
+
660
+ (function (module) {
661
+
662
+ var bind = functionBind;
663
+ var GetIntrinsic = getIntrinsic;
664
+
665
+ var $apply = GetIntrinsic('%Function.prototype.apply%');
666
+ var $call = GetIntrinsic('%Function.prototype.call%');
667
+ var $reflectApply = GetIntrinsic('%Reflect.apply%', true) || bind.call($call, $apply);
668
+
669
+ var $gOPD = GetIntrinsic('%Object.getOwnPropertyDescriptor%', true);
670
+ var $defineProperty = GetIntrinsic('%Object.defineProperty%', true);
671
+ var $max = GetIntrinsic('%Math.max%');
672
+
673
+ if ($defineProperty) {
674
+ try {
675
+ $defineProperty({}, 'a', { value: 1 });
676
+ } catch (e) {
677
+ // IE 8 has a broken defineProperty
678
+ $defineProperty = null;
679
+ }
680
+ }
681
+
682
+ module.exports = function callBind(originalFunction) {
683
+ var func = $reflectApply(bind, $call, arguments);
684
+ if ($gOPD && $defineProperty) {
685
+ var desc = $gOPD(func, 'length');
686
+ if (desc.configurable) {
687
+ // original length, plus the receiver, minus any additional arguments (after the receiver)
688
+ $defineProperty(
689
+ func,
690
+ 'length',
691
+ { value: 1 + $max(0, originalFunction.length - (arguments.length - 1)) }
692
+ );
693
+ }
694
+ }
695
+ return func;
696
+ };
697
+
698
+ var applyBind = function applyBind() {
699
+ return $reflectApply(bind, $apply, arguments);
700
+ };
701
+
702
+ if ($defineProperty) {
703
+ $defineProperty(module.exports, 'apply', { value: applyBind });
704
+ } else {
705
+ module.exports.apply = applyBind;
706
+ }
707
+ } (callBind$1));
708
+
709
+ var GetIntrinsic$1 = getIntrinsic;
710
+
711
+ var callBind = callBind$1.exports;
712
+
713
+ var $indexOf = callBind(GetIntrinsic$1('String.prototype.indexOf'));
714
+
715
+ var callBound$1 = function callBoundIntrinsic(name, allowMissing) {
716
+ var intrinsic = GetIntrinsic$1(name, !!allowMissing);
717
+ if (typeof intrinsic === 'function' && $indexOf(name, '.prototype.') > -1) {
718
+ return callBind(intrinsic);
719
+ }
720
+ return intrinsic;
721
+ };
722
+
723
+ var GetIntrinsic = getIntrinsic;
724
+ var callBound = callBound$1;
725
+
726
+ GetIntrinsic('%TypeError%');
727
+ GetIntrinsic('%WeakMap%', true);
728
+ GetIntrinsic('%Map%', true);
729
+
730
+ callBound('WeakMap.prototype.get', true);
731
+ callBound('WeakMap.prototype.set', true);
732
+ callBound('WeakMap.prototype.has', true);
733
+ callBound('Map.prototype.get', true);
734
+ callBound('Map.prototype.set', true);
735
+ callBound('Map.prototype.has', true);
736
+
737
+ ((function () {
738
+ var array = [];
739
+ for (var i = 0; i < 256; ++i) {
740
+ array.push('%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase());
741
+ }
742
+
743
+ return array;
744
+ })());
745
+
746
+ dayjs.extend(weekOfYear);
747
+ dayjs.extend(weekday);
748
+ dayjs.extend(localeData);
749
+ dayjs.extend(utc);
750
+ var noop = function noop() {};
384
751
 
385
752
  function _extends() {
386
753
  _extends = Object.assign ? Object.assign.bind() : function (target) {
@@ -4345,21 +4712,6 @@ var Tooltip = function Tooltip(_ref) {
4345
4712
  }, localProps, otherProps), /*#__PURE__*/React__default["default"].isValidElement(children) ? children : /*#__PURE__*/React__default["default"].createElement("span", null, children));
4346
4713
  };
4347
4714
 
4348
- function _defineProperty(obj, key, value) {
4349
- key = _toPropertyKey(key);
4350
- if (key in obj) {
4351
- Object.defineProperty(obj, key, {
4352
- value: value,
4353
- enumerable: true,
4354
- configurable: true,
4355
- writable: true
4356
- });
4357
- } else {
4358
- obj[key] = value;
4359
- }
4360
- return obj;
4361
- }
4362
-
4363
4715
  var _excluded$4 = ["style", "weight", "lineHeight", "component", "children", "textTransform", "className"];
4364
4716
  var FONT_WEIGHTS = {
4365
4717
  thin: "thin",
@@ -4624,7 +4976,7 @@ var HelpSectionTooltip = function HelpSectionTooltip(_ref) {
4624
4976
  "data-cy": "help-link-changelog-button"
4625
4977
  })].filter(Boolean);
4626
4978
  return /*#__PURE__*/React__default["default"].createElement(HelpLinkSection, {
4627
- links: values(helpLinks)
4979
+ links: ramda.values(helpLinks)
4628
4980
  });
4629
4981
  };
4630
4982
 
@@ -4688,7 +5040,7 @@ var Avatar = function Avatar(_ref) {
4688
5040
  "neeto-ui-avatar__status-xlarge": isExtraLarge
4689
5041
  });
4690
5042
  var Indicator = function Indicator() {
4691
- return isNil(status) ? React__default["default"].Fragment : /*#__PURE__*/React__default["default"].createElement("span", {
5043
+ return ramda.isNil(status) ? React__default["default"].Fragment : /*#__PURE__*/React__default["default"].createElement("span", {
4692
5044
  className: statusClasses,
4693
5045
  "data-testid": "indicator"
4694
5046
  });