mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-24 17:56:46 +00:00
20240902.0 (#21857)
* Update dependency @bundle-stats/plugin-webpack-filter to v4.15.0 (#21837) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency marked to v14.1.0 (#21829) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Bump actions/upload-artifact from 4.3.6 to 4.4.0 (#21850) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.6 to 4.4.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.3.6...v4.4.0) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Add padding to no info badge (#21844) * Add padding to no info badge * Update src/panels/lovelace/badges/hui-entity-badge.ts Co-authored-by: Paul Bottein <paul.bottein@gmail.com> --------- Co-authored-by: Paul Bottein <paul.bottein@gmail.com> * Fix section not displayed when empty and string config (#21852) * Move edit mode actions next to section block (#21840) * Fix rendering of alerts in markdown when not breaking (#21856) * Perform action on every entity (#21845) * Bumped version to 20240902.0 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Simon Lamon <32477463+silamon@users.noreply.github.com> Co-authored-by: Joakim Sørensen <ludeeus@ludeeus.dev>
This commit is contained in:
parent
22de449dda
commit
d9ce20992c
4
.github/workflows/ci.yaml
vendored
4
.github/workflows/ci.yaml
vendored
@ -89,7 +89,7 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
IS_TEST: "true"
|
IS_TEST: "true"
|
||||||
- name: Upload bundle stats
|
- name: Upload bundle stats
|
||||||
uses: actions/upload-artifact@v4.3.6
|
uses: actions/upload-artifact@v4.4.0
|
||||||
with:
|
with:
|
||||||
name: frontend-bundle-stats
|
name: frontend-bundle-stats
|
||||||
path: build/stats/*.json
|
path: build/stats/*.json
|
||||||
@ -113,7 +113,7 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
IS_TEST: "true"
|
IS_TEST: "true"
|
||||||
- name: Upload bundle stats
|
- name: Upload bundle stats
|
||||||
uses: actions/upload-artifact@v4.3.6
|
uses: actions/upload-artifact@v4.4.0
|
||||||
with:
|
with:
|
||||||
name: supervisor-bundle-stats
|
name: supervisor-bundle-stats
|
||||||
path: build/stats/*.json
|
path: build/stats/*.json
|
||||||
|
4
.github/workflows/nightly.yaml
vendored
4
.github/workflows/nightly.yaml
vendored
@ -57,14 +57,14 @@ jobs:
|
|||||||
run: tar -czvf translations.tar.gz translations
|
run: tar -czvf translations.tar.gz translations
|
||||||
|
|
||||||
- name: Upload build artifacts
|
- name: Upload build artifacts
|
||||||
uses: actions/upload-artifact@v4.3.6
|
uses: actions/upload-artifact@v4.4.0
|
||||||
with:
|
with:
|
||||||
name: wheels
|
name: wheels
|
||||||
path: dist/home_assistant_frontend*.whl
|
path: dist/home_assistant_frontend*.whl
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
- name: Upload translations
|
- name: Upload translations
|
||||||
uses: actions/upload-artifact@v4.3.6
|
uses: actions/upload-artifact@v4.4.0
|
||||||
with:
|
with:
|
||||||
name: translations
|
name: translations
|
||||||
path: translations.tar.gz
|
path: translations.tar.gz
|
||||||
|
3
gallery/src/pages/misc/ha-markdown.markdown
Normal file
3
gallery/src/pages/misc/ha-markdown.markdown
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
title: Markdown
|
||||||
|
---
|
93
gallery/src/pages/misc/ha-markdown.ts
Normal file
93
gallery/src/pages/misc/ha-markdown.ts
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
import { css, html, LitElement } from "lit";
|
||||||
|
import "../../../../src/components/ha-card";
|
||||||
|
import "../../../../src/components/ha-markdown";
|
||||||
|
|
||||||
|
import { customElement } from "lit/decorators";
|
||||||
|
|
||||||
|
interface MarkdownContent {
|
||||||
|
content: string;
|
||||||
|
breaks: boolean;
|
||||||
|
allowSvg: boolean;
|
||||||
|
lazyImages: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
const mdContentwithDefaults = (md: Partial<MarkdownContent>) =>
|
||||||
|
({
|
||||||
|
breaks: false,
|
||||||
|
allowSvg: false,
|
||||||
|
lazyImages: false,
|
||||||
|
...md,
|
||||||
|
}) as MarkdownContent;
|
||||||
|
|
||||||
|
const generateContent = (md) => `
|
||||||
|
\`\`\`json
|
||||||
|
${JSON.stringify({ ...md, content: undefined })}
|
||||||
|
\`\`\`
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
${md.content}
|
||||||
|
`;
|
||||||
|
|
||||||
|
const markdownContents: MarkdownContent[] = [
|
||||||
|
mdContentwithDefaults({
|
||||||
|
content: "_Hello_ **there** 👋, ~~nice~~ of you ||to|| show up.",
|
||||||
|
}),
|
||||||
|
...[true, false].map((breaks) =>
|
||||||
|
mdContentwithDefaults({
|
||||||
|
breaks,
|
||||||
|
content: `
|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
> [!TIP]
|
||||||
|
> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer dictum quis ante eu eleifend. Integer sed [consectetur est, nec elementum magna](#). Fusce lobortis lectus ac rutrum tincidunt. Quisque suscipit gravida ante, in convallis risus vulputate non.
|
||||||
|
|
||||||
|
key | description
|
||||||
|
-- | --
|
||||||
|
lorem | ipsum
|
||||||
|
|
||||||
|
- list item 1
|
||||||
|
- list item 2
|
||||||
|
|
||||||
|
|
||||||
|
`,
|
||||||
|
})
|
||||||
|
),
|
||||||
|
];
|
||||||
|
|
||||||
|
@customElement("demo-misc-ha-markdown")
|
||||||
|
export class DemoMiscMarkdown extends LitElement {
|
||||||
|
protected render() {
|
||||||
|
return html`
|
||||||
|
<div class="container">
|
||||||
|
${markdownContents.map(
|
||||||
|
(md) =>
|
||||||
|
html`<ha-card>
|
||||||
|
<ha-markdown
|
||||||
|
.content=${generateContent(md)}
|
||||||
|
.breaks=${md.breaks}
|
||||||
|
.allowSvg=${md.allowSvg}
|
||||||
|
.lazyImages=${md.lazyImages}
|
||||||
|
></ha-markdown>
|
||||||
|
</ha-card>`
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
static get styles() {
|
||||||
|
return css`
|
||||||
|
ha-card {
|
||||||
|
margin: 12px;
|
||||||
|
padding: 12px;
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
interface HTMLElementTagNameMap {
|
||||||
|
"demo-misc-ha-markdown": DemoMiscMarkdown;
|
||||||
|
}
|
||||||
|
}
|
@ -118,7 +118,7 @@
|
|||||||
"leaflet-draw": "1.0.4",
|
"leaflet-draw": "1.0.4",
|
||||||
"lit": "2.8.0",
|
"lit": "2.8.0",
|
||||||
"luxon": "3.5.0",
|
"luxon": "3.5.0",
|
||||||
"marked": "14.0.0",
|
"marked": "14.1.0",
|
||||||
"memoize-one": "6.0.0",
|
"memoize-one": "6.0.0",
|
||||||
"node-vibrant": "3.2.1-alpha.1",
|
"node-vibrant": "3.2.1-alpha.1",
|
||||||
"proxy-polyfill": "0.3.2",
|
"proxy-polyfill": "0.3.2",
|
||||||
@ -155,7 +155,7 @@
|
|||||||
"@babel/plugin-transform-runtime": "7.25.4",
|
"@babel/plugin-transform-runtime": "7.25.4",
|
||||||
"@babel/preset-env": "7.25.4",
|
"@babel/preset-env": "7.25.4",
|
||||||
"@babel/preset-typescript": "7.24.7",
|
"@babel/preset-typescript": "7.24.7",
|
||||||
"@bundle-stats/plugin-webpack-filter": "4.14.2",
|
"@bundle-stats/plugin-webpack-filter": "4.15.0",
|
||||||
"@koa/cors": "5.0.0",
|
"@koa/cors": "5.0.0",
|
||||||
"@lokalise/node-api": "12.7.0",
|
"@lokalise/node-api": "12.7.0",
|
||||||
"@octokit/auth-oauth-device": "7.1.1",
|
"@octokit/auth-oauth-device": "7.1.1",
|
||||||
|
@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "home-assistant-frontend"
|
name = "home-assistant-frontend"
|
||||||
version = "20240829.0"
|
version = "20240902.0"
|
||||||
license = {text = "Apache-2.0"}
|
license = {text = "Apache-2.0"}
|
||||||
description = "The Home Assistant frontend"
|
description = "The Home Assistant frontend"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
@ -96,7 +96,25 @@ class HaMarkdownElement extends ReactiveElement {
|
|||||||
|
|
||||||
haAlertNode.append(
|
haAlertNode.append(
|
||||||
...Array.from(node.childNodes)
|
...Array.from(node.childNodes)
|
||||||
.map((child) => Array.from(child.childNodes))
|
.map((child) => {
|
||||||
|
const arr = Array.from(child.childNodes);
|
||||||
|
if (!this.breaks && arr.length) {
|
||||||
|
// When we are not breaking, the first line of the blockquote is not considered,
|
||||||
|
// so we need to adjust the first child text content
|
||||||
|
const firstChild = arr[0];
|
||||||
|
if (
|
||||||
|
firstChild.nodeType === Node.TEXT_NODE &&
|
||||||
|
firstChild.textContent === gitHubAlertMatch.input &&
|
||||||
|
firstChild.textContent?.includes("\n")
|
||||||
|
) {
|
||||||
|
firstChild.textContent = firstChild.textContent
|
||||||
|
.split("\n")
|
||||||
|
.slice(1)
|
||||||
|
.join("\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return arr;
|
||||||
|
})
|
||||||
.reduce((acc, val) => acc.concat(val), [])
|
.reduce((acc, val) => acc.concat(val), [])
|
||||||
.filter(
|
.filter(
|
||||||
(childNode) =>
|
(childNode) =>
|
||||||
|
@ -127,6 +127,12 @@ const tryDescribeAction = <T extends ActionType>(
|
|||||||
targets.push(
|
targets.push(
|
||||||
computeEntityRegistryName(hass, entityReg) || targetThing
|
computeEntityRegistryName(hass, entityReg) || targetThing
|
||||||
);
|
);
|
||||||
|
} else if (targetThing === "all") {
|
||||||
|
targets.push(
|
||||||
|
hass.localize(
|
||||||
|
`${actionTranslationBaseKey}.service.description.target_every_entity`
|
||||||
|
)
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
targets.push(
|
targets.push(
|
||||||
hass.localize(
|
hass.localize(
|
||||||
|
@ -351,7 +351,7 @@ export class HuiEntityBadge extends LitElement implements LovelaceBadge {
|
|||||||
.badge.no-info {
|
.badge.no-info {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
.badge:not(.no-icon) img {
|
.badge:not(.no-icon):not(.no-info) img {
|
||||||
margin-left: -6px;
|
margin-left: -6px;
|
||||||
margin-inline-start: -6px;
|
margin-inline-start: -6px;
|
||||||
margin-inline-end: initial;
|
margin-inline-end: initial;
|
||||||
|
@ -48,7 +48,10 @@ export class GridSection extends LitElement implements LovelaceSectionElement {
|
|||||||
private _cardConfigKeys = new WeakMap<LovelaceCardConfig, string>();
|
private _cardConfigKeys = new WeakMap<LovelaceCardConfig, string>();
|
||||||
|
|
||||||
private _getKey(cardConfig: LovelaceCardConfig) {
|
private _getKey(cardConfig: LovelaceCardConfig) {
|
||||||
if (!this._cardConfigKeys.has(cardConfig)) {
|
if (
|
||||||
|
!this._cardConfigKeys.has(cardConfig) &&
|
||||||
|
typeof cardConfig === "object"
|
||||||
|
) {
|
||||||
this._cardConfigKeys.set(cardConfig, Math.random().toString());
|
this._cardConfigKeys.set(cardConfig, Math.random().toString());
|
||||||
}
|
}
|
||||||
return this._cardConfigKeys.get(cardConfig)!;
|
return this._cardConfigKeys.get(cardConfig)!;
|
||||||
@ -62,20 +65,6 @@ export class GridSection extends LitElement implements LovelaceSectionElement {
|
|||||||
const editMode = Boolean(this.lovelace?.editMode && !this.isStrategy);
|
const editMode = Boolean(this.lovelace?.editMode && !this.isStrategy);
|
||||||
|
|
||||||
return html`
|
return html`
|
||||||
${this._config.title || this.lovelace?.editMode
|
|
||||||
? html`
|
|
||||||
<h2
|
|
||||||
class="title ${classMap({
|
|
||||||
placeholder: !this._config.title,
|
|
||||||
})}"
|
|
||||||
>
|
|
||||||
${this._config.title ||
|
|
||||||
this.hass.localize(
|
|
||||||
"ui.panel.lovelace.editor.section.unnamed_section"
|
|
||||||
)}
|
|
||||||
</h2>
|
|
||||||
`
|
|
||||||
: nothing}
|
|
||||||
<ha-sortable
|
<ha-sortable
|
||||||
.disabled=${!editMode}
|
.disabled=${!editMode}
|
||||||
@item-moved=${this._cardMoved}
|
@item-moved=${this._cardMoved}
|
||||||
@ -203,33 +192,11 @@ export class GridSection extends LitElement implements LovelaceSectionElement {
|
|||||||
.container.edit-mode {
|
.container.edit-mode {
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
border-radius: var(--ha-card-border-radius, 12px);
|
border-radius: var(--ha-card-border-radius, 12px);
|
||||||
|
border-start-end-radius: 0px;
|
||||||
border: 2px dashed var(--divider-color);
|
border: 2px dashed var(--divider-color);
|
||||||
min-height: var(--row-height);
|
min-height: var(--row-height);
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
|
||||||
color: var(--primary-text-color);
|
|
||||||
font-size: 20px;
|
|
||||||
font-weight: normal;
|
|
||||||
margin: 0px;
|
|
||||||
letter-spacing: 0.1px;
|
|
||||||
line-height: 32px;
|
|
||||||
text-align: var(--ha-view-sections-title-text-align, start);
|
|
||||||
min-height: 32px;
|
|
||||||
display: block;
|
|
||||||
height: var(--row-height);
|
|
||||||
box-sizing: border-box;
|
|
||||||
padding: 0 10px 10px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: flex-end;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title.placeholder {
|
|
||||||
color: var(--secondary-text-color);
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
border-radius: var(--ha-card-border-radius, 12px);
|
border-radius: var(--ha-card-border-radius, 12px);
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@ -175,32 +175,53 @@ export class SectionsView extends LitElement implements LovelaceViewElement {
|
|||||||
"--column-span": columnSpan,
|
"--column-span": columnSpan,
|
||||||
})}
|
})}
|
||||||
>
|
>
|
||||||
${editMode
|
${
|
||||||
? html`
|
sectionConfig?.title || this.lovelace?.editMode
|
||||||
<div class="section-overlay">
|
? html`
|
||||||
<div class="section-actions">
|
<div class="section-header">
|
||||||
<ha-svg-icon
|
<h2
|
||||||
aria-hidden="true"
|
class="section-title ${classMap({
|
||||||
class="handle"
|
placeholder: !sectionConfig?.title,
|
||||||
.path=${mdiArrowAll}
|
})}"
|
||||||
></ha-svg-icon>
|
>
|
||||||
<ha-icon-button
|
${sectionConfig?.title ||
|
||||||
.label=${this.hass.localize("ui.common.edit")}
|
this.hass.localize(
|
||||||
@click=${this._editSection}
|
"ui.panel.lovelace.editor.section.unnamed_section"
|
||||||
.index=${idx}
|
)}
|
||||||
.path=${mdiPencil}
|
</h2>
|
||||||
></ha-icon-button>
|
${editMode
|
||||||
<ha-icon-button
|
? html`
|
||||||
.label=${this.hass.localize("ui.common.delete")}
|
<div class="section-actions">
|
||||||
@click=${this._deleteSection}
|
<ha-svg-icon
|
||||||
.index=${idx}
|
aria-hidden="true"
|
||||||
.path=${mdiDelete}
|
class="handle"
|
||||||
></ha-icon-button>
|
.path=${mdiArrowAll}
|
||||||
</div>
|
></ha-svg-icon>
|
||||||
</div>
|
<ha-icon-button
|
||||||
`
|
.label=${this.hass.localize(
|
||||||
: nothing}
|
"ui.common.edit"
|
||||||
${section}
|
)}
|
||||||
|
@click=${this._editSection}
|
||||||
|
.index=${idx}
|
||||||
|
.path=${mdiPencil}
|
||||||
|
></ha-icon-button>
|
||||||
|
<ha-icon-button
|
||||||
|
.label=${this.hass.localize(
|
||||||
|
"ui.common.delete"
|
||||||
|
)}
|
||||||
|
@click=${this._deleteSection}
|
||||||
|
.index=${idx}
|
||||||
|
.path=${mdiDelete}
|
||||||
|
></ha-icon-button>
|
||||||
|
</div>
|
||||||
|
`
|
||||||
|
: nothing}
|
||||||
|
</div>
|
||||||
|
`
|
||||||
|
: nothing
|
||||||
|
}
|
||||||
|
${section}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
@ -346,25 +367,6 @@ export class SectionsView extends LitElement implements LovelaceViewElement {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.section-actions {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
inset-inline-end: 0;
|
|
||||||
inset-inline-start: initial;
|
|
||||||
opacity: 1;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
transition: opacity 0.2s ease-in-out;
|
|
||||||
background-color: rgba(var(--rgb-card-background-color), 0.3);
|
|
||||||
border-radius: 18px;
|
|
||||||
background: var(--secondary-background-color);
|
|
||||||
--mdc-icon-button-size: 36px;
|
|
||||||
--mdc-icon-size: 20px;
|
|
||||||
color: var(--primary-text-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
.handle {
|
.handle {
|
||||||
cursor: grab;
|
cursor: grab;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
@ -396,6 +398,55 @@ export class SectionsView extends LitElement implements LovelaceViewElement {
|
|||||||
margin: 16px 8px;
|
margin: 16px 8px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.section-header {
|
||||||
|
position: relative;
|
||||||
|
height: var(--row-height);
|
||||||
|
margin-bottom: var(--row-gap);
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-title {
|
||||||
|
color: var(--primary-text-color);
|
||||||
|
font-size: 20px;
|
||||||
|
font-weight: normal;
|
||||||
|
margin: 0px;
|
||||||
|
letter-spacing: 0.1px;
|
||||||
|
line-height: 32px;
|
||||||
|
text-align: var(--ha-view-sections-title-text-align, start);
|
||||||
|
min-height: 32px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding: 0 10px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-title.placeholder {
|
||||||
|
color: var(--secondary-text-color);
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-actions {
|
||||||
|
position: absolute;
|
||||||
|
height: 36px;
|
||||||
|
bottom: calc(-1 * var(--row-gap) - 2px);
|
||||||
|
right: 0;
|
||||||
|
inset-inline-end: 0;
|
||||||
|
inset-inline-start: initial;
|
||||||
|
opacity: 1;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
transition: opacity 0.2s ease-in-out;
|
||||||
|
background-color: rgba(var(--rgb-card-background-color), 0.3);
|
||||||
|
border-radius: var(--ha-card-border-radius, 12px);
|
||||||
|
border-bottom-left-radius: 0px;
|
||||||
|
border-bottom-right-radius: 0px;
|
||||||
|
background: var(--secondary-background-color);
|
||||||
|
--mdc-icon-button-size: 36px;
|
||||||
|
--mdc-icon-size: 20px;
|
||||||
|
color: var(--primary-text-color);
|
||||||
|
}
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3311,6 +3311,7 @@
|
|||||||
"service_name_no_targets": "{domain} ''{name}''",
|
"service_name_no_targets": "{domain} ''{name}''",
|
||||||
"service": "Perform an action",
|
"service": "Perform an action",
|
||||||
"target_template": "templated {name}",
|
"target_template": "templated {name}",
|
||||||
|
"target_every_entity": "every entity",
|
||||||
"target_unknown_entity": "unknown entity",
|
"target_unknown_entity": "unknown entity",
|
||||||
"target_unknown_device": "unknown device",
|
"target_unknown_device": "unknown device",
|
||||||
"target_unknown_area": "unknown area",
|
"target_unknown_area": "unknown area",
|
||||||
|
20
yarn.lock
20
yarn.lock
@ -1432,12 +1432,12 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@bundle-stats/plugin-webpack-filter@npm:4.14.2":
|
"@bundle-stats/plugin-webpack-filter@npm:4.15.0":
|
||||||
version: 4.14.2
|
version: 4.15.0
|
||||||
resolution: "@bundle-stats/plugin-webpack-filter@npm:4.14.2"
|
resolution: "@bundle-stats/plugin-webpack-filter@npm:4.15.0"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
core-js: ^3.0.0
|
core-js: ^3.0.0
|
||||||
checksum: 10/5024a0babd398e66f4a973f41ee521ab756bdb3d35ea994c2a6e4bf9e6fca28715a53e1431e1acd5837debc129ea9e784509d8afafb3ba082a397caaed570225
|
checksum: 10/5b3bbc133ccc50a4f2e6e8c7e6e10dacc1c85cb176e934965777a8f1ca7b137707b704b77858d8c4fa9d665a92e0cfc99b1d07791d08c522e023fb3c39d8a705
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@ -8920,7 +8920,7 @@ __metadata:
|
|||||||
"@babel/preset-typescript": "npm:7.24.7"
|
"@babel/preset-typescript": "npm:7.24.7"
|
||||||
"@babel/runtime": "npm:7.25.4"
|
"@babel/runtime": "npm:7.25.4"
|
||||||
"@braintree/sanitize-url": "npm:7.1.0"
|
"@braintree/sanitize-url": "npm:7.1.0"
|
||||||
"@bundle-stats/plugin-webpack-filter": "npm:4.14.2"
|
"@bundle-stats/plugin-webpack-filter": "npm:4.15.0"
|
||||||
"@codemirror/autocomplete": "npm:6.18.0"
|
"@codemirror/autocomplete": "npm:6.18.0"
|
||||||
"@codemirror/commands": "npm:6.6.0"
|
"@codemirror/commands": "npm:6.6.0"
|
||||||
"@codemirror/language": "npm:6.10.2"
|
"@codemirror/language": "npm:6.10.2"
|
||||||
@ -9078,7 +9078,7 @@ __metadata:
|
|||||||
luxon: "npm:3.5.0"
|
luxon: "npm:3.5.0"
|
||||||
magic-string: "npm:0.30.11"
|
magic-string: "npm:0.30.11"
|
||||||
map-stream: "npm:0.0.7"
|
map-stream: "npm:0.0.7"
|
||||||
marked: "npm:14.0.0"
|
marked: "npm:14.1.0"
|
||||||
memoize-one: "npm:6.0.0"
|
memoize-one: "npm:6.0.0"
|
||||||
mocha: "npm:10.5.0"
|
mocha: "npm:10.5.0"
|
||||||
node-vibrant: "npm:3.2.1-alpha.1"
|
node-vibrant: "npm:3.2.1-alpha.1"
|
||||||
@ -10858,12 +10858,12 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"marked@npm:14.0.0":
|
"marked@npm:14.1.0":
|
||||||
version: 14.0.0
|
version: 14.1.0
|
||||||
resolution: "marked@npm:14.0.0"
|
resolution: "marked@npm:14.1.0"
|
||||||
bin:
|
bin:
|
||||||
marked: bin/marked.js
|
marked: bin/marked.js
|
||||||
checksum: 10/5f69e58e177bde75fb6145127c939c096d05494c5dff92d73af8a550097d6631c82e919f8a375e3743379a2623418151086b925a902a2be123590b887716f2bb
|
checksum: 10/1a930dd87a3994cc4fcc72c4668c548429d0e6363b8f7660193c106fa1cadcde5c813cfc3fe4be42b9f18b3652ba73469fb6c718215b0dbf8ddb9de2d1f5ab38
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user