Skip to content

Commit 687c554

Browse files
committed
Updates
0 parents  commit 687c554

File tree

276 files changed

+1015
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

276 files changed

+1015
-0
lines changed

.github/FUNDING.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# These are supported funding model platforms
2+
3+
buy_me_a_coffee: dbuezas

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**Screenshots**
14+
If applicable, add screenshots to help explain your problem.
15+
16+
**yaml**
17+
```yaml
18+
type: custom:plotly-graph
19+
entities:
20+
- entity: sensor.my_sensor
21+
```
22+
23+
**Additional context**
24+
Add any other context about the problem here.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the solution you'd like**
11+
A clear and concise description of what you want to happen.
12+
13+
**How would it be defined in yaml?**
14+
```yaml
15+
type: custom:plotly-graph
16+
entities:
17+
- entity: sensor.monthly_internet_energy
18+
entity_feature_config: xxx
19+
global_feature_config: xxx
20+
```
21+
22+
**Scribble**
23+
When applicable, paste a drawing of how the feature would look like
24+
25+
**Additional context**
26+
Add any other context or screenshots about the feature request here.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build on release
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
13+
- name: Install dependencies
14+
run: npm install
15+
16+
- name: Update package.json
17+
run: npm version ${{ github.ref_name }} --git-tag-version false
18+
19+
- name: Build
20+
run: npm run build
21+
22+
- name: Upload release asset
23+
uses: svenstaro/upload-release-action@v2
24+
with:
25+
file: dist/plotly-graph-card.js

.github/workflows/validate.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: HACS-Validate
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
hacs:
9+
name: HACS Action
10+
runs-on: "ubuntu-latest"
11+
steps:
12+
- uses: "actions/checkout@v2"
13+
- name: HACS Action
14+
uses: "hacs/action@main"
15+
with:
16+
category: "plugin"

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
.DS_Store
3+
/dist
4+
/coverage

.prettierrc.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
semi: true,
3+
//trailingComma: "all",
4+
singleQuote: false,
5+
printWidth: 80,
6+
tabWidth: 2,
7+
};

0002790bdb50e65b987a.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0002790bdb50e65b987a.js.LICENSE.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/*!-----------------------------------------------------------------------------
2+
* Copyright (c) Microsoft Corporation. All rights reserved.
3+
* Version: 0.50.0(c321d0fbecb50ab8a5365fa1965476b0ae63fc87)
4+
* Released under the MIT license
5+
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
6+
*-----------------------------------------------------------------------------*/

0 commit comments

Comments
 (0)