├── .gitignore ├── LICENSE ├── README.md ├── pom.xml ├── src └── main │ ├── java │ └── org │ │ └── jboss │ │ └── errai │ │ └── demo │ │ ├── App.gwt.xml │ │ ├── client │ │ ├── local │ │ │ ├── AppSetup.java │ │ │ ├── BaseContactView.java │ │ │ ├── BindableEmailAnchor.java │ │ │ ├── BindableTelAnchor.java │ │ │ ├── Click.java │ │ │ ├── ContactDisplay.java │ │ │ ├── ContactEditor.java │ │ │ ├── ContactListPage.java │ │ │ ├── DateConverter.java │ │ │ ├── Elemental2Producer.java │ │ │ ├── JQueryProducer.java │ │ │ ├── NavBar.java │ │ │ ├── PaperInput.java │ │ │ ├── PaperTextArea.java │ │ │ ├── contact-page.css │ │ │ └── contact-page.html │ │ └── shared │ │ │ ├── Contact.java │ │ │ ├── ContactOperation.java │ │ │ ├── ContactStorageService.java │ │ │ └── Operation.java │ │ └── server │ │ ├── ContactEntityService.java │ │ └── ContactStorageServiceImpl.java │ ├── resources │ ├── META-INF │ │ ├── ErraiApp.properties │ │ └── persistence.xml │ └── log4j.properties │ └── webapp │ ├── WEB-INF │ ├── beans.xml │ ├── jboss-deployment-structure.xml │ └── web.xml │ ├── bower_components │ ├── font-roboto │ │ ├── .bower.json │ │ ├── README.md │ │ └── roboto.html │ ├── iron-a11y-announcer │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── index.html │ │ │ └── x-announces.html │ │ ├── index.html │ │ ├── iron-a11y-announcer.html │ │ └── test │ │ │ ├── index.html │ │ │ └── iron-a11y-announcer.html │ ├── iron-a11y-keys-behavior │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── index.html │ │ │ └── x-key-aware.html │ │ ├── index.html │ │ ├── iron-a11y-keys-behavior.html │ │ └── test │ │ │ ├── basic-test.html │ │ │ └── index.html │ ├── iron-autogrow-textarea │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── iron-autogrow-textarea.html │ │ └── test │ │ │ ├── basic.html │ │ │ └── index.html │ ├── iron-behaviors │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── index.html │ │ │ └── simple-button.html │ │ ├── index.html │ │ ├── iron-button-state.html │ │ ├── iron-control-state.html │ │ └── test │ │ │ ├── active-state.html │ │ │ ├── disabled-state.html │ │ │ ├── focused-state.html │ │ │ ├── index.html │ │ │ └── test-elements.html │ ├── iron-checked-element-behavior │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── index.html │ │ │ └── simple-checkbox.html │ │ ├── index.html │ │ ├── iron-checked-element-behavior.html │ │ └── test │ │ │ ├── basic.html │ │ │ ├── index.html │ │ │ └── simple-checkbox.html │ ├── iron-collapse │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── iron-collapse.html │ │ └── test │ │ │ ├── a11y.html │ │ │ ├── basic.html │ │ │ ├── flex.html │ │ │ ├── horizontal.html │ │ │ ├── index.html │ │ │ └── nested.html │ ├── iron-dropdown │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── grow-height-animation.html │ │ │ ├── index.html │ │ │ └── x-select.html │ │ ├── index.html │ │ ├── iron-dropdown-scroll-manager.html │ │ ├── iron-dropdown.html │ │ └── test │ │ │ ├── index.html │ │ │ ├── iron-dropdown-scroll-manager.html │ │ │ ├── iron-dropdown.html │ │ │ └── x-scrollable-element.html │ ├── iron-fit-behavior │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── index.html │ │ │ └── simple-fit.html │ │ ├── index.html │ │ ├── iron-fit-behavior.html │ │ └── test │ │ │ ├── index.html │ │ │ ├── iron-fit-behavior.html │ │ │ └── test-fit.html │ ├── iron-flex-layout │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── iron-flex-layout-classes.html │ │ ├── iron-flex-layout.html │ │ └── test │ │ │ ├── index.html │ │ │ ├── iron-flex-layout-classes.html │ │ │ └── iron-flex-layout.html │ ├── iron-form-element-behavior │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── index.html │ │ │ ├── simple-element.html │ │ │ └── simple-form.html │ │ ├── index.html │ │ ├── iron-form-element-behavior.html │ │ └── test │ │ │ ├── basic.html │ │ │ ├── index.html │ │ │ ├── simple-element.html │ │ │ └── simple-form.html │ ├── iron-icon │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── async.html │ │ │ ├── index.html │ │ │ └── location.png │ │ ├── hero.svg │ │ ├── index.html │ │ ├── iron-icon.html │ │ └── test │ │ │ ├── index.html │ │ │ └── iron-icon.html │ ├── iron-iconset-svg │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── index.html │ │ │ └── svg-sample-icons.html │ │ ├── index.html │ │ ├── iron-iconset-svg.html │ │ └── test │ │ │ ├── index.html │ │ │ └── iron-iconset-svg.html │ ├── iron-image │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── index.html │ │ │ ├── loading.png │ │ │ └── polymer.svg │ │ ├── index.html │ │ ├── iron-image.html │ │ └── test │ │ │ ├── index.html │ │ │ └── iron-image.html │ ├── iron-input │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── iron-input.html │ │ └── test │ │ │ ├── disabled-input.html │ │ │ ├── index.html │ │ │ ├── iron-input.html │ │ │ └── letters-only.html │ ├── iron-media-query │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── iron-media-query.html │ │ └── test │ │ │ ├── basic.html │ │ │ └── index.html │ ├── iron-menu-behavior │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── index.html │ │ │ ├── simple-menu.html │ │ │ └── simple-menubar.html │ │ ├── index.html │ │ ├── iron-menu-behavior.html │ │ ├── iron-menubar-behavior.html │ │ └── test │ │ │ ├── index.html │ │ │ ├── iron-menu-behavior.html │ │ │ ├── iron-menubar-behavior.html │ │ │ ├── test-menu.html │ │ │ ├── test-menubar.html │ │ │ └── test-nested-menu.html │ ├── iron-meta │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── iron-meta.html │ │ └── test │ │ │ ├── basic.html │ │ │ ├── index.html │ │ │ └── iron-meta.html │ ├── iron-overlay-behavior │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── index.html │ │ │ └── simple-overlay.html │ │ ├── index.html │ │ ├── iron-overlay-backdrop.html │ │ ├── iron-overlay-behavior.html │ │ ├── iron-overlay-manager.html │ │ └── test │ │ │ ├── index.html │ │ │ ├── iron-overlay-backdrop.html │ │ │ ├── iron-overlay-behavior.html │ │ │ ├── test-buttons.html │ │ │ ├── test-menu-button.html │ │ │ ├── test-overlay.html │ │ │ └── test-overlay2.html │ ├── iron-range-behavior │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── iron-range-behavior.html │ │ └── test │ │ │ ├── basic.html │ │ │ ├── index.html │ │ │ └── x-progressbar.html │ ├── iron-resizable-behavior │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── index.html │ │ │ └── src │ │ │ │ └── x-app.html │ │ ├── index.html │ │ ├── iron-resizable-behavior.html │ │ └── test │ │ │ ├── basic.html │ │ │ ├── index.html │ │ │ ├── iron-resizable-behavior.html │ │ │ └── test-elements.html │ ├── iron-selector │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── iron-multi-selectable.html │ │ ├── iron-selectable.html │ │ ├── iron-selection.html │ │ ├── iron-selector.html │ │ └── test │ │ │ ├── activate-event.html │ │ │ ├── attr-for-selected-elements.html │ │ │ ├── attr-for-selected.html │ │ │ ├── basic.html │ │ │ ├── content-element.html │ │ │ ├── content.html │ │ │ ├── excluded-local-names.html │ │ │ ├── index.html │ │ │ ├── multi.html │ │ │ ├── next-previous.html │ │ │ ├── numeric-ids.html │ │ │ ├── selected-attribute.html │ │ │ └── template-repeat.html │ ├── iron-validatable-behavior │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── cats-only.html │ │ │ ├── index.html │ │ │ └── validatable-input.html │ │ ├── index.html │ │ ├── iron-validatable-behavior.html │ │ └── test │ │ │ ├── cats-only.html │ │ │ ├── dogs-only.html │ │ │ ├── index.html │ │ │ ├── iron-validatable-behavior.html │ │ │ └── test-validatable.html │ ├── neon-animation │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── animations │ │ │ ├── cascaded-animation.html │ │ │ ├── fade-in-animation.html │ │ │ ├── fade-out-animation.html │ │ │ ├── hero-animation.html │ │ │ ├── opaque-animation.html │ │ │ ├── reverse-ripple-animation.html │ │ │ ├── ripple-animation.html │ │ │ ├── scale-down-animation.html │ │ │ ├── scale-up-animation.html │ │ │ ├── slide-down-animation.html │ │ │ ├── slide-from-bottom-animation.html │ │ │ ├── slide-from-left-animation.html │ │ │ ├── slide-from-right-animation.html │ │ │ ├── slide-from-top-animation.html │ │ │ ├── slide-left-animation.html │ │ │ ├── slide-right-animation.html │ │ │ ├── slide-up-animation.html │ │ │ └── transform-animation.html │ │ ├── demo │ │ │ ├── card │ │ │ │ ├── index.html │ │ │ │ ├── x-card.html │ │ │ │ └── x-cards-list.html │ │ │ ├── declarative │ │ │ │ └── index.html │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── my-animatable.html │ │ │ │ └── my-dialog.html │ │ │ ├── dropdown │ │ │ │ ├── animated-dropdown.html │ │ │ │ └── index.html │ │ │ ├── grid │ │ │ │ ├── animated-grid.html │ │ │ │ ├── fullsize-page-with-card.html │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── list │ │ │ │ ├── full-view.html │ │ │ │ ├── index.html │ │ │ │ ├── list-demo.html │ │ │ │ └── list-view.html │ │ │ ├── load │ │ │ │ ├── animated-grid.html │ │ │ │ ├── full-page.html │ │ │ │ └── index.html │ │ │ ├── reprojection │ │ │ │ ├── animated-grid.html │ │ │ │ ├── fullsize-page-with-card.html │ │ │ │ ├── index.html │ │ │ │ └── reprojected-pages.html │ │ │ ├── shared-styles.html │ │ │ └── tiles │ │ │ │ ├── circles-page.html │ │ │ │ ├── index.html │ │ │ │ └── squares-page.html │ │ ├── guides │ │ │ └── neon-animation.md │ │ ├── index.html │ │ ├── neon-animatable-behavior.html │ │ ├── neon-animatable.html │ │ ├── neon-animated-pages.html │ │ ├── neon-animation-behavior.html │ │ ├── neon-animation-runner-behavior.html │ │ ├── neon-animation.html │ │ ├── neon-animations.html │ │ ├── neon-shared-element-animatable-behavior.html │ │ ├── neon-shared-element-animation-behavior.html │ │ ├── test │ │ │ ├── index.html │ │ │ ├── neon-animated-pages-descendant-selection.html │ │ │ ├── neon-animated-pages-lazy.html │ │ │ ├── neon-animated-pages.html │ │ │ └── test-resizable-pages.html │ │ └── web-animations.html │ ├── paper-badge │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── index.html │ │ │ └── test-button.html │ │ ├── index.html │ │ ├── paper-badge.html │ │ └── test │ │ │ ├── basic.html │ │ │ ├── index.html │ │ │ └── test-button.html │ ├── paper-behaviors │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── index.html │ │ │ ├── paper-button.html │ │ │ └── paper-radio-button.html │ │ ├── index.html │ │ ├── paper-button-behavior.html │ │ ├── paper-checked-element-behavior.html │ │ ├── paper-inky-focus-behavior.html │ │ ├── paper-ripple-behavior.html │ │ └── test │ │ │ ├── index.html │ │ │ ├── paper-button-behavior.html │ │ │ ├── paper-checked-element-behavior.html │ │ │ ├── paper-radio-button-behavior.html │ │ │ ├── paper-ripple-behavior.html │ │ │ ├── shadowed-ripple.html │ │ │ ├── test-button.html │ │ │ └── test-radio-button.html │ ├── paper-button │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── paper-button.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-button.html │ ├── paper-card │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── cafe.png │ │ │ ├── donuts.png │ │ │ ├── house.png │ │ │ ├── index.html │ │ │ ├── travel.png │ │ │ └── trip.png │ │ ├── index.html │ │ ├── paper-card.html │ │ └── test │ │ │ ├── basic.html │ │ │ └── index.html │ ├── paper-checkbox │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── paper-checkbox.html │ │ └── test │ │ │ ├── basic.html │ │ │ └── index.html │ ├── paper-dialog-behavior │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── index.html │ │ │ └── simple-dialog.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-dialog-behavior.html │ │ ├── paper-dialog-common.css │ │ ├── paper-dialog-shared-styles.html │ │ └── test │ │ │ ├── index.html │ │ │ ├── paper-dialog-behavior.html │ │ │ ├── test-buttons.html │ │ │ └── test-dialog.html │ ├── paper-dialog-scrollable │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-dialog-scrollable.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-dialog-scrollable.html │ ├── paper-dialog │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-dialog.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-dialog.html │ ├── paper-drawer-panel │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-drawer-panel.html │ │ └── test │ │ │ ├── focus.html │ │ │ ├── index.html │ │ │ ├── positioning.html │ │ │ └── small-devices.html │ ├── paper-dropdown-menu │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── paper-dropdown-menu-icons.html │ │ ├── paper-dropdown-menu-light.html │ │ ├── paper-dropdown-menu-shared-styles.html │ │ ├── paper-dropdown-menu.html │ │ └── test │ │ │ ├── index.html │ │ │ ├── paper-dropdown-menu-light.html │ │ │ └── paper-dropdown-menu.html │ ├── paper-elements │ │ ├── .bower.json │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ └── paper-elements.html │ ├── paper-fab │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── paper-fab.html │ │ └── test │ │ │ ├── a11y.html │ │ │ ├── basic.html │ │ │ └── index.html │ ├── paper-header-panel │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-header-panel.html │ │ └── test │ │ │ ├── basic.html │ │ │ └── index.html │ ├── paper-icon-button │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── index.html │ │ │ └── paper-icon-button-light.html │ │ ├── index.html │ │ ├── paper-icon-button-light.html │ │ ├── paper-icon-button.html │ │ └── test │ │ │ ├── a11y.html │ │ │ ├── basic.html │ │ │ └── index.html │ ├── paper-input │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── all-imports.html │ │ ├── demo │ │ │ ├── index.html │ │ │ ├── ssn-input.html │ │ │ └── ssn-validator.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-input-addon-behavior.html │ │ ├── paper-input-behavior.html │ │ ├── paper-input-char-counter.html │ │ ├── paper-input-container.html │ │ ├── paper-input-error.html │ │ ├── paper-input.html │ │ ├── paper-textarea.html │ │ └── test │ │ │ ├── index.html │ │ │ ├── letters-only.html │ │ │ ├── paper-input-char-counter.html │ │ │ ├── paper-input-container.html │ │ │ ├── paper-input-error.html │ │ │ ├── paper-input.html │ │ │ └── paper-textarea.html │ ├── paper-item │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── all-imports.html │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── paper-icon-item.html │ │ ├── paper-item-behavior.html │ │ ├── paper-item-body.html │ │ ├── paper-item-shared-styles.html │ │ ├── paper-item.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-item.html │ ├── paper-listbox │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-listbox.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-listbox.html │ ├── paper-material │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── paper-material-shared-styles.html │ │ ├── paper-material.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-material.html │ ├── paper-menu-button │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-menu-button-animations.html │ │ ├── paper-menu-button.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-menu-button.html │ ├── paper-menu │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-menu-shared-styles.html │ │ ├── paper-menu.html │ │ ├── paper-submenu.html │ │ └── test │ │ │ ├── index.html │ │ │ ├── paper-menu.html │ │ │ └── paper-submenu.html │ ├── paper-progress │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-progress.html │ │ └── test │ │ │ ├── basic.html │ │ │ └── index.html │ ├── paper-radio-button │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-radio-button.html │ │ └── test │ │ │ ├── basic.html │ │ │ └── index.html │ ├── paper-radio-group │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-radio-group.html │ │ └── test │ │ │ ├── basic.html │ │ │ └── index.html │ ├── paper-ripple │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-ripple.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-ripple.html │ ├── paper-scroll-header-panel │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── drawer-panel.html │ │ │ ├── hide-header.html │ │ │ ├── images │ │ │ │ ├── bg1.jpg │ │ │ │ ├── bg2.jpg │ │ │ │ ├── bg3.jpg │ │ │ │ └── bg4.jpg │ │ │ ├── index.html │ │ │ ├── keep-header.html │ │ │ ├── lorem-ipsum.html │ │ │ ├── sample-content.html │ │ │ ├── toggle-fixed-header.html │ │ │ ├── transform-header-1.html │ │ │ ├── transform-header-2.html │ │ │ ├── transform-header-3.html │ │ │ ├── transform-header-4.html │ │ │ ├── transform-header-5.html │ │ │ └── transform-header-6.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-scroll-header-panel.html │ │ └── test │ │ │ ├── basic.html │ │ │ ├── header-state.html │ │ │ ├── index.html │ │ │ └── scroll.html │ ├── paper-slider │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-slider.html │ │ └── test │ │ │ ├── a11y.html │ │ │ ├── basic.html │ │ │ └── index.html │ ├── paper-spinner │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-spinner-behavior.html │ │ ├── paper-spinner-lite.html │ │ ├── paper-spinner-styles.html │ │ ├── paper-spinner.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-spinner.html │ ├── paper-styles │ │ ├── .bower.json │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── color.html │ │ ├── default-theme.html │ │ ├── demo-pages.html │ │ ├── demo.css │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── paper-styles-classes.html │ │ ├── paper-styles.html │ │ ├── shadow.html │ │ └── typography.html │ ├── paper-tabs │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-tab.html │ │ ├── paper-tabs-icons.html │ │ ├── paper-tabs.html │ │ └── test │ │ │ ├── attr-for-selected.html │ │ │ ├── basic.html │ │ │ ├── index.html │ │ │ └── links.html │ ├── paper-toast │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-toast.html │ │ └── test │ │ │ ├── basic.html │ │ │ └── index.html │ ├── paper-toggle-button │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── hero.svg │ │ ├── index.html │ │ ├── paper-toggle-button.html │ │ └── test │ │ │ ├── basic.html │ │ │ └── index.html │ ├── paper-toolbar │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── index.html │ │ ├── paper-toolbar.html │ │ └── test │ │ │ ├── index.html │ │ │ └── paper-toolbar.html │ ├── paper-tooltip │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── demo │ │ │ ├── index.html │ │ │ └── test-button.html │ │ ├── index.html │ │ ├── paper-tooltip.html │ │ └── test │ │ │ ├── basic.html │ │ │ ├── index.html │ │ │ └── test-button.html │ ├── platform │ │ ├── .bower.json │ │ ├── README.md │ │ ├── platform.js │ │ └── platform.js.map │ ├── polymer │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ ├── polymer-micro.html │ │ ├── polymer-mini.html │ │ └── polymer.html │ ├── web-animations-js │ │ ├── .bower.json │ │ ├── CONTRIBUTING.md │ │ ├── COPYING │ │ ├── History.md │ │ ├── README.md │ │ ├── web-animations-next-lite.min.js │ │ ├── web-animations-next-lite.min.js.map │ │ ├── web-animations-next.min.js │ │ ├── web-animations-next.min.js.map │ │ ├── web-animations.html │ │ ├── web-animations.min.js │ │ └── web-animations.min.js.map │ └── webcomponentsjs │ │ ├── .bower.json │ │ ├── CustomElements.js │ │ ├── CustomElements.min.js │ │ ├── HTMLImports.js │ │ ├── HTMLImports.min.js │ │ ├── MutationObserver.js │ │ ├── MutationObserver.min.js │ │ ├── README.md │ │ ├── ShadowDOM.js │ │ ├── ShadowDOM.min.js │ │ ├── package.json │ │ ├── webcomponents-lite.js │ │ ├── webcomponents-lite.min.js │ │ ├── webcomponents.js │ │ └── webcomponents.min.js │ ├── css │ ├── application.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ └── shop-homepage.css │ ├── favicon.ico │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ ├── img │ ├── errai.png │ ├── errai_logo.png │ └── rodentia-icons_x-office-address-book.svg │ ├── index.jsp │ └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── jquery.js └── tutorial-guide ├── DEVELOP.adoc ├── FAQ.adoc ├── INDEX.adoc ├── RUN.adoc └── SETUP.adoc /.gitignore: -------------------------------------------------------------------------------- 1 | .forge_settings 2 | .errai 3 | src/main/webapp/app/ 4 | src/main/gwt-unitCache/ 5 | rebel.xml 6 | .forge_settings 7 | src/main/webapp/WEB-INF/deploy/app/rpcPolicyManifest/ 8 | src/main/webapp/WEB-INF/classes/ 9 | src/main/webapp/WEB-INF/lib/ 10 | *.iml 11 | /.idea/* 12 | .classpath 13 | .project 14 | .settings 15 | .metadata/* 16 | .gwt-tmp/ 17 | target/ 18 | bin/ 19 | classes/ 20 | data 21 | deploy/ 22 | .errai/ 23 | .DS_Store 24 | *.releaseBackup 25 | release.properties 26 | *.log 27 | .gwt 28 | /war/WEB-INF/classes/ 29 | /errai-bus/war/WEB-INF/classes/ 30 | /errai-ioc/war/WEB-INF/classes/ 31 | /errai-tools/war/ 32 | */**/war/AsyncDemo/ 33 | */**/war/ClientService/ 34 | */**/war/HelloWorld/ 35 | */**/war/QueryService/ 36 | */**/war/RPCDemo/ 37 | */**/war/Serialization/ 38 | */**/war/StockDemo/ 39 | *ErraiBusTests.JUnit/ 40 | *.JUnit/ 41 | gwt-unitCache/ 42 | class_list.txt 43 | *.jpage 44 | .factorypath 45 | .bowerrc 46 | bower.json 47 | -------------------------------------------------------------------------------- /src/main/java/org/jboss/errai/demo/App.gwt.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 17 | 18 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/ErraiApp.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/resources/META-INF/ErraiApp.properties -------------------------------------------------------------------------------- /src/main/resources/META-INF/persistence.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Forge Persistence Unit 5 | java:jboss/datasources/ExampleDS 6 | false 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | 2 | log4j.rootLogger=INFO, mainlogger 3 | log4j.appender.mainlogger=org.apache.log4j.ConsoleAppender 4 | log4j.appender.mainlogger.target=System.out 5 | log4j.appender.mainlogger.layout=org.apache.log4j.PatternLayout 6 | log4j.appender.mainlogger.layout.ConversionPattern=%p [%c{1}] %m%n 7 | 8 | #log4j.logger.org.jboss.errai.cdi.server.events=DEBUG 9 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/font-roboto/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "font-roboto", 3 | "version": "1.0.1", 4 | "description": "An HTML import for Roboto", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "keywords": [ 9 | "font", 10 | "roboto" 11 | ], 12 | "repository": { 13 | "type": "git", 14 | "url": "git://github.com/PolymerElements/font-roboto.git" 15 | }, 16 | "main": "roboto.html", 17 | "license": "http://polymer.github.io/LICENSE.txt", 18 | "homepage": "https://github.com/PolymerElements/font-roboto/", 19 | "ignore": [ 20 | "/.*" 21 | ], 22 | "_release": "1.0.1", 23 | "_resolution": { 24 | "type": "version", 25 | "tag": "v1.0.1", 26 | "commit": "21ce9b51a417fa9995cf6606e886aba0728f70a1" 27 | }, 28 | "_source": "git://github.com/PolymerElements/font-roboto.git", 29 | "_target": "^1.0.1", 30 | "_originalSource": "PolymerElements/font-roboto" 31 | } -------------------------------------------------------------------------------- /src/main/webapp/bower_components/font-roboto/README.md: -------------------------------------------------------------------------------- 1 | # font-roboto 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/font-roboto/roboto.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-a11y-announcer/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-a11y-announcer/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-a11y-announcer/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | iron-a11y-announcer 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-a11y-announcer/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | iron-a11y-announcer tests 12 | 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-a11y-keys-behavior/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-a11y-keys-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-a11y-keys-behavior/demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | Iron A11y Keys Behavior demo 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-a11y-keys-behavior/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | iron-a11y-keys-behavior 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-autogrow-textarea/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-autogrow-textarea/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-autogrow-textarea/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: TqFz1Cdu4BtLCHYLFPES0q+6wPfCnj9bnTfven9LIU+gtek70FPDT3UlnviNwp5ob3o0sbLgsLWG5OkCsRHli+HCgPEVDazSrghfwaT9mL+h/DlM/PVB079VDdIKvZM6L7xEF0zPv7t26kljBRQcZJ81O3K7h1mNjeBj6sDXHzE= 10 | - secure: ihYM52Uu3H7FGU+x+f+hzMcWt00B7l6GZOtxzT1xYx4hb4E9/WwXYR5z9bqN+s5p10yf3FG64zbmMTuJeBvknDpSyBt/vKP+QBBZT0hxv05GifS38hiSoYT3HBxEpwhYdpjlsSJtIbKfYGR3xIXutRzRrRKSYigcrQNX83MGWFY= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-autogrow-textarea/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | iron-autogrow-textarea tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-behaviors/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-behaviors/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-behaviors/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: H49pcRc5C6G+ti/ehtT74GZdsUsM/xCvEVJBmKq8rpck7s18R6BbH37RkF2XgYfO4rVa1Bl4KU4Wf5S6aIDYzdaq/phGtFQ04NmDYGbmBhRjwfgxlW4dJ7mkXqXCvNZkxJtAJpgzgVG+xu/I6GsO1Lp4VjGENvVYSsrkGIlSA34= 10 | - secure: Zq+hvOlL1RmTtMfAtO3bxqYnB7X6MY199cVCKo2J/EbsMvOHII1JvEU1+s2/UG9tgoiXkd7N2OfFOivlbQ75BDIwtvkq32KZNrUEC6vRGhbMBc8JCKkdFB/XHh1mNhQcn6Js656PhZIj2WteZYMSGYDUj7KcBBMacRZQKWuB0OU= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-behaviors/README.md: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | [![Build status](https://travis-ci.org/PolymerElements/iron-behaviors.svg?branch=master)](https://travis-ci.org/PolymerElements/iron-behaviors) 16 | 17 | _[Demo and API docs](https://elements.polymer-project.org/elements/iron-behaviors)_ 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-behaviors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | Iron Behaviors 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-checked-element-behavior/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-checked-element-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-checked-element-behavior/test/simple-checkbox.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 27 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-collapse/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-collapse/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-collapse/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: >- 10 | UKNKHUjbp8O3UiVmnCmmprLR573ZXak9znhIvy0Uvxpkga7DFvfKvYRFCXQI/eV2I9YOI1FgVjlPfH8Id1NOWdMLdNjAI7G5p4FWisgu36kfat853HDYemoxx0C9nqPwakPGCJ9duL1w0dwje2sEHndk1cdwkU3TMsgkawdOJbU= 11 | - secure: >- 12 | cWudj1yh2mzialubEqhSHBG/CPLtI9ZeUPaI1+N3hiPzvuxqGaEbkpzEmlZrdAfuy9axCQStg88dgKRSv+TdMbcDKpzQqfClxTf9baKgrSgzVoMReY0kjHumCJz1tIVIz74ggp/gdQVFyS9CiA82pHTnxDl/drwPIHa2S8ST02U= 13 | node_js: stable 14 | addons: 15 | firefox: '46.0' 16 | apt: 17 | sources: 18 | - google-chrome 19 | packages: 20 | - google-chrome-stable 21 | sauce_connect: true 22 | script: 23 | - xvfb-run wct 24 | - 'if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s ''default''; fi' 25 | dist: trusty 26 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-dropdown/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-dropdown/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-dropdown/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | iron-dropdown 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-fit-behavior/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-fit-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-fit-behavior/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: L4lSnuQZDY+YcXYzBZSRKjJJ1rZf18Lc/8YDgQPfkMkAItrRHGR8vblBoKiPAmtvgNxztcpZxAXTiDy1vAeVv54QnX9b1JsuOs7rrQxB4BS04Dj7LdT6DDu1p/V09MJBN11lzLVxgpxljbumwGWE4gfpDl2+rjbBt7cRV5VkVnE= 10 | - secure: H7dHZ9FQvJszK2UMNZJiZmzOPET3muO/XvlkUc1x3KcUlV5/tD/404V05XfFMowH7DavHFYleZkb89deYjq9PHncO9c4bp4SHD7HKN4FaGyhzfpXjg66v3dZH/OcERjaas337uUE2jo/x1jCq4HJCz2bMVh+bvd4du1C/2OWarc= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-flex-layout/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | 3 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-flex-layout/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: false 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: jFaXkmco40NlJT4VyFYM34Zv9D1XVfLXgixobnyHQyJDBKSXrNLcwDuvrGUpJx/pwBCxEhKAbvxeJ+PBMUv8QV08MAdw2S6QOsIe3CUxAehoNoOMJw5duhE8faWlz8qzmCWEowHVFUeVsd0ZUsgOu6RTspj2A51D/CztQuW0Ljw= 10 | - secure: fKrO5yMx8kZM1WQ3k0bzo6MCREKGW2WkCl2suDjuEtb1SQ/SaZa9Tun0fcqIHVJqg9+jOS1Romt/+MN27Nc6IT1tv/NdLd+uWjtMA+OzLyv48gzcdu8Ls/TISUGm5Wb7XHkcvMAb1tRoBs5BOvQ/85FilZLEq1km8snG9ZsOOWI= 11 | - CXX=g++-4.8 12 | node_js: stable 13 | addons: 14 | firefox: latest 15 | apt: 16 | sources: 17 | - google-chrome 18 | - ubuntu-toolchain-r-test 19 | packages: 20 | - google-chrome-stable 21 | - g++-4.8 22 | sauce_connect: true 23 | script: 24 | - xvfb-run wct 25 | - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" 26 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-flex-layout/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | iron-flex-layout 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-form-element-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-form-element-behavior/README.md: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | [![Build Status](https://travis-ci.org/PolymerElements/iron-form-element-behavior.svg?branch=master)](https://travis-ci.org/PolymerElements/iron-form-element-behavior) 13 | 14 | _[Demo and API Docs](https://elements.polymer-project.org/elements/iron-form-element-behavior)_ 15 | 16 | 17 | ##Polymer.IronFormElementBehavior 18 | 19 | 20 | Polymer.IronFormElementBehavior enables a custom element to be included 21 | in an `iron-form`. 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-form-element-behavior/demo/simple-element.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 28 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-form-element-behavior/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-form-element-behavior/test/simple-element.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-form-element-behavior/test/simple-form.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 20 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-icon/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-icon/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-icon/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: TTp7q3OKEpaFqnqbYczhMd8iXTa1Ya0jOQVq1OhljpJogLWb78qvHLHgnxgMWkw+/KDyE5KHW1CXhYUQa7C9QF2Zn7uoN27+7+4q7HuK3pTuUtqdfstLVuLHQrfK6VqUT4XjSpeMzNX/HxuD3EMBH0bMBR4CIr76sLJOuIL/XF8= 10 | - secure: damHvQXygRYIJG/8Vmqh7U4zxoi5224JIZiZVQL6I5z//s5zqHq6AqwDyfOoc0zWndJCwE8NvOzKD/lmVYXIsPcY95kkZS45Dbye0krYWUzKnv42rDi/7olXcg647iAEDVhW3BRHmA+opzQtKUpAkXl97DtPVkszLL1ReyNyv3A= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-icon/README.md: -------------------------------------------------------------------------------- 1 | [![Build status](https://travis-ci.org/PolymerElements/iron-icon.svg?branch=master)](https://travis-ci.org/PolymerElements/iron-icon) 2 | 3 | ##<iron-icon> 4 | 5 | The `iron-icon` element displays an icon. By default an icon renders as a 24px square. 6 | 7 | 19 | ```html 20 | 21 | 22 | ``` 23 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-icon/demo/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/webapp/bower_components/iron-icon/demo/location.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-icon/hero.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-icon/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-icon/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | Tests 13 | 14 | 15 | 16 | 17 | 18 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-iconset-svg/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-iconset-svg/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-iconset-svg/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: FVt0rYGSWqJW3i57y9CQHuDaa97UDwZuGc5ts+TDpbuR3DVP8LxB9MT1ApA2bqhg101hPzhWJWIK3Siotkb7eAlsiWgVhdNr8t5eZBPOOnjLiU6PNCF6ZGCZRJHQ6q4xQ2DycGug8OfwMw63yewLEYmVBppeAlStnPUfDWURlJ8= 10 | - secure: X7cWxU13zLWoahM/BNBPSvgnI396zMmLzVHDHX6zAQL7gFL+PS4Dz6WjooO3Jx79ks2E8REUzWB8IFY3FohVAncXA///PAaqNLX0k2et4aOTOs5tcsCWL4nj8tKA6vjZIZ61rCjWTyNRR+o2QPsY9QQgi3Y+6bzLguWoPuycRbE= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-iconset-svg/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-iconset-svg/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | Tests 13 | 14 | 15 | 16 | 17 | 18 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-image/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-image/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-image/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: JOd5P49LsE77iYvmnXcjrv4UOPBz5iXed34LnK4FB8+hJ79wFan/HuymA8mof1FDnyBYFqV9Zgmeo2BAmFxomtADwLL6fcX34fh5r0JPuM6pv1ovoaE/yNBrt3o7RfhQ9/VkezjGBFkrXF8ciw2e+OHu6aEcAvdqG8O0UqWHVn4= 10 | - secure: HV8pPsLmz3GsoAyAnJosqMPVL/2QA/0G71b9KTrXGvnydRwPfaxPmgklrVs0S8LlS4t1OzJcL1M8p/k2ulWL/OsmG+KVB2LRB51JsrhfDEb+XF9VpXFXv5TSx2Bv9RE4gBlY2YaVnpq5OsL9oQDLmwMvsEcPZPF/nRfnbG6zD6g= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-image/demo/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/webapp/bower_components/iron-image/demo/loading.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-image/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | iron-image 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-image/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-input/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-input/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-input/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: AnFRDBxxASn2RP4u+CHJS04g2klVTM+YL1fgNfkNIiECChymGRkeBiF7zvWPfodqPGKWhBZPAMxVuFKbztawQ95kWlbPSTNJtWhHhPcRarV5AYvjhyUV372E3REZ4CGt+T8nghD9bdJiMX5x0pXAz+wfBPPpiHwbiSPPjFLFvTs= 10 | - secure: SvsE+VQL35CZ967ZVy0+7o5xclnBM8egjhsjNRG7WxVPZQboCQ3Xwm8tIDQSWeagM3ZQRkTGca4ta91F1ZEhm4Jdt5CwKhhSNC6JgS3CX819r9UKgUnSS3nvWdqcZq4GXcMoOZm4qE9ttd3xdoKCfkLRQlEGAvM2TEw69mBhj24= 11 | node_js: stable 12 | addons: 13 | firefox: latest 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-input/hero.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-input/test/disabled-input.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 19 | 33 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-input/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | iron-input tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-input/test/letters-only.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 31 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-media-query/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-media-query/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: false 3 | before_script: 4 | - npm install web-component-tester 5 | - npm install bower 6 | - 'export PATH=$PWD/node_modules/.bin:$PATH' 7 | - bower install 8 | env: 9 | global: 10 | - secure: My9uxlkp4fZwSHKqo1RUv4yBhNl46XfbaiOsOStqJdI9l7hBfudSl7V2OZeLuV2pEDJC1z1ZqVU6C/K0/iTf7i66cd9g0iH5N+1qex8p2AcuP1evPWbwLw8moHH+M5E14MMXD8sPX4KauS8azmgRm61pppD5ZgKfCaeGZg7Tczs= 11 | - secure: LgnZP4BNGBkTZhf8Vr7r9LdrOwq2/58TqqYkFFloEGBRT6HmumNSRwNbIwOh1U9jSTVkqjC2rn4G27u4XlEIs+QTD2PVSSEKy7Vbn0KxSNCvCGaOB1ZaxWTwZa7nkg09ZFRCHGh+WIbuV+BxyzsjOqlN82GSzFNSb3rxhqDM6dU= 12 | node_js: 4 13 | addons: 14 | firefox: latest 15 | apt: 16 | sources: 17 | - google-chrome 18 | packages: 19 | - google-chrome-stable 20 | script: 21 | - xvfb-run wct 22 | - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" 23 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-media-query/README.md: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | [![Build Status](https://travis-ci.org/PolymerElements/iron-media-query.svg?branch=master)](https://travis-ci.org/PolymerElements/iron-media-query) 13 | 14 | _[Demo and API Docs](https://elements.polymer-project.org/elements/iron-media-query)_ 15 | 16 | 17 | ##<iron-media-query> 18 | 19 | 20 | `iron-media-query` can be used to data bind to a CSS media query. 21 | The `query` property is a bare CSS media query. 22 | The `query-matches` property is a boolean representing whether the page matches that media query. 23 | 24 | Example: 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-media-query/test/index.html: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | Tests 12 | 13 | 14 | 15 | 16 | 17 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-menu-behavior/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-menu-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-menu-behavior/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: CbYi/0VAtpLB+NDHdD/I9q2ldILrmyc3wxKdO5vEtMvRKYgsddQ/hXGovV3c6Hy9sAXD5sKtNi60BBG5E2XuydshjYAZiytfeNjFIvDu5627Xljjt90e/r1hg3tNHRRQihH73nPECfp/X+g+yBNCX3f0+2ExAh0DMs1DXt7Dl7Q= 10 | - secure: kLFlOTh9IjctY7DIJ3KEw5OPrqHNTzoArdabfAtisBMWahuJptKFmYCp/t+zPSL27IVqJakaqPrwGrBUi+4h3wVWredNhfl2lCpMfQfBMcHC5kBVkf2xjJyDa5Y3bP7jPq6YnWYAqEl6pBWYiHU6yWBc6BEdJ6FsTWFbLFTnY7w= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-menu-behavior/README.md: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | [![Build status](https://travis-ci.org/PolymerElements/iron-menu-behavior.svg?branch=master)](https://travis-ci.org/PolymerElements/iron-menu-behavior) 16 | 17 | _[Demo and API docs](https://elements.polymer-project.org/elements/iron-menu-behavior)_ 18 | 19 | 20 | ##Polymer.IronMenuBehavior 21 | 22 | `Polymer.IronMenuBehavior` implements accessible menu behavior. 23 | 24 | 25 | 26 | ##Polymer.IronMenubarBehavior 27 | 28 | `Polymer.IronMenubarBehavior` implements accessible menubar behavior. 29 | 30 | 31 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-meta/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-meta/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-meta/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: mjikUCoN+UpTbFHwbGXUoKp4vtZ2qNN1JYW79WcOik7fCFmvdFzfYQPDa6y9aJvU3kgkDndGdR/ynLG4kejZjmqTS5fYtdHEwpPVPapbVYnquJvCJKbMN4S2QpGCoq51pjKQ8U3Ys6G5HkmdcDfw3SKk1uMgVzKV7fEI+6WnZ/M= 10 | - secure: LHDnBtwK7yO2X4GNmIaAl7t85WWc1U189OiPqemD27+jTcKml0by1n9Mu/yrg94jYgeXab9mHgU3uMtIdQstNNwTDu8CgmmIP4H2EWopHrTi3KM7Z7aeofPgMJsVFXwg+WhNlcCfhEsygHZWTxjJXM4fcGOrFPDa4+BTgRa2hEE= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-meta/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | iron-meta 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-meta/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | Tests 13 | 14 | 15 | 16 | 17 | 18 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-overlay-behavior/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-overlay-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-overlay-behavior/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: ZE4MrCc8vi6hb2WDctjBf9Y7wmYm0tbknPCX0TR+ks0eEXt2ZkWOvMGCw6sKvL1SsrUzhSOQiAc3IFCZBZ6vA1DUCo6S+4O8IvH+VawsK34arI7PIN7UhTDRmudzDwYKJHToRGVFffM1Y5vmNOBNj7hyiQp/UP0hz8vWLpQKyNw= 10 | - secure: IDwaZdFRon3lTOOZsoGXFUTJayvthgm5JTigYlOtVq6CVlJQBShveehe08fHAhb0XkpFyTFxBsricOUc2DOlyK9ds+DE9rRlIml+BuCrmvfCFvxX4loRg5tibKrRT9mrHNhJRwZiL4WbsGTskMpWGorgkO9qMJSJ9sAabjCJrmM= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-range-behavior/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-range-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-range-behavior/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: ioGoTHzroJHO2O9B8y/xB7dsnWY+dArvRF+Dem/0Z8yTJZ/QFCeqFctQXNdj7HIm/y7ZxetVFBnxr+0HbF62qdmVkvfBzD/TaQPeXOHSyrSbR2aAQLeSwRbcUyOmmtk/q0frf1o81i3inoLjrGKieCZq7U8VF/6YyfRDhouU5/Q= 10 | - secure: LxoITNXWo1Vh2dOlg0I/KI/wuEaiMpNPRcg8MN6TOwy6UIKPwlpA69YZ4eLNDnuCjndQHL7Cl/TA5njubss4UeXG+L3oQMGNBEcRSHGZGxEyTZpofJp5FFK3Ja9CpaBMB7IsWAwuGPJZXM/6aoyAVipJ1et2Gbbasd5EbQYjRwc= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-range-behavior/README.md: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | [![Build status](https://travis-ci.org/PolymerElements/iron-range-behavior.svg?branch=master)](https://travis-ci.org/PolymerElements/iron-range-behavior) 16 | 17 | _[Demo and API docs](https://elements.polymer-project.org/elements/iron-range-behavior)_ 18 | 19 | 20 | ##Polymer.IronRangeBehavior 21 | 22 | `iron-range-behavior` provides the behavior for something with a minimum to maximum range. 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-range-behavior/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-range-behavior/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | Tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-range-behavior/test/x-progressbar.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 20 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-resizable-behavior/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-resizable-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-resizable-behavior/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: Bsp8pa19FCij3Eee0P5eOE8ZrbylrYL99R9EIxH6rcDH+rxMhK0BIfSiXTPSFRk2iqJp++RIZN8kUu5GddetiXreRZDtnhXBA2QoYteIAS8Hzy9u2EggqI0UdGqbCiFHDVD/rEQyhSPiIfWHGCg/Moeo9J2k/eC2w6I8I9C15Zw= 10 | - secure: j9xIW/banUkkNaLrWVGcTsasAp64zEmZJQO+eY8ExINx3uLbDh5h6Foc7xWhJ4Yu7aey3+nH5BWKYimtPTYoXUD2nIWU31yBNbqU/+G6vIppDbgPHMRcVnRiO7YZ0yW1JunvKs+1lOPhOw4ibztJjGkQ2ZK9q6ZSJvQKRbo6Au0= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-resizable-behavior/demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | iron-resizable-behavior demo 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-resizable-behavior/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | iron-resizable-behavior 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-resizable-behavior/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | Tests 13 | 14 | 15 | 16 | 17 | 18 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-selector/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-selector/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-selector/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: ltCkwJM0nkTS9WjikyjqBsB5J2hQon4UnVVrINk4y+Vq4v9PQJH3+83nya0jnxilKaeAJs4d2/OS02F9GkqYpsSmDz7OgXPfk0hrHA8UksvvpSALfnukleIAN2YTOcxXJKeNHcfpqCKPk1dGeNQOEM61H+QgTBIyFB3sMugygqs= 10 | - secure: TJuu1WdpFLTaBN/prBafm8Pld/BQCySNuuG1nATbF3fqiOpgehXu8Z5URAz5syUhqZAyEmuRMxvXpEVD/t1jrtaXVwkdCFkkQ4ckkP4gTIeSGA/Puw8sveB2q7QAqXyTmeFkocNlh8fxV+B07o0SPWdhcvdZnDVU9VrpSqL+92M= 11 | node_js: stable 12 | addons: 13 | firefox: latest 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-selector/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | iron-selector 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-selector/test/attr-for-selected-elements.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 17 | 30 | 31 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-validatable-behavior/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-validatable-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-validatable-behavior/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: AsXK1s4viLG4eumYMxE0bJasVbWrpQ7JaUboMoK4Nzhmunx01udikRRAJifl3nkcc4m2GpzCb4Kmtyh5hxyLA05uE416VzmfDq3dGJKsNAQXbSescSVik63llq4HXAdOvek2eSo5wOVGNHslscIed5K2bJajXfPMIODJyBxo8aE= 10 | - secure: V/H/0+/R8owujbwe3IDbND8v5zs4pWTe0hRCLefjgR9ci2lmNNP54Zb97nOZnLQqynafDSyrngL3+RP5F0fk1dC++cpuxQNKoYPwDFPZ41LAxp5dgtyxkb+J4eWtq0UilWF5thVt4oB1OWwPGtxMmSl+imXXKtq4a4Ov++t2Apo= 11 | node_js: stable 12 | addons: 13 | firefox: latest 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-validatable-behavior/test/cats-only.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 31 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-validatable-behavior/test/dogs-only.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 31 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/iron-validatable-behavior/test/test-validatable.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 30 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/neon-animation/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/neon-animation/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/neon-animation/neon-animation.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/neon-animation/web-animations.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-badge/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-badge/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-badge/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | paper-badge 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-badge/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | paper-badge tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-behaviors/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-behaviors/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-behaviors/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: TYkyKHfqK31bPGX+x388nfvBWtoGhD7lwYYLdunZi2pwvR2N3ngzblklwK/ADgYVDC0y+lZaJsrODvQW2cUxVdQP8p+DifXoOig5b8S2H7HFFFf83gaXv0SJ50rIaKLQmXfBdI0ICFzeQOeJ9TlKvtF3/yn/LDpYftuzgbXIyp4= 10 | - secure: eUlJabqBW3P+MRieHvRcr446jhpV2YYRfZasOh3zh2vkAVsi5R5mPJXVBwk6xP4tdNPbRo0M3boKnMHjoK8AgFolxQwXpVaoOt/oiFUsBFIUNcwKnSdfnadQa6ON5VoDmPd9UhDwES/gq7i906XkV/1jwRKKhPkx1DCyCBfuTvM= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-behaviors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-behaviors/test/test-button.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 19 | 20 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-button/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-button/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-button/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: YhRb8f1f4y3Rjs5wnp4sCzIcEcL07HOBoJcEp6U/KVgIIk/sBxkxMVmZsoUeABrNbKcdE6Gn6OS2K1lFq4VThKppJ0yjvESa1p0FjmQ0Nf1xCYxc46n936xj87khZy3rrTGHxwcOY5vAa5mvNzXI4BYxjmSjmqRsQwsJBsJHWVw= 10 | - secure: eQjSTRxQKF5vyRa6yK2o+j5xWK480hHCKDh7RJQISEVhyzAaCzPZNmWf2pmaDj+ZoZZrahBcoRwOZAiVdHDaKQ+VLHbEECzV3OVV32/9DHi608BPCBdxVR2MDTtZVt3fGVhPQwCnFhwRTWtVVGx8y8HnTDMv/r4xW1OMSThPsbM= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-button/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-button/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | paper-button tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-card/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-card/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-card/demo/cafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/webapp/bower_components/paper-card/demo/cafe.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-card/demo/donuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/webapp/bower_components/paper-card/demo/donuts.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-card/demo/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/webapp/bower_components/paper-card/demo/house.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-card/demo/travel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/webapp/bower_components/paper-card/demo/travel.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-card/demo/trip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/webapp/bower_components/paper-card/demo/trip.png -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-card/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | paper-card 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-card/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | paper-card tests 16 | 17 | 18 | 19 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-checkbox/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-checkbox/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-checkbox/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: yp6I0VbSey7lRWOKQQkBU7CBvQd0hN0TZiZnbo8fzWWfOjANeDICCa/xyY2+ZM0TU5mxvehTg38mjkpRPkMm4UrsE5og49GBFqaDLk9U+Bp7fP37tDtWfT3l4VgpzSwKAdIEh8EcmUPblZxQxJlH6+HHImnPCWSKy9YvVEGirzY= 10 | - secure: XjG814z1IZBtPOsZBknOcJaqSJHjF7jWzAw1Cl9sKcmHPKSJW2a0gILdpXx2Au0KGzLzn7Z6/p6u2+rv4tbYWBq21EWgbHmn3iAF4pAZt6DgGqJpfCsNdyuKUYN8ZfLFbK3GC/js6IJDGV+zq5HxtZmwZh+eQ85bbx2xNyRKZis= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-checkbox/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | paper-checkbox tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-dialog-behavior/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-dialog-behavior/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-dialog-behavior/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: ZBrrZGA8OWY95x8yHSsKUNrQfowhRe/s/pMZhHgnoppnZ1+bDfpoms+ggOdvH0TgURAAdF+1Wq1mTCgNp0FYLJ3Oe34XseDIxiA3wXSQO/E2m4Cfj/w4fRvaSy8ikdz5urQJET33SjDKdggm1FmWmnt6vSVgW/mg8M7AW2KWDcE= 10 | - secure: P5UKkTar39Q1k0VwtF5LhOphqNiW3r+DSnN1vRNA4oKZPrt6l3dJE1hpA9+1x1m6SryG856lLekPM6/fVZuC7nyDKFLz4vU/EWhiGdyWN1lHhE2MDh281TsCtzK56S0uJxdmlIpSiWTFWIrrEiiewN2b8dXy3FSPfy0Fo1sGn54= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-dialog-behavior/test/test-buttons.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 20 | 31 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-dialog-scrollable/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-dialog-scrollable/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-dialog-scrollable/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: UIeRJmuTAsjG3tImBVgRYLiN1+TJGOv+Ibq1h72Oz/zNIG8S+3BoDrlHRF8Oo21ReZmlwHG/QE83jM070PcDt/9MWmc4tp0/NVpMs9/E+unGYoTvhd4Q4tevOhUFoWDaTBfQr6y+jF+RsnMwQ0I0mwC6twOnZG5+osu50DaQacs= 10 | - secure: IbgE5FZkqXAyiyakHVcCX8/PpEHUVH8+h9ADo/rU8HwJAN6j+SDy0YOH2LXjM9gIsh2SwQtb6vYA+bh9qfzi7+bkdW98ZDMgvEs0XVg1eLEEFGTbbQZZZCYmJqxVjdg0sXfd4G9LZFlke9VBm2YFBqsN+LtgffLpk94U1J0tz8c= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-dialog/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-dialog/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-drawer-panel/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-drawer-panel/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-drawer-panel/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: dUMG4gWauTfBoni97er7PvM3qQ4bcAf7J2PvSIe/F8b1NX4rwf6dlAkUUoDAru8C7UTSpveWGgZgTFsIzn+UNKsnjWMR20oqxYD56cUInNsDdd3rC7jj7Asyfi3ULxkgcNRMm0MAelEnp6Q57GS1OpGRt6sMJoEVI62YodgQE9s= 10 | - secure: ae6sSw/OJyyGVzljBsok9KLi0BV+r4IvbvjVPGYaG2TtqR+JonyEu9OI2V/DgAJJ3RHQo0W/go4NcZlQmMb17gNCuqxWVeG/Tf2DH/QJr7RR9bUhYwOJTRR4dzXvaEgLiLOZG5grOGaM2pVQETnTIrLQtic2O18uhM8Ro2oV//s= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-drawer-panel/hero.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-dropdown-menu/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-dropdown-menu/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-dropdown-menu/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | paper-dropdown-menu 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-dropdown-menu/paper-dropdown-menu-icons.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-fab/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-fab/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-fab/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | paper-fab 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-fab/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | paper-fab tests 13 | 14 | 15 | 16 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-header-panel/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-header-panel/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-header-panel/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: CUHUUtr+3jdD8NjJ4sNO4ubf2wKTWlcff8hBrEZJsuuVibAWS9uf3+LZWhpk5oI/WXx66/9qEul/Y8GYfDCk9xLOHMhgWhnK0joTfOsLjC1U+D7vECq+eIUMILAjrSZrg1rVlkR/darxmNZugUMjIHu9WiYQkl3tJtBxZmiZME4= 10 | - secure: gfWd1g1f/x8Wb4PlCyh/PTOLBFF0edHlb1tQpiexe/z58g4/67GYxnnOTTlwlFBxSeGxTImXzvljF3FqSEMB3RjFMpE401IF0ka5XACXf2DYHuEr4WSTFBFGn4Lep0qAHGE1zf6vZPwNCNPeyOQrVpg8IlhMVDWedzBzFZ/Z/DE= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-icon-button/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-icon-button/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-icon-button/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: HdHTMNdAamEtP+Nl5/mL2X7IKba4p2+ljpDSnvkA6gyoLzrWRZAyUjJxGjVRutQejTa8ZLOGXnBYKugSIMrGv8cblvngbhEmIHd2HBnPjd140KNwtsCtzPRDMdJMrvekVOXgpCkecmGq9G/j0WOoOnYY9oJrHB5dFy0y7LfPy6w= 10 | - secure: XjZRR/HW23UneacknoaYle/dg2Diupr9p9UOWLR7w6ejvwIP99nUF0Bh4trZkUiXBBt29HOBoETwBTMizDHNg8vKe544EgR26Fq4Lwk5EuEHy3xeyroiHlwc56ZC9Obye1kdM3QjU6rzJ7F9NuRL2E0ttgZjt/OnM+vKx3kqGOY= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-icon-button/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-input/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-input/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-input/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: Hg2KIEhKqOw0J8ZW2C3Pdgp5N4HD/f9jhdluH0tiYRCU4I/jf5grQuA3ohqsbqnJKV5l06gWVIDCdxBDwDEH0h8v9uUG5z/i2diiuLQc94SLQu8kWKkUPDOx+pUyXmfRKj6KnaRTotTLFrwlyuKDi9OfGjQbLZWTvmJUWoFwh4g= 10 | - secure: U6/Hp/V0ezT/yxeP2bv4S99LSLScKEaOfYwQUbe0+v5dPbN5XZaCUS6iSbNP2K8Mtb1UQUEyL8uN6Zn+khFlJ8/KJshppJ6HJi235CykahBhh9/Cv7EapgDUoss14ntE8EKpm6Ijo4LvVyPVmhgqKk9wP5ykDFtvhoKD4C3guVU= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-input/all-imports.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-input/demo/ssn-validator.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 28 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-input/hero.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-input/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | paper-input 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-input/test/letters-only.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 31 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-item/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-item/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-item/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: NCk3KK+wbaXMzp8XAY6FeL+TSdI0AlPI3/tl0OpsUIaU2EiCjQuzf/UpyzCW5XZMEVFF4q/eDjrPkqJodHfpngj36mpkfmfqj9DrgDmYsV9BDvsTd8KmLsA6H8D6p7Qer+r1JMMB8PvX44vdhQ6GhZD1HFNYK1Ekpt0TkYwWKNw= 10 | - secure: TGgUEQe6FJS+GuYk94d//8YQmDLUu0ekMvPSIs8TQ2QkdBK4SL+2bSXZt44BbDEOwc9P4NCPSUx/RMiCAqsc5OGRJImzb/zqPNIDTeKG6q72HPBBBD3Sk0CrEpTQbOK/Flaa/B7RYR0U1kuljSmRS7lPG19nnY8gOHnIAgwIyk0= 11 | node_js: stable 12 | addons: 13 | firefox: latest 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-item/all-imports.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-listbox/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-listbox/README.md: -------------------------------------------------------------------------------- 1 | # paper-listbox 2 | 3 | ![Build status](https://api.travis-ci.org/PolymerElements/paper-listbox.svg?branch=master) 4 | 5 | `` implements an accessible listbox control with Material Design styling. 6 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-material/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-material/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: false 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: PEaqY+YpV0ZhnQbJlNQbmfIFLqy7UvvCtii0sPoGKT5/P7ulMqMOPQV9l/zLAtYi14HEz63FKLqDrpnGaVe7Cz7jtt2WRWrWqTBdarqwSHs73Z2XqztD1+2wW6vgz/lfK00B8UplAk28B7d5dbWzwUF6Kg02zOfQMsawMpulFjo= 10 | - secure: f/3XYrYjM8aXLe9kqM/MjHQ6IEsDRuoxDqM+l2JiR3v2Nw7lP6ZyXSNvKm8bN+VNU7ubSzAmRbUGnRU7e61BhnGzuLXjOqxYeJLWZaqoSm9TDz3re3rd7wB2ddAhRokeSSPO2KeAgr6C02P9M3Au1DiO1G66fuWVH62WtzW4+qY= 11 | - CXX=g++-4.8 12 | node_js: stable 13 | addons: 14 | firefox: latest 15 | apt: 16 | sources: 17 | - google-chrome 18 | - ubuntu-toolchain-r-test 19 | packages: 20 | - google-chrome-stable 21 | - g++-4.8 22 | sauce_connect: true 23 | script: 24 | - xvfb-run wct 25 | - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" 26 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-material/README.md: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | [![Build Status](https://travis-ci.org/PolymerElements/paper-material.svg?branch=master)](https://travis-ci.org/PolymerElements/paper-material) 16 | 17 | _[Demo and API Docs](https://elements.polymer-project.org/elements/paper-material)_ 18 | 19 | 20 | ##<paper-material> 21 | 22 | Material design: [Cards](https://www.google.com/design/spec/components/cards.html) 23 | 24 | `paper-material` is a container that renders two shadows on top of each other to 25 | create the effect of a lifted piece of paper. 26 | 27 | Example: 28 | 29 | ```html 30 | 31 | ... content ... 32 | 33 | ``` 34 | 35 | 36 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-material/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | paper-material tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-menu-button/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-menu-button/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-menu-button/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | paper-menu-button 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-menu-button/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | paper-menu-button tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-menu/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-menu/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: false 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: Mh0qP0wSbfQ00LpaW8ObBU6CBLqgUgIM/Qvuog7dw7atnZ3a2I7UqLXCJHkH0a66r0bF2PyuS6a8qz/croSr1rQQ0G+1HgNczm7nuQO8cw2ZLXZglpaldYfUzKBw9ip+XGA1zgFQ1+O3uWisy+4pQrsGhRsB1RSmXBcKJsSUjZw= 10 | - secure: QhEW2jW0Uj3dp4xJOYVfP/MUV2UeZW48811cDZRSwWQ/43vrZU/4VCSTFJdODZ4A9nXAhOeKtT+S1BWoH4VslGLCfmrF1dbTxHZEdg2WAt8OkV9XpMNMBYtGomlUs9asnU/Q1294DWolAGG8wwnReibg0r6H3VQCmD4vIE6oEmQ= 11 | - CXX=g++-4.8 12 | node_js: stable 13 | addons: 14 | firefox: latest 15 | apt: 16 | sources: 17 | - google-chrome 18 | - ubuntu-toolchain-r-test 19 | packages: 20 | - google-chrome-stable 21 | - g++-4.8 22 | sauce_connect: true 23 | script: 24 | - xvfb-run wct 25 | - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" 26 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-progress/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-progress/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-progress/hero.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-progress/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | paper-progress 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-progress/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | Tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-radio-button/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-radio-button/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-radio-button/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: P6B/39IMzhm/jBmxD+0CDZEPYNMMaizAgpn4MXUUlAmmdMJNwovzvm/kYtVyoPfGiJ08NJh5tNRLQbkG12OH71lQ7ReTiru0hEy93ssmIh0U6ZUAAxTZVQ9SxB5gjrQU8/0fVJ9tNd0kBklHH4FoK+ZtJurhKLJaXhXsupXpcuI= 10 | - secure: rxY6LCY199Lt1aRGK8Hpq3wjx8xcpb91x21fJStKROlpJTlfp+c0yevK1oYkklzChJWEFewFNTYlHbm9pc7TCyXK2WCR0v1GgSeJAUpP4TONkdpueeOvsVC/CGB9mIXEtfUEh2CCdWDj+D7JGLdUvbgmu8C3gfqfP+AyXbQt5Jc= 11 | node_js: stable 12 | addons: 13 | firefox: latest 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-radio-button/hero.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-radio-button/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | paper-radio-button tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-radio-group/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-radio-group/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-radio-group/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: MERTTM+t9rMsIccJ4em6ocmNYm1w1r2Zy9qRxhdM1ya0xT2dAlV7UZY7t1jZ4MEdvqtTro1oEzfUr0zgD/mwBJUxLAB0RLRIbYAJEAfngaUUMgbbIgj3yLUZ/bZCvPtfhDPA1W/VsyldhUGCxojzgJthWgAoqWRj6jFX6X+QeWw= 10 | - secure: FvMxnNJsGlUg31KGuGjb0PpWHYFlMf9UPFzmLcFQAbc0kiWVoOl5adCfnv3yySf9EAKnolO02zR3K8KcCBQJ0SpWBlQ1pIgEdOxTXtWQRhlKHttKkj5L2X+qYAw4q5z0sy7lvb0VIjIOceabhvTTcnYmaF+OcrrVxd90ZpIckvk= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-radio-group/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | paper-radio-group tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-ripple/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-ripple/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-ripple/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: eLNXQngbn6nHUirBVQAroarZUJHGZAj8sqSJaxRBqaL08//nzaOpnzuavYUeNSJ1fOnbL95jS5yZJy8+oCUW0a6BCXZUHJCrj/N6ywG4KpgPYQnUZVnpvsLdXZJuq4L4l5jYL1GsPydMePfAlrDpSu+QzEc1+C0q7sprxsbHbbQ= 10 | - secure: YLIZR4/tqr25Ty+daEdTInLVXoV/lSwagZCGMfT84SgHj94UYHr9u9Te3tNDeI8I83Kq1PSUn1kKE6ptT+EjuGhTDsyLx2IboVDtNlngDIo5GTSO1RBBzIlHRIb2eMS6om9cfLiOEWM3gFS/Mos/VYO3/A3ZSLE5BcNFagij724= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-ripple/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | paper-ripple 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-ripple/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | Tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-scroll-header-panel/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-scroll-header-panel/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-scroll-header-panel/demo/images/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/webapp/bower_components/paper-scroll-header-panel/demo/images/bg1.jpg -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-scroll-header-panel/demo/images/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/webapp/bower_components/paper-scroll-header-panel/demo/images/bg2.jpg -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-scroll-header-panel/demo/images/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/webapp/bower_components/paper-scroll-header-panel/demo/images/bg3.jpg -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-scroll-header-panel/demo/images/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/webapp/bower_components/paper-scroll-header-panel/demo/images/bg4.jpg -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-scroll-header-panel/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | paper-scroll-header-panel 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-slider/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-slider/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-slider/README.md: -------------------------------------------------------------------------------- 1 | [![Build status](https://travis-ci.org/PolymerElements/paper-slider.svg?branch=master)](https://travis-ci.org/PolymerElements/paper-slider) 2 | 3 | ##<paper-slider> 4 | 5 | Material design: [Sliders](https://www.google.com/design/spec/components/sliders.html) 6 | 7 | `paper-slider` allows user to select a value from a range of values by 8 | moving the slider thumb. The interactive nature of the slider makes it a 9 | great choice for settings that reflect intensity levels, such as volume, 10 | brightness, or color saturation. 11 | 12 | 23 | ```html 24 | 25 | ``` 26 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-slider/hero.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-slider/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | paper-slider 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-slider/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | Tests 13 | 14 | 15 | 16 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-spinner/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-spinner/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-spinner/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: dIA8M55rHJN07lbp0VCU9RkN4CWlbkVdU6cP4wFZabuJJusISThMZVrZeGtbdErvQ8oiSexrE8iCZ7A/OcLnVNCrVBZX5YwJlfbex4I4uG6L8zw1E3oOX1MmdcTx2sI8MffDyG1pnXzwP5lzPItKiscEpepGY9+V0JP1j5z9qVg= 10 | - secure: KvttUgmPIlCz4WU2WIpse5s/1SVXHoS+snGDkNqYLOVXscRjJoncXYbdvLltf7SPrU7gK4HuEuEVRthhDGtuvgrXUlIOS/gaK8dWI3kuVYPppOU1DnlXgAtj/3quGZG1dNw07IGzOEW4Taq/5KdU8LRqb9clvK+jyoBQZKIXbtg= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-styles/demo.css: -------------------------------------------------------------------------------- 1 | /** 2 | @license 3 | Copyright (c) 2015 The Polymer Project Authors. All rights reserved. 4 | This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt 5 | The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 6 | The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt 7 | Code distributed by Google as part of the polymer project is also 8 | subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt 9 | 10 | */ 11 | body { 12 | font-family: 'Roboto', 'Noto', sans-serif; 13 | font-size: 14px; 14 | margin: 0; 15 | padding: 24px; 16 | } 17 | 18 | section { 19 | padding: 20px 0; 20 | } 21 | 22 | section > div { 23 | padding: 14px; 24 | font-size: 16px; 25 | } 26 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-styles/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | paper-styles 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-styles/paper-styles-classes.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-tabs/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-tabs/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-tabs/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: ieKt2HWOdClqU7OyYA20DFlWduaM0IDk91lO7mWySQL6r55SSB4DnUCgVycQJf0L6S8vyY/fbC/vFP0notyz3MvMAz1NwpRzAI9mKkVWJuaBbm9Ql9PewjanX42chbz3XyqZofXVkfBywmj61NyPM7VRVwhEHmOeYgyFUyV9cls= 10 | - secure: g7yrxdFIVMIjkYBKZ29FHUX3noS6u1lvjUmaAaG28rGaEfXK4XR9fhZABR+6ydAjLjdo+WUMvTp4oi6HYrb6ToByprEli/fTexjeGuagDc5r5R84u3CusBuw9YYHDjstHCBFmIZndD+r4PRXkWvYatciF9c0NCHoVrjTH/woe9g= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct -l chrome 22 | - xvfb-run wct -l firefox 23 | - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" 24 | dist: trusty 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-tabs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | paper-tabs 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-tabs/paper-tabs-icons.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-toast/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-toast/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-toast/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: EbNQJATlfP5xdbnxnhdBC7T6q86TaZhZoqucx12wn88AiTe24lEB6b+Vd9ZwELi4B0G8qrQWIXoGLNCYZg6tn8+k9uJgE9kH+YvZLlM6HmHZ9HcuMjNg2ugsYJW9WuY6N5om0YvadZWl2nJECk9cX+KXE9Rq1HTUy3r+tXj0ezw= 10 | - secure: A0ZrObu71lLS2r7RIeFxLoveGoQ4bheNMOusNXfsHrZLlnwKJQ5tDcc6ZCipGfIPeIJPAR+Gdo+UVKB13q47rYkBRljgy7Mr3RXefiJKANJiSLfUgAPXLSaFQTk1ghvD+hHQiM/hGmWY/J9iranShsRzYMHq2ZY4edxdTzknijk= 11 | node_js: stable 12 | addons: 13 | firefox: latest 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi" 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-toast/hero.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-toast/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-toast/test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | Tests 17 | 18 | 19 | 20 | 21 | 22 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-toggle-button/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-toggle-button/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-toggle-button/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: Z9YLaTbrBSMCxoeqWI1cK5WFOfA1Cz4rCUhXo4l1WDnQBVcbVEQn6V7BsF9TByrTD4H4f4Gn2SZT8tKA7u5xVZn1I0djzpotogHzqOJ0zQi5krtNczTWIFe3F/fMnNxouAZxvAtkefdH+hXZJHwqlhoHYaoWw6kE7a9EYlV2x48= 10 | - secure: Gdkk92VJJPn8uZ3TRvzMd3tI2ilaqxcFePIVtgnMLc0SKUyYGgTmUghPJ1MDGXa152ejN4c9ydTrU68Wka9yAYRirR2K1W/i6ma4Lz7vX077IhufBjfuXMasP3X7OPGJhIdvHINkpEVrySO5kcDVjCXXq91utWv+2pRQSNdjNKQ= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-toggle-button/hero.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-toggle-button/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-toggle-button/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | paper-toggle-button tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-toolbar/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-toolbar/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-toolbar/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | before_script: 4 | - npm install -g bower polylint web-component-tester 5 | - bower install 6 | - polylint 7 | env: 8 | global: 9 | - secure: YhDTyZvC5P5rhCWlBTeIhKJx2izTUgaBPbWWCtVE/ukYfXeO0HY49emFYSOBJe3oKLLlipuTFehbtyZ4QPWmfa7QKEtnyYSfyCnOA3mJFzoMDDt/RVqDfWpa+fjpIdVR045ySCQE7NAbD47i8gAVwmlQ10k/yU+BA9uGxVHPSwo= 10 | - secure: GvWTJBajnq7yHfbx+Ud7jmG6ZNXf79U7i3UhTsXkDhotqzJr//MlJGzZFBZjbk2Qsgcx+x4cT10ieZR4oixn/ipiz/NfKvIbHl4+0sLauum+5lDd8TmKspJULzSeDkYcVl8tEVKn2vdCTBaTRQituXvDlipat1drAu4Zx3EtmxI= 11 | node_js: stable 12 | addons: 13 | firefox: '46.0' 14 | apt: 15 | sources: 16 | - google-chrome 17 | packages: 18 | - google-chrome-stable 19 | sauce_connect: true 20 | script: 21 | - xvfb-run wct 22 | - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'default'; fi 23 | dist: trusty 24 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-toolbar/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | paper-toolbar tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-tooltip/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | ### Description 3 | 4 | 5 | ### Expected outcome 6 | 7 | 8 | 9 | ### Actual outcome 10 | 11 | 12 | 13 | ### Live Demo 14 | 15 | 16 | ### Steps to reproduce 17 | 18 | 23 | 24 | ### Browsers Affected 25 | 26 | - [ ] Chrome 27 | - [ ] Firefox 28 | - [ ] Safari 9 29 | - [ ] Safari 8 30 | - [ ] Safari 7 31 | - [ ] Edge 32 | - [ ] IE 11 33 | - [ ] IE 10 34 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-tooltip/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-tooltip/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | paper-tooltip 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/paper-tooltip/test/index.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | paper-tooltip tests 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/platform/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "platform", 3 | "main": "platform.js", 4 | "homepage": "https://github.com/Polymer/platform", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "description": "Integrate platform polyfills: load, build, test", 9 | "keywords": [ 10 | "polymer", 11 | "web", 12 | "components" 13 | ], 14 | "license": "BSD", 15 | "private": true, 16 | "version": "0.4.2", 17 | "_release": "0.4.2", 18 | "_resolution": { 19 | "type": "version", 20 | "tag": "0.4.2", 21 | "commit": "a2c58864021992690e6ee9ba170fbfa87af5bc9c" 22 | }, 23 | "_source": "git://github.com/Polymer/platform.git", 24 | "_target": "^0.4.2", 25 | "_originalSource": "Polymer/platform", 26 | "_direct": true 27 | } -------------------------------------------------------------------------------- /src/main/webapp/bower_components/platform/README.md: -------------------------------------------------------------------------------- 1 | Platform 2 | ======== 3 | 4 | Aggregated polyfills the Polymer platform. 5 | 6 | [![Analytics](https://ga-beacon.appspot.com/UA-39334307-2/Polymer/platform/README)](https://github.com/igrigorik/ga-beacon) 7 | -------------------------------------------------------------------------------- /src/main/webapp/bower_components/webcomponentsjs/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webcomponentsjs", 3 | "main": "webcomponents.js", 4 | "version": "0.7.22", 5 | "homepage": "http://webcomponents.org", 6 | "authors": [ 7 | "The Polymer Authors" 8 | ], 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/webcomponents/webcomponentsjs.git" 12 | }, 13 | "keywords": [ 14 | "webcomponents" 15 | ], 16 | "license": "BSD", 17 | "ignore": [], 18 | "devDependencies": { 19 | "web-component-tester": "^4.0.1" 20 | }, 21 | "_release": "0.7.22", 22 | "_resolution": { 23 | "type": "version", 24 | "tag": "v0.7.22", 25 | "commit": "50f9751f8e638301603aebb33ba9f1e90d2b0d32" 26 | }, 27 | "_source": "https://github.com/Polymer/webcomponentsjs.git", 28 | "_target": "^0.7.20", 29 | "_originalSource": "webcomponentsjs" 30 | } -------------------------------------------------------------------------------- /src/main/webapp/bower_components/webcomponentsjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webcomponents.js", 3 | "version": "0.7.22", 4 | "description": "webcomponents.js", 5 | "main": "webcomponents.js", 6 | "directories": { 7 | "test": "tests" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/webcomponents/webcomponentsjs.git" 12 | }, 13 | "author": "The Polymer Authors", 14 | "license": "BSD-3-Clause", 15 | "bugs": { 16 | "url": "https://github.com/webcomponents/webcomponentsjs/issues" 17 | }, 18 | "scripts": { 19 | "test": "wct" 20 | }, 21 | "homepage": "http://webcomponents.org", 22 | "devDependencies": { 23 | "gulp": "^3.8.8", 24 | "gulp-audit": "^1.0.0", 25 | "gulp-concat": "^2.4.1", 26 | "gulp-header": "^1.1.1", 27 | "gulp-uglify": "^1.0.1", 28 | "run-sequence": "^1.0.1", 29 | "web-component-tester": "^4.0.1" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/main/webapp/css/application.css: -------------------------------------------------------------------------------- 1 | .navbar-brand img { 2 | margin: -7px 5px; 3 | } 4 | 5 | @media(min-width: 768px) { 6 | .contact { 7 | height: 350px !important; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/main/webapp/css/shop-homepage.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Start Bootstrap - Shop Homepage HTML Template (http://startbootstrap.com) 3 | * Code licensed under the Apache License v2.0. 4 | * For details, see http://www.apache.org/licenses/LICENSE-2.0. 5 | */ 6 | 7 | body { 8 | padding-top: 70px; /* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */ 9 | } 10 | 11 | .slide-image { 12 | width: 100%; 13 | } 14 | 15 | .carousel-holder { 16 | margin-bottom: 30px; 17 | } 18 | 19 | .carousel-control, 20 | .item { 21 | border-radius: 4px; 22 | } 23 | 24 | .caption { 25 | height: 160px; 26 | overflow: hidden; 27 | } 28 | 29 | .caption h4 { 30 | white-space: nowrap; 31 | } 32 | 33 | .thumbnail img { 34 | width: 100%; 35 | } 36 | 37 | .ratings { 38 | padding-right: 10px; 39 | padding-left: 10px; 40 | color: #d17581; 41 | } 42 | 43 | .thumbnail { 44 | padding: 0; 45 | } 46 | 47 | .thumbnail .caption-full { 48 | padding: 9px; 49 | color: #333; 50 | } 51 | 52 | footer { 53 | margin: 50px 0; 54 | } -------------------------------------------------------------------------------- /src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/webapp/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/webapp/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/webapp/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/webapp/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/webapp/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/webapp/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/webapp/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/webapp/img/errai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/webapp/img/errai.png -------------------------------------------------------------------------------- /src/main/webapp/img/errai_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/errai/errai-tutorial/74bc29604af660670849568d6892befb85b61615/src/main/webapp/img/errai_logo.png --------------------------------------------------------------------------------