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

@brightspace-ui/core

Package Overview
Dependencies
Maintainers
0
Versions
1440
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@brightspace-ui/core - npm Package Compare versions

Comparing version 3.64.1 to 3.64.2

27

components/list/list-item-mixin.js

@@ -88,2 +88,3 @@ import '../button/button-add.js';

_hovering: { type: Boolean, reflect: true },
_hoveringControl: { type: Boolean, attribute: '_hovering-control', reflect: true },
_hoveringPrimaryAction: { type: Boolean, attribute: '_hovering-primary-action', reflect: true },

@@ -301,2 +302,3 @@ _focusing: { type: Boolean, reflect: true },

:host([_hovering-control]) [slot="outside-control-container"],
:host([_hovering-primary-action]) [slot="outside-control-container"],

@@ -311,2 +313,3 @@ :host([_hovering-selection]) [slot="outside-control-container"],

/* below hides the border under the d2l-button-add */
:host([_hovering-control]) [slot="outside-control-container"].hide-bottom-border,
:host([_hovering-primary-action]) [slot="outside-control-container"].hide-bottom-border,

@@ -327,2 +330,3 @@ :host([_hovering-selection]) [slot="outside-control-container"].hide-bottom-border,

}
:host([_hovering-control]) d2l-button-add,
:host([_hovering-primary-action]) d2l-button-add,

@@ -335,2 +339,3 @@ :host([_hovering-selection]) d2l-button-add,

}
:host([_hovering-control]) [slot="outside-control-container"],
:host([_hovering-primary-action]) [slot="outside-control-container"],

@@ -629,2 +634,7 @@ :host([_hovering-selection]) [slot="outside-control-container"] {

_onMouseEnterControl() {
this._hoveringControl = true;
this._hovering = true;
}
_onMouseEnterPrimaryAction() {

@@ -639,2 +649,7 @@ this._hoveringPrimaryAction = true;

_onMouseLeaveControl() {
this._hoveringControl = false;
this._hovering = false;
}
_onMouseLeavePrimaryAction() {

@@ -716,3 +731,7 @@ this._hoveringPrimaryAction = false;

</div>` : nothing}
<div slot="expand-collapse" class="d2l-list-expand-collapse" @click="${this._toggleExpandCollapse}">
<div slot="expand-collapse"
class="d2l-list-expand-collapse"
@click="${this._toggleExpandCollapse}"
@mouseenter="${this._onMouseEnterControl}"
@mouseleave="${this._onMouseLeaveControl}">
${this._renderExpandCollapse()}

@@ -782,3 +801,7 @@ </div>

_renderOutsideControlAction(dragTarget) {
return html`<div slot="outside-control-action" @mouseenter="${this._onMouseEnter}" @mouseleave="${this._onMouseLeave}">${dragTarget}</div>`;
return html`<div slot="outside-control-action"
@mouseenter="${this._onMouseEnterControl}"
@mouseleave="${this._onMouseLeaveControl}">
${dragTarget}
</div>`;
}

@@ -785,0 +808,0 @@

2

package.json
{
"name": "@brightspace-ui/core",
"version": "3.64.1",
"version": "3.64.2",
"description": "A collection of accessible, free, open-source web components for building Brightspace applications",

@@ -5,0 +5,0 @@ "type": "module",

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