diff --git a/docs/contribute/bugs.rst b/docs/contribute/bugs.rst index 851c0438..ced40085 100644 --- a/docs/contribute/bugs.rst +++ b/docs/contribute/bugs.rst @@ -4,7 +4,7 @@ Reporting Bugs This section guides you through submitting a bug report for Atomic Calendar Revive. Following these guidelines helps maintainers and the community understand your report -:pencil:, reproduce the behavior :computer: :computer:, and find related reports +:pencil:, reproduce the behaviour :computer: :computer:, and find related reports :mag_right:. Before creating bug reports, please check the below information as you might find out @@ -41,9 +41,9 @@ Explain the problem and include additional details to help maintainers reproduce - **Use a clear and descriptive title** for the issue to identify the problem. - **Describe the exact steps which reproduce the problem** in as many details as possible. For example, start by explaining how you installed the plugin. When listing steps, **don't just say what you did, but explain how you did it**. For example, did you use the Lovelace Editor or do the change in YAML directly. -- **Provide specific examples to demonstrate the steps**. Include screenshots, or copy/pasteable configuration snippets, which you use in those examples. If you're providing snippets in the issue, use `Markdown code blocks `_. -- **Describe the behavior you observed after following the steps** and point out what exactly is the problem with that behavior. -- **Explain which behavior you expected to see instead and why.** +- **Provide specific examples to demonstrate the steps**. Include screenshots, or copy/paste configuration snippets, which you use in those examples. If you're providing snippets in the issue, use `Markdown code blocks `_. +- **Describe the behaviour you observed after following the steps** and point out what exactly is the problem with that behaviour. +- **Explain which behaviour you expected to see instead and why.** - **Include screenshots and animated GIFs** which show you following the described steps and clearly demonstrate the problem. - **If Chrome's developer tools pane is showing errors**, include these in your report - **If the problem wasn't triggered by a specific action**, describe what you were doing before the problem happened and share more information using the guidelines below. diff --git a/docs/contribute/devcycle.rst b/docs/contribute/devcycle.rst index 09fe04be..063f12aa 100644 --- a/docs/contribute/devcycle.rst +++ b/docs/contribute/devcycle.rst @@ -78,7 +78,7 @@ Testing There are no automated tests for this project, however it is expected that any development work is tested against a HA Server with both CalDav and Google Calendar -attached, this ensures no advers impact is added with the feature or bugfix. +attached, this ensures no adverse impact is added with the feature or bugfix. ********** Versioning @@ -90,7 +90,7 @@ This project follows `Semantic Versioning `_ In the context of semantic versioning, the following should apply: -* **Major** - A breaking change that requires user invervention, or a change to a +* **Major** - A breaking change that requires user intervention, or a change to a default value. * **Minor** - A change that does not require intervention, or adds additional functionality in a backwards compatible manner. @@ -113,7 +113,7 @@ Once you are happy with the changes, these can be committed: .. note:: Commit messages should follow `conventional commits `_ - this ensures clear commit messages within the repository. + this ensures clear commit messages within the repository. Without this your change will be rejected as it is required for release. ******************* diff --git a/package.json b/package.json index c0f83cba..fef065ac 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-decorators": "^7.22.10", "@babel/plugin-transform-template-literals": "^7.22.5", - "@babel/preset-env": "^7.22.10", + "@babel/preset-env": "^7.22.14", "@rollup/plugin-babel": "^6.0.3", "@rollup/plugin-commonjs": "^25.0.4", "@rollup/plugin-eslint": "^9.0.4", @@ -38,16 +38,16 @@ "@semantic-release/changelog": "^6.0.3", "@semantic-release/exec": "^6.0.3", "@semantic-release/git": "^10.0.1", - "@typescript-eslint/eslint-plugin": "^6.4.1", - "@typescript-eslint/parser": "^6.4.1", + "@typescript-eslint/eslint-plugin": "^6.5.0", + "@typescript-eslint/parser": "^6.5.0", "babel-preset-minify": "^0.5.2", "commitizen": "^4.3.0", - "conventional-changelog-conventionalcommits": "^6.1.0", + "conventional-changelog-conventionalcommits": "^7.0.1", "cz-conventional-changelog": "^3.3.0", "eslint": "^8.48.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.0", - "prettier": "^3.0.2", + "prettier": "^3.0.3", "rollup": "^3.28.1", "rollup-plugin-serve": "^2.0.2", "rollup-plugin-typescript2": "^0.35.0", @@ -72,7 +72,7 @@ "dayjs": "^1.11.9", "lit": "^2.8.0", "lit-element": "^3.3.3", - "npm": "^9.8.1", + "npm": "^10.0.0", "typescript": "^5.2.2" }, "resolutions": { diff --git a/src/editor.ts b/src/editor.ts index 850fb1cb..198e6834 100644 --- a/src/editor.ts +++ b/src/editor.ts @@ -53,7 +53,6 @@ export class AtomicCalendarReviveEditor extends ScopedRegistryHost(LitElement) i const customConfig: atomicCardConfig = JSON.parse(JSON.stringify(config)); this._config = { - ...defaultConfig, ...customConfig, }; @@ -128,7 +127,7 @@ export class AtomicCalendarReviveEditor extends ScopedRegistryHost(LitElement) i @@ -142,7 +141,7 @@ export class AtomicCalendarReviveEditor extends ScopedRegistryHost(LitElement) i class="mwc-text-field" label=${property.label} type="number" - .value=${this.getPropertyValue(property)} + .value=${this.getPropertyValue(property) || property.default} .configValue=${property.name} .number=${true} @input=${this._valueChanged} @@ -230,7 +229,6 @@ export class AtomicCalendarReviveEditor extends ScopedRegistryHost(LitElement) i type: 'text', name: 'name', label: localize('main.fields.name'), - default: this._config.name }, { type: 'number', @@ -238,6 +236,7 @@ export class AtomicCalendarReviveEditor extends ScopedRegistryHost(LitElement) i label: localize('main.fields.titleLength'), min: 0, max: 99999999999, + default: defaultConfig.titleLength }, { type: 'number', @@ -245,13 +244,15 @@ export class AtomicCalendarReviveEditor extends ScopedRegistryHost(LitElement) i label: localize('main.fields.descLength'), min: 0, max: 99999999999, + default: defaultConfig.descLength }, { type: 'number', name: 'firstDayOfWeek', label: localize('main.fields.firstDayOfWeek'), min: 0, - max: 6 + max: 6, + default: defaultConfig.firstDayOfWeek }, { type: 'number', @@ -259,6 +260,7 @@ export class AtomicCalendarReviveEditor extends ScopedRegistryHost(LitElement) i label: localize('main.fields.maxDaysToShow'), min: 0, max: 99999999999, + default: defaultConfig.maxDaysToShow }, { type: 'number', @@ -266,11 +268,13 @@ export class AtomicCalendarReviveEditor extends ScopedRegistryHost(LitElement) i label: localize('main.fields.refreshInterval'), min: 60, max: 99999999999, + default: defaultConfig.refreshInterval }, { type: 'text', name: 'dateFormat', - label: localize('main.fields.dateFormat') + label: localize('main.fields.dateFormat'), + default: defaultConfig.dateFormat }, { type: 'text', @@ -288,7 +292,7 @@ export class AtomicCalendarReviveEditor extends ScopedRegistryHost(LitElement) i name: 'defaultMode', section: 'main', label: localize('main.fields.defaultMode'), - selected: defaultModes.indexOf(this._config.defaultMode), + selected: defaultModes.indexOf(this._config.defaultMode || defaultConfig.defaultMode), }, { type: 'dropdown', @@ -296,97 +300,94 @@ export class AtomicCalendarReviveEditor extends ScopedRegistryHost(LitElement) i name: 'linkTarget', section: 'main', label: localize('main.fields.linkTarget'), - selected: defaultModes.indexOf(this._config.linkTarget), + selected: linkTargets.indexOf(this._config.linkTarget || defaultConfig.linkTarget), }, { type: 'text', name: 'cardHeight', label: localize('main.fields.cardHeight'), - default: this._config.cardHeight + default: defaultConfig.cardHeight }, { type: 'switch', name: 'showLoader', label: localize('main.fields.showLoader'), - default: this._config.showLoader, + default: defaultConfig.showLoader, }, { type: 'switch', name: 'showDate', label: localize('main.fields.showDate'), - default: this._config.showDate, + default: defaultConfig.showDate, }, { type: 'switch', name: 'showDeclined', label: localize('main.fields.showDeclined'), - default: this._config.showDeclined, }, { type: 'switch', name: 'sortByStartTime', label: localize('main.fields.sortByStartTime'), - default: this._config.sortByStartTime, + default: defaultConfig.sortByStartTime, }, { type: 'switch', name: 'hideFinishedEvents', label: localize('main.fields.hideFinishedEvents'), - default: this._config.hideFinishedEvents, + default: defaultConfig.hideFinishedEvents, }, { type: 'switch', name: 'showLocation', label: localize('main.fields.showLocation'), - default: this._config.showLocation, + default: defaultConfig.showLocation, }, { type: 'switch', name: 'showRelativeTime', label: localize('main.fields.showRelativeTime'), - default: this._config.showRelativeTime, + default: defaultConfig.showRelativeTime, }, { type: 'switch', name: 'hideDuplicates', label: localize('main.fields.hideDuplicates'), - default: this._config.hideDuplicates, + default: defaultConfig.hideDuplicates, }, { type: 'switch', name: 'showMultiDay', label: localize('main.fields.showMultiDay'), - default: this._config.showMultiDay, + default: defaultConfig.showMultiDay, }, { type: 'switch', name: 'showMultiDayEventParts', label: localize('main.fields.showMultiDayEventParts'), - default: this._config.showMultiDayEventParts, + default: defaultConfig.showMultiDayEventParts, }, { type: 'switch', name: 'compactMode', label: localize('main.fields.compactMode'), - default: this._config.compactMode, }, { type: 'switch', name: 'hoursOnSameLine', label: localize('main.fields.hoursOnSameLine'), - default: this._config.hoursOnSameLine, }, { type: 'switch', name: 'showAllDayEvents', label: localize('main.fields.showAllDayEvents'), - default: this._config.showAllDayEvents, + default: defaultConfig.showAllDayEvents, }, { type: 'switch', name: 'offsetHeaderDate', label: localize('main.fields.offsetHeaderDate'), - default: this._config.offsetHeaderDate, + default: defaultConfig.offsetHeaderDate, }, ], }, @@ -400,127 +401,126 @@ export class AtomicCalendarReviveEditor extends ScopedRegistryHost(LitElement) i type: 'text', name: 'untilText', label: localize('event.fields.untilText'), - default: this._config.untilText + default: defaultConfig.untilText }, { type: 'text', name: 'noEventsForNextDaysText', label: localize('event.fields.noEventsForNextDaysText'), - default: this._config.noEventsForNextDaysText + default: defaultConfig.noEventsForNextDaysText }, { type: 'text', name: 'noEventText', label: localize('event.fields.noEventText'), - default: this._config.noEventText + default: defaultConfig.noEventText }, { type: 'text', name: 'hiddenEventText', label: localize('event.fields.hiddenEventText'), - default: this._config.hiddenEventText + default: defaultConfig.hiddenEventText }, { type: 'switch', name: 'showCurrentEventLine', label: localize('event.fields.showCurrentEventLine'), - default: this._config.showCurrentEventLine, + default: defaultConfig.showCurrentEventLine, }, { type: 'switch', name: 'showProgressBar', label: localize('event.fields.showProgressBar'), - default: this._config.showProgressBar, + default: defaultConfig.showProgressBar, }, { type: 'switch', name: 'showMonth', label: localize('event.fields.showMonth'), - default: this._config.showMonth, + default: defaultConfig.showMonth, }, { type: 'switch', name: 'showWeekDay', label: localize('event.fields.showWeekDay'), - default: this._config.showWeekDay, + default: defaultConfig.showWeekDay, }, { type: 'switch', name: 'showDescription', label: localize('event.fields.showDescription'), - default: this._config.showDescription, + default: defaultConfig.showDescription, }, { type: 'switch', name: 'disableEventLink', label: localize('event.fields.disableEventLink'), - default: this._config.disableEventLink, + default: defaultConfig.disableEventLink, }, { type: 'switch', name: 'disableLocationLink', label: localize('event.fields.disableLocationLink'), - default: this._config.disableLocationLink, + default: defaultConfig.disableLocationLink, }, { type: 'switch', name: 'showNoEventsForToday', label: localize('event.fields.showNoEventsForToday'), - default: this._config.showNoEventsForToday, + default: defaultConfig.showNoEventsForToday, }, { type: 'switch', name: 'showFullDayProgress', label: localize('event.fields.showFullDayProgress'), - default: this._config.showFullDayProgress, + default: defaultConfig.showFullDayProgress, }, { type: 'switch', name: 'showEventIcon', label: localize('event.fields.showEventIcon'), - default: this._config.showEventIcon, + default: defaultConfig.showEventIcon, }, { type: 'switch', name: 'showHiddenText', label: localize('event.fields.showHiddenText'), - default: this._config.showHiddenText, + default: defaultConfig.showHiddenText, }, { type: 'switch', name: 'showCalendarName', label: localize('event.fields.showCalendarName'), - default: this._config.showCalendarName, + default: defaultConfig.showCalendarName, }, { type: 'switch', name: 'showWeekNumber', label: localize('event.fields.showWeekNumber'), - default: this._config.showWeekNumber, + default: defaultConfig.showWeekNumber, }, { type: 'switch', name: 'showEventDate', label: localize('event.fields.showEventDate'), - default: this._config.showEventDate, + default: defaultConfig.showEventDate, }, { type: 'switch', name: 'showDatePerEvent', label: localize('event.fields.showDatePerEvent'), - default: this._config.showDatePerEvent, + default: defaultConfig.showDatePerEvent, }, { type: 'switch', name: 'showTimeRemaining', label: localize('event.fields.showTimeRemaining'), - default: this._config.showTimeRemaining, }, { type: 'switch', name: 'showAllDayHours', label: localize('event.fields.showAllDayHours'), - default: this._config.showAllDayHours, + default: defaultConfig.showAllDayHours, }, ], }, @@ -534,31 +534,27 @@ export class AtomicCalendarReviveEditor extends ScopedRegistryHost(LitElement) i type: 'switch', name: 'calShowDescription', label: localize('calendar.fields.calShowDescription'), - default: this._config.calShowDescription, }, { type: 'switch', name: 'showLastCalendarWeek', label: localize('calendar.fields.showLastCalendarWeek'), - default: this._config.showLastCalendarWeek, + default: defaultConfig.showLastCalendarWeek, }, { type: 'switch', name: 'disableCalEventLink', label: localize('calendar.fields.disableCalEventLink'), - default: this._config.disableCalEventLink, }, { type: 'switch', name: 'disableCalLocationLink', label: localize('calendar.fields.disableCalLocationLink'), - default: this._config.disableCalLocationLink, }, { type: 'switch', name: 'disableCalLink', label: localize('calendar.fields.disableCalLink'), - default: this._config.disableCalLink, }, ], }, @@ -572,7 +568,7 @@ export class AtomicCalendarReviveEditor extends ScopedRegistryHost(LitElement) i type: 'switch', name: 'dimFinishedEvents', label: localize('appearance.fields.dimFinishedEvents'), - default: this._config.dimFinishedEvents, + default: defaultConfig.dimFinishedEvents, }, ], }, diff --git a/src/index-editor.ts.old b/src/index-editor.ts.old deleted file mode 100644 index f216fe2a..00000000 --- a/src/index-editor.ts.old +++ /dev/null @@ -1,1199 +0,0 @@ -import { LitElement, html, TemplateResult, CSSResult } from 'lit'; -import { property, customElement, state } from 'lit/decorators.js'; -import { ScopedRegistryHost } from '@lit-labs/scoped-registry-mixin' -import { HomeAssistant, LovelaceCardEditor, fireEvent } from 'custom-card-helpers'; - -import { localize } from './localize/localize'; -import { style } from './style-editor'; -import { atomicCardConfig } from './types'; -import { formfieldDefinition } from '../elements/formfield'; -import { textfieldDefinition } from '../elements/textfield'; -import { switchDefinition } from '../elements/switch'; -import { selectDefinition } from '../elements/select'; - -const linkTargets: string[] = ['_blank', '_self', '_parent', '_top']; -const defaultModes: string[] = ['Event', 'Calendar']; - -const options = { - required: { - icon: 'tune', - show: false, - }, - main: { - icon: 'eye-settings', - show: false, - }, - event: { - icon: 'calendar-check', - show: false, - }, - calendar: { - icon: 'calendar-month-outline', - show: false, - }, - appearance: { - icon: 'palette', - show: false, - }, -}; - -@customElement('atomic-calendar-revive-editor') -export class AtomicCalendarReviveEditor extends ScopedRegistryHost(LitElement) implements LovelaceCardEditor { - @property({ attribute: false }) - public hass!: HomeAssistant; - @state() private _config!: atomicCardConfig; - @state() private _toggle?: boolean; - @state() private _helpers?: any; - private _initialized = false; - - static elementDefinitions = { - ...textfieldDefinition, - ...formfieldDefinition, - ...switchDefinition, - ...selectDefinition, - }; - - static get styles(): CSSResult { - return style; - } - - public setConfig(config: atomicCardConfig): void { - this._config = config; - - this.loadCardHelpers(); - } - - protected shouldUpdate(): boolean { - if (!this._initialized) { - this._initialize(); - } - - return true; - } - - // ENTITY SETTINGS - get _entityOptions() { - const entities = Object.keys(this.hass.states).filter(eid => eid.substr(0, eid.indexOf('.')) === 'calendar'); - let entityOptions - if (typeof this._config?.entities != 'undefined') { - entityOptions = entities.map(eid => { - let matchingConfigEnitity = this._config?.entities.find(entity => (entity && entity.entity || entity) === eid); - const originalEntity = this.hass.states[eid]; - if (matchingConfigEnitity === undefined) { - - matchingConfigEnitity = { - entity: eid, - name: originalEntity.attributes.friendly_name || eid, - checked: !!matchingConfigEnitity - } - - } else { - if (!('name' in matchingConfigEnitity)) { - matchingConfigEnitity = { ...matchingConfigEnitity, name: (matchingConfigEnitity && matchingConfigEnitity.name) || originalEntity.attributes.friendly_name || eid } - } - matchingConfigEnitity = { ...matchingConfigEnitity, checked: !!matchingConfigEnitity } - - } - return matchingConfigEnitity - }); - } else { - entityOptions = entities.map(eid => { - const originalEntity = this.hass.states[eid]; - return { - entity: eid, - name: originalEntity.attributes.friendly_name || eid, - checked: false - } - }); - } - return entityOptions; - } - - //MAIN SETTINGS - get _name(): string { - return this._config?.name || ''; - } - - get _titleLength(): number { - return this._config?.titleLength || 0; - } - - get _descLength(): number { - return this._config?.descLength || 0; - } - - get _firstDayOfWeek(): number { - return this._config?.firstDayOfWeek || 1; - } - - get _maxDaysToShow(): number { - return this._config?.maxDaysToShow || 7; - } - - get _linkTarget(): string { - return this._config?.linkTarget || '_blank'; - } - get _defaultMode(): string { - return this._config?.defaultMode || 'Event'; - } - get _cardHeight(): string { - return this._config?.cardHeight || '100%'; - } - - get _showLocation(): boolean { - return this._config?.showLocation || true; - } - get _showLoader(): boolean { - return this._config?.showLoader || true; - } - get _sortByStartTime(): boolean { - return this._config?.sortByStartTime || false; - } - get _showDeclined(): boolean { - return this._config?.showDeclined || false; - } - get _hideDuplicates(): boolean { - return this._config?.hideDuplicates || false; - } - get _showMultiDay(): boolean { - return this._config?.showMultiDay || false; - } - get _showMultiDayEventParts(): boolean { - return this._config?.showMultiDayEventParts || false; - } - - get _dateFormat(): string { - return this._config?.dateFormat || 'LL'; - } - get _hoursFormat(): string { - return this._config?.hoursFormat || ''; - } - get _refreshInterval(): number { - return this._config?.refreshInterval || 60; - } - get _showDate(): boolean { - return this._config?.showDate || false; - } - get _showRelativeTime(): boolean { - return this._config?.showRelativeTime || false; - } - get _eventTitle(): string { - return this._config?.eventTitle || ''; - } - get _compactMode(): boolean { - return this._config?.compactMode || false; - } - get _hoursOnSameLine(): boolean { - return this._config?.hoursOnSameLine || false; - } - get _showAllDayEvents(): boolean { - return this._config?.showAllDayEvents || true; - } - get _offsetHeaderDate(): boolean { - return this._config?.offsetHeaderDate || false; - } - - // MAIN SETTINGS END - - // EVENT SETTINGS - - get _showCurrentEventLine(): boolean { - return this._config?.showCurrentEventLine || false; - } - - get _showProgressBar(): boolean { - return this._config?.showProgressBar || true; - - } - - get _showMonth(): boolean { - return this._config?.showMonth || false; - } - get _showWeekDay(): boolean { - return this._config?.showWeekDay || false; - } - get _showDescription(): boolean { - return this._config?.showDescription || true; - } - get _disableEventLink(): boolean { - return this._config?.disableEventLink || false; - } - get _disableLocationLink(): boolean { - return this._config?.disableLocationLink || false; - } - get _showNoEventsForToday(): boolean { - return this._config?.showNoEventsForToday || false; - } - get _showCalNameInEvent(): boolean { - return this._config?.showCalNameInEvent || false; - } - get _showFullDayProgress(): boolean { - return this._config?.showFullDayProgress || false; - } - get _hideFinishedEvents(): boolean { - return this._config?.hideFinishedEvents || false; - } - get _showEventIcon(): boolean { - return this._config?.showEventIcon || false; - } - get _untilText(): string { - return this._config?.untilText || ''; - } - get _fullDayEventText(): string { - return this._config?.fullDayEventText || ''; - } - get _noEventsForNextDaysText(): string { - return this._config?.noEventsForNextDaysText || ''; - } - get _noEventText(): string { - return this._config?.noEventText || ''; - } - get _showHiddenText(): boolean { - return this._config?.showHiddenText || false; - } - get _showCalendarName(): boolean { - return this._config?.showCalendarName || false; - } - get _hiddenEventText(): string { - return this._config?.hiddenEventText || ''; - } - get _showWeekNumber(): boolean { - return this._config?.showWeekNumber || false; - } - get _showEventDate(): boolean { - return this._config?.showEventDate || false; - } - get _showDatePerEvent(): boolean { - return this._config?.showDatePerEvent || false; - } - get _showTimeRemaining(): boolean { - return this._config?.showTimeRemaining || false; - } - - get _showAllDayHours(): boolean { - return this._config?.showTimeRemaining || false; - } - - // EVENT SETTINGS END - - // CALENDAR SETTINGS - get _showLastCalendarWeek(): boolean { - return this._config?.showLastCalendarWeek || false; - } - get _disableCalEventLink(): boolean { - return this._config?.disableCalEventLink || false; - } - get _disableCalLocationLink(): boolean { - return this._config?.disableCalLocationLink || false; - } - get _calShowDescription(): boolean { - return this._config?.calShowDescription || false; - } - - get _disableCalLink(): boolean { - return this._config?.disableCalLink || false; - } - - // CALENDAR SETTINGS END - - // APPEARENCE SETTINGS - - get _locationLinkColor(): string { - return this._config?.locationLinkColor || ''; - } - get _dimFinishedEvents(): boolean { - return this._config?.dimFinishedEvents || true; - } - - // APPEARENCE SETTINGS END - - protected render(): TemplateResult | void { - if (!this.hass || !this._helpers) { - return html``; - } - - // You can restrict on domain type - const entities = Object.keys(this.hass.states).filter(eid => eid.substr(0, eid.indexOf('.')) === 'calendar'); - - return html` -
-
-
- -
${localize('required.name')}
-
-
${localize('required.secondary')}
-
- ${options.required.show - ? html` -
- ${this._entityOptions.map(entity => { - return html` -
- - - ${entity.checked ? html` -
-
- -
-
- -
-
-
-
- -
-
- -
-
-
-
- -
-
- -
-
-
-
- -
-
- -
-
-
-
- -
-
- -
-
-
-
- -
-
-
-
` : html`` - } - -
- `; - }) - } -
- ` - : ''} - -
-
- -
${localize('main.name')}
-
-
${l${localize('main.name')}}
-
- ${options.main.show - ? html` -
-
-
- -
-
-
-
- -
-
- -
-
-
-
- -
-
- -
-
-
-
- -
-
- -
-
-
-
- -
-
- -
-
-
-
- ev.stopPropagation()} - > - ${defaultModes.map((mode) => { - return html`${mode} `; - })} - -
-
- ev.stopPropagation()} - > - ${linkTargets.map((linkTarget) => { - return html`${linkTarget} `; - })} - -
-
-
-
- -
-
-
-
-
-
- - -
-
- - -
-
-
-
- - -
-
- - -
-
-
-
- - -
-
- - -
-
-
-
- - -
-
- - -
-
-
-
- - -
-
- - -
-
-
-
- - -
-
- - -
-
-
-
- - -
-
- - -
-
-
- - ` - : ''} - - -
-
- -
${localize('event.name')}
-
-
${localize('event.secondary')}
-
- ${options.event.show - ? html` -
-
-
- -
-
- -
-
-
-
- -
-
- -
-
-
-
- -
-
-
-
-
-
- - -
-
- - -
-
-
-
- - -
-
- - -
-
-
-
- - -
-
- - -
-
-
-
- - -
-
- - -
-
-
-
- - -
-
- - -
-
-
-
- - -
-
- - -
-
-
-
- - -
-
- - -
-
-
-
- - -
-
- - -
-
-
-
- - -
-
-
-
-
- ` - : ''} - - -
-
- -
${localize('calendar.name')}
-
-
${localize('calendar.secondary')}
-
- ${options.calendar.show - ? html` -
- - -
-
- - -
-
- - -
-
-
-
- - -
-
- - -
-
-
- ` - : ''} - - -
-
- -
${localize('appearance.name')}
-
-
${localize('appearance.secondary')}
-
- ${options.appearance.show - ? html` -
-
-
- - -
-
-
- ` - : ''} - -
- `; - } - private _initialize(): void { - if (this.hass === undefined) { - return; - } - if (this._config === undefined) { - return; - } - if (this._helpers === undefined) { - return; - } - this._initialized = true; - } - - private async loadCardHelpers(): Promise { - this._helpers = await (window as any).loadCardHelpers(); - } - private _toggleOption(ev): void { - this._toggleThing(ev, options); - } - - private _toggleThing(ev, optionList): void { - const show = !optionList[ev.target.option].show; - for (const [key] of Object.entries(optionList)) { - optionList[key].show = false; - } - optionList[ev.target.option].show = show; - this._toggle = !this._toggle; - } - - private _valueChanged(ev): void { - if (this.cantFireEvent) { - return; - } - - const { target } = ev; - if (this[`_${target.configValue}`] === target.value) { - return; - } - if (target.configValue) { - if (target.value === '') { - const tmpConfig = { ...this._config }; - delete tmpConfig[target.configValue]; - this._config = tmpConfig; - } else { - this._config = { - ...this._config, - [target.configValue]: target.checked !== undefined ? target.checked : (isNaN(target.value)) ? target.value : parseInt(target.value), - }; - } - } - fireEvent(this, 'config-changed', { config: this._config }); - } - - get entities() { - const entities = [...(this._config.entities || [])]; - - // convert any legacy entity strings into objects - return entities.map(entity => { - if (entity.entity) { - return entity; - } - return { entity, name: entity }; - }); - } - /** - * change the entity configuration - * @param {*} ev - */ - private _entityValueChanged(ev) { - if (this.cantFireEvent) { - return; - } - - const { target } = ev - let entityObjects = [...this.entities]; - - entityObjects = entityObjects.map(entity => { - if (entity.entity === target.entityId) { - if (this[`_${target.configValue}`] === target.value) { - return; - } - if (target.configValue && target.value === '') { - delete entity[target.configValue]; - return entity; - } else { - entity = { - ...entity, - [target.configValue]: target.checked !== undefined ? target.checked : (isNaN(target.value)) ? target.value : parseInt(target.value), - } - } - } - return entity; - }); - - this._config = Object.assign({}, this._config, { entities: entityObjects }); - fireEvent(this, 'config-changed', { config: this._config }); - } - /** - * add or remove calendar entities from config - * @param {*} ev - */ - private _entityChanged(ev) { - const { target } = ev; - - if (this.cantFireEvent) { - return; - } - let entityObjects = [...this.entities]; - if (target.checked) { - const originalEntity = this.hass.states[target.entityId]; - entityObjects.push({ entity: target.entityId, name: originalEntity.attributes.friendly_name || target.entityId }); - } else { - entityObjects = entityObjects.filter(entity => entity.entity !== target.entityId); - } - - this._config = Object.assign({}, this._config, { entities: entityObjects }); - fireEvent(this, 'config-changed', { config: this._config }); - } - /** - * stop events from firing if certains conditions not met - */ - get cantFireEvent() { - return (!this._config || !this.hass); - } -} diff --git a/src/lib/event.class.ts b/src/lib/event.class.ts index 2df8b99f..84f2ee78 100644 --- a/src/lib/event.class.ts +++ b/src/lib/event.class.ts @@ -95,9 +95,13 @@ export default class EventClass { } get daysLong() { - const fullDays = Math.round(this.endDateTime.subtract(1, 'minutes').endOf('day').diff(this.startDateTime.startOf('day'), 'hours') / 24) + if (this._globalConfig.showMultiDay) { + return this.rawEvent.daysLong; + } else { + const fullDays = Math.round(this.endDateTime.subtract(1, 'minutes').endOf('day').diff(this.startDateTime.startOf('day'), 'hours') / 24) - return fullDays > 1 ? fullDays : undefined; + return fullDays > 1 ? fullDays : undefined; + } } get isFirstDay() { @@ -221,7 +225,7 @@ export default class EventClass { } // check for days that are between multi days - they ARE all day - if (!this.isFirstDay && !this.isLastDay && this.daysLong) { + if (!this.isFirstDay && !this.isLastDay && this.daysLong && this._globalConfig.showMultiDay) { return true; } @@ -240,7 +244,6 @@ export default class EventClass { // TODO: Confirm this works as expected let daysLong = 2; const fullDays = Math.round(this.endDateTime.subtract(1, 'minutes').endOf('day').diff(this.startDateTime.startOf('day'), 'hours') / 24) - if (fullDays) { daysLong = fullDays; } @@ -252,7 +255,7 @@ export default class EventClass { copiedEvent.daysLong = daysLong; copiedEvent._isFirstDay = i === 0; - copiedEvent._isLastDay = i <= daysLong - 1 && i > 0; + copiedEvent._isLastDay = i === (daysLong - 1) && i > 0; // Create event object for each of the days the multi-event occurs on const partialEvent: EventClass = new EventClass(copiedEvent, this._globalConfig); diff --git a/src/lib/event.func.ts b/src/lib/event.func.ts index 49592597..3924de5c 100644 --- a/src/lib/event.func.ts +++ b/src/lib/event.func.ts @@ -299,10 +299,10 @@ export function processEvents(allEvents: any[], config: atomicCardConfig) { if (config.showMultiDay && newEvent.isMultiDay) { const partialEvents = newEvent.splitIntoMultiDay(newEvent); events = events.concat(partialEvents); + } else { events.push(newEvent); } - return events; }, []); diff --git a/yarn.lock b/yarn.lock index 18770541..e0042d3a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -148,7 +148,7 @@ "@babel/helper-split-export-declaration" "^7.22.5" semver "^6.3.0" -"@babel/helper-create-class-features-plugin@^7.22.10": +"@babel/helper-create-class-features-plugin@^7.22.10", "@babel/helper-create-class-features-plugin@^7.22.11": version "7.22.11" resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.11.tgz#4078686740459eeb4af3494a273ac09148dfb213" integrity sha512-y1grdYL4WzmUDBRGK0pDbIoFd7UZKoDurDzWEoNMYoj1EL+foGRQNyPWDcC+YyegN5y1DUsFFmzjGijB3nSVAQ== @@ -574,7 +574,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-async-generator-functions@^7.22.10": +"@babel/plugin-transform-async-generator-functions@^7.22.11": version "7.22.11" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.11.tgz#dbe3b1ff5a52e2e5edc4b19a60d325a675ed2649" integrity sha512-0pAlmeRJn6wU84zzZsEOx1JV1Jf8fqO9ok7wofIJwUnplYo247dcd24P+cMJht7ts9xkzdtB0EPHmOb7F+KzXw== @@ -615,12 +615,12 @@ "@babel/helper-create-class-features-plugin" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-class-static-block@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz#3e40c46f048403472d6f4183116d5e46b1bff5ba" - integrity sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA== +"@babel/plugin-transform-class-static-block@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.11.tgz#dc8cc6e498f55692ac6b4b89e56d87cec766c974" + integrity sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.11" "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-class-static-block" "^7.14.5" @@ -669,10 +669,10 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-dynamic-import@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz#d6908a8916a810468c4edff73b5b75bda6ad393e" - integrity sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ== +"@babel/plugin-transform-dynamic-import@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.11.tgz#2c7722d2a5c01839eaf31518c6ff96d408e447aa" + integrity sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-dynamic-import" "^7.8.3" @@ -685,10 +685,10 @@ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-export-namespace-from@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz#57c41cb1d0613d22f548fddd8b288eedb9973a5b" - integrity sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg== +"@babel/plugin-transform-export-namespace-from@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.11.tgz#b3c84c8f19880b6c7440108f8929caf6056db26c" + integrity sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" @@ -709,10 +709,10 @@ "@babel/helper-function-name" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-json-strings@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz#14b64352fdf7e1f737eed68de1a1468bd2a77ec0" - integrity sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A== +"@babel/plugin-transform-json-strings@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.11.tgz#689a34e1eed1928a40954e37f74509f48af67835" + integrity sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-json-strings" "^7.8.3" @@ -724,10 +724,10 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-logical-assignment-operators@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz#66ae5f068fd5a9a5dc570df16f56c2a8462a9d6c" - integrity sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA== +"@babel/plugin-transform-logical-assignment-operators@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.11.tgz#24c522a61688bde045b7d9bc3c2597a4d948fc9c" + integrity sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" @@ -747,22 +747,22 @@ "@babel/helper-module-transforms" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-commonjs@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz#7d9875908d19b8c0536085af7b053fd5bd651bfa" - integrity sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA== +"@babel/plugin-transform-modules-commonjs@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.11.tgz#d7991d3abad199c03b68ee66a64f216c47ffdfae" + integrity sha512-o2+bg7GDS60cJMgz9jWqRUsWkMzLCxp+jFDeDUT5sjRlAxcJWZ2ylNdI7QQ2+CH5hWu7OnN+Cv3htt7AkSf96g== dependencies: - "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-module-transforms" "^7.22.9" "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-simple-access" "^7.22.5" -"@babel/plugin-transform-modules-systemjs@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz#18c31410b5e579a0092638f95c896c2a98a5d496" - integrity sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ== +"@babel/plugin-transform-modules-systemjs@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.11.tgz#3386be5875d316493b517207e8f1931d93154bb1" + integrity sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA== dependencies: "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-module-transforms" "^7.22.9" "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-validator-identifier" "^7.22.5" @@ -789,29 +789,29 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-nullish-coalescing-operator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz#f8872c65776e0b552e0849d7596cddd416c3e381" - integrity sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA== +"@babel/plugin-transform-nullish-coalescing-operator@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.11.tgz#debef6c8ba795f5ac67cd861a81b744c5d38d9fc" + integrity sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" -"@babel/plugin-transform-numeric-separator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz#57226a2ed9e512b9b446517ab6fa2d17abb83f58" - integrity sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g== +"@babel/plugin-transform-numeric-separator@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.11.tgz#498d77dc45a6c6db74bb829c02a01c1d719cbfbd" + integrity sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@babel/plugin-transform-object-rest-spread@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz#9686dc3447df4753b0b2a2fae7e8bc33cdc1f2e1" - integrity sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ== +"@babel/plugin-transform-object-rest-spread@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.11.tgz#dbbb06ce783cd994a8f430d8cefa553e9b42ca62" + integrity sha512-nX8cPFa6+UmbepISvlf5jhQyaC7ASs/7UxHmMkuJ/k5xSHvDPPaibMo+v3TXwU/Pjqhep/nFNpd3zn4YR59pnw== dependencies: - "@babel/compat-data" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.5" + "@babel/compat-data" "^7.22.9" + "@babel/helper-compilation-targets" "^7.22.10" "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-object-rest-spread" "^7.8.3" "@babel/plugin-transform-parameters" "^7.22.5" @@ -824,18 +824,18 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-replace-supers" "^7.22.5" -"@babel/plugin-transform-optional-catch-binding@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz#842080be3076703be0eaf32ead6ac8174edee333" - integrity sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg== +"@babel/plugin-transform-optional-catch-binding@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.11.tgz#461cc4f578a127bb055527b3e77404cad38c08e0" + integrity sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-transform-optional-chaining@^7.22.10": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.11.tgz#062f0071f777aa06b31332cd90318d6b76444b74" - integrity sha512-7X2vGqH2ZKu7Imx0C+o5OysRwtF/wzdCAqmcD1N1v2Ww8CtOSC+p+VoV76skm47DLvBZ8kBFic+egqxM9S/p4g== +"@babel/plugin-transform-optional-chaining@^7.22.12": + version "7.22.12" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.12.tgz#d7ebf6a88cd2f4d307b0e000ab630acd8124b333" + integrity sha512-7XXCVqZtyFWqjDsYDY4T45w4mlx1rf7aOgkc/Ww76xkgBiOlmjPkx36PBLHa1k1rwWvVgYMPsbuVnIamx2ZQJw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" @@ -865,13 +865,13 @@ "@babel/helper-create-class-features-plugin" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-private-property-in-object@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz#07a77f28cbb251546a43d175a1dda4cf3ef83e32" - integrity sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ== +"@babel/plugin-transform-private-property-in-object@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.11.tgz#ad45c4fc440e9cb84c718ed0906d96cf40f9a4e1" + integrity sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.11" "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-private-property-in-object" "^7.14.5" @@ -964,10 +964,10 @@ "@babel/helper-create-regexp-features-plugin" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/preset-env@^7.22.10": - version "7.22.10" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.10.tgz#3263b9fe2c8823d191d28e61eac60a79f9ce8a0f" - integrity sha512-riHpLb1drNkpLlocmSyEg4oYJIQFeXAK/d7rI6mbD0XsvoTOOweXDmQPG/ErxsEhWk3rl3Q/3F6RFQlVFS8m0A== +"@babel/preset-env@^7.22.14": + version "7.22.14" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.14.tgz#1cbb468d899f64fa71c53446f13b7ff8c0005cc1" + integrity sha512-daodMIoVo+ol/g+//c/AH+szBkFj4STQUikvBijRGL72Ph+w+AMTSh55DUETe8KJlPlDT1k/mp7NBfOuiWmoig== dependencies: "@babel/compat-data" "^7.22.9" "@babel/helper-compilation-targets" "^7.22.10" @@ -995,41 +995,41 @@ "@babel/plugin-syntax-top-level-await" "^7.14.5" "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" "@babel/plugin-transform-arrow-functions" "^7.22.5" - "@babel/plugin-transform-async-generator-functions" "^7.22.10" + "@babel/plugin-transform-async-generator-functions" "^7.22.11" "@babel/plugin-transform-async-to-generator" "^7.22.5" "@babel/plugin-transform-block-scoped-functions" "^7.22.5" "@babel/plugin-transform-block-scoping" "^7.22.10" "@babel/plugin-transform-class-properties" "^7.22.5" - "@babel/plugin-transform-class-static-block" "^7.22.5" + "@babel/plugin-transform-class-static-block" "^7.22.11" "@babel/plugin-transform-classes" "^7.22.6" "@babel/plugin-transform-computed-properties" "^7.22.5" "@babel/plugin-transform-destructuring" "^7.22.10" "@babel/plugin-transform-dotall-regex" "^7.22.5" "@babel/plugin-transform-duplicate-keys" "^7.22.5" - "@babel/plugin-transform-dynamic-import" "^7.22.5" + "@babel/plugin-transform-dynamic-import" "^7.22.11" "@babel/plugin-transform-exponentiation-operator" "^7.22.5" - "@babel/plugin-transform-export-namespace-from" "^7.22.5" + "@babel/plugin-transform-export-namespace-from" "^7.22.11" "@babel/plugin-transform-for-of" "^7.22.5" "@babel/plugin-transform-function-name" "^7.22.5" - "@babel/plugin-transform-json-strings" "^7.22.5" + "@babel/plugin-transform-json-strings" "^7.22.11" "@babel/plugin-transform-literals" "^7.22.5" - "@babel/plugin-transform-logical-assignment-operators" "^7.22.5" + "@babel/plugin-transform-logical-assignment-operators" "^7.22.11" "@babel/plugin-transform-member-expression-literals" "^7.22.5" "@babel/plugin-transform-modules-amd" "^7.22.5" - "@babel/plugin-transform-modules-commonjs" "^7.22.5" - "@babel/plugin-transform-modules-systemjs" "^7.22.5" + "@babel/plugin-transform-modules-commonjs" "^7.22.11" + "@babel/plugin-transform-modules-systemjs" "^7.22.11" "@babel/plugin-transform-modules-umd" "^7.22.5" "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" "@babel/plugin-transform-new-target" "^7.22.5" - "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.5" - "@babel/plugin-transform-numeric-separator" "^7.22.5" - "@babel/plugin-transform-object-rest-spread" "^7.22.5" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.11" + "@babel/plugin-transform-numeric-separator" "^7.22.11" + "@babel/plugin-transform-object-rest-spread" "^7.22.11" "@babel/plugin-transform-object-super" "^7.22.5" - "@babel/plugin-transform-optional-catch-binding" "^7.22.5" - "@babel/plugin-transform-optional-chaining" "^7.22.10" + "@babel/plugin-transform-optional-catch-binding" "^7.22.11" + "@babel/plugin-transform-optional-chaining" "^7.22.12" "@babel/plugin-transform-parameters" "^7.22.5" "@babel/plugin-transform-private-methods" "^7.22.5" - "@babel/plugin-transform-private-property-in-object" "^7.22.5" + "@babel/plugin-transform-private-property-in-object" "^7.22.11" "@babel/plugin-transform-property-literals" "^7.22.5" "@babel/plugin-transform-regenerator" "^7.22.10" "@babel/plugin-transform-reserved-words" "^7.22.5" @@ -1043,7 +1043,7 @@ "@babel/plugin-transform-unicode-regex" "^7.22.5" "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" "@babel/preset-modules" "0.1.6-no-external-plugins" - "@babel/types" "^7.22.10" + "@babel/types" "^7.22.11" babel-plugin-polyfill-corejs2 "^0.4.5" babel-plugin-polyfill-corejs3 "^0.8.3" babel-plugin-polyfill-regenerator "^0.5.2" @@ -1953,6 +1953,16 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" +"@npmcli/agent@^2.0.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@npmcli/agent/-/agent-2.1.0.tgz#24b5ddb434cdbd94d553e6cac761638e0c49d36c" + integrity sha512-/HFJP3a/DzgIg+6TWVee3bQmnBcWeKKYE9DKQqS8SWpAV8oYDTn/zkDM8iQ7bWI6kDDgNfHOlEFZZpN/UXMwig== + dependencies: + http-proxy-agent "^7.0.0" + https-proxy-agent "^7.0.1" + lru-cache "^10.0.1" + socks-proxy-agent "^8.0.1" + "@npmcli/arborist@^6.3.0": version "6.3.0" resolved "https://registry.yarnpkg.com/@npmcli/arborist/-/arborist-6.3.0.tgz#df37c79f7b82a2de8986fb9061b40efb4d188a38" @@ -1992,6 +2002,45 @@ treeverse "^3.0.0" walk-up-path "^3.0.1" +"@npmcli/arborist@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/arborist/-/arborist-7.0.0.tgz#02cd6968f975fc264d38320e71f99fd5cacff1d7" + integrity sha512-8eBcxisujfNnU149HwevTgwRVCILk8bljZ3F3fLSXzJqYL0CW5an6r7m5h9apdZRbKl13yxeOquQ5EtrjLIpnQ== + dependencies: + "@isaacs/string-locale-compare" "^1.1.0" + "@npmcli/fs" "^3.1.0" + "@npmcli/installed-package-contents" "^2.0.2" + "@npmcli/map-workspaces" "^3.0.2" + "@npmcli/metavuln-calculator" "^7.0.0" + "@npmcli/name-from-folder" "^2.0.0" + "@npmcli/node-gyp" "^3.0.0" + "@npmcli/package-json" "^5.0.0" + "@npmcli/query" "^3.0.0" + "@npmcli/run-script" "^7.0.1" + bin-links "^4.0.1" + cacache "^18.0.0" + common-ancestor-path "^1.0.1" + hosted-git-info "^7.0.0" + json-parse-even-better-errors "^3.0.0" + json-stringify-nice "^1.1.4" + minimatch "^9.0.0" + nopt "^7.0.0" + npm-install-checks "^6.2.0" + npm-package-arg "^11.0.0" + npm-pick-manifest "^9.0.0" + npm-registry-fetch "^16.0.0" + npmlog "^7.0.1" + pacote "^17.0.4" + parse-conflict-json "^3.0.0" + proc-log "^3.0.0" + promise-all-reject-late "^1.0.0" + promise-call-limit "^1.0.2" + read-package-json-fast "^3.0.2" + semver "^7.3.7" + ssri "^10.0.5" + treeverse "^3.0.0" + walk-up-path "^3.0.1" + "@npmcli/config@^6.2.1": version "6.2.1" resolved "https://registry.yarnpkg.com/@npmcli/config/-/config-6.2.1.tgz#954cc09b727b6bfc087cb1d2a48994dc342e45cc" @@ -2006,6 +2055,20 @@ semver "^7.3.5" walk-up-path "^3.0.1" +"@npmcli/config@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@npmcli/config/-/config-7.1.0.tgz#99c67a45eb7f44d704e80b93c82aa4f6e3eddbe9" + integrity sha512-n0LgXsaz7ZzCNq71nk5jGAwKGRYSJl+9TWQfJTvqIATmftw1M6PaY2/SE9u4sICYHa95zH1BQyB6ZUqPZAd1CA== + dependencies: + "@npmcli/map-workspaces" "^3.0.2" + ci-info "^3.8.0" + ini "^4.1.0" + nopt "^7.0.0" + proc-log "^3.0.0" + read-package-json-fast "^3.0.2" + semver "^7.3.5" + walk-up-path "^3.0.1" + "@npmcli/disparity-colors@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@npmcli/disparity-colors/-/disparity-colors-3.0.0.tgz#60ea8c6eb5ba9de2d1950e15b06205b2c3ab7833" @@ -2034,6 +2097,20 @@ semver "^7.3.5" which "^3.0.0" +"@npmcli/git@^5.0.0", "@npmcli/git@^5.0.3": + version "5.0.3" + resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-5.0.3.tgz#ad3ede0994bcf716ddb63d361f3ea16cb72d878c" + integrity sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw== + dependencies: + "@npmcli/promise-spawn" "^7.0.0" + lru-cache "^10.0.1" + npm-pick-manifest "^9.0.0" + proc-log "^3.0.0" + promise-inflight "^1.0.1" + promise-retry "^2.0.1" + semver "^7.3.5" + which "^4.0.0" + "@npmcli/installed-package-contents@^2.0.1", "@npmcli/installed-package-contents@^2.0.2": version "2.0.2" resolved "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz#bfd817eccd9e8df200919e73f57f9e3d9e4f9e33" @@ -2062,6 +2139,16 @@ pacote "^15.0.0" semver "^7.3.5" +"@npmcli/metavuln-calculator@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/metavuln-calculator/-/metavuln-calculator-7.0.0.tgz#fb59245926d7f677db904177f9aca15ac883d6cb" + integrity sha512-Pw0tyX02VkpqlIQlG2TeiJNsdrecYeUU0ubZZa9pi3N37GCsxI+en43u4hYFdq+eSx1A9a9vwFAUyqEtKFsbHQ== + dependencies: + cacache "^18.0.0" + json-parse-even-better-errors "^3.0.0" + pacote "^17.0.0" + semver "^7.3.5" + "@npmcli/name-from-folder@^2.0.0": version "2.0.0" resolved "https://registry.yarnpkg.com/@npmcli/name-from-folder/-/name-from-folder-2.0.0.tgz#c44d3a7c6d5c184bb6036f4d5995eee298945815" @@ -2085,6 +2172,19 @@ proc-log "^3.0.0" semver "^7.5.3" +"@npmcli/package-json@^5.0.0": + version "5.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-5.0.0.tgz#77d0f8b17096763ccbd8af03b7117ba6e34d6e91" + integrity sha512-OI2zdYBLhQ7kpNPaJxiflofYIpkNLi+lnGdzqUOfRmCF3r2l1nadcjtCYMJKv/Utm/ZtlffaUuTiAktPHbc17g== + dependencies: + "@npmcli/git" "^5.0.0" + glob "^10.2.2" + hosted-git-info "^7.0.0" + json-parse-even-better-errors "^3.0.0" + normalize-package-data "^6.0.0" + proc-log "^3.0.0" + semver "^7.5.3" + "@npmcli/promise-spawn@^6.0.0", "@npmcli/promise-spawn@^6.0.1", "@npmcli/promise-spawn@^6.0.2": version "6.0.2" resolved "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz#c8bc4fa2bd0f01cb979d8798ba038f314cfa70f2" @@ -2092,6 +2192,13 @@ dependencies: which "^3.0.0" +"@npmcli/promise-spawn@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-7.0.0.tgz#fd1c64ed4ff2341e503e1f390c62640a6540df09" + integrity sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ== + dependencies: + which "^4.0.0" + "@npmcli/query@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@npmcli/query/-/query-3.0.0.tgz#51a0dfb85811e04f244171f164b6bc83b36113a7" @@ -2110,6 +2217,17 @@ read-package-json-fast "^3.0.0" which "^3.0.0" +"@npmcli/run-script@^7.0.0", "@npmcli/run-script@^7.0.1": + version "7.0.1" + resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-7.0.1.tgz#18eebaed96214357f618a82510411319181417bd" + integrity sha512-Od/JMrgkjZ8alyBE0IzeqZDiF1jgMez9Gkc/OYrCkHHiXNwM0wc6s7+h+xM7kYDZkS0tAoOLr9VvygyE5+2F7g== + dependencies: + "@npmcli/node-gyp" "^3.0.0" + "@npmcli/promise-spawn" "^7.0.0" + node-gyp "^9.0.0" + read-package-json-fast "^3.0.0" + which "^4.0.0" + "@octokit/auth-token@^4.0.0": version "4.0.0" resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-4.0.0.tgz#40d203ea827b9f17f42a29c6afb93b7745ef80c7" @@ -2436,12 +2554,19 @@ dependencies: "@sigstore/protobuf-specs" "^0.2.0" +"@sigstore/bundle@^2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-2.1.0.tgz#c6140ca97b68815edf7c4fb7bdbf58d656525c39" + integrity sha512-89uOo6yh/oxaU8AeOUnVrTdVMcGk9Q1hJa7Hkvalc6G3Z3CupWk4Xe9djSgJm9fMkH69s0P0cVHUoKSOemLdng== + dependencies: + "@sigstore/protobuf-specs" "^0.2.1" + "@sigstore/protobuf-specs@^0.1.0": version "0.1.0" resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz#957cb64ea2f5ce527cc9cf02a096baeb0d2b99b4" integrity sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ== -"@sigstore/protobuf-specs@^0.2.0": +"@sigstore/protobuf-specs@^0.2.0", "@sigstore/protobuf-specs@^0.2.1": version "0.2.1" resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.2.1.tgz#be9ef4f3c38052c43bd399d3f792c97ff9e2277b" integrity sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A== @@ -2455,6 +2580,15 @@ "@sigstore/protobuf-specs" "^0.2.0" make-fetch-happen "^11.0.1" +"@sigstore/sign@^2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@sigstore/sign/-/sign-2.1.0.tgz#801f4b5f60e13ecd1925117a7d084ab7b2199f01" + integrity sha512-4VRpfJxs+8eLqzLVrZngVNExVA/zAhVbi4UT4zmtLi4xRd7vz5qie834OgkrGsLlLB1B2nz/3wUxT1XAUBe8gw== + dependencies: + "@sigstore/bundle" "^2.1.0" + "@sigstore/protobuf-specs" "^0.2.1" + make-fetch-happen "^13.0.0" + "@sigstore/tuf@^1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-1.0.0.tgz#13b69323e7bf8de458cd6c952c57acd1169772a5" @@ -2472,6 +2606,14 @@ "@sigstore/protobuf-specs" "^0.2.0" tuf-js "^1.1.7" +"@sigstore/tuf@^2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-2.1.0.tgz#8bf99444e431ba36198d8f742296b48170dcb486" + integrity sha512-BUoVCx+7Wj+8moEGvUU2MyBI+f93lmg1CLmoG6KrhQMeDyAG8HAZNk+YRCNuvwvSDCfPhwsj37Bg63/Q+bnGsw== + dependencies: + "@sigstore/protobuf-specs" "^0.2.1" + tuf-js "^2.1.0" + "@tootallnate/once@2": version "2.0.0" resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" @@ -2502,6 +2644,11 @@ resolved "https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz#eade9fd1f537993bc1f0949f3aea276ecc4fab31" integrity sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ== +"@tufjs/canonical-json@2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz#a52f61a3d7374833fca945b2549bc30a2dd40d0a" + integrity sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA== + "@tufjs/models@1.0.4": version "1.0.4" resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-1.0.4.tgz#5a689630f6b9dbda338d4b208019336562f176ef" @@ -2510,6 +2657,14 @@ "@tufjs/canonical-json" "1.0.0" minimatch "^9.0.0" +"@tufjs/models@2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-2.0.0.tgz#c7ab241cf11dd29deb213d6817dabb8c99ce0863" + integrity sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg== + dependencies: + "@tufjs/canonical-json" "2.0.0" + minimatch "^9.0.3" + "@types/estree@*", "@types/estree@^1.0.0": version "1.0.1" resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.1.tgz#aa22750962f3bf0e79d753d3cc067f010c95f194" @@ -2550,16 +2705,16 @@ resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.3.tgz#a136f83b0758698df454e328759dbd3d44555311" integrity sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g== -"@typescript-eslint/eslint-plugin@^6.4.1": - version "6.4.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.4.1.tgz#bc0c6f000134b53c304ad0bec4ee4753cd3e89d2" - integrity sha512-3F5PtBzUW0dYlq77Lcqo13fv+58KDwUib3BddilE8ajPJT+faGgxmI9Sw+I8ZS22BYwoir9ZhNXcLi+S+I2bkw== +"@typescript-eslint/eslint-plugin@^6.5.0": + version "6.5.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.5.0.tgz#5cee33edf0d45d5ec773e3b3111206b098ac8599" + integrity sha512-2pktILyjvMaScU6iK3925uvGU87E+N9rh372uGZgiMYwafaw9SXq86U04XPq3UH6tzRvNgBsub6x2DacHc33lw== dependencies: "@eslint-community/regexpp" "^4.5.1" - "@typescript-eslint/scope-manager" "6.4.1" - "@typescript-eslint/type-utils" "6.4.1" - "@typescript-eslint/utils" "6.4.1" - "@typescript-eslint/visitor-keys" "6.4.1" + "@typescript-eslint/scope-manager" "6.5.0" + "@typescript-eslint/type-utils" "6.5.0" + "@typescript-eslint/utils" "6.5.0" + "@typescript-eslint/visitor-keys" "6.5.0" debug "^4.3.4" graphemer "^1.4.0" ignore "^5.2.4" @@ -2567,72 +2722,72 @@ semver "^7.5.4" ts-api-utils "^1.0.1" -"@typescript-eslint/parser@^6.4.1": - version "6.4.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.4.1.tgz#85ad550bf4ac4aa227504f1becb828f8e46c44e3" - integrity sha512-610G6KHymg9V7EqOaNBMtD1GgpAmGROsmfHJPXNLCU9bfIuLrkdOygltK784F6Crboyd5tBFayPB7Sf0McrQwg== +"@typescript-eslint/parser@^6.5.0": + version "6.5.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.5.0.tgz#3d6ed231c5e307c5f5f4a0d86893ec01e92b8c77" + integrity sha512-LMAVtR5GN8nY0G0BadkG0XIe4AcNMeyEy3DyhKGAh9k4pLSMBO7rF29JvDBpZGCmp5Pgz5RLHP6eCpSYZJQDuQ== dependencies: - "@typescript-eslint/scope-manager" "6.4.1" - "@typescript-eslint/types" "6.4.1" - "@typescript-eslint/typescript-estree" "6.4.1" - "@typescript-eslint/visitor-keys" "6.4.1" + "@typescript-eslint/scope-manager" "6.5.0" + "@typescript-eslint/types" "6.5.0" + "@typescript-eslint/typescript-estree" "6.5.0" + "@typescript-eslint/visitor-keys" "6.5.0" debug "^4.3.4" -"@typescript-eslint/scope-manager@6.4.1": - version "6.4.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.4.1.tgz#4b073a30be2dbe603e44e9ae0cff7e1d3ed19278" - integrity sha512-p/OavqOQfm4/Hdrr7kvacOSFjwQ2rrDVJRPxt/o0TOWdFnjJptnjnZ+sYDR7fi4OimvIuKp+2LCkc+rt9fIW+A== +"@typescript-eslint/scope-manager@6.5.0": + version "6.5.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.5.0.tgz#f2cb20895aaad41b3ad27cc3a338ce8598f261c5" + integrity sha512-A8hZ7OlxURricpycp5kdPTH3XnjG85UpJS6Fn4VzeoH4T388gQJ/PGP4ole5NfKt4WDVhmLaQ/dBLNDC4Xl/Kw== dependencies: - "@typescript-eslint/types" "6.4.1" - "@typescript-eslint/visitor-keys" "6.4.1" + "@typescript-eslint/types" "6.5.0" + "@typescript-eslint/visitor-keys" "6.5.0" -"@typescript-eslint/type-utils@6.4.1": - version "6.4.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.4.1.tgz#fa21cb13016c8d6f352fe9b2d6c9ab6edc2d1857" - integrity sha512-7ON8M8NXh73SGZ5XvIqWHjgX2f+vvaOarNliGhjrJnv1vdjG0LVIz+ToYfPirOoBi56jxAKLfsLm40+RvxVVXA== +"@typescript-eslint/type-utils@6.5.0": + version "6.5.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.5.0.tgz#6d246c93739282bc0d2e623f28d0dec6cfcc38d7" + integrity sha512-f7OcZOkRivtujIBQ4yrJNIuwyCQO1OjocVqntl9dgSIZAdKqicj3xFDqDOzHDlGCZX990LqhLQXWRnQvsapq8A== dependencies: - "@typescript-eslint/typescript-estree" "6.4.1" - "@typescript-eslint/utils" "6.4.1" + "@typescript-eslint/typescript-estree" "6.5.0" + "@typescript-eslint/utils" "6.5.0" debug "^4.3.4" ts-api-utils "^1.0.1" -"@typescript-eslint/types@6.4.1": - version "6.4.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.4.1.tgz#b2c61159f46dda210fed9f117f5d027f65bb5c3b" - integrity sha512-zAAopbNuYu++ijY1GV2ylCsQsi3B8QvfPHVqhGdDcbx/NK5lkqMnCGU53amAjccSpk+LfeONxwzUhDzArSfZJg== +"@typescript-eslint/types@6.5.0": + version "6.5.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.5.0.tgz#f4e55cfd99ac5346ea772770bf212a3e689a8f04" + integrity sha512-eqLLOEF5/lU8jW3Bw+8auf4lZSbbljHR2saKnYqON12G/WsJrGeeDHWuQePoEf9ro22+JkbPfWQwKEC5WwLQ3w== -"@typescript-eslint/typescript-estree@6.4.1": - version "6.4.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.4.1.tgz#91ff88101c710adb0f70a317f2f65efa9441da45" - integrity sha512-xF6Y7SatVE/OyV93h1xGgfOkHr2iXuo8ip0gbfzaKeGGuKiAnzS+HtVhSPx8Www243bwlW8IF7X0/B62SzFftg== +"@typescript-eslint/typescript-estree@6.5.0": + version "6.5.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.5.0.tgz#1cef6bc822585e9ef89d88834bc902d911d747ed" + integrity sha512-q0rGwSe9e5Kk/XzliB9h2LBc9tmXX25G0833r7kffbl5437FPWb2tbpIV9wAATebC/018pGa9fwPDuvGN+LxWQ== dependencies: - "@typescript-eslint/types" "6.4.1" - "@typescript-eslint/visitor-keys" "6.4.1" + "@typescript-eslint/types" "6.5.0" + "@typescript-eslint/visitor-keys" "6.5.0" debug "^4.3.4" globby "^11.1.0" is-glob "^4.0.3" semver "^7.5.4" ts-api-utils "^1.0.1" -"@typescript-eslint/utils@6.4.1": - version "6.4.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.4.1.tgz#81bf62ff0c3119a26c19fab683582e29450717bc" - integrity sha512-F/6r2RieNeorU0zhqZNv89s9bDZSovv3bZQpUNOmmQK1L80/cV4KEu95YUJWi75u5PhboFoKUJBnZ4FQcoqhDw== +"@typescript-eslint/utils@6.5.0": + version "6.5.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.5.0.tgz#6668bee4f7f24978b11df8a2ea42d56eebc4662c" + integrity sha512-9nqtjkNykFzeVtt9Pj6lyR9WEdd8npPhhIPM992FWVkZuS6tmxHfGVnlUcjpUP2hv8r4w35nT33mlxd+Be1ACQ== dependencies: "@eslint-community/eslint-utils" "^4.4.0" "@types/json-schema" "^7.0.12" "@types/semver" "^7.5.0" - "@typescript-eslint/scope-manager" "6.4.1" - "@typescript-eslint/types" "6.4.1" - "@typescript-eslint/typescript-estree" "6.4.1" + "@typescript-eslint/scope-manager" "6.5.0" + "@typescript-eslint/types" "6.5.0" + "@typescript-eslint/typescript-estree" "6.5.0" semver "^7.5.4" -"@typescript-eslint/visitor-keys@6.4.1": - version "6.4.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.4.1.tgz#e3ccf7b8d42e625946ac5094ed92a405fb4115e0" - integrity sha512-y/TyRJsbZPkJIZQXrHfdnxVnxyKegnpEvnRGNam7s3TRR2ykGefEWOhaef00/UUN3IZxizS7BTO3svd3lCOJRQ== +"@typescript-eslint/visitor-keys@6.5.0": + version "6.5.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.5.0.tgz#1a6f474a0170a447b76f0699ce6700110fd11436" + integrity sha512-yCB/2wkbv3hPsh02ZS8dFQnij9VVQXJMN/gbQsaaY+zxALkZnxa/wagvLEFsAWMPv7d7lxQmNsIzGU1w/T/WyA== dependencies: - "@typescript-eslint/types" "6.4.1" + "@typescript-eslint/types" "6.5.0" eslint-visitor-keys "^3.4.1" "@webcomponents/webcomponentsjs@^2.8.0": @@ -2692,7 +2847,7 @@ agent-base@6, agent-base@^6.0.2: dependencies: debug "4" -agent-base@^7.0.2, agent-base@^7.1.0: +agent-base@^7.0.1, agent-base@^7.0.2, agent-base@^7.1.0: version "7.1.0" resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.0.tgz#536802b76bc0b34aa50195eb2442276d613e3434" integrity sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg== @@ -3240,6 +3395,24 @@ cacache@^17.0.0, cacache@^17.0.4, cacache@^17.1.3: tar "^6.1.11" unique-filename "^3.0.0" +cacache@^18.0.0: + version "18.0.0" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-18.0.0.tgz#17a9ecd6e1be2564ebe6cdca5f7cfed2bfeb6ddc" + integrity sha512-I7mVOPl3PUCeRub1U8YoGz2Lqv9WOBpobZ8RyWFXmReuILz+3OAyTa5oH3QPdtKZD7N0Yk00aLfzn0qvp8dZ1w== + dependencies: + "@npmcli/fs" "^3.1.0" + fs-minipass "^3.0.0" + glob "^10.2.2" + lru-cache "^10.0.1" + minipass "^7.0.3" + minipass-collect "^1.0.2" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + p-map "^4.0.0" + ssri "^10.0.0" + tar "^6.1.11" + unique-filename "^3.0.0" + cachedir@2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8" @@ -3516,10 +3689,10 @@ conventional-changelog-angular@^6.0.0: dependencies: compare-func "^2.0.0" -conventional-changelog-conventionalcommits@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-6.1.0.tgz#3bad05f4eea64e423d3d90fc50c17d2c8cf17652" - integrity sha512-3cS3GEtR78zTfMzk0AizXKKIdN4OvSh7ibNz6/DPbhWWQu7LqE/8+/GqSodV+sywUR2gpJAdP/1JFf4XtN7Zpw== +conventional-changelog-conventionalcommits@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-7.0.1.tgz#b47e7d1b3a0c1e370c4c27eea741f06729913f5f" + integrity sha512-VfFJxBmi+LYXeb4pIfZGbuaFCpWZh0qXbUAKP/s6B8tigV6R4D8j5PDlTtMMWawa7+DcNySVoF7kPWz0EMYuCQ== dependencies: compare-func "^2.0.0" @@ -4288,6 +4461,13 @@ fs-minipass@^3.0.0, fs-minipass@^3.0.2: dependencies: minipass "^5.0.0" +fs-minipass@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz#79a85981c4dc120065e96f62086bf6f9dc26cc54" + integrity sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw== + dependencies: + minipass "^7.0.3" + fs-readdir-recursive@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" @@ -4421,6 +4601,17 @@ glob@^10.2.7: minipass "^5.0.0 || ^6.0.2" path-scurry "^1.7.0" +glob@^10.3.3: + version "10.3.4" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.4.tgz#c85c9c7ab98669102b6defda76d35c5b1ef9766f" + integrity sha512-6LFElP3A+i/Q8XQKEvZjkEWEOTgAIALR9AO2rwT8bgPhDd1anmqDJDZ6lLddI4ehxxxR1S5RIqKe1uapMQfYaQ== + dependencies: + foreground-child "^3.1.0" + jackspeak "^2.0.3" + minimatch "^9.0.1" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + path-scurry "^1.10.1" + glob@^8.0.3: version "8.1.0" resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" @@ -4621,7 +4812,7 @@ https-proxy-agent@^5.0.0: agent-base "6" debug "4" -https-proxy-agent@^7.0.0: +https-proxy-agent@^7.0.0, https-proxy-agent@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.1.tgz#0277e28f13a07d45c663633841e20a40aaafe0ab" integrity sha512-Eun8zV0kcYS1g19r78osiQLEFIRspRUDd9tIfBCTBPBeMieF/EsJNL8VI3xOIdYRDEkjQnqOYPsZ2DsWsVsFwQ== @@ -4746,6 +4937,19 @@ init-package-json@^5.0.0: validate-npm-package-license "^3.0.4" validate-npm-package-name "^5.0.0" +init-package-json@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/init-package-json/-/init-package-json-6.0.0.tgz#7d4daeaacc72be300c616481e5c155d5048a18b4" + integrity sha512-AmXD+Aht5iZGo/y1KUtZSUQ1SltesXHxQuc7qeNz0eUGx/8WgkHeeQLSFdM8l9YpmnnamGIbAxVdAs2xoLRKRQ== + dependencies: + npm-package-arg "^11.0.0" + promzard "^1.0.0" + read "^2.0.0" + read-package-json "^7.0.0" + semver "^7.3.5" + validate-npm-package-license "^3.0.4" + validate-npm-package-name "^5.0.0" + inquirer@8.2.5: version "8.2.5" resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.5.tgz#d8654a7542c35a9b9e069d27e2df4858784d54f8" @@ -4970,6 +5174,11 @@ isexe@^2.0.0: resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== +isexe@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-3.1.1.tgz#4a407e2bd78ddfb14bea0c27c6f7072dde775f0d" + integrity sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ== + issue-parser@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/issue-parser/-/issue-parser-6.0.0.tgz#b1edd06315d4f2044a9755daf85fdafde9b4014a" @@ -5107,6 +5316,14 @@ libnpmaccess@^7.0.2: npm-package-arg "^10.1.0" npm-registry-fetch "^14.0.3" +libnpmaccess@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/libnpmaccess/-/libnpmaccess-8.0.0.tgz#f20f84633e49b4a50499810b550ebd1e279b9821" + integrity sha512-aqKf4L5haaLkFm05RQ0p+7E+f7BplkR+na2gC/e59/OAH1vsNoy/L3NxHXX8OuEwxSlj9M1nd0XXtuFkZpV3gw== + dependencies: + npm-package-arg "^11.0.0" + npm-registry-fetch "^16.0.0" + libnpmdiff@^5.0.19: version "5.0.19" resolved "https://registry.yarnpkg.com/libnpmdiff/-/libnpmdiff-5.0.19.tgz#c56a8b1fcd7690f12e527c0ab21dbdbd259c27fe" @@ -5122,6 +5339,21 @@ libnpmdiff@^5.0.19: pacote "^15.0.8" tar "^6.1.13" +libnpmdiff@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/libnpmdiff/-/libnpmdiff-6.0.0.tgz#9986b950d56897704cc9b2e3888ca412c8135770" + integrity sha512-uualIXpF70ZAS4CRScU8E8WRNdJSy0kX2c5U3W4i5VyovLEUTNEp1gaT2xXE0WZIdzeJZEGlv5nFhMfI+AxOSg== + dependencies: + "@npmcli/arborist" "^7.0.0" + "@npmcli/disparity-colors" "^3.0.0" + "@npmcli/installed-package-contents" "^2.0.2" + binary-extensions "^2.2.0" + diff "^5.1.0" + minimatch "^9.0.0" + npm-package-arg "^11.0.0" + pacote "^17.0.4" + tar "^6.1.13" + libnpmexec@^6.0.3: version "6.0.3" resolved "https://registry.yarnpkg.com/libnpmexec/-/libnpmexec-6.0.3.tgz#f7ea9c028443d890297e1bbe2d5605f68b118470" @@ -5139,6 +5371,23 @@ libnpmexec@^6.0.3: semver "^7.3.7" walk-up-path "^3.0.1" +libnpmexec@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/libnpmexec/-/libnpmexec-7.0.0.tgz#73fdb3e6feaf9ed638380ae7d2cebd1e2f2e6385" + integrity sha512-dWkMX5vrDXSfdThp+aN0zzX5OoZY42Gb41taLHqXURWiGUjVUFYub+eK+vgjDub3f9RFW8DgRPsH3MQShDts8g== + dependencies: + "@npmcli/arborist" "^7.0.0" + "@npmcli/run-script" "^7.0.1" + ci-info "^3.7.1" + npm-package-arg "^11.0.0" + npmlog "^7.0.1" + pacote "^17.0.4" + proc-log "^3.0.0" + read "^2.0.0" + read-package-json-fast "^3.0.2" + semver "^7.3.7" + walk-up-path "^3.0.1" + libnpmfund@^4.0.19: version "4.0.19" resolved "https://registry.yarnpkg.com/libnpmfund/-/libnpmfund-4.0.19.tgz#ec615b9a5fb996185fca132420b6be265dc485f1" @@ -5146,6 +5395,21 @@ libnpmfund@^4.0.19: dependencies: "@npmcli/arborist" "^6.3.0" +libnpmfund@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/libnpmfund/-/libnpmfund-4.1.0.tgz#5bde37c048323909ca6564cda6e3567333d65131" + integrity sha512-cCJuaVjWRP/FCnzgEGk9Z5os+H75JT6UKthPTgWp6Z9OFWv4rcqWEa/F0b1xuvRC7jsXRWbeCx07CZRDZv9C3Q== + dependencies: + "@npmcli/arborist" "^7.0.0" + +libnpmhook@^10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/libnpmhook/-/libnpmhook-10.0.0.tgz#8aba53d124bac812fbd37350ee4a6a0e5ac0e3ff" + integrity sha512-PdEuOC1woGbrmxsvMdZCLYFirwtroIaxCzire/h55BfnqHOC73yQylIe9V2T9/1WL6f+PXIoZETR0dhJpLLFWQ== + dependencies: + aproba "^2.0.0" + npm-registry-fetch "^16.0.0" + libnpmhook@^9.0.3: version "9.0.3" resolved "https://registry.yarnpkg.com/libnpmhook/-/libnpmhook-9.0.3.tgz#5dbd6a146feb7e11993d36a26f750ae2347bb1d9" @@ -5162,6 +5426,14 @@ libnpmorg@^5.0.4: aproba "^2.0.0" npm-registry-fetch "^14.0.3" +libnpmorg@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/libnpmorg/-/libnpmorg-6.0.0.tgz#3ab7b3d054a1838bf2f0bc55c7dd526ceba374c0" + integrity sha512-PQ2kqS3VXFFyY6sLu9Z4S1jAeBIUKEfB98L4bPDKDDa1j1Cics183usB7rg0n8qWJiN1yPx/H3Zc4Nd9i4v0oQ== + dependencies: + aproba "^2.0.0" + npm-registry-fetch "^16.0.0" + libnpmpack@^5.0.19: version "5.0.19" resolved "https://registry.yarnpkg.com/libnpmpack/-/libnpmpack-5.0.19.tgz#e9790ebbcb078469d59dbb7e5ee7defe3039cc22" @@ -5172,6 +5444,16 @@ libnpmpack@^5.0.19: npm-package-arg "^10.1.0" pacote "^15.0.8" +libnpmpack@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/libnpmpack/-/libnpmpack-6.0.0.tgz#0468d3f02925f9e2a2e4aac2c726adca2eb27d7b" + integrity sha512-PhmMSl8YQb+ngRGzXzkHpqbobYZk9X442Vu3w04FIzj6N2cIc1h6KCWQpMOODPwHaUvKiF6oLwqB7NaBDKXzFg== + dependencies: + "@npmcli/arborist" "^7.0.0" + "@npmcli/run-script" "^7.0.1" + npm-package-arg "^11.0.0" + pacote "^17.0.4" + libnpmpublish@^7.5.0: version "7.5.0" resolved "https://registry.yarnpkg.com/libnpmpublish/-/libnpmpublish-7.5.0.tgz#a118c8fdc680947c960648ed8b4c94d15e42e0ab" @@ -5186,6 +5468,20 @@ libnpmpublish@^7.5.0: sigstore "^1.4.0" ssri "^10.0.1" +libnpmpublish@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/libnpmpublish/-/libnpmpublish-9.0.0.tgz#bec592bf55193eaff22cd42ed155b6cb54a27d9c" + integrity sha512-4bKe8I5qkYeHms/4tlXuAlOAssjEyUcTci5YrmAaQqMm5yHC3836Uazj1YFQzRlMJQZBc2e21XF5XSnnvVsOiA== + dependencies: + ci-info "^3.6.1" + normalize-package-data "^6.0.0" + npm-package-arg "^11.0.0" + npm-registry-fetch "^16.0.0" + proc-log "^3.0.0" + semver "^7.3.7" + sigstore "^2.1.0" + ssri "^10.0.5" + libnpmsearch@^6.0.2: version "6.0.2" resolved "https://registry.yarnpkg.com/libnpmsearch/-/libnpmsearch-6.0.2.tgz#b6a531a312855dd3bf84dd273b1033dd09b4cbec" @@ -5193,6 +5489,13 @@ libnpmsearch@^6.0.2: dependencies: npm-registry-fetch "^14.0.3" +libnpmsearch@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/libnpmsearch/-/libnpmsearch-7.0.0.tgz#f32225427e84e24489080a8d81ada5e0ca477241" + integrity sha512-gMSev/ZYP96C/73vVJSBfc/dfK65xKHs1QS/u/0NHmos19Td+XopKaMFbY4Xkfbdsau21DRTwM5kQdjuj9DbIw== + dependencies: + npm-registry-fetch "^16.0.0" + libnpmteam@^5.0.3: version "5.0.3" resolved "https://registry.yarnpkg.com/libnpmteam/-/libnpmteam-5.0.3.tgz#196657e9d87c0cc914c44fee588ad2b838074a3c" @@ -5201,6 +5504,14 @@ libnpmteam@^5.0.3: aproba "^2.0.0" npm-registry-fetch "^14.0.3" +libnpmteam@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/libnpmteam/-/libnpmteam-6.0.0.tgz#7c9947ee521757fa92c7399a6517f08928062e8b" + integrity sha512-d63ahIq7cZy3ZO8hhXiIigZTjaeV5WGfz1HkTbh6IfqNYNDhGiVLKu5ehOGdUQgUHcjxkdAwUzNNjMS1VJQ/mQ== + dependencies: + aproba "^2.0.0" + npm-registry-fetch "^16.0.0" + libnpmversion@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/libnpmversion/-/libnpmversion-4.0.2.tgz#cad9cd1b287fcf9576a64edfe71491b49a65d06f" @@ -5212,6 +5523,17 @@ libnpmversion@^4.0.2: proc-log "^3.0.0" semver "^7.3.7" +libnpmversion@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/libnpmversion/-/libnpmversion-5.0.0.tgz#c500f8cf572257013b0a665233b496fdf862a6cf" + integrity sha512-BjXWyQMYZ6rDCobfl8m0yEFJ/FGvJXzFM3kIvnYxx2Y/qWW7aZtgRsfsehi4I4sdghxXY5EOCcBn3yTENtWtyw== + dependencies: + "@npmcli/git" "^5.0.3" + "@npmcli/run-script" "^7.0.1" + json-parse-even-better-errors "^3.0.0" + proc-log "^3.0.0" + semver "^7.3.7" + lines-and-columns@^1.1.6: version "1.2.4" resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" @@ -5389,7 +5711,7 @@ longest@^2.0.1: resolved "https://registry.yarnpkg.com/longest/-/longest-2.0.1.tgz#781e183296aa94f6d4d916dc335d0d17aefa23f8" integrity sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q== -lru-cache@^10.0.1: +lru-cache@^10.0.1, "lru-cache@^9.1.1 || ^10.0.0": version "10.0.1" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.0.1.tgz#0a3be479df549cca0e5d693ac402ff19537a6b7a" integrity sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g== @@ -5466,6 +5788,23 @@ make-fetch-happen@^11.0.0, make-fetch-happen@^11.0.1, make-fetch-happen@^11.0.3, socks-proxy-agent "^7.0.0" ssri "^10.0.0" +make-fetch-happen@^13.0.0: + version "13.0.0" + resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-13.0.0.tgz#705d6f6cbd7faecb8eac2432f551e49475bfedf0" + integrity sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A== + dependencies: + "@npmcli/agent" "^2.0.0" + cacache "^18.0.0" + http-cache-semantics "^4.1.1" + is-lambda "^1.0.1" + minipass "^7.0.2" + minipass-fetch "^3.0.0" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + negotiator "^0.6.3" + promise-retry "^2.0.1" + ssri "^10.0.0" + map-obj@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" @@ -5657,6 +5996,11 @@ minipass@^5.0.0: resolved "https://registry.yarnpkg.com/minipass/-/minipass-6.0.2.tgz#542844b6c4ce95b202c0995b0a471f1229de4c81" integrity sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w== +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.2, minipass@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.3.tgz#05ea638da44e475037ed94d1c7efcc76a25e1974" + integrity sha512-LhbbwCfz3vsb12j/WkWQPZfKTsgqIe1Nf/ti1pKjYESGLHIVjWU96G9/ljLH4F9mWNVhlQOm0VySdAWzf05dpg== + minizlib@^2.1.1, minizlib@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" @@ -5839,6 +6183,13 @@ npm-install-checks@^6.0.0, npm-install-checks@^6.1.1: dependencies: semver "^7.1.1" +npm-install-checks@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-6.2.0.tgz#fae55b9967b03ac309695ec96629492d5cedf371" + integrity sha512-744wat5wAAHsxa4590mWO0tJ8PKxR8ORZsH9wGpQc3nWTzozMAgBN/XyqYw7mg3yqLM8dLwEnwSfKMmXAjF69g== + dependencies: + semver "^7.1.1" + npm-normalize-package-bin@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz#25447e32a9a7de1f51362c61a559233b89947832" @@ -5854,6 +6205,16 @@ npm-package-arg@^10.0.0, npm-package-arg@^10.1.0: semver "^7.3.5" validate-npm-package-name "^5.0.0" +npm-package-arg@^11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-11.0.0.tgz#0f09cba4a2c7e1bcba9c6520cd1775fa18eda82d" + integrity sha512-D8sItaQ8n6VlBUFed3DLz2sCpkabRAjaiLkTamDppvh8lmmAPirzNfBuhJd/2rlmoxZ2S9mOHmIEvzV2z2jOeA== + dependencies: + hosted-git-info "^7.0.0" + proc-log "^3.0.0" + semver "^7.3.5" + validate-npm-package-name "^5.0.0" + npm-packlist@^7.0.0: version "7.0.4" resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-7.0.4.tgz#033bf74110eb74daf2910dc75144411999c5ff32" @@ -5861,6 +6222,13 @@ npm-packlist@^7.0.0: dependencies: ignore-walk "^6.0.0" +npm-packlist@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-8.0.0.tgz#4e7f51fe1d5e69b19508ed8dc6cd3ae2e7b38c17" + integrity sha512-ErAGFB5kJUciPy1mmx/C2YFbvxoJ0QJ9uwkCZOeR6CqLLISPZBOiFModAbSXnjjlwW5lOhuhXva+fURsSGJqyw== + dependencies: + ignore-walk "^6.0.0" + npm-pick-manifest@^8.0.0, npm-pick-manifest@^8.0.1: version "8.0.1" resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-8.0.1.tgz#c6acd97d1ad4c5dbb80eac7b386b03ffeb289e5f" @@ -5871,6 +6239,16 @@ npm-pick-manifest@^8.0.0, npm-pick-manifest@^8.0.1: npm-package-arg "^10.0.0" semver "^7.3.5" +npm-pick-manifest@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-9.0.0.tgz#f87a4c134504a2c7931f2bb8733126e3c3bb7e8f" + integrity sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg== + dependencies: + npm-install-checks "^6.0.0" + npm-normalize-package-bin "^3.0.0" + npm-package-arg "^11.0.0" + semver "^7.3.5" + npm-profile@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/npm-profile/-/npm-profile-7.0.1.tgz#a37dae08b22e662ece2c6e08946f9fcd9fdef663" @@ -5879,6 +6257,14 @@ npm-profile@^7.0.1: npm-registry-fetch "^14.0.0" proc-log "^3.0.0" +npm-profile@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/npm-profile/-/npm-profile-9.0.0.tgz#ffcfa4e3e1b1cb44b17c192f75b44b24b4aae645" + integrity sha512-qv43ixsJ7vndzfxD3XsPNu1Njck6dhO7q1efksTo+0DiOQysKSOsIhK/qDD1/xO2o+2jDOA4Rv/zOJ9KQFs9nw== + dependencies: + npm-registry-fetch "^16.0.0" + proc-log "^3.0.0" + npm-registry-fetch@^14.0.0, npm-registry-fetch@^14.0.3, npm-registry-fetch@^14.0.5: version "14.0.5" resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz#fe7169957ba4986a4853a650278ee02e568d115d" @@ -5892,6 +6278,19 @@ npm-registry-fetch@^14.0.0, npm-registry-fetch@^14.0.3, npm-registry-fetch@^14.0 npm-package-arg "^10.0.0" proc-log "^3.0.0" +npm-registry-fetch@^16.0.0: + version "16.0.0" + resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-16.0.0.tgz#7529dd7c64c16a1bc8af72f99df73dfe98bb9549" + integrity sha512-JFCpAPUpvpwfSydv99u85yhP68rNIxSFmDpNbNnRWKSe3gpjHnWL8v320gATwRzjtgmZ9Jfe37+ZPOLZPwz6BQ== + dependencies: + make-fetch-happen "^13.0.0" + minipass "^7.0.2" + minipass-fetch "^3.0.0" + minipass-json-stream "^1.0.1" + minizlib "^2.1.2" + npm-package-arg "^11.0.0" + proc-log "^3.0.0" + npm-run-path@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" @@ -5911,7 +6310,81 @@ npm-user-validate@^2.0.0: resolved "https://registry.yarnpkg.com/npm-user-validate/-/npm-user-validate-2.0.0.tgz#7b69bbbff6f7992a1d9a8968d52fd6b6db5431b6" integrity sha512-sSWeqAYJ2dUPStJB+AEj0DyLRltr/f6YNcvCA7phkB8/RMLMnVsQ41GMwHo/ERZLYNDsyB2wPm7pZo1mqPOl7Q== -npm@^9.5.0, npm@^9.8.1: +npm@^10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/npm/-/npm-10.0.0.tgz#8ae4af5337f3b5f6bd9c02f485acba0b43ab54d8" + integrity sha512-15O/VIG6/zuZ8ui2YxHhcJcomoTKNqC8bC6hKlmazJooDbdWCoC5iZsNp9Jm8xqwVab60hiAkhDyAqh8W8yq/g== + dependencies: + "@isaacs/string-locale-compare" "^1.1.0" + "@npmcli/arborist" "^7.0.0" + "@npmcli/config" "^7.1.0" + "@npmcli/fs" "^3.1.0" + "@npmcli/map-workspaces" "^3.0.4" + "@npmcli/package-json" "^5.0.0" + "@npmcli/promise-spawn" "^7.0.0" + "@npmcli/run-script" "^7.0.1" + "@sigstore/tuf" "^2.1.0" + abbrev "^2.0.0" + archy "~1.0.0" + cacache "^18.0.0" + chalk "^5.3.0" + ci-info "^3.8.0" + cli-columns "^4.0.0" + cli-table3 "^0.6.3" + columnify "^1.6.0" + fastest-levenshtein "^1.0.16" + fs-minipass "^3.0.3" + glob "^10.3.3" + graceful-fs "^4.2.11" + hosted-git-info "^7.0.0" + ini "^4.1.1" + init-package-json "^6.0.0" + is-cidr "^4.0.2" + json-parse-even-better-errors "^3.0.0" + libnpmaccess "^8.0.0" + libnpmdiff "^6.0.0" + libnpmexec "^7.0.0" + libnpmfund "^4.1.0" + libnpmhook "^10.0.0" + libnpmorg "^6.0.0" + libnpmpack "^6.0.0" + libnpmpublish "^9.0.0" + libnpmsearch "^7.0.0" + libnpmteam "^6.0.0" + libnpmversion "^5.0.0" + make-fetch-happen "^13.0.0" + minimatch "^9.0.3" + minipass "^7.0.3" + minipass-pipeline "^1.2.4" + ms "^2.1.2" + node-gyp "^9.4.0" + nopt "^7.2.0" + npm-audit-report "^5.0.0" + npm-install-checks "^6.2.0" + npm-package-arg "^11.0.0" + npm-pick-manifest "^9.0.0" + npm-profile "^9.0.0" + npm-registry-fetch "^16.0.0" + npm-user-validate "^2.0.0" + npmlog "^7.0.1" + p-map "^4.0.0" + pacote "^17.0.4" + parse-conflict-json "^3.0.1" + proc-log "^3.0.0" + qrcode-terminal "^0.12.0" + read "^2.1.0" + semver "^7.5.4" + ssri "^10.0.5" + supports-color "^9.4.0" + tar "^6.1.15" + text-table "~0.2.0" + tiny-relative-date "^1.3.0" + treeverse "^3.0.0" + validate-npm-package-name "^5.0.0" + which "^4.0.0" + write-file-atomic "^5.0.1" + +npm@^9.5.0: version "9.8.1" resolved "https://registry.yarnpkg.com/npm/-/npm-9.8.1.tgz#b8f070cc770128b38017160491504184863329f0" integrity sha512-AfDvThQzsIXhYgk9zhbk5R+lh811lKkLAeQMMhSypf1BM7zUafeIIBzMzespeuVEJ0+LvY36oRQYf7IKLzU3rw== @@ -6204,6 +6677,30 @@ pacote@^15.0.0, pacote@^15.0.8, pacote@^15.2.0: ssri "^10.0.0" tar "^6.1.11" +pacote@^17.0.0, pacote@^17.0.4: + version "17.0.4" + resolved "https://registry.yarnpkg.com/pacote/-/pacote-17.0.4.tgz#4bac6c0745967bde96985ec12fbbfc8dea7140e8" + integrity sha512-eGdLHrV/g5b5MtD5cTPyss+JxOlaOloSMG3UwPMAvL8ywaLJ6beONPF40K4KKl/UI6q5hTKCJq5rCu8tkF+7Dg== + dependencies: + "@npmcli/git" "^5.0.0" + "@npmcli/installed-package-contents" "^2.0.1" + "@npmcli/promise-spawn" "^7.0.0" + "@npmcli/run-script" "^7.0.0" + cacache "^18.0.0" + fs-minipass "^3.0.0" + minipass "^7.0.2" + npm-package-arg "^11.0.0" + npm-packlist "^8.0.0" + npm-pick-manifest "^9.0.0" + npm-registry-fetch "^16.0.0" + proc-log "^3.0.0" + promise-retry "^2.0.1" + read-package-json "^7.0.0" + read-package-json-fast "^3.0.0" + sigstore "^2.0.0" + ssri "^10.0.0" + tar "^6.1.11" + parent-module@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" @@ -6289,6 +6786,14 @@ path-parse@^1.0.7: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== +path-scurry@^1.10.1: + version "1.10.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698" + integrity sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ== + dependencies: + lru-cache "^9.1.1 || ^10.0.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + path-scurry@^1.7.0: version "1.9.2" resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.9.2.tgz#90f9d296ac5e37e608028e28a447b11d385b3f63" @@ -6357,10 +6862,10 @@ prettier-linter-helpers@^1.0.0: dependencies: fast-diff "^1.1.2" -prettier@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.0.2.tgz#78fcecd6d870551aa5547437cdae39d4701dca5b" - integrity sha512-o2YR9qtniXvwEZlOKbveKfDQVyqxbEIWn48Z8m3ZJjBjcCmUy3xZGIv+7AkaeuaTr6yPXJjwv07ZWlsWbEy1rQ== +prettier@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.0.3.tgz#432a51f7ba422d1469096c0fdc28e235db8f9643" + integrity sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg== proc-log@^3.0.0: version "3.0.0" @@ -6472,6 +6977,16 @@ read-package-json@^6.0.0: normalize-package-data "^5.0.0" npm-normalize-package-bin "^3.0.0" +read-package-json@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-7.0.0.tgz#d605c9dcf6bc5856da24204aa4e9518ee9714be0" + integrity sha512-uL4Z10OKV4p6vbdvIXB+OzhInYtIozl/VxUBPgNkBuUi2DeRonnuspmaVAMcrkmfjKGNmRndyQAbE7/AmzGwFg== + dependencies: + glob "^10.2.2" + json-parse-even-better-errors "^3.0.0" + normalize-package-data "^6.0.0" + npm-normalize-package-bin "^3.0.0" + read-pkg-up@^10.0.0: version "10.1.0" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-10.1.0.tgz#2d13ab732d2f05d6e8094167c2112e2ee50644f4" @@ -6905,6 +7420,16 @@ sigstore@^1.7.0: "@sigstore/tuf" "^1.0.3" make-fetch-happen "^11.0.1" +sigstore@^2.0.0, sigstore@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-2.1.0.tgz#c577b596642b3f360dc4135d476466e6edeb2364" + integrity sha512-kPIj+ZLkyI3QaM0qX8V/nSsweYND3W448pwkDgS6CQ74MfhEkIR8ToK5Iyx46KJYRjseVcD3Rp9zAmUAj6ZjPw== + dependencies: + "@sigstore/bundle" "^2.1.0" + "@sigstore/protobuf-specs" "^0.2.1" + "@sigstore/sign" "^2.1.0" + "@sigstore/tuf" "^2.1.0" + slash@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" @@ -6939,7 +7464,16 @@ socks-proxy-agent@^7.0.0: debug "^4.3.3" socks "^2.6.2" -socks@^2.6.2: +socks-proxy-agent@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.1.tgz#ffc5859a66dac89b0c4dab90253b96705f3e7120" + integrity sha512-59EjPbbgg8U3x62hhKOFVAmySQUcfRQ4C7Q/D5sEHnZTQRrQlNKINks44DMR1gwXp0p4LaVIeccX2KHTTcHVqQ== + dependencies: + agent-base "^7.0.1" + debug "^4.3.4" + socks "^2.7.1" + +socks@^2.6.2, socks@^2.7.1: version "2.7.1" resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.1.tgz#d8e651247178fde79c0663043e07240196857d55" integrity sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ== @@ -7019,6 +7553,13 @@ ssri@^10.0.0, ssri@^10.0.1, ssri@^10.0.4: dependencies: minipass "^5.0.0" +ssri@^10.0.5: + version "10.0.5" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.5.tgz#e49efcd6e36385196cb515d3a2ad6c3f0265ef8c" + integrity sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A== + dependencies: + minipass "^7.0.3" + stream-combiner2@~1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" @@ -7302,6 +7843,15 @@ tuf-js@^1.1.3, tuf-js@^1.1.7: debug "^4.3.4" make-fetch-happen "^11.1.1" +tuf-js@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-2.1.0.tgz#87aa36d5a166e7522f1e2050eb502a3a9b0bde72" + integrity sha512-eD7YPPjVlMzdggrOeE8zwoegUaG/rt6Bt3jwoQPunRiNVzgcCE009UDFJKJjG+Gk9wFu6W/Vi+P5d/5QpdD9jA== + dependencies: + "@tufjs/models" "2.0.0" + debug "^4.3.4" + make-fetch-happen "^13.0.0" + type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" @@ -7511,6 +8061,13 @@ which@^3.0.0, which@^3.0.1: dependencies: isexe "^2.0.0" +which@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/which/-/which-4.0.0.tgz#cd60b5e74503a3fbcfbf6cd6b4138a8bae644c1a" + integrity sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg== + dependencies: + isexe "^3.1.1" + wide-align@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3"