diff --git a/.github/workflows/cast_deployment.yaml b/.github/workflows/cast_deployment.yaml
index 9733c5ec59..07a8714d92 100644
--- a/.github/workflows/cast_deployment.yaml
+++ b/.github/workflows/cast_deployment.yaml
@@ -21,7 +21,7 @@ jobs:
url: ${{ steps.deploy.outputs.NETLIFY_LIVE_URL || steps.deploy.outputs.NETLIFY_URL }}
steps:
- name: Check out files from GitHub
- uses: actions/checkout@v4.1.3
+ uses: actions/checkout@v4.1.4
with:
ref: dev
@@ -57,7 +57,7 @@ jobs:
url: ${{ steps.deploy.outputs.NETLIFY_LIVE_URL || steps.deploy.outputs.NETLIFY_URL }}
steps:
- name: Check out files from GitHub
- uses: actions/checkout@v4.1.3
+ uses: actions/checkout@v4.1.4
with:
ref: master
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 4097753114..45a490e2b5 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out files from GitHub
- uses: actions/checkout@v4.1.3
+ uses: actions/checkout@v4.1.4
- name: Setup Node
uses: actions/setup-node@v4.0.2
with:
@@ -58,7 +58,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out files from GitHub
- uses: actions/checkout@v4.1.3
+ uses: actions/checkout@v4.1.4
- name: Setup Node
uses: actions/setup-node@v4.0.2
with:
@@ -76,7 +76,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out files from GitHub
- uses: actions/checkout@v4.1.3
+ uses: actions/checkout@v4.1.4
- name: Setup Node
uses: actions/setup-node@v4.0.2
with:
@@ -89,7 +89,7 @@ jobs:
env:
IS_TEST: "true"
- name: Upload bundle stats
- uses: actions/upload-artifact@v4.3.2
+ uses: actions/upload-artifact@v4.3.3
with:
name: frontend-bundle-stats
path: build/stats/*.json
@@ -100,7 +100,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out files from GitHub
- uses: actions/checkout@v4.1.3
+ uses: actions/checkout@v4.1.4
- name: Setup Node
uses: actions/setup-node@v4.0.2
with:
@@ -113,7 +113,7 @@ jobs:
env:
IS_TEST: "true"
- name: Upload bundle stats
- uses: actions/upload-artifact@v4.3.2
+ uses: actions/upload-artifact@v4.3.3
with:
name: supervisor-bundle-stats
path: build/stats/*.json
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index b6d12250e9..0127fa24c9 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -23,7 +23,7 @@ jobs:
steps:
- name: Checkout repository
- uses: actions/checkout@v4.1.3
+ uses: actions/checkout@v4.1.4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
diff --git a/.github/workflows/demo_deployment.yaml b/.github/workflows/demo_deployment.yaml
index 2bf4fb3a27..d514bc0853 100644
--- a/.github/workflows/demo_deployment.yaml
+++ b/.github/workflows/demo_deployment.yaml
@@ -22,7 +22,7 @@ jobs:
url: ${{ steps.deploy.outputs.NETLIFY_LIVE_URL || steps.deploy.outputs.NETLIFY_URL }}
steps:
- name: Check out files from GitHub
- uses: actions/checkout@v4.1.3
+ uses: actions/checkout@v4.1.4
with:
ref: dev
@@ -58,7 +58,7 @@ jobs:
url: ${{ steps.deploy.outputs.NETLIFY_LIVE_URL || steps.deploy.outputs.NETLIFY_URL }}
steps:
- name: Check out files from GitHub
- uses: actions/checkout@v4.1.3
+ uses: actions/checkout@v4.1.4
with:
ref: master
diff --git a/.github/workflows/design_deployment.yaml b/.github/workflows/design_deployment.yaml
index 9708d4f1d4..ebb48c37d6 100644
--- a/.github/workflows/design_deployment.yaml
+++ b/.github/workflows/design_deployment.yaml
@@ -16,7 +16,7 @@ jobs:
url: ${{ steps.deploy.outputs.NETLIFY_LIVE_URL || steps.deploy.outputs.NETLIFY_URL }}
steps:
- name: Check out files from GitHub
- uses: actions/checkout@v4.1.3
+ uses: actions/checkout@v4.1.4
- name: Setup Node
uses: actions/setup-node@v4.0.2
diff --git a/.github/workflows/design_preview.yaml b/.github/workflows/design_preview.yaml
index 3a4817eaa0..54fa5d3df3 100644
--- a/.github/workflows/design_preview.yaml
+++ b/.github/workflows/design_preview.yaml
@@ -21,7 +21,7 @@ jobs:
if: github.repository == 'home-assistant/frontend' && contains(github.event.pull_request.labels.*.name, 'needs design preview')
steps:
- name: Check out files from GitHub
- uses: actions/checkout@v4.1.3
+ uses: actions/checkout@v4.1.4
- name: Setup Node
uses: actions/setup-node@v4.0.2
diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml
index 88e0ed9660..13242f8ef3 100644
--- a/.github/workflows/nightly.yaml
+++ b/.github/workflows/nightly.yaml
@@ -20,7 +20,7 @@ jobs:
contents: write
steps:
- name: Checkout the repository
- uses: actions/checkout@v4.1.3
+ uses: actions/checkout@v4.1.4
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
@@ -57,14 +57,14 @@ jobs:
run: tar -czvf translations.tar.gz translations
- name: Upload build artifacts
- uses: actions/upload-artifact@v4.3.2
+ uses: actions/upload-artifact@v4.3.3
with:
name: wheels
path: dist/home_assistant_frontend*.whl
if-no-files-found: error
- name: Upload translations
- uses: actions/upload-artifact@v4.3.2
+ uses: actions/upload-artifact@v4.3.3
with:
name: translations
path: translations.tar.gz
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index b58d1fb4f5..361f1e1bd3 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -23,7 +23,7 @@ jobs:
contents: write # Required to upload release assets
steps:
- name: Checkout the repository
- uses: actions/checkout@v4.1.3
+ uses: actions/checkout@v4.1.4
- name: Verify version
uses: home-assistant/actions/helpers/verify-version@master
diff --git a/.github/workflows/translations.yaml b/.github/workflows/translations.yaml
index 403b258621..2f930fa7ee 100644
--- a/.github/workflows/translations.yaml
+++ b/.github/workflows/translations.yaml
@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
- uses: actions/checkout@v4.1.3
+ uses: actions/checkout@v4.1.4
- name: Upload Translations
run: |
diff --git a/package.json b/package.json
index 8f633cfade..b0d9e51b8a 100644
--- a/package.json
+++ b/package.json
@@ -141,12 +141,12 @@
"vue": "2.7.16",
"vue2-daterange-picker": "0.6.8",
"weekstart": "2.0.0",
- "workbox-cacheable-response": "7.0.0",
- "workbox-core": "7.0.0",
- "workbox-expiration": "7.0.0",
- "workbox-precaching": "7.0.0",
- "workbox-routing": "7.0.0",
- "workbox-strategies": "7.0.0",
+ "workbox-cacheable-response": "7.1.0",
+ "workbox-core": "7.1.0",
+ "workbox-expiration": "7.1.0",
+ "workbox-precaching": "7.1.0",
+ "workbox-routing": "7.1.0",
+ "workbox-strategies": "7.1.0",
"xss": "1.0.15"
},
"devDependencies": {
@@ -158,9 +158,9 @@
"@babel/preset-typescript": "7.24.1",
"@bundle-stats/plugin-webpack-filter": "4.12.2",
"@koa/cors": "5.0.0",
- "@lokalise/node-api": "12.4.0",
+ "@lokalise/node-api": "12.4.1",
"@octokit/auth-oauth-device": "7.1.1",
- "@octokit/plugin-retry": "7.1.0",
+ "@octokit/plugin-retry": "7.1.1",
"@octokit/rest": "20.1.0",
"@open-wc/dev-server-hmr": "0.1.4",
"@rollup/plugin-babel": "6.0.4",
@@ -245,7 +245,7 @@
"webpack-manifest-plugin": "5.0.0",
"webpack-stats-plugin": "1.1.3",
"webpackbar": "6.0.1",
- "workbox-build": "7.0.0"
+ "workbox-build": "7.1.0"
},
"_comment": "Polymer 3.2 contained a bug, fixed in https://github.com/Polymer/polymer/pull/5569, add as patch",
"resolutions": {
diff --git a/pyproject.toml b/pyproject.toml
index 0d4c30855a..d9646cbb53 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "home-assistant-frontend"
-version = "20240426.0"
+version = "20240429.0"
license = {text = "Apache-2.0"}
description = "The Home Assistant frontend"
readme = "README.md"
diff --git a/src/components/ha-settings-row.ts b/src/components/ha-settings-row.ts
index f8ebeb0870..a516ff6c3b 100644
--- a/src/components/ha-settings-row.ts
+++ b/src/components/ha-settings-row.ts
@@ -8,6 +8,9 @@ export class HaSettingsRow extends LitElement {
@property({ type: Boolean, attribute: "three-line" })
public threeLine = false;
+ @property({ type: Boolean, attribute: "wrap-heading", reflect: true })
+ public wrapHeading = false;
+
protected render(): TemplateResult {
return html`
@@ -51,7 +54,7 @@ export class HaSettingsRow extends LitElement {
.body[three-line] {
min-height: var(--paper-item-body-three-line-min-height, 88px);
}
- .body > * {
+ :host(:not([wrap-heading])) > * {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
diff --git a/src/dialogs/config-flow/show-dialog-config-flow.ts b/src/dialogs/config-flow/show-dialog-config-flow.ts
index cccee3e5de..7be3f218cf 100644
--- a/src/dialogs/config-flow/show-dialog-config-flow.ts
+++ b/src/dialogs/config-flow/show-dialog-config-flow.ts
@@ -52,7 +52,7 @@ export const showConfigFlowDialog = (
? html`
`
- : "";
+ : step.reason;
},
renderShowFormStepHeader(hass, step) {
diff --git a/src/dialogs/config-flow/show-dialog-data-entry-flow.ts b/src/dialogs/config-flow/show-dialog-data-entry-flow.ts
index 3594188455..54caaecbc7 100644
--- a/src/dialogs/config-flow/show-dialog-data-entry-flow.ts
+++ b/src/dialogs/config-flow/show-dialog-data-entry-flow.ts
@@ -34,7 +34,7 @@ export interface FlowConfig {
renderAbortDescription(
hass: HomeAssistant,
step: DataEntryFlowStepAbort
- ): TemplateResult | "";
+ ): TemplateResult | string;
renderShowFormStepHeader(
hass: HomeAssistant,
diff --git a/src/dialogs/config-flow/show-dialog-options-flow.ts b/src/dialogs/config-flow/show-dialog-options-flow.ts
index 491df7e91f..0d3ab72685 100644
--- a/src/dialogs/config-flow/show-dialog-options-flow.ts
+++ b/src/dialogs/config-flow/show-dialog-options-flow.ts
@@ -65,7 +65,7 @@ export const showOptionsFlowDialog = (
.content=${description}
>
`
- : "";
+ : step.reason;
},
renderShowFormStepHeader(hass, step) {
diff --git a/src/dialogs/more-info/controls/more-info-lawn_mower.ts b/src/dialogs/more-info/controls/more-info-lawn_mower.ts
index 349f5e3b3a..309f089971 100644
--- a/src/dialogs/more-info/controls/more-info-lawn_mower.ts
+++ b/src/dialogs/more-info/controls/more-info-lawn_mower.ts
@@ -189,6 +189,7 @@ class MoreInfoLawnMower extends LitElement {
.flex-horizontal {
display: flex;
flex-direction: row;
+ justify-content: space-between;
}
.space-around {
justify-content: space-around;
diff --git a/src/dialogs/more-info/controls/more-info-media_player.ts b/src/dialogs/more-info/controls/more-info-media_player.ts
index e0b88d9866..1cd8c22812 100644
--- a/src/dialogs/more-info/controls/more-info-media_player.ts
+++ b/src/dialogs/more-info/controls/more-info-media_player.ts
@@ -19,6 +19,7 @@ import "../../../components/ha-select";
import "../../../components/ha-slider";
import "../../../components/ha-svg-icon";
import { showMediaBrowserDialog } from "../../../components/media-player/show-media-browser-dialog";
+import { isUnavailableState } from "../../../data/entity";
import {
MediaPickedEvent,
MediaPlayerEntity,
@@ -62,7 +63,8 @@ class MoreInfoMediaPlayer extends LitElement {
`
)}
- ${supportsFeature(stateObj, MediaPlayerEntityFeature.BROWSE_MEDIA)
+ ${!isUnavailableState(stateObj.state) &&
+ supportsFeature(stateObj, MediaPlayerEntityFeature.BROWSE_MEDIA)
? html`
-
+
${VACUUM_COMMANDS.filter((item) =>
item.isVisible(stateObj)
).map(
@@ -327,6 +327,9 @@ class MoreInfoVacuum extends LitElement {
flex-direction: row;
justify-content: space-between;
}
+ .space-around {
+ justify-content: space-around;
+ }
`;
}
}
diff --git a/src/panels/config/cloud/account/cloud-account.ts b/src/panels/config/cloud/account/cloud-account.ts
index 8f11c1b8d2..2d458c9c7f 100644
--- a/src/panels/config/cloud/account/cloud-account.ts
+++ b/src/panels/config/cloud/account/cloud-account.ts
@@ -80,7 +80,7 @@ export class CloudAccount extends SubscribeMixin(LitElement) {
)}
>
-
+
${this.cloudStatus.email.replace(
/(\w{3})[\w.-]+@([\w.]+\w)/,
"$1***@$2"
@@ -118,7 +118,7 @@ export class CloudAccount extends SubscribeMixin(LitElement) {
: ""}
-
+
${this.hass.localize(
"ui.panel.config.cloud.account.connection_status"
)}:
@@ -187,6 +187,7 @@ export class CloudAccount extends SubscribeMixin(LitElement) {
diff --git a/src/panels/config/cloud/account/cloud-remote-pref.ts b/src/panels/config/cloud/account/cloud-remote-pref.ts
index 248eba37c7..246f4a569f 100644
--- a/src/panels/config/cloud/account/cloud-remote-pref.ts
+++ b/src/panels/config/cloud/account/cloud-remote-pref.ts
@@ -7,13 +7,11 @@ import "../../../../components/ha-alert";
import "../../../../components/ha-button";
import "../../../../components/ha-card";
import "../../../../components/ha-expansion-panel";
-import "../../../../components/ha-formfield";
import "../../../../components/ha-radio";
import "../../../../components/ha-settings-row";
import "../../../../components/ha-switch";
// eslint-disable-next-line
import { formatDate } from "../../../../common/datetime/format_date";
-import type { HaRadio } from "../../../../components/ha-radio";
import type { HaSwitch } from "../../../../components/ha-switch";
import {
CloudStatusLoggedIn,
@@ -23,7 +21,6 @@ import {
} from "../../../../data/cloud";
import type { HomeAssistant } from "../../../../types";
import { showToast } from "../../../../util/toast";
-import { showAlertDialog } from "../../../lovelace/custom-card-helpers";
import { showCloudCertificateDialog } from "../dialog-cloud-certificate/show-dialog-cloud-certificate";
@customElement("cloud-remote-pref")
@@ -32,6 +29,8 @@ export class CloudRemotePref extends LitElement {
@property({ attribute: false }) public cloudStatus?: CloudStatusLoggedIn;
+ @property({ type: Boolean }) public narrow = false;
+
@state() private _unmaskedUrl = false;
protected render() {
@@ -177,118 +176,7 @@ export class CloudRemotePref extends LitElement {
"ui.panel.config.cloud.account.remote.security_options"
)}
>
-
-
- ${this.hass.localize(
- "ui.panel.config.cloud.account.remote.strict_connection"
- )}
-
-
- ${this.hass.localize(
- "ui.panel.config.cloud.account.remote.strict_connection_secondary"
- )}
-
-
-
-
-
-
-
-
- ${this.hass.localize(
- "ui.panel.config.cloud.account.remote.strict_connection_option_disabled"
- )}
-
-
- ${this.hass.localize(
- "ui.panel.config.cloud.account.remote.strict_connection_option_disabled_secondary"
- )}
-
-
-
-
-
-
-
-
- ${this.hass.localize(
- "ui.panel.config.cloud.account.remote.strict_connection_option_guard_page"
- )}
-
-
- ${this.hass.localize(
- "ui.panel.config.cloud.account.remote.strict_connection_option_guard_page_secondary"
- )}
-
- ⚠️
- ${this.hass.localize(
- "ui.panel.config.cloud.account.remote.strict_connection_option_guard_page_warning"
- )}
-
-
-
-
-
-
-
-
- ${this.hass.localize(
- "ui.panel.config.cloud.account.remote.strict_connection_option_drop_connection"
- )}
-
-
- ${this.hass.localize(
- "ui.panel.config.cloud.account.remote.strict_connection_option_drop_connection_secondary"
- )}
-
- ⚠️
- ${this.hass.localize(
- "ui.panel.config.cloud.account.remote.strict_connection_option_drop_connection_warning"
- )}
-
-
-
-
-
- ${strict_connection !== "disabled"
- ? html`
-
- ${this.hass.localize(
- "ui.panel.config.cloud.account.remote.strict_connection_link"
- )}
- ${this.hass.localize(
- "ui.panel.config.cloud.account.remote.strict_connection_link_secondary"
- )}
- ${this.hass.localize(
- "ui.panel.config.cloud.account.remote.strict_connection_create_link"
- )}
-
- `
- : nothing}
-
-
-
+
${this.hass.localize(
"ui.panel.config.cloud.account.remote.external_activation"
@@ -305,7 +193,7 @@ export class CloudRemotePref extends LitElement {
>
-
+
${this.hass.localize(
"ui.panel.config.cloud.account.remote.certificate_info"
@@ -379,24 +267,6 @@ export class CloudRemotePref extends LitElement {
}
}
- private async _strictConnectionModeChanged(ev) {
- const toggle = ev.target as HaRadio;
-
- if (ev.target.value === this.cloudStatus?.prefs.strict_connection) {
- return;
- }
-
- try {
- await updateCloudPref(this.hass, {
- strict_connection: ev.target.value,
- });
- fireEvent(this, "ha-refresh-cloud-status");
- } catch (err: any) {
- alert(err.message);
- toggle.checked = !toggle.checked;
- }
- }
-
private async _copyURL(ev): Promise {
const url = ev.currentTarget.url;
await copyToClipboard(url);
@@ -405,45 +275,6 @@ export class CloudRemotePref extends LitElement {
});
}
- private async _createLoginUrl() {
- try {
- const result = await this.hass.callService(
- "cloud",
- "create_temporary_strict_connection_url",
- undefined,
- undefined,
- false,
- true
- );
- showAlertDialog(this, {
- title: this.hass.localize(
- "ui.panel.config.cloud.account.remote.strict_connection_link"
- ),
- text: html`${this.hass.localize(
- "ui.panel.config.cloud.account.remote.strict_connection_link_created_message"
- )}
-
-
-
-
- ${this.hass.localize(
- "ui.panel.config.cloud.account.remote.copy_link"
- )}
-
-
`,
- });
- } catch (err: any) {
- showAlertDialog(this, { text: err.message });
- }
- }
-
static get styles(): CSSResultGroup {
return css`
.preparing {
@@ -494,6 +325,7 @@ export class CloudRemotePref extends LitElement {
}
ha-settings-row {
padding: 0;
+ border-top: none !important;
}
ha-expansion-panel {
--expansion-panel-content-padding: 0 16px;
@@ -527,27 +359,6 @@ export class CloudRemotePref extends LitElement {
color: var(--secondary-text-color);
direction: var(--direction);
}
- ha-formfield {
- margin-left: -12px;
- margin-inline-start: -12px;
- --ha-formfield-align-items: start;
- }
- .strict-connection-container {
- gap: 16px;
- display: flex;
- flex-direction: column;
- }
- .strict-connection-container ha-formfield {
- --ha-formfield-align-items: start;
- }
- .strict-connection-container .primary {
- font-size: 14px;
- margin-top: 12px;
- }
- .strict-connection-container .secondary {
- color: var(--secondary-text-color);
- font-size: 12px;
- }
hr {
border: none;
height: 1px;
diff --git a/src/panels/config/cloud/account/cloud-tts-pref.ts b/src/panels/config/cloud/account/cloud-tts-pref.ts
index fe716b9a5d..4013d56472 100644
--- a/src/panels/config/cloud/account/cloud-tts-pref.ts
+++ b/src/panels/config/cloud/account/cloud-tts-pref.ts
@@ -188,6 +188,7 @@ export class CloudTTSPref extends LitElement {
}
.row > * {
flex: 1;
+ width: 0;
}
.row > *:first-child {
margin-right: 8px;
diff --git a/src/panels/config/repairs/show-dialog-repair-flow.ts b/src/panels/config/repairs/show-dialog-repair-flow.ts
index 5adfd054ef..015b60b2d3 100644
--- a/src/panels/config/repairs/show-dialog-repair-flow.ts
+++ b/src/panels/config/repairs/show-dialog-repair-flow.ts
@@ -64,7 +64,7 @@ export const showRepairsFlowDialog = (
.content=${description}
>
`
- : "";
+ : step.reason;
},
renderShowFormStepHeader(hass, step) {
diff --git a/src/translations/en.json b/src/translations/en.json
index 892d8e6a7f..e6c7dadff1 100644
--- a/src/translations/en.json
+++ b/src/translations/en.json
@@ -2941,7 +2941,7 @@
"event": "[%key:ui::panel::config::automation::editor::triggers::type::homeassistant::event%]",
"sunrise": "Sunrise",
"sunset": "Sunset",
- "offset": "Offset (optional)",
+ "offset": "Offset in seconds or HH:MM:SS (optional)",
"description": {
"picker": "When the sun sets or rises.",
"sets": "When the sun sets{hasDuration, select, \n true { offset by {duration}} \n other {}\n }",
diff --git a/yarn.lock b/yarn.lock
index aa246bad67..beba853a29 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -62,7 +62,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/core@npm:7.24.4, @babel/core@npm:^7.11.1, @babel/core@npm:^7.12.3, @babel/core@npm:^7.13.0":
+"@babel/core@npm:7.24.4, @babel/core@npm:^7.12.3, @babel/core@npm:^7.13.0, @babel/core@npm:^7.24.4":
version: 7.24.4
resolution: "@babel/core@npm:7.24.4"
dependencies:
@@ -2173,10 +2173,10 @@ __metadata:
languageName: node
linkType: hard
-"@lokalise/node-api@npm:12.4.0":
- version: 12.4.0
- resolution: "@lokalise/node-api@npm:12.4.0"
- checksum: 10/5e44b23e7139487961f291dcea4f7082fe86d8b017142890831f0ac83338d7f749565e7f96a628eb0f594d894abd905dfec1c31c140fd07bcf0c120db118ee15
+"@lokalise/node-api@npm:12.4.1":
+ version: 12.4.1
+ resolution: "@lokalise/node-api@npm:12.4.1"
+ checksum: 10/54cf96a759ea0642b5ad13246cc281c2cfa1592d44752e58be996177c48a66038e8f513d509d17db35eeef2e7ad2ac243a375b628a40f36e88ca015ab5f89367
languageName: node
linkType: hard
@@ -3389,16 +3389,16 @@ __metadata:
languageName: node
linkType: hard
-"@octokit/plugin-retry@npm:7.1.0":
- version: 7.1.0
- resolution: "@octokit/plugin-retry@npm:7.1.0"
+"@octokit/plugin-retry@npm:7.1.1":
+ version: 7.1.1
+ resolution: "@octokit/plugin-retry@npm:7.1.1"
dependencies:
"@octokit/request-error": "npm:^6.0.0"
"@octokit/types": "npm:^13.0.0"
bottleneck: "npm:^2.15.3"
peerDependencies:
"@octokit/core": ">=6"
- checksum: 10/c445c76daa37c38fd095a280f28c6e9afbfdaab8290f0ca17253e3553b3fcf55f028ae72c923440e1a06b87e4e04f24d8a5a4976f6a7494d33d368ec4518a7de
+ checksum: 10/ff7d2f0b45e61ff688c213ad28670fceffa8d56603850beabab21cbb79021d91d8bf40cdc2062949eeb6b031c6e5ad39bcbbc40b0caa7924c81d3c90b8fb0843
languageName: node
linkType: hard
@@ -3811,7 +3811,7 @@ __metadata:
languageName: node
linkType: hard
-"@rollup/plugin-node-resolve@npm:15.2.3":
+"@rollup/plugin-node-resolve@npm:15.2.3, @rollup/plugin-node-resolve@npm:^15.2.3":
version: 15.2.3
resolution: "@rollup/plugin-node-resolve@npm:15.2.3"
dependencies:
@@ -3830,22 +3830,6 @@ __metadata:
languageName: node
linkType: hard
-"@rollup/plugin-node-resolve@npm:^11.2.1":
- version: 11.2.1
- resolution: "@rollup/plugin-node-resolve@npm:11.2.1"
- dependencies:
- "@rollup/pluginutils": "npm:^3.1.0"
- "@types/resolve": "npm:1.17.1"
- builtin-modules: "npm:^3.1.0"
- deepmerge: "npm:^4.2.2"
- is-module: "npm:^1.0.0"
- resolve: "npm:^1.19.0"
- peerDependencies:
- rollup: ^1.20.0||^2.0.0
- checksum: 10/8007f6a01d709da1078df19bb5ecb1339f43042786a68d98645e0a4c1765064d1500a1b86b65e12de6ae35d9b1ae693e22e63b3ebb69a627ce81172ea21cc228
- languageName: node
- linkType: hard
-
"@rollup/plugin-node-resolve@npm:^13.0.4":
version: 13.3.0
resolution: "@rollup/plugin-node-resolve@npm:13.3.0"
@@ -3889,6 +3873,22 @@ __metadata:
languageName: node
linkType: hard
+"@rollup/plugin-terser@npm:^0.4.3":
+ version: 0.4.4
+ resolution: "@rollup/plugin-terser@npm:0.4.4"
+ dependencies:
+ serialize-javascript: "npm:^6.0.1"
+ smob: "npm:^1.0.0"
+ terser: "npm:^5.17.4"
+ peerDependencies:
+ rollup: ^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+ checksum: 10/a5e066ddea55fc8c32188bc8b484cca619713516f10e3a06801881ec98bf37459ca24e5fe8711f93a5fa7f26a6e9132a47bc1a61c01e0b513dfd79a96cdc6eb7
+ languageName: node
+ linkType: hard
+
"@rollup/pluginutils@npm:^3.1.0":
version: 3.1.0
resolution: "@rollup/pluginutils@npm:3.1.0"
@@ -6246,7 +6246,7 @@ __metadata:
languageName: node
linkType: hard
-"builtin-modules@npm:^3.1.0, builtin-modules@npm:^3.3.0":
+"builtin-modules@npm:^3.3.0":
version: 3.3.0
resolution: "builtin-modules@npm:3.3.0"
checksum: 10/62e063ab40c0c1efccbfa9ffa31873e4f9d57408cb396a2649981a0ecbce56aabc93c28feaccbc5658c95aab2703ad1d11980e62ec2e5e72637404e1eb60f39e
@@ -9592,7 +9592,7 @@ __metadata:
"@lit-labs/motion": "npm:1.0.7"
"@lit-labs/observers": "npm:2.0.2"
"@lit-labs/virtualizer": "npm:2.0.12"
- "@lokalise/node-api": "npm:12.4.0"
+ "@lokalise/node-api": "npm:12.4.1"
"@lrnwebcomponents/simple-tooltip": "npm:8.0.2"
"@material/chips": "npm:=14.0.0-canary.53b3cad2f.0"
"@material/data-table": "npm:=14.0.0-canary.53b3cad2f.0"
@@ -9624,7 +9624,7 @@ __metadata:
"@mdi/js": "npm:7.4.47"
"@mdi/svg": "npm:7.4.47"
"@octokit/auth-oauth-device": "npm:7.1.1"
- "@octokit/plugin-retry": "npm:7.1.0"
+ "@octokit/plugin-retry": "npm:7.1.1"
"@octokit/rest": "npm:20.1.0"
"@open-wc/dev-server-hmr": "npm:0.1.4"
"@polymer/paper-item": "npm:3.0.1"
@@ -9766,13 +9766,13 @@ __metadata:
webpack-stats-plugin: "npm:1.1.3"
webpackbar: "npm:6.0.1"
weekstart: "npm:2.0.0"
- workbox-build: "npm:7.0.0"
- workbox-cacheable-response: "npm:7.0.0"
- workbox-core: "npm:7.0.0"
- workbox-expiration: "npm:7.0.0"
- workbox-precaching: "npm:7.0.0"
- workbox-routing: "npm:7.0.0"
- workbox-strategies: "npm:7.0.0"
+ workbox-build: "npm:7.1.0"
+ workbox-cacheable-response: "npm:7.1.0"
+ workbox-core: "npm:7.1.0"
+ workbox-expiration: "npm:7.1.0"
+ workbox-precaching: "npm:7.1.0"
+ workbox-routing: "npm:7.1.0"
+ workbox-strategies: "npm:7.1.0"
xss: "npm:1.0.15"
languageName: unknown
linkType: soft
@@ -13921,7 +13921,7 @@ __metadata:
languageName: node
linkType: hard
-"rollup-plugin-terser@npm:7.0.2, rollup-plugin-terser@npm:^7.0.0":
+"rollup-plugin-terser@npm:7.0.2":
version: 7.0.2
resolution: "rollup-plugin-terser@npm:7.0.2"
dependencies:
@@ -14410,6 +14410,13 @@ __metadata:
languageName: node
linkType: hard
+"smob@npm:^1.0.0":
+ version: 1.5.0
+ resolution: "smob@npm:1.5.0"
+ checksum: 10/a1ea453bcea89989062626ea30a1fcb42c62e96255619c8641ffa1d7ab42baf415975c67c718127036901b9e487d8bf4c46219e50cec54295412c1227700b8fe
+ languageName: node
+ linkType: hard
+
"snapdragon-node@npm:^2.0.1":
version: 2.1.1
resolution: "snapdragon-node@npm:2.1.1"
@@ -15194,9 +15201,9 @@ __metadata:
languageName: node
linkType: hard
-"terser@npm:^5.0.0, terser@npm:^5.15.1, terser@npm:^5.26.0":
- version: 5.30.3
- resolution: "terser@npm:5.30.3"
+"terser@npm:^5.0.0, terser@npm:^5.15.1, terser@npm:^5.17.4, terser@npm:^5.26.0":
+ version: 5.30.4
+ resolution: "terser@npm:5.30.4"
dependencies:
"@jridgewell/source-map": "npm:^0.3.3"
acorn: "npm:^8.8.2"
@@ -15204,7 +15211,7 @@ __metadata:
source-map-support: "npm:~0.5.20"
bin:
terser: bin/terser
- checksum: 10/f4ee378065a327c85472f351ac232fa47ec84d4f15df7ec58c044b41e3c063cf11aaedd90dcfe9c7f2a6ef01d4aab23deb61622301170dc77d0a8b6a6a83cf5e
+ checksum: 10/79459106281fccb2ff4243ba1553e4aa67a71b336bb8c091b131bb26347fcf03791c6abf6870bd17fe4a210256e08910207cf5733c0d6ba840289e67d5aa84d3
languageName: node
linkType: hard
@@ -16578,36 +16585,37 @@ __metadata:
languageName: node
linkType: hard
-"workbox-background-sync@npm:7.0.0":
- version: 7.0.0
- resolution: "workbox-background-sync@npm:7.0.0"
+"workbox-background-sync@npm:7.1.0":
+ version: 7.1.0
+ resolution: "workbox-background-sync@npm:7.1.0"
dependencies:
idb: "npm:^7.0.1"
- workbox-core: "npm:7.0.0"
- checksum: 10/41f89cd970c69bebe1ac648485c89f033ccd116f8140696de5f5489f2138e67ccc30ce33158025b8e312c49ad390f80eb8e372f9c569f5d6f35ab1e6185c2d74
+ workbox-core: "npm:7.1.0"
+ checksum: 10/0a303af41a02703ecd962c9a003eebd437e4373a468f3ac4ab0b7969a6849bc98a51f1b48915423dee2f5315d8ae34407465aa3a609ea683499043d1a9b44366
languageName: node
linkType: hard
-"workbox-broadcast-update@npm:7.0.0":
- version: 7.0.0
- resolution: "workbox-broadcast-update@npm:7.0.0"
+"workbox-broadcast-update@npm:7.1.0":
+ version: 7.1.0
+ resolution: "workbox-broadcast-update@npm:7.1.0"
dependencies:
- workbox-core: "npm:7.0.0"
- checksum: 10/e6110207465c574327dc89cbedad90795093e181341e2b093141a7171c46d2d4bb5862ba2a3a1e0c753e359f4462bf9929ce911c2082fe566f2551da295abf68
+ workbox-core: "npm:7.1.0"
+ checksum: 10/8dd87c05b14c0e7f03711d8a189949d5b16a33c53fc0d252569ba4758e450baca2d1aac45628b4210532c930176b1796a2a917be51000289001e401bdc5d3915
languageName: node
linkType: hard
-"workbox-build@npm:7.0.0":
- version: 7.0.0
- resolution: "workbox-build@npm:7.0.0"
+"workbox-build@npm:7.1.0":
+ version: 7.1.0
+ resolution: "workbox-build@npm:7.1.0"
dependencies:
"@apideck/better-ajv-errors": "npm:^0.3.1"
- "@babel/core": "npm:^7.11.1"
+ "@babel/core": "npm:^7.24.4"
"@babel/preset-env": "npm:^7.11.0"
"@babel/runtime": "npm:^7.11.2"
"@rollup/plugin-babel": "npm:^5.2.0"
- "@rollup/plugin-node-resolve": "npm:^11.2.1"
+ "@rollup/plugin-node-resolve": "npm:^15.2.3"
"@rollup/plugin-replace": "npm:^2.4.1"
+ "@rollup/plugin-terser": "npm:^0.4.3"
"@surma/rollup-plugin-off-main-thread": "npm:^2.2.3"
ajv: "npm:^8.6.0"
common-tags: "npm:^1.8.0"
@@ -16617,154 +16625,153 @@ __metadata:
lodash: "npm:^4.17.20"
pretty-bytes: "npm:^5.3.0"
rollup: "npm:^2.43.1"
- rollup-plugin-terser: "npm:^7.0.0"
source-map: "npm:^0.8.0-beta.0"
stringify-object: "npm:^3.3.0"
strip-comments: "npm:^2.0.1"
tempy: "npm:^0.6.0"
upath: "npm:^1.2.0"
- workbox-background-sync: "npm:7.0.0"
- workbox-broadcast-update: "npm:7.0.0"
- workbox-cacheable-response: "npm:7.0.0"
- workbox-core: "npm:7.0.0"
- workbox-expiration: "npm:7.0.0"
- workbox-google-analytics: "npm:7.0.0"
- workbox-navigation-preload: "npm:7.0.0"
- workbox-precaching: "npm:7.0.0"
- workbox-range-requests: "npm:7.0.0"
- workbox-recipes: "npm:7.0.0"
- workbox-routing: "npm:7.0.0"
- workbox-strategies: "npm:7.0.0"
- workbox-streams: "npm:7.0.0"
- workbox-sw: "npm:7.0.0"
- workbox-window: "npm:7.0.0"
- checksum: 10/b7b19cb27053e10de36c49fa90fa3f10e027184ea84d6b96d998120e3c801b123de2f7a0b33358ff7a1390cc729e51c6f0b25ea8c7b2504792cd7585aef9d507
+ workbox-background-sync: "npm:7.1.0"
+ workbox-broadcast-update: "npm:7.1.0"
+ workbox-cacheable-response: "npm:7.1.0"
+ workbox-core: "npm:7.1.0"
+ workbox-expiration: "npm:7.1.0"
+ workbox-google-analytics: "npm:7.1.0"
+ workbox-navigation-preload: "npm:7.1.0"
+ workbox-precaching: "npm:7.1.0"
+ workbox-range-requests: "npm:7.1.0"
+ workbox-recipes: "npm:7.1.0"
+ workbox-routing: "npm:7.1.0"
+ workbox-strategies: "npm:7.1.0"
+ workbox-streams: "npm:7.1.0"
+ workbox-sw: "npm:7.1.0"
+ workbox-window: "npm:7.1.0"
+ checksum: 10/6d2086899e65f7728fe3c2cc7d14dbc18bec2ae8c2e1e681f552e0162b8c138b2c2a235ddcf820b3b966cb06b60319fcaa9eb1831f35f1fab1da77fa4238dcbd
languageName: node
linkType: hard
-"workbox-cacheable-response@npm:7.0.0":
- version: 7.0.0
- resolution: "workbox-cacheable-response@npm:7.0.0"
+"workbox-cacheable-response@npm:7.1.0":
+ version: 7.1.0
+ resolution: "workbox-cacheable-response@npm:7.1.0"
dependencies:
- workbox-core: "npm:7.0.0"
- checksum: 10/b18de42a55802f18ecb7d08c6f3dac5f18cded64f36bb74b00eceb01199d2f8362c96d76ee12e75381fb51a06d705d901e3985c24017dc3d3e3fc9fc36282e51
+ workbox-core: "npm:7.1.0"
+ checksum: 10/1eb294765256d5010325c702208b8f621ad59a0323981bdd8d9d991b9ab7888f39f9a051f90ba583840168cd3252852511666ddc3db64f20f91c97cbea159796
languageName: node
linkType: hard
-"workbox-core@npm:7.0.0":
- version: 7.0.0
- resolution: "workbox-core@npm:7.0.0"
- checksum: 10/680c65e926517a6cd7b515243b9a33a5f4cdc45de31e060fbdc89e28f79b10a2fa211576802a29790cd37fa8a801f3fccfb9cbe371acaa8095c858c9afefc7e6
+"workbox-core@npm:7.1.0":
+ version: 7.1.0
+ resolution: "workbox-core@npm:7.1.0"
+ checksum: 10/b890e0e257c12d3a818eee9dabdfdc8d7d228b89f9734f7612f14e664ca5414c511778d5aef5159248db4c6c161587cff6d2332f0543e3628a1e0cd5a1f0b3ac
languageName: node
linkType: hard
-"workbox-expiration@npm:7.0.0":
- version: 7.0.0
- resolution: "workbox-expiration@npm:7.0.0"
+"workbox-expiration@npm:7.1.0":
+ version: 7.1.0
+ resolution: "workbox-expiration@npm:7.1.0"
dependencies:
idb: "npm:^7.0.1"
- workbox-core: "npm:7.0.0"
- checksum: 10/a9b23c7c76cbabe8f04567e603428db939cb169cf40c1e5ba1c5a1eb966f7b8a4d0182dffdd3d77917b5edca966be0d6e347b7eff274292256fe6ea9a40fa754
+ workbox-core: "npm:7.1.0"
+ checksum: 10/45c7a27b217355fc30929482625c43cbfa04c914162a26b92c7e91fcb3a20e9982b50026bf4bb37382a320e1426818e3726b999dce1c8c08d2aa330eee569308
languageName: node
linkType: hard
-"workbox-google-analytics@npm:7.0.0":
- version: 7.0.0
- resolution: "workbox-google-analytics@npm:7.0.0"
+"workbox-google-analytics@npm:7.1.0":
+ version: 7.1.0
+ resolution: "workbox-google-analytics@npm:7.1.0"
dependencies:
- workbox-background-sync: "npm:7.0.0"
- workbox-core: "npm:7.0.0"
- workbox-routing: "npm:7.0.0"
- workbox-strategies: "npm:7.0.0"
- checksum: 10/e66b390a86b6b9e872e004207c2c920629b45a1be396ec80f9a190986a4e8eaff69bd002f266bd907d0ab7a16cf2b1a8dc3719b0d2bb147640afb6eed795e0d3
+ workbox-background-sync: "npm:7.1.0"
+ workbox-core: "npm:7.1.0"
+ workbox-routing: "npm:7.1.0"
+ workbox-strategies: "npm:7.1.0"
+ checksum: 10/e3652b7f37306a01bcb819ab48799ad3e71362919a31dcbaa186bedb2509b0107d9bc525ca97f287a41095a339a1fb664de4d31af40dfd2ddec9a9fac7b1b75a
languageName: node
linkType: hard
-"workbox-navigation-preload@npm:7.0.0":
- version: 7.0.0
- resolution: "workbox-navigation-preload@npm:7.0.0"
+"workbox-navigation-preload@npm:7.1.0":
+ version: 7.1.0
+ resolution: "workbox-navigation-preload@npm:7.1.0"
dependencies:
- workbox-core: "npm:7.0.0"
- checksum: 10/69bd82c12adabf7a210a3a9d8ce01082ef7276521ba375e0455ba3c17cf42b101783f0ec2af4ab0191989b0ea118794e0c8ebe3800abe806142ac7fef0674ac5
+ workbox-core: "npm:7.1.0"
+ checksum: 10/e4a2e40f1292b1a5e70c7efe69d280635b211c98577ef88f3941b4627e592bb5b21aae262da74636f06ea1fc61065e3002f41cff12f25b05de0259e2700b6ca8
languageName: node
linkType: hard
-"workbox-precaching@npm:7.0.0":
- version: 7.0.0
- resolution: "workbox-precaching@npm:7.0.0"
+"workbox-precaching@npm:7.1.0":
+ version: 7.1.0
+ resolution: "workbox-precaching@npm:7.1.0"
dependencies:
- workbox-core: "npm:7.0.0"
- workbox-routing: "npm:7.0.0"
- workbox-strategies: "npm:7.0.0"
- checksum: 10/8882d5ba888b08aba5e82656b26cd2f293c5adbb858bdff5e17cb4bf1823063cf51d16d3d6640716de96f11cf458f8aaf33b5ffef1ef07d327df8680711bf02e
+ workbox-core: "npm:7.1.0"
+ workbox-routing: "npm:7.1.0"
+ workbox-strategies: "npm:7.1.0"
+ checksum: 10/4f91a1cb1fbc1af1f467e3aa4f1a315465a7537ea42d3fbc3f85da342b10085a64736e80de42611622b83650c422b8770a1fc7fb5008a75abfc07a8c1393e049
languageName: node
linkType: hard
-"workbox-range-requests@npm:7.0.0":
- version: 7.0.0
- resolution: "workbox-range-requests@npm:7.0.0"
+"workbox-range-requests@npm:7.1.0":
+ version: 7.1.0
+ resolution: "workbox-range-requests@npm:7.1.0"
dependencies:
- workbox-core: "npm:7.0.0"
- checksum: 10/8cb991173df19f01f00aa6fee901946d73cdaefb7fef74fda99e53cdfeb0400efebba152f36ba02048af605464b725c743d306ec6e244b1bf6d1fb4df29a284f
+ workbox-core: "npm:7.1.0"
+ checksum: 10/a92d9c28a1c033a4d9e8a958613f2d44b374ef6f4f7609bf8f574ae5fe41c0800b251fb17f8ca7cd3ebc3c53cdbc22fe5a4c5f0afabd63a5960cbe4333dbbf2a
languageName: node
linkType: hard
-"workbox-recipes@npm:7.0.0":
- version: 7.0.0
- resolution: "workbox-recipes@npm:7.0.0"
+"workbox-recipes@npm:7.1.0":
+ version: 7.1.0
+ resolution: "workbox-recipes@npm:7.1.0"
dependencies:
- workbox-cacheable-response: "npm:7.0.0"
- workbox-core: "npm:7.0.0"
- workbox-expiration: "npm:7.0.0"
- workbox-precaching: "npm:7.0.0"
- workbox-routing: "npm:7.0.0"
- workbox-strategies: "npm:7.0.0"
- checksum: 10/efb84b7eec97cd8423b33cad7d561f7c05db46fbbcdb175f3095e8efe839f5323c7af3fcd784b802fdcc7bf5e33648f95159f5462200884f37ae6aa66498e086
+ workbox-cacheable-response: "npm:7.1.0"
+ workbox-core: "npm:7.1.0"
+ workbox-expiration: "npm:7.1.0"
+ workbox-precaching: "npm:7.1.0"
+ workbox-routing: "npm:7.1.0"
+ workbox-strategies: "npm:7.1.0"
+ checksum: 10/371daf94bc418e93038f26b677fdd50f1ae3f66937282dcfa7a67fdba3d871be22de3dc8b6192d125875df8e7ba56d110bedf82d4180380dd377ddc38655ea5a
languageName: node
linkType: hard
-"workbox-routing@npm:7.0.0":
- version: 7.0.0
- resolution: "workbox-routing@npm:7.0.0"
+"workbox-routing@npm:7.1.0":
+ version: 7.1.0
+ resolution: "workbox-routing@npm:7.1.0"
dependencies:
- workbox-core: "npm:7.0.0"
- checksum: 10/294c4b0f136e39c44678caa736195bd99bf93e55ba3605d0a880e36e7ffc9a4b6be36c2c37bca3ee1f905615641167d5b2a0eab742f46b94536f2c5eaac0e832
+ workbox-core: "npm:7.1.0"
+ checksum: 10/3598d65801ae6fb1e05512aff1cc3a642c1e3beace248349c6401f678033433ec3083ea0849a28665f0bb11e2493e9e66b0d066ee5de59a84f70baa3a59d841c
languageName: node
linkType: hard
-"workbox-strategies@npm:7.0.0":
- version: 7.0.0
- resolution: "workbox-strategies@npm:7.0.0"
+"workbox-strategies@npm:7.1.0":
+ version: 7.1.0
+ resolution: "workbox-strategies@npm:7.1.0"
dependencies:
- workbox-core: "npm:7.0.0"
- checksum: 10/7d7dbe9dff54c22e01d01238dbf0b3ba259b85c08cbd8b617b9f5104efef948b760848fcf36385d26fd651a2fe57c4faa3d6a4fc2739e05fc684da0a7eb2197a
+ workbox-core: "npm:7.1.0"
+ checksum: 10/52734ecce926ba6c135b5c7cb31906e40ad6bc767c77d45e74414b8adbb980f8a81bc1253af64750ce22202d0f1c4f01161785829cfb7bcb3f59408da9130555
languageName: node
linkType: hard
-"workbox-streams@npm:7.0.0":
- version: 7.0.0
- resolution: "workbox-streams@npm:7.0.0"
+"workbox-streams@npm:7.1.0":
+ version: 7.1.0
+ resolution: "workbox-streams@npm:7.1.0"
dependencies:
- workbox-core: "npm:7.0.0"
- workbox-routing: "npm:7.0.0"
- checksum: 10/a11a134536e21a04d29dd2b0da8a79524ae27c993c98c63db8c6ddf49449a2f9d4d09766c6351cca08538b713e837e7d3ddf93842fd15eea3ecab75bc674cdf2
+ workbox-core: "npm:7.1.0"
+ workbox-routing: "npm:7.1.0"
+ checksum: 10/759011add716b69be2fc07f847476de6b299b451201e26861529156a8da9a145a9c10b5408f28937142dd82b796e08fdc0f557a7560ff4a9e1ec6affae1d1efb
languageName: node
linkType: hard
-"workbox-sw@npm:7.0.0":
- version: 7.0.0
- resolution: "workbox-sw@npm:7.0.0"
- checksum: 10/2b34da7efad8788e024bb22b25293459a9b0adc19fe185c3d155a4956f67ccdd35829a88b82436b4afe956a99c0ac934e5624a1469a762a53b522c2f32329d34
+"workbox-sw@npm:7.1.0":
+ version: 7.1.0
+ resolution: "workbox-sw@npm:7.1.0"
+ checksum: 10/ece8081e41a45e2e42e0be597e5a2a8be8aa25ebf16a496599a76d4a044fc922e0b40d3fcb9c82682db1911b0d6e51e761593922c90f40d11d7b06f7a4b773c7
languageName: node
linkType: hard
-"workbox-window@npm:7.0.0":
- version: 7.0.0
- resolution: "workbox-window@npm:7.0.0"
+"workbox-window@npm:7.1.0":
+ version: 7.1.0
+ resolution: "workbox-window@npm:7.1.0"
dependencies:
"@types/trusted-types": "npm:^2.0.2"
- workbox-core: "npm:7.0.0"
- checksum: 10/5511ed9b86602ee6999233fc09ab9da298b7d62dbf865737c920d7f768877f8f9031896fad413f9b34f46ed2db58e0967b66b08cd78cf2f70bd7f734e7cac324
+ workbox-core: "npm:7.1.0"
+ checksum: 10/2706c55b81857966c28087a2b0ef40b7791e1bd441b880b7525b7e1b4834ae89c4f1bcfdb07cc155487a85f7c566007e1f9edf65539d7f4a52e2ceee48f547b5
languageName: node
linkType: hard