@databrainhq/plugin 0.12.14 → 0.12.15
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/types/app.d.ts +4 -0
- package/dist/webcomponents.es.js +496 -487
- package/dist/webcomponents.umd.js +27 -27
- package/package.json +1 -1
package/dist/types/app.d.ts
CHANGED
|
@@ -301,6 +301,8 @@ export type DateOptionType = {
|
|
|
301
301
|
count: number;
|
|
302
302
|
endDate?: Date;
|
|
303
303
|
startDate?: Date;
|
|
304
|
+
fromDate?: Date;
|
|
305
|
+
toDate?: Date;
|
|
304
306
|
minDate?: Date;
|
|
305
307
|
maxDate?: Date;
|
|
306
308
|
};
|
|
@@ -353,6 +355,8 @@ export type DateTypeOptionType = {
|
|
|
353
355
|
time?: 'Day' | 'Week' | 'Month' | 'Quarter' | 'Year';
|
|
354
356
|
name: string;
|
|
355
357
|
count?: number;
|
|
358
|
+
fromDate?: Date;
|
|
359
|
+
toDate?: Date;
|
|
356
360
|
minDate?: Date;
|
|
357
361
|
maxDate?: Date;
|
|
358
362
|
};
|