Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@polymer/iron-demo-helpers
Advanced tools
demo-snippet
is a helper element that displays the source of a code snippet and
its rendered demo. It can be used for both native elements and
Polymer elements.
See: Documentation, Demo.
npm install --save @polymer/iron-demo-helpers
<html>
<head>
<script type="module">
import '@polymer/iron-demo-helpers/demo-snippet.js';
import '@polymer/paper-checkbox/paper-checkbox.js';
</script>
</head>
<body>
<demo-snippet>
<template>
<input type="date">
<paper-checkbox>Checkbox</paper-checkbox>
</template>
</demo-snippet>
</body>
</html>
import {PolymerElement, html} from '@polymer/polymer';
import '@polymer/iron-demo-helpers/demo-snippet.js';
import '@polymer/paper-checkbox/paper-checkbox.js';
class SampleElement extends PolymerElement {
static get template() {
return html`
<demo-snippet>
<template>
<input type="date">
<paper-checkbox>Checkbox</paper-checkbox>
</template>
</demo-snippet>
`;
}
}
customElements.define('sample-element', SampleElement);
url-bar
is a helper element that displays a simple read-only URL bar if
and only if the page is in an iframe. In this way we can demo elements that
deal with the URL in our iframe-based demo environments.
If the page is not in an iframe, the url-bar element is not displayed.
If you want to send a PR to this element, here are the instructions for running the tests and demo locally:
git clone https://github.com/PolymerElements/iron-demo-helpers
cd iron-demo-helpers
npm install
npm install -g polymer-cli
polymer serve --npm
open http://127.0.0.1:<port>/demo/
polymer test --npm
If you add a script type="module"
inside a demo-snippet
, the demo will
not be functional on non-module browsers (like IE11). If you need to
use a script type="module"
and want to display its code in the demo-snippet
,
a possible workaround is to duplicate the contents of the script outside of the
demo-snippet
-- that way polymer serve
(or whatever solution you're using to
ES5-ify the code) will convert the main document module
to UMD, but will leave the
displayed code untouched. Here is an example:
<body>
<demo-snippet>
<template>
...
<script type="module">
import {SomeExport} from '../foo.js';
SomeExport.aFunction();
</script>
</template>
</demo-snippet>
<!-- Hack: on non-module browsers the demo-snippet script doesn't
do anything, so add the content here again to make sure the demo works -->
<script type="module">
import {SomeExport} from '../foo.js';
SomeExport.aFunction();
</script>
</body>
FAQs
Utility classes to make building demo pages easier
The npm package @polymer/iron-demo-helpers receives a total of 3,748 weekly downloads. As such, @polymer/iron-demo-helpers popularity was classified as popular.
We found that @polymer/iron-demo-helpers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.