Socket
Socket
Sign inDemoInstall

@salesforcedevs/docs-components

Package Overview
Dependencies
Maintainers
0
Versions
625
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 1.3.300 to 1.3.304-amf-fix-alpha1

4

package.json
{
"name": "@salesforcedevs/docs-components",
"version": "1.3.300",
"version": "1.3.304-amf-fix-alpha1",
"description": "Docs Lightning web components for DSC",

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

},
"gitHead": "f38c6bd9c9360f64cd7ed0e61184e4685049c673"
"gitHead": "4629fdd9ca18a13480044ad43515b91945d16aad"
}

@@ -13,2 +13,3 @@ import { LightningElement, api } from "lwc";

const TABLE_SIZE_MATCH = "769px";

@@ -27,13 +28,20 @@

set model(value: TopicModel) {
const amfJsonObj = clone(value);
if (
!this.amf ||
(value && this._model && value.amf !== this._model?.amf)
(value &&
this._model &&
value.amf !== this._model?.amf &&
amfJsonObj?.amf)
) {
this.amf = value && clone(value.amf);
this.amf = value && amfJsonObj.amf;
}
if (
!this.type ||
(value && this._model && value.type !== this._model?.type)
(value &&
this._model &&
value.type !== this._model?.type &&
amfJsonObj?.type)
) {
this.type = value && clone(value.type);
this.type = value && amfJsonObj.type;
}

@@ -40,0 +48,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