DEV: Update linting (#247)

This commit is contained in:
David Taylor 2024-11-20 17:34:34 +00:00 committed by GitHub
parent 9a0369f272
commit 12cac3827c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
23 changed files with 394 additions and 393 deletions

View File

@ -1,12 +1,12 @@
{{#if shouldShow}}
{{#if this.shouldShow}}
<div
class="campaign-banner"
style={{html-safe (concat "box-shadow: 5px 5px #" dropShadowColor)}}
style={{html-safe (concat "box-shadow: 5px 5px #" this.dropShadowColor)}}
>
<DButton @icon="times" @action={{this.dismissBanner}} class="close" />
<div class="campaign-banner-info" style={{html-safe this.bannerInfoStyle}}>
{{#if isGoalMet}}
{{#if this.isGoalMet}}
<h2 class="campaign-banner-info-header">
{{i18n "discourse_subscriptions.campaign.success_title"}}
</h2>
@ -23,11 +23,11 @@
{{i18n "discourse_subscriptions.campaign.body"}}
</p>
{{#if product}}
{{#if this.product}}
<LinkTo
@route="subscribe.show"
@model={{product}}
@disabled={{product.subscribed}}
@model={{this.product}}
@disabled={{this.product.subscribed}}
class="btn btn-primary campaign-banner-info-button"
>
{{d-icon "far-heart"}}
@ -48,7 +48,7 @@
</div>
<div class="campaign-banner-progress">
{{#if isGoalMet}}
{{#if this.isGoalMet}}
<div class="fireworks">
<div class="before"></div>
<div class="after"></div>
@ -56,13 +56,13 @@
<div class="campaign-banner-progress-success"></div>
{{#if subscriberGoal}}
{{#if this.subscriberGoal}}
<p class="campaign-banner-progress-description">
{{html-safe
(i18n
"discourse_subscriptions.campaign.goal_comparison"
current=subscribers
goal=goalTarget
current=this.subscribers
goal=this.goalTarget
)
}}
{{i18n "discourse_subscriptions.campaign.subscribers"}}
@ -72,15 +72,18 @@
{{html-safe
(i18n
"discourse_subscriptions.campaign.goal_comparison"
current=(format-currency currency amountRaised)
goal=(format-currency currency goalTarget)
current=(format-currency this.currency this.amountRaised)
goal=(format-currency this.currency this.goalTarget)
)
}}
{{i18n "discourse_subscriptions.campaign.raised"}}
</p>
{{#if showContributors}}
<ConditionalLoadingSpinner @condition={{loading}} @size="small">
{{#if this.showContributors}}
<ConditionalLoadingSpinner
@condition={{this.loading}}
@size="small"
>
<div class="campaign-banner-progress-users">
<p class="campaign-banner-progress-users-title">
<strong>
@ -91,7 +94,7 @@
</p>
<div class="campaign-banner-progress-users-avatars">
{{#each contributors as |contributor|}}
{{#each this.contributors as |contributor|}}
{{avatar
contributor
avatarTemplatePath="avatar_template"
@ -106,19 +109,19 @@
{{/if}}
{{/if}}
{{else}}
{{#if subscriberGoal}}
{{#if this.subscriberGoal}}
<progress
class="campaign-banner-progress-bar"
value={{subscribers}}
max={{siteSettings.discourse_subscriptions_campaign_goal}}
value={{this.subscribers}}
max={{this.siteSettings.discourse_subscriptions_campaign_goal}}
></progress>
<p class="campaign-banner-progress-description">
{{html-safe
(i18n
"discourse_subscriptions.campaign.goal_comparison"
current=subscribers
goal=goalTarget
current=this.subscribers
goal=this.goalTarget
)
}}
{{i18n "discourse_subscriptions.campaign.subscribers"}}
@ -126,24 +129,24 @@
{{else}}
<progress
class="campaign-banner-progress-bar"
value={{amountRaised}}
max={{siteSettings.discourse_subscriptions_campaign_goal}}
value={{this.amountRaised}}
max={{this.siteSettings.discourse_subscriptions_campaign_goal}}
></progress>
<p class="campaign-banner-progress-description">
{{html-safe
(i18n
"discourse_subscriptions.campaign.goal_comparison"
current=(format-currency currency amountRaised)
goal=(format-currency currency goalTarget)
current=(format-currency this.currency this.amountRaised)
goal=(format-currency this.currency this.goalTarget)
)
}}
{{i18n "discourse_subscriptions.campaign.raised"}}
</p>
{{/if}}
{{#if showContributors}}
<ConditionalLoadingSpinner @condition={{loading}} @size="small">
{{#if this.showContributors}}
<ConditionalLoadingSpinner @condition={{this.loading}} @size="small">
<div class="campaign-banner-progress-users">
<p class="campaign-banner-progress-users-title">
<strong>
@ -154,7 +157,7 @@
</p>
<div class="campaign-banner-progress-users-avatars">
{{#each contributors as |contributor|}}
{{#each this.contributors as |contributor|}}
{{avatar
contributor
avatarTemplatePath="avatar_template"

View File

@ -4,7 +4,7 @@
<label for="promo_code">
{{i18n "discourse_subscriptions.admin.coupons.promo_code"}}
</label>
<Input @type="text" name="promo_code" @value={{promoCode}} />
<Input @type="text" name="promo_code" @value={{this.promoCode}} />
</p>
<p>
@ -12,15 +12,15 @@
{{i18n "discourse_subscriptions.admin.coupons.discount"}}
</label>
<ComboBox
@content={{discountTypes}}
@value={{discountType}}
@onChange={{action (mut discountType)}}
@content={{this.discountTypes}}
@value={{this.discountType}}
@onChange={{action (mut this.discountType)}}
/>
<Input
class="discount-amount"
@type="text"
name="amount"
@value={{discount}}
@value={{this.discount}}
/>
</p>
@ -28,7 +28,7 @@
<label for="active">
{{i18n "discourse_subscriptions.admin.coupons.active"}}
</label>
<Input @type="checkbox" name="active" @checked={{active}} />
<Input @type="checkbox" name="active" @checked={{this.active}} />
</p>
</form>

View File

@ -3,10 +3,10 @@
</p>
<div class="subscribe-buttons">
{{#each orderedPlans as |plan|}}
{{#each this.orderedPlans as |plan|}}
<PaymentPlan
@plan={{plan}}
@selectedPlan={{selectedPlan}}
@selectedPlan={{this.selectedPlan}}
@clickPlan={{action "clickPlan"}}
/>
{{/each}}

View File

@ -1,6 +1,9 @@
<DButton
@action={{action "planClick"}}
class={{concat-class "btn-discourse-subscriptions-subscribe" selectedClass}}
class={{concat-class
"btn-discourse-subscriptions-subscribe"
this.selectedClass
}}
>
<span class="interval">
{{#if this.recurringPlan}}

View File

@ -1,31 +1,31 @@
<h2>{{product.name}}</h2>
<h2>{{this.product.name}}</h2>
<p class="product-description">
{{html-safe product.description}}
{{html-safe this.product.description}}
</p>
{{#if isLoggedIn}}
{{#if this.isLoggedIn}}
<div class="product-purchase">
{{#if product.repurchaseable}}
{{#if this.product.repurchaseable}}
<LinkTo
@route="subscribe.show"
@model={{product.id}}
@model={{this.product.id}}
class="btn btn-primary"
>
{{i18n "discourse_subscriptions.subscribe.title"}}
</LinkTo>
{{#if product.subscribed}}
{{#if this.product.subscribed}}
<LinkTo
@route="user.billing.subscriptions"
@model={{currentUser.username}}
@model={{this.currentUser.username}}
class="billing-link"
>
{{i18n "discourse_subscriptions.subscribe.view_past"}}
</LinkTo>
{{/if}}
{{else}}
{{#if product.subscribed}}
{{#if this.product.subscribed}}
<span class="purchased">
&#x2713;
{{i18n "discourse_subscriptions.subscribe.purchased"}}
@ -33,7 +33,7 @@
<LinkTo
@route="user.billing.subscriptions"
@model={{currentUser.username}}
@model={{this.currentUser.username}}
class="billing-link"
>
{{i18n "discourse_subscriptions.subscribe.go_to_billing"}}
@ -41,8 +41,8 @@
{{else}}
<LinkTo
@route="subscribe.show"
@model={{product.id}}
@disabled={{product.subscribed}}
@model={{this.product.id}}
@disabled={{this.product.subscribed}}
class="btn btn-primary"
>
{{i18n "discourse_subscriptions.subscribe.title"}}

View File

@ -1,7 +1,7 @@
{{#if emptyProducts}}
{{#if this.emptyProducts}}
<p>{{i18n "discourse_subscriptions.subscribe.no_products"}}</p>
{{else}}
{{#each products as |product|}}
<ProductItem @product={{product}} @isLoggedIn={{isLoggedIn}} />
{{#each this.products as |product|}}
<ProductItem @product={{product}} @isLoggedIn={{this.isLoggedIn}} />
{{/each}}
{{/if}}

View File

@ -1,4 +1,4 @@
{{#if model.unconfigured}}
{{#if this.model.unconfigured}}
<p>{{i18n "discourse_subscriptions.admin.unconfigured"}}</p>
<p>
<a href="https://meta.discourse.org/t/discourse-subscriptions/140818/">
@ -6,7 +6,7 @@
</a>
</p>
{{else}}
{{#if model}}
{{#if this.model}}
<table class="table discourse-patrons-table">
<thead>
<th>{{i18n "discourse_subscriptions.admin.coupons.code"}}</th>
@ -16,7 +16,7 @@
<th>{{i18n "discourse_subscriptions.admin.coupons.actions"}}</th>
</thead>
<tbody>
{{#each model as |coupon|}}
{{#each this.model as |coupon|}}
<tr>
<td>{{coupon.code}}</td>
<td>{{coupon.discount}}</td>
@ -42,7 +42,7 @@
</table>
{{/if}}
{{#unless creating}}
{{#unless this.creating}}
<DButton
@action={{action "openCreateForm"}}
@label="discourse_subscriptions.admin.coupons.create"
@ -52,7 +52,7 @@
/>
{{/unless}}
{{#if creating}}
{{#if this.creating}}
<CreateCouponForm
@cancel={{action "closeCreateForm"}}
@create={{action "createNewCoupon"}}

View File

@ -1,7 +1,7 @@
<h3>{{i18n "discourse_subscriptions.admin.dashboard.title"}}</h3>
<LoadMore @selector=".discourse-patrons-table tr" @action={{action "loadMore"}}>
{{#if model}}
{{#if this.model}}
<table class="table discourse-patrons-table">
<thead>
<tr>
@ -35,7 +35,7 @@
</tr>
</thead>
<tbody>
{{#each model as |payment|}}
{{#each this.model as |payment|}}
<tr>
<td>
<LinkTo

View File

@ -7,7 +7,7 @@
<th></th>
</thead>
<tbody>
{{#each model as |plan|}}
{{#each this.model as |plan|}}
<tr>
<td>{{plan.id}}</td>
<td>{{plan.nickname}}</td>

View File

@ -1,4 +1,4 @@
{{#if model.unconfigured}}
{{#if this.model.unconfigured}}
<p>{{i18n "discourse_subscriptions.admin.unconfigured"}}</p>
<p>
<a href="https://meta.discourse.org/t/discourse-subscriptions/140818/">
@ -19,7 +19,7 @@
</LinkTo>
</p>
{{#if model}}
{{#if this.model}}
<table class="table discourse-patrons-table">
<thead>
<th>
@ -38,7 +38,7 @@
</thead>
<tbody>
{{#each model as |product|}}
{{#each this.model as |product|}}
<tr>
<td>{{product.name}}</td>
<td>{{format-unix-date product.created}}</td>

View File

@ -9,7 +9,7 @@
<Input
@type="text"
name="product_name"
@value={{model.product.name}}
@value={{this.model.product.name}}
disabled={{true}}
/>
</p>
@ -19,7 +19,7 @@
{{i18n "discourse_subscriptions.admin.plans.plan.nickname"}}
</label>
<Input @type="text" name="name" @value={{model.plan.nickname}} />
<Input @type="text" name="name" @value={{this.model.plan.nickname}} />
<div class="control-instructions">
{{i18n "discourse_subscriptions.admin.plans.plan.nickname_help"}}
@ -33,9 +33,9 @@
<ComboBox
@valueProperty="name"
@content={{availableGroups}}
@value={{selectedGroup}}
@onChange={{action (mut model.plan.metadata.group_name)}}
@content={{this.availableGroups}}
@value={{this.selectedGroup}}
@onChange={{action (mut this.model.plan.metadata.group_name)}}
/>
<div class="control-instructions">
@ -48,18 +48,18 @@
{{i18n "discourse_subscriptions.admin.plans.plan.amount"}}
</label>
{{#if planFieldDisabled}}
{{#if this.planFieldDisabled}}
<Input
class="plan-amount plan-currency"
disabled={{true}}
@value={{model.plan.currency}}
@value={{this.model.plan.currency}}
/>
{{else}}
<ComboBox
@disabled={{planFieldDisabled}}
@content={{currencies}}
@value={{model.plan.currency}}
@onChange={{action (mut model.plan.currency)}}
@disabled={{this.planFieldDisabled}}
@content={{this.currencies}}
@value={{this.model.plan.currency}}
@onChange={{action (mut this.model.plan.currency)}}
/>
{{/if}}
@ -67,8 +67,8 @@
class="plan-amount"
@type="text"
name="name"
@value={{model.plan.amountDollars}}
disabled={{planFieldDisabled}}
@value={{this.model.plan.amountDollars}}
disabled={{this.planFieldDisabled}}
/>
</p>
@ -77,37 +77,37 @@
{{i18n "discourse_subscriptions.admin.plans.plan.recurring"}}
</label>
{{#if planFieldDisabled}}
{{#if this.planFieldDisabled}}
<Input
@type="checkbox"
name="recurring"
@checked={{model.plan.isRecurring}}
@checked={{this.model.plan.isRecurring}}
disabled={{true}}
/>
{{else}}
<Input
@type="checkbox"
name="recurring"
@checked={{model.plan.isRecurring}}
@checked={{this.model.plan.isRecurring}}
{{on "change" (action "changeRecurring")}}
/>
{{/if}}
</p>
{{#if model.plan.isRecurring}}
{{#if this.model.plan.isRecurring}}
<p>
<label for="interval">
{{i18n "discourse_subscriptions.admin.plans.plan.interval"}}
</label>
{{#if planFieldDisabled}}
<Input disabled={{true}} @value={{selectedInterval}} />
{{#if this.planFieldDisabled}}
<Input disabled={{true}} @value={{this.selectedInterval}} />
{{else}}
<ComboBox
@valueProperty="name"
@content={{availableIntervals}}
@value={{selectedInterval}}
@onChange={{action (mut selectedInterval)}}
@content={{this.availableIntervals}}
@value={{this.selectedInterval}}
@onChange={{action (mut this.selectedInterval)}}
/>
{{/if}}
</p>
@ -121,7 +121,7 @@
<Input
@type="text"
name="trial"
@value={{model.plan.trial_period_days}}
@value={{this.model.plan.trial_period_days}}
/>
<div class="control-instructions">
@ -134,7 +134,7 @@
<label for="active">
{{i18n "discourse_subscriptions.admin.plans.plan.active"}}
</label>
<Input @type="checkbox" name="active" @checked={{model.plan.active}} />
<Input @type="checkbox" name="active" @checked={{this.model.plan.active}} />
</p>
</form>
@ -146,7 +146,7 @@
</p>
<div class="pull-right">
{{#if model.plan.isNew}}
{{#if this.model.plan.isNew}}
<DButton
@label="discourse_subscriptions.admin.plans.operations.create"
@action={{action "createPlan"}}

View File

@ -5,7 +5,7 @@
<label for="name">
{{i18n "discourse_subscriptions.admin.products.product.name"}}
</label>
<Input @type="text" name="name" @value={{model.product.name}} />
<Input @type="text" name="name" @value={{this.model.product.name}} />
</p>
<p>
@ -15,7 +15,7 @@
<Textarea
name="description"
@value={{model.product.metadata.description}}
@value={{this.model.product.metadata.description}}
class="discourse-subscriptions-admin-textarea"
/>
@ -34,7 +34,7 @@
<Input
@type="text"
name="statement_descriptor"
@value={{model.product.statement_descriptor}}
@value={{this.model.product.statement_descriptor}}
/>
<div class="control-instructions">
@ -52,7 +52,7 @@
<Input
@type="checkbox"
name="repurchaseable"
@checked={{model.product.metadata.repurchaseable}}
@checked={{this.model.product.metadata.repurchaseable}}
/>
<div class="control-instructions">
@ -65,7 +65,11 @@
{{i18n "discourse_subscriptions.admin.products.product.active"}}
</label>
<Input @type="checkbox" name="active" @checked={{model.product.active}} />
<Input
@type="checkbox"
name="active"
@checked={{this.model.product.active}}
/>
<div class="control-instructions">
{{i18n "discourse_subscriptions.admin.products.product.active_help"}}
@ -73,7 +77,7 @@
</p>
</form>
{{#unless model.product.isNew}}
{{#unless this.model.product.isNew}}
<h4>{{i18n "discourse_subscriptions.admin.plans.title"}}</h4>
<p>
@ -90,7 +94,7 @@
<th class="td-right">
<LinkTo
@route="adminPlugins.discourse-subscriptions.products.show.plans.show"
@models={{array model.product.id "new"}}
@models={{array this.model.product.id "new"}}
class="btn"
>
{{i18n "discourse_subscriptions.admin.plans.operations.add"}}
@ -99,7 +103,7 @@
</thead>
<tbody>
{{#each model.plans as |plan|}}
{{#each this.model.plans as |plan|}}
<tr>
<td>{{plan.nickname}}</td>
<td>{{plan.recurring.interval}}</td>
@ -112,7 +116,7 @@
<td class="td-right">
<LinkTo
@route="adminPlugins.discourse-subscriptions.products.show.plans.show"
@models={{array model.product.id plan.id}}
@models={{array this.model.product.id plan.id}}
class="btn no-text btn-icon"
>
{{d-icon "far-edit"}}
@ -137,7 +141,7 @@
<div class="pull-right">
<DButton @label="cancel" @action={{action "cancelProduct"}} @icon="times" />
{{#if model.product.isNew}}
{{#if this.model.product.isNew}}
<DButton
@label="discourse_subscriptions.admin.products.operations.create"
@action={{action "createProduct"}}

View File

@ -1,4 +1,4 @@
{{#if model.unconfigured}}
{{#if this.model.unconfigured}}
<p>{{i18n "discourse_subscriptions.admin.unconfigured"}}</p>
<p>
<a href="https://meta.discourse.org/t/discourse-subscriptions/140818/">
@ -53,7 +53,7 @@
</thead>
<tbody>
{{#each model.data as |subscription|}}
{{#each this.model.data as |subscription|}}
<tr>
<td>
{{#if subscription.metadataUserExists}}
@ -86,5 +86,5 @@
</table>
</LoadMore>
<ConditionalLoadingSpinner @condition={{loading}} />
<ConditionalLoadingSpinner @condition={{this.loading}} />
{{/if}}

View File

@ -1,20 +1,23 @@
<h2>{{i18n "discourse_subscriptions.title" site_name=siteSettings.title}}</h2>
<h2>{{i18n
"discourse_subscriptions.title"
site_name=this.siteSettings.title
}}</h2>
{{#if stripeConfigured}}
{{#if this.stripeConfigured}}
<div class="discourse-subscriptions-buttons">
{{#if campaignEnabled}}
{{#if this.campaignEnabled}}
<DButton
@label="discourse_subscriptions.campaign.refresh_campaign"
@icon="sync-alt"
@action={{action "triggerManualRefresh"}}
/>
{{else}}
{{#unless campaignProductSet}}
{{#unless this.campaignProductSet}}
<DButton
@label="discourse_subscriptions.campaign.one_click_campaign"
@icon="plus-square"
@action={{action "createOneClickCampaign"}}
@isLoading={{loading}}
@isLoading={{this.loading}}
/>
{{/unless}}
{{/if}}

View File

@ -1,4 +1,4 @@
{{#if (user-viewing-self model)}}
{{#if (user-viewing-self this.model)}}
<LinkTo @route="user.billing">
{{d-icon "far-credit-card"}}
{{i18n "discourse_subscriptions.navigation.billing"}}

View File

@ -1,5 +1,5 @@
{{#unless isLoggedIn}}
{{#unless this.isLoggedIn}}
<LoginRequired />
{{/unless}}
<ProductList @products={{model}} @isLoggedIn={{isLoggedIn}} />
<ProductList @products={{this.model}} @isLoggedIn={{this.isLoggedIn}} />

View File

@ -1,33 +1,36 @@
<div class="discourse-subscriptions-section-columns">
<div class="section-column discourse-subscriptions-confirmation-billing">
<h2>
{{model.product.name}}
{{this.model.product.name}}
</h2>
<hr />
<p>
{{html-safe model.product.description}}
{{html-safe this.model.product.description}}
</p>
</div>
<div class="section-column">
{{#if canPurchase}}
{{#if this.canPurchase}}
<h2>
{{i18n "discourse_subscriptions.subscribe.card.title"}}
</h2>
<hr />
<PaymentOptions @plans={{model.plans}} @selectedPlan={{selectedPlan}} />
<PaymentOptions
@plans={{this.model.plans}}
@selectedPlan={{this.selectedPlan}}
/>
<hr />
<SubscribeCard @cardElement={{cardElement}} />
<SubscribeCard @cardElement={{this.cardElement}} />
{{#if loading}}
{{#if this.loading}}
{{loading-spinner}}
{{else if isAnonymous}}
{{else if this.isAnonymous}}
<LoginRequired />
{{else}}
<Input
@ -36,12 +39,12 @@
placeholder={{i18n
"discourse_subscriptions.subscribe.cardholder_name"
}}
@value={{cardholderName}}
@value={{this.cardholderName}}
class="subscribe-name"
/>
<div class="address-fields">
<SubscribeCountrySelect
@value={{cardholderAddress.country}}
@value={{this.cardholderAddress.country}}
@onChange={{action "changeCountry"}}
/>
<Input
@ -50,7 +53,7 @@
placeholder={{i18n
"discourse_subscriptions.subscribe.cardholder_address.postal_code"
}}
@value={{cardholderAddress.postalCode}}
@value={{this.cardholderAddress.postalCode}}
class="subscribe-address-postal-code"
/>
</div>
@ -60,7 +63,7 @@
placeholder={{i18n
"discourse_subscriptions.subscribe.cardholder_address.line1"
}}
@value={{cardholderAddress.line1}}
@value={{this.cardholderAddress.line1}}
class="subscribe-address-line1"
/>
<div class="address-fields">
@ -70,17 +73,17 @@
placeholder={{i18n
"discourse_subscriptions.subscribe.cardholder_address.city"
}}
@value={{cardholderAddress.city}}
@value={{this.cardholderAddress.city}}
class="subscribe-address-city"
/>
{{#if isCountryUS}}
{{#if this.isCountryUS}}
<SubscribeUsStateSelect
@value={{cardholderAddress.state}}
@value={{this.cardholderAddress.state}}
@onChange={{action "changeState"}}
/>
{{else if isCountryCA}}
{{else if this.isCountryCA}}
<SubscribeCaProvinceSelect
@value={{cardholderAddress.state}}
@value={{this.cardholderAddress.state}}
@onChange={{action "changeState"}}
/>
{{else}}
@ -90,7 +93,7 @@
placeholder={{i18n
"discourse_subscriptions.subscribe.cardholder_address.state"
}}
@value={{cardholderAddress.state}}
@value={{this.cardholderAddress.state}}
class="subscribe-address-state"
/>
{{/if}}
@ -100,12 +103,12 @@
@type="text"
name="promo_code"
placeholder={{i18n "discourse_subscriptions.subscribe.promo_code"}}
@value={{promoCode}}
@value={{this.promoCode}}
class="subscribe-promo-code"
/>
<DButton
@disabled={{loading}}
@disabled={{this.loading}}
@action={{action "stripePaymentHandler"}}
class="btn btn-primary btn-payment"
@label="discourse_subscriptions.plans.payment_button"
@ -116,7 +119,7 @@
<LinkTo
@route="user.billing.subscriptions"
@model={{currentUser.username}}
@model={{this.currentUser.username}}
class="btn btn-primary"
>
{{i18n "discourse_subscriptions.subscribe.go_to_billing"}}

View File

@ -3,7 +3,7 @@
<section class="user-secondary-navigation">
<MobileNav
@desktopClass="action-list nav-stacked"
@currentPath={{router._router.currentPath}}
@currentPath={{this.router._router.currentPath}}
class="activity-nav"
>
<li>

View File

@ -1,4 +1,4 @@
{{#if model}}
{{#if this.model}}
<table class="table discourse-subscriptions-user-table">
<thead>
<th>{{i18n "discourse_subscriptions.user.payments.id"}}</th>
@ -6,7 +6,7 @@
<th>{{i18n "discourse_subscriptions.user.payments.created_at"}}</th>
</thead>
<tbody>
{{#each model as |payment|}}
{{#each this.model as |payment|}}
<tr>
<td>{{payment.id}}</td>
<td>{{format-currency payment.currency payment.amountDollars}}</td>

View File

@ -1,16 +1,16 @@
<h3>{{i18n
"discourse_subscriptions.user.subscriptions.update_card.heading"
sub_id=model
sub_id=this.model
}}</h3>
<div class="form-vertical">
<div class="control-group">
<SubscribeCard @cardElement={{cardElement}} class="input-xxlarge" />
<SubscribeCard @cardElement={{this.cardElement}} class="input-xxlarge" />
</div>
<SaveControls
@action={{action "updatePaymentMethod"}}
@saved={{saved}}
@saveDisabled={{loading}}
@saved={{this.saved}}
@saveDisabled={{this.loading}}
/>
</div>

View File

@ -1,4 +1,4 @@
{{#if model}}
{{#if this.model}}
<table class="table discourse-subscriptions-user-table">
<thead>
<th>{{i18n "discourse_subscriptions.user.subscriptions.id"}}</th>
@ -11,7 +11,7 @@
<th></th>
</thead>
<tbody>
{{#each model as |subscription|}}
{{#each this.model as |subscription|}}
<tr>
<td>{{subscription.id}}</td>
<td>{{subscription.product.name}}</td>

View File

@ -1,7 +1,7 @@
{
"private": true,
"devDependencies": {
"@discourse/lint-configs": "2.0.1",
"@discourse/lint-configs": "2.2.1",
"ember-template-lint": "6.0.0",
"eslint": "9.14.0",
"prettier": "2.8.8"

View File

@ -9,8 +9,8 @@ importers:
.:
devDependencies:
'@discourse/lint-configs':
specifier: 2.0.1
version: 2.0.1(ember-template-lint@6.0.0)(eslint@9.14.0)(prettier@2.8.8)
specifier: 2.2.1
version: 2.2.1(ember-template-lint@6.0.0)(eslint@9.14.0)(prettier@2.8.8)
ember-template-lint:
specifier: 6.0.0
version: 6.0.0
@ -27,130 +27,122 @@ packages:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@babel/code-frame@7.25.7':
resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==}
'@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.25.8':
resolution: {integrity: sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA==}
'@babel/compat-data@7.26.2':
resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
engines: {node: '>=6.9.0'}
'@babel/core@7.25.8':
resolution: {integrity: sha512-Oixnb+DzmRT30qu9d3tJSQkxuygWm32DFykT4bRoORPa9hZ/L4KhVB/XiRm6KG+roIEM7DBQlmg27kw2HZkdZg==}
'@babel/core@7.26.0':
resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
engines: {node: '>=6.9.0'}
'@babel/eslint-parser@7.25.8':
resolution: {integrity: sha512-Po3VLMN7fJtv0nsOjBDSbO1J71UhzShE9MuOSkWEV9IZQXzhZklYtzKZ8ZD/Ij3a0JBv1AG3Ny2L3jvAHQVOGg==}
'@babel/eslint-parser@7.25.9':
resolution: {integrity: sha512-5UXfgpK0j0Xr/xIdgdLEhOFxaDZ0bRPWJJchRpqOSur/3rZoPbqqki5mm0p4NE2cs28krBEiSM2MB7//afRSQQ==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
'@babel/core': ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
'@babel/generator@7.25.7':
resolution: {integrity: sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==}
'@babel/generator@7.26.2':
resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.25.7':
resolution: {integrity: sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==}
'@babel/helper-annotate-as-pure@7.25.9':
resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.25.7':
resolution: {integrity: sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==}
'@babel/helper-compilation-targets@7.25.9':
resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-create-class-features-plugin@7.25.7':
resolution: {integrity: sha512-bD4WQhbkx80mAyj/WCm4ZHcF4rDxkoLFO6ph8/5/mQ3z4vAzltQXAmbc7GvVJx5H+lk5Mi5EmbTeox5nMGCsbw==}
'@babel/helper-create-class-features-plugin@7.25.9':
resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-member-expression-to-functions@7.25.7':
resolution: {integrity: sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==}
'@babel/helper-member-expression-to-functions@7.25.9':
resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.25.7':
resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==}
'@babel/helper-module-imports@7.25.9':
resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.25.7':
resolution: {integrity: sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==}
'@babel/helper-module-transforms@7.26.0':
resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-optimise-call-expression@7.25.7':
resolution: {integrity: sha512-VAwcwuYhv/AT+Vfr28c9y6SHzTan1ryqrydSTFGjU0uDJHw3uZ+PduI8plCLkRsDnqK2DMEDmwrOQRsK/Ykjng==}
'@babel/helper-optimise-call-expression@7.25.9':
resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-plugin-utils@7.25.7':
resolution: {integrity: sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==}
'@babel/helper-plugin-utils@7.25.9':
resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
engines: {node: '>=6.9.0'}
'@babel/helper-replace-supers@7.25.7':
resolution: {integrity: sha512-iy8JhqlUW9PtZkd4pHM96v6BdJ66Ba9yWSE4z0W4TvSZwLBPkyDsiIU3ENe4SmrzRBs76F7rQXTy1lYC49n6Lw==}
'@babel/helper-replace-supers@7.25.9':
resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-simple-access@7.25.7':
resolution: {integrity: sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==}
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
engines: {node: '>=6.9.0'}
'@babel/helper-skip-transparent-expression-wrappers@7.25.7':
resolution: {integrity: sha512-pPbNbchZBkPMD50K0p3JGcFMNLVUCuU/ABybm/PGNj4JiHrpmNyqqCphBk4i19xXtNV0JhldQJJtbSW5aUvbyA==}
'@babel/helper-string-parser@7.25.9':
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.25.7':
resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==}
'@babel/helper-validator-identifier@7.25.9':
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.25.7':
resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==}
'@babel/helper-validator-option@7.25.9':
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.25.7':
resolution: {integrity: sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==}
'@babel/helpers@7.26.0':
resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.25.7':
resolution: {integrity: sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==}
engines: {node: '>=6.9.0'}
'@babel/highlight@7.25.7':
resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.25.8':
resolution: {integrity: sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==}
'@babel/parser@7.26.2':
resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-proposal-decorators@7.25.7':
resolution: {integrity: sha512-q1mqqqH0e1lhmsEQHV5U8OmdueBC2y0RFr2oUzZoFRtN3MvPmt2fsFRcNQAoGLTSNdHBFUYGnlgcRFhkBbKjPw==}
'@babel/plugin-proposal-decorators@7.25.9':
resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-decorators@7.25.7':
resolution: {integrity: sha512-oXduHo642ZhstLVYTe2z2GSJIruU0c/W3/Ghr6A5yGMsVrvdnxO1z+3pbTcT7f3/Clnt+1z8D/w1r1f1SHaCHw==}
'@babel/plugin-syntax-decorators@7.25.9':
resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/template@7.25.7':
resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==}
'@babel/template@7.25.9':
resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.25.7':
resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==}
'@babel/traverse@7.25.9':
resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
engines: {node: '>=6.9.0'}
'@babel/types@7.25.8':
resolution: {integrity: sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==}
'@babel/types@7.26.0':
resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
engines: {node: '>=6.9.0'}
'@discourse/lint-configs@2.0.1':
resolution: {integrity: sha512-4AKSzX4EYIEAtTCj+1+VKx0ziQ5XbYJZuQQ8cxhE7/amRloWyuM3YuDpa5x1r2zaLRbfEHXjlveVk+obMRLPqw==}
'@discourse/lint-configs@2.2.1':
resolution: {integrity: sha512-cXA6erpwaN9/wX+pNHUeDws6hdQEewfPb+nmWQNAaD72FTDKpjNmwxKDaVH1p65yVsF8SdNRZGKdAnOjkH42aw==}
peerDependencies:
ember-template-lint: 6.0.0
eslint: ^9.14.0
@ -162,8 +154,8 @@ packages:
'@ember/edition-utils@1.2.0':
resolution: {integrity: sha512-VmVq/8saCaPdesQmftPqbFtxJWrzxNGSQ+e8x8LLe3Hjm36pJ04Q8LeORGZkAeOhldoUX9seLGmSaHeXkIqoog==}
'@eslint-community/eslint-utils@4.4.0':
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
'@eslint-community/eslint-utils@4.4.1':
resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
@ -296,6 +288,12 @@ packages:
resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
engines: {node: '>=18'}
'@stylistic/eslint-plugin-js@2.11.0':
resolution: {integrity: sha512-btchD0P3iij6cIk5RR5QMdEhtCCV0+L6cNheGhGCd//jaHILZMTi/EOqgEDAf1s4ZoViyExoToM+S2Iwa3U9DA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.40.0'
'@types/eslint@8.56.12':
resolution: {integrity: sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==}
@ -470,8 +468,8 @@ packages:
resolution: {integrity: sha512-NXfi+Vas24n3Ivo21GvENTI55qxKu7OwKRnCLWXld8MiLiQKQlWIq28eoARaFj0lTUFwUa4jKZeA7fW9PiWQeg==}
engines: {node: 8.* || >= 10.*}
browserslist@4.24.0:
resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==}
browserslist@4.24.2:
resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@ -490,8 +488,8 @@ packages:
resolution: {integrity: sha512-RbsNrFyhwkx+6psk/0fK/Q9orOUr9VMxohGd8vTa4djf4TGLfblBgUfqZChrZuW0Q+mz2eBPFLusw9Jfukzmhg==}
hasBin: true
caniuse-lite@1.0.30001668:
resolution: {integrity: sha512-nWLrdxqCdblixUO+27JtGJJE/txpJlyUy5YN1u53wLZkP0emYCo5zgS6QYft7VUYR42LGgi/S5hdLZTrnyIddw==}
caniuse-lite@1.0.30001680:
resolution: {integrity: sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA==}
chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
@ -505,8 +503,8 @@ packages:
resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
ci-info@4.0.0:
resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==}
ci-info@4.1.0:
resolution: {integrity: sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==}
engines: {node: '>=8'}
clean-up-path@1.0.0:
@ -552,14 +550,14 @@ packages:
concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
content-tag@2.0.2:
resolution: {integrity: sha512-qHRyTp02dgzRK2tsCFxZ1H289bZOuSLNpupr6prvnSFq4SFPmNlBKbbE5PCMb+8+Z1a1z+yCVtXvQIGUCCa3lQ==}
content-tag@2.0.3:
resolution: {integrity: sha512-htLIdtfhhKW2fHlFLnZH7GFzHSdSpHhDLrWVswkNiiPMZ5uXq5JfrGboQKFhNQuAAFF8VNB2EYUj3MsdJrKKpg==}
convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
core-js@3.38.1:
resolution: {integrity: sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==}
core-js@3.39.0:
resolution: {integrity: sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==}
cross-spawn@7.0.6:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
@ -630,8 +628,8 @@ packages:
resolution: {integrity: sha512-ptGvkwTvGdGfC0hfhKg0MT+TRLRKGtUiWGBInxOm5pz7ssADezahjCUaYuZ8Dr+C05FW0AECIIPt4WBxVINEhA==}
engines: {node: '>=0.8'}
electron-to-chromium@1.5.36:
resolution: {integrity: sha512-HYTX8tKge/VNp6FGO+f/uVDmUkq+cEfcxYhKf15Akc4M5yxt5YmorwlAitKWjWhWQnKcDRBAQKXkhqqXMqcrjw==}
electron-to-chromium@1.5.63:
resolution: {integrity: sha512-ddeXKuY9BHo/mw145axlyWjlJ1UBt4WK3AlvkT7W2AbqfRQoacVoRUCF6wL3uIx/8wT9oLKXzI+rFqHHscByaA==}
ember-cli-babel-plugin-helpers@1.1.1:
resolution: {integrity: sha512-sKvOiPNHr5F/60NLd7SFzMpYPte/nnGkq/tMIfXejfKHIhaiIkYFqX8Z9UFTKWLLn+V7NOaby6niNPZUdvKCRw==}
@ -682,8 +680,8 @@ packages:
resolution: {integrity: sha512-e64Qj9+4aZzjzzFpZC7p5kmm/ccCrbLhAJplhsDXQFs87XTsXwOpH4s1Io2s90Tau/8r2j9f4l/thhDevRjzxw==}
engines: {node: '>=0.8'}
es-abstract@1.23.3:
resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
es-abstract@1.23.5:
resolution: {integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==}
engines: {node: '>= 0.4'}
es-define-property@1.0.0:
@ -750,8 +748,8 @@ packages:
peerDependencies:
eslint: '>=5.0.0'
eslint-plugin-sort-class-members@1.20.0:
resolution: {integrity: sha512-xNaik4GQ/pRwd1soIVI28HEXZbrWoLR5krau2+E8YcHj7N09UviPg5mYhf/rELG29bIFJdXDOFJazN90+luMOw==}
eslint-plugin-sort-class-members@1.21.0:
resolution: {integrity: sha512-QKV4jvGMu/ge1l4s1TUBC6rqqV/fbABWY7q2EeNpV3FRikoX6KuLhiNvS8UuMi+EERe0hKGrNU9e6ukFDxNnZQ==}
engines: {node: '>=4.0.0'}
peerDependencies:
eslint: '>=0.8.0'
@ -859,8 +857,8 @@ packages:
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
engines: {node: '>=16'}
flatted@3.3.1:
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
flatted@3.3.2:
resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
for-each@0.3.3:
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
@ -948,8 +946,8 @@ packages:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
globals@15.11.0:
resolution: {integrity: sha512-yeyNSjdbyVaWurlwCpcA6XNBrHTMIeDdj0/hnvX/OLJ9ekOXYbLsLinH/MucQyGvNnXhidTdNhTtJaffL2sMfw==}
globals@15.12.0:
resolution: {integrity: sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==}
engines: {node: '>=18'}
globalthis@1.0.4:
@ -1286,8 +1284,8 @@ packages:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
object-inspect@1.13.2:
resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
object-inspect@1.13.3:
resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
engines: {node: '>= 0.4'}
object-keys@1.1.1:
@ -1378,8 +1376,8 @@ packages:
resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
engines: {node: '>=12'}
picocolors@1.1.0:
resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
@ -1627,10 +1625,6 @@ packages:
resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
engines: {node: '>=14.14'}
to-fast-properties@2.0.0:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
@ -1641,8 +1635,8 @@ packages:
ts-replace-all@1.0.0:
resolution: {integrity: sha512-6uBtdkw3jHXkPtx/e9xB/5vcngMm17CyJYsS2YZeQ+9FdRnt6Ev5g931Sg2p+dxbtMGoCm13m3ax/obicTZIkQ==}
tslib@2.7.0:
resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
@ -1781,25 +1775,26 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
'@babel/code-frame@7.25.7':
'@babel/code-frame@7.26.2':
dependencies:
'@babel/highlight': 7.25.7
picocolors: 1.1.0
'@babel/helper-validator-identifier': 7.25.9
js-tokens: 4.0.0
picocolors: 1.1.1
'@babel/compat-data@7.25.8': {}
'@babel/compat-data@7.26.2': {}
'@babel/core@7.25.8':
'@babel/core@7.26.0':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.25.7
'@babel/generator': 7.25.7
'@babel/helper-compilation-targets': 7.25.7
'@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
'@babel/helpers': 7.25.7
'@babel/parser': 7.25.8
'@babel/template': 7.25.7
'@babel/traverse': 7.25.7
'@babel/types': 7.25.8
'@babel/code-frame': 7.26.2
'@babel/generator': 7.26.2
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
'@babel/helpers': 7.26.0
'@babel/parser': 7.26.2
'@babel/template': 7.25.9
'@babel/traverse': 7.25.9
'@babel/types': 7.26.0
convert-source-map: 2.0.0
debug: 4.3.7
gensync: 1.0.0-beta.2
@ -1808,172 +1803,158 @@ snapshots:
transitivePeerDependencies:
- supports-color
'@babel/eslint-parser@7.25.8(@babel/core@7.25.8)(eslint@9.14.0)':
'@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@9.14.0)':
dependencies:
'@babel/core': 7.25.8
'@babel/core': 7.26.0
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
eslint: 9.14.0
eslint-visitor-keys: 2.1.0
semver: 6.3.1
'@babel/generator@7.25.7':
'@babel/generator@7.26.2':
dependencies:
'@babel/types': 7.25.8
'@babel/parser': 7.26.2
'@babel/types': 7.26.0
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.0.2
'@babel/helper-annotate-as-pure@7.25.7':
'@babel/helper-annotate-as-pure@7.25.9':
dependencies:
'@babel/types': 7.25.8
'@babel/types': 7.26.0
'@babel/helper-compilation-targets@7.25.7':
'@babel/helper-compilation-targets@7.25.9':
dependencies:
'@babel/compat-data': 7.25.8
'@babel/helper-validator-option': 7.25.7
browserslist: 4.24.0
'@babel/compat-data': 7.26.2
'@babel/helper-validator-option': 7.25.9
browserslist: 4.24.2
lru-cache: 5.1.1
semver: 6.3.1
'@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.25.8)':
'@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-annotate-as-pure': 7.25.7
'@babel/helper-member-expression-to-functions': 7.25.7
'@babel/helper-optimise-call-expression': 7.25.7
'@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.8)
'@babel/helper-skip-transparent-expression-wrappers': 7.25.7
'@babel/traverse': 7.25.7
'@babel/core': 7.26.0
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
'@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
'@babel/traverse': 7.25.9
semver: 6.3.1
transitivePeerDependencies:
- supports-color
'@babel/helper-member-expression-to-functions@7.25.7':
'@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
'@babel/traverse': 7.25.7
'@babel/types': 7.25.8
'@babel/traverse': 7.25.9
'@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.25.7':
'@babel/helper-module-imports@7.25.9':
dependencies:
'@babel/traverse': 7.25.7
'@babel/types': 7.25.8
'@babel/traverse': 7.25.9
'@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
'@babel/helper-module-transforms@7.25.7(@babel/core@7.25.8)':
'@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-module-imports': 7.25.7
'@babel/helper-simple-access': 7.25.7
'@babel/helper-validator-identifier': 7.25.7
'@babel/traverse': 7.25.7
'@babel/core': 7.26.0
'@babel/helper-module-imports': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
'@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.25.7':
'@babel/helper-optimise-call-expression@7.25.9':
dependencies:
'@babel/types': 7.25.8
'@babel/types': 7.26.0
'@babel/helper-plugin-utils@7.25.7': {}
'@babel/helper-plugin-utils@7.25.9': {}
'@babel/helper-replace-supers@7.25.7(@babel/core@7.25.8)':
'@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-member-expression-to-functions': 7.25.7
'@babel/helper-optimise-call-expression': 7.25.7
'@babel/traverse': 7.25.7
'@babel/core': 7.26.0
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
'@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
'@babel/helper-simple-access@7.25.7':
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
'@babel/traverse': 7.25.7
'@babel/types': 7.25.8
'@babel/traverse': 7.25.9
'@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.25.7':
'@babel/helper-string-parser@7.25.9': {}
'@babel/helper-validator-identifier@7.25.9': {}
'@babel/helper-validator-option@7.25.9': {}
'@babel/helpers@7.26.0':
dependencies:
'@babel/traverse': 7.25.7
'@babel/types': 7.25.8
'@babel/template': 7.25.9
'@babel/types': 7.26.0
'@babel/parser@7.26.2':
dependencies:
'@babel/types': 7.26.0
'@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
'@babel/helper-string-parser@7.25.7': {}
'@babel/helper-validator-identifier@7.25.7': {}
'@babel/helper-validator-option@7.25.7': {}
'@babel/helpers@7.25.7':
'@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/template': 7.25.7
'@babel/types': 7.25.8
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
'@babel/highlight@7.25.7':
'@babel/template@7.25.9':
dependencies:
'@babel/helper-validator-identifier': 7.25.7
chalk: 2.4.2
js-tokens: 4.0.0
picocolors: 1.1.0
'@babel/code-frame': 7.26.2
'@babel/parser': 7.26.2
'@babel/types': 7.26.0
'@babel/parser@7.25.8':
'@babel/traverse@7.25.9':
dependencies:
'@babel/types': 7.25.8
'@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.8)
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-decorators': 7.25.7(@babel/core@7.25.8)
transitivePeerDependencies:
- supports-color
'@babel/plugin-syntax-decorators@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-plugin-utils': 7.25.7
'@babel/template@7.25.7':
dependencies:
'@babel/code-frame': 7.25.7
'@babel/parser': 7.25.8
'@babel/types': 7.25.8
'@babel/traverse@7.25.7':
dependencies:
'@babel/code-frame': 7.25.7
'@babel/generator': 7.25.7
'@babel/parser': 7.25.8
'@babel/template': 7.25.7
'@babel/types': 7.25.8
'@babel/code-frame': 7.26.2
'@babel/generator': 7.26.2
'@babel/parser': 7.26.2
'@babel/template': 7.25.9
'@babel/types': 7.26.0
debug: 4.3.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
'@babel/types@7.25.8':
'@babel/types@7.26.0':
dependencies:
'@babel/helper-string-parser': 7.25.7
'@babel/helper-validator-identifier': 7.25.7
to-fast-properties: 2.0.0
'@babel/helper-string-parser': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
'@discourse/lint-configs@2.0.1(ember-template-lint@6.0.0)(eslint@9.14.0)(prettier@2.8.8)':
'@discourse/lint-configs@2.2.1(ember-template-lint@6.0.0)(eslint@9.14.0)(prettier@2.8.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/eslint-parser': 7.25.8(@babel/core@7.25.8)(eslint@9.14.0)
'@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.25.8)
'@babel/core': 7.26.0
'@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@9.14.0)
'@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
'@stylistic/eslint-plugin-js': 2.11.0(eslint@9.14.0)
ember-template-lint: 6.0.0
eslint: 9.14.0
eslint-plugin-decorator-position: 6.0.0(@babel/eslint-parser@7.25.8(@babel/core@7.25.8)(eslint@9.14.0))(eslint@9.14.0)
eslint-plugin-ember: 12.3.1(@babel/core@7.25.8)(eslint@9.14.0)
eslint-plugin-decorator-position: 6.0.0(@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@9.14.0))(eslint@9.14.0)
eslint-plugin-ember: 12.3.1(@babel/core@7.26.0)(eslint@9.14.0)
eslint-plugin-qunit: 8.1.2(eslint@9.14.0)
eslint-plugin-simple-import-sort: 12.1.1(eslint@9.14.0)
eslint-plugin-sort-class-members: 1.20.0(eslint@9.14.0)
globals: 15.11.0
eslint-plugin-sort-class-members: 1.21.0(eslint@9.14.0)
globals: 15.12.0
prettier: 2.8.8
prettier-plugin-ember-template-tag: 0.3.2
typescript: 5.6.3
@ -1985,7 +1966,7 @@ snapshots:
'@ember/edition-utils@1.2.0': {}
'@eslint-community/eslint-utils@4.4.0(eslint@9.14.0)':
'@eslint-community/eslint-utils@4.4.1(eslint@9.14.0)':
dependencies:
eslint: 9.14.0
eslint-visitor-keys: 3.4.3
@ -2121,7 +2102,7 @@ snapshots:
fs-extra: 9.1.0
proper-lockfile: 4.1.2
slash: 3.0.0
tslib: 2.7.0
tslib: 2.8.1
upath: 2.0.1
'@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1':
@ -2144,6 +2125,12 @@ snapshots:
'@sindresorhus/merge-streams@2.3.0': {}
'@stylistic/eslint-plugin-js@2.11.0(eslint@9.14.0)':
dependencies:
eslint: 9.14.0
eslint-visitor-keys: 4.2.0
espree: 10.3.0
'@types/eslint@8.56.12':
dependencies:
'@types/estree': 1.0.6
@ -2198,7 +2185,7 @@ snapshots:
array-buffer-byte-length: 1.0.1
call-bind: 1.0.7
define-properties: 1.2.1
es-abstract: 1.23.3
es-abstract: 1.23.5
es-errors: 1.3.0
get-intrinsic: 1.2.4
is-array-buffer: 3.0.4
@ -2422,12 +2409,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
browserslist@4.24.0:
browserslist@4.24.2:
dependencies:
caniuse-lite: 1.0.30001668
electron-to-chromium: 1.5.36
caniuse-lite: 1.0.30001680
electron-to-chromium: 1.5.63
node-releases: 2.0.18
update-browserslist-db: 1.1.1(browserslist@4.24.0)
update-browserslist-db: 1.1.1(browserslist@4.24.2)
buffer@5.7.1:
dependencies:
@ -2448,7 +2435,7 @@ snapshots:
dependencies:
tmp: 0.0.28
caniuse-lite@1.0.30001668: {}
caniuse-lite@1.0.30001680: {}
chalk@2.4.2:
dependencies:
@ -2463,7 +2450,7 @@ snapshots:
chalk@5.3.0: {}
ci-info@4.0.0: {}
ci-info@4.1.0: {}
clean-up-path@1.0.0: {}
@ -2499,11 +2486,11 @@ snapshots:
concat-map@0.0.1: {}
content-tag@2.0.2: {}
content-tag@2.0.3: {}
convert-source-map@2.0.0: {}
core-js@3.38.1: {}
core-js@3.39.0: {}
cross-spawn@7.0.6:
dependencies:
@ -2569,7 +2556,7 @@ snapshots:
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
tslib: 2.7.0
tslib: 2.8.1
editions@1.3.4: {}
@ -2578,7 +2565,7 @@ snapshots:
errlop: 2.2.0
semver: 6.3.1
electron-to-chromium@1.5.36: {}
electron-to-chromium@1.5.63: {}
ember-cli-babel-plugin-helpers@1.1.1: {}
@ -2609,12 +2596,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
ember-eslint-parser@0.5.3(@babel/core@7.25.8)(eslint@9.14.0):
ember-eslint-parser@0.5.3(@babel/core@7.26.0)(eslint@9.14.0):
dependencies:
'@babel/core': 7.25.8
'@babel/eslint-parser': 7.25.8(@babel/core@7.25.8)(eslint@9.14.0)
'@babel/core': 7.26.0
'@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@9.14.0)
'@glimmer/syntax': 0.92.3
content-tag: 2.0.2
content-tag: 2.0.3
eslint-scope: 7.2.2
html-tags: 3.3.1
transitivePeerDependencies:
@ -2641,7 +2628,7 @@ snapshots:
'@lint-todo/utils': 13.1.1
aria-query: 5.3.2
chalk: 5.3.0
ci-info: 4.0.0
ci-info: 4.1.0
date-fns: 3.6.0
ember-template-imports: 3.4.2
ember-template-recast: 6.1.5
@ -2681,7 +2668,7 @@ snapshots:
errlop@2.2.0: {}
es-abstract@1.23.3:
es-abstract@1.23.5:
dependencies:
array-buffer-byte-length: 1.0.1
arraybuffer.prototype.slice: 1.0.3
@ -2714,7 +2701,7 @@ snapshots:
is-string: 1.0.7
is-typed-array: 1.1.13
is-weakref: 1.0.2
object-inspect: 1.13.2
object-inspect: 1.13.3
object-keys: 1.1.1
object.assign: 4.1.5
regexp.prototype.flags: 1.5.3
@ -2760,24 +2747,24 @@ snapshots:
eslint-formatter-kakoune@1.0.0: {}
eslint-plugin-decorator-position@6.0.0(@babel/eslint-parser@7.25.8(@babel/core@7.25.8)(eslint@9.14.0))(eslint@9.14.0):
eslint-plugin-decorator-position@6.0.0(@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@9.14.0))(eslint@9.14.0):
dependencies:
'@babel/core': 7.25.8
'@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.25.8)
'@babel/core': 7.26.0
'@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
'@ember-data/rfc395-data': 0.0.4
ember-rfc176-data: 0.3.18
eslint: 9.14.0
snake-case: 3.0.4
optionalDependencies:
'@babel/eslint-parser': 7.25.8(@babel/core@7.25.8)(eslint@9.14.0)
'@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@9.14.0)
transitivePeerDependencies:
- supports-color
eslint-plugin-ember@12.3.1(@babel/core@7.25.8)(eslint@9.14.0):
eslint-plugin-ember@12.3.1(@babel/core@7.26.0)(eslint@9.14.0):
dependencies:
'@ember-data/rfc395-data': 0.0.4
css-tree: 2.3.1
ember-eslint-parser: 0.5.3(@babel/core@7.25.8)(eslint@9.14.0)
ember-eslint-parser: 0.5.3(@babel/core@7.26.0)(eslint@9.14.0)
ember-rfc176-data: 0.3.18
eslint: 9.14.0
eslint-utils: 3.0.0(eslint@9.14.0)
@ -2800,7 +2787,7 @@ snapshots:
dependencies:
eslint: 9.14.0
eslint-plugin-sort-class-members@1.20.0(eslint@9.14.0):
eslint-plugin-sort-class-members@1.21.0(eslint@9.14.0):
dependencies:
eslint: 9.14.0
@ -2832,7 +2819,7 @@ snapshots:
eslint@9.14.0:
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@9.14.0)
'@eslint-community/eslint-utils': 4.4.1(eslint@9.14.0)
'@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.18.0
'@eslint/core': 0.7.0
@ -2933,10 +2920,10 @@ snapshots:
flat-cache@4.0.1:
dependencies:
flatted: 3.3.1
flatted: 3.3.2
keyv: 4.5.4
flatted@3.3.1: {}
flatted@3.3.2: {}
for-each@0.3.3:
dependencies:
@ -3002,7 +2989,7 @@ snapshots:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
es-abstract: 1.23.3
es-abstract: 1.23.5
functions-have-names: 1.2.3
functions-have-names@1.2.3: {}
@ -3058,7 +3045,7 @@ snapshots:
globals@14.0.0: {}
globals@15.11.0: {}
globals@15.12.0: {}
globalthis@1.0.4:
dependencies:
@ -3325,7 +3312,7 @@ snapshots:
lower-case@2.0.2:
dependencies:
tslib: 2.7.0
tslib: 2.8.1
lru-cache@5.1.1:
dependencies:
@ -3383,13 +3370,13 @@ snapshots:
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
tslib: 2.7.0
tslib: 2.8.1
node-releases@2.0.18: {}
object-assign@4.1.1: {}
object-inspect@1.13.2: {}
object-inspect@1.13.3: {}
object-keys@1.1.1: {}
@ -3475,7 +3462,7 @@ snapshots:
path-type@5.0.0: {}
picocolors@1.1.0: {}
picocolors@1.1.1: {}
picomatch@2.3.1: {}
@ -3485,7 +3472,7 @@ snapshots:
prettier-plugin-ember-template-tag@0.3.2:
dependencies:
'@babel/core': 7.25.8
'@babel/core': 7.26.0
'@glimmer/syntax': 0.84.3
ember-cli-htmlbars: 6.3.0
ember-template-imports: 3.4.2
@ -3626,7 +3613,7 @@ snapshots:
call-bind: 1.0.7
es-errors: 1.3.0
get-intrinsic: 1.2.4
object-inspect: 1.13.2
object-inspect: 1.13.3
signal-exit@3.0.7: {}
@ -3645,7 +3632,7 @@ snapshots:
snake-case@3.0.4:
dependencies:
dot-case: 3.0.4
tslib: 2.7.0
tslib: 2.8.1
source-map-js@1.2.1: {}
@ -3663,7 +3650,7 @@ snapshots:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
es-abstract: 1.23.3
es-abstract: 1.23.5
es-errors: 1.3.0
es-object-atoms: 1.0.0
get-intrinsic: 1.2.4
@ -3678,7 +3665,7 @@ snapshots:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
es-abstract: 1.23.3
es-abstract: 1.23.5
es-object-atoms: 1.0.0
string.prototype.trimend@1.0.8:
@ -3745,8 +3732,6 @@ snapshots:
tmp@0.2.3: {}
to-fast-properties@2.0.0: {}
to-regex-range@5.0.1:
dependencies:
is-number: 7.0.0
@ -3763,9 +3748,9 @@ snapshots:
ts-replace-all@1.0.0:
dependencies:
core-js: 3.38.1
core-js: 3.39.0
tslib@2.7.0: {}
tslib@2.8.1: {}
type-check@0.4.0:
dependencies:
@ -3825,11 +3810,11 @@ snapshots:
upath@2.0.1: {}
update-browserslist-db@1.1.1(browserslist@4.24.0):
update-browserslist-db@1.1.1(browserslist@4.24.2):
dependencies:
browserslist: 4.24.0
browserslist: 4.24.2
escalade: 3.2.0
picocolors: 1.1.0
picocolors: 1.1.1
uri-js@4.4.1:
dependencies: