forstok-ui-lib 5.11.15 → 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 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: Date | null;
470
- endDate: Date | null;
471
- rangeDate: string;
469
+ startDate: string | null;
470
+ endDate: string | null;
472
471
  };
473
472
  type TNewFunction = {
474
473
  checkboxData?: TObject[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forstok-ui-lib",
3
- "version": "5.11.15",
3
+ "version": "5.11.16",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -228,9 +228,8 @@ export type TNewFilterPartial = {
228
228
  }
229
229
 
230
230
  export type TTimeFilter = {
231
- startDate: Date | null
232
- endDate: Date | null
233
- rangeDate : string
231
+ startDate: string | null
232
+ endDate: string | null
234
233
  }
235
234
 
236
235
  export type TNewFunction = {