ChOpsUI: user-dopdown -> user-dropdown.

Bug:
Change-Id: I8b3568a0a44ff109b894619654791e7aa98a12af
Reviewed-on: https://chromium-review.googlesource.com/815376
Reviewed-by: Sean McCullough <seanmccullough@chromium.org>
Commit-Queue: Tiffany Zhang <zhangtiff@chromium.org>

Cr-Mirrored-From: https://chromium.googlesource.com/infra/infra
Cr-Mirrored-Commit: cd0113700824ec9b0078943fc2064e0f3305e5a0
4 files changed
tree: a154e97f7be59a9a65bc02bc51182ffba8355470
  1. demo/
  2. img/
  3. test/
  4. .gitignore
  5. bower.json
  6. crdx-bug-input.html
  7. crdx-bug-link.html
  8. crdx-cl-link.html
  9. crdx-header.html
  10. crdx-login.html
  11. crdx-styles.css
  12. crdx-timestamp.html
  13. crdx-tree-status.html
  14. crdx-user-dropdown.html
  15. crdx-user-id.html
  16. crdx-user-input.html
  17. new-element-test.sh
  18. new-element.sh
  19. README.md
README.md

chopsui

Design Doc: go/chopsui

This directory contains Polymer Web Components that are meant to be shared by Chrome Operations' application frontends.

chopsui/ has been published as the bower package: chopsui

Definitions

infra repo

  • The chopsui directory in the infra repo

chopsui repo

  • A subdirectory mirror repo of the chopsui directory in the infra repo

Code changes should be done in the infra repo.

New versions of the chopsui bower package are published by pushing git tags. This should be done in the chopsui repo. See the Pushing a New Version section.

Documenting elements

Please add demos and documentation for elements as described in the polymer docs.

Check that your demo and documentation are working and correct by running:

polymer serve

then visit localhost:XXXX/componenets/chopsui/demo/my-el_demo.html

Pushing a New Version

New versions are published by pushing git version tags while in the chopsui repo. Bower will automatically detect a new version tag.

Prerequisites

You need to be granted permission to push tags in the chopsui repo. If you don't have permission, please contact jojwang@, zhangtiff@, or seanmccullough@ for instructions on how to proceed.

make a clone of the chopsui repo

git clone https://chromium.googlesource.com/infra/infra/crdx/chopsui

make sure chromium's depot_tools is in your path

Push a new version tag

  1. Once the latest change(committed in the infra repo) for the new version has landed, switch to the chopsui repo
  2. To view existing tags run
git tag
  1. Create a new version tag
git tag v0.0.31 # replace 0.0.31 with an appropriate version number
  1. Push the new tag
git push --tags

That's it! Run

bower info chopsui

You should see the new version tag you just pushed listed under ‘Available versions’.