Skip to content

tago-io/custom-widget

Repository files navigation

TagoIO Toolkit to build your own widgets

Create your amazing widgets and run it inside TagoIO admin.

How to install?

The simplest way to use is to add the <script> direct on your project.

<script src="https://admin.tago.io/dist/custom-widget.min.js"></script>
<link rel="stylesheet" href="https://admin.tago.io/dist/custom-widget.min.css"> <!-- OPTIONAL -->

Also, you can add it on your project to use with webpack

$ npm install @tago-io/custom-widget --save

On top of your entry component

import "@tago-io/custom-widget";
import "@tago-io/custom-widget/dist/custom-widget.css"; // OPTIONAL

Projects Examples

  • Boilerplate: Basic boilerplate project using preact, it shows the basic usage of the TagoIO Custom Widget.

  • SendData Widget: Simple example demonstrating how to send data from your Custom Widget to TagoIO.

  • Wizard Widget: Demo showing a wizard built using TagoIO's Custom Widget.