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

@lion/button

Package Overview
Dependencies
Maintainers
1
Versions
169
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lion/button - npm Package Compare versions

Comparing version 0.8.11 to 0.9.0

custom-elements.json

13

CHANGELOG.md
# Change Log
## 0.9.0
### Minor Changes
- b2f981db: Add exports field in package.json
Note that some tools can break with this change as long as they respect the exports field. If that is the case, check that you always access the elements included in the exports field, with the same name which they are exported. Any item not exported is considered private to the package and should not be accessed from the outside.
### Patch Changes
- Updated dependencies [b2f981db]
- @lion/core@0.14.0
## 0.8.11

@@ -4,0 +17,0 @@

17

package.json
{
"name": "@lion/button",
"version": "0.8.11",
"version": "0.9.0",
"description": "A button that is easily styleable and accessible in all contexts",

@@ -18,2 +18,3 @@ "license": "MIT",

"*.js",
"custom-elements.json",
"docs",

@@ -27,6 +28,7 @@ "src",

"scripts": {
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
"debug": "cd ../../ && npm run debug -- --group button",
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group button",
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group button",
"prepublishOnly": "../../scripts/npm-prepublish.js",
"prepublishOnly": "../../scripts/npm-prepublish.js && npm run custom-elements-manifest",
"test": "cd ../../ && npm run test:browser -- --group button"

@@ -38,3 +40,3 @@ },

"dependencies": {
"@lion/core": "0.13.8"
"@lion/core": "0.14.0"
},

@@ -48,3 +50,8 @@ "keywords": [

"access": "public"
}
}
},
"exports": {
".": "./index.js",
"./lion-button": "./lion-button.js"
},
"customElementsManifest": "custom-elements.json"
}

@@ -9,3 +9,3 @@ import {

} from '@lion/core';
import '@lion/core/src/differentKeyEventNamesShimIE.js';
import '@lion/core/differentKeyEventNamesShimIE';

@@ -12,0 +12,0 @@ const isKeyboardClickEvent = (/** @type {KeyboardEvent} */ e) => e.key === ' ' || e.key === 'Enter';

import { browserDetection } from '@lion/core';
import { aTimeout, expect, fixture, html, oneEvent, unsafeStatic } from '@open-wc/testing';
import sinon from 'sinon';
import '@lion/core/src/differentKeyEventNamesShimIE.js';
import '@lion/core/differentKeyEventNamesShimIE';
import '../lion-button.js';

@@ -6,0 +6,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