0.9.3 • Published 3 years ago

sieving-wc v0.9.3

Weekly downloads
10
License
MIT
Repository
github
Last release
3 years ago

Sieving-WC

Web-Component for Sieving

About

Sieving-WC is a Web Component for the Sieving JavaScript library. It provides an HTML Element compatible with the regular <textarea> but with syntax highlighting and tag completion.

Installation

$ npm install sieving-wc

Usage

<!DOCTYPE html>
<html>
    <head>
        <script type="text/javascript" src="node_modules/sieving-wc/lib/sieving-wc.min.js"></script>
        <link rel="stylesheet" type="text/css" href="node_modules/sieving-wc/sieving-wc.css">
        [...]
    </head>
    <body class="sieving-wc-theme-light sieving-wc-theme-boxed">
        [...]
        <sieving-wc
            id="sieving"
            query="foo +bar -quux, baz"
        >
            <script type="application/json">
                { "#": [ "foo", "bar", "quux" ] }
            </script>
        </sieving-wc>
        <script type="text/javascript">
            let sieving = document.getElementById("sieving")
            sieving.addEventListener("change", (ev) => {
                let [ { query } ] = ev.detail
                console.log("Query:", query)
            })
        </script>
        [...]
    </body>
</html>

License

Copyright © 2020-2021 Dr. Ralf S. Engelschall (http://engelschall.com/)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0.9.3

3 years ago

0.9.2

3 years ago

0.9.1

3 years ago

0.9.0

3 years ago