@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/form/item/Item.d.ts +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +1 -1
- package/dist/{output-DfOH-aLb.css → output-DOIezTPH.css} +55 -55
- package/dist/types/SingleQueryProps.d.ts +1 -1
- package/dist/utils/GetSizeBySizeSlug.d.ts +1 -1
- package/package.json +1 -1
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: (
|
|
864
|
+
get: <T>(paramName: string, defaultValue: T, minLength?: number) => T;
|
|
865
865
|
remove: (type: string) => void;
|
|
866
866
|
isEmpty: () => boolean;
|
|
867
867
|
};
|