@veloceapps/sdk 3.1.31 → 3.1.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/bundles/veloce-sdk.umd.js +85 -13
- package/bundles/veloce-sdk.umd.js.map +1 -1
- package/cms/vendor-map.d.ts +116 -124
- package/esm2015/src/components/header/header.component.js +38 -10
- package/esm2015/src/components/header/header.module.js +27 -4
- package/esm2015/src/services/flow-dialog.service.js +22 -1
- package/fesm2015/veloce-sdk.js +81 -9
- package/fesm2015/veloce-sdk.js.map +1 -1
- package/package.json +1 -1
- package/src/components/header/header.component.d.ts +5 -4
- package/src/components/header/header.module.d.ts +2 -1
- package/src/services/flow-dialog.service.d.ts +3 -0
package/cms/vendor-map.d.ts
CHANGED
@@ -262,8 +262,8 @@ export declare const vendorMap: {
|
|
262
262
|
forEachRight<TString_1 extends string | null | undefined>(collection: TString_1, iteratee?: lodash.StringIterator<any> | undefined): TString_1;
|
263
263
|
forEachRight<T_95, TList_2 extends lodash.List<T_95> | null | undefined>(collection: TList_2 & (lodash.List<T_95> | null | undefined), iteratee?: lodash.ListIterator<T_95, any> | undefined): TList_2;
|
264
264
|
forEachRight<T_96 extends object>(collection: T_96 | null | undefined, iteratee?: lodash.ObjectIterator<T_96, any> | undefined): T_96 | null | undefined;
|
265
|
-
groupBy<T_120>(collection: lodash.List<T_120> | null | undefined, iteratee?: lodash.ValueIteratee<T_120> | undefined): lodash.Dictionary<T_120[]>;
|
266
|
-
groupBy<T_121 extends object>(collection: T_121 | null | undefined, iteratee?: lodash.ValueIteratee<T_121[keyof T_121]> | undefined): lodash.Dictionary<T_121[keyof T_121][]>;
|
265
|
+
groupBy<T_120>(collection: lodash.List<T_120> | null | undefined, iteratee?: lodash.ValueIteratee<T_120> | undefined): lodash.Dictionary<[T_120, ...T_120[]]>;
|
266
|
+
groupBy<T_121 extends object>(collection: T_121 | null | undefined, iteratee?: lodash.ValueIteratee<T_121[keyof T_121]> | undefined): lodash.Dictionary<[T_121[keyof T_121], ...T_121[keyof T_121][]]>;
|
267
267
|
includes<T_122>(collection: lodash.Dictionary<T_122> | lodash.NumericDictionary<T_122> | null | undefined, target: T_122, fromIndex?: number | undefined): boolean;
|
268
268
|
invokeMap(collection: object | null | undefined, methodName: string, ...args: any[]): any[];
|
269
269
|
invokeMap<TResult_13>(collection: object | null | undefined, method: (...args: any[]) => TResult_13, ...args: any[]): TResult_13[];
|
@@ -317,52 +317,51 @@ export declare const vendorMap: {
|
|
317
317
|
bindKey: lodash.FunctionBindKey;
|
318
318
|
curry: lodash.Curry;
|
319
319
|
curryRight: lodash.CurryRight;
|
320
|
-
debounce<T_163 extends (...args: any) => any>(func: T_163, wait
|
321
|
-
debounce<T_164 extends (...args: any) => any>(func: T_164, wait?: number | undefined, options?: lodash.DebounceSettings | undefined): lodash.DebouncedFunc<T_164>;
|
320
|
+
debounce<T_163 extends (...args: any) => any>(func: T_163, wait?: number | undefined, options?: lodash.DebounceSettings | undefined): lodash.DebouncedFunc<T_163>;
|
322
321
|
defer(func: (...args: any[]) => any, ...args: any[]): number;
|
323
322
|
delay(func: (...args: any[]) => any, wait: number, ...args: any[]): number;
|
324
|
-
flip<
|
323
|
+
flip<T_164 extends (...args: any) => any>(func: T_164): T_164;
|
325
324
|
memoize: {
|
326
|
-
<
|
325
|
+
<T_165 extends (...args: any) => any>(func: T_165, resolver?: ((...args: Parameters<T_165>) => any) | undefined): T_165 & lodash.MemoizedFunction;
|
327
326
|
Cache: lodash.MapCacheConstructor;
|
328
327
|
};
|
329
|
-
negate<
|
330
|
-
once<
|
328
|
+
negate<T_166 extends any[]>(predicate: (...args: T_166) => boolean): (...args: T_166) => boolean;
|
329
|
+
once<T_167 extends (...args: any) => any>(func: T_167): T_167;
|
331
330
|
overArgs(func: (...args: any[]) => any, ...transforms: lodash.Many<(...args: any[]) => any>[]): (...args: any[]) => any;
|
332
331
|
partial: lodash.Partial;
|
333
332
|
partialRight: lodash.PartialRight;
|
334
333
|
rearg(func: (...args: any[]) => any, ...indexes: lodash.Many<number>[]): (...args: any[]) => any;
|
335
334
|
rest(func: (...args: any[]) => any, start?: number | undefined): (...args: any[]) => any;
|
336
335
|
spread<TResult_23>(func: (...args: any[]) => TResult_23, start?: number | undefined): (...args: any[]) => TResult_23;
|
337
|
-
throttle<
|
338
|
-
unary<
|
339
|
-
wrap<
|
340
|
-
castArray<
|
341
|
-
clone<
|
342
|
-
cloneDeep<
|
343
|
-
cloneDeepWith<
|
344
|
-
cloneDeepWith<
|
345
|
-
cloneWith<
|
346
|
-
cloneWith<
|
347
|
-
cloneWith<
|
348
|
-
conformsTo<
|
336
|
+
throttle<T_168 extends (...args: any) => any>(func: T_168, wait?: number | undefined, options?: lodash.ThrottleSettings | undefined): lodash.DebouncedFunc<T_168>;
|
337
|
+
unary<T_169, TResult_24>(func: (arg1: T_169, ...args: any[]) => TResult_24): (arg1: T_169) => TResult_24;
|
338
|
+
wrap<T_170, TArgs, TResult_25>(value: T_170, wrapper: (value: T_170, ...args: TArgs[]) => TResult_25): (...args: TArgs[]) => TResult_25;
|
339
|
+
castArray<T_171>(value?: lodash.Many<T_171> | undefined): T_171[];
|
340
|
+
clone<T_172>(value: T_172): T_172;
|
341
|
+
cloneDeep<T_173>(value: T_173): T_173;
|
342
|
+
cloneDeepWith<T_174>(value: T_174, customizer: lodash.CloneDeepWithCustomizer<T_174>): any;
|
343
|
+
cloneDeepWith<T_175>(value: T_175): T_175;
|
344
|
+
cloneWith<T_176, TResult_26 extends string | number | boolean | object | null>(value: T_176, customizer: lodash.CloneWithCustomizer<T_176, TResult_26>): TResult_26;
|
345
|
+
cloneWith<T_177, TResult_27>(value: T_177, customizer: lodash.CloneWithCustomizer<T_177, TResult_27 | undefined>): T_177 | TResult_27;
|
346
|
+
cloneWith<T_178>(value: T_178): T_178;
|
347
|
+
conformsTo<T_179>(object: T_179, source: lodash.ConformsPredicateObject<T_179>): boolean;
|
349
348
|
eq(value: any, other: any): boolean;
|
350
349
|
gt(value: any, other: any): boolean;
|
351
350
|
gte(value: any, other: any): boolean;
|
352
351
|
isArguments(value?: any): value is IArguments;
|
353
352
|
isArray(value?: any): value is any[];
|
354
|
-
isArray<
|
353
|
+
isArray<T_180>(value?: any): value is any[];
|
355
354
|
isArrayBuffer(value?: any): value is ArrayBuffer;
|
356
|
-
isArrayLike<
|
355
|
+
isArrayLike<T_181 extends {
|
357
356
|
__lodashAnyHack: any;
|
358
|
-
}>(t:
|
357
|
+
}>(t: T_181): boolean;
|
359
358
|
isArrayLike(value: ((...args: any[]) => any) | null | undefined): value is never;
|
360
359
|
isArrayLike(value: any): value is {
|
361
360
|
length: number;
|
362
361
|
};
|
363
|
-
isArrayLikeObject<
|
362
|
+
isArrayLikeObject<T_182 extends {
|
364
363
|
__lodashAnyHack: any;
|
365
|
-
}>(value:
|
364
|
+
}>(value: T_182): boolean;
|
366
365
|
isArrayLikeObject(value: string | number | boolean | Function | ((...args: any[]) => any) | null | undefined): value is never;
|
367
366
|
isArrayLikeObject(value: any): value is object & {
|
368
367
|
length: number;
|
@@ -371,12 +370,6 @@ export declare const vendorMap: {
|
|
371
370
|
isBuffer(value?: any): boolean;
|
372
371
|
isDate(value?: any): value is Date;
|
373
372
|
isElement(value?: any): boolean;
|
374
|
-
isEmpty<T_184 extends {
|
375
|
-
__trapAny: any;
|
376
|
-
}>(value?: T_184 | undefined): boolean;
|
377
|
-
isEmpty(value: string): value is "";
|
378
|
-
isEmpty(value: lodash.List<any> | Map<any, any> | Set<any> | null | undefined): boolean;
|
379
|
-
isEmpty<T_185 extends object>(value: T_185 | null | undefined): value is lodash.EmptyObjectOf<T_185> | null | undefined;
|
380
373
|
isEmpty(value?: any): boolean;
|
381
374
|
isEqual(value: any, other: any): boolean;
|
382
375
|
isEqualWith(value: any, other: any, customizer?: lodash.IsEqualCustomizer | undefined): boolean;
|
@@ -407,8 +400,8 @@ export declare const vendorMap: {
|
|
407
400
|
isWeakSet(value?: any): value is WeakSet<object>;
|
408
401
|
lt(value: any, other: any): boolean;
|
409
402
|
lte(value: any, other: any): boolean;
|
410
|
-
toArray<
|
411
|
-
toArray<
|
403
|
+
toArray<T_183>(value: lodash.Dictionary<T_183> | lodash.NumericDictionary<T_183> | null | undefined): T_183[];
|
404
|
+
toArray<T_184>(value: T_184): T_184[keyof T_184][];
|
412
405
|
toArray(): any[];
|
413
406
|
toFinite(value: any): number;
|
414
407
|
toInteger(value: any): number;
|
@@ -421,17 +414,17 @@ export declare const vendorMap: {
|
|
421
414
|
ceil(n: number, precision?: number | undefined): number;
|
422
415
|
divide(dividend: number, divisor: number): number;
|
423
416
|
floor(n: number, precision?: number | undefined): number;
|
424
|
-
max<
|
425
|
-
maxBy<
|
417
|
+
max<T_185>(collection: lodash.List<T_185> | null | undefined): T_185 | undefined;
|
418
|
+
maxBy<T_186>(collection: lodash.List<T_186> | null | undefined, iteratee?: lodash.ValueIteratee<T_186> | undefined): T_186 | undefined;
|
426
419
|
mean(collection: lodash.List<any> | null | undefined): number;
|
427
|
-
meanBy<
|
428
|
-
min<
|
429
|
-
minBy<
|
420
|
+
meanBy<T_187>(collection: lodash.List<T_187> | null | undefined, iteratee?: lodash.ValueIteratee<T_187> | undefined): number;
|
421
|
+
min<T_188>(collection: lodash.List<T_188> | null | undefined): T_188 | undefined;
|
422
|
+
minBy<T_189>(collection: lodash.List<T_189> | null | undefined, iteratee?: lodash.ValueIteratee<T_189> | undefined): T_189 | undefined;
|
430
423
|
multiply(multiplier: number, multiplicand: number): number;
|
431
424
|
round(n: number, precision?: number | undefined): number;
|
432
425
|
subtract(minuend: number, subtrahend: number): number;
|
433
426
|
sum(collection: lodash.List<any> | null | undefined): number;
|
434
|
-
sumBy<
|
427
|
+
sumBy<T_190>(collection: lodash.List<T_190> | null | undefined, iteratee?: string | ((value: T_190) => number) | undefined): number;
|
435
428
|
clamp(number: number, lower: number, upper: number): number;
|
436
429
|
clamp(number: number, upper: number): number;
|
437
430
|
inRange(n: number, start: number, end?: number | undefined): boolean;
|
@@ -463,9 +456,9 @@ export declare const vendorMap: {
|
|
463
456
|
assignWith<TObject_18, TSource1_11, TSource2_11, TSource3_7, TSource4_3>(object: TObject_18, source1: TSource1_11, source2: TSource2_11, source3: TSource3_7, source4: TSource4_3, customizer: lodash.AssignCustomizer): TObject_18 & TSource1_11 & TSource2_11 & TSource3_7 & TSource4_3;
|
464
457
|
assignWith<TObject_19>(object: TObject_19): TObject_19;
|
465
458
|
assignWith<TResult_30>(object: any, ...otherArgs: any[]): TResult_30;
|
466
|
-
at<
|
467
|
-
at<
|
468
|
-
create<
|
459
|
+
at<T_191>(object: lodash.Dictionary<T_191> | lodash.NumericDictionary<T_191> | null | undefined, ...props: lodash.PropertyPath[]): T_191[];
|
460
|
+
at<T_192 extends object>(object: T_192 | null | undefined, ...props: lodash.Many<keyof T_192>[]): T_192[keyof T_192][];
|
461
|
+
create<T_193 extends object, U_3 extends object>(prototype: T_193, properties?: U_3 | undefined): T_193 & U_3;
|
469
462
|
defaults<TObject_20, TSource_4>(object: TObject_20, source: TSource_4): NonNullable<TSource_4 & TObject_20>;
|
470
463
|
defaults<TObject_21, TSource1_12, TSource2_12>(object: TObject_21, source1: TSource1_12, source2: TSource2_12): NonNullable<TSource2_12 & TSource1_12 & TObject_21>;
|
471
464
|
defaults<TObject_22, TSource1_13, TSource2_13, TSource3_8>(object: TObject_22, source1: TSource1_13, source2: TSource2_13, source3: TSource3_8): NonNullable<TSource3_8 & TSource2_13 & TSource1_13 & TObject_22>;
|
@@ -473,9 +466,9 @@ export declare const vendorMap: {
|
|
473
466
|
defaults<TObject_24>(object: TObject_24): NonNullable<TObject_24>;
|
474
467
|
defaults(object: any, ...sources: any[]): any;
|
475
468
|
defaultsDeep(object: any, ...sources: any[]): any;
|
476
|
-
entries<
|
469
|
+
entries<T_194>(object?: lodash.Dictionary<T_194> | lodash.NumericDictionary<T_194> | undefined): [string, T_194][];
|
477
470
|
entries(object?: object | undefined): [string, any][];
|
478
|
-
entriesIn<
|
471
|
+
entriesIn<T_195>(object?: lodash.Dictionary<T_195> | lodash.NumericDictionary<T_195> | undefined): [string, T_195][];
|
479
472
|
entriesIn(object?: object | undefined): [string, any][];
|
480
473
|
extend<TObject_25, TSource_5>(object: TObject_25, source: TSource_5): TObject_25 & TSource_5;
|
481
474
|
extend<TObject_26, TSource1_15, TSource2_15>(object: TObject_26, source1: TSource1_15, source2: TSource2_15): TObject_26 & TSource1_15 & TSource2_15;
|
@@ -489,18 +482,18 @@ export declare const vendorMap: {
|
|
489
482
|
extendWith<TObject_33, TSource1_20, TSource2_20, TSource3_13, TSource4_6>(object: TObject_33, source1: TSource1_20, source2: TSource2_20, source3: TSource3_13, source4: TSource4_6, customizer: lodash.AssignCustomizer): TObject_33 & TSource1_20 & TSource2_20 & TSource3_13 & TSource4_6;
|
490
483
|
extendWith<TObject_34>(object: TObject_34): TObject_34;
|
491
484
|
extendWith<TResult_32>(object: any, ...otherArgs: any[]): TResult_32;
|
492
|
-
findKey<
|
493
|
-
findLastKey<
|
494
|
-
forIn<
|
495
|
-
forIn<
|
496
|
-
forInRight<
|
497
|
-
forInRight<
|
498
|
-
forOwn<
|
499
|
-
forOwn<
|
500
|
-
forOwnRight<
|
501
|
-
forOwnRight<
|
485
|
+
findKey<T_196>(object: T_196 | null | undefined, predicate?: lodash.ObjectIteratee<T_196> | undefined): string | undefined;
|
486
|
+
findLastKey<T_197>(object: T_197 | null | undefined, predicate?: lodash.ObjectIteratee<T_197> | undefined): string | undefined;
|
487
|
+
forIn<T_198>(object: T_198, iteratee?: lodash.ObjectIterator<T_198, any> | undefined): T_198;
|
488
|
+
forIn<T_199>(object: T_199 | null | undefined, iteratee?: lodash.ObjectIterator<T_199, any> | undefined): T_199 | null | undefined;
|
489
|
+
forInRight<T_200>(object: T_200, iteratee?: lodash.ObjectIterator<T_200, any> | undefined): T_200;
|
490
|
+
forInRight<T_201>(object: T_201 | null | undefined, iteratee?: lodash.ObjectIterator<T_201, any> | undefined): T_201 | null | undefined;
|
491
|
+
forOwn<T_202>(object: T_202, iteratee?: lodash.ObjectIterator<T_202, any> | undefined): T_202;
|
492
|
+
forOwn<T_203>(object: T_203 | null | undefined, iteratee?: lodash.ObjectIterator<T_203, any> | undefined): T_203 | null | undefined;
|
493
|
+
forOwnRight<T_204>(object: T_204, iteratee?: lodash.ObjectIterator<T_204, any> | undefined): T_204;
|
494
|
+
forOwnRight<T_205>(object: T_205 | null | undefined, iteratee?: lodash.ObjectIterator<T_205, any> | undefined): T_205 | null | undefined;
|
502
495
|
functions(object: any): string[];
|
503
|
-
functionsIn<
|
496
|
+
functionsIn<T_206 extends {}>(object: any): string[];
|
504
497
|
get<TObject_35 extends object, TKey extends keyof TObject_35>(object: TObject_35, path: TKey | [TKey]): TObject_35[TKey];
|
505
498
|
get<TObject_36 extends object, TKey_1 extends keyof TObject_36>(object: TObject_36 | null | undefined, path: TKey_1 | [TKey_1]): TObject_36[TKey_1] | undefined;
|
506
499
|
get<TObject_37 extends object, TKey_2 extends keyof TObject_37, TDefault>(object: TObject_37 | null | undefined, path: TKey_2 | [TKey_2], defaultValue: TDefault): TDefault | Exclude<TObject_37[TKey_2], undefined>;
|
@@ -513,33 +506,33 @@ export declare const vendorMap: {
|
|
513
506
|
get<TObject_44 extends object, TKey1_6 extends keyof TObject_44, TKey2_6 extends keyof TObject_44[TKey1_6], TKey3_3 extends keyof TObject_44[TKey1_6][TKey2_6], TKey4 extends keyof TObject_44[TKey1_6][TKey2_6][TKey3_3]>(object: TObject_44, path: [TKey1_6, TKey2_6, TKey3_3, TKey4]): TObject_44[TKey1_6][TKey2_6][TKey3_3][TKey4];
|
514
507
|
get<TObject_45 extends object, TKey1_7 extends keyof TObject_45, TKey2_7 extends keyof TObject_45[TKey1_7], TKey3_4 extends keyof TObject_45[TKey1_7][TKey2_7], TKey4_1 extends keyof TObject_45[TKey1_7][TKey2_7][TKey3_4]>(object: TObject_45 | null | undefined, path: [TKey1_7, TKey2_7, TKey3_4, TKey4_1]): TObject_45[TKey1_7][TKey2_7][TKey3_4][TKey4_1] | undefined;
|
515
508
|
get<TObject_46 extends object, TKey1_8 extends keyof TObject_46, TKey2_8 extends keyof TObject_46[TKey1_8], TKey3_5 extends keyof TObject_46[TKey1_8][TKey2_8], TKey4_2 extends keyof TObject_46[TKey1_8][TKey2_8][TKey3_5], TDefault_3>(object: TObject_46 | null | undefined, path: [TKey1_8, TKey2_8, TKey3_5, TKey4_2], defaultValue: TDefault_3): TDefault_3 | Exclude<TObject_46[TKey1_8][TKey2_8][TKey3_5][TKey4_2], undefined>;
|
516
|
-
get<
|
517
|
-
get<
|
518
|
-
get<
|
509
|
+
get<T_207>(object: lodash.NumericDictionary<T_207>, path: number): T_207;
|
510
|
+
get<T_208>(object: lodash.NumericDictionary<T_208> | null | undefined, path: number): T_208 | undefined;
|
511
|
+
get<T_209, TDefault_4>(object: lodash.NumericDictionary<T_209> | null | undefined, path: number, defaultValue: TDefault_4): T_209 | TDefault_4;
|
519
512
|
get<TDefault_5>(object: null | undefined, path: lodash.PropertyPath, defaultValue: TDefault_5): TDefault_5;
|
520
513
|
get(object: null | undefined, path: lodash.PropertyPath): undefined;
|
521
514
|
get(object: any, path: lodash.PropertyPath, defaultValue?: any): any;
|
522
|
-
has<
|
523
|
-
hasIn<
|
515
|
+
has<T_210>(object: T_210, path: lodash.PropertyPath): boolean;
|
516
|
+
hasIn<T_211>(object: T_211, path: lodash.PropertyPath): boolean;
|
524
517
|
invert(object: object): lodash.Dictionary<string>;
|
525
|
-
invertBy<
|
526
|
-
invertBy<
|
518
|
+
invertBy<T_212>(object: lodash.Dictionary<T_212> | lodash.NumericDictionary<T_212> | null | undefined, interatee?: lodash.ValueIteratee<T_212> | undefined): lodash.Dictionary<string[]>;
|
519
|
+
invertBy<T_213 extends object>(object: T_213 | null | undefined, interatee?: lodash.ValueIteratee<T_213[keyof T_213]> | undefined): lodash.Dictionary<string[]>;
|
527
520
|
invoke(object: any, path: lodash.PropertyPath, ...args: any[]): any;
|
528
521
|
keys(object?: any): string[];
|
529
522
|
keysIn(object?: any): string[];
|
530
|
-
mapKeys<
|
531
|
-
mapKeys<
|
523
|
+
mapKeys<T_214>(object: lodash.List<T_214> | null | undefined, iteratee?: lodash.ListIteratee<T_214> | undefined): lodash.Dictionary<T_214>;
|
524
|
+
mapKeys<T_215 extends object>(object: T_215 | null | undefined, iteratee?: lodash.ObjectIteratee<T_215> | undefined): lodash.Dictionary<T_215[keyof T_215]>;
|
532
525
|
mapValues<TResult_33>(obj: string | null | undefined, callback: lodash.StringIterator<TResult_33>): lodash.NumericDictionary<TResult_33>;
|
533
|
-
mapValues<
|
534
|
-
mapValues<
|
535
|
-
mapValues<
|
536
|
-
mapValues<
|
537
|
-
mapValues<
|
538
|
-
mapValues<
|
526
|
+
mapValues<T_216 extends object, TResult_34>(obj: T_216 | null | undefined, callback: lodash.ObjectIterator<T_216, TResult_34>): { [P in keyof T_216]: TResult_34; };
|
527
|
+
mapValues<T_217>(obj: lodash.Dictionary<T_217> | lodash.NumericDictionary<T_217> | null | undefined, iteratee: object): lodash.Dictionary<boolean>;
|
528
|
+
mapValues<T_218 extends object>(obj: T_218 | null | undefined, iteratee: object): { [P_1 in keyof T_218]: boolean; };
|
529
|
+
mapValues<T_219, TKey_3 extends keyof T_219>(obj: lodash.Dictionary<T_219> | lodash.NumericDictionary<T_219> | null | undefined, iteratee: TKey_3): lodash.Dictionary<T_219[TKey_3]>;
|
530
|
+
mapValues<T_220>(obj: lodash.Dictionary<T_220> | lodash.NumericDictionary<T_220> | null | undefined, iteratee: string): lodash.Dictionary<any>;
|
531
|
+
mapValues<T_221 extends object>(obj: T_221 | null | undefined, iteratee: string): { [P_2 in keyof T_221]: any; };
|
539
532
|
mapValues(obj: string | null | undefined): lodash.NumericDictionary<string>;
|
540
|
-
mapValues<
|
541
|
-
mapValues<
|
542
|
-
mapValues<
|
533
|
+
mapValues<T_222>(obj: lodash.Dictionary<T_222> | lodash.NumericDictionary<T_222> | null | undefined): lodash.Dictionary<T_222>;
|
534
|
+
mapValues<T_223 extends object>(obj: T_223): T_223;
|
535
|
+
mapValues<T_224 extends object>(obj: T_224 | null | undefined): Partial<T_224>;
|
543
536
|
merge<TObject_47, TSource_7>(object: TObject_47, source: TSource_7): TObject_47 & TSource_7;
|
544
537
|
merge<TObject_48, TSource1_21, TSource2_21>(object: TObject_48, source1: TSource1_21, source2: TSource2_21): TObject_48 & TSource1_21 & TSource2_21;
|
545
538
|
merge<TObject_49, TSource1_22, TSource2_22, TSource3_14>(object: TObject_49, source1: TSource1_22, source2: TSource2_22, source3: TSource3_14): TObject_49 & TSource1_22 & TSource2_22 & TSource3_14;
|
@@ -550,54 +543,54 @@ export declare const vendorMap: {
|
|
550
543
|
mergeWith<TObject_53, TSource1_25, TSource2_25, TSource3_16>(object: TObject_53, source1: TSource1_25, source2: TSource2_25, source3: TSource3_16, customizer: (value: any, srcValue: any, key: string, object: any, source: any) => any): TObject_53 & TSource1_25 & TSource2_25 & TSource3_16;
|
551
544
|
mergeWith<TObject_54, TSource1_26, TSource2_26, TSource3_17, TSource4_8>(object: TObject_54, source1: TSource1_26, source2: TSource2_26, source3: TSource3_17, source4: TSource4_8, customizer: (value: any, srcValue: any, key: string, object: any, source: any) => any): TObject_54 & TSource1_26 & TSource2_26 & TSource3_17 & TSource4_8;
|
552
545
|
mergeWith(object: any, ...otherArgs: any[]): any;
|
553
|
-
omit<
|
554
|
-
omit<
|
555
|
-
omit<
|
556
|
-
omitBy<
|
557
|
-
omitBy<
|
558
|
-
omitBy<
|
559
|
-
pick<
|
560
|
-
pick<
|
561
|
-
pickBy<
|
562
|
-
pickBy<
|
563
|
-
pickBy<
|
564
|
-
pickBy<
|
565
|
-
pickBy<
|
546
|
+
omit<T_225 extends object, K_1 extends lodash.PropertyName[]>(object: T_225 | null | undefined, ...paths: K_1): Pick<T_225, Exclude<keyof T_225, K_1[number]>>;
|
547
|
+
omit<T_226 extends object, K_2 extends keyof T_226>(object: T_226 | null | undefined, ...paths: lodash.Many<K_2>[]): lodash.Omit<T_226, K_2>;
|
548
|
+
omit<T_227 extends object>(object: T_227 | null | undefined, ...paths: lodash.Many<lodash.PropertyName>[]): Partial<T_227>;
|
549
|
+
omitBy<T_228>(object: lodash.Dictionary<T_228> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_228> | undefined): lodash.Dictionary<T_228>;
|
550
|
+
omitBy<T_229>(object: lodash.NumericDictionary<T_229> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_229> | undefined): lodash.NumericDictionary<T_229>;
|
551
|
+
omitBy<T_230 extends object>(object: T_230 | null | undefined, predicate: lodash.ValueKeyIteratee<T_230[keyof T_230]>): Partial<T_230>;
|
552
|
+
pick<T_231 extends object, U_4 extends keyof T_231>(object: T_231, ...props: lodash.Many<U_4>[]): Pick<T_231, U_4>;
|
553
|
+
pick<T_232>(object: T_232 | null | undefined, ...props: lodash.PropertyPath[]): Partial<T_232>;
|
554
|
+
pickBy<T_233, S_6 extends T_233>(object: lodash.Dictionary<T_233> | null | undefined, predicate: lodash.ValueKeyIterateeTypeGuard<T_233, S_6>): lodash.Dictionary<S_6>;
|
555
|
+
pickBy<T_234, S_7 extends T_234>(object: lodash.NumericDictionary<T_234> | null | undefined, predicate: lodash.ValueKeyIterateeTypeGuard<T_234, S_7>): lodash.NumericDictionary<S_7>;
|
556
|
+
pickBy<T_235>(object: lodash.Dictionary<T_235> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_235> | undefined): lodash.Dictionary<T_235>;
|
557
|
+
pickBy<T_236>(object: lodash.NumericDictionary<T_236> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_236> | undefined): lodash.NumericDictionary<T_236>;
|
558
|
+
pickBy<T_237 extends object>(object: T_237 | null | undefined, predicate?: lodash.ValueKeyIteratee<T_237[keyof T_237]> | undefined): Partial<T_237>;
|
566
559
|
result<TResult_35>(object: any, path: lodash.PropertyPath, defaultValue?: TResult_35 | ((...args: any[]) => TResult_35) | undefined): TResult_35;
|
567
|
-
set<
|
560
|
+
set<T_238 extends object>(object: T_238, path: lodash.PropertyPath, value: any): T_238;
|
568
561
|
set<TResult_36>(object: object, path: lodash.PropertyPath, value: any): TResult_36;
|
569
|
-
setWith<
|
570
|
-
setWith<
|
571
|
-
toPairs<
|
562
|
+
setWith<T_239 extends object>(object: T_239, path: lodash.PropertyPath, value: any, customizer?: lodash.SetWithCustomizer<T_239> | undefined): T_239;
|
563
|
+
setWith<T_240 extends object, TResult_37>(object: T_240, path: lodash.PropertyPath, value: any, customizer?: lodash.SetWithCustomizer<T_240> | undefined): TResult_37;
|
564
|
+
toPairs<T_241>(object?: lodash.Dictionary<T_241> | lodash.NumericDictionary<T_241> | undefined): [string, T_241][];
|
572
565
|
toPairs(object?: object | undefined): [string, any][];
|
573
|
-
toPairsIn<
|
566
|
+
toPairsIn<T_242>(object?: lodash.Dictionary<T_242> | lodash.NumericDictionary<T_242> | undefined): [string, T_242][];
|
574
567
|
toPairsIn(object?: object | undefined): [string, any][];
|
575
|
-
transform<
|
576
|
-
transform<
|
577
|
-
transform<
|
568
|
+
transform<T_243, TResult_38>(object: readonly T_243[], iteratee: lodash.MemoVoidArrayIterator<T_243, TResult_38>, accumulator?: TResult_38 | undefined): TResult_38;
|
569
|
+
transform<T_244, TResult_39>(object: lodash.Dictionary<T_244>, iteratee: lodash.MemoVoidDictionaryIterator<T_244, string, TResult_39>, accumulator?: TResult_39 | undefined): TResult_39;
|
570
|
+
transform<T_245 extends object, TResult_40>(object: T_245, iteratee: lodash.MemoVoidDictionaryIterator<T_245[keyof T_245], keyof T_245, TResult_40>, accumulator?: TResult_40 | undefined): TResult_40;
|
578
571
|
transform(object: any[]): any[];
|
579
572
|
transform(object: object): lodash.Dictionary<any>;
|
580
573
|
unset(object: any, path: lodash.PropertyPath): boolean;
|
581
574
|
update(object: object, path: lodash.PropertyPath, updater: (value: any) => any): any;
|
582
|
-
updateWith<
|
583
|
-
updateWith<
|
584
|
-
values<
|
585
|
-
values<
|
575
|
+
updateWith<T_246 extends object>(object: T_246, path: lodash.PropertyPath, updater: (oldValue: any) => any, customizer?: lodash.SetWithCustomizer<T_246> | undefined): T_246;
|
576
|
+
updateWith<T_247 extends object, TResult_41>(object: T_247, path: lodash.PropertyPath, updater: (oldValue: any) => any, customizer?: lodash.SetWithCustomizer<T_247> | undefined): TResult_41;
|
577
|
+
values<T_248>(object: lodash.Dictionary<T_248> | lodash.NumericDictionary<T_248> | lodash.List<T_248> | null | undefined): T_248[];
|
578
|
+
values<T_249 extends object>(object: T_249 | null | undefined): T_249[keyof T_249][];
|
586
579
|
values(object: any): any[];
|
587
|
-
valuesIn<
|
588
|
-
valuesIn<
|
580
|
+
valuesIn<T_250>(object: lodash.Dictionary<T_250> | lodash.NumericDictionary<T_250> | lodash.List<T_250> | null | undefined): T_250[];
|
581
|
+
valuesIn<T_251 extends object>(object: T_251 | null | undefined): T_251[keyof T_251][];
|
589
582
|
chain<TrapAny extends {
|
590
583
|
__lodashAnyHack: any;
|
591
584
|
}>(value: TrapAny): lodash.CollectionChain<any> & lodash.FunctionChain<any> & lodash.ObjectChain<any> & lodash.PrimitiveChain<any> & lodash.StringChain;
|
592
|
-
chain<
|
585
|
+
chain<T_252 extends null | undefined>(value: T_252): lodash.PrimitiveChain<T_252>;
|
593
586
|
chain(value: string): lodash.StringChain;
|
594
587
|
chain(value: string | null | undefined): lodash.StringNullableChain;
|
595
|
-
chain<
|
596
|
-
chain<
|
597
|
-
chain<
|
598
|
-
chain<
|
599
|
-
tap<
|
600
|
-
thru<
|
588
|
+
chain<T_253 extends (...args: any[]) => any>(value: T_253): lodash.FunctionChain<T_253>;
|
589
|
+
chain<T_254 = any>(value: lodash.List<T_254> | null | undefined): lodash.CollectionChain<T_254>;
|
590
|
+
chain<T_255 extends object>(value: T_255 | null | undefined): lodash.ObjectChain<T_255>;
|
591
|
+
chain<T_256>(value: T_256): lodash.PrimitiveChain<T_256>;
|
592
|
+
tap<T_257>(value: T_257, interceptor: (value: T_257) => void): T_257;
|
593
|
+
thru<T_258, TResult_42>(value: T_258, interceptor: (value: T_258) => TResult_42): TResult_42;
|
601
594
|
camelCase(string?: string | undefined): string;
|
602
595
|
capitalize(string?: string | undefined): string;
|
603
596
|
deburr(string?: string | undefined): string;
|
@@ -635,13 +628,12 @@ export declare const vendorMap: {
|
|
635
628
|
words(string?: string | undefined, pattern?: string | RegExp | undefined): string[];
|
636
629
|
words(string: string, index: string | number, guard: object): string[];
|
637
630
|
attempt<TResult_43>(func: (...args: any[]) => TResult_43, ...args: any[]): Error | TResult_43;
|
638
|
-
bindAll<
|
639
|
-
cond<R>(pairs: lodash.
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
defaultTo<
|
644
|
-
defaultTo<T_267, TDefault_6>(value: T_267 | null | undefined, defaultValue: TDefault_6): T_267 | TDefault_6;
|
631
|
+
bindAll<T_259>(object: T_259, ...methodNames: lodash.Many<string>[]): T_259;
|
632
|
+
cond<T_260, R>(pairs: lodash.CondPair<T_260, R>[]): (Target: T_260) => R;
|
633
|
+
conforms<T_261>(source: lodash.ConformsPredicateObject<T_261>): (value: T_261) => boolean;
|
634
|
+
constant<T_262>(value: T_262): () => T_262;
|
635
|
+
defaultTo<T_263>(value: T_263 | null | undefined, defaultValue: T_263): T_263;
|
636
|
+
defaultTo<T_264, TDefault_6>(value: T_264 | null | undefined, defaultValue: TDefault_6): T_264 | TDefault_6;
|
645
637
|
flow<A extends any[], R1, R2, R3, R4, R5, R6, R7>(f1: (...args: A) => R1, f2: (a: R1) => R2, f3: (a: R2) => R3, f4: (a: R3) => R4, f5: (a: R4) => R5, f6: (a: R5) => R6, f7: (a: R6) => R7): (...args: A) => R7;
|
646
638
|
flow<A_1 extends any[], R1_1, R2_1, R3_1, R4_1, R5_1, R6_1, R7_1>(f1: (...args: A_1) => R1_1, f2: (a: R1_1) => R2_1, f3: (a: R2_1) => R3_1, f4: (a: R3_1) => R4_1, f5: (a: R4_1) => R5_1, f6: (a: R5_1) => R6_1, f7: (a: R6_1) => R7_1, ...func: lodash.Many<(a: any) => any>[]): (...args: A_1) => any;
|
647
639
|
flow<A_2 extends any[], R1_2, R2_2, R3_2, R4_2, R5_2, R6_2>(f1: (...args: A_2) => R1_2, f2: (a: R1_2) => R2_2, f3: (a: R2_2) => R3_2, f4: (a: R3_2) => R4_2, f5: (a: R4_2) => R5_2, f6: (a: R5_2) => R6_2): (...args: A_2) => R6_2;
|
@@ -657,14 +649,14 @@ export declare const vendorMap: {
|
|
657
649
|
flowRight<A_11 extends any[], R1_11, R2_11, R3_10>(f3: (a: R2_11) => R3_10, f2: (a: R1_11) => R2_11, f1: (...args: A_11) => R1_11): (...args: A_11) => R3_10;
|
658
650
|
flowRight<A_12 extends any[], R1_12, R2_12>(f2: (a: R1_12) => R2_12, f1: (...args: A_12) => R1_12): (...args: A_12) => R2_12;
|
659
651
|
flowRight(...func: lodash.Many<(...args: any[]) => any>[]): (...args: any[]) => any;
|
660
|
-
identity<
|
652
|
+
identity<T_265>(value: T_265): T_265;
|
661
653
|
identity(): undefined;
|
662
654
|
iteratee<TFunction extends (...args: any[]) => any>(func: TFunction): TFunction;
|
663
655
|
iteratee(func: string | number | symbol | object): (...args: any[]) => any;
|
664
|
-
matches<
|
665
|
-
matches<
|
666
|
-
matchesProperty<
|
667
|
-
matchesProperty<
|
656
|
+
matches<T_266>(source: T_266): (value: any) => boolean;
|
657
|
+
matches<T_267, V>(source: T_267): (value: V) => boolean;
|
658
|
+
matchesProperty<T_268>(path: lodash.PropertyPath, srcValue: T_268): (value: any) => boolean;
|
659
|
+
matchesProperty<T_269, V_1>(path: lodash.PropertyPath, srcValue: T_269): (value: V_1) => boolean;
|
668
660
|
method(path: lodash.PropertyPath, ...args: any[]): (object: any) => any;
|
669
661
|
methodOf(object: object, ...args: any[]): (path: lodash.PropertyPath) => any;
|
670
662
|
mixin<TObject_55>(object: TObject_55, source: lodash.Dictionary<(...args: any[]) => any>, options?: lodash.MixinOptions | undefined): TObject_55;
|
@@ -673,12 +665,12 @@ export declare const vendorMap: {
|
|
673
665
|
noop(...args: any[]): void;
|
674
666
|
nthArg(n?: number | undefined): (...args: any[]) => any;
|
675
667
|
over<TResult_45>(...iteratees: lodash.Many<(...args: any[]) => TResult_45>[]): (...args: any[]) => TResult_45[];
|
676
|
-
overEvery<
|
677
|
-
overEvery<
|
678
|
-
overSome<
|
679
|
-
overSome<
|
668
|
+
overEvery<T_270, Result1 extends T_270, Result2 extends T_270>(predicates_0: (arg: T_270) => arg is Result1, predicates_1: (arg: T_270) => arg is Result2): (arg: T_270) => arg is Result1 & Result2;
|
669
|
+
overEvery<T_271>(...predicates: lodash.Many<(...args: T_271[]) => boolean>[]): (...args: T_271[]) => boolean;
|
670
|
+
overSome<T_272, Result1_1 extends T_272, Result2_1 extends T_272>(predicates_0: (arg: T_272) => arg is Result1_1, predicates_1: (arg: T_272) => arg is Result2_1): (arg: T_272) => arg is Result1_1 | Result2_1;
|
671
|
+
overSome<T_273>(...predicates: lodash.Many<(...args: T_273[]) => boolean>[]): (...args: T_273[]) => boolean;
|
680
672
|
property<TObj, TResult_46>(path: lodash.PropertyPath): (obj: TObj) => TResult_46;
|
681
|
-
propertyOf<
|
673
|
+
propertyOf<T_274 extends {}>(object: T_274): (path: lodash.PropertyPath) => any;
|
682
674
|
range(start: number, end?: number | undefined, step?: number | undefined): number[];
|
683
675
|
range(end: number, index: string | number, guard: object): number[];
|
684
676
|
rangeRight(start: number, end?: number | undefined, step?: number | undefined): number[];
|