Socket
Socket
Sign inDemoInstall

@mekari/pixel-popper

Package Overview
Dependencies
Maintainers
4
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mekari/pixel-popper - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

5

dist/mekari-pixel-popper.cjs.dev.js

@@ -226,2 +226,3 @@ 'use strict';

props: {
id: String,
as: {

@@ -305,7 +306,7 @@ type: [String, Object],

portalTarget() {
return this.usePortalTarget || `#pixel-portal-${pixelUtils.useId(4)}`;
return this.usePortalTarget || this.id || `#pixel-portal-${pixelUtils.useId(4)}`;
},
popperId() {
return `popper_${pixelUtils.useId(4)}`;
return `popper_${this.id}` || `popper_${pixelUtils.useId(4)}`;
},

@@ -312,0 +313,0 @@

@@ -226,2 +226,3 @@ 'use strict';

props: {
id: String,
as: {

@@ -305,7 +306,7 @@ type: [String, Object],

portalTarget() {
return this.usePortalTarget || `#pixel-portal-${pixelUtils.useId(4)}`;
return this.usePortalTarget || this.id || `#pixel-portal-${pixelUtils.useId(4)}`;
},
popperId() {
return `popper_${pixelUtils.useId(4)}`;
return `popper_${this.id}` || `popper_${pixelUtils.useId(4)}`;
},

@@ -312,0 +313,0 @@

@@ -218,2 +218,3 @@ import merge from 'lodash-es/merge';

props: {
id: String,
as: {

@@ -297,7 +298,7 @@ type: [String, Object],

portalTarget() {
return this.usePortalTarget || `#pixel-portal-${useId(4)}`;
return this.usePortalTarget || this.id || `#pixel-portal-${useId(4)}`;
},
popperId() {
return `popper_${useId(4)}`;
return `popper_${this.id}` || `popper_${useId(4)}`;
},

@@ -304,0 +305,0 @@

10

package.json
{
"name": "@mekari/pixel-popper",
"version": "0.0.6",
"version": "0.0.7",
"description": "Mekari Pixel | Popper component",

@@ -27,6 +27,6 @@ "homepage": "https://mekari.design/",

"dependencies": {
"@mekari/pixel-box": "^0.0.6",
"@mekari/pixel-portal": "^0.0.6",
"@mekari/pixel-pseudo-box": "^0.0.6",
"@mekari/pixel-utils": "^0.0.6",
"@mekari/pixel-box": "^0.0.7",
"@mekari/pixel-portal": "^0.0.7",
"@mekari/pixel-pseudo-box": "^0.0.7",
"@mekari/pixel-utils": "^0.1.0",
"@popperjs/core": "^2.4.0",

@@ -33,0 +33,0 @@ "lodash-es": "^4.17.21"

@@ -63,2 +63,3 @@ import merge from 'lodash-es/merge'

props: {
id: String,
as: {

@@ -140,6 +141,6 @@ type: [String, Object],

portalTarget () {
return this.usePortalTarget || `#pixel-portal-${useId(4)}`
return this.usePortalTarget || this.id || `#pixel-portal-${useId(4)}`
},
popperId () {
return `popper_${useId(4)}`
return `popper_${this.id}` || `popper_${useId(4)}`
},

@@ -146,0 +147,0 @@ rtlPlacement () {

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