Skip to content

Commit

Permalink
Sync core frontend to ce43774 (#763)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus authored Jul 19, 2024
1 parent 2a3483d commit 4d5e783
Show file tree
Hide file tree
Showing 4 changed files with 527 additions and 282 deletions.
2 changes: 1 addition & 1 deletion homeassistant-frontend
Submodule homeassistant-frontend updated 99 files
+2 −2 .github/workflows/cast_deployment.yaml
+4 −4 .github/workflows/ci.yaml
+2 −2 .github/workflows/demo_deployment.yaml
+1 −1 .github/workflows/design_deployment.yaml
+1 −1 .github/workflows/design_preview.yaml
+1 −1 .github/workflows/nightly.yaml
+2 −2 .github/workflows/release.yaml
+3 −0 gallery/src/pages/components/ha-form.ts
+3 −0 gallery/src/pages/components/ha-selector.ts
+1 −0 gallery/src/pages/misc/integration-card.ts
+19 −19 package.json
+4 −2 src/common/navigate.ts
+2 −2 src/components/chart/state-history-chart-timeline.ts
+2 −1 src/components/data-table/dialog-data-table-settings.ts
+5 −4 src/components/data-table/ha-data-table.ts
+314 −0 src/components/entity/ha-entity-state-content-picker.ts
+1 −1 src/components/entity/ha-state-label-badge.ts
+2 −2 src/components/ha-grid-size-picker.ts
+48 −0 src/components/ha-selector/ha-selector-ui-state-content.ts
+1 −0 src/components/ha-selector/ha-selector.ts
+4 −2 src/components/ha-service-control.ts
+1 −1 src/components/ha-service-picker.ts
+25 −4 src/components/ha-sidebar.ts
+1 −0 src/components/ha-slider.ts
+2 −2 src/components/map/ha-map.ts
+4 −4 src/components/tile/ha-tile-icon.ts
+3 −3 src/components/tile/ha-tile-image.ts
+1 −1 src/components/tile/ha-tile-info.ts
+2 −2 src/data/cover.ts
+1 −0 src/data/device_registry.ts
+0 −21 src/data/group.ts
+13 −2 src/data/otbr.ts
+10 −4 src/data/preview.ts
+11 −3 src/data/selector.ts
+0 −21 src/data/time_date.ts
+1 −1 src/data/timer.ts
+9 −10 src/dialogs/config-flow/previews/flow-preview-generic.ts
+0 −90 src/dialogs/config-flow/previews/flow-preview-group.ts
+0 −94 src/dialogs/config-flow/previews/flow-preview-time_date.ts
+4 −2 src/dialogs/config-flow/step-flow-form.ts
+1 −1 src/fake_data/provide_hass.ts
+2 −0 src/panels/config/automation/action/ha-automation-action-row.ts
+2 −0 src/panels/config/automation/action/types/ha-automation-action-choose.ts
+2 −0 src/panels/config/automation/condition/ha-automation-condition-row.ts
+2 −0 src/panels/config/automation/trigger/ha-automation-trigger-row.ts
+2 −1 src/panels/config/automation/trigger/types/ha-automation-trigger-webhook.ts
+6 −3 src/panels/config/cloud/account/cloud-tts-pref.ts
+7 −2 src/panels/config/devices/device-detail/ha-device-info-card.ts
+14 −5 src/panels/config/devices/ha-config-device-page.ts
+1 −1 src/panels/config/entities/entity-registry-settings-editor.ts
+1 −1 src/panels/config/entities/ha-config-entities.ts
+56 −32 src/panels/config/integrations/integration-panels/thread/thread-config-panel.ts
+23 −24 src/panels/developer-tools/action/developer-tools-action.ts
+4 −3 src/panels/developer-tools/developer-tools-router.ts
+2 −4 src/panels/developer-tools/ha-panel-developer-tools.ts
+30 −0 src/panels/lovelace/card-features/common/card-feature-styles.ts
+18 −35 src/panels/lovelace/card-features/hui-alarm-modes-card-feature.ts
+51 −0 src/panels/lovelace/card-features/hui-card-feature.ts
+30 −44 src/panels/lovelace/card-features/hui-card-features.ts
+44 −67 src/panels/lovelace/card-features/hui-climate-fan-modes-card-feature.ts
+43 −65 src/panels/lovelace/card-features/hui-climate-hvac-modes-card-feature.ts
+45 −71 src/panels/lovelace/card-features/hui-climate-preset-modes-card-feature.ts
+47 −70 src/panels/lovelace/card-features/hui-climate-swing-modes-card-feature.ts
+3 −7 src/panels/lovelace/card-features/hui-cover-open-close-card-feature.ts
+25 −37 src/panels/lovelace/card-features/hui-cover-position-card-feature.ts
+4 −8 src/panels/lovelace/card-features/hui-cover-tilt-card-feature.ts
+31 −40 src/panels/lovelace/card-features/hui-cover-tilt-position-card-feature.ts
+46 −72 src/panels/lovelace/card-features/hui-fan-preset-modes-card-feature.ts
+41 −56 src/panels/lovelace/card-features/hui-fan-speed-card-feature.ts
+44 −67 src/panels/lovelace/card-features/hui-humidifier-modes-card-feature.ts
+15 −28 src/panels/lovelace/card-features/hui-humidifier-toggle-card-feature.ts
+3 −7 src/panels/lovelace/card-features/hui-lawn-mower-commands-card-feature.ts
+14 −27 src/panels/lovelace/card-features/hui-light-brightness-card-feature.ts
+28 −33 src/panels/lovelace/card-features/hui-light-color-temp-card-feature.ts
+3 −7 src/panels/lovelace/card-features/hui-lock-commands-card-feature.ts
+29 −29 src/panels/lovelace/card-features/hui-lock-open-door-card-feature.ts
+31 −44 src/panels/lovelace/card-features/hui-numeric-input-card-feature.ts
+23 −37 src/panels/lovelace/card-features/hui-select-options-card-feature.ts
+14 −30 src/panels/lovelace/card-features/hui-target-humidity-card-feature.ts
+3 −7 src/panels/lovelace/card-features/hui-target-temperature-card-feature.ts
+3 −7 src/panels/lovelace/card-features/hui-update-actions-card-feature.ts
+3 −7 src/panels/lovelace/card-features/hui-vacuum-commands-card-feature.ts
+16 −33 src/panels/lovelace/card-features/hui-water-heater-operation-modes-card-feature.ts
+77 −187 src/panels/lovelace/cards/hui-tile-card.ts
+1 −1 src/panels/lovelace/common/compute-tooltip.ts
+1 −1 src/panels/lovelace/common/handle-action.ts
+1 −1 src/panels/lovelace/components/hui-generic-entity-row.ts
+2 −2 src/panels/lovelace/editor/conditions/types/ha-card-condition-state.ts
+7 −106 src/panels/lovelace/editor/config-elements/hui-tile-card-editor.ts
+6 −81 src/panels/lovelace/entity-rows/hui-timer-entity-row.ts
+1 −1 src/panels/lovelace/sections/hui-grid-section.ts
+3 −2 src/resources/ha-style.ts
+1 −1 src/state-control/fan/ha-state-control-fan-speed.ts
+74 −0 src/state-display/ha-timer-remaining-time.ts
+174 −0 src/state-display/state-display.ts
+7 −60 src/state-summary/state-card-timer.ts
+2 −2 src/state/connection-mixin.ts
+59 −53 src/translations/en.json
+400 −336 yarn.lock
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
"type": "module",
"version": "1.0.0",
"devDependencies": {
"@babel/core": "7.24.7",
"@babel/core": "7.24.9",
"@babel/helper-define-polyfill-provider": "0.6.2",
"@babel/plugin-proposal-decorators": "7.24.7",
"@babel/plugin-transform-runtime": "7.24.7",
"@babel/preset-env": "7.24.7",
"@babel/preset-env": "7.24.8",
"@babel/preset-typescript": "7.24.7",
"@bundle-stats/plugin-webpack-filter": "4.13.3",
"@koa/cors": "5.0.0",
Expand Down Expand Up @@ -52,8 +52,8 @@
"@types/tar": "6.1.13",
"@types/ua-parser-js": "0.7.39",
"@types/webspeechapi": "0.0.29",
"@typescript-eslint/eslint-plugin": "7.15.0",
"@typescript-eslint/parser": "7.15.0",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"@web/dev-server": "0.1.38",
"@web/dev-server-rollup": "0.4.1",
"babel-loader": "9.1.3",
Expand All @@ -67,16 +67,16 @@
"eslint-import-resolver-webpack": "0.13.8",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-lit": "1.14.0",
"eslint-plugin-lit-a11y": "4.1.3",
"eslint-plugin-lit-a11y": "4.1.4",
"eslint-plugin-unused-imports": "4.0.0",
"eslint-plugin-wc": "2.1.0",
"fancy-log": "2.0.0",
"fs-extra": "11.2.0",
"glob": "10.4.3",
"glob": "11.0.0",
"gulp": "5.0.0",
"gulp-json-transform": "0.5.0",
"gulp-rename": "2.0.0",
"gulp-zopfli-green": "6.0.1",
"gulp-zopfli-green": "6.0.2",
"html-minifier-terser": "7.2.0",
"husky": "9.0.11",
"instant-mocha": "1.5.2",
Expand All @@ -91,7 +91,7 @@
"object-hash": "3.0.0",
"open": "10.1.0",
"pinst": "3.0.0",
"prettier": "3.3.2",
"prettier": "3.3.3",
"rollup": "2.79.1",
"rollup-plugin-string": "3.0.0",
"rollup-plugin-terser": "7.0.2",
Expand All @@ -105,7 +105,7 @@
"transform-async-modules-webpack-plugin": "1.1.1",
"ts-lit-plugin": "2.0.2",
"typescript": "5.5.3",
"webpack": "5.92.1",
"webpack": "5.93.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4",
"webpack-manifest-plugin": "5.0.0",
Expand All @@ -114,7 +114,7 @@
"workbox-build": "7.1.1"
},
"dependencies": {
"@babel/runtime": "7.24.7",
"@babel/runtime": "7.24.8",
"@braintree/sanitize-url": "7.0.4",
"@codemirror/autocomplete": "6.17.0",
"@codemirror/commands": "6.6.0",
Expand All @@ -132,12 +132,12 @@
"@formatjs/intl-numberformat": "8.10.3",
"@formatjs/intl-pluralrules": "5.2.14",
"@formatjs/intl-relativetimeformat": "11.2.14",
"@fullcalendar/core": "6.1.11",
"@fullcalendar/daygrid": "6.1.11",
"@fullcalendar/interaction": "6.1.11",
"@fullcalendar/list": "6.1.11",
"@fullcalendar/luxon3": "6.1.11",
"@fullcalendar/timegrid": "6.1.11",
"@fullcalendar/core": "6.1.15",
"@fullcalendar/daygrid": "6.1.15",
"@fullcalendar/interaction": "6.1.15",
"@fullcalendar/list": "6.1.15",
"@fullcalendar/luxon3": "6.1.15",
"@fullcalendar/timegrid": "6.1.15",
"@lezer/highlight": "1.2.0",
"@lit-labs/context": "0.4.1",
"@lit-labs/motion": "1.0.7",
Expand Down Expand Up @@ -177,8 +177,8 @@
"@polymer/paper-tabs": "3.1.0",
"@polymer/polymer": "3.5.1",
"@thomasloven/round-slider": "0.6.0",
"@vaadin/combo-box": "24.4.1",
"@vaadin/vaadin-themable-mixin": "24.4.1",
"@vaadin/combo-box": "24.4.3",
"@vaadin/vaadin-themable-mixin": "24.4.3",
"@vibrant/color": "3.2.1-alpha.1",
"@vibrant/core": "3.2.1-alpha.1",
"@vibrant/quantizer-mmcq": "3.2.1-alpha.1",
Expand Down Expand Up @@ -247,7 +247,7 @@
"lit": "2.8.0",
"clean-css": "5.3.3",
"@lit/reactive-element": "1.6.3",
"@fullcalendar/daygrid": "6.1.11",
"@fullcalendar/daygrid": "6.1.15",
"[email protected]": "patch:sortablejs@npm%3A1.15.2#~/homeassistant-frontend/.yarn/patches/sortablejs-npm-1.15.2-73347ae85a.patch",
"[email protected]": "patch:leaflet-draw@npm%3A1.0.4#./homeassistant-frontend/.yarn/patches/leaflet-draw-npm-1.0.4-0ca0ebcf65.patch"
}
Expand Down
2 changes: 1 addition & 1 deletion src/localize/languages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -172,4 +172,4 @@
}
}
}
}
}
Loading

0 comments on commit 4d5e783

Please sign in to comment.