@pongrass/utils 1.1.10-v20 → 1.1.11-v20
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/index.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ interface IConfig {
|
|
|
33
33
|
formConfig?: {
|
|
34
34
|
formValidations?: IFormValidations$1;
|
|
35
35
|
};
|
|
36
|
+
applicationName?: string;
|
|
36
37
|
}
|
|
37
38
|
interface ITableGrid {
|
|
38
39
|
defaultPageSize: number;
|
|
@@ -431,6 +432,8 @@ interface IFormValidations {
|
|
|
431
432
|
min?: number;
|
|
432
433
|
max?: number;
|
|
433
434
|
defaultAdvance?: 'weekly' | 'monthly' | 'quarterly' | 'halfyearly' | 'yearly';
|
|
435
|
+
minDate?: Date;
|
|
436
|
+
maxDate?: Date;
|
|
434
437
|
}
|
|
435
438
|
interface IFormSubmissionEmit {
|
|
436
439
|
/** Reflects the validity of the form */
|