Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

kayto

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kayto - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

4

dist/kayto.js

@@ -117,5 +117,5 @@ /******/ (function(modules) { // webpackBootstrap

var defaultMaxWidth = 1600;
var defaultMaxWidth = window.kaytoMaxWidth || 1600;
var lastGoodMaxWidth = defaultMaxWidth;
var columns = 12;
var columns = window.kaytoColumns || 12;
var TYPE_DELAY = 250;

@@ -122,0 +122,0 @@

@@ -5,3 +5,3 @@ // ==UserScript==

// @namespace kayto
// @version 0.0.5
// @version 0.0.6
// @grant none

@@ -126,5 +126,5 @@ // ==/UserScript==

var defaultMaxWidth = 1600;
var defaultMaxWidth = window.kaytoMaxWidth || 1600;
var lastGoodMaxWidth = defaultMaxWidth;
var columns = 12;
var columns = window.kaytoColumns || 12;
var TYPE_DELAY = 250;

@@ -131,0 +131,0 @@

{
"name": "kayto",
"version": "0.0.5",
"version": "0.0.6",
"description": "Your UI layout sidekick",

@@ -5,0 +5,0 @@ "scripts": {

@@ -5,1 +5,12 @@ # Kayto

See installation and usage notes on [Github](https://dailyraisin.github.io/).
Set the default max-width like so with Javscipt and CSS:
```javascript
//set to 1100px;
window.kaytoMaxWidth = 1100;
```
```css
.kayto, .kayto-container { max-width: 1100px; }
```

@@ -6,5 +6,5 @@ import dragNdrop from 'npm-dragndrop';

var defaultMaxWidth = 1600;
var defaultMaxWidth = window.kaytoMaxWidth || 1600;
var lastGoodMaxWidth = defaultMaxWidth;
var columns = 12;
var columns = window.kaytoColumns || 12;
var TYPE_DELAY = 250;

@@ -11,0 +11,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc