@mcurros2/microm 1.1.304-0 → 1.1.306-0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +16 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -293,6 +293,7 @@ export function clearValues(columns: ColumnsObject, useColumnDefaultValue?: bool
|
|
|
293
293
|
export function fillParentKeys(columns: ColumnsObject, parentKeys: ColumnsObject, ignoreEmptyParentKeys?: boolean, filters?: ColumnsFilter | null): void;
|
|
294
294
|
export function namesOf<T>(): { [P in keyof T]: P; };
|
|
295
295
|
export function copyValuesObject(obj: ValuesObject): ValuesObject;
|
|
296
|
+
export function mergeValuesObject(source?: ValuesObject, mergeAndOverride?: ValuesObject): ValuesObject;
|
|
296
297
|
export type ValidationRule = (value: unknown, values?: Record<string, unknown>) => string | number | true | ReactElement<any, string | JSXElementConstructor<any>> | Iterable<ReactNode> | null;
|
|
297
298
|
export type ValidatorFunction = (...args: any[]) => ValidationRule;
|
|
298
299
|
export const isURL: ValidatorFunction;
|