1. 05 7月, 2022 3 次提交
    • Table BasicColumn 添加 editDynamicDisabled (#2018) · 4730b3af
      * Table BasicColumn 添加 editDynamicDisabled
      Co-authored-by: Cyrus Zhou <6802207@qq.com>
      使用方式同 Form FormSchema dynamicDisabled
      ```
      export const Columns: BasicColumn[] = [
        {
          title: 'Title',
          dataIndex: 'Title',
          editRow: true,
          editComponent: 'Select',
          editDynamicDisabled: ({ record }) => record.isDisabled,
        },
      
      * editComponentProps onChange 功能恢复
      Co-authored-by: Cyrus Zhou <6802207@qq.com>
      说明:
      ...omit(compProps, 'onChange')
      这会忽略 onChange ,导致 editComponentProps onChange 被取消
      
      如下功能将不支持:
      ```
      editComponentProps: ({ record }) => {
        return {
          options: effectTypeData,
          onChange: () => {
          },
        };
      },
      ```
      
      * tableData == null 报错
      
      * ApiSelect 第一次选择触发required错误提示问题
      
      * 恢复 虽然可以解决第一次选择提示报错问题,但是会导致 onChange: (e: any, options: any) => 无法获得 options 的值
      Cyrus Zhou authored
  2. 26 6月, 2022 4 次提交
  3. 24 6月, 2022 5 次提交
  4. 19 6月, 2022 4 次提交
  5. 16 6月, 2022 8 次提交
  6. 28 5月, 2022 1 次提交
  7. 20 5月, 2022 6 次提交
  8. 06 5月, 2022 1 次提交
  9. 04 5月, 2022 2 次提交
  10. 30 4月, 2022 1 次提交
    • 表单field支持a.b.c的写法 (#1549) · d09e998a
      * chore: table size放到settings
      
      * chore(TableAction): 操作确认框增加placement属性支持
      
      * chore(Form): 表单field支持a.b.c嵌套写法
      
      Co-authored-by: jinmao88 <50581550+jinmao88@users.noreply.github.com>
      Joyboo authored
  11. 29 4月, 2022 5 次提交