forstok-ui-lib 5.11.14 → 5.11.16
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 +2 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/loader/index.tsx +4 -3
- package/src/typeds/shares.typed.ts +2 -3
package/dist/index.d.ts
CHANGED
|
@@ -466,9 +466,8 @@ type TNewFilterPartial = {
|
|
|
466
466
|
resetByOption?: (opt?: string | string[], callback?: () => void, noScroll?: boolean) => void;
|
|
467
467
|
};
|
|
468
468
|
type TTimeFilter = {
|
|
469
|
-
startDate:
|
|
470
|
-
endDate:
|
|
471
|
-
rangeDate: string;
|
|
469
|
+
startDate: string | null;
|
|
470
|
+
endDate: string | null;
|
|
472
471
|
};
|
|
473
472
|
type TNewFunction = {
|
|
474
473
|
checkboxData?: TObject[];
|