-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: analytics dashboard lwc templates
@W-9191596@
- Loading branch information
Showing
7 changed files
with
148 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...templates/src/templates/lightningcomponent/lwc/analyticsDashboard/analyticsDashboard.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<template> | ||
|
||
</template> |
6 changes: 6 additions & 0 deletions
6
...s/templates/src/templates/lightningcomponent/lwc/analyticsDashboard/analyticsDashboard.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { LightningElement, api } from 'lwc'; | ||
|
||
export default class <%= className %> extends LightningElement { | ||
@api getState; | ||
@api setState; | ||
} |
13 changes: 13 additions & 0 deletions
13
...es/src/templates/lightningcomponent/lwc/analyticsDashboard/analyticsDashboard.js-meta.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<apiVersion><%= apiVersion %></apiVersion> | ||
<isExposed>true</isExposed> | ||
<targets> | ||
<target>analytics__Dashboard</target> | ||
</targets> | ||
<targetConfigs> | ||
<targetConfig targets="analytics__Dashboard"> | ||
<hasStep>false</hasStep> | ||
</targetConfig> | ||
</targetConfigs> | ||
</LightningComponentBundle> |
3 changes: 3 additions & 0 deletions
3
...mplates/lightningcomponent/lwc/analyticsDashboardWithStep/analyticsDashboardWithStep.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<template> | ||
|
||
</template> |
11 changes: 11 additions & 0 deletions
11
...templates/lightningcomponent/lwc/analyticsDashboardWithStep/analyticsDashboardWithStep.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { LightningElement, api } from 'lwc'; | ||
|
||
export default class <%= className %> extends LightningElement { | ||
@api results; | ||
@api metadata; | ||
@api selection; | ||
@api setSelection; | ||
@api selectMode; | ||
@api getState; | ||
@api setState; | ||
} |
13 changes: 13 additions & 0 deletions
13
.../lightningcomponent/lwc/analyticsDashboardWithStep/analyticsDashboardWithStep.js-meta.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<apiVersion><%= apiVersion %></apiVersion> | ||
<isExposed>true</isExposed> | ||
<targets> | ||
<target>analytics__Dashboard</target> | ||
</targets> | ||
<targetConfigs> | ||
<targetConfig targets="analytics__Dashboard"> | ||
<hasStep>true</hasStep> | ||
</targetConfig> | ||
</targetConfigs> | ||
</LightningComponentBundle> |