@salesforcedevs/docs-components
Advanced tools
Comparing version 1.3.300 to 1.3.304-amf-fix-alpha1
{ | ||
"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 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
0
6533
254592
75
2