-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #327 from Tangerine-Community/implement-tangy-vide…
…o-capture Implement tangy-video-capture input
- Loading branch information
Showing
7 changed files
with
36,808 additions
and
12,474 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes"> | ||
|
||
<title>tangy-video-capture demo</title> | ||
|
||
<script src="../node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script> | ||
<script src="../node_modules/devtools-detect/index.js"></script> | ||
<script src="../node_modules/redux/dist/redux.min.js"></script> | ||
|
||
<script type="module"> | ||
import '@polymer/iron-demo-helpers/demo-pages-shared-styles'; | ||
import '@polymer/iron-demo-helpers/demo-snippet'; | ||
</script> | ||
<custom-style> | ||
<style> | ||
html { | ||
--document-background-color: #FAFAFA; | ||
--primary-color-dark: #3c5b8d; | ||
--primary-text-color: var(--light-theme-text-color); | ||
--primary-color: #3c5b8d; | ||
--accent-color: #f26f10; | ||
--accent-text-color: #FFF; | ||
--error-color: var(--paper-red-500); | ||
--disabled-color: #BBB; | ||
} | ||
|
||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5 { | ||
@apply --paper-font-common-base; | ||
color: var(--primary-text-color); | ||
margin: 25px 0px 5px 15px; | ||
} | ||
</style> | ||
</custom-style> | ||
<script type="module" src="../tangy-form.js"></script> | ||
<script type="module" src="../input/tangy-acasi.js"></script> | ||
<script type="module" src="../input/tangy-box.js"></script> | ||
<script type="module" src="../input/tangy-checkbox.js"></script> | ||
<script type="module" src="../input/tangy-checkboxes.js"></script> | ||
<script type="module" src="../input/tangy-checkboxes-dynamic.js"></script> | ||
<script type="module" src="../input/tangy-eftouch.js"></script> | ||
<script type="module" src="../input/tangy-gps.js"></script> | ||
<script type="module" src="../input/tangy-input.js"></script> | ||
<script type="module" src="../input/tangy-location.js"></script> | ||
<script type="module" src="../input/tangy-radio-button.js"></script> | ||
<script type="module" src="../input/tangy-radio-buttons.js"></script> | ||
<script type="module" src="../input/tangy-select.js"></script> | ||
<script type="module" src="../input/tangy-timed.js"></script> | ||
<script type="module" src="../input/tangy-untimed-grid.js"></script> | ||
<script type="module" src="../input/tangy-toggle-button.js"></script> | ||
<script type="module" src="../input/tangy-video-capture.js"></script> | ||
<script type="module" src="../input/tangy-qr.js"></script> | ||
<script type="module" src="../input/tangy-consent.js"></script> | ||
<script type="module" src="../input/tangy-signature.js"></script> | ||
|
||
<custom-style> | ||
<style is="custom-style" include="demo-pages-shared-styles"> | ||
</style> | ||
</custom-style> | ||
</head> | ||
|
||
<body> | ||
<div class="vertical-section-container centered"> | ||
<h3>tangy-video-capture demo</h3> | ||
<demo-snippet> | ||
<template> | ||
<tangy-video-capture name="test-video" label="Take a video" ></tangy-video-capture> | ||
</template> | ||
</demo-snippet> | ||
</div> | ||
</body> | ||
|
||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.