├── .github ├── FUNDING.yml ├── img │ ├── button.png │ ├── editor_entity_v2-2-1.png │ ├── editor_v2-2-2.png │ ├── energy.png │ ├── examples │ │ ├── delta.png │ │ ├── icons.png │ │ ├── legend_all.png │ │ ├── normal.png │ │ ├── only_line_entities.png │ │ ├── only_line_max.png │ │ ├── state_content.png │ │ └── untracked_state_content.png │ ├── legend_alignment │ │ ├── center.png │ │ ├── left.png │ │ ├── right.png │ │ ├── space-around.png │ │ ├── space-between.png │ │ └── space-evenly.png │ ├── legend_indicator │ │ ├── circle.png │ │ ├── icon.png │ │ ├── name.png │ │ ├── none.png │ │ ├── percentage.png │ │ └── state.png │ ├── legend_position │ │ ├── bottom.png │ │ ├── left.png │ │ ├── right.png │ │ └── top.png │ ├── line_text_position │ │ ├── 3-3-line-text.png │ │ ├── bottom-center.png │ │ ├── bottom-left.png │ │ ├── bottom-right.png │ │ ├── center.png │ │ ├── left.png │ │ ├── right.png │ │ ├── top-center.png │ │ ├── top-left.png │ │ └── top-right.png │ ├── main.png │ ├── only_gauge.png │ ├── overflow │ │ ├── clip.png │ │ ├── ellipsis.png │ │ ├── fade-direction-left.png │ │ ├── fade.png │ │ ├── tooltip-segment.png │ │ └── tooltip.png │ ├── position │ │ ├── bottom-center.png │ │ ├── bottom-left.png │ │ ├── bottom-right.png │ │ ├── in-title-left.png │ │ ├── in-title-right.png │ │ ├── left.png │ │ ├── none.png │ │ ├── right.png │ │ ├── top-center.png │ │ ├── top-left.png │ │ └── top-right.png │ ├── text_style │ │ ├── black-outline.png │ │ ├── decoration-line-through.png │ │ ├── decoration-overline.png │ │ ├── decoration-underline.png │ │ ├── family-monospace.png │ │ ├── shadow-hard.png │ │ ├── shadow-heavy.png │ │ ├── shadow-light.png │ │ ├── shadow-medium.png │ │ ├── shadow-neon.png │ │ ├── style-italic.png │ │ ├── transform-capitalize.png │ │ ├── transform-lowercase.png │ │ ├── transform-uppercase.png │ │ ├── weight-bold.png │ │ ├── weight-bolder.png │ │ ├── weight-lighter.png │ │ └── white-outline.png │ ├── theme │ │ ├── circular.png │ │ ├── lite-rounded.png │ │ ├── medium-rounded.png │ │ ├── rounded.png │ │ └── square.png │ └── title_position │ │ ├── bottom-center.png │ │ ├── bottom-left.png │ │ ├── bottom-right.png │ │ ├── left.png │ │ ├── right.png │ │ ├── top-center.png │ │ ├── top-left.png │ │ └── top-right.png └── workflows │ └── validate-hacs.yaml ├── .gitignore ├── .prettierrc.js ├── LICENSE ├── README.md ├── hacs.json ├── mov_prod.py ├── package.json ├── rollup.config.mjs ├── src ├── action-handler.ts ├── color.ts ├── deep-equal.ts ├── defaults.ts ├── editor │ ├── color-editor.ts │ ├── editor.ts │ ├── item-editor.ts │ └── items-editor.ts ├── energy-line-gauge.ts ├── find-entities.ts ├── localize │ ├── defaults.json │ ├── languages │ │ ├── cs.json │ │ └── en.json │ └── localize.ts ├── styles.ts └── types.ts └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/img/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/button.png -------------------------------------------------------------------------------- /.github/img/editor_entity_v2-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/editor_entity_v2-2-1.png -------------------------------------------------------------------------------- /.github/img/editor_v2-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/editor_v2-2-2.png -------------------------------------------------------------------------------- /.github/img/energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/energy.png -------------------------------------------------------------------------------- /.github/img/examples/delta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/examples/delta.png -------------------------------------------------------------------------------- /.github/img/examples/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/examples/icons.png -------------------------------------------------------------------------------- /.github/img/examples/legend_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/examples/legend_all.png -------------------------------------------------------------------------------- /.github/img/examples/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/examples/normal.png -------------------------------------------------------------------------------- /.github/img/examples/only_line_entities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/examples/only_line_entities.png -------------------------------------------------------------------------------- /.github/img/examples/only_line_max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/examples/only_line_max.png -------------------------------------------------------------------------------- /.github/img/examples/state_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/examples/state_content.png -------------------------------------------------------------------------------- /.github/img/examples/untracked_state_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/examples/untracked_state_content.png -------------------------------------------------------------------------------- /.github/img/legend_alignment/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/legend_alignment/center.png -------------------------------------------------------------------------------- /.github/img/legend_alignment/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/legend_alignment/left.png -------------------------------------------------------------------------------- /.github/img/legend_alignment/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/legend_alignment/right.png -------------------------------------------------------------------------------- /.github/img/legend_alignment/space-around.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/legend_alignment/space-around.png -------------------------------------------------------------------------------- /.github/img/legend_alignment/space-between.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/legend_alignment/space-between.png -------------------------------------------------------------------------------- /.github/img/legend_alignment/space-evenly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/legend_alignment/space-evenly.png -------------------------------------------------------------------------------- /.github/img/legend_indicator/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/legend_indicator/circle.png -------------------------------------------------------------------------------- /.github/img/legend_indicator/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/legend_indicator/icon.png -------------------------------------------------------------------------------- /.github/img/legend_indicator/name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/legend_indicator/name.png -------------------------------------------------------------------------------- /.github/img/legend_indicator/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/legend_indicator/none.png -------------------------------------------------------------------------------- /.github/img/legend_indicator/percentage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/legend_indicator/percentage.png -------------------------------------------------------------------------------- /.github/img/legend_indicator/state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/legend_indicator/state.png -------------------------------------------------------------------------------- /.github/img/legend_position/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/legend_position/bottom.png -------------------------------------------------------------------------------- /.github/img/legend_position/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/legend_position/left.png -------------------------------------------------------------------------------- /.github/img/legend_position/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/legend_position/right.png -------------------------------------------------------------------------------- /.github/img/legend_position/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/legend_position/top.png -------------------------------------------------------------------------------- /.github/img/line_text_position/3-3-line-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/line_text_position/3-3-line-text.png -------------------------------------------------------------------------------- /.github/img/line_text_position/bottom-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/line_text_position/bottom-center.png -------------------------------------------------------------------------------- /.github/img/line_text_position/bottom-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/line_text_position/bottom-left.png -------------------------------------------------------------------------------- /.github/img/line_text_position/bottom-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/line_text_position/bottom-right.png -------------------------------------------------------------------------------- /.github/img/line_text_position/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/line_text_position/center.png -------------------------------------------------------------------------------- /.github/img/line_text_position/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/line_text_position/left.png -------------------------------------------------------------------------------- /.github/img/line_text_position/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/line_text_position/right.png -------------------------------------------------------------------------------- /.github/img/line_text_position/top-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/line_text_position/top-center.png -------------------------------------------------------------------------------- /.github/img/line_text_position/top-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/line_text_position/top-left.png -------------------------------------------------------------------------------- /.github/img/line_text_position/top-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/line_text_position/top-right.png -------------------------------------------------------------------------------- /.github/img/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/main.png -------------------------------------------------------------------------------- /.github/img/only_gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/only_gauge.png -------------------------------------------------------------------------------- /.github/img/overflow/clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/overflow/clip.png -------------------------------------------------------------------------------- /.github/img/overflow/ellipsis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/overflow/ellipsis.png -------------------------------------------------------------------------------- /.github/img/overflow/fade-direction-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/overflow/fade-direction-left.png -------------------------------------------------------------------------------- /.github/img/overflow/fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/overflow/fade.png -------------------------------------------------------------------------------- /.github/img/overflow/tooltip-segment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/overflow/tooltip-segment.png -------------------------------------------------------------------------------- /.github/img/overflow/tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/overflow/tooltip.png -------------------------------------------------------------------------------- /.github/img/position/bottom-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/position/bottom-center.png -------------------------------------------------------------------------------- /.github/img/position/bottom-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/position/bottom-left.png -------------------------------------------------------------------------------- /.github/img/position/bottom-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/position/bottom-right.png -------------------------------------------------------------------------------- /.github/img/position/in-title-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/position/in-title-left.png -------------------------------------------------------------------------------- /.github/img/position/in-title-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/position/in-title-right.png -------------------------------------------------------------------------------- /.github/img/position/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/position/left.png -------------------------------------------------------------------------------- /.github/img/position/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/position/none.png -------------------------------------------------------------------------------- /.github/img/position/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/position/right.png -------------------------------------------------------------------------------- /.github/img/position/top-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/position/top-center.png -------------------------------------------------------------------------------- /.github/img/position/top-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/position/top-left.png -------------------------------------------------------------------------------- /.github/img/position/top-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/position/top-right.png -------------------------------------------------------------------------------- /.github/img/text_style/black-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/text_style/black-outline.png -------------------------------------------------------------------------------- /.github/img/text_style/decoration-line-through.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/text_style/decoration-line-through.png -------------------------------------------------------------------------------- /.github/img/text_style/decoration-overline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/text_style/decoration-overline.png -------------------------------------------------------------------------------- /.github/img/text_style/decoration-underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/text_style/decoration-underline.png -------------------------------------------------------------------------------- /.github/img/text_style/family-monospace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/text_style/family-monospace.png -------------------------------------------------------------------------------- /.github/img/text_style/shadow-hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/text_style/shadow-hard.png -------------------------------------------------------------------------------- /.github/img/text_style/shadow-heavy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/text_style/shadow-heavy.png -------------------------------------------------------------------------------- /.github/img/text_style/shadow-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/text_style/shadow-light.png -------------------------------------------------------------------------------- /.github/img/text_style/shadow-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/text_style/shadow-medium.png -------------------------------------------------------------------------------- /.github/img/text_style/shadow-neon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/text_style/shadow-neon.png -------------------------------------------------------------------------------- /.github/img/text_style/style-italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/text_style/style-italic.png -------------------------------------------------------------------------------- /.github/img/text_style/transform-capitalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/text_style/transform-capitalize.png -------------------------------------------------------------------------------- /.github/img/text_style/transform-lowercase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/text_style/transform-lowercase.png -------------------------------------------------------------------------------- /.github/img/text_style/transform-uppercase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/text_style/transform-uppercase.png -------------------------------------------------------------------------------- /.github/img/text_style/weight-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/text_style/weight-bold.png -------------------------------------------------------------------------------- /.github/img/text_style/weight-bolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/text_style/weight-bolder.png -------------------------------------------------------------------------------- /.github/img/text_style/weight-lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/text_style/weight-lighter.png -------------------------------------------------------------------------------- /.github/img/text_style/white-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/text_style/white-outline.png -------------------------------------------------------------------------------- /.github/img/theme/circular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/theme/circular.png -------------------------------------------------------------------------------- /.github/img/theme/lite-rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/theme/lite-rounded.png -------------------------------------------------------------------------------- /.github/img/theme/medium-rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/theme/medium-rounded.png -------------------------------------------------------------------------------- /.github/img/theme/rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/theme/rounded.png -------------------------------------------------------------------------------- /.github/img/theme/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/theme/square.png -------------------------------------------------------------------------------- /.github/img/title_position/bottom-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/title_position/bottom-center.png -------------------------------------------------------------------------------- /.github/img/title_position/bottom-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/title_position/bottom-left.png -------------------------------------------------------------------------------- /.github/img/title_position/bottom-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/title_position/bottom-right.png -------------------------------------------------------------------------------- /.github/img/title_position/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/title_position/left.png -------------------------------------------------------------------------------- /.github/img/title_position/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/title_position/right.png -------------------------------------------------------------------------------- /.github/img/title_position/top-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/title_position/top-center.png -------------------------------------------------------------------------------- /.github/img/title_position/top-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/title_position/top-left.png -------------------------------------------------------------------------------- /.github/img/title_position/top-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/img/title_position/top-right.png -------------------------------------------------------------------------------- /.github/workflows/validate-hacs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.github/workflows/validate-hacs.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/README.md -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/hacs.json -------------------------------------------------------------------------------- /mov_prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/mov_prod.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /src/action-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/src/action-handler.ts -------------------------------------------------------------------------------- /src/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/src/color.ts -------------------------------------------------------------------------------- /src/deep-equal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/src/deep-equal.ts -------------------------------------------------------------------------------- /src/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/src/defaults.ts -------------------------------------------------------------------------------- /src/editor/color-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/src/editor/color-editor.ts -------------------------------------------------------------------------------- /src/editor/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/src/editor/editor.ts -------------------------------------------------------------------------------- /src/editor/item-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/src/editor/item-editor.ts -------------------------------------------------------------------------------- /src/editor/items-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/src/editor/items-editor.ts -------------------------------------------------------------------------------- /src/energy-line-gauge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/src/energy-line-gauge.ts -------------------------------------------------------------------------------- /src/find-entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/src/find-entities.ts -------------------------------------------------------------------------------- /src/localize/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/src/localize/defaults.json -------------------------------------------------------------------------------- /src/localize/languages/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/src/localize/languages/cs.json -------------------------------------------------------------------------------- /src/localize/languages/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/src/localize/languages/en.json -------------------------------------------------------------------------------- /src/localize/localize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/src/localize/localize.ts -------------------------------------------------------------------------------- /src/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/src/styles.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomer27cz/energy-line-gauge/HEAD/tsconfig.json --------------------------------------------------------------------------------