You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by pa...@apache.org on 2021/10/12 16:54:17 UTC

[beam] branch master updated (09b80c4 -> a75fe13)

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

pabloem pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git.


    from 09b80c4  Merge pull request #15667 from [BEAM-12730] Add custom delimiters to Python TextIO reads
     add a75fe13  Merge pull request #15700 from [BEAM-12987] [Playground] Add page UI elements

No new revisions were added by this update.

Summary of changes:
 build.gradle.kts                                   |   3 +
 playground/frontend/analysis_options.yaml          |   1 +
 playground/frontend/assets/beam.png                | Bin 0 -> 601 bytes
 playground/frontend/assets/github.svg              |   5 +
 playground/frontend/assets/output_bottom.svg       |   7 ++
 playground/frontend/assets/output_left.svg         |   7 ++
 playground/frontend/assets/output_right.svg        |   7 ++
 playground/frontend/assets/reset.svg               |   5 +
 playground/frontend/assets/send_feedback.svg       |   5 +
 playground/frontend/assets/shortcuts.svg           |  11 ++
 playground/frontend/assets/theme.svg               |   8 ++
 .../toggle_theme_button/toggle_theme_button.dart   |   7 +-
 playground/frontend/lib/config/theme.dart          |  63 ++++++++++-
 .../lib/constants/{sizes.dart => assets.dart}      |  22 ++--
 .../font_weight.dart}                              |  14 +--
 playground/frontend/lib/constants/sizes.dart       |   9 +-
 .../components/header_icon_button.dart}            |  23 +++-
 .../components/new_example_action.dart}            |  18 ++-
 .../components/reset_action.dart}                  |  21 +++-
 .../components/{output_area.dart => output.dart}   |  13 ++-
 .../lib/modules/output/components/output_area.dart |  15 ++-
 .../output_header.dart}                            |  25 ++++-
 .../output_header/output_placements.dart           |  53 +++++++++
 .../output_tabs.dart}                              |  15 ++-
 .../output_placement.dart}                         |  24 ++--
 .../output/models/output_placement_state.dart}     |  17 ++-
 .../components/editor_textarea_wrapper.dart        |  30 ++++-
 .../pages/playground/components/more_actions.dart  | 123 +++++++++++++++++++++
 .../components/playground_page_body.dart           |  70 ++++++++++++
 .../components/playground_page_footer.dart         |  71 ++++++++++++
 .../components/playground_page_providers.dart      |   4 +
 .../lib/pages/playground/playground_page.dart      |  44 ++++----
 .../pages/playground/states/playground_state.dart  |   6 +
 playground/frontend/pubspec.lock                   | 100 ++++++++++++++++-
 playground/frontend/pubspec.yaml                   |   4 +
 .../playground/states/mocks/example_mock.dart}     |  27 +++--
 .../{ => states}/playground_state_test.dart        |  25 +++++
 37 files changed, 788 insertions(+), 114 deletions(-)
 create mode 100644 playground/frontend/assets/beam.png
 create mode 100644 playground/frontend/assets/github.svg
 create mode 100644 playground/frontend/assets/output_bottom.svg
 create mode 100644 playground/frontend/assets/output_left.svg
 create mode 100644 playground/frontend/assets/output_right.svg
 create mode 100644 playground/frontend/assets/reset.svg
 create mode 100644 playground/frontend/assets/send_feedback.svg
 create mode 100644 playground/frontend/assets/shortcuts.svg
 create mode 100644 playground/frontend/assets/theme.svg
 copy playground/frontend/lib/constants/{sizes.dart => assets.dart} (70%)
 copy playground/frontend/lib/{modules/output/components/output_area.dart => constants/font_weight.dart} (76%)
 copy playground/frontend/lib/modules/{output/components/output_area.dart => actions/components/header_icon_button.dart} (65%)
 copy playground/frontend/lib/modules/{output/components/output_area.dart => actions/components/new_example_action.dart} (62%)
 copy playground/frontend/lib/modules/{output/components/output_area.dart => actions/components/reset_action.dart} (60%)
 copy playground/frontend/lib/modules/output/components/{output_area.dart => output.dart} (69%)
 copy playground/frontend/lib/modules/output/components/{output_area.dart => output_header/output_header.dart} (58%)
 create mode 100644 playground/frontend/lib/modules/output/components/output_header/output_placements.dart
 copy playground/frontend/lib/modules/output/components/{output_area.dart => output_header/output_tabs.dart} (75%)
 copy playground/frontend/lib/modules/output/{components/output_area.dart => models/output_placement.dart} (66%)
 rename playground/frontend/{test/widget_test.dart => lib/modules/output/models/output_placement_state.dart} (68%)
 create mode 100644 playground/frontend/lib/pages/playground/components/more_actions.dart
 create mode 100644 playground/frontend/lib/pages/playground/components/playground_page_body.dart
 create mode 100644 playground/frontend/lib/pages/playground/components/playground_page_footer.dart
 copy playground/frontend/{lib/constants/sizes.dart => test/pages/playground/states/mocks/example_mock.dart} (66%)
 rename playground/frontend/test/pages/playground/{ => states}/playground_state_test.dart (66%)