New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

skateui

Package Overview
Dependencies
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

skateui - npm Package Compare versions

Comparing version 0.1.127 to 0.1.128

dist/skateui/p-05548556.entry.js

7

dist/cjs/sui-button_8.cjs.entry.js

@@ -647,3 +647,3 @@ 'use strict';

if (n !== o && this.el) {
this.el.value = n.toString();
this.el.value = n === null && n === undefined ? '' : n.toString();
}

@@ -1244,7 +1244,4 @@ }

valueHandler(n, o) {
if (typeof n !== 'string') {
return;
}
if (n !== o && this.el) {
let val = n !== null && n !== undefined ? n : '';
let val = n === null && n === undefined ? '' : n.toString();
this.el.value = val;

@@ -1251,0 +1248,0 @@ this.reflect = val;

@@ -149,3 +149,3 @@ import { Host, h } from '@stencil/core'; //Method,

if (n !== o && this.el) {
this.el.value = n.toString();
this.el.value = n === null && n === undefined ? '' : n.toString();
}

@@ -152,0 +152,0 @@ }

@@ -45,7 +45,4 @@ import { Host, h } from '@stencil/core';

valueHandler(n, o) {
if (typeof n !== 'string') {
return;
}
if (n !== o && this.el) {
let val = n !== null && n !== undefined ? n : '';
let val = n === null && n === undefined ? '' : n.toString();
this.el.value = val;

@@ -52,0 +49,0 @@ this.reflect = val;

@@ -643,3 +643,3 @@ import { r as registerInstance, h, H as Host, g as getElement } from './index-d4102470.js';

if (n !== o && this.el) {
this.el.value = n.toString();
this.el.value = n === null && n === undefined ? '' : n.toString();
}

@@ -1240,7 +1240,4 @@ }

valueHandler(n, o) {
if (typeof n !== 'string') {
return;
}
if (n !== o && this.el) {
let val = n !== null && n !== undefined ? n : '';
let val = n === null && n === undefined ? '' : n.toString();
this.el.value = val;

@@ -1247,0 +1244,0 @@ this.reflect = val;

@@ -1,1 +0,1 @@

import{p as e,b as i}from"./p-453d08b3.js";(()=>{const i=import.meta.url,t={};return""!==i&&(t.resourcesUrl=new URL(".",i).href),e(t)})().then((e=>i([["p-2bc3f3a3",[[1,"sui-button",null,[[0,"click","clickEventHandler"],[0,"keyup","keyEventHandler"]]],[1,"sui-flextext",{minSize:[1026,"min-size"],maxSize:[1026,"max-size"]}],[1,"sui-input",{value:[1032],checked:[1032],el:[16]}],[1,"sui-nav",{autoHide:[2,"auto-hide"]}],[1,"sui-overlay",{position:[1],transitionTime:[1,"transition-time"],close:[64],open:[64]}],[1,"sui-select",{value:[8],el:[16],leftPadding:[32],rightPadding:[32],topPadding:[32],valueDisplay:[32]}],[1,"sui-textarea",{value:[1025],el:[16],reflect:[32]}],[1,"sui-tooltip",{classNames:[32],tipBackgroundColor:[32]},[[1,"mouseenter","setPosition"]]]]]],e)));
import{p as e,b as i}from"./p-453d08b3.js";(()=>{const i=import.meta.url,t={};return""!==i&&(t.resourcesUrl=new URL(".",i).href),e(t)})().then((e=>i([["p-05548556",[[1,"sui-button",null,[[0,"click","clickEventHandler"],[0,"keyup","keyEventHandler"]]],[1,"sui-flextext",{minSize:[1026,"min-size"],maxSize:[1026,"max-size"]}],[1,"sui-input",{value:[1032],checked:[1032],el:[16]}],[1,"sui-nav",{autoHide:[2,"auto-hide"]}],[1,"sui-overlay",{position:[1],transitionTime:[1,"transition-time"],close:[64],open:[64]}],[1,"sui-select",{value:[8],el:[16],leftPadding:[32],rightPadding:[32],topPadding:[32],valueDisplay:[32]}],[1,"sui-textarea",{value:[1025],el:[16],reflect:[32]}],[1,"sui-tooltip",{classNames:[32],tipBackgroundColor:[32]},[[1,"mouseenter","setPosition"]]]]]],e)));
{
"name": "skateui",
"version": "0.1.127",
"version": "0.1.128",
"description": "Stencil Component Starter",

@@ -5,0 +5,0 @@ "main": "dist/index.cjs.js",

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