Socket
Socket
Sign inDemoInstall

@evroca/jw-react-npm-boilerplate

Package Overview
Dependencies
10
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.0.8 to 4.0.9

src/index.css

2

package.json
{
"name": "@evroca/jw-react-npm-boilerplate",
"version": "4.0.8",
"version": "4.0.9",
"description": "",

@@ -5,0 +5,0 @@ "main": "./www/main.js",

@@ -1,5 +0,82 @@

import React from 'react';
import React, { useState } from "react";
import PropTypes from "prop-types";
import "./index.css";
export default function BoilerplateComponent() {
return <div>hey</div>;
console.log("hey4");
const style = {
car: {
display: "flex",
whiteSpace: "nowrap",
overflowX: "auto",
scrollBehavior: "smooth",
},
item: {
width: "calc(25% - 20px)",
whitespace: "normal",
padding: "10px",
},
chevron: {
position: "absolute",
top: "calc(50% - 35px / 2)",
width: "35px",
height: "35px",
textAlign: "center",
borderRadius: "100%",
background: "rgba(0,0,0,0.3)",
color: "#fff",
},
};
export default function App({ children }) {
const [myRef, setMyRef] = useState(null);
const handleClick = (isLeft) => {
const thisMuch = window.innerWidth / 4;
if (isLeft) {
myRef.scrollLeft -= thisMuch;
} else {
myRef.scrollLeft += thisMuch;
}
};
const drawChevron = (isLeft) => {
const conditionalStyle = isLeft ? { left: "15px" } : { right: "15px" };
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
style={{ ...style.chevron, ...conditionalStyle }}
onClick={() => handleClick(isLeft)}
>
<polyline points={isLeft ? "15 18 9 12 15 6" : "9 18 15 12 9 6"} />
</svg>
);
};
return (
<div>
<div style={{ position: "relative" }}>
{drawChevron(true)}
{drawChevron(false)}
<div id="evroca-carousel" style={style.car} ref={setMyRef}>
{children.map((el, i) => (
<div key={i} style={style.item}>
{el}
</div>
))}
</div>
</div>
</div>
);
}
// PropTypes
App.propTypes = {
children: PropTypes.node.isRequired,
};
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc