material-icon-theme 5.5.0 → 5.6.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.
@@ -26,1044 +26,26 @@ __export(module_exports, {
26
26
  });
27
27
  module.exports = __toCommonJS(module_exports);
28
28
 
29
- // node_modules/lodash-es/_freeGlobal.js
30
- var freeGlobal = typeof global == "object" && global && global.Object === Object && global;
31
- var freeGlobal_default = freeGlobal;
32
-
33
- // node_modules/lodash-es/_root.js
34
- var freeSelf = typeof self == "object" && self && self.Object === Object && self;
35
- var root = freeGlobal_default || freeSelf || Function("return this")();
36
- var root_default = root;
37
-
38
- // node_modules/lodash-es/_Symbol.js
39
- var Symbol2 = root_default.Symbol;
40
- var Symbol_default = Symbol2;
41
-
42
- // node_modules/lodash-es/_getRawTag.js
43
- var objectProto = Object.prototype;
44
- var hasOwnProperty = objectProto.hasOwnProperty;
45
- var nativeObjectToString = objectProto.toString;
46
- var symToStringTag = Symbol_default ? Symbol_default.toStringTag : void 0;
47
- function getRawTag(value) {
48
- var isOwn = hasOwnProperty.call(value, symToStringTag), tag = value[symToStringTag];
49
- try {
50
- value[symToStringTag] = void 0;
51
- var unmasked = true;
52
- } catch (e) {
53
- }
54
- var result = nativeObjectToString.call(value);
55
- if (unmasked) {
56
- if (isOwn) {
57
- value[symToStringTag] = tag;
58
- } else {
59
- delete value[symToStringTag];
60
- }
61
- }
62
- return result;
63
- }
64
- var getRawTag_default = getRawTag;
65
-
66
- // node_modules/lodash-es/_objectToString.js
67
- var objectProto2 = Object.prototype;
68
- var nativeObjectToString2 = objectProto2.toString;
69
- function objectToString(value) {
70
- return nativeObjectToString2.call(value);
71
- }
72
- var objectToString_default = objectToString;
73
-
74
- // node_modules/lodash-es/_baseGetTag.js
75
- var nullTag = "[object Null]";
76
- var undefinedTag = "[object Undefined]";
77
- var symToStringTag2 = Symbol_default ? Symbol_default.toStringTag : void 0;
78
- function baseGetTag(value) {
79
- if (value == null) {
80
- return value === void 0 ? undefinedTag : nullTag;
81
- }
82
- return symToStringTag2 && symToStringTag2 in Object(value) ? getRawTag_default(value) : objectToString_default(value);
83
- }
84
- var baseGetTag_default = baseGetTag;
85
-
86
- // node_modules/lodash-es/isObjectLike.js
87
- function isObjectLike(value) {
88
- return value != null && typeof value == "object";
89
- }
90
- var isObjectLike_default = isObjectLike;
91
-
92
- // node_modules/lodash-es/isArray.js
93
- var isArray = Array.isArray;
94
- var isArray_default = isArray;
95
-
96
- // node_modules/lodash-es/isObject.js
97
- function isObject(value) {
98
- var type = typeof value;
99
- return value != null && (type == "object" || type == "function");
100
- }
101
- var isObject_default = isObject;
102
-
103
- // node_modules/lodash-es/identity.js
104
- function identity(value) {
105
- return value;
106
- }
107
- var identity_default = identity;
108
-
109
- // node_modules/lodash-es/isFunction.js
110
- var asyncTag = "[object AsyncFunction]";
111
- var funcTag = "[object Function]";
112
- var genTag = "[object GeneratorFunction]";
113
- var proxyTag = "[object Proxy]";
114
- function isFunction(value) {
115
- if (!isObject_default(value)) {
116
- return false;
117
- }
118
- var tag = baseGetTag_default(value);
119
- return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;
120
- }
121
- var isFunction_default = isFunction;
122
-
123
- // node_modules/lodash-es/_coreJsData.js
124
- var coreJsData = root_default["__core-js_shared__"];
125
- var coreJsData_default = coreJsData;
126
-
127
- // node_modules/lodash-es/_isMasked.js
128
- var maskSrcKey = function() {
129
- var uid = /[^.]+$/.exec(coreJsData_default && coreJsData_default.keys && coreJsData_default.keys.IE_PROTO || "");
130
- return uid ? "Symbol(src)_1." + uid : "";
131
- }();
132
- function isMasked(func) {
133
- return !!maskSrcKey && maskSrcKey in func;
134
- }
135
- var isMasked_default = isMasked;
136
-
137
- // node_modules/lodash-es/_toSource.js
138
- var funcProto = Function.prototype;
139
- var funcToString = funcProto.toString;
140
- function toSource(func) {
141
- if (func != null) {
142
- try {
143
- return funcToString.call(func);
144
- } catch (e) {
145
- }
146
- try {
147
- return func + "";
148
- } catch (e) {
149
- }
150
- }
151
- return "";
152
- }
153
- var toSource_default = toSource;
154
-
155
- // node_modules/lodash-es/_baseIsNative.js
156
- var reRegExpChar = /[\\^$.*+?()[\]{}|]/g;
157
- var reIsHostCtor = /^\[object .+?Constructor\]$/;
158
- var funcProto2 = Function.prototype;
159
- var objectProto3 = Object.prototype;
160
- var funcToString2 = funcProto2.toString;
161
- var hasOwnProperty2 = objectProto3.hasOwnProperty;
162
- var reIsNative = RegExp(
163
- "^" + funcToString2.call(hasOwnProperty2).replace(reRegExpChar, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"
164
- );
165
- function baseIsNative(value) {
166
- if (!isObject_default(value) || isMasked_default(value)) {
167
- return false;
168
- }
169
- var pattern = isFunction_default(value) ? reIsNative : reIsHostCtor;
170
- return pattern.test(toSource_default(value));
171
- }
172
- var baseIsNative_default = baseIsNative;
173
-
174
- // node_modules/lodash-es/_getValue.js
175
- function getValue(object, key) {
176
- return object == null ? void 0 : object[key];
177
- }
178
- var getValue_default = getValue;
179
-
180
- // node_modules/lodash-es/_getNative.js
181
- function getNative(object, key) {
182
- var value = getValue_default(object, key);
183
- return baseIsNative_default(value) ? value : void 0;
184
- }
185
- var getNative_default = getNative;
186
-
187
- // node_modules/lodash-es/_baseCreate.js
188
- var objectCreate = Object.create;
189
- var baseCreate = /* @__PURE__ */ function() {
190
- function object() {
191
- }
192
- return function(proto) {
193
- if (!isObject_default(proto)) {
194
- return {};
195
- }
196
- if (objectCreate) {
197
- return objectCreate(proto);
198
- }
199
- object.prototype = proto;
200
- var result = new object();
201
- object.prototype = void 0;
202
- return result;
203
- };
204
- }();
205
- var baseCreate_default = baseCreate;
206
-
207
- // node_modules/lodash-es/_apply.js
208
- function apply(func, thisArg, args) {
209
- switch (args.length) {
210
- case 0:
211
- return func.call(thisArg);
212
- case 1:
213
- return func.call(thisArg, args[0]);
214
- case 2:
215
- return func.call(thisArg, args[0], args[1]);
216
- case 3:
217
- return func.call(thisArg, args[0], args[1], args[2]);
218
- }
219
- return func.apply(thisArg, args);
220
- }
221
- var apply_default = apply;
222
-
223
- // node_modules/lodash-es/_copyArray.js
224
- function copyArray(source, array) {
225
- var index = -1, length = source.length;
226
- array || (array = Array(length));
227
- while (++index < length) {
228
- array[index] = source[index];
229
- }
230
- return array;
231
- }
232
- var copyArray_default = copyArray;
233
-
234
- // node_modules/lodash-es/_shortOut.js
235
- var HOT_COUNT = 800;
236
- var HOT_SPAN = 16;
237
- var nativeNow = Date.now;
238
- function shortOut(func) {
239
- var count = 0, lastCalled = 0;
240
- return function() {
241
- var stamp = nativeNow(), remaining = HOT_SPAN - (stamp - lastCalled);
242
- lastCalled = stamp;
243
- if (remaining > 0) {
244
- if (++count >= HOT_COUNT) {
245
- return arguments[0];
29
+ // src/core/helpers/object.ts
30
+ var merge = (...objects) => {
31
+ return objects.reduce((acc, obj) => {
32
+ Object.keys(obj).forEach((key) => {
33
+ const accValue = acc[key];
34
+ const objValue = obj[key];
35
+ if ((accValue === void 0 || accValue === null) && objValue) {
36
+ acc[key] = objValue;
37
+ } else if ((objValue === void 0 || objValue === null) && accValue) {
38
+ } else if (Array.isArray(objValue) && Array.isArray(accValue)) {
39
+ acc[key] = accValue.concat(objValue);
40
+ } else if (typeof objValue === "object" && objValue !== null && typeof accValue === "object" && accValue !== null) {
41
+ acc[key] = merge(accValue, objValue);
42
+ } else {
43
+ acc[key] = objValue;
246
44
  }
247
- } else {
248
- count = 0;
249
- }
250
- return func.apply(void 0, arguments);
251
- };
252
- }
253
- var shortOut_default = shortOut;
254
-
255
- // node_modules/lodash-es/constant.js
256
- function constant(value) {
257
- return function() {
258
- return value;
259
- };
260
- }
261
- var constant_default = constant;
262
-
263
- // node_modules/lodash-es/_defineProperty.js
264
- var defineProperty = function() {
265
- try {
266
- var func = getNative_default(Object, "defineProperty");
267
- func({}, "", {});
268
- return func;
269
- } catch (e) {
270
- }
271
- }();
272
- var defineProperty_default = defineProperty;
273
-
274
- // node_modules/lodash-es/_baseSetToString.js
275
- var baseSetToString = !defineProperty_default ? identity_default : function(func, string) {
276
- return defineProperty_default(func, "toString", {
277
- "configurable": true,
278
- "enumerable": false,
279
- "value": constant_default(string),
280
- "writable": true
281
- });
282
- };
283
- var baseSetToString_default = baseSetToString;
284
-
285
- // node_modules/lodash-es/_setToString.js
286
- var setToString = shortOut_default(baseSetToString_default);
287
- var setToString_default = setToString;
288
-
289
- // node_modules/lodash-es/_isIndex.js
290
- var MAX_SAFE_INTEGER = 9007199254740991;
291
- var reIsUint = /^(?:0|[1-9]\d*)$/;
292
- function isIndex(value, length) {
293
- var type = typeof value;
294
- length = length == null ? MAX_SAFE_INTEGER : length;
295
- return !!length && (type == "number" || type != "symbol" && reIsUint.test(value)) && (value > -1 && value % 1 == 0 && value < length);
296
- }
297
- var isIndex_default = isIndex;
298
-
299
- // node_modules/lodash-es/_baseAssignValue.js
300
- function baseAssignValue(object, key, value) {
301
- if (key == "__proto__" && defineProperty_default) {
302
- defineProperty_default(object, key, {
303
- "configurable": true,
304
- "enumerable": true,
305
- "value": value,
306
- "writable": true
307
45
  });
308
- } else {
309
- object[key] = value;
310
- }
311
- }
312
- var baseAssignValue_default = baseAssignValue;
313
-
314
- // node_modules/lodash-es/eq.js
315
- function eq(value, other) {
316
- return value === other || value !== value && other !== other;
317
- }
318
- var eq_default = eq;
319
-
320
- // node_modules/lodash-es/_assignValue.js
321
- var objectProto4 = Object.prototype;
322
- var hasOwnProperty3 = objectProto4.hasOwnProperty;
323
- function assignValue(object, key, value) {
324
- var objValue = object[key];
325
- if (!(hasOwnProperty3.call(object, key) && eq_default(objValue, value)) || value === void 0 && !(key in object)) {
326
- baseAssignValue_default(object, key, value);
327
- }
328
- }
329
- var assignValue_default = assignValue;
330
-
331
- // node_modules/lodash-es/_copyObject.js
332
- function copyObject(source, props, object, customizer) {
333
- var isNew = !object;
334
- object || (object = {});
335
- var index = -1, length = props.length;
336
- while (++index < length) {
337
- var key = props[index];
338
- var newValue = customizer ? customizer(object[key], source[key], key, object, source) : void 0;
339
- if (newValue === void 0) {
340
- newValue = source[key];
341
- }
342
- if (isNew) {
343
- baseAssignValue_default(object, key, newValue);
344
- } else {
345
- assignValue_default(object, key, newValue);
346
- }
347
- }
348
- return object;
349
- }
350
- var copyObject_default = copyObject;
351
-
352
- // node_modules/lodash-es/_overRest.js
353
- var nativeMax = Math.max;
354
- function overRest(func, start, transform) {
355
- start = nativeMax(start === void 0 ? func.length - 1 : start, 0);
356
- return function() {
357
- var args = arguments, index = -1, length = nativeMax(args.length - start, 0), array = Array(length);
358
- while (++index < length) {
359
- array[index] = args[start + index];
360
- }
361
- index = -1;
362
- var otherArgs = Array(start + 1);
363
- while (++index < start) {
364
- otherArgs[index] = args[index];
365
- }
366
- otherArgs[start] = transform(array);
367
- return apply_default(func, this, otherArgs);
368
- };
369
- }
370
- var overRest_default = overRest;
371
-
372
- // node_modules/lodash-es/_baseRest.js
373
- function baseRest(func, start) {
374
- return setToString_default(overRest_default(func, start, identity_default), func + "");
375
- }
376
- var baseRest_default = baseRest;
377
-
378
- // node_modules/lodash-es/isLength.js
379
- var MAX_SAFE_INTEGER2 = 9007199254740991;
380
- function isLength(value) {
381
- return typeof value == "number" && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER2;
382
- }
383
- var isLength_default = isLength;
384
-
385
- // node_modules/lodash-es/isArrayLike.js
386
- function isArrayLike(value) {
387
- return value != null && isLength_default(value.length) && !isFunction_default(value);
388
- }
389
- var isArrayLike_default = isArrayLike;
390
-
391
- // node_modules/lodash-es/_isIterateeCall.js
392
- function isIterateeCall(value, index, object) {
393
- if (!isObject_default(object)) {
394
- return false;
395
- }
396
- var type = typeof index;
397
- if (type == "number" ? isArrayLike_default(object) && isIndex_default(index, object.length) : type == "string" && index in object) {
398
- return eq_default(object[index], value);
399
- }
400
- return false;
401
- }
402
- var isIterateeCall_default = isIterateeCall;
403
-
404
- // node_modules/lodash-es/_createAssigner.js
405
- function createAssigner(assigner) {
406
- return baseRest_default(function(object, sources) {
407
- var index = -1, length = sources.length, customizer = length > 1 ? sources[length - 1] : void 0, guard = length > 2 ? sources[2] : void 0;
408
- customizer = assigner.length > 3 && typeof customizer == "function" ? (length--, customizer) : void 0;
409
- if (guard && isIterateeCall_default(sources[0], sources[1], guard)) {
410
- customizer = length < 3 ? void 0 : customizer;
411
- length = 1;
412
- }
413
- object = Object(object);
414
- while (++index < length) {
415
- var source = sources[index];
416
- if (source) {
417
- assigner(object, source, index, customizer);
418
- }
419
- }
420
- return object;
421
- });
422
- }
423
- var createAssigner_default = createAssigner;
424
-
425
- // node_modules/lodash-es/_isPrototype.js
426
- var objectProto5 = Object.prototype;
427
- function isPrototype(value) {
428
- var Ctor = value && value.constructor, proto = typeof Ctor == "function" && Ctor.prototype || objectProto5;
429
- return value === proto;
430
- }
431
- var isPrototype_default = isPrototype;
432
-
433
- // node_modules/lodash-es/_baseTimes.js
434
- function baseTimes(n, iteratee) {
435
- var index = -1, result = Array(n);
436
- while (++index < n) {
437
- result[index] = iteratee(index);
438
- }
439
- return result;
440
- }
441
- var baseTimes_default = baseTimes;
442
-
443
- // node_modules/lodash-es/_baseIsArguments.js
444
- var argsTag = "[object Arguments]";
445
- function baseIsArguments(value) {
446
- return isObjectLike_default(value) && baseGetTag_default(value) == argsTag;
447
- }
448
- var baseIsArguments_default = baseIsArguments;
449
-
450
- // node_modules/lodash-es/isArguments.js
451
- var objectProto6 = Object.prototype;
452
- var hasOwnProperty4 = objectProto6.hasOwnProperty;
453
- var propertyIsEnumerable = objectProto6.propertyIsEnumerable;
454
- var isArguments = baseIsArguments_default(/* @__PURE__ */ function() {
455
- return arguments;
456
- }()) ? baseIsArguments_default : function(value) {
457
- return isObjectLike_default(value) && hasOwnProperty4.call(value, "callee") && !propertyIsEnumerable.call(value, "callee");
46
+ return acc;
47
+ }, {});
458
48
  };
459
- var isArguments_default = isArguments;
460
-
461
- // node_modules/lodash-es/stubFalse.js
462
- function stubFalse() {
463
- return false;
464
- }
465
- var stubFalse_default = stubFalse;
466
-
467
- // node_modules/lodash-es/isBuffer.js
468
- var freeExports = typeof exports == "object" && exports && !exports.nodeType && exports;
469
- var freeModule = freeExports && typeof module == "object" && module && !module.nodeType && module;
470
- var moduleExports = freeModule && freeModule.exports === freeExports;
471
- var Buffer2 = moduleExports ? root_default.Buffer : void 0;
472
- var nativeIsBuffer = Buffer2 ? Buffer2.isBuffer : void 0;
473
- var isBuffer = nativeIsBuffer || stubFalse_default;
474
- var isBuffer_default = isBuffer;
475
-
476
- // node_modules/lodash-es/_baseIsTypedArray.js
477
- var argsTag2 = "[object Arguments]";
478
- var arrayTag = "[object Array]";
479
- var boolTag = "[object Boolean]";
480
- var dateTag = "[object Date]";
481
- var errorTag = "[object Error]";
482
- var funcTag2 = "[object Function]";
483
- var mapTag = "[object Map]";
484
- var numberTag = "[object Number]";
485
- var objectTag = "[object Object]";
486
- var regexpTag = "[object RegExp]";
487
- var setTag = "[object Set]";
488
- var stringTag = "[object String]";
489
- var weakMapTag = "[object WeakMap]";
490
- var arrayBufferTag = "[object ArrayBuffer]";
491
- var dataViewTag = "[object DataView]";
492
- var float32Tag = "[object Float32Array]";
493
- var float64Tag = "[object Float64Array]";
494
- var int8Tag = "[object Int8Array]";
495
- var int16Tag = "[object Int16Array]";
496
- var int32Tag = "[object Int32Array]";
497
- var uint8Tag = "[object Uint8Array]";
498
- var uint8ClampedTag = "[object Uint8ClampedArray]";
499
- var uint16Tag = "[object Uint16Array]";
500
- var uint32Tag = "[object Uint32Array]";
501
- var typedArrayTags = {};
502
- typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = typedArrayTags[uint32Tag] = true;
503
- typedArrayTags[argsTag2] = typedArrayTags[arrayTag] = typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = typedArrayTags[dataViewTag] = typedArrayTags[dateTag] = typedArrayTags[errorTag] = typedArrayTags[funcTag2] = typedArrayTags[mapTag] = typedArrayTags[numberTag] = typedArrayTags[objectTag] = typedArrayTags[regexpTag] = typedArrayTags[setTag] = typedArrayTags[stringTag] = typedArrayTags[weakMapTag] = false;
504
- function baseIsTypedArray(value) {
505
- return isObjectLike_default(value) && isLength_default(value.length) && !!typedArrayTags[baseGetTag_default(value)];
506
- }
507
- var baseIsTypedArray_default = baseIsTypedArray;
508
-
509
- // node_modules/lodash-es/_baseUnary.js
510
- function baseUnary(func) {
511
- return function(value) {
512
- return func(value);
513
- };
514
- }
515
- var baseUnary_default = baseUnary;
516
-
517
- // node_modules/lodash-es/_nodeUtil.js
518
- var freeExports2 = typeof exports == "object" && exports && !exports.nodeType && exports;
519
- var freeModule2 = freeExports2 && typeof module == "object" && module && !module.nodeType && module;
520
- var moduleExports2 = freeModule2 && freeModule2.exports === freeExports2;
521
- var freeProcess = moduleExports2 && freeGlobal_default.process;
522
- var nodeUtil = function() {
523
- try {
524
- var types = freeModule2 && freeModule2.require && freeModule2.require("util").types;
525
- if (types) {
526
- return types;
527
- }
528
- return freeProcess && freeProcess.binding && freeProcess.binding("util");
529
- } catch (e) {
530
- }
531
- }();
532
- var nodeUtil_default = nodeUtil;
533
-
534
- // node_modules/lodash-es/isTypedArray.js
535
- var nodeIsTypedArray = nodeUtil_default && nodeUtil_default.isTypedArray;
536
- var isTypedArray = nodeIsTypedArray ? baseUnary_default(nodeIsTypedArray) : baseIsTypedArray_default;
537
- var isTypedArray_default = isTypedArray;
538
-
539
- // node_modules/lodash-es/_arrayLikeKeys.js
540
- var objectProto7 = Object.prototype;
541
- var hasOwnProperty5 = objectProto7.hasOwnProperty;
542
- function arrayLikeKeys(value, inherited) {
543
- var isArr = isArray_default(value), isArg = !isArr && isArguments_default(value), isBuff = !isArr && !isArg && isBuffer_default(value), isType = !isArr && !isArg && !isBuff && isTypedArray_default(value), skipIndexes = isArr || isArg || isBuff || isType, result = skipIndexes ? baseTimes_default(value.length, String) : [], length = result.length;
544
- for (var key in value) {
545
- if ((inherited || hasOwnProperty5.call(value, key)) && !(skipIndexes && // Safari 9 has enumerable `arguments.length` in strict mode.
546
- (key == "length" || // Node.js 0.10 has enumerable non-index properties on buffers.
547
- isBuff && (key == "offset" || key == "parent") || // PhantomJS 2 has enumerable non-index properties on typed arrays.
548
- isType && (key == "buffer" || key == "byteLength" || key == "byteOffset") || // Skip index properties.
549
- isIndex_default(key, length)))) {
550
- result.push(key);
551
- }
552
- }
553
- return result;
554
- }
555
- var arrayLikeKeys_default = arrayLikeKeys;
556
-
557
- // node_modules/lodash-es/_overArg.js
558
- function overArg(func, transform) {
559
- return function(arg) {
560
- return func(transform(arg));
561
- };
562
- }
563
- var overArg_default = overArg;
564
-
565
- // node_modules/lodash-es/_nativeKeysIn.js
566
- function nativeKeysIn(object) {
567
- var result = [];
568
- if (object != null) {
569
- for (var key in Object(object)) {
570
- result.push(key);
571
- }
572
- }
573
- return result;
574
- }
575
- var nativeKeysIn_default = nativeKeysIn;
576
-
577
- // node_modules/lodash-es/_baseKeysIn.js
578
- var objectProto8 = Object.prototype;
579
- var hasOwnProperty6 = objectProto8.hasOwnProperty;
580
- function baseKeysIn(object) {
581
- if (!isObject_default(object)) {
582
- return nativeKeysIn_default(object);
583
- }
584
- var isProto = isPrototype_default(object), result = [];
585
- for (var key in object) {
586
- if (!(key == "constructor" && (isProto || !hasOwnProperty6.call(object, key)))) {
587
- result.push(key);
588
- }
589
- }
590
- return result;
591
- }
592
- var baseKeysIn_default = baseKeysIn;
593
-
594
- // node_modules/lodash-es/keysIn.js
595
- function keysIn(object) {
596
- return isArrayLike_default(object) ? arrayLikeKeys_default(object, true) : baseKeysIn_default(object);
597
- }
598
- var keysIn_default = keysIn;
599
-
600
- // node_modules/lodash-es/_nativeCreate.js
601
- var nativeCreate = getNative_default(Object, "create");
602
- var nativeCreate_default = nativeCreate;
603
-
604
- // node_modules/lodash-es/_hashClear.js
605
- function hashClear() {
606
- this.__data__ = nativeCreate_default ? nativeCreate_default(null) : {};
607
- this.size = 0;
608
- }
609
- var hashClear_default = hashClear;
610
-
611
- // node_modules/lodash-es/_hashDelete.js
612
- function hashDelete(key) {
613
- var result = this.has(key) && delete this.__data__[key];
614
- this.size -= result ? 1 : 0;
615
- return result;
616
- }
617
- var hashDelete_default = hashDelete;
618
-
619
- // node_modules/lodash-es/_hashGet.js
620
- var HASH_UNDEFINED = "__lodash_hash_undefined__";
621
- var objectProto9 = Object.prototype;
622
- var hasOwnProperty7 = objectProto9.hasOwnProperty;
623
- function hashGet(key) {
624
- var data = this.__data__;
625
- if (nativeCreate_default) {
626
- var result = data[key];
627
- return result === HASH_UNDEFINED ? void 0 : result;
628
- }
629
- return hasOwnProperty7.call(data, key) ? data[key] : void 0;
630
- }
631
- var hashGet_default = hashGet;
632
-
633
- // node_modules/lodash-es/_hashHas.js
634
- var objectProto10 = Object.prototype;
635
- var hasOwnProperty8 = objectProto10.hasOwnProperty;
636
- function hashHas(key) {
637
- var data = this.__data__;
638
- return nativeCreate_default ? data[key] !== void 0 : hasOwnProperty8.call(data, key);
639
- }
640
- var hashHas_default = hashHas;
641
-
642
- // node_modules/lodash-es/_hashSet.js
643
- var HASH_UNDEFINED2 = "__lodash_hash_undefined__";
644
- function hashSet(key, value) {
645
- var data = this.__data__;
646
- this.size += this.has(key) ? 0 : 1;
647
- data[key] = nativeCreate_default && value === void 0 ? HASH_UNDEFINED2 : value;
648
- return this;
649
- }
650
- var hashSet_default = hashSet;
651
-
652
- // node_modules/lodash-es/_Hash.js
653
- function Hash(entries) {
654
- var index = -1, length = entries == null ? 0 : entries.length;
655
- this.clear();
656
- while (++index < length) {
657
- var entry = entries[index];
658
- this.set(entry[0], entry[1]);
659
- }
660
- }
661
- Hash.prototype.clear = hashClear_default;
662
- Hash.prototype["delete"] = hashDelete_default;
663
- Hash.prototype.get = hashGet_default;
664
- Hash.prototype.has = hashHas_default;
665
- Hash.prototype.set = hashSet_default;
666
- var Hash_default = Hash;
667
-
668
- // node_modules/lodash-es/_listCacheClear.js
669
- function listCacheClear() {
670
- this.__data__ = [];
671
- this.size = 0;
672
- }
673
- var listCacheClear_default = listCacheClear;
674
-
675
- // node_modules/lodash-es/_assocIndexOf.js
676
- function assocIndexOf(array, key) {
677
- var length = array.length;
678
- while (length--) {
679
- if (eq_default(array[length][0], key)) {
680
- return length;
681
- }
682
- }
683
- return -1;
684
- }
685
- var assocIndexOf_default = assocIndexOf;
686
-
687
- // node_modules/lodash-es/_listCacheDelete.js
688
- var arrayProto = Array.prototype;
689
- var splice = arrayProto.splice;
690
- function listCacheDelete(key) {
691
- var data = this.__data__, index = assocIndexOf_default(data, key);
692
- if (index < 0) {
693
- return false;
694
- }
695
- var lastIndex = data.length - 1;
696
- if (index == lastIndex) {
697
- data.pop();
698
- } else {
699
- splice.call(data, index, 1);
700
- }
701
- --this.size;
702
- return true;
703
- }
704
- var listCacheDelete_default = listCacheDelete;
705
-
706
- // node_modules/lodash-es/_listCacheGet.js
707
- function listCacheGet(key) {
708
- var data = this.__data__, index = assocIndexOf_default(data, key);
709
- return index < 0 ? void 0 : data[index][1];
710
- }
711
- var listCacheGet_default = listCacheGet;
712
-
713
- // node_modules/lodash-es/_listCacheHas.js
714
- function listCacheHas(key) {
715
- return assocIndexOf_default(this.__data__, key) > -1;
716
- }
717
- var listCacheHas_default = listCacheHas;
718
-
719
- // node_modules/lodash-es/_listCacheSet.js
720
- function listCacheSet(key, value) {
721
- var data = this.__data__, index = assocIndexOf_default(data, key);
722
- if (index < 0) {
723
- ++this.size;
724
- data.push([key, value]);
725
- } else {
726
- data[index][1] = value;
727
- }
728
- return this;
729
- }
730
- var listCacheSet_default = listCacheSet;
731
-
732
- // node_modules/lodash-es/_ListCache.js
733
- function ListCache(entries) {
734
- var index = -1, length = entries == null ? 0 : entries.length;
735
- this.clear();
736
- while (++index < length) {
737
- var entry = entries[index];
738
- this.set(entry[0], entry[1]);
739
- }
740
- }
741
- ListCache.prototype.clear = listCacheClear_default;
742
- ListCache.prototype["delete"] = listCacheDelete_default;
743
- ListCache.prototype.get = listCacheGet_default;
744
- ListCache.prototype.has = listCacheHas_default;
745
- ListCache.prototype.set = listCacheSet_default;
746
- var ListCache_default = ListCache;
747
-
748
- // node_modules/lodash-es/_Map.js
749
- var Map = getNative_default(root_default, "Map");
750
- var Map_default = Map;
751
-
752
- // node_modules/lodash-es/_mapCacheClear.js
753
- function mapCacheClear() {
754
- this.size = 0;
755
- this.__data__ = {
756
- "hash": new Hash_default(),
757
- "map": new (Map_default || ListCache_default)(),
758
- "string": new Hash_default()
759
- };
760
- }
761
- var mapCacheClear_default = mapCacheClear;
762
-
763
- // node_modules/lodash-es/_isKeyable.js
764
- function isKeyable(value) {
765
- var type = typeof value;
766
- return type == "string" || type == "number" || type == "symbol" || type == "boolean" ? value !== "__proto__" : value === null;
767
- }
768
- var isKeyable_default = isKeyable;
769
-
770
- // node_modules/lodash-es/_getMapData.js
771
- function getMapData(map, key) {
772
- var data = map.__data__;
773
- return isKeyable_default(key) ? data[typeof key == "string" ? "string" : "hash"] : data.map;
774
- }
775
- var getMapData_default = getMapData;
776
-
777
- // node_modules/lodash-es/_mapCacheDelete.js
778
- function mapCacheDelete(key) {
779
- var result = getMapData_default(this, key)["delete"](key);
780
- this.size -= result ? 1 : 0;
781
- return result;
782
- }
783
- var mapCacheDelete_default = mapCacheDelete;
784
-
785
- // node_modules/lodash-es/_mapCacheGet.js
786
- function mapCacheGet(key) {
787
- return getMapData_default(this, key).get(key);
788
- }
789
- var mapCacheGet_default = mapCacheGet;
790
-
791
- // node_modules/lodash-es/_mapCacheHas.js
792
- function mapCacheHas(key) {
793
- return getMapData_default(this, key).has(key);
794
- }
795
- var mapCacheHas_default = mapCacheHas;
796
-
797
- // node_modules/lodash-es/_mapCacheSet.js
798
- function mapCacheSet(key, value) {
799
- var data = getMapData_default(this, key), size = data.size;
800
- data.set(key, value);
801
- this.size += data.size == size ? 0 : 1;
802
- return this;
803
- }
804
- var mapCacheSet_default = mapCacheSet;
805
-
806
- // node_modules/lodash-es/_MapCache.js
807
- function MapCache(entries) {
808
- var index = -1, length = entries == null ? 0 : entries.length;
809
- this.clear();
810
- while (++index < length) {
811
- var entry = entries[index];
812
- this.set(entry[0], entry[1]);
813
- }
814
- }
815
- MapCache.prototype.clear = mapCacheClear_default;
816
- MapCache.prototype["delete"] = mapCacheDelete_default;
817
- MapCache.prototype.get = mapCacheGet_default;
818
- MapCache.prototype.has = mapCacheHas_default;
819
- MapCache.prototype.set = mapCacheSet_default;
820
- var MapCache_default = MapCache;
821
-
822
- // node_modules/lodash-es/_getPrototype.js
823
- var getPrototype = overArg_default(Object.getPrototypeOf, Object);
824
- var getPrototype_default = getPrototype;
825
-
826
- // node_modules/lodash-es/isPlainObject.js
827
- var objectTag2 = "[object Object]";
828
- var funcProto3 = Function.prototype;
829
- var objectProto11 = Object.prototype;
830
- var funcToString3 = funcProto3.toString;
831
- var hasOwnProperty9 = objectProto11.hasOwnProperty;
832
- var objectCtorString = funcToString3.call(Object);
833
- function isPlainObject(value) {
834
- if (!isObjectLike_default(value) || baseGetTag_default(value) != objectTag2) {
835
- return false;
836
- }
837
- var proto = getPrototype_default(value);
838
- if (proto === null) {
839
- return true;
840
- }
841
- var Ctor = hasOwnProperty9.call(proto, "constructor") && proto.constructor;
842
- return typeof Ctor == "function" && Ctor instanceof Ctor && funcToString3.call(Ctor) == objectCtorString;
843
- }
844
- var isPlainObject_default = isPlainObject;
845
-
846
- // node_modules/lodash-es/_stackClear.js
847
- function stackClear() {
848
- this.__data__ = new ListCache_default();
849
- this.size = 0;
850
- }
851
- var stackClear_default = stackClear;
852
-
853
- // node_modules/lodash-es/_stackDelete.js
854
- function stackDelete(key) {
855
- var data = this.__data__, result = data["delete"](key);
856
- this.size = data.size;
857
- return result;
858
- }
859
- var stackDelete_default = stackDelete;
860
-
861
- // node_modules/lodash-es/_stackGet.js
862
- function stackGet(key) {
863
- return this.__data__.get(key);
864
- }
865
- var stackGet_default = stackGet;
866
-
867
- // node_modules/lodash-es/_stackHas.js
868
- function stackHas(key) {
869
- return this.__data__.has(key);
870
- }
871
- var stackHas_default = stackHas;
872
-
873
- // node_modules/lodash-es/_stackSet.js
874
- var LARGE_ARRAY_SIZE = 200;
875
- function stackSet(key, value) {
876
- var data = this.__data__;
877
- if (data instanceof ListCache_default) {
878
- var pairs = data.__data__;
879
- if (!Map_default || pairs.length < LARGE_ARRAY_SIZE - 1) {
880
- pairs.push([key, value]);
881
- this.size = ++data.size;
882
- return this;
883
- }
884
- data = this.__data__ = new MapCache_default(pairs);
885
- }
886
- data.set(key, value);
887
- this.size = data.size;
888
- return this;
889
- }
890
- var stackSet_default = stackSet;
891
-
892
- // node_modules/lodash-es/_Stack.js
893
- function Stack(entries) {
894
- var data = this.__data__ = new ListCache_default(entries);
895
- this.size = data.size;
896
- }
897
- Stack.prototype.clear = stackClear_default;
898
- Stack.prototype["delete"] = stackDelete_default;
899
- Stack.prototype.get = stackGet_default;
900
- Stack.prototype.has = stackHas_default;
901
- Stack.prototype.set = stackSet_default;
902
- var Stack_default = Stack;
903
-
904
- // node_modules/lodash-es/_cloneBuffer.js
905
- var freeExports3 = typeof exports == "object" && exports && !exports.nodeType && exports;
906
- var freeModule3 = freeExports3 && typeof module == "object" && module && !module.nodeType && module;
907
- var moduleExports3 = freeModule3 && freeModule3.exports === freeExports3;
908
- var Buffer3 = moduleExports3 ? root_default.Buffer : void 0;
909
- var allocUnsafe = Buffer3 ? Buffer3.allocUnsafe : void 0;
910
- function cloneBuffer(buffer, isDeep) {
911
- if (isDeep) {
912
- return buffer.slice();
913
- }
914
- var length = buffer.length, result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
915
- buffer.copy(result);
916
- return result;
917
- }
918
- var cloneBuffer_default = cloneBuffer;
919
-
920
- // node_modules/lodash-es/_Uint8Array.js
921
- var Uint8Array2 = root_default.Uint8Array;
922
- var Uint8Array_default = Uint8Array2;
923
-
924
- // node_modules/lodash-es/_cloneArrayBuffer.js
925
- function cloneArrayBuffer(arrayBuffer) {
926
- var result = new arrayBuffer.constructor(arrayBuffer.byteLength);
927
- new Uint8Array_default(result).set(new Uint8Array_default(arrayBuffer));
928
- return result;
929
- }
930
- var cloneArrayBuffer_default = cloneArrayBuffer;
931
-
932
- // node_modules/lodash-es/_cloneTypedArray.js
933
- function cloneTypedArray(typedArray, isDeep) {
934
- var buffer = isDeep ? cloneArrayBuffer_default(typedArray.buffer) : typedArray.buffer;
935
- return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);
936
- }
937
- var cloneTypedArray_default = cloneTypedArray;
938
-
939
- // node_modules/lodash-es/_initCloneObject.js
940
- function initCloneObject(object) {
941
- return typeof object.constructor == "function" && !isPrototype_default(object) ? baseCreate_default(getPrototype_default(object)) : {};
942
- }
943
- var initCloneObject_default = initCloneObject;
944
-
945
- // node_modules/lodash-es/_createBaseFor.js
946
- function createBaseFor(fromRight) {
947
- return function(object, iteratee, keysFunc) {
948
- var index = -1, iterable = Object(object), props = keysFunc(object), length = props.length;
949
- while (length--) {
950
- var key = props[fromRight ? length : ++index];
951
- if (iteratee(iterable[key], key, iterable) === false) {
952
- break;
953
- }
954
- }
955
- return object;
956
- };
957
- }
958
- var createBaseFor_default = createBaseFor;
959
-
960
- // node_modules/lodash-es/_baseFor.js
961
- var baseFor = createBaseFor_default();
962
- var baseFor_default = baseFor;
963
-
964
- // node_modules/lodash-es/_assignMergeValue.js
965
- function assignMergeValue(object, key, value) {
966
- if (value !== void 0 && !eq_default(object[key], value) || value === void 0 && !(key in object)) {
967
- baseAssignValue_default(object, key, value);
968
- }
969
- }
970
- var assignMergeValue_default = assignMergeValue;
971
-
972
- // node_modules/lodash-es/isArrayLikeObject.js
973
- function isArrayLikeObject(value) {
974
- return isObjectLike_default(value) && isArrayLike_default(value);
975
- }
976
- var isArrayLikeObject_default = isArrayLikeObject;
977
-
978
- // node_modules/lodash-es/_safeGet.js
979
- function safeGet(object, key) {
980
- if (key === "constructor" && typeof object[key] === "function") {
981
- return;
982
- }
983
- if (key == "__proto__") {
984
- return;
985
- }
986
- return object[key];
987
- }
988
- var safeGet_default = safeGet;
989
-
990
- // node_modules/lodash-es/toPlainObject.js
991
- function toPlainObject(value) {
992
- return copyObject_default(value, keysIn_default(value));
993
- }
994
- var toPlainObject_default = toPlainObject;
995
-
996
- // node_modules/lodash-es/_baseMergeDeep.js
997
- function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) {
998
- var objValue = safeGet_default(object, key), srcValue = safeGet_default(source, key), stacked = stack.get(srcValue);
999
- if (stacked) {
1000
- assignMergeValue_default(object, key, stacked);
1001
- return;
1002
- }
1003
- var newValue = customizer ? customizer(objValue, srcValue, key + "", object, source, stack) : void 0;
1004
- var isCommon = newValue === void 0;
1005
- if (isCommon) {
1006
- var isArr = isArray_default(srcValue), isBuff = !isArr && isBuffer_default(srcValue), isTyped = !isArr && !isBuff && isTypedArray_default(srcValue);
1007
- newValue = srcValue;
1008
- if (isArr || isBuff || isTyped) {
1009
- if (isArray_default(objValue)) {
1010
- newValue = objValue;
1011
- } else if (isArrayLikeObject_default(objValue)) {
1012
- newValue = copyArray_default(objValue);
1013
- } else if (isBuff) {
1014
- isCommon = false;
1015
- newValue = cloneBuffer_default(srcValue, true);
1016
- } else if (isTyped) {
1017
- isCommon = false;
1018
- newValue = cloneTypedArray_default(srcValue, true);
1019
- } else {
1020
- newValue = [];
1021
- }
1022
- } else if (isPlainObject_default(srcValue) || isArguments_default(srcValue)) {
1023
- newValue = objValue;
1024
- if (isArguments_default(objValue)) {
1025
- newValue = toPlainObject_default(objValue);
1026
- } else if (!isObject_default(objValue) || isFunction_default(objValue)) {
1027
- newValue = initCloneObject_default(srcValue);
1028
- }
1029
- } else {
1030
- isCommon = false;
1031
- }
1032
- }
1033
- if (isCommon) {
1034
- stack.set(srcValue, newValue);
1035
- mergeFunc(newValue, srcValue, srcIndex, customizer, stack);
1036
- stack["delete"](srcValue);
1037
- }
1038
- assignMergeValue_default(object, key, newValue);
1039
- }
1040
- var baseMergeDeep_default = baseMergeDeep;
1041
-
1042
- // node_modules/lodash-es/_baseMerge.js
1043
- function baseMerge(object, source, srcIndex, customizer, stack) {
1044
- if (object === source) {
1045
- return;
1046
- }
1047
- baseFor_default(source, function(srcValue, key) {
1048
- stack || (stack = new Stack_default());
1049
- if (isObject_default(srcValue)) {
1050
- baseMergeDeep_default(object, source, key, srcIndex, baseMerge, customizer, stack);
1051
- } else {
1052
- var newValue = customizer ? customizer(safeGet_default(object, key), srcValue, key + "", object, source, stack) : void 0;
1053
- if (newValue === void 0) {
1054
- newValue = srcValue;
1055
- }
1056
- assignMergeValue_default(object, key, newValue);
1057
- }
1058
- }, keysIn_default);
1059
- }
1060
- var baseMerge_default = baseMerge;
1061
-
1062
- // node_modules/lodash-es/merge.js
1063
- var merge = createAssigner_default(function(object, source, srcIndex) {
1064
- baseMerge_default(object, source, srcIndex);
1065
- });
1066
- var merge_default = merge;
1067
49
 
1068
50
  // src/core/generator/config/defaultConfig.ts
1069
51
  var getDefaultConfiguration = () => ({
@@ -1085,7 +67,7 @@ var getDefaultConfiguration = () => ({
1085
67
  languages: { associations: {} }
1086
68
  });
1087
69
  var padWithDefaultConfig = (config) => {
1088
- const withDefaultConfig = merge_default(
70
+ const withDefaultConfig = merge(
1089
71
  {},
1090
72
  getDefaultConfiguration(),
1091
73
  config != null ? config : {}
@@ -1174,7 +156,6 @@ var Manifest = class {
1174
156
  // src/core/generator/fileGenerator.ts
1175
157
  var loadFileIconDefinitions = (fileIcons2, config, manifest) => {
1176
158
  var _a;
1177
- manifest = merge_default({}, manifest);
1178
159
  const enabledIcons = disableIconsByPack(fileIcons2, config.activeIconPack);
1179
160
  const customIcons = getCustomIcons((_a = config.files) == null ? void 0 : _a.associations);
1180
161
  const allFileIcons = [...enabledIcons, ...customIcons];
@@ -1251,7 +232,7 @@ var loadFileIconDefinitions = (fileIcons2, config, manifest) => {
1251
232
  return manifest;
1252
233
  };
1253
234
  var mapSpecificFileIcons = (icon, mappingType, manifest, customFileAssociation = {}) => {
1254
- const manifestCopy = merge_default({}, manifest);
235
+ const manifestCopy = merge({}, manifest);
1255
236
  const iconMappingType = icon[mappingType];
1256
237
  if (iconMappingType === void 0) {
1257
238
  return manifestCopy;
@@ -1287,17 +268,16 @@ var disableIconsByPack = (fileIcons2, activeIconPack) => {
1287
268
  };
1288
269
  var setIconDefinition = (manifest, config, iconName, isClone, appendix = "") => {
1289
270
  var _a;
1290
- const manifestCopy = merge_default({}, manifest);
1291
271
  const ext = isClone ? cloneIconExtension : ".svg";
1292
272
  const key = `${iconName}${appendix}`;
1293
273
  (_a = manifest.iconDefinitions) != null ? _a : manifest.iconDefinitions = {};
1294
274
  if (!manifest.iconDefinitions[key]) {
1295
275
  const fileConfigHash = getFileConfigHash(config);
1296
- manifestCopy.iconDefinitions[key] = {
276
+ manifest.iconDefinitions[key] = {
1297
277
  iconPath: `${iconFolderPath}${iconName}${appendix}${fileConfigHash}${ext}`
1298
278
  };
1299
279
  }
1300
- return manifestCopy;
280
+ return manifest;
1301
281
  };
1302
282
  var getCustomIcons = (fileAssociations) => {
1303
283
  if (!fileAssociations) return [];
@@ -1318,7 +298,7 @@ var getCustomIcons = (fileAssociations) => {
1318
298
  // src/core/generator/folderGenerator.ts
1319
299
  var loadFolderIconDefinitions = (folderIcons2, config, manifest) => {
1320
300
  var _a, _b, _c;
1321
- manifest = merge_default({}, manifest);
301
+ manifest = merge({}, manifest);
1322
302
  manifest.hidesExplorerArrows = config.hidesExplorerArrows;
1323
303
  const activeTheme = getEnabledFolderTheme(folderIcons2, (_a = config.folders) == null ? void 0 : _a.theme);
1324
304
  if (!activeTheme) {
@@ -1334,13 +314,13 @@ var loadFolderIconDefinitions = (folderIcons2, config, manifest) => {
1334
314
  if (icon.disabled) return;
1335
315
  const folderNames = extendFolderNames(icon.folderNames);
1336
316
  manifest = setIconDefinitions(manifest, config, icon);
1337
- manifest = merge_default({}, manifest, setFolderNames(icon.name, folderNames));
1338
- manifest.light = icon.light ? merge_default(
317
+ manifest = merge(manifest, setFolderNames(icon.name, folderNames));
318
+ manifest.light = icon.light ? merge(
1339
319
  {},
1340
320
  manifest.light,
1341
321
  setFolderNames(icon.name, folderNames, lightColorFileEnding)
1342
322
  ) : manifest.light;
1343
- manifest.highContrast = icon.highContrast ? merge_default(
323
+ manifest.highContrast = icon.highContrast ? merge(
1344
324
  {},
1345
325
  manifest.highContrast,
1346
326
  setFolderNames(icon.name, folderNames, highContrastColorFileEnding)
@@ -1350,17 +330,16 @@ var loadFolderIconDefinitions = (folderIcons2, config, manifest) => {
1350
330
  return manifest;
1351
331
  };
1352
332
  var setDefaultFolderIcons = (theme, manifest, config) => {
1353
- manifest = merge_default({}, manifest);
1354
333
  const hasFolderIcons = !!theme.defaultIcon.name && theme.defaultIcon.name.length > 0;
1355
334
  if (hasFolderIcons) {
1356
335
  manifest = setIconDefinitions(manifest, config, theme.defaultIcon);
1357
336
  }
1358
- manifest = merge_default(
337
+ manifest = merge(
1359
338
  {},
1360
339
  manifest,
1361
340
  createDefaultIconConfigObject(hasFolderIcons, theme, "")
1362
341
  );
1363
- manifest.light = theme.defaultIcon.light ? merge_default(
342
+ manifest.light = theme.defaultIcon.light ? merge(
1364
343
  {},
1365
344
  manifest.light,
1366
345
  createDefaultIconConfigObject(
@@ -1369,7 +348,7 @@ var setDefaultFolderIcons = (theme, manifest, config) => {
1369
348
  lightColorFileEnding
1370
349
  )
1371
350
  ) : manifest.light;
1372
- manifest.highContrast = theme.defaultIcon.highContrast ? merge_default(
351
+ manifest.highContrast = theme.defaultIcon.highContrast ? merge(
1373
352
  {},
1374
353
  manifest.highContrast,
1375
354
  createDefaultIconConfigObject(
@@ -1378,14 +357,14 @@ var setDefaultFolderIcons = (theme, manifest, config) => {
1378
357
  highContrastColorFileEnding
1379
358
  )
1380
359
  ) : manifest.highContrast;
1381
- manifest = merge_default(
360
+ manifest = merge(
1382
361
  {},
1383
362
  manifest,
1384
363
  createRootIconConfigObject(hasFolderIcons, theme, "")
1385
364
  );
1386
365
  if (theme.rootFolder) {
1387
366
  manifest = setIconDefinitions(manifest, config, theme.rootFolder);
1388
- manifest.light = theme.rootFolder.light ? merge_default(
367
+ manifest.light = theme.rootFolder.light ? merge(
1389
368
  {},
1390
369
  manifest.light,
1391
370
  createRootIconConfigObject(
@@ -1394,7 +373,7 @@ var setDefaultFolderIcons = (theme, manifest, config) => {
1394
373
  lightColorFileEnding
1395
374
  )
1396
375
  ) : manifest.light;
1397
- manifest.highContrast = theme.rootFolder.highContrast ? merge_default(
376
+ manifest.highContrast = theme.rootFolder.highContrast ? merge(
1398
377
  {},
1399
378
  manifest.highContrast,
1400
379
  createRootIconConfigObject(
@@ -1419,10 +398,9 @@ var disableIconsByPack2 = (folderIcons2, activatedIconPack) => {
1419
398
  };
1420
399
  var setIconDefinitions = (manifest, config, icon) => {
1421
400
  const isClone = icon.clone !== void 0;
1422
- manifest = merge_default({}, manifest);
1423
401
  manifest = createIconDefinitions(manifest, config, icon.name, "", isClone);
1424
402
  if (icon.light) {
1425
- manifest = merge_default(
403
+ manifest = merge(
1426
404
  {},
1427
405
  manifest,
1428
406
  createIconDefinitions(
@@ -1435,7 +413,7 @@ var setIconDefinitions = (manifest, config, icon) => {
1435
413
  );
1436
414
  }
1437
415
  if (icon.highContrast) {
1438
- manifest = merge_default(
416
+ manifest = merge(
1439
417
  {},
1440
418
  manifest,
1441
419
  createIconDefinitions(
@@ -1450,7 +428,6 @@ var setIconDefinitions = (manifest, config, icon) => {
1450
428
  return manifest;
1451
429
  };
1452
430
  var createIconDefinitions = (manifest, config, iconName, appendix = "", isClone = false) => {
1453
- manifest = merge_default({}, manifest);
1454
431
  const fileConfigHash = getFileConfigHash(config);
1455
432
  const configIconDefinitions = manifest.iconDefinitions;
1456
433
  const ext = isClone ? cloneIconExtension : ".svg";
@@ -3603,20 +2580,16 @@ var fileIcons = {
3603
2580
  },
3604
2581
  {
3605
2582
  name: "vitest",
3606
- fileNames: [
3607
- "vitest.config.ts",
3608
- "vitest.config.mts",
3609
- "vitest.config.cts",
3610
- "vitest.config.js",
3611
- "vitest.config.mjs",
3612
- "vitest.config.cjs",
3613
- "vitest.workspace.ts",
3614
- "vitest.workspace.mts",
3615
- "vitest.workspace.cts",
3616
- "vitest.workspace.js",
3617
- "vitest.workspace.mjs",
3618
- "vitest.workspace.cjs"
3619
- ]
2583
+ patterns: {
2584
+ "vitest.workspace": "ecmascript" /* Ecmascript */,
2585
+ "vitest.config": "ecmascript" /* Ecmascript */
2586
+ }
2587
+ },
2588
+ {
2589
+ name: "velite",
2590
+ patterns: {
2591
+ "velite.config": "ecmascript" /* Ecmascript */
2592
+ }
3620
2593
  },
3621
2594
  { name: "opa", fileExtensions: ["rego"] },
3622
2595
  { name: "lerna", fileNames: ["lerna.json"] },
@@ -3834,14 +2807,10 @@ var fileIcons = {
3834
2807
  { name: "rome", fileNames: ["rome.json"] },
3835
2808
  {
3836
2809
  name: "cypress",
3837
- fileNames: [
3838
- "cypress.json",
3839
- "cypress.env.json",
3840
- "cypress.config.ts",
3841
- "cypress.config.js",
3842
- "cypress.config.cjs",
3843
- "cypress.config.mjs"
3844
- ]
2810
+ fileNames: ["cypress.json", "cypress.env.json"],
2811
+ patterns: {
2812
+ "cypress.config": "ecmascript" /* Ecmascript */
2813
+ }
3845
2814
  },
3846
2815
  { name: "siyuan", fileExtensions: ["sy"] },
3847
2816
  { name: "ndst", fileExtensions: ["ndst.yml", "ndst.yaml", "ndst.json"] },
@@ -4008,13 +2977,9 @@ var fileIcons = {
4008
2977
  { name: "roblox", fileExtensions: ["rbxl", "rbxlx", "rbxm", "rbxmx"] },
4009
2978
  {
4010
2979
  name: "panda",
4011
- fileNames: [
4012
- "panda.config.ts",
4013
- "panda.config.js",
4014
- "panda.config.mjs",
4015
- "panda.config.mts",
4016
- "panda.config.cjs"
4017
- ]
2980
+ patterns: {
2981
+ "panda.config": "ecmascript" /* Ecmascript */
2982
+ }
4018
2983
  },
4019
2984
  { name: "biome", fileNames: ["biome.json", "biome.jsonc"] },
4020
2985
  {
@@ -4457,6 +3422,7 @@ var folderIcons = [
4457
3422
  ]
4458
3423
  },
4459
3424
  { name: "folder-lua", folderNames: ["lua"] },
3425
+ { name: "folder-turborepo", folderNames: [".turbo"] },
4460
3426
  {
4461
3427
  name: "folder-typescript",
4462
3428
  folderNames: ["typescript", "ts", "typings", "@types", "types"]
@@ -5146,7 +4112,6 @@ var languageIcons = [
5146
4112
  // src/core/generator/languageGenerator.ts
5147
4113
  var loadLanguageIconDefinitions = (languageIcons2, config, manifest) => {
5148
4114
  var _a;
5149
- manifest = merge_default({}, manifest);
5150
4115
  const enabledLanguages = disableLanguagesByPack(
5151
4116
  languageIcons2,
5152
4117
  config.activeIconPack
@@ -5156,12 +4121,12 @@ var loadLanguageIconDefinitions = (languageIcons2, config, manifest) => {
5156
4121
  allLanguageIcons.forEach((lang) => {
5157
4122
  if (lang.disabled) return;
5158
4123
  manifest = setIconDefinitions2(manifest, config, lang.icon);
5159
- manifest = merge_default(
4124
+ manifest = merge(
5160
4125
  {},
5161
4126
  manifest,
5162
4127
  setLanguageIdentifiers(lang.icon.name, lang.ids)
5163
4128
  );
5164
- manifest.light = lang.icon.light ? merge_default(
4129
+ manifest.light = lang.icon.light ? merge(
5165
4130
  {},
5166
4131
  manifest.light,
5167
4132
  setLanguageIdentifiers(
@@ -5169,7 +4134,7 @@ var loadLanguageIconDefinitions = (languageIcons2, config, manifest) => {
5169
4134
  lang.ids
5170
4135
  )
5171
4136
  ) : manifest.light;
5172
- manifest.highContrast = lang.icon.highContrast ? merge_default(
4137
+ manifest.highContrast = lang.icon.highContrast ? merge(
5173
4138
  {},
5174
4139
  manifest.highContrast,
5175
4140
  setLanguageIdentifiers(
@@ -5181,9 +4146,8 @@ var loadLanguageIconDefinitions = (languageIcons2, config, manifest) => {
5181
4146
  return manifest;
5182
4147
  };
5183
4148
  var setIconDefinitions2 = (manifest, config, icon) => {
5184
- manifest = merge_default({}, manifest);
5185
4149
  manifest = createIconDefinitions2(manifest, config, icon.name);
5186
- manifest = merge_default(
4150
+ manifest = merge(
5187
4151
  {},
5188
4152
  manifest,
5189
4153
  icon.light ? createIconDefinitions2(
@@ -5192,7 +4156,7 @@ var setIconDefinitions2 = (manifest, config, icon) => {
5192
4156
  icon.name + lightColorFileEnding
5193
4157
  ) : manifest.light
5194
4158
  );
5195
- manifest = merge_default(
4159
+ manifest = merge(
5196
4160
  {},
5197
4161
  manifest,
5198
4162
  icon.highContrast ? createIconDefinitions2(
@@ -5204,7 +4168,6 @@ var setIconDefinitions2 = (manifest, config, icon) => {
5204
4168
  return manifest;
5205
4169
  };
5206
4170
  var createIconDefinitions2 = (manifest, config, iconName) => {
5207
- manifest = merge_default({}, manifest);
5208
4171
  const fileConfigHash = getFileConfigHash(config);
5209
4172
  if (manifest.iconDefinitions) {
5210
4173
  manifest.iconDefinitions[iconName] = {
@@ -5253,7 +4216,7 @@ var generateManifest = (config) => {
5253
4216
  refinedConfig,
5254
4217
  manifest
5255
4218
  );
5256
- return merge_default(
4219
+ return merge(
5257
4220
  {},
5258
4221
  languageIconDefinitions,
5259
4222
  fileIconDefinitions,
@@ -5269,16 +4232,3 @@ var availableIconPacks = Object.values(IconPack);
5269
4232
  availableIconPacks,
5270
4233
  generateManifest
5271
4234
  });
5272
- /*! Bundled license information:
5273
-
5274
- lodash-es/lodash.js:
5275
- (**
5276
- * @license
5277
- * Lodash (Custom Build) <https://lodash.com/>
5278
- * Build: `lodash modularize exports="es" -o ./`
5279
- * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
5280
- * Released under MIT license <https://lodash.com/license>
5281
- * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
5282
- * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
5283
- *)
5284
- */