@inntechcorp/it-design 2.0.115 → 2.0.117

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 CHANGED
@@ -394,7 +394,7 @@ type ItemProps = {
394
394
  mask?: string | null;
395
395
  locked?: boolean;
396
396
  dependency?: string;
397
- reset?: [];
397
+ reset?: any[];
398
398
  query?: string;
399
399
  children: ChildrenProps$1;
400
400
  };
@@ -861,7 +861,7 @@ type ITDImperativeFuncProps = {
861
861
 
862
862
  type SingleQueryProps = {
863
863
  set: (type: string, value: string | string[] | null) => void;
864
- get: (type: string, defaultValue?: string, minLength?: number) => string | string[];
864
+ get: <T>(paramName: string, defaultValue: T, minLength?: number) => T;
865
865
  remove: (type: string) => void;
866
866
  isEmpty: () => boolean;
867
867
  };