New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@salesforcedevs/docs-components

Package Overview
Dependencies
Maintainers
28
Versions
672
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@salesforcedevs/docs-components - npm Package Compare versions

Comparing version 0.4.47 to 0.4.48

4

package.json
{
"name": "@salesforcedevs/docs-components",
"version": "0.4.47",
"version": "0.4.48",
"description": "Docs Lightning web components for DSC",

@@ -17,3 +17,3 @@ "license": "MIT",

},
"gitHead": "f1f3f2af934e1d7b57c0646709a9b7ece6c5624d"
"gitHead": "bece6881f38e566196a3c0720eb3b7c1573b8913"
}

@@ -9,2 +9,8 @@ /* eslint-disable @lwc/lwc/no-inner-html */

const LANGUAGE_MAP: { [key: string]: string } = {
xml: "plain",
html: "plain",
js: "javascript"
};
export default class Content extends LightningElement {

@@ -101,3 +107,3 @@ @api isStorybook: boolean = false;

// ! Hot fix for incoming html tags from couchdb for xml blocks, fix me soon please
language: language === "xml" ? "plain" : language,
language: LANGUAGE_MAP[language] || language,
theme: this.codeBlockTheme,

@@ -104,0 +110,0 @@ title: "", // Default no title.

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