@gct-paas/schema 0.1.4-dev.10 → 0.1.4-dev.12

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.
Files changed (47) hide show
  1. package/dist/index.esm.min.js +941 -0
  2. package/es/constants/index.d.ts +15 -1
  3. package/es/constants/index.mjs +408 -368
  4. package/es/index.d.ts +0 -1
  5. package/es/index.mjs +10 -20
  6. package/es/interface/designer.d.ts +0 -1
  7. package/es/interface/modal/i-modal-body.d.ts +1 -1
  8. package/es/interface/schema/widget-props/i-search-widget-props.d.ts +6 -0
  9. package/es/interface/schema/widget-types.d.ts +16 -6
  10. package/es/interface/widget/i-common.d.ts +2 -1
  11. package/es/interface/widget/i-editors.d.ts +2 -2
  12. package/es/interface/widget/i-props.d.ts +1 -10
  13. package/es/interface/widget/i-schemas.d.ts +1 -0
  14. package/es/utils/index.mjs +4 -0
  15. package/es/utils/schema/index.d.ts +9 -1
  16. package/es/utils/schema/index.mjs +118 -39
  17. package/es/utils/schema/search.d.ts +9 -0
  18. package/es/utils/schema/search.mjs +146 -0
  19. package/es/utils/schema/utils.d.ts +21 -0
  20. package/es/utils/schema/utils.mjs +182 -0
  21. package/es/utils/schema-style/index.mjs +203 -127
  22. package/es/utils/widget-info/widget-info.mjs +130 -57
  23. package/package.json +6 -5
  24. package/dist/index.esm.min.mjs +0 -1250
  25. package/dist/index.min.cjs +0 -1
  26. package/dist/index.system.min.js +0 -1
  27. package/es/schema/common-config/base-button-config.d.ts +0 -3
  28. package/es/schema/common-config/base-button-config.mjs +0 -84
  29. package/es/schema/common-config/button-editor-config.d.ts +0 -4
  30. package/es/schema/common-config/button-editor-config.mjs +0 -206
  31. package/es/schema/common-config/button-props-func.d.ts +0 -5
  32. package/es/schema/common-config/button-props-func.mjs +0 -11
  33. package/es/schema/common-config/common-field-editor-config.d.ts +0 -10
  34. package/es/schema/common-config/common-field-editor-config.mjs +0 -61
  35. package/es/schema/common-config/common-style.d.ts +0 -3
  36. package/es/schema/common-config/common-style.mjs +0 -85
  37. package/es/schema/common-config/display-editor-config.d.ts +0 -3
  38. package/es/schema/common-config/display-editor-config.mjs +0 -89
  39. package/es/schema/common-config/permission-editor-config.d.ts +0 -2
  40. package/es/schema/common-config/permission-editor-config.mjs +0 -23
  41. package/es/schema/index.d.ts +0 -9
  42. package/es/schema/modal/modal-body.d.ts +0 -2
  43. package/es/schema/modal/modal-body.mjs +0 -9
  44. package/es/schema/modal/modal-footer.d.ts +0 -2
  45. package/es/schema/modal/modal-footer.mjs +0 -9
  46. package/es/schema/modal/modal.d.ts +0 -8
  47. package/es/schema/modal/modal.mjs +0 -182
@@ -3,8 +3,22 @@ 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
- filter?: SEARCH_SERVICE[];
21
+ filter?: SEARCH_SERVICE[] | string[];
8
22
  contain?: string[];
9
23
  default?: SEARCH_SERVICE[];
10
24
  noRangDefaultExp?: SEARCH_SERVICE;