Skip to content

Commit

Permalink
Version Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Sian-Lee-SA committed Apr 7, 2023
1 parent a87658b commit a2c7faa
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "honeycomb-menu",
"private": true,
"version": "0.12.1",
"version": "0.12.2",
"description": "Display a popup menu for Home Assistant lovelace cards via tap, hold or double tap",
"scripts": {
"build": "webpack",
Expand Down
1 change: 0 additions & 1 deletion src/honeycomb-menu-item.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { LitElement, html, css } from 'lit';
import { objectEvalTemplate, getTemplateOrValue, provideHass, createCard } from "./helpers.js";

// const _ = require('lodash');
const merge = require('lodash/merge');
const assign = require('lodash/assign');
const isEmpty = require('lodash/isEmpty');
Expand Down
5 changes: 0 additions & 5 deletions src/honeycomb-menu.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
// const _ = require('lodash');

import { LitElement, html, css } from 'lit';
import "./honeycomb-menu-item.js";
import "./xy-pad.js";
Expand All @@ -16,8 +14,6 @@ const _template = require('lodash/template');
const isEmpty = require('lodash/isEmpty');
const _defaults = require('lodash/defaults');

// _.templateSettings.interpolate = /{{([\s\S]+?)}}/g;

const manager = new function() {
this.honeycomb = null;
this.position = {
Expand All @@ -42,7 +38,6 @@ function showHoneycombMenu( _config )
manager.honeycomb = document.createElement('honeycomb-menu');
// Some configs can be non extensible so we make them
// extensible
// manager.honeycomb.config = _config;
manager.honeycomb.setConfig( _config )
manager.honeycomb.display( lovelace_view(), manager.position.x, manager.position.y );
manager.honeycomb.addEventListener('closing', e => {
Expand Down

0 comments on commit a2c7faa

Please sign in to comment.