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

@umbraco-ui/uui-boolean-input

Package Overview
Dependencies
Maintainers
6
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@umbraco-ui/uui-boolean-input - npm Package Compare versions

Comparing version 1.6.0 to 1.7.0-rc.0

24

lib/index.js

@@ -6,21 +6,8 @@ import { FormControlMixin, LabelMixin } from '@umbraco-ui/uui-base/lib/mixins';

var __defProp$1 = Object.defineProperty;
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __propIsEnum = Object.prototype.propertyIsEnumerable;
var __defNormalProp = (obj, key, value) => key in obj ? __defProp$1(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
var __spreadValues = (a, b) => {
for (var prop in b || (b = {}))
if (__hasOwnProp.call(b, prop))
__defNormalProp(a, prop, b[prop]);
if (__getOwnPropSymbols)
for (var prop of __getOwnPropSymbols(b)) {
if (__propIsEnum.call(b, prop))
__defNormalProp(a, prop, b[prop]);
}
return a;
};
class UUIBooleanInputEvent extends UUIEvent {
constructor(evName, eventInit = {}) {
super(evName, __spreadValues(__spreadValues({}, { bubbles: true }), eventInit));
super(evName, {
...{ bubbles: true },
...eventInit
});
}

@@ -98,5 +85,4 @@ }

firstUpdated(_changedProperties) {
var _a;
super.firstUpdated(_changedProperties);
const labelEl = (_a = this.shadowRoot) == null ? void 0 : _a.querySelector("label");
const labelEl = this.shadowRoot?.querySelector("label");
let hadMouseDown = false;

@@ -103,0 +89,0 @@ this._input.addEventListener("blur", () => {

{
"name": "@umbraco-ui/uui-boolean-input",
"version": "1.6.0",
"version": "1.7.0-rc.0",
"license": "MIT",

@@ -33,6 +33,6 @@ "keywords": [

"dependencies": {
"@umbraco-ui/uui-base": "1.6.0"
"@umbraco-ui/uui-base": "1.7.0-rc.0"
},
"scripts": {
"build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
"build": "npm run analyze && tsc --build && rollup -c rollup.config.js",
"clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js *.tgz lib/**/*.d.ts custom-elements.json",

@@ -45,3 +45,3 @@ "analyze": "web-component-analyzer **/*.element.ts --outFile custom-elements.json"

"homepage": "https://uui.umbraco.com/?path=/story/uui-boolean-input",
"gitHead": "b06aebbb67ff67c9611a19927ec3ef484edcb1cc"
"gitHead": "a7166e62b37b609e74b96821d397c694a5f42458"
}
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