@gct-paas/schema 0.1.4-dev.11 → 0.1.4-dev.13

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.
@@ -3,6 +3,20 @@ import { FIELD_TYPE, SEARCH_SERVICE } from '@gct-paas/core';
3
3
  * Pad端VTable支持编辑的字段类型列表,临时放在这里
4
4
  */
5
5
  export declare const padVTableSupportEditFieldTypes: FIELD_TYPE[];
6
+ export declare const DatepickerTypes: {
7
+ datepicker: {
8
+ label: string;
9
+ value: string;
10
+ }[];
11
+ datetimepicker: {
12
+ label: string;
13
+ value: string;
14
+ }[];
15
+ timepicker: {
16
+ label: string;
17
+ value: string;
18
+ }[];
19
+ };
6
20
  type SearchType = Record<string | 'more', {
7
21
  filter?: SEARCH_SERVICE[] | string[];
8
22
  contain?: string[];