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.11.0 to 0.11.1

6

CHANGELOG.md
# Change Log
## 0.11.1
### Patch Changes
- f0527583: fix: expose members as protected for extension compat. till v1
## 0.11.0

@@ -4,0 +10,0 @@

25

custom-elements.json

@@ -142,5 +142,19 @@ {

{
"kind": "field",
"kind": "method",
"name": "__clickDelegationHandler",
"privacy": "private"
"privacy": "protected",
"description": "Delegate click, by flashing a native button as a direct child\nof the form, and firing click on this button. This will fire the form submit\nwithout side effects caused by the click bubbling back up to lion-button.",
"return": {
"type": {
"text": "Promise<void>"
}
},
"parameters": [
{
"name": "ev",
"type": {
"text": "Event"
}
}
]
},

@@ -267,4 +281,9 @@ {

"name": "__clickDelegationHandler",
"privacy": "private",
"privacy": "protected",
"description": "Delegate click, by flashing a native button as a direct child\nof the form, and firing click on this button. This will fire the form submit\nwithout side effects caused by the click bubbling back up to lion-button.",
"return": {
"type": {
"text": "Promise<void>"
}
},
"parameters": [

@@ -271,0 +290,0 @@ {

2

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

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -58,5 +58,6 @@ declare const LionButton_base: typeof LitElement & import("@open-wc/dedupe-mixin").Constructor<import("@lion/core/types/SlotMixinTypes").SlotHost> & Pick<typeof import("@lion/core/types/SlotMixinTypes").SlotHost, "prototype"> & Pick<{

* @param {Event} ev
* @private
* @protected
* @returns {Promise<void>}
*/
private __clickDelegationHandler;
protected __clickDelegationHandler(ev: Event): Promise<void>;
/**

@@ -63,0 +64,0 @@ * @private

@@ -243,4 +243,6 @@ import {

* @param {Event} ev
* @private
* @protected
* @returns {Promise<void>}
*/
// TODO: rename to _clickDelegationHandler in v1
async __clickDelegationHandler(ev) {

@@ -247,0 +249,0 @@ // Wait for updateComplete if form is not yet available

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