You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by zh...@apache.org on 2022/01/19 14:41:41 UTC

[dolphinscheduler] branch dev updated (8ef72fc -> 62198fd)

This is an automated email from the ASF dual-hosted git repository.

zhongjiajie pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git.


    from 8ef72fc  [Feature][UI Next] Add workflow relation layout and format. (#8125)
     add 62198fd  [Feature][UI Next] Add udf function manage (#8126)

No new revisions were added by this update.

Summary of changes:
 .../src/locales/modules/en_US.ts                   |  32 +++
 .../src/locales/modules/zh_CN.ts                   |  31 +++
 .../src/router/modules/resources.ts                |   8 +
 .../src/service/modules/resources/index.ts         |  10 +-
 .../src/service/modules/resources/types.ts         |   2 +-
 .../udf/function/components/function-modal.tsx     | 269 +++++++++++++++++++++
 .../{resource => function}/components/use-form.ts  |  59 +++--
 .../resource/udf/function/components/use-modal.ts  | 184 ++++++++++++++
 .../udf/{resource => function}/index.module.scss   |   8 -
 .../udf/function}/index.tsx                        | 130 +++++-----
 .../resource/udf/{resource => function}/types.ts   |  16 +-
 .../udf/{resource => function}/use-table.ts        | 147 ++---------
 12 files changed, 669 insertions(+), 227 deletions(-)
 create mode 100644 dolphinscheduler-ui-next/src/views/resource/udf/function/components/function-modal.tsx
 copy dolphinscheduler-ui-next/src/views/resource/udf/{resource => function}/components/use-form.ts (54%)
 create mode 100644 dolphinscheduler-ui-next/src/views/resource/udf/function/components/use-modal.ts
 copy dolphinscheduler-ui-next/src/views/resource/udf/{resource => function}/index.module.scss (93%)
 copy dolphinscheduler-ui-next/src/views/{security/tenant-manage => resource/udf/function}/index.tsx (54%)
 copy dolphinscheduler-ui-next/src/views/resource/udf/{resource => function}/types.ts (85%)
 copy dolphinscheduler-ui-next/src/views/resource/udf/{resource => function}/use-table.ts (52%)