@salesforcedevs/docs-components 1.19.2-layoutfix-alpha1 → 1.19.3-latest-alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforcedevs/docs-components",
3
- "version": "1.19.2-layoutfix-alpha1",
3
+ "version": "1.19.3-latest-alpha",
4
4
  "description": "Docs Lightning web components for DSC",
5
5
  "license": "MIT",
6
6
  "main": "index.js",
@@ -34,7 +34,12 @@
34
34
  <tr key={attribute.name}>
35
35
  <td>
36
36
  <span class="code">
37
- {attribute.nameInKebabCase}
37
+ <template lwc:if={isModelAura}>
38
+ {attribute.name}
39
+ </template>
40
+ <template lwc:else>
41
+ {attribute.nameInKebabCase}
42
+ </template>
38
43
  </span>
39
44
  </td>
40
45
  <td>{attribute.description}</td>
@@ -119,6 +119,10 @@ export default class SpecificationContent extends LightningElement {
119
119
  );
120
120
  }
121
121
 
122
+ get isModelAura() {
123
+ return this.model === "aura";
124
+ }
125
+
122
126
  renderedCallback(): void {
123
127
  if (this.data) {
124
128
  this.debouncedNotifyDataRendered();