Socket
Socket
Sign inDemoInstall

@lion/core

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lion/core - npm Package Compare versions

Comparing version 0.13.7 to 0.13.8

7

CHANGELOG.md
# Change Log
## 0.13.8
### Patch Changes
- 8fb7e7a1: Fix type issues where base constructors would not have the same return type. This allows us to remove a LOT of @ts-expect-errors/@ts-ignores across lion.
- 9112d243: Fix missing types and update to latest scoped elements to fix constructor type.
## 0.13.7

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

4

package.json
{
"name": "@lion/core",
"version": "0.13.7",
"version": "0.13.8",
"description": "Core functionality that is shared across all Lion Web Components",

@@ -35,3 +35,3 @@ "license": "MIT",

"@open-wc/dedupe-mixin": "^1.2.18",
"@open-wc/scoped-elements": "^1.3.2",
"@open-wc/scoped-elements": "^1.3.3",
"lit-element": "~2.4.0",

@@ -38,0 +38,0 @@ "lit-html": "^1.3.0"

@@ -13,2 +13,3 @@ import { Constructor } from '@open-wc/dedupe-mixin';

export declare class DelegateHost {
constructor(...args: any[]);
delegations: Delegations;

@@ -15,0 +16,0 @@

@@ -5,2 +5,3 @@ import { Constructor } from '@open-wc/dedupe-mixin';

export declare class DisabledHost {
constructor(...args: any[]);
disabled: boolean;

@@ -24,4 +25,4 @@

superclass: T,
): T & Constructor<DisabledHost>;
): T & Constructor<DisabledHost> & typeof DisabledHost;
export type DisabledMixin = typeof DisabledMixinImplementation;

@@ -5,2 +5,3 @@ import { Constructor } from '@open-wc/dedupe-mixin';

export declare class DisabledWithTabIndexHost {
constructor(...args: any[]);
tabIndex: number;

@@ -7,0 +8,0 @@ /**

@@ -10,2 +10,3 @@ import { Constructor } from '@open-wc/dedupe-mixin';

export declare class SlotHost {
constructor(...args: any[]);
/**

@@ -54,4 +55,4 @@ * Obtains all the slots to create

superclass: T,
): T & Constructor<SlotHost>;
): T & Constructor<SlotHost> & typeof SlotHost;
export type SlotMixin = typeof SlotMixinImplementation;

@@ -24,2 +24,3 @@ import { Constructor } from '@open-wc/dedupe-mixin';

*/
constructor(...args: any[]);
public updateStyles(updateStyles: StylesMap): void;

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