Socket
Book a DemoInstallSign in
Socket

nanoislands

Package Overview
Dependencies
Maintainers
6
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nanoislands

Yate/Stylus/jQuery-UI library for Yandex corporate style

latest
Source
npmnpm
Version
1.0.15-gamma
Version published
Weekly downloads
9
200%
Maintainers
6
Weekly downloads
 
Created
Source

Library for Yandex corporate style NPM version Build Status

##Demo http://yandex-ui.github.io/nanoislands/

Tests


npm test

Build package


vim Changelog.md
vim package.json
git commit -a -m 'v...'
git tag 'v...'
git push origin master
git push origin 'v...'
make publish

Documentation

React intergation example

<!DOCTYPE html>
<html>
    <head>
        <link type="text/css" rel="stylesheet" href="../nanoislands.css" />

        <script src="../libs/react-with-addons.js"></script>

        <script src="../libs/jquery.min.js"></script>
        <script src="../libs/jquery-ui/jquery-ui.custom.js"></script>
        <script src="../react.nanoislands.min.js"></script>

        <script>
            $(function () {
                var element = React.render(React.createElement(Island, {
                    type: "checkbox",
                    options: { content: "123", disabled: true },
                    on: {
                        "nb-checked": function () { console.log("checked") },
                        "nb-unchecked": function () { console.log("unchecked") }
                    }
                }), document.body);

                element.block.enable();
            });
        </script>
    </head>
    <body>

    </body>
</html>

Changelog

FAQs

Package last updated on 28 Mar 2018

Did you know?

Socket

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.

Install

Related posts