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 bb3180a0c feat: ssls list page, add page (#3014) add 14f999acc feat: consumers pages without credentials (#3016) No new revisions were added by this update. Summary of changes: src/apis/consumers.ts | 34 ++++++ src/components/form-slice/FormPartBasic.tsx | 7 +- src/components/form-slice/FormPartConsumer.tsx | 43 +++++++ src/components/form-slice/FormSectionGeneral.tsx | 14 +-- .../page-slice/consumers/DetailCredentialsTabs.tsx | 43 +++++++ src/components/page/Tabs.tsx | 43 +++++++ src/components/page/ToAddPageBtn.tsx | 10 +- src/config/constant.ts | 1 + src/locales/en/common.json | 22 ++++ src/routeTree.gen.ts | 83 ++++++++++++- src/routes/{services => consumers}/add.tsx | 33 ++--- .../detail.$username/credentials/index.tsx | 16 +++ .../detail.$username/index.tsx} | 58 +++++---- src/routes/consumers/index.tsx | 133 ++++++++++++++++++++- src/routes/routes/index.tsx | 2 +- src/routes/stream_routes/index.tsx | 2 +- src/routes/upstreams/index.tsx | 2 +- src/types/schema/apisix/consumers.ts | 23 ++++ src/types/schema/apisix/index.ts | 2 + src/types/schema/apisix/type.ts | 5 + 20 files changed, 513 insertions(+), 63 deletions(-) create mode 100644 src/apis/consumers.ts create mode 100644 src/components/form-slice/FormPartConsumer.tsx create mode 100644 src/components/page-slice/consumers/DetailCredentialsTabs.tsx create mode 100644 src/components/page/Tabs.tsx copy src/routes/{services => consumers}/add.tsx (61%) create mode 100644 src/routes/consumers/detail.$username/credentials/index.tsx copy src/routes/{routes/detail.$id.tsx => consumers/detail.$username/index.tsx} (63%) create mode 100644 src/types/schema/apisix/consumers.ts