This is an automated email from the ASF dual-hosted git repository. young pushed a change to branch dev/next in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git
from ba58afa61 feat: services pages (#3012) add bb3180a0c feat: ssls list page, add page (#3014) No new revisions were added by this update. Summary of changes: src/apis/ssls.ts | 38 +++++++ src/components/form-slice/FormPartBasic.tsx | 2 +- src/components/form-slice/FormPartProto.tsx | 10 +- .../form-slice/FormPartSSL/FormItemCertKeyList.tsx | 107 ++++++++++++++++++ src/components/form-slice/FormPartSSL/index.tsx | 89 +++++++++++++++ src/components/form-slice/FormPartSSL/schema.ts | 12 ++ src/components/form-slice/FormSectionGeneral.tsx | 6 +- ...leUploadTextarea.tsx => TextareaWithUpload.tsx} | 23 ++-- src/config/constant.ts | 1 + src/locales/en/common.json | 28 +++++ src/routeTree.gen.ts | 26 +++++ src/routes/{routes => ssls}/add.tsx | 42 ++++--- src/routes/ssls/index.tsx | 124 ++++++++++++++++++++- src/types/schema/apisix/common.ts | 1 - src/types/schema/apisix/index.ts | 2 + src/types/schema/apisix/ssls.ts | 41 +++++++ src/types/schema/apisix/type.ts | 3 + 17 files changed, 511 insertions(+), 44 deletions(-) create mode 100644 src/apis/ssls.ts create mode 100644 src/components/form-slice/FormPartSSL/FormItemCertKeyList.tsx create mode 100644 src/components/form-slice/FormPartSSL/index.tsx create mode 100644 src/components/form-slice/FormPartSSL/schema.ts rename src/components/form/{FileUploadTextarea.tsx => TextareaWithUpload.tsx} (85%) copy src/routes/{routes => ssls}/add.tsx (59%) create mode 100644 src/types/schema/apisix/ssls.ts