@salesforcedevs/docs-components
Advanced tools
Comparing version 0.4.16 to 0.4.18
@@ -10,4 +10,5 @@ { | ||
"doc/contentMedia", | ||
"doc/content" | ||
"doc/content", | ||
"doc/header" | ||
] | ||
} |
{ | ||
"name": "@salesforcedevs/docs-components", | ||
"version": "0.4.16", | ||
"version": "0.4.18", | ||
"description": "Docs Lightning web components for DSC", | ||
@@ -17,3 +17,3 @@ "license": "MIT", | ||
}, | ||
"gitHead": "9dee6942bb39df7e7146e4cca1747380303b632c" | ||
"gitHead": "68d28cdb85691e45ddf14940ed24e9eba8ef54a0" | ||
} |
@@ -19,2 +19,3 @@ import { LightningElement, api } from "lwc"; | ||
// ! Deprecated | ||
export default class Container extends LightningElement { | ||
@@ -21,0 +22,0 @@ @api domainApi: string = DEFAULT_URL; |
@@ -9,2 +9,3 @@ import { LightningElement, track, api } from "lwc"; | ||
// ! Deprecated | ||
export default class Landing extends LightningElement { | ||
@@ -37,3 +38,2 @@ @api defaultUrl: string = | ||
const type = event.currentTarget.dataset.type; | ||
console.log(value, type); | ||
switch (type) { | ||
@@ -60,3 +60,2 @@ case "language": | ||
const value = event.detail; | ||
console.log(value); | ||
this.searchTerm = value.toLowerCase(); | ||
@@ -134,3 +133,2 @@ this.filteredContent = this.content.filter( | ||
} | ||
console.log(JSON.stringify(availableLanguages)); | ||
return availableLanguages; | ||
@@ -219,3 +217,2 @@ } | ||
get contentResults() { | ||
console.log(this.searchTerm.length); | ||
if (this.searchTerm.length >= 1) { | ||
@@ -222,0 +219,0 @@ console.log(this.filteredContent); |
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
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
460784
78
9214