├── README.md ├── custom_card.json ├── docs └── docs.txt ├── hacs.json ├── lovelace-home-feed-card.js ├── package.json ├── src ├── helpers │ ├── compute-domain.js │ ├── compute-state-display.js │ ├── compute-state-domain.js │ ├── datetime │ │ ├── format-date-time.js │ │ ├── format-date.js │ │ └── format-time.js │ ├── hass-version.js │ └── subscribe-notifications.js ├── lit-element.js ├── locale.js ├── main.js ├── popup.js └── version.js └── webpack.config.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadgetchnnel/lovelace-home-feed-card/HEAD/README.md -------------------------------------------------------------------------------- /custom_card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadgetchnnel/lovelace-home-feed-card/HEAD/custom_card.json -------------------------------------------------------------------------------- /docs/docs.txt: -------------------------------------------------------------------------------- 1 | Documents here 2 | -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadgetchnnel/lovelace-home-feed-card/HEAD/hacs.json -------------------------------------------------------------------------------- /lovelace-home-feed-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadgetchnnel/lovelace-home-feed-card/HEAD/lovelace-home-feed-card.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadgetchnnel/lovelace-home-feed-card/HEAD/package.json -------------------------------------------------------------------------------- /src/helpers/compute-domain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadgetchnnel/lovelace-home-feed-card/HEAD/src/helpers/compute-domain.js -------------------------------------------------------------------------------- /src/helpers/compute-state-display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadgetchnnel/lovelace-home-feed-card/HEAD/src/helpers/compute-state-display.js -------------------------------------------------------------------------------- /src/helpers/compute-state-domain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadgetchnnel/lovelace-home-feed-card/HEAD/src/helpers/compute-state-domain.js -------------------------------------------------------------------------------- /src/helpers/datetime/format-date-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadgetchnnel/lovelace-home-feed-card/HEAD/src/helpers/datetime/format-date-time.js -------------------------------------------------------------------------------- /src/helpers/datetime/format-date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadgetchnnel/lovelace-home-feed-card/HEAD/src/helpers/datetime/format-date.js -------------------------------------------------------------------------------- /src/helpers/datetime/format-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadgetchnnel/lovelace-home-feed-card/HEAD/src/helpers/datetime/format-time.js -------------------------------------------------------------------------------- /src/helpers/hass-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadgetchnnel/lovelace-home-feed-card/HEAD/src/helpers/hass-version.js -------------------------------------------------------------------------------- /src/helpers/subscribe-notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadgetchnnel/lovelace-home-feed-card/HEAD/src/helpers/subscribe-notifications.js -------------------------------------------------------------------------------- /src/lit-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadgetchnnel/lovelace-home-feed-card/HEAD/src/lit-element.js -------------------------------------------------------------------------------- /src/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadgetchnnel/lovelace-home-feed-card/HEAD/src/locale.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadgetchnnel/lovelace-home-feed-card/HEAD/src/main.js -------------------------------------------------------------------------------- /src/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadgetchnnel/lovelace-home-feed-card/HEAD/src/popup.js -------------------------------------------------------------------------------- /src/version.js: -------------------------------------------------------------------------------- 1 | export const CARD_VERSION = '0.6.4'; -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gadgetchnnel/lovelace-home-feed-card/HEAD/webpack.config.js --------------------------------------------------------------------------------