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

@mekari/pixel-divider

Package Overview
Dependencies
Maintainers
0
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mekari/pixel-divider - npm Package Compare versions

Comparing version 0.2.3 to 0.2.4

8

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

@@ -15,2 +15,6 @@ 'use strict';

props: {
variant: {
type: String,
default: 'solid'
},
orientation: {

@@ -24,7 +28,7 @@ type: String,

return this.orientation === 'vertical' ? {
borderLeft: '0.0625rem solid',
borderLeft: `0.0625rem ${this.variant}`,
height: 'auto',
mx: 2
} : {
borderBottom: '0.0625rem solid',
borderBottom: `0.0625rem ${this.variant}`,
width: 'auto',

@@ -31,0 +35,0 @@ my: 2

@@ -15,2 +15,6 @@ 'use strict';

props: {
variant: {
type: String,
default: 'solid'
},
orientation: {

@@ -24,7 +28,7 @@ type: String,

return this.orientation === 'vertical' ? {
borderLeft: '0.0625rem solid',
borderLeft: `0.0625rem ${this.variant}`,
height: 'auto',
mx: 2
} : {
borderBottom: '0.0625rem solid',
borderBottom: `0.0625rem ${this.variant}`,
width: 'auto',

@@ -31,0 +35,0 @@ my: 2

@@ -11,2 +11,6 @@ import { createStyledAttrsMixin } from '@mekari/pixel-utils';

props: {
variant: {
type: String,
default: 'solid'
},
orientation: {

@@ -20,7 +24,7 @@ type: String,

return this.orientation === 'vertical' ? {
borderLeft: '0.0625rem solid',
borderLeft: `0.0625rem ${this.variant}`,
height: 'auto',
mx: 2
} : {
borderBottom: '0.0625rem solid',
borderBottom: `0.0625rem ${this.variant}`,
width: 'auto',

@@ -27,0 +31,0 @@ my: 2

{
"name": "@mekari/pixel-divider",
"description": "Mekari Pixel | Divider component",
"version": "0.2.3",
"version": "0.2.4",
"homepage": "https://mekari.design/",

@@ -6,0 +6,0 @@ "repository": {

@@ -10,2 +10,6 @@ import { createStyledAttrsMixin } from '@mekari/pixel-utils'

props: {
variant: {
type: String,
default: 'solid'
},
orientation: {

@@ -19,4 +23,4 @@ type: String,

return this.orientation === 'vertical'
? { borderLeft: '0.0625rem solid', height: 'auto', mx: 2 }
: { borderBottom: '0.0625rem solid', width: 'auto', my: 2 }
? { borderLeft: `0.0625rem ${this.variant}`, height: 'auto', mx: 2 }
: { borderBottom: `0.0625rem ${this.variant}`, width: 'auto', my: 2 }
},

@@ -23,0 +27,0 @@ componentStyles() {

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