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

@gemsorg/uikit

Package Overview
Dependencies
Maintainers
3
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gemsorg/uikit - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

4

package.json
{
"name": "@gemsorg/uikit",
"version": "0.1.1",
"version": "0.1.2",
"description": "",

@@ -16,3 +16,3 @@ "main": "index.js",

"author": "gems.org",
"gitHead": "c08ff290cc740432de158fee85fc660cfb526d0f"
"gitHead": "fedf8ca89f07ba891fc944dcde2dd488df633b14"
}
import React, { Component, createRef } from 'react';
import PropTypes from 'prop-types';
import marked from 'marked';

@@ -16,2 +17,6 @@ import highlight from './highlight';

this.state = {
md: marked(props.doc, { ...marked.defaults }),
};
this.containerRef = createRef();

@@ -29,3 +34,3 @@ }

render() {
const { doc } = this.props;
const { md } = this.state;
return (

@@ -35,3 +40,3 @@ <div

className="gem-gh-markdown"
dangerouslySetInnerHTML={{ __html: doc }} // eslint-disable-line react/no-danger
dangerouslySetInnerHTML={{ __html: md }} // eslint-disable-line react/no-danger
/>

@@ -38,0 +43,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