This is an automated email from the ASF dual-hosted git repository.
bbovenzi pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
from de0e279817e Integrate API with Trigger Dag Run (#44850)
add 2e2c65686f4 Add support for XCom page in browse and task instance tab
(#44869)
No new revisions were added by this update.
Summary of changes:
airflow/api_fastapi/core_api/datamodels/xcom.py | 1 +
.../api_fastapi/core_api/openapi/v1-generated.yaml | 12 +++
airflow/ui/openapi-gen/requests/schemas.gen.ts | 15 +++
airflow/ui/openapi-gen/requests/types.gen.ts | 3 +
airflow/ui/src/components/ui/Clipboard.tsx | 112 +++++++++++++++++++++
airflow/ui/src/components/ui/index.ts | 1 +
airflow/ui/src/layouts/Nav/BrowseButton.tsx | 4 +
airflow/ui/src/pages/XCom/XCom.tsx | 87 ++++++++++++++++
airflow/ui/src/pages/XCom/XComEntry.tsx | 66 ++++++++++++
.../{layouts/Details/Graph => pages/XCom}/index.ts | 2 +-
airflow/ui/src/router.tsx | 7 +-
.../core_api/routes/public/test_xcom.py | 12 +++
12 files changed, 320 insertions(+), 2 deletions(-)
create mode 100644 airflow/ui/src/components/ui/Clipboard.tsx
create mode 100644 airflow/ui/src/pages/XCom/XCom.tsx
create mode 100644 airflow/ui/src/pages/XCom/XComEntry.tsx
copy airflow/ui/src/{layouts/Details/Graph => pages/XCom}/index.ts (96%)