@@ -75,8 +75,8 @@ import { TranslateService } from '@ngx-translate/core';
`,
- styles: [
- `
+ styles: [
+ `
.badge-warning {
background-color: #fa0;
}
@@ -127,7 +127,8 @@ import { TranslateService } from '@ngx-translate/core';
align-items: center;
}
`
- ]
+ ],
+ standalone: false
})
export class InterviewActionsTableComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
@Input() rowData: any;
diff --git a/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/interview-panel/table-components/criterions/criterions.component.ts b/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/interview-panel/table-components/criterions/criterions.component.ts
index 8f0c2aebdcf..bb20ad99214 100644
--- a/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/interview-panel/table-components/criterions/criterions.component.ts
+++ b/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/interview-panel/table-components/criterions/criterions.component.ts
@@ -1,8 +1,8 @@
import { Component, Input } from '@angular/core';
@Component({
- selector: 'ga-interview-criterions',
- template: `
+ selector: 'ga-interview-criterions',
+ template: `
-
{{ tech.name }}
@@ -13,13 +13,14 @@ import { Component, Input } from '@angular/core';
`,
- styles: [
- `
+ styles: [
+ `
ul {
list-style-type: '- ';
}
`
- ]
+ ],
+ standalone: false
})
export class InterviewCriterionsTableComponent {
@Input()
diff --git a/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/interview-panel/table-components/date/date.component.ts b/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/interview-panel/table-components/date/date.component.ts
index 79f752377ed..c532e8404fb 100644
--- a/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/interview-panel/table-components/date/date.component.ts
+++ b/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/interview-panel/table-components/date/date.component.ts
@@ -1,16 +1,16 @@
import { Component, Input } from '@angular/core';
@Component({
- selector: 'ga-interview-date',
- template: `
+ selector: 'ga-interview-date',
+ template: `
{{ rowData?.startTime | date : 'shortDate' }}
{{ rowData?.startTime | date : 'shortTime' }}
{{ rowData?.endTime | date : 'shortTime' }}
`,
- styles: [
- `
+ styles: [
+ `
.start-column {
display: flex;
flex-direction: column;
@@ -18,7 +18,8 @@ import { Component, Input } from '@angular/core';
align-items: flex-start;
}
`
- ]
+ ],
+ standalone: false
})
export class InterviewDateTableComponent {
@Input() rowData: any;
diff --git a/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/interview-panel/table-components/interviewers/interviewers.component.ts b/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/interview-panel/table-components/interviewers/interviewers.component.ts
index 26dc6c40704..eade3c175b2 100644
--- a/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/interview-panel/table-components/interviewers/interviewers.component.ts
+++ b/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/interview-panel/table-components/interviewers/interviewers.component.ts
@@ -1,13 +1,14 @@
import { Component, Input } from '@angular/core';
@Component({
- selector: 'ga-interview-interviewers',
- template: `
+ selector: 'ga-interview-interviewers',
+ template: `
0"
[value]="rowData?.employees"
>
- `
+ `,
+ standalone: false
})
export class InterviewersTableComponent {
@Input() rowData: any;
diff --git a/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/interview-panel/table-components/rating/rating.component.ts b/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/interview-panel/table-components/rating/rating.component.ts
index bb4b9fcf204..9367e44d584 100644
--- a/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/interview-panel/table-components/rating/rating.component.ts
+++ b/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/interview-panel/table-components/rating/rating.component.ts
@@ -1,12 +1,13 @@
import { Component, Input } from '@angular/core';
@Component({
- selector: 'ga-interview-rating',
- template: `
+ selector: 'ga-interview-rating',
+ template: `
- `
+ `,
+ standalone: false
})
export class InterviewStarRatingComponent {
@Input() rowData: any;
diff --git a/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/manage-candidate-interviews.component.scss b/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/manage-candidate-interviews.component.scss
index c9e880cd3d8..351bbad14a6 100644
--- a/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/manage-candidate-interviews.component.scss
+++ b/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/manage-candidate-interviews.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
::ng-deep {
.nb-theme-default .tab-link:focus {
diff --git a/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/manage-candidate-interviews.component.ts b/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/manage-candidate-interviews.component.ts
index 0eb94d65063..ab47cc79dfc 100644
--- a/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/manage-candidate-interviews.component.ts
+++ b/apps/gauzy/src/app/pages/candidates/manage-candidate-interviews/manage-candidate-interviews.component.ts
@@ -13,9 +13,10 @@ import { CandidateInterviewMutationComponent } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-manage-candidate-interviews',
- templateUrl: './manage-candidate-interviews.component.html',
- styleUrls: ['./manage-candidate-interviews.component.scss']
+ selector: 'ga-manage-candidate-interviews',
+ templateUrl: './manage-candidate-interviews.component.html',
+ styleUrls: ['./manage-candidate-interviews.component.scss'],
+ standalone: false
})
export class ManageCandidateInterviewsComponent
extends TranslationBaseComponent
diff --git a/apps/gauzy/src/app/pages/candidates/manage-candidate-invite/manage-candidate-invite.component.ts b/apps/gauzy/src/app/pages/candidates/manage-candidate-invite/manage-candidate-invite.component.ts
index 35c74fb6445..41f79d22867 100644
--- a/apps/gauzy/src/app/pages/candidates/manage-candidate-invite/manage-candidate-invite.component.ts
+++ b/apps/gauzy/src/app/pages/candidates/manage-candidate-invite/manage-candidate-invite.component.ts
@@ -2,8 +2,9 @@ import { Component } from '@angular/core';
import { InvitationTypeEnum } from '@gauzy/contracts';
@Component({
- selector: 'ga-manage-candidate-invite',
- templateUrl: './manage-candidate-invite.component.html'
+ selector: 'ga-manage-candidate-invite',
+ templateUrl: './manage-candidate-invite.component.html',
+ standalone: false
})
export class ManageCandidateInviteComponent {
diff --git a/apps/gauzy/src/app/pages/candidates/table-components/candidate-source/candidate-source.component.ts b/apps/gauzy/src/app/pages/candidates/table-components/candidate-source/candidate-source.component.ts
index 7de042a8293..4a8eba8df85 100644
--- a/apps/gauzy/src/app/pages/candidates/table-components/candidate-source/candidate-source.component.ts
+++ b/apps/gauzy/src/app/pages/candidates/table-components/candidate-source/candidate-source.component.ts
@@ -1,13 +1,14 @@
import { Component, Input } from '@angular/core';
@Component({
- template: `
+ template: `
{{ rowData.source?.name }}
- `
+ `,
+ standalone: false
})
export class CandidateSourceComponent {
@Input() rowData: any;
diff --git a/apps/gauzy/src/app/pages/candidates/table-components/candidate-status/candidate-status.component.ts b/apps/gauzy/src/app/pages/candidates/table-components/candidate-status/candidate-status.component.ts
index d02212a6c40..4669cf679de 100644
--- a/apps/gauzy/src/app/pages/candidates/table-components/candidate-status/candidate-status.component.ts
+++ b/apps/gauzy/src/app/pages/candidates/table-components/candidate-status/candidate-status.component.ts
@@ -1,8 +1,9 @@
import { Component, Input } from '@angular/core';
@Component({
- templateUrl: './candidate-status.component.html',
- styleUrls: ['./candidate-status.component.scss']
+ templateUrl: './candidate-status.component.html',
+ styleUrls: ['./candidate-status.component.scss'],
+ standalone: false
})
export class CandidateStatusComponent {
@Input() rowData: any;
diff --git a/apps/gauzy/src/app/pages/contacts/contact-mutation/contact-mutation.component.scss b/apps/gauzy/src/app/pages/contacts/contact-mutation/contact-mutation.component.scss
index 80669304de7..3848597916e 100644
--- a/apps/gauzy/src/app/pages/contacts/contact-mutation/contact-mutation.component.scss
+++ b/apps/gauzy/src/app/pages/contacts/contact-mutation/contact-mutation.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.contact-container {
transition: transform 150ms ease-in-out;
diff --git a/apps/gauzy/src/app/pages/contacts/contact-mutation/contact-mutation.component.ts b/apps/gauzy/src/app/pages/contacts/contact-mutation/contact-mutation.component.ts
index 67f2154d5dd..50b28d47775 100644
--- a/apps/gauzy/src/app/pages/contacts/contact-mutation/contact-mutation.component.ts
+++ b/apps/gauzy/src/app/pages/contacts/contact-mutation/contact-mutation.component.ts
@@ -23,9 +23,10 @@ import { ErrorHandlingService, OrganizationProjectsService, Store, ToastrService
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-contact-mutation',
- templateUrl: './contact-mutation.component.html',
- styleUrls: ['./contact-mutation.component.scss']
+ selector: 'ga-contact-mutation',
+ templateUrl: './contact-mutation.component.html',
+ styleUrls: ['./contact-mutation.component.scss'],
+ standalone: false
})
export class ContactMutationComponent extends TranslationBaseComponent implements OnInit {
FormHelpers: typeof FormHelpers = FormHelpers;
diff --git a/apps/gauzy/src/app/pages/contacts/contact-view/contact-view.component.ts b/apps/gauzy/src/app/pages/contacts/contact-view/contact-view.component.ts
index 4ef76cbb73d..d372d3adc27 100644
--- a/apps/gauzy/src/app/pages/contacts/contact-view/contact-view.component.ts
+++ b/apps/gauzy/src/app/pages/contacts/contact-view/contact-view.component.ts
@@ -12,9 +12,10 @@ import { EmployeesService, OrganizationContactService } from '@gauzy/ui-core/cor
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-contact-view',
- templateUrl: './contact-view.component.html',
- styleUrls: ['./contact-view.component.scss']
+ selector: 'ngx-contact-view',
+ templateUrl: './contact-view.component.html',
+ styleUrls: ['./contact-view.component.scss'],
+ standalone: false
})
export class ContactViewComponent extends TranslationBaseComponent implements OnInit {
tabs: any[];
diff --git a/apps/gauzy/src/app/pages/contacts/contacts.component.scss b/apps/gauzy/src/app/pages/contacts/contacts.component.scss
index 74822fbe821..1ea13cd2692 100644
--- a/apps/gauzy/src/app/pages/contacts/contacts.component.scss
+++ b/apps/gauzy/src/app/pages/contacts/contacts.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_pg-card';
+@use '@shared/_pg-card' as *;
.contact-list {
display: flex;
diff --git a/apps/gauzy/src/app/pages/contacts/contacts.component.ts b/apps/gauzy/src/app/pages/contacts/contacts.component.ts
index 1eda7729b12..11bc42514a1 100644
--- a/apps/gauzy/src/app/pages/contacts/contacts.component.ts
+++ b/apps/gauzy/src/app/pages/contacts/contacts.component.ts
@@ -41,9 +41,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-contacts-list',
- templateUrl: './contacts.component.html',
- styleUrls: ['./contacts.component.scss']
+ selector: 'ngx-contacts-list',
+ templateUrl: './contacts.component.html',
+ styleUrls: ['./contacts.component.scss'],
+ standalone: false
})
export class ContactsComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
showAddCard: boolean;
diff --git a/apps/gauzy/src/app/pages/contacts/invite-contact/invite-contact.component.scss b/apps/gauzy/src/app/pages/contacts/invite-contact/invite-contact.component.scss
index a32881879a0..4635b893b33 100644
--- a/apps/gauzy/src/app/pages/contacts/invite-contact/invite-contact.component.scss
+++ b/apps/gauzy/src/app/pages/contacts/invite-contact/invite-contact.component.scss
@@ -1,4 +1,5 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
+
nb-card {
width: 645px;
background-color: nb-theme(gauzy-card-1);
diff --git a/apps/gauzy/src/app/pages/contacts/invite-contact/invite-contact.component.ts b/apps/gauzy/src/app/pages/contacts/invite-contact/invite-contact.component.ts
index 2114607991b..21a25714b38 100644
--- a/apps/gauzy/src/app/pages/contacts/invite-contact/invite-contact.component.ts
+++ b/apps/gauzy/src/app/pages/contacts/invite-contact/invite-contact.component.ts
@@ -7,9 +7,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
import { InviteService, OrganizationContactService, ToastrService, UsersService } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-invite-contact',
- templateUrl: './invite-contact.component.html',
- styleUrls: ['./invite-contact.component.scss']
+ selector: 'ga-invite-contact',
+ templateUrl: './invite-contact.component.html',
+ styleUrls: ['./invite-contact.component.scss'],
+ standalone: false
})
export class InviteContactComponent extends TranslationBaseComponent implements OnInit {
constructor(
diff --git a/apps/gauzy/src/app/pages/contacts/table-components/contact-action/contact-action.component.ts b/apps/gauzy/src/app/pages/contacts/table-components/contact-action/contact-action.component.ts
index 8ddca96823a..85b6fc082a2 100644
--- a/apps/gauzy/src/app/pages/contacts/table-components/contact-action/contact-action.component.ts
+++ b/apps/gauzy/src/app/pages/contacts/table-components/contact-action/contact-action.component.ts
@@ -2,9 +2,10 @@ import { Component, Input, Output, EventEmitter } from '@angular/core';
import { ComponentLayoutStyleEnum } from '@gauzy/contracts';
@Component({
- selector: 'ngx-contact-action',
- templateUrl: './contact-action.component.html',
- styleUrls: ['../../contacts.component.scss']
+ selector: 'ngx-contact-action',
+ templateUrl: './contact-action.component.html',
+ styleUrls: ['../../contacts.component.scss'],
+ standalone: false
})
export class ContactActionComponent {
@Input()
diff --git a/apps/gauzy/src/app/pages/dashboard/accounting/accounting.component.scss b/apps/gauzy/src/app/pages/dashboard/accounting/accounting.component.scss
index 513a99e6f00..528362ff314 100644
--- a/apps/gauzy/src/app/pages/dashboard/accounting/accounting.component.scss
+++ b/apps/gauzy/src/app/pages/dashboard/accounting/accounting.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-cards';
+@use 'gauzy/_gauzy-cards' as *;
.organization-employee-header {
display: grid;
@@ -119,4 +119,4 @@
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/dashboard/accounting/accounting.component.ts b/apps/gauzy/src/app/pages/dashboard/accounting/accounting.component.ts
index ae513bd0f1b..fee5c2e0d79 100644
--- a/apps/gauzy/src/app/pages/dashboard/accounting/accounting.component.ts
+++ b/apps/gauzy/src/app/pages/dashboard/accounting/accounting.component.ts
@@ -21,13 +21,14 @@ import { ALL_EMPLOYEES_SELECTED, ChartUtil, IChartData } from '@gauzy/ui-core/sh
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-dashboard-accounting',
- templateUrl: './accounting.component.html',
- styleUrls: [
- '../../organizations/edit-organization/edit-organization.component.scss',
- './accounting.component.scss'
- ],
- providers: [CurrencyPipe]
+ selector: 'ga-dashboard-accounting',
+ templateUrl: './accounting.component.html',
+ styleUrls: [
+ '../../organizations/edit-organization/edit-organization.component.scss',
+ './accounting.component.scss'
+ ],
+ providers: [CurrencyPipe],
+ standalone: false
})
export class AccountingComponent extends TranslationBaseComponent implements AfterViewInit, OnInit, OnDestroy {
public aggregatedEmployeeStatistics: IAggregatedEmployeeStatistic;
diff --git a/apps/gauzy/src/app/pages/dashboard/dashboard.component.scss b/apps/gauzy/src/app/pages/dashboard/dashboard.component.scss
index b62c9645d6a..93f042f8929 100644
--- a/apps/gauzy/src/app/pages/dashboard/dashboard.component.scss
+++ b/apps/gauzy/src/app/pages/dashboard/dashboard.component.scss
@@ -1,4 +1,5 @@
-@import 'var';
+@use 'var' as *;
+
.header {
padding: 30px;
diff --git a/apps/gauzy/src/app/pages/dashboard/dashboard.component.ts b/apps/gauzy/src/app/pages/dashboard/dashboard.component.ts
index efbbd979601..c285ce5edbf 100644
--- a/apps/gauzy/src/app/pages/dashboard/dashboard.component.ts
+++ b/apps/gauzy/src/app/pages/dashboard/dashboard.component.ts
@@ -10,9 +10,10 @@ import { DynamicTabsComponent } from '@gauzy/ui-core/shared';
@UntilDestroy()
@Component({
- selector: 'ga-dashboard-layout',
- templateUrl: './dashboard.component.html',
- styleUrls: ['./dashboard.component.scss']
+ selector: 'ga-dashboard-layout',
+ templateUrl: './dashboard.component.html',
+ styleUrls: ['./dashboard.component.scss'],
+ standalone: false
})
export class DashboardComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
public tabsetId: PageTabsetRegistryId = this._route.snapshot.data.tabsetId; // The identifier for the tabset
diff --git a/apps/gauzy/src/app/pages/dashboard/data-entry-shortcuts/data-entry-shortcuts.component.ts b/apps/gauzy/src/app/pages/dashboard/data-entry-shortcuts/data-entry-shortcuts.component.ts
index ba81e5ff4fa..ab9bfdc4bec 100644
--- a/apps/gauzy/src/app/pages/dashboard/data-entry-shortcuts/data-entry-shortcuts.component.ts
+++ b/apps/gauzy/src/app/pages/dashboard/data-entry-shortcuts/data-entry-shortcuts.component.ts
@@ -6,9 +6,10 @@ import { PermissionsEnum } from '@gauzy/contracts';
@UntilDestroy()
@Component({
- selector: 'ga-data-entry-shortcuts',
- templateUrl: './data-entry-shortcuts.component.html',
- styleUrls: ['./data-entry-shortcuts.component.scss']
+ selector: 'ga-data-entry-shortcuts',
+ templateUrl: './data-entry-shortcuts.component.html',
+ styleUrls: ['./data-entry-shortcuts.component.scss'],
+ standalone: false
})
export class DataEntryShortcutsComponent implements OnInit, OnDestroy {
constructor(readonly router: Router, readonly store: Store) {}
diff --git a/apps/gauzy/src/app/pages/dashboard/employee-charts/employee-charts.component.ts b/apps/gauzy/src/app/pages/dashboard/employee-charts/employee-charts.component.ts
index 383922edd8f..5386f8e708a 100644
--- a/apps/gauzy/src/app/pages/dashboard/employee-charts/employee-charts.component.ts
+++ b/apps/gauzy/src/app/pages/dashboard/employee-charts/employee-charts.component.ts
@@ -8,9 +8,10 @@ export enum EmployeeChartEnum {
}
@Component({
- selector: 'ga-employee-charts',
- templateUrl: './employee-charts.component.html',
- styleUrls: ['./employee-charts.component.scss']
+ selector: 'ga-employee-charts',
+ templateUrl: './employee-charts.component.html',
+ styleUrls: ['./employee-charts.component.scss'],
+ standalone: false
})
export class EmployeeChartsComponent implements OnInit {
selectedChart = EmployeeChartEnum.BAR;
diff --git a/apps/gauzy/src/app/pages/dashboard/employee-charts/employee-doughnut-chart/employee-doughnut-chart.component.ts b/apps/gauzy/src/app/pages/dashboard/employee-charts/employee-doughnut-chart/employee-doughnut-chart.component.ts
index e691bb0e981..1a7474395cd 100644
--- a/apps/gauzy/src/app/pages/dashboard/employee-charts/employee-doughnut-chart/employee-doughnut-chart.component.ts
+++ b/apps/gauzy/src/app/pages/dashboard/employee-charts/employee-doughnut-chart/employee-doughnut-chart.component.ts
@@ -15,8 +15,8 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-employee-doughnut-chart',
- template: `
+ selector: 'ga-employee-doughnut-chart',
+ template: `
`,
- styles: [
- `
+ styles: [
+ `
:host {
.title {
display: flex;
@@ -46,8 +46,9 @@ import { Store } from '@gauzy/ui-core/core';
}
}
`
- ],
- providers: [CurrencyPipe, CurrencyPositionPipe]
+ ],
+ providers: [CurrencyPipe, CurrencyPositionPipe],
+ standalone: false
})
export class EmployeeDoughnutChartComponent extends TranslationBaseComponent implements OnInit, OnDestroy, OnChanges {
public chartType: ChartType = 'doughnut';
diff --git a/apps/gauzy/src/app/pages/dashboard/employee-charts/employee-horizontal-bar-chart/employee-horizontal-bar-chart.component.ts b/apps/gauzy/src/app/pages/dashboard/employee-charts/employee-horizontal-bar-chart/employee-horizontal-bar-chart.component.ts
index 42841a07bda..e60bb76d4db 100644
--- a/apps/gauzy/src/app/pages/dashboard/employee-charts/employee-horizontal-bar-chart/employee-horizontal-bar-chart.component.ts
+++ b/apps/gauzy/src/app/pages/dashboard/employee-charts/employee-horizontal-bar-chart/employee-horizontal-bar-chart.component.ts
@@ -15,8 +15,8 @@ import { CurrencyPositionPipe } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-employee-horizontal-bar-chart',
- template: `
+ selector: 'ga-employee-horizontal-bar-chart',
+ template: `
@@ -31,8 +31,8 @@ import { CurrencyPositionPipe } from '@gauzy/ui-core/shared';
`,
- styles: [
- `
+ styles: [
+ `
:host {
.chart {
width: 500px;
@@ -46,8 +46,9 @@ import { CurrencyPositionPipe } from '@gauzy/ui-core/shared';
}
}
`
- ],
- providers: [CurrencyPipe, CurrencyPositionPipe]
+ ],
+ providers: [CurrencyPipe, CurrencyPositionPipe],
+ standalone: false
})
export class EmployeeHorizontalBarChartComponent
extends TranslationBaseComponent
diff --git a/apps/gauzy/src/app/pages/dashboard/employee-charts/employee-stacked-bar-chart/employee-stacked-bar-chart.component.ts b/apps/gauzy/src/app/pages/dashboard/employee-charts/employee-stacked-bar-chart/employee-stacked-bar-chart.component.ts
index d4aa1c52bb2..81383e315a2 100644
--- a/apps/gauzy/src/app/pages/dashboard/employee-charts/employee-stacked-bar-chart/employee-stacked-bar-chart.component.ts
+++ b/apps/gauzy/src/app/pages/dashboard/employee-charts/employee-stacked-bar-chart/employee-stacked-bar-chart.component.ts
@@ -8,8 +8,8 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy()
@Component({
- selector: 'ga-employee-stacked-bar-chart',
- template: `
+ selector: 'ga-employee-stacked-bar-chart',
+ template: `
@@ -24,7 +24,8 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
[data]="data"
[options]="options"
>
- `
+ `,
+ standalone: false
})
export class EmployeeStackedBarChartComponent extends TranslationBaseComponent implements OnInit, OnDestroy, OnChanges {
data: any;
diff --git a/apps/gauzy/src/app/pages/dashboard/human-resources/human-resources.component.scss b/apps/gauzy/src/app/pages/dashboard/human-resources/human-resources.component.scss
index 35c60012531..3ece662158c 100644
--- a/apps/gauzy/src/app/pages/dashboard/human-resources/human-resources.component.scss
+++ b/apps/gauzy/src/app/pages/dashboard/human-resources/human-resources.component.scss
@@ -1,4 +1,5 @@
-@import 'gauzy/_gauzy-cards';
+@use 'gauzy/_gauzy-cards' as *;
+
.header {
background-color: unset;
.header-container {
diff --git a/apps/gauzy/src/app/pages/dashboard/human-resources/human-resources.component.ts b/apps/gauzy/src/app/pages/dashboard/human-resources/human-resources.component.ts
index fae800f8711..d888d26142a 100644
--- a/apps/gauzy/src/app/pages/dashboard/human-resources/human-resources.component.ts
+++ b/apps/gauzy/src/app/pages/dashboard/human-resources/human-resources.component.ts
@@ -19,9 +19,10 @@ import { ProfitHistoryComponent, RecordsHistoryComponent } from '@gauzy/ui-core/
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-human-resources',
- templateUrl: './human-resources.component.html',
- styleUrls: ['./human-resources.component.scss']
+ selector: 'ga-human-resources',
+ templateUrl: './human-resources.component.html',
+ styleUrls: ['./human-resources.component.scss'],
+ standalone: false
})
export class HumanResourcesComponent implements OnInit, OnDestroy {
loading: boolean;
diff --git a/apps/gauzy/src/app/pages/dashboard/project-management/project-management-details/project-management-details.component.ts b/apps/gauzy/src/app/pages/dashboard/project-management/project-management-details/project-management-details.component.ts
index 15a6a928799..22b8f11eb7f 100644
--- a/apps/gauzy/src/app/pages/dashboard/project-management/project-management-details/project-management-details.component.ts
+++ b/apps/gauzy/src/app/pages/dashboard/project-management/project-management-details/project-management-details.component.ts
@@ -23,9 +23,10 @@ import { MyTaskDialogComponent } from '../../../tasks/components/my-task-dialog/
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-project-management-details',
- templateUrl: './project-management-details.component.html',
- styleUrls: ['./project-management-details.component.scss']
+ selector: 'gauzy-project-management-details',
+ templateUrl: './project-management-details.component.html',
+ styleUrls: ['./project-management-details.component.scss'],
+ standalone: false
})
export class ProjectManagementDetailsComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
private _smartTableSource: ServerDataSource;
diff --git a/apps/gauzy/src/app/pages/dashboard/project-management/project-management.component.scss b/apps/gauzy/src/app/pages/dashboard/project-management/project-management.component.scss
index 859f2c9b0de..aac5164f533 100644
--- a/apps/gauzy/src/app/pages/dashboard/project-management/project-management.component.scss
+++ b/apps/gauzy/src/app/pages/dashboard/project-management/project-management.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-cards';
+@use 'gauzy/_gauzy-cards' as *;
:host {
@include nb-card_overrides(
diff --git a/apps/gauzy/src/app/pages/dashboard/project-management/project-management.component.ts b/apps/gauzy/src/app/pages/dashboard/project-management/project-management.component.ts
index 7637f07e6d1..cbcc91044c8 100644
--- a/apps/gauzy/src/app/pages/dashboard/project-management/project-management.component.ts
+++ b/apps/gauzy/src/app/pages/dashboard/project-management/project-management.component.ts
@@ -8,9 +8,10 @@ import { DateRangePickerBuilderService, Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-project-management',
- templateUrl: './project-management.component.html',
- styleUrls: ['./project-management.component.scss']
+ selector: 'ga-project-management',
+ templateUrl: './project-management.component.html',
+ styleUrls: ['./project-management.component.scss'],
+ standalone: false
})
export class ProjectManagementComponent implements OnInit, OnDestroy {
public organization: IOrganization;
diff --git a/apps/gauzy/src/app/pages/dashboard/team/all-team/all-team.component.ts b/apps/gauzy/src/app/pages/dashboard/team/all-team/all-team.component.ts
index df7b0c1e580..24e8ec7e7f0 100644
--- a/apps/gauzy/src/app/pages/dashboard/team/all-team/all-team.component.ts
+++ b/apps/gauzy/src/app/pages/dashboard/team/all-team/all-team.component.ts
@@ -4,9 +4,10 @@ import { OrganizationProjectsService, Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-all-team',
- templateUrl: './all-team.component.html',
- styleUrls: ['./all-team.component.scss']
+ selector: 'gauzy-all-team',
+ templateUrl: './all-team.component.html',
+ styleUrls: ['./all-team.component.scss'],
+ standalone: false
})
export class AllTeamComponent implements OnInit {
@Input()
diff --git a/apps/gauzy/src/app/pages/dashboard/team/chart/chart.component.ts b/apps/gauzy/src/app/pages/dashboard/team/chart/chart.component.ts
index dc00d560f7f..3ebb1aea3d3 100644
--- a/apps/gauzy/src/app/pages/dashboard/team/chart/chart.component.ts
+++ b/apps/gauzy/src/app/pages/dashboard/team/chart/chart.component.ts
@@ -7,9 +7,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gz-doughnut-chart',
- templateUrl: './chart.component.html',
- styleUrls: ['./chart.component.scss']
+ selector: 'gz-doughnut-chart',
+ templateUrl: './chart.component.html',
+ styleUrls: ['./chart.component.scss'],
+ standalone: false
})
export class ChartComponent extends TranslationBaseComponent implements OnInit, OnChanges, OnDestroy {
public data: any;
diff --git a/apps/gauzy/src/app/pages/dashboard/team/team-card/team-card.component.ts b/apps/gauzy/src/app/pages/dashboard/team/team-card/team-card.component.ts
index 82c7ee03305..70b7e13d0eb 100644
--- a/apps/gauzy/src/app/pages/dashboard/team/team-card/team-card.component.ts
+++ b/apps/gauzy/src/app/pages/dashboard/team/team-card/team-card.component.ts
@@ -2,9 +2,10 @@ import { Component, Input, OnInit } from '@angular/core';
import { IEmployee, IOrganizationTeam, RolesEnum } from '@gauzy/contracts';
@Component({
- selector: 'gauzy-team-card',
- templateUrl: './team-card.component.html',
- styleUrls: ['./team-card.component.scss']
+ selector: 'gauzy-team-card',
+ templateUrl: './team-card.component.html',
+ styleUrls: ['./team-card.component.scss'],
+ standalone: false
})
export class TeamCardComponent implements OnInit {
constructor() {}
diff --git a/apps/gauzy/src/app/pages/dashboard/team/team-member/team-member.component.ts b/apps/gauzy/src/app/pages/dashboard/team/team-member/team-member.component.ts
index 72038de7285..26bad11d35c 100644
--- a/apps/gauzy/src/app/pages/dashboard/team/team-member/team-member.component.ts
+++ b/apps/gauzy/src/app/pages/dashboard/team/team-member/team-member.component.ts
@@ -4,9 +4,10 @@ import { IOrganizationTeamEmployee } from '@gauzy/contracts';
import { progressStatus } from '@gauzy/ui-core/common';
@Component({
- selector: 'gauzy-team-member',
- templateUrl: './team-member.component.html',
- styleUrls: ['./team-member.component.scss']
+ selector: 'gauzy-team-member',
+ templateUrl: './team-member.component.html',
+ styleUrls: ['./team-member.component.scss'],
+ standalone: false
})
export class TeamMemberComponent implements OnInit {
private _member: IOrganizationTeamEmployee | any;
diff --git a/apps/gauzy/src/app/pages/dashboard/team/team.component.scss b/apps/gauzy/src/app/pages/dashboard/team/team.component.scss
index 9ff866d599b..9bd74344e8b 100644
--- a/apps/gauzy/src/app/pages/dashboard/team/team.component.scss
+++ b/apps/gauzy/src/app/pages/dashboard/team/team.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-cards';
+@use 'gauzy/_gauzy-cards' as *;
:host {
@include nb-card_overrides(auto, calc($default-card-height + 3rem), $default-radius);
diff --git a/apps/gauzy/src/app/pages/dashboard/team/team.component.ts b/apps/gauzy/src/app/pages/dashboard/team/team.component.ts
index 69cd2b2e021..c7d4ad81175 100644
--- a/apps/gauzy/src/app/pages/dashboard/team/team.component.ts
+++ b/apps/gauzy/src/app/pages/dashboard/team/team.component.ts
@@ -24,9 +24,10 @@ import { BaseSelectorFilterComponent, TimeZoneService } from '@gauzy/ui-core/sha
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-teams',
- templateUrl: './team.component.html',
- styleUrls: ['./team.component.scss']
+ selector: 'gauzy-teams',
+ templateUrl: './team.component.html',
+ styleUrls: ['./team.component.scss'],
+ standalone: false
})
export class TeamComponent extends BaseSelectorFilterComponent implements OnInit, OnDestroy {
private _logs: ITimeLog[] = [];
diff --git a/apps/gauzy/src/app/pages/dashboard/time-tracking/time-tracking.component.scss b/apps/gauzy/src/app/pages/dashboard/time-tracking/time-tracking.component.scss
index 58911c35e4f..d973184bdd2 100644
--- a/apps/gauzy/src/app/pages/dashboard/time-tracking/time-tracking.component.scss
+++ b/apps/gauzy/src/app/pages/dashboard/time-tracking/time-tracking.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-cards.scss';
+@use 'gauzy/_gauzy-cards' as *;
:host {
background-color: rgba(50, 50, 50, 0.02);
diff --git a/apps/gauzy/src/app/pages/dashboard/time-tracking/time-tracking.component.ts b/apps/gauzy/src/app/pages/dashboard/time-tracking/time-tracking.component.ts
index 2a921b94695..b9cbe2f49a3 100644
--- a/apps/gauzy/src/app/pages/dashboard/time-tracking/time-tracking.component.ts
+++ b/apps/gauzy/src/app/pages/dashboard/time-tracking/time-tracking.component.ts
@@ -84,9 +84,10 @@ enum Windows {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-time-tracking-dashboard',
- templateUrl: './time-tracking.component.html',
- styleUrls: ['./time-tracking.component.scss']
+ selector: 'ga-time-tracking-dashboard',
+ templateUrl: './time-tracking.component.html',
+ styleUrls: ['./time-tracking.component.scss'],
+ standalone: false
})
export class TimeTrackingComponent
extends TranslationBaseComponent
diff --git a/apps/gauzy/src/app/pages/departments/departments-mutation/departments-mutation.component.scss b/apps/gauzy/src/app/pages/departments/departments-mutation/departments-mutation.component.scss
index 1802b32af0d..f3caf11f771 100644
--- a/apps/gauzy/src/app/pages/departments/departments-mutation/departments-mutation.component.scss
+++ b/apps/gauzy/src/app/pages/departments/departments-mutation/departments-mutation.component.scss
@@ -1 +1 @@
-@import 'apps/gauzy/src/app/pages/expenses/expense-categories/expense-categories.component.scss';
\ No newline at end of file
+@forward '../../expenses/expense-categories/expense-categories.component';
diff --git a/apps/gauzy/src/app/pages/departments/departments-mutation/departments-mutation.component.ts b/apps/gauzy/src/app/pages/departments/departments-mutation/departments-mutation.component.ts
index 2a50ca7373e..e54f0292dda 100644
--- a/apps/gauzy/src/app/pages/departments/departments-mutation/departments-mutation.component.ts
+++ b/apps/gauzy/src/app/pages/departments/departments-mutation/departments-mutation.component.ts
@@ -7,9 +7,10 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-departments-mutation',
- templateUrl: './departments-mutation.component.html',
- styleUrls: ['./departments-mutation.component.scss']
+ selector: 'ga-departments-mutation',
+ templateUrl: './departments-mutation.component.html',
+ styleUrls: ['./departments-mutation.component.scss'],
+ standalone: false
})
export class DepartmentsMutationComponent implements OnInit {
/*
diff --git a/apps/gauzy/src/app/pages/departments/departments.component.scss b/apps/gauzy/src/app/pages/departments/departments.component.scss
index df91f07792a..5ac39261bb7 100644
--- a/apps/gauzy/src/app/pages/departments/departments.component.scss
+++ b/apps/gauzy/src/app/pages/departments/departments.component.scss
@@ -1 +1 @@
-@import '@shared/_pg-card';
+@forward '@shared/_pg-card';
diff --git a/apps/gauzy/src/app/pages/departments/departments.component.ts b/apps/gauzy/src/app/pages/departments/departments.component.ts
index 708f5026db9..f4ddea6e302 100644
--- a/apps/gauzy/src/app/pages/departments/departments.component.ts
+++ b/apps/gauzy/src/app/pages/departments/departments.component.ts
@@ -29,9 +29,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-departments',
- templateUrl: './departments.component.html',
- styleUrls: ['./departments.component.scss']
+ selector: 'ga-departments',
+ templateUrl: './departments.component.html',
+ styleUrls: ['./departments.component.scss'],
+ standalone: false
})
export class DepartmentsComponent extends PaginationFilterBaseComponent implements AfterViewInit, OnInit, OnDestroy {
@ViewChild('addEditTemplate')
diff --git a/apps/gauzy/src/app/pages/documents/documents.component.scss b/apps/gauzy/src/app/pages/documents/documents.component.scss
index b2fd715e910..001fa112aec 100644
--- a/apps/gauzy/src/app/pages/documents/documents.component.scss
+++ b/apps/gauzy/src/app/pages/documents/documents.component.scss
@@ -1 +1 @@
-@import '../vendors/vendors.component.scss';
+@forward '../vendors/vendors.component';
diff --git a/apps/gauzy/src/app/pages/documents/documents.component.ts b/apps/gauzy/src/app/pages/documents/documents.component.ts
index e291566230e..fcc5883be12 100644
--- a/apps/gauzy/src/app/pages/documents/documents.component.ts
+++ b/apps/gauzy/src/app/pages/documents/documents.component.ts
@@ -22,9 +22,10 @@ import { Subject } from 'rxjs/internal/Subject';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-documents',
- templateUrl: './documents.component.html',
- styleUrls: ['documents.component.scss']
+ selector: 'ga-documents',
+ templateUrl: './documents.component.html',
+ styleUrls: ['documents.component.scss'],
+ standalone: false
})
export class DocumentsComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
@ViewChild('uploadDoc') uploadDoc: UploadDocumentComponent;
diff --git a/apps/gauzy/src/app/pages/documents/upload-document/upload-document.component.ts b/apps/gauzy/src/app/pages/documents/upload-document/upload-document.component.ts
index 56e85ed865e..86f2e012fc3 100644
--- a/apps/gauzy/src/app/pages/documents/upload-document/upload-document.component.ts
+++ b/apps/gauzy/src/app/pages/documents/upload-document/upload-document.component.ts
@@ -3,8 +3,9 @@ import { Validators, UntypedFormBuilder, UntypedFormGroup, AbstractControl } fro
import { IImageAsset } from '@gauzy/contracts';
@Component({
- selector: 'ga-upload-doc',
- templateUrl: './upload-document.component.html'
+ selector: 'ga-upload-doc',
+ templateUrl: './upload-document.component.html',
+ standalone: false
})
export class UploadDocumentComponent implements OnInit {
diff --git a/apps/gauzy/src/app/pages/email-templates/email-templates.component.scss b/apps/gauzy/src/app/pages/email-templates/email-templates.component.scss
index 14da51543a5..a501aaf2a22 100644
--- a/apps/gauzy/src/app/pages/email-templates/email-templates.component.scss
+++ b/apps/gauzy/src/app/pages/email-templates/email-templates.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-overrides' as *;
$height: calc(100vh - 25.5rem);
diff --git a/apps/gauzy/src/app/pages/email-templates/email-templates.component.ts b/apps/gauzy/src/app/pages/email-templates/email-templates.component.ts
index 0299415e931..485489f2249 100644
--- a/apps/gauzy/src/app/pages/email-templates/email-templates.component.ts
+++ b/apps/gauzy/src/app/pages/email-templates/email-templates.component.ts
@@ -21,8 +21,9 @@ import { ToastrService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- templateUrl: './email-templates.component.html',
- styleUrls: ['./email-templates.component.scss']
+ templateUrl: './email-templates.component.html',
+ styleUrls: ['./email-templates.component.scss'],
+ standalone: false
})
export class EmailTemplatesComponent extends TranslationBaseComponent implements OnInit, AfterViewInit, OnDestroy {
templates: string[] = Object.values(EmailTemplateEnum);
diff --git a/apps/gauzy/src/app/pages/employee-levels/employee-level.component.scss b/apps/gauzy/src/app/pages/employee-levels/employee-level.component.scss
index b2fd715e910..001fa112aec 100644
--- a/apps/gauzy/src/app/pages/employee-levels/employee-level.component.scss
+++ b/apps/gauzy/src/app/pages/employee-levels/employee-level.component.scss
@@ -1 +1 @@
-@import '../vendors/vendors.component.scss';
+@forward '../vendors/vendors.component';
diff --git a/apps/gauzy/src/app/pages/employee-levels/employee-level.component.ts b/apps/gauzy/src/app/pages/employee-levels/employee-level.component.ts
index b7c4ae63018..45bed11a2e3 100644
--- a/apps/gauzy/src/app/pages/employee-levels/employee-level.component.ts
+++ b/apps/gauzy/src/app/pages/employee-levels/employee-level.component.ts
@@ -17,9 +17,10 @@ import { EmployeeLevelService, Store, ToastrService } from '@gauzy/ui-core/core'
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-employee-level',
- templateUrl: './employee-level.component.html',
- styleUrls: ['employee-level.component.scss']
+ selector: 'ga-employee-level',
+ templateUrl: './employee-level.component.html',
+ styleUrls: ['employee-level.component.scss'],
+ standalone: false
})
export class EmployeeLevelComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
organization: IOrganization;
diff --git a/apps/gauzy/src/app/pages/employees/activity/app-url-activity/app-url-activity.component.scss b/apps/gauzy/src/app/pages/employees/activity/app-url-activity/app-url-activity.component.scss
index f49c8c5edaf..20d3383ac27 100644
--- a/apps/gauzy/src/app/pages/employees/activity/app-url-activity/app-url-activity.component.scss
+++ b/apps/gauzy/src/app/pages/employees/activity/app-url-activity/app-url-activity.component.scss
@@ -1,4 +1,5 @@
-@import '../time-activities/time-activities/time-activities.component.scss';
+@forward '../time-activities/time-activities/time-activities.component';
+
:host {
.percentage-col {
width: 90px;
diff --git a/apps/gauzy/src/app/pages/employees/activity/app-url-activity/app-url-activity.component.ts b/apps/gauzy/src/app/pages/employees/activity/app-url-activity/app-url-activity.component.ts
index 78132488bcc..33c0b146d74 100644
--- a/apps/gauzy/src/app/pages/employees/activity/app-url-activity/app-url-activity.component.ts
+++ b/apps/gauzy/src/app/pages/employees/activity/app-url-activity/app-url-activity.component.ts
@@ -21,9 +21,10 @@ import { BaseSelectorFilterComponent, GauzyFiltersComponent, TimeZoneService } f
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-app-url-activity',
- styleUrls: ['./app-url-activity.component.scss'],
- templateUrl: './app-url-activity.component.html'
+ selector: 'ngx-app-url-activity',
+ styleUrls: ['./app-url-activity.component.scss'],
+ templateUrl: './app-url-activity.component.html',
+ standalone: false
})
export class AppUrlActivityComponent extends BaseSelectorFilterComponent implements OnInit, OnDestroy {
filters: ITimeLogFilters = this.request;
diff --git a/apps/gauzy/src/app/pages/employees/activity/layout/layout.component.scss b/apps/gauzy/src/app/pages/employees/activity/layout/layout.component.scss
index 145d8f4ef5c..64d6f1ea5be 100644
--- a/apps/gauzy/src/app/pages/employees/activity/layout/layout.component.scss
+++ b/apps/gauzy/src/app/pages/employees/activity/layout/layout.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host {
nb-card {
diff --git a/apps/gauzy/src/app/pages/employees/activity/layout/layout.component.ts b/apps/gauzy/src/app/pages/employees/activity/layout/layout.component.ts
index ccb29fe91da..aad6f360acd 100644
--- a/apps/gauzy/src/app/pages/employees/activity/layout/layout.component.ts
+++ b/apps/gauzy/src/app/pages/employees/activity/layout/layout.component.ts
@@ -12,10 +12,11 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-time-activities-layout',
- templateUrl: './layout.component.html',
- styleUrls: ['./layout.component.scss'],
- providers: [RouteUtil]
+ selector: 'ngx-time-activities-layout',
+ templateUrl: './layout.component.html',
+ styleUrls: ['./layout.component.scss'],
+ providers: [RouteUtil],
+ standalone: false
})
export class ActivityLayoutComponent implements OnInit, OnDestroy {
public title: string;
diff --git a/apps/gauzy/src/app/pages/employees/activity/screenshot/screenshot/screenshot.component.scss b/apps/gauzy/src/app/pages/employees/activity/screenshot/screenshot/screenshot.component.scss
index bed2e78725e..da61a42e468 100644
--- a/apps/gauzy/src/app/pages/employees/activity/screenshot/screenshot/screenshot.component.scss
+++ b/apps/gauzy/src/app/pages/employees/activity/screenshot/screenshot/screenshot.component.scss
@@ -1,5 +1,5 @@
-@import 'report';
-@import '../../time-activities/time-activities/time-activities.component.scss';
+@forward 'report';
+@forward '../../time-activities/time-activities/time-activities.component';
:host {
::ng-deep {
diff --git a/apps/gauzy/src/app/pages/employees/activity/screenshot/screenshot/screenshot.component.ts b/apps/gauzy/src/app/pages/employees/activity/screenshot/screenshot/screenshot.component.ts
index 40aafa833e9..6e0aba4a0d7 100644
--- a/apps/gauzy/src/app/pages/employees/activity/screenshot/screenshot/screenshot.component.ts
+++ b/apps/gauzy/src/app/pages/employees/activity/screenshot/screenshot/screenshot.component.ts
@@ -31,9 +31,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-screenshots',
- templateUrl: './screenshot.component.html',
- styleUrls: ['./screenshot.component.scss']
+ selector: 'ngx-screenshots',
+ templateUrl: './screenshot.component.html',
+ styleUrls: ['./screenshot.component.scss'],
+ standalone: false
})
export class ScreenshotComponent extends BaseSelectorFilterComponent implements AfterViewInit, OnInit, OnDestroy {
payloads$: BehaviorSubject
= new BehaviorSubject(null);
diff --git a/apps/gauzy/src/app/pages/employees/activity/time-activities/time-activities/time-activities.component.scss b/apps/gauzy/src/app/pages/employees/activity/time-activities/time-activities/time-activities.component.scss
index 9094fe975ec..c85b532f00b 100644
--- a/apps/gauzy/src/app/pages/employees/activity/time-activities/time-activities/time-activities.component.scss
+++ b/apps/gauzy/src/app/pages/employees/activity/time-activities/time-activities/time-activities.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host .custom-card {
border-radius: 0 nb-theme(border-radius) nb-theme(border-radius) nb-theme(border-radius);
diff --git a/apps/gauzy/src/app/pages/employees/activity/time-activities/time-activities/time-activities.component.ts b/apps/gauzy/src/app/pages/employees/activity/time-activities/time-activities/time-activities.component.ts
index c9e41872e84..466014beae4 100644
--- a/apps/gauzy/src/app/pages/employees/activity/time-activities/time-activities/time-activities.component.ts
+++ b/apps/gauzy/src/app/pages/employees/activity/time-activities/time-activities/time-activities.component.ts
@@ -5,9 +5,10 @@ import { DateRangePickerBuilderService, TimesheetFilterService } from '@gauzy/ui
import { GauzyFiltersComponent } from '@gauzy/ui-core/shared';
@Component({
- selector: 'gauzy-time-activities',
- templateUrl: './time-activities.component.html',
- styleUrls: ['./time-activities.component.scss']
+ selector: 'gauzy-time-activities',
+ templateUrl: './time-activities.component.html',
+ styleUrls: ['./time-activities.component.scss'],
+ standalone: false
})
export class TimeActivitiesComponent implements OnInit {
filters: ITimeLogFilters;
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-contact/edit-employee-contact.component.ts b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-contact/edit-employee-contact.component.ts
index 6314fc5a13e..96148c17cd6 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-contact/edit-employee-contact.component.ts
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-contact/edit-employee-contact.component.ts
@@ -8,10 +8,10 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy()
@Component({
- selector: 'ga-edit-employee-contacts',
- templateUrl: './edit-employee-contact.component.html',
- styles: [
- `
+ selector: 'ga-edit-employee-contacts',
+ templateUrl: './edit-employee-contact.component.html',
+ styles: [
+ `
:host {
overflow-y: auto;
height: calc(100vh - 20.5rem);
@@ -29,7 +29,8 @@ import { Store } from '@gauzy/ui-core/core';
}
}
`
- ]
+ ],
+ standalone: false
})
export class EditEmployeeContactComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
organizationContact: IOrganizationContact[] = [];
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-employment/edit-employee-employment.component.scss b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-employment/edit-employee-employment.component.scss
index 3b8b48a7af7..872954b6f1d 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-employment/edit-employee-employment.component.scss
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-employment/edit-employee-employment.component.scss
@@ -1,5 +1,7 @@
-@import 'gauzy/_gauzy-cards';
+@use 'gauzy/_gauzy-cards' as *;
+
$radius: nb-theme(border-radius);
+
.notes {
margin-top: 16px;
padding: 10px;
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-employment/edit-employee-employment.component.ts b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-employment/edit-employee-employment.component.ts
index 7da3f6cecaa..066c11c4aa1 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-employment/edit-employee-employment.component.ts
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-employment/edit-employee-employment.component.ts
@@ -28,9 +28,10 @@ import { ToastrService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-edit-employee-employment',
- templateUrl: './edit-employee-employment.component.html',
- styleUrls: ['./edit-employee-employment.component.scss']
+ selector: 'ga-edit-employee-employment',
+ templateUrl: './edit-employee-employment.component.html',
+ styleUrls: ['./edit-employee-employment.component.scss'],
+ standalone: false
})
export class EditEmployeeEmploymentComponent implements OnInit, OnDestroy {
selectedEmployee: IEmployee;
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-hiring/edit-employee-hiring.component.scss b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-hiring/edit-employee-hiring.component.scss
index 6c9b8b4b72d..503e311c167 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-hiring/edit-employee-hiring.component.scss
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-hiring/edit-employee-hiring.component.scss
@@ -1,5 +1,7 @@
-@import 'themes';
+@use 'themes' as *;
+
$radius: nb-theme(border-radius);
+
:host {
background-color: var(--gauzy-card-2);
border-radius: $radius;
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-hiring/edit-employee-hiring.component.ts b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-hiring/edit-employee-hiring.component.ts
index d3777aca34b..20a49b030ab 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-hiring/edit-employee-hiring.component.ts
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-hiring/edit-employee-hiring.component.ts
@@ -7,12 +7,13 @@ import { CompareDateValidator, EmployeeStore, Store } from '@gauzy/ui-core/core'
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-edit-employee-hiring',
- templateUrl: './edit-employee-hiring.component.html',
- styleUrls: [
- '../../../../organizations/edit-organization/edit-organization-settings/edit-organization-main/edit-organization-main.component.scss',
- './edit-employee-hiring.component.scss'
- ]
+ selector: 'ga-edit-employee-hiring',
+ templateUrl: './edit-employee-hiring.component.html',
+ styleUrls: [
+ '../../../../organizations/edit-organization/edit-organization-settings/edit-organization-main/edit-organization-main.component.scss',
+ './edit-employee-hiring.component.scss'
+ ],
+ standalone: false
})
export class EditEmployeeHiringComponent implements OnInit, OnDestroy {
selectedEmployee: IEmployee;
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-location/edit-employee-location.component.scss b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-location/edit-employee-location.component.scss
index 2239ac7a443..9e9cefce95f 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-location/edit-employee-location.component.scss
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-location/edit-employee-location.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host {
overflow-y: auto;
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-location/edit-employee-location.component.ts b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-location/edit-employee-location.component.ts
index 4a40546cc9a..00504ce1345 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-location/edit-employee-location.component.ts
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-location/edit-employee-location.component.ts
@@ -1,9 +1,10 @@
import { Component } from '@angular/core';
@Component({
- selector: 'ga-edit-employee-location',
- template: `
+ selector: 'ga-edit-employee-location',
+ template: `
`,
- styleUrls: ['./edit-employee-location.component.scss']
+ styleUrls: ['./edit-employee-location.component.scss'],
+ standalone: false
})
export class EditEmployeeLocationComponent {}
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-main/edit-employee-main.component.scss b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-main/edit-employee-main.component.scss
index 00ff1f6a4cb..bb14e47b51c 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-main/edit-employee-main.component.scss
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-main/edit-employee-main.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
$radius: nb-theme(border-radius);
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-main/edit-employee-main.component.ts b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-main/edit-employee-main.component.ts
index da9099681ba..edb75cca83c 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-main/edit-employee-main.component.ts
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-main/edit-employee-main.component.ts
@@ -13,12 +13,13 @@ import { EmployeeStore, ErrorHandlingService } from '@gauzy/ui-core/core';
*/
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-edit-employee-main',
- templateUrl: './edit-employee-main.component.html',
- styleUrls: [
- '../../../../organizations/edit-organization/edit-organization-settings/edit-organization-main/edit-organization-main.component.scss',
- './edit-employee-main.component.scss'
- ]
+ selector: 'ga-edit-employee-main',
+ templateUrl: './edit-employee-main.component.html',
+ styleUrls: [
+ '../../../../organizations/edit-organization/edit-organization-settings/edit-organization-main/edit-organization-main.component.scss',
+ './edit-employee-main.component.scss'
+ ],
+ standalone: false
})
export class EditEmployeeMainComponent implements OnInit, OnDestroy {
organization: IOrganization;
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-networks/edit-employee-networks.component.scss b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-networks/edit-employee-networks.component.scss
index 73777ef6ed2..6445764f6d9 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-networks/edit-employee-networks.component.scss
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-networks/edit-employee-networks.component.scss
@@ -1,5 +1,7 @@
-@import 'themes';
+@use 'themes' as *;
+
$radius: nb-theme(border-radius);
+
:host {
background-color: var(--gauzy-card-2);
border-radius: $radius;
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-networks/edit-employee-networks.component.ts b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-networks/edit-employee-networks.component.ts
index 7166f9460ea..25d1321dc9a 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-networks/edit-employee-networks.component.ts
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-networks/edit-employee-networks.component.ts
@@ -9,12 +9,13 @@ import { EmployeeStore, Store, UrlPatternValidator } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-edit-employee-networks',
- templateUrl: './edit-employee-networks.component.html',
- styleUrls: [
- '../../../../organizations/edit-organization/edit-organization-settings/edit-organization-main/edit-organization-main.component.scss',
- './edit-employee-networks.component.scss'
- ]
+ selector: 'ga-edit-employee-networks',
+ templateUrl: './edit-employee-networks.component.html',
+ styleUrls: [
+ '../../../../organizations/edit-organization/edit-organization-settings/edit-organization-main/edit-organization-main.component.scss',
+ './edit-employee-networks.component.scss'
+ ],
+ standalone: false
})
export class EditEmployeeNetworksComponent implements OnInit, OnDestroy {
selectedEmployee: IEmployee;
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-profile.component.scss b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-profile.component.scss
index c68a1a9ba3e..5589e3313cf 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-profile.component.scss
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-profile.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_edit-profile-form';
+@forward '@shared/_edit-profile-form';
:host {
::ng-deep .tabset-container .route-tabset {
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-profile.component.ts b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-profile.component.ts
index bc67e42da33..f552e72487b 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-profile.component.ts
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-profile.component.ts
@@ -19,10 +19,11 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-edit-employee-profile',
- templateUrl: './edit-employee-profile.component.html',
- styleUrls: ['./edit-employee-profile.component.scss'],
- providers: [EmployeeStore]
+ selector: 'ngx-edit-employee-profile',
+ templateUrl: './edit-employee-profile.component.html',
+ styleUrls: ['./edit-employee-profile.component.scss'],
+ providers: [EmployeeStore],
+ standalone: false
})
export class EditEmployeeProfileComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
public tabsetId: PageTabsetRegistryId = this._route.snapshot.data.tabsetId; // The identifier for the tabset
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-projects/edit-employee-projects.component.ts b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-projects/edit-employee-projects.component.ts
index 667e1235d4e..b7086b5b5db 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-projects/edit-employee-projects.component.ts
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-projects/edit-employee-projects.component.ts
@@ -22,10 +22,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-edit-employee-projects',
- templateUrl: './edit-employee-projects.component.html',
- styles: [
- `
+ selector: 'ga-edit-employee-projects',
+ templateUrl: './edit-employee-projects.component.html',
+ styles: [
+ `
:host {
height: calc(100vh - 20.5rem);
@@ -41,7 +41,8 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
}
}
`
- ]
+ ],
+ standalone: false
})
export class EditEmployeeProjectsComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
private subject$: Subject = new Subject();
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-rate/edit-employee-rate.component.ts b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-rate/edit-employee-rate.component.ts
index 84fca2ea09a..1af27fc1851 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-rate/edit-employee-rate.component.ts
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-rate/edit-employee-rate.component.ts
@@ -1,17 +1,18 @@
import { Component } from '@angular/core';
@Component({
- selector: 'ga-edit-employee-rates',
- template: `
+ selector: 'ga-edit-employee-rates',
+ template: `
`,
- styles: [
- `
+ styles: [
+ `
:host {
overflow-y: auto;
height: calc(100vh - 20.5rem);
}
`
- ]
+ ],
+ standalone: false
})
export class EditEmployeeRatesComponent {}
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-settings/edit-employee-other-settings.component.scss b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-settings/edit-employee-other-settings.component.scss
index ce5a3031253..20d3b7df4dd 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-settings/edit-employee-other-settings.component.scss
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-settings/edit-employee-other-settings.component.scss
@@ -1,5 +1,5 @@
-@import 'themes';
-@import 'var';
+@use 'themes' as *;
+@use 'var' as *;
:host {
height: 100%;
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-settings/edit-employee-other-settings.component.ts b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-settings/edit-employee-other-settings.component.ts
index 52987af3c8c..b8a27a9d561 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-settings/edit-employee-other-settings.component.ts
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee-profile/edit-employee-settings/edit-employee-other-settings.component.ts
@@ -10,9 +10,10 @@ import { EmployeeStore } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-edit-employee-settings',
- templateUrl: './edit-employee-other-settings.component.html',
- styleUrls: ['./edit-employee-other-settings.component.scss']
+ selector: 'ga-edit-employee-settings',
+ templateUrl: './edit-employee-other-settings.component.html',
+ styleUrls: ['./edit-employee-other-settings.component.scss'],
+ standalone: false
})
export class EditEmployeeOtherSettingsComponent implements OnInit, OnDestroy {
listOfTimeFormats = DEFAULT_TIME_FORMATS;
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee.component.scss b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee.component.scss
index b606299863a..0340e747586 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee.component.scss
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-cards';
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-cards' as *;
+@use 'gauzy/_gauzy-overrides' as ga-overrides;
.edit-icon {
margin-left: 30px;
@@ -107,5 +107,5 @@
calc($default-card-height + 3.5rem),
$default-radius
);
- @include input-appearance(42px, var(--gauzy-card-1));
+ @include ga-overrides.input-appearance(42px, var(--gauzy-card-1));
}
diff --git a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee.component.ts b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee.component.ts
index aa3913dc2d8..83fd9b4c85a 100644
--- a/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee.component.ts
+++ b/apps/gauzy/src/app/pages/employees/edit-employee/edit-employee.component.ts
@@ -13,9 +13,10 @@ import { ErrorHandlingService, Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-edit-employee',
- templateUrl: './edit-employee.component.html',
- styleUrls: ['./edit-employee.component.scss', '../../dashboard/dashboard.component.scss']
+ selector: 'ngx-edit-employee',
+ templateUrl: './edit-employee.component.html',
+ styleUrls: ['./edit-employee.component.scss', '../../dashboard/dashboard.component.scss'],
+ standalone: false
})
export class EditEmployeeComponent extends TranslationBaseComponent implements OnInit, OnDestroy, AfterViewInit {
organization: IOrganization;
diff --git a/apps/gauzy/src/app/pages/employees/employees.component.scss b/apps/gauzy/src/app/pages/employees/employees.component.scss
index eba4cdbdab2..9baa9323f27 100644
--- a/apps/gauzy/src/app/pages/employees/employees.component.scss
+++ b/apps/gauzy/src/app/pages/employees/employees.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-overrides';
-@import '@shared/_pg-card';
+@use 'gauzy/_gauzy-overrides' as *;
+@forward '@shared/_pg-card';
nb-card {
background-color: var(--gauzy-card-2);
diff --git a/apps/gauzy/src/app/pages/employees/employees.component.ts b/apps/gauzy/src/app/pages/employees/employees.component.ts
index 0503c04358e..b323e23cd1f 100644
--- a/apps/gauzy/src/app/pages/employees/employees.component.ts
+++ b/apps/gauzy/src/app/pages/employees/employees.component.ts
@@ -54,9 +54,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-employees-list',
- templateUrl: './employees.component.html',
- styleUrls: ['./employees.component.scss']
+ selector: 'ga-employees-list',
+ templateUrl: './employees.component.html',
+ styleUrls: ['./employees.component.scss'],
+ standalone: false
})
export class EmployeesComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
public dataTableId: PageDataTableRegistryId = this._route.snapshot.data.dataTableId; // The identifier for the data table
diff --git a/apps/gauzy/src/app/pages/employees/event-types/event-type-mutation/event-type-mutation.component.scss b/apps/gauzy/src/app/pages/employees/event-types/event-type-mutation/event-type-mutation.component.scss
index af3b48d182b..03f167a3d6b 100644
--- a/apps/gauzy/src/app/pages/employees/event-types/event-type-mutation/event-type-mutation.component.scss
+++ b/apps/gauzy/src/app/pages/employees/event-types/event-type-mutation/event-type-mutation.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
:host nb-card {
background-color: nb-theme(gauzy-card-1);
diff --git a/apps/gauzy/src/app/pages/employees/event-types/event-type-mutation/event-type-mutation.component.ts b/apps/gauzy/src/app/pages/employees/event-types/event-type-mutation/event-type-mutation.component.ts
index b02e10f7948..541b875a4af 100644
--- a/apps/gauzy/src/app/pages/employees/event-types/event-type-mutation/event-type-mutation.component.ts
+++ b/apps/gauzy/src/app/pages/employees/event-types/event-type-mutation/event-type-mutation.component.ts
@@ -10,8 +10,9 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- templateUrl: './event-type-mutation.component.html',
- styleUrls: ['./event-type-mutation.component.scss']
+ templateUrl: './event-type-mutation.component.html',
+ styleUrls: ['./event-type-mutation.component.scss'],
+ standalone: false
})
export class EventTypeMutationComponent extends TranslationBaseComponent implements OnInit {
public organization: IOrganization;
diff --git a/apps/gauzy/src/app/pages/employees/event-types/event-type.component.scss b/apps/gauzy/src/app/pages/employees/event-types/event-type.component.scss
index 8c88a9fc7ad..17b91ce2812 100644
--- a/apps/gauzy/src/app/pages/employees/event-types/event-type.component.scss
+++ b/apps/gauzy/src/app/pages/employees/event-types/event-type.component.scss
@@ -1,6 +1,6 @@
-@import 'gauzy/gauzy-table';
-@import 'gauzy/gauzy-cards';
-@import '../../payments/payments.component';
+@use 'gauzy/gauzy-table' as *;
+@use 'gauzy/gauzy-cards' as *;
+@forward '../../payments/payments.component';
:host {
nb-card,
diff --git a/apps/gauzy/src/app/pages/employees/event-types/event-type.component.ts b/apps/gauzy/src/app/pages/employees/event-types/event-type.component.ts
index fb2fc1a6957..5297c6f7738 100644
--- a/apps/gauzy/src/app/pages/employees/event-types/event-type.component.ts
+++ b/apps/gauzy/src/app/pages/employees/event-types/event-type.component.ts
@@ -27,8 +27,9 @@ import { DEFAULT_EVENT_TYPE } from './default-event-type';
@UntilDestroy({ checkProperties: true })
@Component({
- templateUrl: './event-type.component.html',
- styleUrls: ['event-type.component.scss']
+ templateUrl: './event-type.component.html',
+ styleUrls: ['event-type.component.scss'],
+ standalone: false
})
export class EventTypeComponent extends PaginationFilterBaseComponent implements AfterViewInit, OnInit, OnDestroy {
smartTableSource: ServerDataSource;
diff --git a/apps/gauzy/src/app/pages/employees/manage-employee-invite/manage-employee-invite.component.ts b/apps/gauzy/src/app/pages/employees/manage-employee-invite/manage-employee-invite.component.ts
index 748e6c8824e..035f1769799 100644
--- a/apps/gauzy/src/app/pages/employees/manage-employee-invite/manage-employee-invite.component.ts
+++ b/apps/gauzy/src/app/pages/employees/manage-employee-invite/manage-employee-invite.component.ts
@@ -2,8 +2,9 @@ import { Component } from '@angular/core';
import { InvitationTypeEnum } from '@gauzy/contracts';
@Component({
- selector: 'ga-manage-employee-invite',
- templateUrl: './manage-employee-invite.component.html'
+ selector: 'ga-manage-employee-invite',
+ templateUrl: './manage-employee-invite.component.html',
+ standalone: false
})
export class ManageEmployeeInviteComponent {
diff --git a/apps/gauzy/src/app/pages/employees/schedules/availability-slots/availability-slots.component.scss b/apps/gauzy/src/app/pages/employees/schedules/availability-slots/availability-slots.component.scss
index 48848401341..090d77881b8 100644
--- a/apps/gauzy/src/app/pages/employees/schedules/availability-slots/availability-slots.component.scss
+++ b/apps/gauzy/src/app/pages/employees/schedules/availability-slots/availability-slots.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-overrides';
-@import '@shared/_pg-card';
+@use 'gauzy/_gauzy-overrides' as *;
+@forward '@shared/_pg-card';
.custom-header {
display: flex;
diff --git a/apps/gauzy/src/app/pages/employees/schedules/availability-slots/availability-slots.component.ts b/apps/gauzy/src/app/pages/employees/schedules/availability-slots/availability-slots.component.ts
index 7c81a8f9ca3..4eea60c11f7 100644
--- a/apps/gauzy/src/app/pages/employees/schedules/availability-slots/availability-slots.component.ts
+++ b/apps/gauzy/src/app/pages/employees/schedules/availability-slots/availability-slots.component.ts
@@ -30,9 +30,10 @@ import { AvailabilitySlotsService, TimeOffService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-availability-slots',
- templateUrl: './availability-slots.component.html',
- styleUrls: ['./availability-slots.component.scss']
+ selector: 'ngx-availability-slots',
+ templateUrl: './availability-slots.component.html',
+ styleUrls: ['./availability-slots.component.scss'],
+ standalone: false
})
export class AvailabilitySlotsComponent extends TranslationBaseComponent implements AfterViewInit, OnInit, OnDestroy {
@ViewChild('calendar', { static: false })
diff --git a/apps/gauzy/src/app/pages/employees/schedules/layout/layout.component.scss b/apps/gauzy/src/app/pages/employees/schedules/layout/layout.component.scss
index 423d4aa7c20..0e553e7345d 100644
--- a/apps/gauzy/src/app/pages/employees/schedules/layout/layout.component.scss
+++ b/apps/gauzy/src/app/pages/employees/schedules/layout/layout.component.scss
@@ -1,2 +1 @@
-@import '../../activity/layout/layout.component.scss';
-
+@forward '../../activity/layout/layout.component';
diff --git a/apps/gauzy/src/app/pages/employees/schedules/layout/layout.component.ts b/apps/gauzy/src/app/pages/employees/schedules/layout/layout.component.ts
index 5b5fd871892..a99c6f28f84 100644
--- a/apps/gauzy/src/app/pages/employees/schedules/layout/layout.component.ts
+++ b/apps/gauzy/src/app/pages/employees/schedules/layout/layout.component.ts
@@ -3,8 +3,9 @@ import { TranslateService } from '@ngx-translate/core';
import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@Component({
- templateUrl: './layout.component.html',
- styleUrls: ['./layout.component.scss']
+ templateUrl: './layout.component.html',
+ styleUrls: ['./layout.component.scss'],
+ standalone: false
})
export class LayoutComponent extends TranslationBaseComponent implements OnInit {
tabs = [
diff --git a/apps/gauzy/src/app/pages/employees/table-components/employee-average-bonus/employee-average-bonus.component.ts b/apps/gauzy/src/app/pages/employees/table-components/employee-average-bonus/employee-average-bonus.component.ts
index 6e590e8a8c2..8a5b5a23b31 100644
--- a/apps/gauzy/src/app/pages/employees/table-components/employee-average-bonus/employee-average-bonus.component.ts
+++ b/apps/gauzy/src/app/pages/employees/table-components/employee-average-bonus/employee-average-bonus.component.ts
@@ -1,8 +1,9 @@
import { Component, Input } from '@angular/core';
@Component({
- selector: 'ga-employee-average-bonus',
- templateUrl: './employee-average-bonus.component.html'
+ selector: 'ga-employee-average-bonus',
+ templateUrl: './employee-average-bonus.component.html',
+ standalone: false
})
export class EmployeeAverageBonusComponent {
@Input()
diff --git a/apps/gauzy/src/app/pages/employees/table-components/employee-average-expenses/employee-average-expenses.component.ts b/apps/gauzy/src/app/pages/employees/table-components/employee-average-expenses/employee-average-expenses.component.ts
index 790dcdd7e1d..ddfdefb20d8 100644
--- a/apps/gauzy/src/app/pages/employees/table-components/employee-average-expenses/employee-average-expenses.component.ts
+++ b/apps/gauzy/src/app/pages/employees/table-components/employee-average-expenses/employee-average-expenses.component.ts
@@ -1,8 +1,9 @@
import { Component, Input } from '@angular/core';
@Component({
- selector: 'ga-employee-average-expenses',
- templateUrl: './employee-average-expenses.component.html'
+ selector: 'ga-employee-average-expenses',
+ templateUrl: './employee-average-expenses.component.html',
+ standalone: false
})
export class EmployeeAverageExpensesComponent {
@Input() rowData: any;
diff --git a/apps/gauzy/src/app/pages/employees/table-components/employee-average-income/employee-average-income.component.ts b/apps/gauzy/src/app/pages/employees/table-components/employee-average-income/employee-average-income.component.ts
index fd7d6e63f5f..38fa3960f3f 100644
--- a/apps/gauzy/src/app/pages/employees/table-components/employee-average-income/employee-average-income.component.ts
+++ b/apps/gauzy/src/app/pages/employees/table-components/employee-average-income/employee-average-income.component.ts
@@ -1,8 +1,9 @@
import { Component, Input } from '@angular/core';
@Component({
- selector: 'ga-employee-average-income',
- templateUrl: './employee-average-income.component.html'
+ selector: 'ga-employee-average-income',
+ templateUrl: './employee-average-income.component.html',
+ standalone: false
})
export class EmployeeAverageIncomeComponent {
diff --git a/apps/gauzy/src/app/pages/employees/table-components/employee-bonus/employee-bonus.component.ts b/apps/gauzy/src/app/pages/employees/table-components/employee-bonus/employee-bonus.component.ts
index 2b4484c951c..02b97f2ea4b 100644
--- a/apps/gauzy/src/app/pages/employees/table-components/employee-bonus/employee-bonus.component.ts
+++ b/apps/gauzy/src/app/pages/employees/table-components/employee-bonus/employee-bonus.component.ts
@@ -1,7 +1,8 @@
import { Component, Input } from '@angular/core';
@Component({
- templateUrl: './employee-bonus.component.html'
+ templateUrl: './employee-bonus.component.html',
+ standalone: false
})
export class EmployeeBonusComponent {
@Input()
diff --git a/apps/gauzy/src/app/pages/employees/table-components/employee-time-tracking-status/employee-time-tracking-status.component.ts b/apps/gauzy/src/app/pages/employees/table-components/employee-time-tracking-status/employee-time-tracking-status.component.ts
index 298f94a75a0..d3bda4314aa 100644
--- a/apps/gauzy/src/app/pages/employees/table-components/employee-time-tracking-status/employee-time-tracking-status.component.ts
+++ b/apps/gauzy/src/app/pages/employees/table-components/employee-time-tracking-status/employee-time-tracking-status.component.ts
@@ -2,9 +2,10 @@ import { Component, Input } from '@angular/core';
@Component({
- selector: 'employee-time-tracking-status',
- templateUrl: './employee-time-tracking-status.component.html',
- styleUrls: ['./../employee-work-status/employee-work-status.component.scss']
+ selector: 'employee-time-tracking-status',
+ templateUrl: './employee-time-tracking-status.component.html',
+ styleUrls: ['./../employee-work-status/employee-work-status.component.scss'],
+ standalone: false
})
export class EmployeeTimeTrackingStatusComponent {
@Input() rowData: any;
diff --git a/apps/gauzy/src/app/pages/employees/table-components/employee-work-status/employee-work-status.component.ts b/apps/gauzy/src/app/pages/employees/table-components/employee-work-status/employee-work-status.component.ts
index 416dbb14fe7..2bb76b91e85 100644
--- a/apps/gauzy/src/app/pages/employees/table-components/employee-work-status/employee-work-status.component.ts
+++ b/apps/gauzy/src/app/pages/employees/table-components/employee-work-status/employee-work-status.component.ts
@@ -2,9 +2,10 @@ import { Component, Input } from '@angular/core';
@Component({
- selector: 'ga-employee-work-status',
- templateUrl: './employee-work-status.component.html',
- styleUrls: ['./employee-work-status.component.scss']
+ selector: 'ga-employee-work-status',
+ templateUrl: './employee-work-status.component.html',
+ styleUrls: ['./employee-work-status.component.scss'],
+ standalone: false
})
export class EmployeeWorkStatusComponent {
@Input()
diff --git a/apps/gauzy/src/app/pages/employees/timesheet/approvals/approvals/approvals.component.scss b/apps/gauzy/src/app/pages/employees/timesheet/approvals/approvals/approvals.component.scss
index 3b528baea51..55cc51fc842 100644
--- a/apps/gauzy/src/app/pages/employees/timesheet/approvals/approvals/approvals.component.scss
+++ b/apps/gauzy/src/app/pages/employees/timesheet/approvals/approvals/approvals.component.scss
@@ -1,4 +1,4 @@
-@import '../../daily/daily/daily.component.scss';
+@use '../../daily/daily/daily.component' as *;
:host {
.filters {
diff --git a/apps/gauzy/src/app/pages/employees/timesheet/approvals/approvals/approvals.component.ts b/apps/gauzy/src/app/pages/employees/timesheet/approvals/approvals/approvals.component.ts
index 3bac206e207..eb2175ac689 100644
--- a/apps/gauzy/src/app/pages/employees/timesheet/approvals/approvals/approvals.component.ts
+++ b/apps/gauzy/src/app/pages/employees/timesheet/approvals/approvals/approvals.component.ts
@@ -18,9 +18,10 @@ import { BaseSelectorFilterComponent, GauzyFiltersComponent, TimeZoneService } f
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-timesheet-approvals',
- templateUrl: './approvals.component.html',
- styleUrls: ['./approvals.component.scss']
+ selector: 'ngx-timesheet-approvals',
+ templateUrl: './approvals.component.html',
+ styleUrls: ['./approvals.component.scss'],
+ standalone: false
})
export class ApprovalsComponent extends BaseSelectorFilterComponent implements AfterViewInit, OnInit, OnDestroy {
timesheets: ITimesheet[] = [];
diff --git a/apps/gauzy/src/app/pages/employees/timesheet/calendar/calendar/calendar.component.scss b/apps/gauzy/src/app/pages/employees/timesheet/calendar/calendar/calendar.component.scss
index 1545fee0c24..15d5392d5f9 100644
--- a/apps/gauzy/src/app/pages/employees/timesheet/calendar/calendar/calendar.component.scss
+++ b/apps/gauzy/src/app/pages/employees/timesheet/calendar/calendar/calendar.component.scss
@@ -1,4 +1,5 @@
-@import '@shared/_pg-card';
+@use 'var' as *;
+@forward '@shared/_pg-card';
:host nb-card {
background-color: var(--gauzy-card-2);
diff --git a/apps/gauzy/src/app/pages/employees/timesheet/calendar/calendar/calendar.component.ts b/apps/gauzy/src/app/pages/employees/timesheet/calendar/calendar/calendar.component.ts
index 87c5597a951..b2980a03e1e 100644
--- a/apps/gauzy/src/app/pages/employees/timesheet/calendar/calendar/calendar.component.ts
+++ b/apps/gauzy/src/app/pages/employees/timesheet/calendar/calendar/calendar.component.ts
@@ -35,9 +35,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-calendar-timesheet',
- templateUrl: './calendar.component.html',
- styleUrls: ['./calendar.component.scss']
+ selector: 'ngx-calendar-timesheet',
+ templateUrl: './calendar.component.html',
+ styleUrls: ['./calendar.component.scss'],
+ standalone: false
})
export class CalendarComponent extends BaseSelectorFilterComponent implements OnInit, AfterViewInit, OnDestroy {
@ViewChild('calendar', { static: true }) calendar: FullCalendarComponent;
diff --git a/apps/gauzy/src/app/pages/employees/timesheet/daily/daily/daily.component.scss b/apps/gauzy/src/app/pages/employees/timesheet/daily/daily/daily.component.scss
index d0f47a77407..44ae3d85148 100644
--- a/apps/gauzy/src/app/pages/employees/timesheet/daily/daily/daily.component.scss
+++ b/apps/gauzy/src/app/pages/employees/timesheet/daily/daily/daily.component.scss
@@ -1,4 +1,4 @@
-@import '../../weekly/weekly/weekly.component.scss';
+@forward '../../weekly/weekly/weekly.component';
:host {
nb-card {
diff --git a/apps/gauzy/src/app/pages/employees/timesheet/daily/daily/daily.component.ts b/apps/gauzy/src/app/pages/employees/timesheet/daily/daily/daily.component.ts
index 4283f666520..3d6a8359158 100644
--- a/apps/gauzy/src/app/pages/employees/timesheet/daily/daily/daily.component.ts
+++ b/apps/gauzy/src/app/pages/employees/timesheet/daily/daily/daily.component.ts
@@ -30,9 +30,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-daily-timesheet',
- templateUrl: './daily.component.html',
- styleUrls: ['./daily.component.scss']
+ selector: 'ngx-daily-timesheet',
+ templateUrl: './daily.component.html',
+ styleUrls: ['./daily.component.scss'],
+ standalone: false
})
export class DailyComponent extends BaseSelectorFilterComponent implements AfterViewInit, OnInit, OnDestroy {
public PermissionsEnum = PermissionsEnum; // Enum for permissions.
diff --git a/apps/gauzy/src/app/pages/employees/timesheet/layout/layout.component.scss b/apps/gauzy/src/app/pages/employees/timesheet/layout/layout.component.scss
index fe12303eecb..fab243a9394 100644
--- a/apps/gauzy/src/app/pages/employees/timesheet/layout/layout.component.scss
+++ b/apps/gauzy/src/app/pages/employees/timesheet/layout/layout.component.scss
@@ -1,4 +1,4 @@
-@import '../../activity/layout/layout.component.scss';
+@forward '../../activity/layout/layout.component';
:host {
nb-card {
diff --git a/apps/gauzy/src/app/pages/employees/timesheet/layout/layout.component.ts b/apps/gauzy/src/app/pages/employees/timesheet/layout/layout.component.ts
index ee5d018a169..b01f056ad13 100644
--- a/apps/gauzy/src/app/pages/employees/timesheet/layout/layout.component.ts
+++ b/apps/gauzy/src/app/pages/employees/timesheet/layout/layout.component.ts
@@ -7,9 +7,10 @@ import { DateRangePickerBuilderService, PageTabRegistryService, PageTabsetRegist
import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@Component({
- selector: 'ngx-timesheet-layout',
- templateUrl: './layout.component.html',
- styleUrls: ['./layout.component.scss']
+ selector: 'ngx-timesheet-layout',
+ templateUrl: './layout.component.html',
+ styleUrls: ['./layout.component.scss'],
+ standalone: false
})
export class TimesheetLayoutComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
public tabsetId: PageTabsetRegistryId = this._route.snapshot.data.tabsetId; // The identifier for the tabset
diff --git a/apps/gauzy/src/app/pages/employees/timesheet/view/view/view.component.ts b/apps/gauzy/src/app/pages/employees/timesheet/view/view/view.component.ts
index 762f7497b4b..4659d615022 100644
--- a/apps/gauzy/src/app/pages/employees/timesheet/view/view/view.component.ts
+++ b/apps/gauzy/src/app/pages/employees/timesheet/view/view/view.component.ts
@@ -15,9 +15,10 @@ import { EditTimeLogModalComponent } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-timesheet-view',
- templateUrl: './view.component.html',
- styleUrls: ['../../daily/daily/daily.component.scss', './view.component.scss']
+ selector: 'ngx-timesheet-view',
+ templateUrl: './view.component.html',
+ styleUrls: ['../../daily/daily/daily.component.scss', './view.component.scss'],
+ standalone: false
})
export class TimesheetViewComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
PermissionsEnum = PermissionsEnum;
diff --git a/apps/gauzy/src/app/pages/employees/timesheet/weekly/weekly/weekly.component.scss b/apps/gauzy/src/app/pages/employees/timesheet/weekly/weekly/weekly.component.scss
index 6004fdfe9f3..56f89c51dce 100644
--- a/apps/gauzy/src/app/pages/employees/timesheet/weekly/weekly/weekly.component.scss
+++ b/apps/gauzy/src/app/pages/employees/timesheet/weekly/weekly/weekly.component.scss
@@ -1,5 +1,5 @@
-@import '../../calendar/calendar/calendar.component.scss';
-@import 'gauzy/_gauzy-table';
+@use 'gauzy/_gauzy-table' as *;
+@forward '../../calendar/calendar/calendar.component';
:host {
.filters {
diff --git a/apps/gauzy/src/app/pages/employees/timesheet/weekly/weekly/weekly.component.ts b/apps/gauzy/src/app/pages/employees/timesheet/weekly/weekly/weekly.component.ts
index 72630b73d11..18137d00817 100644
--- a/apps/gauzy/src/app/pages/employees/timesheet/weekly/weekly/weekly.component.ts
+++ b/apps/gauzy/src/app/pages/employees/timesheet/weekly/weekly/weekly.component.ts
@@ -30,9 +30,10 @@ interface WeeklyDayData {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-weekly-timesheet',
- templateUrl: './weekly.component.html',
- styleUrls: ['./weekly.component.scss']
+ selector: 'ngx-weekly-timesheet',
+ templateUrl: './weekly.component.html',
+ styleUrls: ['./weekly.component.scss'],
+ standalone: false
})
export class WeeklyComponent extends BaseSelectorFilterComponent implements OnInit, OnDestroy {
PermissionsEnum = PermissionsEnum;
diff --git a/apps/gauzy/src/app/pages/employment-types/employment-types.component.scss b/apps/gauzy/src/app/pages/employment-types/employment-types.component.scss
index cce52df3764..2fe85092e30 100644
--- a/apps/gauzy/src/app/pages/employment-types/employment-types.component.scss
+++ b/apps/gauzy/src/app/pages/employment-types/employment-types.component.scss
@@ -1,5 +1,5 @@
-@import 'apps/gauzy/src/app/pages/expenses/expense-categories/expense-categories.component.scss';
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
+@forward '../expenses/expense-categories/expense-categories.component';
:host {
height: 100%;
@@ -56,4 +56,4 @@ nb-card-body {
.no-data{
height: 100%;
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/employment-types/employment-types.component.ts b/apps/gauzy/src/app/pages/employment-types/employment-types.component.ts
index cb907a443d9..ee8fa38e8f1 100644
--- a/apps/gauzy/src/app/pages/employment-types/employment-types.component.ts
+++ b/apps/gauzy/src/app/pages/employment-types/employment-types.component.ts
@@ -27,9 +27,10 @@ import { ToastrService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-employment-types',
- templateUrl: './employment-types.component.html',
- styleUrls: ['./employment-types.component.scss']
+ selector: 'ga-employment-types',
+ templateUrl: './employment-types.component.html',
+ styleUrls: ['./employment-types.component.scss'],
+ standalone: false
})
export class EmploymentTypesComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
@ViewChild('editableTemplate') public editableTemplateRef: TemplateRef;
diff --git a/apps/gauzy/src/app/pages/equipment-sharing-policy/equipment-sharing-policy.component.scss b/apps/gauzy/src/app/pages/equipment-sharing-policy/equipment-sharing-policy.component.scss
index df91f07792a..5ac39261bb7 100644
--- a/apps/gauzy/src/app/pages/equipment-sharing-policy/equipment-sharing-policy.component.scss
+++ b/apps/gauzy/src/app/pages/equipment-sharing-policy/equipment-sharing-policy.component.scss
@@ -1 +1 @@
-@import '@shared/_pg-card';
+@forward '@shared/_pg-card';
diff --git a/apps/gauzy/src/app/pages/equipment-sharing-policy/equipment-sharing-policy.component.ts b/apps/gauzy/src/app/pages/equipment-sharing-policy/equipment-sharing-policy.component.ts
index c1bef9a8943..bef23ccb3c1 100644
--- a/apps/gauzy/src/app/pages/equipment-sharing-policy/equipment-sharing-policy.component.ts
+++ b/apps/gauzy/src/app/pages/equipment-sharing-policy/equipment-sharing-policy.component.ts
@@ -19,8 +19,9 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- templateUrl: './equipment-sharing-policy.component.html',
- styleUrls: ['./equipment-sharing-policy.component.scss']
+ templateUrl: './equipment-sharing-policy.component.html',
+ styleUrls: ['./equipment-sharing-policy.component.scss'],
+ standalone: false
})
export class EquipmentSharingPolicyComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
settingsSmartTable: object;
diff --git a/apps/gauzy/src/app/pages/equipment-sharing/equipment-sharing.component.scss b/apps/gauzy/src/app/pages/equipment-sharing/equipment-sharing.component.scss
index fdf870c37d7..10f792f3515 100644
--- a/apps/gauzy/src/app/pages/equipment-sharing/equipment-sharing.component.scss
+++ b/apps/gauzy/src/app/pages/equipment-sharing/equipment-sharing.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_pg-card';
+@forward '@shared/_pg-card';
/* Card grid */
diff --git a/apps/gauzy/src/app/pages/equipment-sharing/equipment-sharing.component.ts b/apps/gauzy/src/app/pages/equipment-sharing/equipment-sharing.component.ts
index 84d25e148c6..beda53a08ed 100644
--- a/apps/gauzy/src/app/pages/equipment-sharing/equipment-sharing.component.ts
+++ b/apps/gauzy/src/app/pages/equipment-sharing/equipment-sharing.component.ts
@@ -36,8 +36,9 @@ import { EquipmentSharingPolicyTableComponent } from './table-components';
@UntilDestroy({ checkProperties: true })
@Component({
- templateUrl: './equipment-sharing.component.html',
- styleUrls: ['./equipment-sharing.component.scss']
+ templateUrl: './equipment-sharing.component.html',
+ styleUrls: ['./equipment-sharing.component.scss'],
+ standalone: false
})
export class EquipmentSharingComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
loading: boolean = false;
diff --git a/apps/gauzy/src/app/pages/equipment-sharing/table-components/equipment-sharing-action/equipment-sharing-action.component.ts b/apps/gauzy/src/app/pages/equipment-sharing/table-components/equipment-sharing-action/equipment-sharing-action.component.ts
index 995fcf0e1ca..e84ac5a9f64 100644
--- a/apps/gauzy/src/app/pages/equipment-sharing/table-components/equipment-sharing-action/equipment-sharing-action.component.ts
+++ b/apps/gauzy/src/app/pages/equipment-sharing/table-components/equipment-sharing-action/equipment-sharing-action.component.ts
@@ -2,8 +2,9 @@ import { Component, Input, OnInit, Output, EventEmitter } from '@angular/core';
import { RequestApprovalStatusTypesEnum } from '@gauzy/contracts';
@Component({
- selector: 'ngx-equipment-sharing-action',
- templateUrl: './equipment-sharing-action.component.html'
+ selector: 'ngx-equipment-sharing-action',
+ templateUrl: './equipment-sharing-action.component.html',
+ standalone: false
})
export class EquipmentSharingActionComponent implements OnInit {
@Input() rowData: any;
diff --git a/apps/gauzy/src/app/pages/equipment-sharing/table-components/equipment-sharing-policy-table/equipment-sharing-policy-table.component.ts b/apps/gauzy/src/app/pages/equipment-sharing/table-components/equipment-sharing-policy-table/equipment-sharing-policy-table.component.ts
index 69158e25843..72eb23d4495 100644
--- a/apps/gauzy/src/app/pages/equipment-sharing/table-components/equipment-sharing-policy-table/equipment-sharing-policy-table.component.ts
+++ b/apps/gauzy/src/app/pages/equipment-sharing/table-components/equipment-sharing-policy-table/equipment-sharing-policy-table.component.ts
@@ -1,8 +1,9 @@
import { Component, Input } from '@angular/core';
@Component({
- selector: 'ngx-equipment-sharing-policy-table-selector',
- templateUrl: './equipment-sharing-policy.component.html'
+ selector: 'ngx-equipment-sharing-policy-table-selector',
+ templateUrl: './equipment-sharing-policy.component.html',
+ standalone: false
})
export class EquipmentSharingPolicyTableComponent {
@Input()
diff --git a/apps/gauzy/src/app/pages/equipment-sharing/table-components/equipment-sharing-status/equipment-sharing-status.component.ts b/apps/gauzy/src/app/pages/equipment-sharing/table-components/equipment-sharing-status/equipment-sharing-status.component.ts
index 4447fabc1ce..3adda811b16 100644
--- a/apps/gauzy/src/app/pages/equipment-sharing/table-components/equipment-sharing-status/equipment-sharing-status.component.ts
+++ b/apps/gauzy/src/app/pages/equipment-sharing/table-components/equipment-sharing-status/equipment-sharing-status.component.ts
@@ -2,8 +2,9 @@ import { Component, Input, OnInit } from '@angular/core';
import { RequestApprovalStatusTypesEnum } from '@gauzy/contracts';
@Component({
- selector: 'ngx-equipment-sharing-status',
- templateUrl: './equipment-sharing-status.component.html'
+ selector: 'ngx-equipment-sharing-status',
+ templateUrl: './equipment-sharing-status.component.html',
+ standalone: false
})
export class EquipmentSharingStatusComponent implements OnInit {
diff --git a/apps/gauzy/src/app/pages/equipment/auto-approve/auto-approve.component.ts b/apps/gauzy/src/app/pages/equipment/auto-approve/auto-approve.component.ts
index 61542b59247..e64380835fb 100644
--- a/apps/gauzy/src/app/pages/equipment/auto-approve/auto-approve.component.ts
+++ b/apps/gauzy/src/app/pages/equipment/auto-approve/auto-approve.component.ts
@@ -1,8 +1,9 @@
import { Component, Input } from '@angular/core';
@Component({
- selector: 'ngx-auto-approve',
- templateUrl: './auto-approve.component.html'
+ selector: 'ngx-auto-approve',
+ templateUrl: './auto-approve.component.html',
+ standalone: false
})
export class AutoApproveComponent {
@Input() value: string | number;
diff --git a/apps/gauzy/src/app/pages/equipment/equipment.component.scss b/apps/gauzy/src/app/pages/equipment/equipment.component.scss
index d6febad9e57..5d9cf6bc349 100644
--- a/apps/gauzy/src/app/pages/equipment/equipment.component.scss
+++ b/apps/gauzy/src/app/pages/equipment/equipment.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_pg-card';
+@use '@shared/_pg-card' as *;
[nbButton].sharing.appearance-filled.status-primary {
color: nb-theme(text-primary-color);
diff --git a/apps/gauzy/src/app/pages/equipment/equipment.component.ts b/apps/gauzy/src/app/pages/equipment/equipment.component.ts
index 1418cc97165..801de1d9276 100644
--- a/apps/gauzy/src/app/pages/equipment/equipment.component.ts
+++ b/apps/gauzy/src/app/pages/equipment/equipment.component.ts
@@ -24,8 +24,9 @@ import { ImageRowComponent } from '../inventory/components/inventory-table-compo
@UntilDestroy({ checkProperties: true })
@Component({
- templateUrl: './equipment.component.html',
- styleUrls: ['./equipment.component.scss']
+ templateUrl: './equipment.component.html',
+ styleUrls: ['./equipment.component.scss'],
+ standalone: false
})
export class EquipmentComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
settingsSmartTable: object;
diff --git a/apps/gauzy/src/app/pages/expense-recurring/expense-recurring.component.scss b/apps/gauzy/src/app/pages/expense-recurring/expense-recurring.component.scss
index f00669268d8..68b673f380d 100644
--- a/apps/gauzy/src/app/pages/expense-recurring/expense-recurring.component.scss
+++ b/apps/gauzy/src/app/pages/expense-recurring/expense-recurring.component.scss
@@ -1 +1 @@
-@import '../recurring-expense-employee/recurring-expense-employee.component.scss';
+@forward '../recurring-expense-employee/recurring-expense-employee.component';
diff --git a/apps/gauzy/src/app/pages/expense-recurring/expense-recurring.component.ts b/apps/gauzy/src/app/pages/expense-recurring/expense-recurring.component.ts
index d2c1139e0d4..3666e78918b 100644
--- a/apps/gauzy/src/app/pages/expense-recurring/expense-recurring.component.ts
+++ b/apps/gauzy/src/app/pages/expense-recurring/expense-recurring.component.ts
@@ -26,9 +26,10 @@ import { RecurringExpenseDeleteConfirmationComponent, RecurringExpenseMutationCo
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-expense-recurring',
- templateUrl: './expense-recurring.component.html',
- styleUrls: ['./expense-recurring.component.scss', '../dashboard/dashboard.component.scss']
+ selector: 'ga-expense-recurring',
+ templateUrl: './expense-recurring.component.html',
+ styleUrls: ['./expense-recurring.component.scss', '../dashboard/dashboard.component.scss'],
+ standalone: false
})
export class ExpenseRecurringComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
selectedDateRange: IDateRangePicker;
diff --git a/apps/gauzy/src/app/pages/expenses/expense-categories/expense-categories.component.scss b/apps/gauzy/src/app/pages/expenses/expense-categories/expense-categories.component.scss
index f86a92ac1e2..98d0193584b 100644
--- a/apps/gauzy/src/app/pages/expenses/expense-categories/expense-categories.component.scss
+++ b/apps/gauzy/src/app/pages/expenses/expense-categories/expense-categories.component.scss
@@ -1,6 +1,6 @@
-@import 'gauzy/_gauzy-cards';
-@import 'gauzy/_gauzy-table';
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-cards' as *;
+@use 'gauzy/_gauzy-table' as *;
+@use 'gauzy/_gauzy-overrides' as ga-overrides;
nb-card-body {
background: nb-theme(gauzy-card-2);
@@ -89,7 +89,7 @@ nb-card-body {
border-radius: nb-theme(border-radius);
width: 400px;
- @include dialog(var(--gauzy-card-1), var(--gauzy-sidebar-background-4));
+ @include ga-overrides.dialog(var(--gauzy-card-1), var(--gauzy-sidebar-background-4));
}
:host .custom-table {
diff --git a/apps/gauzy/src/app/pages/expenses/expense-categories/expense-categories.component.ts b/apps/gauzy/src/app/pages/expenses/expense-categories/expense-categories.component.ts
index 4953330330a..7b95173cb6f 100644
--- a/apps/gauzy/src/app/pages/expenses/expense-categories/expense-categories.component.ts
+++ b/apps/gauzy/src/app/pages/expenses/expense-categories/expense-categories.component.ts
@@ -25,9 +25,10 @@ import { ExpenseCategoryMutationComponent } from './expense-category-mutation/ex
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-expense-categories',
- templateUrl: './expense-categories.component.html',
- styleUrls: ['expense-categories.component.scss']
+ selector: 'ga-expense-categories',
+ templateUrl: './expense-categories.component.html',
+ styleUrls: ['expense-categories.component.scss'],
+ standalone: false
})
export class ExpenseCategoriesComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
loading: boolean = false;
diff --git a/apps/gauzy/src/app/pages/expenses/expense-categories/expense-category-mutation/expense-category-mutation.component.scss b/apps/gauzy/src/app/pages/expenses/expense-categories/expense-category-mutation/expense-category-mutation.component.scss
index 50264f656f7..297d20849e9 100644
--- a/apps/gauzy/src/app/pages/expenses/expense-categories/expense-category-mutation/expense-category-mutation.component.scss
+++ b/apps/gauzy/src/app/pages/expenses/expense-categories/expense-category-mutation/expense-category-mutation.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.main {
$orange: rgba(245, 109, 88, 1);
@@ -38,4 +38,4 @@
background-color: nb-theme(gauzy-card-1);
border-radius: nb-theme(border-radius);
width: 400px;
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/expenses/expense-categories/expense-category-mutation/expense-category-mutation.component.ts b/apps/gauzy/src/app/pages/expenses/expense-categories/expense-category-mutation/expense-category-mutation.component.ts
index f2eb7a3a2a1..e2e03d559a2 100644
--- a/apps/gauzy/src/app/pages/expenses/expense-categories/expense-category-mutation/expense-category-mutation.component.ts
+++ b/apps/gauzy/src/app/pages/expenses/expense-categories/expense-category-mutation/expense-category-mutation.component.ts
@@ -11,9 +11,10 @@ import { FormHelpers } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-expense-category-mutation',
- templateUrl: './expense-category-mutation.component.html',
- styleUrls: ['./expense-category-mutation.component.scss']
+ selector: 'ngx-expense-category-mutation',
+ templateUrl: './expense-category-mutation.component.html',
+ styleUrls: ['./expense-category-mutation.component.scss'],
+ standalone: false
})
export class ExpenseCategoryMutationComponent extends TranslationBaseComponent implements OnInit {
FormHelpers: typeof FormHelpers = FormHelpers;
diff --git a/apps/gauzy/src/app/pages/expenses/expenses.component.scss b/apps/gauzy/src/app/pages/expenses/expenses.component.scss
index ccfc26f034e..345846365ea 100644
--- a/apps/gauzy/src/app/pages/expenses/expenses.component.scss
+++ b/apps/gauzy/src/app/pages/expenses/expenses.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_pg-card';
+@forward '@shared/_pg-card';
.action {
box-shadow: var(--gauzy-shadow);
diff --git a/apps/gauzy/src/app/pages/expenses/expenses.component.ts b/apps/gauzy/src/app/pages/expenses/expenses.component.ts
index b4daf419801..b8d4fd7644a 100644
--- a/apps/gauzy/src/app/pages/expenses/expenses.component.ts
+++ b/apps/gauzy/src/app/pages/expenses/expenses.component.ts
@@ -47,8 +47,9 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- templateUrl: './expenses.component.html',
- styleUrls: ['./expenses.component.scss']
+ templateUrl: './expenses.component.html',
+ styleUrls: ['./expenses.component.scss'],
+ standalone: false
})
export class ExpensesComponent extends PaginationFilterBaseComponent implements AfterViewInit, OnInit, OnDestroy {
public smartTableSettings: object;
diff --git a/apps/gauzy/src/app/pages/goal-settings/edit-kpi/edit-kpi.component.scss b/apps/gauzy/src/app/pages/goal-settings/edit-kpi/edit-kpi.component.scss
index af2952781df..c1d3ddfe7ba 100644
--- a/apps/gauzy/src/app/pages/goal-settings/edit-kpi/edit-kpi.component.scss
+++ b/apps/gauzy/src/app/pages/goal-settings/edit-kpi/edit-kpi.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.min-width-60vw {
width: 60vw !important;
diff --git a/apps/gauzy/src/app/pages/goal-settings/edit-kpi/edit-kpi.component.ts b/apps/gauzy/src/app/pages/goal-settings/edit-kpi/edit-kpi.component.ts
index cfe6c537bad..22a15173368 100644
--- a/apps/gauzy/src/app/pages/goal-settings/edit-kpi/edit-kpi.component.ts
+++ b/apps/gauzy/src/app/pages/goal-settings/edit-kpi/edit-kpi.component.ts
@@ -16,9 +16,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
import { EmployeesService, GoalSettingsService, Store, ToastrService } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-edit-kpi',
- templateUrl: './edit-kpi.component.html',
- styleUrls: ['./edit-kpi.component.scss']
+ selector: 'ga-edit-kpi',
+ templateUrl: './edit-kpi.component.html',
+ styleUrls: ['./edit-kpi.component.scss'],
+ standalone: false
})
export class EditKpiComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
kpiForm: UntypedFormGroup;
diff --git a/apps/gauzy/src/app/pages/goal-settings/edit-time-frame/edit-time-frame.component.scss b/apps/gauzy/src/app/pages/goal-settings/edit-time-frame/edit-time-frame.component.scss
index c57446a17a4..603340c984d 100644
--- a/apps/gauzy/src/app/pages/goal-settings/edit-time-frame/edit-time-frame.component.scss
+++ b/apps/gauzy/src/app/pages/goal-settings/edit-time-frame/edit-time-frame.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.main-header {
display: flex;
diff --git a/apps/gauzy/src/app/pages/goal-settings/edit-time-frame/edit-time-frame.component.ts b/apps/gauzy/src/app/pages/goal-settings/edit-time-frame/edit-time-frame.component.ts
index 09057f5fc88..4b433afec38 100644
--- a/apps/gauzy/src/app/pages/goal-settings/edit-time-frame/edit-time-frame.component.ts
+++ b/apps/gauzy/src/app/pages/goal-settings/edit-time-frame/edit-time-frame.component.ts
@@ -22,9 +22,10 @@ import { GoalSettingsService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-edit-time-frame',
- templateUrl: './edit-time-frame.component.html',
- styleUrls: ['./edit-time-frame.component.scss']
+ selector: 'ga-edit-time-frame',
+ templateUrl: './edit-time-frame.component.html',
+ styleUrls: ['./edit-time-frame.component.scss'],
+ standalone: false
})
export class EditTimeFrameComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
timeFrameForm: UntypedFormGroup;
diff --git a/apps/gauzy/src/app/pages/goal-settings/goal-settings.component.scss b/apps/gauzy/src/app/pages/goal-settings/goal-settings.component.scss
index 31ee99aaa33..35bc4443ee4 100644
--- a/apps/gauzy/src/app/pages/goal-settings/goal-settings.component.scss
+++ b/apps/gauzy/src/app/pages/goal-settings/goal-settings.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-table.scss';
+@use 'gauzy/_gauzy-table' as *;
:host {
nb-tab.content-active {
diff --git a/apps/gauzy/src/app/pages/goal-settings/goal-settings.component.ts b/apps/gauzy/src/app/pages/goal-settings/goal-settings.component.ts
index 73de2e23eae..1efb8bbaba9 100644
--- a/apps/gauzy/src/app/pages/goal-settings/goal-settings.component.ts
+++ b/apps/gauzy/src/app/pages/goal-settings/goal-settings.component.ts
@@ -22,9 +22,10 @@ import { EditTimeFrameComponent } from './edit-time-frame/edit-time-frame.compon
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-goal-settings',
- templateUrl: './goal-settings.component.html',
- styleUrls: ['./goal-settings.component.scss']
+ selector: 'ga-goal-settings',
+ templateUrl: './goal-settings.component.html',
+ styleUrls: ['./goal-settings.component.scss'],
+ standalone: false
})
export class GoalSettingsComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
smartTableData = new LocalDataSource();
diff --git a/apps/gauzy/src/app/pages/goals/edit-keyresults/edit-keyresults.component.scss b/apps/gauzy/src/app/pages/goals/edit-keyresults/edit-keyresults.component.scss
index 96116921807..71010d33c80 100644
--- a/apps/gauzy/src/app/pages/goals/edit-keyresults/edit-keyresults.component.scss
+++ b/apps/gauzy/src/app/pages/goals/edit-keyresults/edit-keyresults.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.max-width-60vw {
width: 645px;
diff --git a/apps/gauzy/src/app/pages/goals/edit-keyresults/edit-keyresults.component.ts b/apps/gauzy/src/app/pages/goals/edit-keyresults/edit-keyresults.component.ts
index 433b321af1e..1eb6986ae6b 100644
--- a/apps/gauzy/src/app/pages/goals/edit-keyresults/edit-keyresults.component.ts
+++ b/apps/gauzy/src/app/pages/goals/edit-keyresults/edit-keyresults.component.ts
@@ -30,9 +30,10 @@ import { Store } from '@gauzy/ui-core/core';
import { endOfTomorrow } from 'date-fns';
@Component({
- selector: 'ga-edit-keyresults',
- templateUrl: './edit-keyresults.component.html',
- styleUrls: ['./edit-keyresults.component.scss']
+ selector: 'ga-edit-keyresults',
+ templateUrl: './edit-keyresults.component.html',
+ styleUrls: ['./edit-keyresults.component.scss'],
+ standalone: false
})
export class EditKeyResultsComponent implements OnInit, OnDestroy {
employees: IEmployee[];
diff --git a/apps/gauzy/src/app/pages/goals/edit-objective/edit-objective.component.scss b/apps/gauzy/src/app/pages/goals/edit-objective/edit-objective.component.scss
index 988d0470278..063daf1e30b 100644
--- a/apps/gauzy/src/app/pages/goals/edit-objective/edit-objective.component.scss
+++ b/apps/gauzy/src/app/pages/goals/edit-objective/edit-objective.component.scss
@@ -1,4 +1,4 @@
-@import '../edit-keyresults/edit-keyresults.component.scss';
+@forward '../edit-keyresults/edit-keyresults.component';
.max-width-50vw {
width: 50vw;
diff --git a/apps/gauzy/src/app/pages/goals/edit-objective/edit-objective.component.ts b/apps/gauzy/src/app/pages/goals/edit-objective/edit-objective.component.ts
index 6a20f7d5f1f..83d3b0c879d 100644
--- a/apps/gauzy/src/app/pages/goals/edit-objective/edit-objective.component.ts
+++ b/apps/gauzy/src/app/pages/goals/edit-objective/edit-objective.component.ts
@@ -22,9 +22,10 @@ import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-objective-mutation',
- templateUrl: './edit-objective.component.html',
- styleUrls: ['./edit-objective.component.scss']
+ selector: 'ga-objective-mutation',
+ templateUrl: './edit-objective.component.html',
+ styleUrls: ['./edit-objective.component.scss'],
+ standalone: false
})
export class EditObjectiveComponent implements OnInit, OnDestroy {
employees: IEmployee[] = [];
diff --git a/apps/gauzy/src/app/pages/goals/goal-details/goal-details.component.scss b/apps/gauzy/src/app/pages/goals/goal-details/goal-details.component.scss
index 341289a90c7..3e3eb4abc9a 100644
--- a/apps/gauzy/src/app/pages/goals/goal-details/goal-details.component.scss
+++ b/apps/gauzy/src/app/pages/goals/goal-details/goal-details.component.scss
@@ -1,5 +1,6 @@
-@import '../keyresult-details/keyresult-details.component.scss';
-@import '../edit-keyresults/edit-keyresults.component.scss';
+@forward '../keyresult-details/keyresult-details.component';
+@forward '../edit-keyresults/edit-keyresults.component';
+
.main-header {
display: flex;
align-items: center;
diff --git a/apps/gauzy/src/app/pages/goals/goal-details/goal-details.component.ts b/apps/gauzy/src/app/pages/goals/goal-details/goal-details.component.ts
index e93336af25b..9eecb5206b8 100644
--- a/apps/gauzy/src/app/pages/goals/goal-details/goal-details.component.ts
+++ b/apps/gauzy/src/app/pages/goals/goal-details/goal-details.component.ts
@@ -11,9 +11,10 @@ import { KeyResultUpdateComponent } from '../keyresult-update/keyresult-update.c
import { KeyResultDetailsComponent } from '../keyresult-details/keyresult-details.component';
@Component({
- selector: 'ga-goal-details',
- templateUrl: './goal-details.component.html',
- styleUrls: ['./goal-details.component.scss']
+ selector: 'ga-goal-details',
+ templateUrl: './goal-details.component.html',
+ styleUrls: ['./goal-details.component.scss'],
+ standalone: false
})
export class GoalDetailsComponent extends TranslationBaseComponent implements OnInit {
goal: IGoal;
diff --git a/apps/gauzy/src/app/pages/goals/goal-template-select/goal-template-select.component.ts b/apps/gauzy/src/app/pages/goals/goal-template-select/goal-template-select.component.ts
index ac7db91faee..22429439604 100644
--- a/apps/gauzy/src/app/pages/goals/goal-template-select/goal-template-select.component.ts
+++ b/apps/gauzy/src/app/pages/goals/goal-template-select/goal-template-select.component.ts
@@ -29,9 +29,10 @@ import { EditTimeFrameComponent } from '../../../pages/goal-settings/edit-time-f
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-goal-template-select',
- templateUrl: './goal-template-select.component.html',
- styleUrls: ['./goal-template-select.component.scss']
+ selector: 'ga-goal-template-select',
+ templateUrl: './goal-template-select.component.html',
+ styleUrls: ['./goal-template-select.component.scss'],
+ standalone: false
})
export class GoalTemplateSelectComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
goalTemplates: IGoalTemplate[];
diff --git a/apps/gauzy/src/app/pages/goals/goals.component.scss b/apps/gauzy/src/app/pages/goals/goals.component.scss
index 333cb4c3aa1..ce4a2203068 100644
--- a/apps/gauzy/src/app/pages/goals/goals.component.scss
+++ b/apps/gauzy/src/app/pages/goals/goals.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-table.scss';
+@use 'gauzy/_gauzy-table' as *;
.main-header {
display: flex;
diff --git a/apps/gauzy/src/app/pages/goals/goals.component.ts b/apps/gauzy/src/app/pages/goals/goals.component.ts
index 28ef266eb36..296862dbdf4 100644
--- a/apps/gauzy/src/app/pages/goals/goals.component.ts
+++ b/apps/gauzy/src/app/pages/goals/goals.component.ts
@@ -33,9 +33,10 @@ import { GoalTemplateSelectComponent } from './goal-template-select/goal-templat
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-goals',
- templateUrl: './goals.component.html',
- styleUrls: ['./goals.component.scss']
+ selector: 'ga-goals',
+ templateUrl: './goals.component.html',
+ styleUrls: ['./goals.component.scss'],
+ standalone: false
})
export class GoalsComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
@ViewChild(NbPopoverDirective) popover: NbPopoverDirective;
diff --git a/apps/gauzy/src/app/pages/goals/key-result-parameters/key-result-parameters.component.ts b/apps/gauzy/src/app/pages/goals/key-result-parameters/key-result-parameters.component.ts
index e067b1e3fae..be30f29f0cd 100644
--- a/apps/gauzy/src/app/pages/goals/key-result-parameters/key-result-parameters.component.ts
+++ b/apps/gauzy/src/app/pages/goals/key-result-parameters/key-result-parameters.component.ts
@@ -16,9 +16,10 @@ import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
@UntilDestroy()
@Component({
- selector: 'ga-key-result-parameters',
- templateUrl: './key-result-parameters.component.html',
- styleUrls: ['../edit-keyresults/edit-keyresults.component.scss']
+ selector: 'ga-key-result-parameters',
+ templateUrl: './key-result-parameters.component.html',
+ styleUrls: ['../edit-keyresults/edit-keyresults.component.scss'],
+ standalone: false
})
export class KeyResultParametersComponent implements OnInit, OnDestroy {
weightForm: UntypedFormGroup;
diff --git a/apps/gauzy/src/app/pages/goals/keyresult-details/keyresult-details.component.scss b/apps/gauzy/src/app/pages/goals/keyresult-details/keyresult-details.component.scss
index fa7bb2377be..0e2be58d433 100644
--- a/apps/gauzy/src/app/pages/goals/keyresult-details/keyresult-details.component.scss
+++ b/apps/gauzy/src/app/pages/goals/keyresult-details/keyresult-details.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-dialogs';
-@import 'gauzy/_gauzy-table';
+@use 'gauzy/_gauzy-dialogs' as *;
+@use 'gauzy/_gauzy-table' as *;
.minmax-width-60vw {
width: 645px;
diff --git a/apps/gauzy/src/app/pages/goals/keyresult-details/keyresult-details.component.ts b/apps/gauzy/src/app/pages/goals/keyresult-details/keyresult-details.component.ts
index dedb71c6655..2f5b32ebd6f 100644
--- a/apps/gauzy/src/app/pages/goals/keyresult-details/keyresult-details.component.ts
+++ b/apps/gauzy/src/app/pages/goals/keyresult-details/keyresult-details.component.ts
@@ -32,9 +32,10 @@ import { KeyResultUpdateComponent } from '../keyresult-update/keyresult-update.c
import { KeyResultProgressChartComponent } from '../keyresult-progress-chart/keyresult-progress-chart.component';
@Component({
- selector: 'ga-keyresult-details',
- templateUrl: './keyresult-details.component.html',
- styleUrls: ['./keyresult-details.component.scss']
+ selector: 'ga-keyresult-details',
+ templateUrl: './keyresult-details.component.html',
+ styleUrls: ['./keyresult-details.component.scss'],
+ standalone: false
})
export class KeyResultDetailsComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
src: string;
diff --git a/apps/gauzy/src/app/pages/goals/keyresult-progress-chart/keyresult-progress-chart.component.ts b/apps/gauzy/src/app/pages/goals/keyresult-progress-chart/keyresult-progress-chart.component.ts
index 2339ff87868..2399083632b 100644
--- a/apps/gauzy/src/app/pages/goals/keyresult-progress-chart/keyresult-progress-chart.component.ts
+++ b/apps/gauzy/src/app/pages/goals/keyresult-progress-chart/keyresult-progress-chart.component.ts
@@ -7,9 +7,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
import { TranslateService } from '@ngx-translate/core';
@Component({
- selector: 'ga-keyresult-progress-chart',
- templateUrl: './keyresult-progress-chart.component.html',
- styleUrls: ['./keyresult-progress-chart.component.scss']
+ selector: 'ga-keyresult-progress-chart',
+ templateUrl: './keyresult-progress-chart.component.html',
+ styleUrls: ['./keyresult-progress-chart.component.scss'],
+ standalone: false
})
export class KeyResultProgressChartComponent extends TranslationBaseComponent implements OnInit {
data: any;
diff --git a/apps/gauzy/src/app/pages/goals/keyresult-type-select/keyresult-type-select.component.ts b/apps/gauzy/src/app/pages/goals/keyresult-type-select/keyresult-type-select.component.ts
index 5e830105320..527ef24b8ff 100644
--- a/apps/gauzy/src/app/pages/goals/keyresult-type-select/keyresult-type-select.component.ts
+++ b/apps/gauzy/src/app/pages/goals/keyresult-type-select/keyresult-type-select.component.ts
@@ -7,9 +7,10 @@ import { firstValueFrom } from 'rxjs';
import { GoalSettingsService } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-keyresult-type-select',
- templateUrl: './keyresult-type-select.component.html',
- styleUrls: ['./keyresult-type-select.component.sass']
+ selector: 'ga-keyresult-type-select',
+ templateUrl: './keyresult-type-select.component.html',
+ styleUrls: ['./keyresult-type-select.component.sass'],
+ standalone: false
})
export class KeyresultTypeSelectComponent {
@Input() parentFormGroup: UntypedFormGroup;
diff --git a/apps/gauzy/src/app/pages/goals/keyresult-update/keyresult-update.component.scss b/apps/gauzy/src/app/pages/goals/keyresult-update/keyresult-update.component.scss
index e4df5a1bb8e..867a2672d94 100644
--- a/apps/gauzy/src/app/pages/goals/keyresult-update/keyresult-update.component.scss
+++ b/apps/gauzy/src/app/pages/goals/keyresult-update/keyresult-update.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.max-width-30vw {
width: 30vw;
diff --git a/apps/gauzy/src/app/pages/goals/keyresult-update/keyresult-update.component.ts b/apps/gauzy/src/app/pages/goals/keyresult-update/keyresult-update.component.ts
index ee80d7d2395..a5f7044ed94 100644
--- a/apps/gauzy/src/app/pages/goals/keyresult-update/keyresult-update.component.ts
+++ b/apps/gauzy/src/app/pages/goals/keyresult-update/keyresult-update.component.ts
@@ -15,9 +15,10 @@ import { GoalSettingsService, KeyResultUpdateService } from '@gauzy/ui-core/core
import { Store } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-keyresult-update',
- templateUrl: './keyresult-update.component.html',
- styleUrls: ['./keyresult-update.component.scss']
+ selector: 'ga-keyresult-update',
+ templateUrl: './keyresult-update.component.html',
+ styleUrls: ['./keyresult-update.component.scss'],
+ standalone: false
})
export class KeyResultUpdateComponent extends TranslationBaseComponent implements OnInit {
keyResultUpdateForm: UntypedFormGroup;
diff --git a/apps/gauzy/src/app/pages/help-center/add-article/add-article.component.scss b/apps/gauzy/src/app/pages/help-center/add-article/add-article.component.scss
index 7aee7fc4700..497bf2686f2 100644
--- a/apps/gauzy/src/app/pages/help-center/add-article/add-article.component.scss
+++ b/apps/gauzy/src/app/pages/help-center/add-article/add-article.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.main {
display: flex;
@@ -104,4 +104,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/help-center/add-article/add-article.component.ts b/apps/gauzy/src/app/pages/help-center/add-article/add-article.component.ts
index 3003d955464..2a59b87e1c5 100644
--- a/apps/gauzy/src/app/pages/help-center/add-article/add-article.component.ts
+++ b/apps/gauzy/src/app/pages/help-center/add-article/add-article.component.ts
@@ -17,9 +17,10 @@ import {
@UntilDestroy()
@Component({
- selector: 'ga-add-article',
- templateUrl: 'add-article.component.html',
- styleUrls: ['add-article.component.scss']
+ selector: 'ga-add-article',
+ templateUrl: 'add-article.component.html',
+ styleUrls: ['add-article.component.scss'],
+ standalone: false
})
export class AddArticleComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
@Input() article?: IHelpCenterArticle;
diff --git a/apps/gauzy/src/app/pages/help-center/delete-article/delete-article.component.scss b/apps/gauzy/src/app/pages/help-center/delete-article/delete-article.component.scss
index 2bd5530e05f..d6341c11870 100644
--- a/apps/gauzy/src/app/pages/help-center/delete-article/delete-article.component.scss
+++ b/apps/gauzy/src/app/pages/help-center/delete-article/delete-article.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.main {
display: flex;
@@ -22,4 +22,4 @@
display: flex;
flex-direction: row;
justify-content: flex-start;
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/help-center/delete-article/delete-article.component.ts b/apps/gauzy/src/app/pages/help-center/delete-article/delete-article.component.ts
index a3e69d6bb42..3efd723941c 100644
--- a/apps/gauzy/src/app/pages/help-center/delete-article/delete-article.component.ts
+++ b/apps/gauzy/src/app/pages/help-center/delete-article/delete-article.component.ts
@@ -7,9 +7,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
import { HelpCenterArticleService, HelpCenterAuthorService } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-article-category',
- templateUrl: 'delete-article.component.html',
- styleUrls: ['delete-article.component.scss']
+ selector: 'ga-article-category',
+ templateUrl: 'delete-article.component.html',
+ styleUrls: ['delete-article.component.scss'],
+ standalone: false
})
export class DeleteArticleComponent extends TranslationBaseComponent implements OnDestroy {
@Input() article: IHelpCenterArticle;
diff --git a/apps/gauzy/src/app/pages/help-center/help-center.component.scss b/apps/gauzy/src/app/pages/help-center/help-center.component.scss
index b1b62a64fc7..cf91710a9c6 100644
--- a/apps/gauzy/src/app/pages/help-center/help-center.component.scss
+++ b/apps/gauzy/src/app/pages/help-center/help-center.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-table';
+@use 'gauzy/_gauzy-table' as *;
.global {
display: flex;
diff --git a/apps/gauzy/src/app/pages/help-center/help-center.component.ts b/apps/gauzy/src/app/pages/help-center/help-center.component.ts
index b7e41fc4ecc..5ce1930c492 100644
--- a/apps/gauzy/src/app/pages/help-center/help-center.component.ts
+++ b/apps/gauzy/src/app/pages/help-center/help-center.component.ts
@@ -16,9 +16,10 @@ import { firstValueFrom } from 'rxjs';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-help-center',
- templateUrl: './help-center.component.html',
- styleUrls: ['./help-center.component.scss']
+ selector: 'ga-help-center',
+ templateUrl: './help-center.component.html',
+ styleUrls: ['./help-center.component.scss'],
+ standalone: false
})
export class HelpCenterComponent extends TranslationBaseComponent implements OnDestroy, OnInit {
constructor(
diff --git a/apps/gauzy/src/app/pages/help/help.component.ts b/apps/gauzy/src/app/pages/help/help.component.ts
index 54cba9a2138..9c61af9b291 100644
--- a/apps/gauzy/src/app/pages/help/help.component.ts
+++ b/apps/gauzy/src/app/pages/help/help.component.ts
@@ -2,8 +2,9 @@ import { Component, OnInit, OnDestroy } from '@angular/core';
import { Store } from '@gauzy/ui-core/core';
@Component({
- selector: 'ngx-help',
- templateUrl: './help.component.html'
+ selector: 'ngx-help',
+ templateUrl: './help.component.html',
+ standalone: false
})
export class HelpComponent implements OnInit, OnDestroy {
constructor(private readonly store: Store) {}
diff --git a/apps/gauzy/src/app/pages/import-export/export/export.component.scss b/apps/gauzy/src/app/pages/import-export/export/export.component.scss
index 0450f9e19f8..ce991d14ea1 100644
--- a/apps/gauzy/src/app/pages/import-export/export/export.component.scss
+++ b/apps/gauzy/src/app/pages/import-export/export/export.component.scss
@@ -1,15 +1,15 @@
-@import 'gauzy/_gauzy-cards';
+@use 'gauzy/_gauzy-cards' as *;
:host {
.header-title-with-back {
- display: flex;
+ display: flex;
align-items: center;
@include nb-rtl(gap, 24px);
margin-bottom: 50px;
}
::ng-deep ngx-back-navigation button {
- @include nb-rtl(margin-right, 0px !important);
+ @include nb-rtl(margin-right, 0px !important);
}
nb-card,
@@ -72,7 +72,7 @@
.info-text {
display: flex;
align-items: center;
- gap: 50px;
+ gap: 50px;
}
.title {
@@ -92,4 +92,4 @@
letter-spacing: 0em;
text-align: left;
color: var(--gauzy-text-color-2);
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/import-export/export/export.component.ts b/apps/gauzy/src/app/pages/import-export/export/export.component.ts
index 9d72c2a2b00..c898a3284e0 100644
--- a/apps/gauzy/src/app/pages/import-export/export/export.component.ts
+++ b/apps/gauzy/src/app/pages/import-export/export/export.component.ts
@@ -12,9 +12,10 @@ import { ExportAllService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-export',
- templateUrl: './export.component.html',
- styleUrls: ['./export.component.scss']
+ selector: 'ngx-export',
+ templateUrl: './export.component.html',
+ styleUrls: ['./export.component.scss'],
+ standalone: false
})
export class ExportComponent extends TranslationBaseComponent implements AfterViewInit, OnInit {
entities: Array = [];
diff --git a/apps/gauzy/src/app/pages/import-export/external-redirect/external-redirect.component.ts b/apps/gauzy/src/app/pages/import-export/external-redirect/external-redirect.component.ts
index 605db3c63ac..c0954369df4 100644
--- a/apps/gauzy/src/app/pages/import-export/external-redirect/external-redirect.component.ts
+++ b/apps/gauzy/src/app/pages/import-export/external-redirect/external-redirect.component.ts
@@ -1,8 +1,9 @@
import { Component, OnInit } from '@angular/core';
@Component({
- selector: 'ngx-external-redirect',
- template: ''
+ selector: 'ngx-external-redirect',
+ template: '',
+ standalone: false
})
export class ExternalRedirectComponent implements OnInit {
constructor() {}
diff --git a/apps/gauzy/src/app/pages/import-export/import-export.component.scss b/apps/gauzy/src/app/pages/import-export/import-export.component.scss
index b624aa257f7..e3aad96799c 100644
--- a/apps/gauzy/src/app/pages/import-export/import-export.component.scss
+++ b/apps/gauzy/src/app/pages/import-export/import-export.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-table';
+@use 'gauzy/_gauzy-table' as *;
:host {
@@ -39,4 +39,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/import-export/import-export.component.ts b/apps/gauzy/src/app/pages/import-export/import-export.component.ts
index 3e15258c7fb..530807a00d6 100644
--- a/apps/gauzy/src/app/pages/import-export/import-export.component.ts
+++ b/apps/gauzy/src/app/pages/import-export/import-export.component.ts
@@ -32,9 +32,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-import-export',
- templateUrl: './import-export.component.html',
- styleUrls: ['./import-export.component.scss']
+ selector: 'ngx-import-export',
+ templateUrl: './import-export.component.html',
+ styleUrls: ['./import-export.component.scss'],
+ standalone: false
})
export class ImportExportComponent extends TranslationBaseComponent implements OnInit {
user: IUser;
diff --git a/apps/gauzy/src/app/pages/import-export/import/import.component.scss b/apps/gauzy/src/app/pages/import-export/import/import.component.scss
index e27b47ca67b..a24addf2a4a 100644
--- a/apps/gauzy/src/app/pages/import-export/import/import.component.scss
+++ b/apps/gauzy/src/app/pages/import-export/import/import.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/gauzy-table';
-@import '../export/export.component.scss';
+@use 'gauzy/gauzy-table' as *;
+@forward '../export/export.component';
.well {
height: 180px;
diff --git a/apps/gauzy/src/app/pages/import-export/import/import.component.ts b/apps/gauzy/src/app/pages/import-export/import/import.component.ts
index fff6e0ad4d3..69eeb861a7f 100644
--- a/apps/gauzy/src/app/pages/import-export/import/import.component.ts
+++ b/apps/gauzy/src/app/pages/import-export/import/import.component.ts
@@ -16,9 +16,10 @@ import { ImportService, Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-import',
- templateUrl: './import.component.html',
- styleUrls: ['./import.component.scss']
+ selector: 'ngx-import',
+ templateUrl: './import.component.html',
+ styleUrls: ['./import.component.scss'],
+ standalone: false
})
export class ImportComponent extends TranslationBaseComponent implements AfterViewInit, OnInit {
history$: Observable = this.importService.history$;
diff --git a/apps/gauzy/src/app/pages/income/income.component.scss b/apps/gauzy/src/app/pages/income/income.component.scss
index df91f07792a..5ac39261bb7 100644
--- a/apps/gauzy/src/app/pages/income/income.component.scss
+++ b/apps/gauzy/src/app/pages/income/income.component.scss
@@ -1 +1 @@
-@import '@shared/_pg-card';
+@forward '@shared/_pg-card';
diff --git a/apps/gauzy/src/app/pages/income/income.component.ts b/apps/gauzy/src/app/pages/income/income.component.ts
index 10584e48e35..81ca38d852e 100644
--- a/apps/gauzy/src/app/pages/income/income.component.ts
+++ b/apps/gauzy/src/app/pages/income/income.component.ts
@@ -46,8 +46,9 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- templateUrl: './income.component.html',
- styleUrls: ['./income.component.scss']
+ templateUrl: './income.component.html',
+ styleUrls: ['./income.component.scss'],
+ standalone: false
})
export class IncomeComponent extends PaginationFilterBaseComponent implements AfterViewInit, OnInit, OnDestroy {
public smartTableSettings: object;
diff --git a/apps/gauzy/src/app/pages/integrations/components/integration-list/list.component.scss b/apps/gauzy/src/app/pages/integrations/components/integration-list/list.component.scss
index fd748f07769..2521610054e 100644
--- a/apps/gauzy/src/app/pages/integrations/components/integration-list/list.component.scss
+++ b/apps/gauzy/src/app/pages/integrations/components/integration-list/list.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-table.scss';
-@import 'gauzy/_gauzy-cards.scss';
+@use 'gauzy/_gauzy-table' as *;
+@use 'gauzy/_gauzy-cards' as *;
:host {
nb-card,
diff --git a/apps/gauzy/src/app/pages/integrations/components/integration-list/list.component.ts b/apps/gauzy/src/app/pages/integrations/components/integration-list/list.component.ts
index eb50709d543..fa67c25f6d5 100644
--- a/apps/gauzy/src/app/pages/integrations/components/integration-list/list.component.ts
+++ b/apps/gauzy/src/app/pages/integrations/components/integration-list/list.component.ts
@@ -27,9 +27,10 @@ import { DeleteConfirmationComponent } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-integration-list',
- templateUrl: './list.component.html',
- styleUrls: ['./list.component.scss']
+ selector: 'ga-integration-list',
+ templateUrl: './list.component.html',
+ styleUrls: ['./list.component.scss'],
+ standalone: false
})
export class IntegrationListComponent extends TranslationBaseComponent implements AfterViewInit, OnInit {
public loading: boolean = false; // Flag to indicate if data loading is in progress
diff --git a/apps/gauzy/src/app/pages/integrations/integrations.component.scss b/apps/gauzy/src/app/pages/integrations/integrations.component.scss
index dd0174d7ed2..721f171184b 100644
--- a/apps/gauzy/src/app/pages/integrations/integrations.component.scss
+++ b/apps/gauzy/src/app/pages/integrations/integrations.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-overrides' as *;
.integrations-list {
display: flex;
diff --git a/apps/gauzy/src/app/pages/integrations/integrations.component.ts b/apps/gauzy/src/app/pages/integrations/integrations.component.ts
index fe8585ddc9d..89670d44f3a 100644
--- a/apps/gauzy/src/app/pages/integrations/integrations.component.ts
+++ b/apps/gauzy/src/app/pages/integrations/integrations.component.ts
@@ -4,9 +4,10 @@ import { IIntegrationViewModel, IntegrationFilterEnum } from '@gauzy/contracts';
import { InitialFilter, IntegrationsStoreService } from '@gauzy/ui-core/core';
@Component({
- selector: 'ngx-integrations',
- templateUrl: './integrations.component.html',
- styleUrls: ['./integrations.component.scss']
+ selector: 'ngx-integrations',
+ templateUrl: './integrations.component.html',
+ styleUrls: ['./integrations.component.scss'],
+ standalone: false
})
export class IntegrationsComponent implements OnInit {
integrations$: Observable = this._integrationsStore.integrations$;
diff --git a/apps/gauzy/src/app/pages/integrations/layout/layout.component.scss b/apps/gauzy/src/app/pages/integrations/layout/layout.component.scss
index 3c5c9b4c9cd..2063860cf8f 100644
--- a/apps/gauzy/src/app/pages/integrations/layout/layout.component.scss
+++ b/apps/gauzy/src/app/pages/integrations/layout/layout.component.scss
@@ -1,4 +1,5 @@
-@import 'themes';
+@use 'themes' as *;
+
:host {
nb-card {
nb-card-body {
diff --git a/apps/gauzy/src/app/pages/integrations/layout/layout.component.ts b/apps/gauzy/src/app/pages/integrations/layout/layout.component.ts
index dfe2eedf4a6..0a6709f0c9f 100644
--- a/apps/gauzy/src/app/pages/integrations/layout/layout.component.ts
+++ b/apps/gauzy/src/app/pages/integrations/layout/layout.component.ts
@@ -1,10 +1,11 @@
import { Component, OnInit } from '@angular/core';
@Component({
- selector: 'ngx-integration-layout',
- templateUrl: './layout.component.html',
- styleUrls: ['./layout.component.scss'],
- providers: []
+ selector: 'ngx-integration-layout',
+ templateUrl: './layout.component.html',
+ styleUrls: ['./layout.component.scss'],
+ providers: [],
+ standalone: false
})
export class IntegrationLayoutComponent implements OnInit {
constructor() {}
diff --git a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item-variant/variant-form.component.scss b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item-variant/variant-form.component.scss
index 518afc0817c..58842425416 100644
--- a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item-variant/variant-form.component.scss
+++ b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item-variant/variant-form.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.product-variant-container {
width: 100%;
@@ -28,7 +28,7 @@
object-fit: cover;
border-radius: var(--border-radius);
}
-
+
input {
width: 100%;
@@ -105,4 +105,4 @@ h5 {
line-height: 30px;
letter-spacing: 0em;
text-align: left;
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item-variant/variant-form.component.ts b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item-variant/variant-form.component.ts
index 51da063ffc5..50f0d26cd7e 100644
--- a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item-variant/variant-form.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item-variant/variant-form.component.ts
@@ -28,9 +28,10 @@ export interface IVariantCreateInput {
}
@Component({
- selector: 'ngx-inventory-variant-form',
- templateUrl: './variant-form.component.html',
- styleUrls: ['./variant-form.component.scss']
+ selector: 'ngx-inventory-variant-form',
+ templateUrl: './variant-form.component.html',
+ styleUrls: ['./variant-form.component.scss'],
+ standalone: false
})
export class InventoryVariantFormComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
itemVariant: IProductVariant;
diff --git a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/options-form/options-form.component.scss b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/options-form/options-form.component.scss
index 857e2f04a04..0f571407b2b 100644
--- a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/options-form/options-form.component.scss
+++ b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/options-form/options-form.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
.options-wrap {
display: flex;
@@ -120,4 +120,4 @@ i {
padding: 6px;
border-radius: var(--button-rectangle-border-radius);
width: fit-content;
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/options-form/options-form.component.ts b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/options-form/options-form.component.ts
index 0718dd2aa93..4f0bf4ca3a0 100644
--- a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/options-form/options-form.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/options-form/options-form.component.ts
@@ -42,9 +42,10 @@ export interface IProductOptionUI extends IProductOptionTranslatable {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-options-form',
- templateUrl: './options-form.component.html',
- styleUrls: ['./options-form.component.scss']
+ selector: 'ngx-options-form',
+ templateUrl: './options-form.component.html',
+ styleUrls: ['./options-form.component.scss'],
+ standalone: false
})
export class OptionsFormComponent implements OnInit {
editOption: IProductOption;
diff --git a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/product-form.component.scss b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/product-form.component.scss
index a68267fc6a0..48b108e5e0c 100644
--- a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/product-form.component.scss
+++ b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/product-form.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-overrides';
-@import 'gauzy/_gauzy-cards';
+@use 'gauzy/_gauzy-cards' as *;
+@use 'gauzy/_gauzy-overrides' as ga-overrides;
.d-bottom {
display: flex;
diff --git a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/product-form.component.ts b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/product-form.component.ts
index aa4f6055e96..4bf9464d92b 100644
--- a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/product-form.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/product-form.component.ts
@@ -19,9 +19,10 @@ import { InventoryStore, ProductService, ProductVariantService, Store, ToastrSer
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-product-form',
- templateUrl: './product-form.component.html',
- styleUrls: ['./product-form.component.scss']
+ selector: 'ngx-product-form',
+ templateUrl: './product-form.component.html',
+ styleUrls: ['./product-form.component.scss'],
+ standalone: false
})
export class ProductFormComponent extends TranslationBaseComponent implements OnInit {
form: UntypedFormGroup;
diff --git a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/product-gallery/product-gallery.component.scss b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/product-gallery/product-gallery.component.scss
index e2a1be45986..9f6f8d2bad7 100644
--- a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/product-gallery/product-gallery.component.scss
+++ b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/product-gallery/product-gallery.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-table';
+@use 'gauzy/_gauzy-table' as *;
.actions-container {
display: flex;
diff --git a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/product-gallery/product-gallery.component.ts b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/product-gallery/product-gallery.component.ts
index 14b4678724c..8910586ed65 100644
--- a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/product-gallery/product-gallery.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/product-gallery/product-gallery.component.ts
@@ -11,9 +11,10 @@ import { GalleryComponent, GalleryService, ImageAssetComponent, SelectAssetCompo
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-product-gallery',
- templateUrl: './product-gallery.component.html',
- styleUrls: ['./product-gallery.component.scss']
+ selector: 'ngx-product-gallery',
+ templateUrl: './product-gallery.component.html',
+ styleUrls: ['./product-gallery.component.scss'],
+ standalone: false
})
export class ProductGalleryComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
selectedImage: IImageAsset;
diff --git a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/variant-form/variant-form.component.ts b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/variant-form/variant-form.component.ts
index ac040aea5ee..832ce3d9b4c 100644
--- a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/variant-form/variant-form.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/variant-form/variant-form.component.ts
@@ -7,9 +7,10 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy()
@Component({
- selector: 'ngx-variant-form',
- templateUrl: './variant-form.component.html',
- styleUrls: ['./variant-form.component.scss']
+ selector: 'ngx-variant-form',
+ templateUrl: './variant-form.component.html',
+ styleUrls: ['./variant-form.component.scss'],
+ standalone: false
})
export class VariantFormComponent implements OnInit {
options: IProductOptionTranslatable[] = [];
diff --git a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/variant-table/variant-table.component.html b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/variant-table/variant-table.component.html
index ebfc0415c3c..3eae6b39d3b 100644
--- a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/variant-table/variant-table.component.html
+++ b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/variant-table/variant-table.component.html
@@ -17,9 +17,7 @@
(userRowSelect)="selectItem($event)"
[source]="smartTableSource"
style="cursor: pointer"
- #variantTable
- >
-
+ >
diff --git a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/variant-table/variant-table.component.scss b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/variant-table/variant-table.component.scss
index b4f29e734a8..ae51ff88204 100644
--- a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/variant-table/variant-table.component.scss
+++ b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/variant-table/variant-table.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-table';
+@use 'gauzy/_gauzy-table' as *;
:host ngx-gauzy-button-action ::ng-deep {
.transition-container span {
@@ -8,4 +8,4 @@
.actions-container {
padding-top: 0;
}
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/variant-table/variant-table.component.ts b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/variant-table/variant-table.component.ts
index e09a713e6c8..8aa63ef7a30 100644
--- a/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/variant-table/variant-table.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/edit-inventory-item/variant-table/variant-table.component.ts
@@ -1,4 +1,4 @@
-import { Component, ViewChild, OnInit } from '@angular/core';
+import { Component, OnInit } from '@angular/core';
import { LocalDataSource } from 'angular2-smart-table';
import { TranslateService } from '@ngx-translate/core';
import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@@ -22,13 +22,11 @@ export interface SelectedProductVariant {
@Component({
selector: 'ngx-variant-table',
templateUrl: './variant-table.component.html',
- styleUrls: ['./variant-table.component.scss']
+ styleUrls: ['./variant-table.component.scss'],
+ standalone: false
})
export class VariantTableComponent extends TranslationBaseComponent implements OnInit {
- @ViewChild('variantTable') variantTable;
-
variants: IProductVariant[] = [];
-
selectedItem: IProductVariant;
settingsSmartTable: object;
smartTableSource = new LocalDataSource();
@@ -66,6 +64,7 @@ export class VariantTableComponent extends TranslationBaseComponent implements O
async loadSmartTable() {
this.settingsSmartTable = {
actions: false,
+ selectedRowIndex: -1,
columns: {
image: {
title: this.getTranslation('INVENTORY_PAGE.IMAGE'),
@@ -105,12 +104,8 @@ export class VariantTableComponent extends TranslationBaseComponent implements O
}
async selectItem({ isSelected, data }) {
- const selectedItem = isSelected ? data : null;
- if (this.variantTable) {
- this.variantTable.grid.dataSet.willSelect = false;
- }
this.disableButton = !isSelected;
- this.selectedItem = selectedItem;
+ this.selectedItem = isSelected ? data : null;
}
async delete() {
diff --git a/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/contact-row.component.ts b/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/contact-row.component.ts
index 71adbd26ff4..54e24ed5c78 100644
--- a/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/contact-row.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/contact-row.component.ts
@@ -1,7 +1,8 @@
import { Component, Input } from '@angular/core';
@Component({
- template: `
{{address}}
`
+ template: `
{{address}}
`,
+ standalone: false
})
export class ContactRowComponent {
@Input() value: any;
diff --git a/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/description/description.component.ts b/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/description/description.component.ts
index ff2ab38ee2c..280ae29797b 100644
--- a/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/description/description.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/description/description.component.ts
@@ -1,9 +1,10 @@
import { Component, Input, OnInit } from '@angular/core';
@Component({
- selector: 'gauzy-description',
- templateUrl: './description.component.html',
- styleUrls: ['./description.component.css']
+ selector: 'gauzy-description',
+ templateUrl: './description.component.html',
+ styleUrls: ['./description.component.css'],
+ standalone: false
})
export class DescriptionComponent implements OnInit {
diff --git a/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/enabled-row.component.ts b/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/enabled-row.component.ts
index e26daa2a949..f53bb8edc03 100644
--- a/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/enabled-row.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/enabled-row.component.ts
@@ -1,7 +1,7 @@
import { Component, Input } from '@angular/core';
@Component({
- template: `
+ template: `
{{ 'INVENTORY_PAGE.INACTIVE' | translate }}
@@ -13,8 +13,8 @@ import { Component, Input } from '@angular/core';
`,
- styles: [
- `
+ styles: [
+ `
.badge-disabled {
background-color: #ccc;
}
@@ -30,7 +30,8 @@ import { Component, Input } from '@angular/core';
text-align: left;
}
`
- ]
+ ],
+ standalone: false
})
export class EnabledStatusComponent {
@Input() value: any;
diff --git a/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/icon-row.component.ts b/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/icon-row.component.ts
index f80a5968cc4..ec32216fc4d 100644
--- a/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/icon-row.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/icon-row.component.ts
@@ -2,13 +2,13 @@ import { Component, Input } from '@angular/core';
import { IProductTypeTranslated } from '@gauzy/contracts';
@Component({
- template: `
+ template: `
`,
- styles: [
- `
+ styles: [
+ `
.icon-container {
width: 35px;
height: 35px;
@@ -25,7 +25,8 @@ import { IProductTypeTranslated } from '@gauzy/contracts';
width: 25px;
}
`
- ]
+ ],
+ standalone: false
})
export class IconRowComponent {
@Input() value: string | number;
diff --git a/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/image-row.component.ts b/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/image-row.component.ts
index 105b35e4d2b..b741101a727 100644
--- a/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/image-row.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/image-row.component.ts
@@ -2,14 +2,14 @@ import { Component, Input } from '@angular/core';
import { DEFAULT_SVG } from '@gauzy/ui-core/common';
@Component({
- template: `
+ template: `
`,
- styles: [
- `
+ styles: [
+ `
.img-container {
width: 74px;
display: flex;
@@ -30,7 +30,8 @@ import { DEFAULT_SVG } from '@gauzy/ui-core/common';
height: 60px;
}
`
- ]
+ ],
+ standalone: false
})
export class ImageRowComponent {
@Input()
diff --git a/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/item-img-tags-row.component.ts b/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/item-img-tags-row.component.ts
index 7b886516838..8cc4f6d9c32 100644
--- a/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/item-img-tags-row.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/item-img-tags-row.component.ts
@@ -3,7 +3,7 @@ import { getContrastColor } from '@gauzy/ui-core/common';
import { ComponentLayoutStyleEnum } from '@gauzy/contracts';
@Component({
- template: `
+ template: `
`,
- styles: [
- `
+ styles: [
+ `
.img-tags-container {
display: flex;
gap: 10px;
@@ -96,7 +96,8 @@ import { ComponentLayoutStyleEnum } from '@gauzy/contracts';
margin-bottom: 4px;
}
`
- ]
+ ],
+ standalone: false
})
export class ItemImgTagsComponent {
@Input()
diff --git a/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/name-with-description/name-with-description.component.ts b/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/name-with-description/name-with-description.component.ts
index 077ac421e16..c73dd6a156b 100644
--- a/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/name-with-description/name-with-description.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/name-with-description/name-with-description.component.ts
@@ -1,9 +1,10 @@
import { Component, Input, OnInit } from '@angular/core';
@Component({
- selector: 'gauzy-name-with-description',
- templateUrl: './name-with-description.component.html',
- styleUrls: ['./name-with-description.component.scss']
+ selector: 'gauzy-name-with-description',
+ templateUrl: './name-with-description.component.html',
+ styleUrls: ['./name-with-description.component.scss'],
+ standalone: false
})
export class NameWithDescriptionComponent implements OnInit {
@Input() value: string | number;
diff --git a/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/no-image/no-image.component.ts b/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/no-image/no-image.component.ts
index fcdd8043eb8..cb278dd785d 100644
--- a/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/no-image/no-image.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/no-image/no-image.component.ts
@@ -1,9 +1,10 @@
import { Component, Input, OnInit } from '@angular/core';
@Component({
- selector: 'ga-no-image',
- templateUrl: './no-image.component.html',
- styleUrls: ['./no-image.component.scss']
+ selector: 'ga-no-image',
+ templateUrl: './no-image.component.html',
+ styleUrls: ['./no-image.component.scss'],
+ standalone: false
})
export class NoImageComponent implements OnInit {
@Input() placeholder: string = 'NO_IMAGE.AVAILABLE';
diff --git a/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/selected-row.component.ts b/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/selected-row.component.ts
index 1a5d4dacf6e..33fa9e25b57 100644
--- a/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/selected-row.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/inventory-table-components/selected-row.component.ts
@@ -10,7 +10,8 @@ import { Component, Input } from '@angular/core';
status="basic"
>
- `
+ `,
+ standalone: false
})
export class SelectedRowComponent {
diff --git a/apps/gauzy/src/app/pages/inventory/components/inventory.component.ts b/apps/gauzy/src/app/pages/inventory/components/inventory.component.ts
index 820d1d60530..4f9f4ced98d 100644
--- a/apps/gauzy/src/app/pages/inventory/components/inventory.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/inventory.component.ts
@@ -1,7 +1,8 @@
import { Component } from '@angular/core';
@Component({
- selector: 'ga-inventory-layout-selector',
- template: `
`
+ selector: 'ga-inventory-layout-selector',
+ template: `
`,
+ standalone: false
})
export class InventoryComponent { }
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant-form/merchant-form.component.scss b/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant-form/merchant-form.component.scss
index bca0d553491..3f63d2236d5 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant-form/merchant-form.component.scss
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant-form/merchant-form.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.store-image {
width: 100%;
@@ -85,4 +85,4 @@ h4 {
}
@include dialog(var(--gauzy-card-2), var(--gauzy-card-1));
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant-form/merchant-form.component.ts b/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant-form/merchant-form.component.ts
index df4b23e1080..11d584201be 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant-form/merchant-form.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant-form/merchant-form.component.ts
@@ -15,9 +15,10 @@ import { FormHelpers, LocationFormComponent, LeafletMapComponent, SelectAssetCom
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-merchant-form',
- templateUrl: './merchant-form.component.html',
- styleUrls: ['./merchant-form.component.scss']
+ selector: 'ga-merchant-form',
+ templateUrl: './merchant-form.component.html',
+ styleUrls: ['./merchant-form.component.scss'],
+ standalone: false
})
export class MerchantFormComponent extends TranslationBaseComponent implements AfterViewInit, OnInit, OnDestroy {
FormHelpers: typeof FormHelpers = FormHelpers;
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant-table/merchant-table.component.scss b/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant-table/merchant-table.component.scss
index 7b7b289d543..6a42912db28 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant-table/merchant-table.component.scss
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant-table/merchant-table.component.scss
@@ -1,3 +1 @@
-@import '../../manage-product-types/product-types.component.scss';
-
-
\ No newline at end of file
+@forward '../../manage-product-types/product-types.component';
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant-table/merchant-table.component.ts b/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant-table/merchant-table.component.ts
index 2f289040bd2..40fb9308b2a 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant-table/merchant-table.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant-table/merchant-table.component.ts
@@ -20,9 +20,10 @@ import { ContactRowComponent, EnabledStatusComponent, ItemImgTagsComponent } fro
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-merchant-table',
- templateUrl: './merchant-table.component.html',
- styleUrls: ['./merchant-table.component.scss']
+ selector: 'ga-merchant-table',
+ templateUrl: './merchant-table.component.html',
+ styleUrls: ['./merchant-table.component.scss'],
+ standalone: false
})
export class MerchantTableComponent extends PaginationFilterBaseComponent implements OnInit {
settingsSmartTable: object;
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant.component.ts b/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant.component.ts
index 818bd47d8b2..4d8a7c5b2f0 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-merchants/merchant.component.ts
@@ -1,11 +1,12 @@
import { Component } from '@angular/core';
@Component({
- selector: 'ga-merchant-layout-selector',
- template: `
+ selector: 'ga-merchant-layout-selector',
+ template: `
- `
+ `,
+ standalone: false
})
export class MerchantComponent { }
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-product-categories/product-categories.component.scss b/apps/gauzy/src/app/pages/inventory/components/manage-product-categories/product-categories.component.scss
index 386686c4404..11954c825a8 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-product-categories/product-categories.component.scss
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-product-categories/product-categories.component.scss
@@ -1 +1 @@
-@import '../manage-product-types/product-types.component.scss';
+@forward '../manage-product-types/product-types.component';
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-product-categories/product-categories.component.ts b/apps/gauzy/src/app/pages/inventory/components/manage-product-categories/product-categories.component.ts
index f023fced4c9..215d57e8fea 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-product-categories/product-categories.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-product-categories/product-categories.component.ts
@@ -19,9 +19,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-product-categories',
- templateUrl: './product-categories.component.html',
- styleUrls: ['./product-categories.component.scss']
+ selector: 'ngx-product-categories',
+ templateUrl: './product-categories.component.html',
+ styleUrls: ['./product-categories.component.scss'],
+ standalone: false
})
export class ProductCategoriesComponent extends PaginationFilterBaseComponent implements AfterViewInit, OnInit {
smartTableSource: ServerDataSource;
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-product-types/product-types.component.scss b/apps/gauzy/src/app/pages/inventory/components/manage-product-types/product-types.component.scss
index edf1b77bf43..114abea7384 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-product-types/product-types.component.scss
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-product-types/product-types.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_pg-card';
+@use '@shared/_pg-card' as *;
.action {
box-shadow: var(--gauzy-shadow);
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-product-types/product-types.component.ts b/apps/gauzy/src/app/pages/inventory/components/manage-product-types/product-types.component.ts
index 87b0bc8b0c4..0c9ad55c148 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-product-types/product-types.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-product-types/product-types.component.ts
@@ -20,9 +20,10 @@ import { IconRowComponent } from '../inventory-table-components';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-product-types',
- templateUrl: './product-types.component.html',
- styleUrls: ['./product-types.component.scss']
+ selector: 'ngx-product-types',
+ templateUrl: './product-types.component.html',
+ styleUrls: ['./product-types.component.scss'],
+ standalone: false
})
export class ProductTypesComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
smartTableSource: ServerDataSource;
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-quantity/manage-quantity.component.ts b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-quantity/manage-quantity.component.ts
index e58a6e3ad92..ab701d0e867 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-quantity/manage-quantity.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-quantity/manage-quantity.component.ts
@@ -4,9 +4,10 @@ import { debounceTime } from 'rxjs/operators';
import { WarehouseService } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-manage-warehouse-quantity-selector',
- templateUrl: './manage-quantity.component.html',
- styles: ['input { width: 80px }']
+ selector: 'ga-manage-warehouse-quantity-selector',
+ templateUrl: './manage-quantity.component.html',
+ styles: ['input { width: 80px }'],
+ standalone: false
})
export class ManageQuantityComponent implements AfterViewInit {
value: any;
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-variants-quantity-form/manage-variants-quantity-form.component.scss b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-variants-quantity-form/manage-variants-quantity-form.component.scss
index 1e4135f7a08..2f31aa95229 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-variants-quantity-form/manage-variants-quantity-form.component.scss
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-variants-quantity-form/manage-variants-quantity-form.component.scss
@@ -1 +1 @@
-@import "../select-product-form/select-product-form.component";
+@forward '../select-product-form/select-product-form.component';
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-variants-quantity-form/manage-variants-quantity-form.component.ts b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-variants-quantity-form/manage-variants-quantity-form.component.ts
index 8546bcd0b84..978ea4674fc 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-variants-quantity-form/manage-variants-quantity-form.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-variants-quantity-form/manage-variants-quantity-form.component.ts
@@ -8,8 +8,9 @@ import { ImageRowComponent } from '../../inventory-table-components/image-row.co
import { ManageQuantityComponent } from '../manage-quantity/manage-quantity.component';
@Component({
- templateUrl: './manage-variants-quantity-form.component.html',
- styleUrls: ['./manage-variants-quantity-form.component.scss']
+ templateUrl: './manage-variants-quantity-form.component.html',
+ styleUrls: ['./manage-variants-quantity-form.component.scss'],
+ standalone: false
})
export class ManageVariantsQuantityFormComponent extends TranslationBaseComponent implements OnInit {
variants: IWarehouseProductVariant[] = [];
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-variants-quantity/manage-variants-quantity.component.scss b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-variants-quantity/manage-variants-quantity.component.scss
index b1fd45fbcf4..28366b25322 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-variants-quantity/manage-variants-quantity.component.scss
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-variants-quantity/manage-variants-quantity.component.scss
@@ -1 +1 @@
-@import "gauzy/gauzy-table";
+@use "gauzy/gauzy-table" as *;
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-variants-quantity/manage-variants-quantity.component.ts b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-variants-quantity/manage-variants-quantity.component.ts
index c39dff63886..c54d99e8761 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-variants-quantity/manage-variants-quantity.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/manage-variants-quantity/manage-variants-quantity.component.ts
@@ -7,9 +7,10 @@ import { InventoryStore } from '@gauzy/ui-core/core';
import { ManageVariantsQuantityFormComponent } from '../manage-variants-quantity-form/manage-variants-quantity-form.component';
@Component({
- selector: 'ga-manage-variants-quantity',
- templateUrl: './manage-variants-quantity.component.html',
- styleUrls: ['./manage-variants-quantity.component.scss']
+ selector: 'ga-manage-variants-quantity',
+ templateUrl: './manage-variants-quantity.component.html',
+ styleUrls: ['./manage-variants-quantity.component.scss'],
+ standalone: false
})
export class ManageVariantsQuantityComponent extends TranslationBaseComponent {
@Input() value: any;
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/select-product-form/select-product-form.component.scss b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/select-product-form/select-product-form.component.scss
index ab712a88cd0..9a5110e58d4 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/select-product-form/select-product-form.component.scss
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/select-product-form/select-product-form.component.scss
@@ -1,5 +1,5 @@
-@import "gauzy/_gauzy-table";
-@import "gauzy/_gauzy-dialogs";
+@use "gauzy/_gauzy-table" as *;
+@use "gauzy/_gauzy-dialogs" as *;
:host {
@include input-appearance(2rem, var(--gauzy-sidebar-background-3));
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/select-product-form/select-product-form.component.ts b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/select-product-form/select-product-form.component.ts
index 9ee2014d7d5..c36e8cad338 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/select-product-form/select-product-form.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/select-product-form/select-product-form.component.ts
@@ -22,9 +22,10 @@ export interface SelectedRowEvent {
@UntilDestroy()
@Component({
- selector: 'ngx-select-product',
- templateUrl: './select-product-form.component.html',
- styleUrls: ['./select-product-form.component.scss']
+ selector: 'ngx-select-product',
+ templateUrl: './select-product-form.component.html',
+ styleUrls: ['./select-product-form.component.scss'],
+ standalone: false
})
export class SelectProductComponent extends PaginationFilterBaseComponent implements OnInit {
products: IProductTranslated[] = [];
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouse-form/warehouse-form.component.scss b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouse-form/warehouse-form.component.scss
index 79bbabbce24..eb9eb8d650f 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouse-form/warehouse-form.component.scss
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouse-form/warehouse-form.component.scss
@@ -1,5 +1,4 @@
-@import '../../manage-merchants/merchant-form/merchant-form.component.scss';
-
+@forward '../../manage-merchants/merchant-form/merchant-form.component';
:host {
nb-stepper ::ng-deep .step-content {
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouse-form/warehouse-form.component.ts b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouse-form/warehouse-form.component.ts
index c10a8b71999..cc531174da5 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouse-form/warehouse-form.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouse-form/warehouse-form.component.ts
@@ -15,9 +15,10 @@ import { FormHelpers, LocationFormComponent, LeafletMapComponent, SelectAssetCom
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-warehouse-form',
- templateUrl: './warehouse-form.component.html',
- styleUrls: ['./warehouse-form.component.scss']
+ selector: 'ga-warehouse-form',
+ templateUrl: './warehouse-form.component.html',
+ styleUrls: ['./warehouse-form.component.scss'],
+ standalone: false
})
export class WarehouseFormComponent extends TranslationBaseComponent implements AfterViewInit, OnInit, OnDestroy {
FormHelpers: typeof FormHelpers = FormHelpers;
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouse-products-table/warehouse-products-table.component.scss b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouse-products-table/warehouse-products-table.component.scss
index 166f8c93c9e..f591043a083 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouse-products-table/warehouse-products-table.component.scss
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouse-products-table/warehouse-products-table.component.scss
@@ -1,5 +1,5 @@
-@import "gauzy/gauzy-overrides";
-@import "gauzy/gauzy-table";
+@use "gauzy/gauzy-overrides" as *;
+@use "gauzy/gauzy-table" as *;
:host {
@include input-appearance(2rem, var(--gauzy-sidebar-background-3));
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouse-products-table/warehouse-products-table.component.ts b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouse-products-table/warehouse-products-table.component.ts
index a24cd9fff62..2f47e7a689f 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouse-products-table/warehouse-products-table.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouse-products-table/warehouse-products-table.component.ts
@@ -16,9 +16,10 @@ import { ToastrService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-warehouse-products-table',
- templateUrl: './warehouse-products-table.component.html',
- styleUrls: ['./warehouse-products-table.component.scss']
+ selector: 'ga-warehouse-products-table',
+ templateUrl: './warehouse-products-table.component.html',
+ styleUrls: ['./warehouse-products-table.component.scss'],
+ standalone: false
})
export class WarehouseProductsTableComponent extends PaginationFilterBaseComponent implements AfterViewInit, OnInit {
loading: boolean = true;
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouses-table/warehouses-table.component.scss b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouses-table/warehouses-table.component.scss
index 6f8ffb4f77a..6a42912db28 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouses-table/warehouses-table.component.scss
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouses-table/warehouses-table.component.scss
@@ -1 +1 @@
-@import '../../manage-product-types/product-types.component.scss';
\ No newline at end of file
+@forward '../../manage-product-types/product-types.component';
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouses-table/warehouses-table.component.ts b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouses-table/warehouses-table.component.ts
index faa4c995170..d19f0e4d42d 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouses-table/warehouses-table.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouses-table/warehouses-table.component.ts
@@ -21,9 +21,10 @@ import { DescriptionComponent } from '../../inventory-table-components/descripti
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-warehouses',
- templateUrl: './warehouses-table.component.html',
- styleUrls: ['./warehouses-table.component.scss']
+ selector: 'ga-warehouses',
+ templateUrl: './warehouses-table.component.html',
+ styleUrls: ['./warehouses-table.component.scss'],
+ standalone: false
})
export class WarehousesTableComponent
extends PaginationFilterBaseComponent
diff --git a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouses.component.ts b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouses.component.ts
index a535db023ad..05e89147b83 100644
--- a/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouses.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/manage-warehouses/warehouses.component.ts
@@ -1,11 +1,12 @@
import { Component } from '@angular/core';
@Component({
- selector: 'ga-warehouse-layout-selector',
- template: `
+ selector: 'ga-warehouse-layout-selector',
+ template: `
- `
+ `,
+ standalone: false
})
export class WarehousesComponent { }
diff --git a/apps/gauzy/src/app/pages/inventory/components/table-inventory-items/table-inventory.component.scss b/apps/gauzy/src/app/pages/inventory/components/table-inventory-items/table-inventory.component.scss
index a0167b7b20d..919806e79ae 100644
--- a/apps/gauzy/src/app/pages/inventory/components/table-inventory-items/table-inventory.component.scss
+++ b/apps/gauzy/src/app/pages/inventory/components/table-inventory-items/table-inventory.component.scss
@@ -1,4 +1,5 @@
-@import '../manage-product-types/product-types.component.scss';
+@use '@shared/_pg-card' as *;
+@forward '../manage-product-types/product-types.component';
:host nb-card-body {
height: calc($card-height - 0.5rem) !important;
diff --git a/apps/gauzy/src/app/pages/inventory/components/table-inventory-items/table-inventory.component.ts b/apps/gauzy/src/app/pages/inventory/components/table-inventory-items/table-inventory.component.ts
index f57cb19017b..ada012ab81c 100644
--- a/apps/gauzy/src/app/pages/inventory/components/table-inventory-items/table-inventory.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/table-inventory-items/table-inventory.component.ts
@@ -32,9 +32,10 @@ import { ImageRowComponent, NameWithDescriptionComponent } from '../inventory-ta
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-table-inventory',
- templateUrl: './table-inventory.component.html',
- styleUrls: ['./table-inventory.component.scss']
+ selector: 'ngx-table-inventory',
+ templateUrl: './table-inventory.component.html',
+ styleUrls: ['./table-inventory.component.scss'],
+ standalone: false
})
export class TableInventoryComponent extends PaginationFilterBaseComponent implements AfterViewInit, OnInit, OnDestroy {
settingsSmartTable: object;
diff --git a/apps/gauzy/src/app/pages/inventory/components/view-inventory-item/view-inventory-item.component.ts b/apps/gauzy/src/app/pages/inventory/components/view-inventory-item/view-inventory-item.component.ts
index c940bc09ae2..94c6a8164f6 100644
--- a/apps/gauzy/src/app/pages/inventory/components/view-inventory-item/view-inventory-item.component.ts
+++ b/apps/gauzy/src/app/pages/inventory/components/view-inventory-item/view-inventory-item.component.ts
@@ -14,9 +14,10 @@ import { EnabledStatusComponent, ImageRowComponent } from '../inventory-table-co
@UntilDestroy()
@Component({
- selector: 'ngx-view-inventory-item',
- templateUrl: './view-inventory-item.component.html',
- styleUrls: ['./view-inventory-item.component.scss']
+ selector: 'ngx-view-inventory-item',
+ templateUrl: './view-inventory-item.component.html',
+ styleUrls: ['./view-inventory-item.component.scss'],
+ standalone: false
})
export class InventoryItemViewComponent extends TranslationBaseComponent implements OnInit {
inventoryItem: IProductTranslatable;
diff --git a/apps/gauzy/src/app/pages/invoices/add-internal-note/add-internal-note.component.scss b/apps/gauzy/src/app/pages/invoices/add-internal-note/add-internal-note.component.scss
index ed371416aa8..7a6295577b3 100644
--- a/apps/gauzy/src/app/pages/invoices/add-internal-note/add-internal-note.component.scss
+++ b/apps/gauzy/src/app/pages/invoices/add-internal-note/add-internal-note.component.scss
@@ -1,4 +1,5 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
+
.internal-note-input {
height: 200px;
}
diff --git a/apps/gauzy/src/app/pages/invoices/add-internal-note/add-internal-note.component.ts b/apps/gauzy/src/app/pages/invoices/add-internal-note/add-internal-note.component.ts
index 6c1d29a1687..3986bddadd5 100644
--- a/apps/gauzy/src/app/pages/invoices/add-internal-note/add-internal-note.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/add-internal-note/add-internal-note.component.ts
@@ -9,9 +9,10 @@ import { InvoiceEmailMutationComponent } from '../invoice-email/invoice-email-mu
import { ToastrService } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-add-internal-note',
- templateUrl: './add-internal-note.component.html',
- styleUrls: ['./add-internal-note.component.scss']
+ selector: 'ga-add-internal-note',
+ templateUrl: './add-internal-note.component.html',
+ styleUrls: ['./add-internal-note.component.scss'],
+ standalone: false
})
export class AddInternalNoteComponent extends TranslationBaseComponent implements OnInit {
invoice: IInvoice;
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-add/invoice-add.component.scss b/apps/gauzy/src/app/pages/invoices/invoice-add/invoice-add.component.scss
index 0d94d4a2e15..f36d40a0b3a 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-add/invoice-add.component.scss
+++ b/apps/gauzy/src/app/pages/invoices/invoice-add/invoice-add.component.scss
@@ -1,4 +1,5 @@
-@import '../invoice-edit/invoice-edit.component.scss';
+@forward '../invoice-edit/invoice-edit.component';
+
$green: rgba(37, 184, 105, 1);
$shadow: 0 0 0 nb-theme(button-outline-width)
rgba(
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-add/invoice-add.component.ts b/apps/gauzy/src/app/pages/invoices/invoice-add/invoice-add.component.ts
index 65b2fee1fe5..dbbcb4086c1 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-add/invoice-add.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/invoice-add/invoice-add.component.ts
@@ -52,9 +52,10 @@ import { IPaginationBase, PaginationFilterBaseComponent } from '@gauzy/ui-core/s
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-invoice-add',
- templateUrl: './invoice-add.component.html',
- styleUrls: ['./invoice-add.component.scss']
+ selector: 'ga-invoice-add',
+ templateUrl: './invoice-add.component.html',
+ styleUrls: ['./invoice-add.component.scss'],
+ standalone: false
})
export class InvoiceAddComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
settingsSmartTable: object;
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-download/invoice-download-mutation.component.ts b/apps/gauzy/src/app/pages/invoices/invoice-download/invoice-download-mutation.component.ts
index 2457d7ea086..0d37db732bc 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-download/invoice-download-mutation.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/invoice-download/invoice-download-mutation.component.ts
@@ -10,8 +10,9 @@ import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-invoice-download',
- templateUrl: './invoice-download-mutation.component.html'
+ selector: 'ga-invoice-download',
+ templateUrl: './invoice-download-mutation.component.html',
+ standalone: false
})
export class InvoiceDownloadMutationComponent extends TranslationBaseComponent {
invoice: IInvoice;
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-edit/invoice-edit.component.scss b/apps/gauzy/src/app/pages/invoices/invoice-edit/invoice-edit.component.scss
index 1ba18390905..8d6bbed5709 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-edit/invoice-edit.component.scss
+++ b/apps/gauzy/src/app/pages/invoices/invoice-edit/invoice-edit.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-table';
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-table' as *;
+@use 'gauzy/_gauzy-dialogs' as *;
:host ::ng-deep angular2-smart-table .angular2-smart-actions-title a {
background-color: #00d68f !important;
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-edit/invoice-edit.component.ts b/apps/gauzy/src/app/pages/invoices/invoice-edit/invoice-edit.component.ts
index 2905ed19d55..ee20336d80b 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-edit/invoice-edit.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/invoice-edit/invoice-edit.component.ts
@@ -46,9 +46,10 @@ import { IPaginationBase, PaginationFilterBaseComponent } from '@gauzy/ui-core/s
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-invoice-edit',
- templateUrl: './invoice-edit.component.html',
- styleUrls: ['./invoice-edit.component.scss']
+ selector: 'ga-invoice-edit',
+ templateUrl: './invoice-edit.component.html',
+ styleUrls: ['./invoice-edit.component.scss'],
+ standalone: false
})
export class InvoiceEditComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
shouldLoadTable = false;
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-email/invoice-email-mutation.component.scss b/apps/gauzy/src/app/pages/invoices/invoice-email/invoice-email-mutation.component.scss
index 8b7f9812c85..2090c092897 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-email/invoice-email-mutation.component.scss
+++ b/apps/gauzy/src/app/pages/invoices/invoice-email/invoice-email-mutation.component.scss
@@ -1 +1 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-email/invoice-email-mutation.component.ts b/apps/gauzy/src/app/pages/invoices/invoice-email/invoice-email-mutation.component.ts
index 711ae196281..f13c7d48999 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-email/invoice-email-mutation.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/invoice-email/invoice-email-mutation.component.ts
@@ -8,9 +8,10 @@ import { NbDialogRef } from '@nebular/theme';
import { InvoiceEstimateHistoryService, InvoicesService, Store, ToastrService } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-invoice-email',
- templateUrl: './invoice-email-mutation.component.html',
- styleUrls: ['./invoice-email-mutation.component.scss']
+ selector: 'ga-invoice-email',
+ templateUrl: './invoice-email-mutation.component.html',
+ styleUrls: ['./invoice-email-mutation.component.scss'],
+ standalone: false
})
export class InvoiceEmailMutationComponent extends TranslationBaseComponent implements OnInit {
invoice: IInvoice;
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-estimates/estimate-add/estimate-add.component.ts b/apps/gauzy/src/app/pages/invoices/invoice-estimates/estimate-add/estimate-add.component.ts
index 9fc5a2084d9..f5c6debd33f 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-estimates/estimate-add/estimate-add.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/invoice-estimates/estimate-add/estimate-add.component.ts
@@ -1,7 +1,8 @@
import { Component } from '@angular/core';
@Component({
- selector: 'ga-estimate-add',
- templateUrl: './estimate-add.component.html'
+ selector: 'ga-estimate-add',
+ templateUrl: './estimate-add.component.html',
+ standalone: false
})
export class EstimateAddComponent {}
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-estimates/estimate-edit/estimate-edit.component.ts b/apps/gauzy/src/app/pages/invoices/invoice-estimates/estimate-edit/estimate-edit.component.ts
index abe3693767a..d95431c3de5 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-estimates/estimate-edit/estimate-edit.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/invoice-estimates/estimate-edit/estimate-edit.component.ts
@@ -1,7 +1,8 @@
import { Component } from '@angular/core';
@Component({
- selector: 'ga-estimate-edit',
- templateUrl: './estimate-edit.component.html'
+ selector: 'ga-estimate-edit',
+ templateUrl: './estimate-edit.component.html',
+ standalone: false
})
export class EstimateEditComponent { }
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-estimates/estimate-view/estimate-view.component.ts b/apps/gauzy/src/app/pages/invoices/invoice-estimates/estimate-view/estimate-view.component.ts
index a1d590f14f8..6e7ba2a149f 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-estimates/estimate-view/estimate-view.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/invoice-estimates/estimate-view/estimate-view.component.ts
@@ -1,7 +1,8 @@
import { Component } from '@angular/core';
@Component({
- selector: 'ga-estimate-view',
- templateUrl: './estimate-view.component.html'
+ selector: 'ga-estimate-view',
+ templateUrl: './estimate-view.component.html',
+ standalone: false
})
export class EstimateViewComponent {}
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-estimates/estimates-received/estimates-received.component.ts b/apps/gauzy/src/app/pages/invoices/invoice-estimates/estimates-received/estimates-received.component.ts
index 48a43ea7dd8..f80dd850515 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-estimates/estimates-received/estimates-received.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/invoice-estimates/estimates-received/estimates-received.component.ts
@@ -1,7 +1,8 @@
import { Component } from '@angular/core';
@Component({
- selector: 'ga-estimates-received',
- templateUrl: './estimates-received.component.html'
+ selector: 'ga-estimates-received',
+ templateUrl: './estimates-received.component.html',
+ standalone: false
})
export class EstimatesReceivedComponent {}
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-estimates/invoice-estimates.component.ts b/apps/gauzy/src/app/pages/invoices/invoice-estimates/invoice-estimates.component.ts
index b42ee415191..225ebdd850f 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-estimates/invoice-estimates.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/invoice-estimates/invoice-estimates.component.ts
@@ -3,8 +3,9 @@ import { OnInit, Component } from '@angular/core';
import { TranslateService } from '@ngx-translate/core';
@Component({
- selector: 'ga-estimates',
- templateUrl: './invoice-estimates.component.html'
+ selector: 'ga-estimates',
+ templateUrl: './invoice-estimates.component.html',
+ standalone: false
})
export class EstimatesComponent extends TranslationBaseComponent implements OnInit {
constructor(readonly translateService: TranslateService) {
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-payments/payment-mutation/payment-mutation.component.scss b/apps/gauzy/src/app/pages/invoices/invoice-payments/payment-mutation/payment-mutation.component.scss
index 7a092d6d10b..ca0f9c61e28 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-payments/payment-mutation/payment-mutation.component.scss
+++ b/apps/gauzy/src/app/pages/invoices/invoice-payments/payment-mutation/payment-mutation.component.scss
@@ -1,4 +1,5 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
+
.body {
width: 605px;
}
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-payments/payment-mutation/payment-mutation.component.ts b/apps/gauzy/src/app/pages/invoices/invoice-payments/payment-mutation/payment-mutation.component.ts
index c748e9d80e0..53acc57dce0 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-payments/payment-mutation/payment-mutation.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/invoice-payments/payment-mutation/payment-mutation.component.ts
@@ -22,9 +22,10 @@ import { InvoicesService, OrganizationSettingService, Store } from '@gauzy/ui-co
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-payment-add',
- templateUrl: './payment-mutation.component.html',
- styleUrls: ['./payment-mutation.component.scss']
+ selector: 'ga-payment-add',
+ templateUrl: './payment-mutation.component.html',
+ styleUrls: ['./payment-mutation.component.scss'],
+ standalone: false
})
export class PaymentMutationComponent extends TranslationBaseComponent implements OnInit, AfterViewInit {
invoice: IInvoice;
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-payments/payment-receipt-mutation/payment-receipt-mutation.component.ts b/apps/gauzy/src/app/pages/invoices/invoice-payments/payment-receipt-mutation/payment-receipt-mutation.component.ts
index aa262bd813a..0c887d51a8b 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-payments/payment-receipt-mutation/payment-receipt-mutation.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/invoice-payments/payment-receipt-mutation/payment-receipt-mutation.component.ts
@@ -6,9 +6,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
import { IInvoice, IPayment } from '@gauzy/contracts';
@Component({
- selector: 'ga-payment-receipt-mutation',
- templateUrl: './payment-receipt-mutation.component.html',
- styleUrls: ['../payment-mutation/payment-mutation.component.scss']
+ selector: 'ga-payment-receipt-mutation',
+ templateUrl: './payment-receipt-mutation.component.html',
+ styleUrls: ['../payment-mutation/payment-mutation.component.scss'],
+ standalone: false
})
export class InvoicePaymentReceiptMutationComponent extends TranslationBaseComponent {
constructor(
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-payments/payments.component.scss b/apps/gauzy/src/app/pages/invoices/invoice-payments/payments.component.scss
index edc3087ba60..b41aef0cca2 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-payments/payments.component.scss
+++ b/apps/gauzy/src/app/pages/invoices/invoice-payments/payments.component.scss
@@ -1,4 +1,5 @@
-@import 'gauzy/_gauzy-table';
+@use 'gauzy/_gauzy-table' as *;
+
.date-and-value {
display: flex;
flex-direction: column;
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-payments/payments.component.ts b/apps/gauzy/src/app/pages/invoices/invoice-payments/payments.component.ts
index 0e0c577a47c..1fadbb64d43 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-payments/payments.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/invoice-payments/payments.component.ts
@@ -35,9 +35,10 @@ import { InvoicePaymentReceiptMutationComponent } from './payment-receipt-mutati
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-payments',
- templateUrl: './payments.component.html',
- styleUrls: ['./payments.component.scss']
+ selector: 'ga-payments',
+ templateUrl: './payments.component.html',
+ styleUrls: ['./payments.component.scss'],
+ standalone: false
})
export class InvoicePaymentsComponent extends TranslationBaseComponent implements OnInit {
public invoiceId: string;
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-pdf/invoice-pdf.component.ts b/apps/gauzy/src/app/pages/invoices/invoice-pdf/invoice-pdf.component.ts
index aaad80d3e3f..2126d2f006d 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-pdf/invoice-pdf.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/invoice-pdf/invoice-pdf.component.ts
@@ -24,7 +24,7 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
class="pdfDoc loading"
*ngIf="isLoading"
>
- A error occurred, please reload.
`,
+ An error occurred, please reload.
`,
styles: [
`
::ng-deep .pdf-preview-card {
@@ -40,7 +40,8 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
width: 60vw;
}
`
- ]
+ ],
+ standalone: false
})
export class InvoicePdfComponent extends TranslationBaseComponent implements OnInit {
@Input() invoice: IInvoice;
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-send/invoice-send-mutation.component.scss b/apps/gauzy/src/app/pages/invoices/invoice-send/invoice-send-mutation.component.scss
index 8b7f9812c85..2090c092897 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-send/invoice-send-mutation.component.scss
+++ b/apps/gauzy/src/app/pages/invoices/invoice-send/invoice-send-mutation.component.scss
@@ -1 +1 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-send/invoice-send-mutation.component.ts b/apps/gauzy/src/app/pages/invoices/invoice-send/invoice-send-mutation.component.ts
index dbc2c5f54e2..a8f1170ba62 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-send/invoice-send-mutation.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/invoice-send/invoice-send-mutation.component.ts
@@ -6,9 +6,10 @@ import { IInvoice, ITag, InvoiceStatusTypesEnum } from '@gauzy/contracts';
import { InvoiceEstimateHistoryService, InvoicesService, Store, ToastrService } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-invoice-send',
- templateUrl: './invoice-send-mutation.component.html',
- styleUrls: ['./invoice-send-mutation.component.scss']
+ selector: 'ga-invoice-send',
+ templateUrl: './invoice-send-mutation.component.html',
+ styleUrls: ['./invoice-send-mutation.component.scss'],
+ standalone: false
})
export class InvoiceSendMutationComponent extends TranslationBaseComponent implements OnInit {
invoice: IInvoice;
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-view/invoice-view.component.scss b/apps/gauzy/src/app/pages/invoices/invoice-view/invoice-view.component.scss
index 6e86e454ca9..af1e68ebd8d 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-view/invoice-view.component.scss
+++ b/apps/gauzy/src/app/pages/invoices/invoice-view/invoice-view.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-cards';
-@import 'gauzy/_gauzy-table.scss';
+@use 'gauzy/_gauzy-cards' as *;
+@use 'gauzy/_gauzy-table' as *;
.grid {
display: grid;
diff --git a/apps/gauzy/src/app/pages/invoices/invoice-view/invoice-view.component.ts b/apps/gauzy/src/app/pages/invoices/invoice-view/invoice-view.component.ts
index 901e2a3063b..91a7ccf42a1 100644
--- a/apps/gauzy/src/app/pages/invoices/invoice-view/invoice-view.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/invoice-view/invoice-view.component.ts
@@ -13,9 +13,10 @@ import { DeleteConfirmationComponent } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-invoice-view',
- templateUrl: './invoice-view.component.html',
- styleUrls: ['./invoice-view.component.scss']
+ selector: 'ga-invoice-view',
+ templateUrl: './invoice-view.component.html',
+ styleUrls: ['./invoice-view.component.scss'],
+ standalone: false
})
export class InvoiceViewComponent extends TranslationBaseComponent implements OnInit {
public invoice: IInvoice;
diff --git a/apps/gauzy/src/app/pages/invoices/invoices-received/invoices-received.component.scss b/apps/gauzy/src/app/pages/invoices/invoices-received/invoices-received.component.scss
index df91f07792a..5ac39261bb7 100644
--- a/apps/gauzy/src/app/pages/invoices/invoices-received/invoices-received.component.scss
+++ b/apps/gauzy/src/app/pages/invoices/invoices-received/invoices-received.component.scss
@@ -1 +1 @@
-@import '@shared/_pg-card';
+@forward '@shared/_pg-card';
diff --git a/apps/gauzy/src/app/pages/invoices/invoices-received/invoices-received.component.ts b/apps/gauzy/src/app/pages/invoices/invoices-received/invoices-received.component.ts
index 6f260ae2be2..e2d114e9817 100644
--- a/apps/gauzy/src/app/pages/invoices/invoices-received/invoices-received.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/invoices-received/invoices-received.component.ts
@@ -44,9 +44,10 @@ import { InvoiceDownloadMutationComponent } from '../invoice-download/invoice-do
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-invoices-received',
- templateUrl: './invoices-received.component.html',
- styleUrls: ['./invoices-received.component.scss']
+ selector: 'ga-invoices-received',
+ templateUrl: './invoices-received.component.html',
+ styleUrls: ['./invoices-received.component.scss'],
+ standalone: false
})
export class InvoicesReceivedComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
public loading: boolean = false;
diff --git a/apps/gauzy/src/app/pages/invoices/invoices.component.scss b/apps/gauzy/src/app/pages/invoices/invoices.component.scss
index 43724731750..f584d4a1769 100644
--- a/apps/gauzy/src/app/pages/invoices/invoices.component.scss
+++ b/apps/gauzy/src/app/pages/invoices/invoices.component.scss
@@ -1,6 +1,6 @@
-@import 'report';
-@import 'gauzy/_gauzy-overrides';
-@import 'gauzy/_gauzy-cards';
+@forward 'report';
+@use 'gauzy/_gauzy-cards' as *;
+@use 'gauzy/_gauzy-overrides' as ga-overrides;
.popover-container {
display: flex;
@@ -22,7 +22,7 @@
i {
cursor: pointer;
}
- @include dialog(var(--gauzy-card-1), var(--gauzy-sidebar-background-4));
+ @include ga-overrides.dialog(var(--gauzy-card-1), var(--gauzy-sidebar-background-4));
}
.popover-container-action {
@@ -388,10 +388,10 @@ nb-tab {
::ng-deep {
@include card_overrides(auto, $default-card-height, $default-radius);
- @include ng-select-overrides(
- $default-height,
+ @include ga-overrides.ng-select-overrides(
+ ga-overrides.$default-height,
$default-radius,
- $default-box-shadow-inset
+ ga-overrides.$default-box-shadow-inset
);
nb-tabset .tab.active .tab-link {
@@ -409,7 +409,7 @@ nb-tab {
}
:host nb-accordion {
- @include dialog(var(--gauzy-card-1), var(--gauzy-card-1));
+ @include ga-overrides.dialog(var(--gauzy-card-1), var(--gauzy-card-1));
}
.comments-container {
diff --git a/apps/gauzy/src/app/pages/invoices/invoices.component.ts b/apps/gauzy/src/app/pages/invoices/invoices.component.ts
index 20f3b559fef..7a80b5b5470 100644
--- a/apps/gauzy/src/app/pages/invoices/invoices.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/invoices.component.ts
@@ -70,9 +70,10 @@ import { PublicLinkComponent } from './public-link/public-link.component';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-invoices',
- templateUrl: './invoices.component.html',
- styleUrls: ['invoices.component.scss']
+ selector: 'ngx-invoices',
+ templateUrl: './invoices.component.html',
+ styleUrls: ['invoices.component.scss'],
+ standalone: false
})
export class InvoicesComponent extends PaginationFilterBaseComponent implements AfterViewInit, OnInit, OnDestroy {
settingsSmartTable: object;
diff --git a/apps/gauzy/src/app/pages/invoices/public-link/public-link.component.scss b/apps/gauzy/src/app/pages/invoices/public-link/public-link.component.scss
index 8b7f9812c85..2090c092897 100644
--- a/apps/gauzy/src/app/pages/invoices/public-link/public-link.component.scss
+++ b/apps/gauzy/src/app/pages/invoices/public-link/public-link.component.scss
@@ -1 +1 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
diff --git a/apps/gauzy/src/app/pages/invoices/public-link/public-link.component.ts b/apps/gauzy/src/app/pages/invoices/public-link/public-link.component.ts
index ad40ce6d212..20cf04ff543 100644
--- a/apps/gauzy/src/app/pages/invoices/public-link/public-link.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/public-link/public-link.component.ts
@@ -8,9 +8,10 @@ import { ClipboardService } from 'ngx-clipboard';
import { InvoicesService } from '@gauzy/ui-core/core';
@Component({
- selector: 'public-invoice-link',
- templateUrl: './public-link.component.html',
- styleUrls: ['./public-link.component.scss']
+ selector: 'public-invoice-link',
+ templateUrl: './public-link.component.html',
+ styleUrls: ['./public-link.component.scss'],
+ standalone: false
})
export class PublicLinkComponent implements OnInit {
public publicLink: string;
diff --git a/apps/gauzy/src/app/pages/invoices/table-components/invoice-apply-tax-discount.component.ts b/apps/gauzy/src/app/pages/invoices/table-components/invoice-apply-tax-discount.component.ts
index 7a7b0adf672..45ace131c11 100644
--- a/apps/gauzy/src/app/pages/invoices/table-components/invoice-apply-tax-discount.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/table-components/invoice-apply-tax-discount.component.ts
@@ -9,10 +9,10 @@ import { DefaultEditor } from 'angular2-smart-table';
(checkedChange)="toggleSeparateTaxDiscount($event)"
>
`,
- styles: ['.apply-tax {text-align: center}']
+ styles: ['.apply-tax {text-align: center}'],
+ standalone: false
})
export class InvoiceApplyTaxDiscountComponent extends DefaultEditor implements OnInit {
-
ngOnInit() {
this.cell.setValue(this.cell.getValue());
}
diff --git a/apps/gauzy/src/app/pages/invoices/table-components/invoice-employees-selector.component.ts b/apps/gauzy/src/app/pages/invoices/table-components/invoice-employees-selector.component.ts
index cf5800d61ed..d2d8e57ca55 100644
--- a/apps/gauzy/src/app/pages/invoices/table-components/invoice-employees-selector.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/table-components/invoice-employees-selector.component.ts
@@ -8,7 +8,7 @@ import { DateRangePickerBuilderService, EmployeesService, Store } from '@gauzy/u
@UntilDestroy({ checkProperties: true })
@Component({
- template: `
+ template: `
@@ -20,11 +20,12 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
`,
- styles: [
- '.progress-bar-inner {background-color: rgba(0, 214, 143, 1); position: absolute; height: 32px; width:100%; border-radius: 4px;}',
- '.progress-bar {background-color: rgba(126, 126, 143, 0.2); border-radius: 4px; position: relative; height: 32px}',
- '.paid-percent {color: #ffffff; z-index: 1; font-weight: bold;}'
- ]
+ styles: [
+ '.progress-bar-inner {background-color: rgba(0, 214, 143, 1); position: absolute; height: 32px; width:100%; border-radius: 4px;}',
+ '.progress-bar {background-color: rgba(126, 126, 143, 0.2); border-radius: 4px; position: relative; height: 32px}',
+ '.paid-percent {color: #ffffff; z-index: 1; font-weight: bold;}'
+ ],
+ standalone: false
})
export class InvoicePaidComponent extends TranslationBaseComponent implements OnInit {
public paidAmountPercentage: number;
diff --git a/apps/gauzy/src/app/pages/invoices/table-components/invoice-product-selector.component.ts b/apps/gauzy/src/app/pages/invoices/table-components/invoice-product-selector.component.ts
index 01dfbc06000..dea9bfca5f2 100644
--- a/apps/gauzy/src/app/pages/invoices/table-components/invoice-product-selector.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/table-components/invoice-product-selector.component.ts
@@ -8,7 +8,7 @@ import { ProductService, Store, TranslatableService } from '@gauzy/ui-core/core'
@UntilDestroy({ checkProperties: true })
@Component({
- template: `
+ template: `
`,
- styles: []
+ styles: [],
+ standalone: false
})
export class InvoiceProductsSelectorComponent extends DefaultEditor implements OnInit, OnDestroy {
public product: IProductTranslatable;
diff --git a/apps/gauzy/src/app/pages/invoices/table-components/invoice-project-selector.component.ts b/apps/gauzy/src/app/pages/invoices/table-components/invoice-project-selector.component.ts
index 1a43718e147..e150ea9ce90 100644
--- a/apps/gauzy/src/app/pages/invoices/table-components/invoice-project-selector.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/table-components/invoice-project-selector.component.ts
@@ -7,7 +7,7 @@ import { OrganizationProjectsService, Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- template: `
+ template: `
`,
- styles: []
+ styles: [],
+ standalone: false
})
export class InvoiceProjectsSelectorComponent extends DefaultEditor implements OnInit, OnDestroy {
public project: IOrganizationProject;
diff --git a/apps/gauzy/src/app/pages/invoices/table-components/invoice-tasks-selector.component.ts b/apps/gauzy/src/app/pages/invoices/table-components/invoice-tasks-selector.component.ts
index ea629f837df..9ac9dbbc6f3 100644
--- a/apps/gauzy/src/app/pages/invoices/table-components/invoice-tasks-selector.component.ts
+++ b/apps/gauzy/src/app/pages/invoices/table-components/invoice-tasks-selector.component.ts
@@ -8,7 +8,7 @@ import { Store, TasksStoreService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- template: `
+ template: `
`,
- styles: []
+ styles: [],
+ standalone: false
})
export class InvoiceTasksSelectorComponent extends DefaultEditor implements OnInit, OnDestroy {
public tasks: ITask[] = [];
diff --git a/apps/gauzy/src/app/pages/jobs/job-layout/job-layout.component.ts b/apps/gauzy/src/app/pages/jobs/job-layout/job-layout.component.ts
index 4ef2dc126e0..e6ede5d9c53 100644
--- a/apps/gauzy/src/app/pages/jobs/job-layout/job-layout.component.ts
+++ b/apps/gauzy/src/app/pages/jobs/job-layout/job-layout.component.ts
@@ -1,8 +1,9 @@
import { Component } from '@angular/core';
@Component({
- selector: 'ga-job-layout',
- templateUrl: './job-layout.component.html',
- styleUrls: ['./job-layout.component.scss']
+ selector: 'ga-job-layout',
+ templateUrl: './job-layout.component.html',
+ styleUrls: ['./job-layout.component.scss'],
+ standalone: false
})
export class JobLayoutComponent {}
diff --git a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-location/edit-organization-location.component.scss b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-location/edit-organization-location.component.scss
index 1398aaaa69a..450dd435b94 100644
--- a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-location/edit-organization-location.component.scss
+++ b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-location/edit-organization-location.component.scss
@@ -1,5 +1,5 @@
-@import "themes";
-@import "var";
+@use 'var' as *;
+@use 'themes' as *;
:host {
&.ng-star-inserted {
diff --git a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-location/edit-organization-location.component.ts b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-location/edit-organization-location.component.ts
index 12f55b779bb..74b70321986 100644
--- a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-location/edit-organization-location.component.ts
+++ b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-location/edit-organization-location.component.ts
@@ -13,9 +13,10 @@ import { LeafletMapComponent, LocationFormComponent } from '@gauzy/ui-core/share
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-edit-org-location',
- templateUrl: './edit-organization-location.component.html',
- styleUrls: ['./edit-organization-location.component.scss']
+ selector: 'ga-edit-org-location',
+ templateUrl: './edit-organization-location.component.html',
+ styleUrls: ['./edit-organization-location.component.scss'],
+ standalone: false
})
export class EditOrganizationLocationComponent
extends TranslationBaseComponent
diff --git a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-main/edit-organization-main.component.scss b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-main/edit-organization-main.component.scss
index 41e283ca7e4..21a768d98da 100644
--- a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-main/edit-organization-main.component.scss
+++ b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-main/edit-organization-main.component.scss
@@ -1,4 +1,4 @@
-@import 'var';
+@use 'var' as *;
:host {
height: 100%;
diff --git a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-main/edit-organization-main.component.ts b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-main/edit-organization-main.component.ts
index 52deea0bee7..e50ea9e2610 100644
--- a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-main/edit-organization-main.component.ts
+++ b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-main/edit-organization-main.component.ts
@@ -18,9 +18,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-edit-org-main',
- templateUrl: './edit-organization-main.component.html',
- styleUrls: ['./edit-organization-main.component.scss']
+ selector: 'ga-edit-org-main',
+ templateUrl: './edit-organization-main.component.html',
+ styleUrls: ['./edit-organization-main.component.scss'],
+ standalone: false
})
export class EditOrganizationMainComponent
extends TranslationBaseComponent
diff --git a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-other-settings/edit-organization-other-settings.component.scss b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-other-settings/edit-organization-other-settings.component.scss
index a402b2c92ab..ea74218b151 100644
--- a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-other-settings/edit-organization-other-settings.component.scss
+++ b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-other-settings/edit-organization-other-settings.component.scss
@@ -1,5 +1,5 @@
-@import 'themes';
-@import 'var';
+@use 'themes' as *;
+@use 'var' as *;
:host {
height: 100%;
diff --git a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-other-settings/edit-organization-other-settings.component.ts b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-other-settings/edit-organization-other-settings.component.ts
index f645c5acd93..2703e6e9e71 100644
--- a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-other-settings/edit-organization-other-settings.component.ts
+++ b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-other-settings/edit-organization-other-settings.component.ts
@@ -51,9 +51,10 @@ import { NotesWithTagsComponent } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-edit-org-other-settings',
- templateUrl: './edit-organization-other-settings.component.html',
- styleUrls: ['./edit-organization-other-settings.component.scss']
+ selector: 'ga-edit-org-other-settings',
+ templateUrl: './edit-organization-other-settings.component.html',
+ styleUrls: ['./edit-organization-other-settings.component.scss'],
+ standalone: false
})
export class EditOrganizationOtherSettingsComponent
extends NotesWithTagsComponent
diff --git a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-settings.component.scss b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-settings.component.scss
index 3836532d8f8..88bae0f6857 100644
--- a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-settings.component.scss
+++ b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-settings.component.scss
@@ -1,6 +1,6 @@
-@import 'var';
-@import 'themes';
-@import '@shared/_edit-profile-form';
+@use 'var' as *;
+@use 'themes' as *;
+@forward '@shared/_edit-profile-form';
.form-group input {
width: 100%;
diff --git a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-settings.component.ts b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-settings.component.ts
index 10ff8f4da2c..2cbdd1edf5e 100644
--- a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-settings.component.ts
+++ b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization-settings/edit-organization-settings.component.ts
@@ -9,9 +9,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-edit-organization-settings',
- templateUrl: './edit-organization-settings.component.html',
- styleUrls: ['./edit-organization-settings.component.scss']
+ selector: 'ngx-edit-organization-settings',
+ templateUrl: './edit-organization-settings.component.html',
+ styleUrls: ['./edit-organization-settings.component.scss'],
+ standalone: false
})
export class EditOrganizationSettingsComponent extends TranslationBaseComponent implements AfterViewInit, OnInit {
@Input() organization: IOrganization;
diff --git a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization.component.scss b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization.component.scss
index 1f0dbc1370b..1707fc24fdf 100644
--- a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization.component.scss
+++ b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization.component.scss
@@ -1,6 +1,6 @@
-@import "themes";
-@import "var";
-@import 'gauzy/_gauzy-overrides';
+@use 'var' as *;
+@use 'themes' as *;
+@use 'gauzy/_gauzy-overrides' as ga-overrides;
:host .card-scroll {
background-color: nb-theme(gauzy-card-2);
@@ -143,5 +143,5 @@
nb-card{
height: unset;
}
- @include input-appearance(42px, var(--gauzy-card-1));
-}
\ No newline at end of file
+ @include ga-overrides.input-appearance(42px, var(--gauzy-card-1));
+}
diff --git a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization.component.ts b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization.component.ts
index cc5149de608..a2a487aefdd 100644
--- a/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization.component.ts
+++ b/apps/gauzy/src/app/pages/organizations/edit-organization/edit-organization.component.ts
@@ -12,8 +12,9 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- templateUrl: './edit-organization.component.html',
- styleUrls: ['./edit-organization.component.scss', '../../dashboard/dashboard.component.scss']
+ templateUrl: './edit-organization.component.html',
+ styleUrls: ['./edit-organization.component.scss', '../../dashboard/dashboard.component.scss'],
+ standalone: false
})
export class EditOrganizationComponent extends TranslationBaseComponent implements AfterViewInit, OnInit, OnDestroy {
public organization: IOrganization;
diff --git a/apps/gauzy/src/app/pages/organizations/edit-organization/organization-list/organization-list.component.ts b/apps/gauzy/src/app/pages/organizations/edit-organization/organization-list/organization-list.component.ts
index da81cdf45a4..a86251e6f05 100644
--- a/apps/gauzy/src/app/pages/organizations/edit-organization/organization-list/organization-list.component.ts
+++ b/apps/gauzy/src/app/pages/organizations/edit-organization/organization-list/organization-list.component.ts
@@ -1,9 +1,10 @@
import { Component, Input, Output, EventEmitter } from '@angular/core';
import { ListsInputTypeEnum } from '@gauzy/contracts';
@Component({
- selector: 'ngx-organization-list',
- templateUrl: './organization-list.component.html',
- styleUrls: ['./organization-list.component.scss']
+ selector: 'ngx-organization-list',
+ templateUrl: './organization-list.component.html',
+ styleUrls: ['./organization-list.component.scss'],
+ standalone: false
})
export class OrganizationListComponent {
@Input()
diff --git a/apps/gauzy/src/app/pages/organizations/organizations.component.scss b/apps/gauzy/src/app/pages/organizations/organizations.component.scss
index 732e0ca9a19..53e339c38f5 100644
--- a/apps/gauzy/src/app/pages/organizations/organizations.component.scss
+++ b/apps/gauzy/src/app/pages/organizations/organizations.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_pg-card';
+@forward '@shared/_pg-card';
h4 {
font-size: 24px;
diff --git a/apps/gauzy/src/app/pages/organizations/organizations.component.ts b/apps/gauzy/src/app/pages/organizations/organizations.component.ts
index b1c6b0923c4..a546cf3a1bb 100644
--- a/apps/gauzy/src/app/pages/organizations/organizations.component.ts
+++ b/apps/gauzy/src/app/pages/organizations/organizations.component.ts
@@ -31,8 +31,9 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- templateUrl: './organizations.component.html',
- styleUrls: ['./organizations.component.scss']
+ templateUrl: './organizations.component.html',
+ styleUrls: ['./organizations.component.scss'],
+ standalone: false
})
export class OrganizationsComponent extends PaginationFilterBaseComponent implements AfterViewInit, OnInit, OnDestroy {
settingsSmartTable: object;
diff --git a/apps/gauzy/src/app/pages/organizations/table-components/organization-total-employees-count/organization-total-employees-count.component.ts b/apps/gauzy/src/app/pages/organizations/table-components/organization-total-employees-count/organization-total-employees-count.component.ts
index c33e08f8704..e9a05703a19 100644
--- a/apps/gauzy/src/app/pages/organizations/table-components/organization-total-employees-count/organization-total-employees-count.component.ts
+++ b/apps/gauzy/src/app/pages/organizations/table-components/organization-total-employees-count/organization-total-employees-count.component.ts
@@ -1,14 +1,15 @@
import { Component, Input } from '@angular/core';
@Component({
- selector: 'ga-organizations-employees-table-selector',
- template: `
+ selector: 'ga-organizations-employees-table-selector',
+ template: `
{{ value }}
- `
+ `,
+ standalone: false
})
export class OrganizationTotalEmployeesCountComponent {
@Input() rowData: any;
diff --git a/apps/gauzy/src/app/pages/organizations/table-components/organizations-currency/organizations-currency.component.ts b/apps/gauzy/src/app/pages/organizations/table-components/organizations-currency/organizations-currency.component.ts
index f59c57e5fee..3eae215e733 100644
--- a/apps/gauzy/src/app/pages/organizations/table-components/organizations-currency/organizations-currency.component.ts
+++ b/apps/gauzy/src/app/pages/organizations/table-components/organizations-currency/organizations-currency.component.ts
@@ -1,12 +1,13 @@
import { Component, Input } from '@angular/core';
@Component({
- selector: 'ga-organization-currency-table-selector',
- template: `
+ selector: 'ga-organization-currency-table-selector',
+ template: `
{{ value }}
- `
+ `,
+ standalone: false
})
export class OrganizationsCurrencyComponent {
@Input()
diff --git a/apps/gauzy/src/app/pages/organizations/table-components/organizations-fullname/organizations-fullname.component.ts b/apps/gauzy/src/app/pages/organizations/table-components/organizations-fullname/organizations-fullname.component.ts
index 2a86d8812ad..1094a9774fb 100644
--- a/apps/gauzy/src/app/pages/organizations/table-components/organizations-fullname/organizations-fullname.component.ts
+++ b/apps/gauzy/src/app/pages/organizations/table-components/organizations-fullname/organizations-fullname.component.ts
@@ -1,8 +1,8 @@
import { Component, Input } from '@angular/core';
@Component({
- selector: 'ngx-organizations-fullname',
- template: `
+ selector: 'ngx-organizations-fullname',
+ template: `
![]()
@@ -10,8 +10,8 @@ import { Component, Input } from '@angular/core';
{{ value }}
`,
- styles: [
- `
+ styles: [
+ `
.image-container {
width: 70px;
height: 63px;
@@ -24,7 +24,8 @@ import { Component, Input } from '@angular/core';
max-width: 70px;
}
`
- ]
+ ],
+ standalone: false
})
export class OrganizationsFullnameComponent {
@Input()
diff --git a/apps/gauzy/src/app/pages/organizations/table-components/organizations-status/organizations-status.component.scss b/apps/gauzy/src/app/pages/organizations/table-components/organizations-status/organizations-status.component.scss
index f611cdf0526..7630bf9ee93 100644
--- a/apps/gauzy/src/app/pages/organizations/table-components/organizations-status/organizations-status.component.scss
+++ b/apps/gauzy/src/app/pages/organizations/table-components/organizations-status/organizations-status.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
.badge-danger {
text-align: flex-start;
@@ -25,4 +25,4 @@
>div {
border-radius: 4px;
}
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/organizations/table-components/organizations-status/organizations-status.component.ts b/apps/gauzy/src/app/pages/organizations/table-components/organizations-status/organizations-status.component.ts
index 76f12c48a41..7ae1fa135c6 100644
--- a/apps/gauzy/src/app/pages/organizations/table-components/organizations-status/organizations-status.component.ts
+++ b/apps/gauzy/src/app/pages/organizations/table-components/organizations-status/organizations-status.component.ts
@@ -1,8 +1,9 @@
import { Component, Input } from '@angular/core';
@Component({
- templateUrl: './organizations-status.component.html',
- styleUrls: ['./organizations-status.component.scss']
+ templateUrl: './organizations-status.component.html',
+ styleUrls: ['./organizations-status.component.scss'],
+ standalone: false
})
export class OrganizationsStatusComponent {
@Input()
diff --git a/apps/gauzy/src/app/pages/pages.component.scss b/apps/gauzy/src/app/pages/pages.component.scss
index 62c73cca063..89f388da883 100644
--- a/apps/gauzy/src/app/pages/pages.component.scss
+++ b/apps/gauzy/src/app/pages/pages.component.scss
@@ -1,5 +1,5 @@
-@import 'themes';
-@import 'gauzy/_gauzy-button-action';
+@use 'themes' as *;
+@use 'gauzy/_gauzy-button-action' as *;
@include nb-install-component() {
::ng-deep router-outlet + * {
diff --git a/apps/gauzy/src/app/pages/pages.component.ts b/apps/gauzy/src/app/pages/pages.component.ts
index b8c2facdba0..e347b2ef0d8 100644
--- a/apps/gauzy/src/app/pages/pages.component.ts
+++ b/apps/gauzy/src/app/pages/pages.component.ts
@@ -23,14 +23,15 @@ import { ReportService } from './reports/all-report/report.service';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-pages',
- styleUrls: ['pages.component.scss'],
- template: `
+ selector: 'ngx-pages',
+ styleUrls: ['pages.component.scss'],
+ template: `
- `
+ `,
+ standalone: false
})
export class PagesComponent extends TranslationBaseComponent implements AfterViewInit, OnInit, OnDestroy {
public organization: IOrganization;
diff --git a/apps/gauzy/src/app/pages/payments/payments.component.scss b/apps/gauzy/src/app/pages/payments/payments.component.scss
index df91f07792a..5ac39261bb7 100644
--- a/apps/gauzy/src/app/pages/payments/payments.component.scss
+++ b/apps/gauzy/src/app/pages/payments/payments.component.scss
@@ -1 +1 @@
-@import '@shared/_pg-card';
+@forward '@shared/_pg-card';
diff --git a/apps/gauzy/src/app/pages/payments/payments.component.ts b/apps/gauzy/src/app/pages/payments/payments.component.ts
index 7fe27aa78ea..f1d5fcd855d 100644
--- a/apps/gauzy/src/app/pages/payments/payments.component.ts
+++ b/apps/gauzy/src/app/pages/payments/payments.component.ts
@@ -46,9 +46,10 @@ import { PaymentMutationComponent } from '../invoices/invoice-payments/payment-m
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-payments',
- templateUrl: './payments.component.html',
- styleUrls: ['./payments.component.scss']
+ selector: 'ngx-payments',
+ templateUrl: './payments.component.html',
+ styleUrls: ['./payments.component.scss'],
+ standalone: false
})
export class PaymentsComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
public settingsSmartTable: object;
diff --git a/apps/gauzy/src/app/pages/pipelines/pipeline-deals/pipeline-deal-form/pipeline-deal-form.component.ts b/apps/gauzy/src/app/pages/pipelines/pipeline-deals/pipeline-deal-form/pipeline-deal-form.component.ts
index a8563231742..84fe0675741 100644
--- a/apps/gauzy/src/app/pages/pipelines/pipeline-deals/pipeline-deal-form/pipeline-deal-form.component.ts
+++ b/apps/gauzy/src/app/pages/pipelines/pipeline-deals/pipeline-deal-form/pipeline-deal-form.component.ts
@@ -17,9 +17,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-pipeline-deals-form',
- templateUrl: './pipeline-deal-form.component.html',
- styleUrls: ['./pipeline-deal-form.component.scss']
+ selector: 'ga-pipeline-deals-form',
+ templateUrl: './pipeline-deal-form.component.html',
+ styleUrls: ['./pipeline-deal-form.component.scss'],
+ standalone: false
})
export class PipelineDealFormComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
public probabilities = [0, 1, 2, 3, 4, 5];
diff --git a/apps/gauzy/src/app/pages/pipelines/pipeline-deals/pipeline-deals.component.scss b/apps/gauzy/src/app/pages/pipelines/pipeline-deals/pipeline-deals.component.scss
index 610004c0db3..7ac305feefc 100644
--- a/apps/gauzy/src/app/pages/pipelines/pipeline-deals/pipeline-deals.component.scss
+++ b/apps/gauzy/src/app/pages/pipelines/pipeline-deals/pipeline-deals.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_pg-card';
+@forward '@shared/_pg-card';
:host {
.card-header-title {
diff --git a/apps/gauzy/src/app/pages/pipelines/pipeline-deals/pipeline-deals.component.ts b/apps/gauzy/src/app/pages/pipelines/pipeline-deals/pipeline-deals.component.ts
index 5487880258e..04623dee27f 100644
--- a/apps/gauzy/src/app/pages/pipelines/pipeline-deals/pipeline-deals.component.ts
+++ b/apps/gauzy/src/app/pages/pipelines/pipeline-deals/pipeline-deals.component.ts
@@ -21,9 +21,10 @@ import { PipelineDealProbabilityComponent } from '../table-components/pipeline-d
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-pipeline-deals',
- templateUrl: './pipeline-deals.component.html',
- styleUrls: ['./pipeline-deals.component.scss']
+ selector: 'ga-pipeline-deals',
+ templateUrl: './pipeline-deals.component.html',
+ styleUrls: ['./pipeline-deals.component.scss'],
+ standalone: false
})
export class PipelineDealsComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
public viewComponentName: ComponentEnum = ComponentEnum.PIPELINE_DEALS;
diff --git a/apps/gauzy/src/app/pages/pipelines/pipeline-form/pipeline-form.component.scss b/apps/gauzy/src/app/pages/pipelines/pipeline-form/pipeline-form.component.scss
index 8b7f9812c85..2090c092897 100644
--- a/apps/gauzy/src/app/pages/pipelines/pipeline-form/pipeline-form.component.scss
+++ b/apps/gauzy/src/app/pages/pipelines/pipeline-form/pipeline-form.component.scss
@@ -1 +1 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
diff --git a/apps/gauzy/src/app/pages/pipelines/pipeline-form/pipeline-form.component.ts b/apps/gauzy/src/app/pages/pipelines/pipeline-form/pipeline-form.component.ts
index 62cb232e6d5..f98a161834e 100644
--- a/apps/gauzy/src/app/pages/pipelines/pipeline-form/pipeline-form.component.ts
+++ b/apps/gauzy/src/app/pages/pipelines/pipeline-form/pipeline-form.component.ts
@@ -9,9 +9,10 @@ import { distinctUntilChange } from '@gauzy/ui-core/common';
@UntilDestroy({ checkProperties: true })
@Component({
- templateUrl: './pipeline-form.component.html',
- styleUrls: ['./pipeline-form.component.scss'],
- selector: 'ga-pipeline-mutation-form'
+ templateUrl: './pipeline-form.component.html',
+ styleUrls: ['./pipeline-form.component.scss'],
+ selector: 'ga-pipeline-mutation-form',
+ standalone: false
})
export class PipelineFormComponent implements OnInit {
public isActive: boolean = true;
diff --git a/apps/gauzy/src/app/pages/pipelines/pipelines.component.scss b/apps/gauzy/src/app/pages/pipelines/pipelines.component.scss
index 4bdb04788b9..ab3a7249aa0 100644
--- a/apps/gauzy/src/app/pages/pipelines/pipelines.component.scss
+++ b/apps/gauzy/src/app/pages/pipelines/pipelines.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_pg-card';
+@use '@shared/_pg-card' as *;
:host {
height: 100%;
diff --git a/apps/gauzy/src/app/pages/pipelines/pipelines.component.ts b/apps/gauzy/src/app/pages/pipelines/pipelines.component.ts
index 3fd9e42c4ea..f95e57d8263 100644
--- a/apps/gauzy/src/app/pages/pipelines/pipelines.component.ts
+++ b/apps/gauzy/src/app/pages/pipelines/pipelines.component.ts
@@ -36,9 +36,10 @@ import { StageComponent } from './stage/stage.component';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-pipelines',
- templateUrl: './pipelines.component.html',
- styleUrls: ['./pipelines.component.scss']
+ selector: 'ga-pipelines',
+ templateUrl: './pipelines.component.html',
+ styleUrls: ['./pipelines.component.scss'],
+ standalone: false
})
export class PipelinesComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
public smartTableSettings: object;
diff --git a/apps/gauzy/src/app/pages/pipelines/stage-form/stage-form.component.ts b/apps/gauzy/src/app/pages/pipelines/stage-form/stage-form.component.ts
index bff51e6e4cf..195141eac81 100644
--- a/apps/gauzy/src/app/pages/pipelines/stage-form/stage-form.component.ts
+++ b/apps/gauzy/src/app/pages/pipelines/stage-form/stage-form.component.ts
@@ -8,8 +8,9 @@ import { DeleteConfirmationComponent } from '@gauzy/ui-core/shared';
import { Store } from '@gauzy/ui-core/core';
@Component({
- templateUrl: './stage-form.component.html',
- selector: 'ga-stage-form'
+ templateUrl: './stage-form.component.html',
+ selector: 'ga-stage-form',
+ standalone: false
})
export class StageFormComponent implements OnInit {
@Input('values')
diff --git a/apps/gauzy/src/app/pages/pipelines/stage/stage.component.ts b/apps/gauzy/src/app/pages/pipelines/stage/stage.component.ts
index be184d878df..70787e362e5 100644
--- a/apps/gauzy/src/app/pages/pipelines/stage/stage.component.ts
+++ b/apps/gauzy/src/app/pages/pipelines/stage/stage.component.ts
@@ -2,9 +2,10 @@ import { Component, OnInit, Input } from '@angular/core';
import { IPipelineStage } from '@gauzy/contracts';
@Component({
- selector: 'gauzy-stage',
- templateUrl: './stage.component.html',
- styleUrls: ['./stage.component.scss']
+ selector: 'gauzy-stage',
+ templateUrl: './stage.component.html',
+ styleUrls: ['./stage.component.scss'],
+ standalone: false
})
export class StageComponent implements OnInit {
diff --git a/apps/gauzy/src/app/pages/pipelines/table-components/pipeline-deal-excerpt/pipeline-deal-excerpt.component.ts b/apps/gauzy/src/app/pages/pipelines/table-components/pipeline-deal-excerpt/pipeline-deal-excerpt.component.ts
index 9deb74d7aa9..2cf781ae59d 100644
--- a/apps/gauzy/src/app/pages/pipelines/table-components/pipeline-deal-excerpt/pipeline-deal-excerpt.component.ts
+++ b/apps/gauzy/src/app/pages/pipelines/table-components/pipeline-deal-excerpt/pipeline-deal-excerpt.component.ts
@@ -2,8 +2,9 @@ import { Component, Input } from '@angular/core';
import { IDeal } from '@gauzy/contracts';
@Component({
- selector: 'ga-pipeline-excerpt',
- template: `{{ rowData?.stage?.name }}`
+ selector: 'ga-pipeline-excerpt',
+ template: `{{ rowData?.stage?.name }}`,
+ standalone: false
})
export class PipelineDealExcerptComponent {
@Input()
diff --git a/apps/gauzy/src/app/pages/pipelines/table-components/pipeline-deal-probability/pipeline-deal-probability.component.ts b/apps/gauzy/src/app/pages/pipelines/table-components/pipeline-deal-probability/pipeline-deal-probability.component.ts
index 389194d24f1..847e6a3306a 100644
--- a/apps/gauzy/src/app/pages/pipelines/table-components/pipeline-deal-probability/pipeline-deal-probability.component.ts
+++ b/apps/gauzy/src/app/pages/pipelines/table-components/pipeline-deal-probability/pipeline-deal-probability.component.ts
@@ -3,7 +3,8 @@ import { IDeal } from '@gauzy/contracts';
@Component({
selector: 'ga-pipeline-deal-probability',
- templateUrl: './pipeline-deal-probability.component.html'
+ templateUrl: './pipeline-deal-probability.component.html',
+ standalone: false
})
export class PipelineDealProbabilityComponent implements OnInit {
@Input() value: string | number;
diff --git a/apps/gauzy/src/app/pages/positions/positions.component.scss b/apps/gauzy/src/app/pages/positions/positions.component.scss
index b2fd715e910..001fa112aec 100644
--- a/apps/gauzy/src/app/pages/positions/positions.component.scss
+++ b/apps/gauzy/src/app/pages/positions/positions.component.scss
@@ -1 +1 @@
-@import '../vendors/vendors.component.scss';
+@forward '../vendors/vendors.component';
diff --git a/apps/gauzy/src/app/pages/positions/positions.component.ts b/apps/gauzy/src/app/pages/positions/positions.component.ts
index 8b7ed96e2fa..8dfb615ac3c 100644
--- a/apps/gauzy/src/app/pages/positions/positions.component.ts
+++ b/apps/gauzy/src/app/pages/positions/positions.component.ts
@@ -16,9 +16,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-positions',
- templateUrl: './positions.component.html',
- styleUrls: ['positions.component.scss']
+ selector: 'ga-positions',
+ templateUrl: './positions.component.html',
+ styleUrls: ['positions.component.scss'],
+ standalone: false
})
export class PositionsComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
showAddCard: boolean;
diff --git a/apps/gauzy/src/app/pages/projects/components/project-create/create.component.scss b/apps/gauzy/src/app/pages/projects/components/project-create/create.component.scss
index 373c7ed7023..19fc569bf28 100644
--- a/apps/gauzy/src/app/pages/projects/components/project-create/create.component.scss
+++ b/apps/gauzy/src/app/pages/projects/components/project-create/create.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_pg-card';
+@forward '@shared/_pg-card';
:host {
h4 {
diff --git a/apps/gauzy/src/app/pages/projects/components/project-create/create.component.ts b/apps/gauzy/src/app/pages/projects/components/project-create/create.component.ts
index ec1cbbcc493..af3631887e2 100644
--- a/apps/gauzy/src/app/pages/projects/components/project-create/create.component.ts
+++ b/apps/gauzy/src/app/pages/projects/components/project-create/create.component.ts
@@ -9,9 +9,10 @@ import { ProjectMutationComponent } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-project-create-mutation',
- templateUrl: './create.component.html',
- styleUrls: ['./create.component.scss']
+ selector: 'ngx-project-create-mutation',
+ templateUrl: './create.component.html',
+ styleUrls: ['./create.component.scss'],
+ standalone: false
})
export class ProjectCreateMutationComponent extends TranslationBaseComponent implements OnInit {
/** Project Mutation Component*/
diff --git a/apps/gauzy/src/app/pages/projects/components/project-edit/edit.component.scss b/apps/gauzy/src/app/pages/projects/components/project-edit/edit.component.scss
index 373c7ed7023..19fc569bf28 100644
--- a/apps/gauzy/src/app/pages/projects/components/project-edit/edit.component.scss
+++ b/apps/gauzy/src/app/pages/projects/components/project-edit/edit.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_pg-card';
+@forward '@shared/_pg-card';
:host {
h4 {
diff --git a/apps/gauzy/src/app/pages/projects/components/project-edit/edit.component.ts b/apps/gauzy/src/app/pages/projects/components/project-edit/edit.component.ts
index 122b4134c0c..7cb4c63bb70 100644
--- a/apps/gauzy/src/app/pages/projects/components/project-edit/edit.component.ts
+++ b/apps/gauzy/src/app/pages/projects/components/project-edit/edit.component.ts
@@ -15,9 +15,10 @@ import { ProjectMutationComponent } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-project-edit-mutation',
- templateUrl: './edit.component.html',
- styleUrls: ['./edit.component.scss']
+ selector: 'ngx-project-edit-mutation',
+ templateUrl: './edit.component.html',
+ styleUrls: ['./edit.component.scss'],
+ standalone: false
})
export class ProjectEditMutationComponent extends TranslationBaseComponent implements OnInit {
/** Project Mutation Component*/
diff --git a/apps/gauzy/src/app/pages/projects/components/project-list/list.component.scss b/apps/gauzy/src/app/pages/projects/components/project-list/list.component.scss
index 154d2e882d6..9b5c4442474 100644
--- a/apps/gauzy/src/app/pages/projects/components/project-list/list.component.scss
+++ b/apps/gauzy/src/app/pages/projects/components/project-list/list.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_pg-card';
+@forward '@shared/_pg-card';
h4 {
font-size: 24px;
diff --git a/apps/gauzy/src/app/pages/projects/components/project-list/list.component.ts b/apps/gauzy/src/app/pages/projects/components/project-list/list.component.ts
index 11311bb7777..1118091733f 100644
--- a/apps/gauzy/src/app/pages/projects/components/project-list/list.component.ts
+++ b/apps/gauzy/src/app/pages/projects/components/project-list/list.component.ts
@@ -47,9 +47,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-project-list',
- templateUrl: './list.component.html',
- styleUrls: ['./list.component.scss']
+ selector: 'ga-project-list',
+ templateUrl: './list.component.html',
+ styleUrls: ['./list.component.scss'],
+ standalone: false
})
export class ProjectListComponent extends PaginationFilterBaseComponent implements OnInit {
public loading: boolean = false;
diff --git a/apps/gauzy/src/app/pages/projects/layout/layout.component.scss b/apps/gauzy/src/app/pages/projects/layout/layout.component.scss
index 3c5c9b4c9cd..2063860cf8f 100644
--- a/apps/gauzy/src/app/pages/projects/layout/layout.component.scss
+++ b/apps/gauzy/src/app/pages/projects/layout/layout.component.scss
@@ -1,4 +1,5 @@
-@import 'themes';
+@use 'themes' as *;
+
:host {
nb-card {
nb-card-body {
diff --git a/apps/gauzy/src/app/pages/projects/layout/layout.component.ts b/apps/gauzy/src/app/pages/projects/layout/layout.component.ts
index 9a55a053000..3f048dbe540 100644
--- a/apps/gauzy/src/app/pages/projects/layout/layout.component.ts
+++ b/apps/gauzy/src/app/pages/projects/layout/layout.component.ts
@@ -1,10 +1,11 @@
import { Component, OnInit } from '@angular/core';
@Component({
- selector: 'ngx-project-layout',
- templateUrl: './layout.component.html',
- styleUrls: ['./layout.component.scss'],
- providers: []
+ selector: 'ngx-project-layout',
+ templateUrl: './layout.component.html',
+ styleUrls: ['./layout.component.scss'],
+ providers: [],
+ standalone: false
})
export class ProjectLayoutComponent implements OnInit {
diff --git a/apps/gauzy/src/app/pages/recurring-expense-employee/recurring-expense-employee.component.scss b/apps/gauzy/src/app/pages/recurring-expense-employee/recurring-expense-employee.component.scss
index ace540a2900..2af88ac5ac3 100644
--- a/apps/gauzy/src/app/pages/recurring-expense-employee/recurring-expense-employee.component.scss
+++ b/apps/gauzy/src/app/pages/recurring-expense-employee/recurring-expense-employee.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-table';
+@use 'gauzy/_gauzy-table' as *;
.setting-name {
font-size: 24px;
diff --git a/apps/gauzy/src/app/pages/recurring-expense-employee/recurring-expense-employee.component.ts b/apps/gauzy/src/app/pages/recurring-expense-employee/recurring-expense-employee.component.ts
index a3a11eec011..8c9764e2d12 100644
--- a/apps/gauzy/src/app/pages/recurring-expense-employee/recurring-expense-employee.component.ts
+++ b/apps/gauzy/src/app/pages/recurring-expense-employee/recurring-expense-employee.component.ts
@@ -28,9 +28,10 @@ import { RecurringExpenseMutationComponent, RecurringExpenseDeleteConfirmationCo
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-recurring-expenses-employee',
- templateUrl: './recurring-expense-employee.component.html',
- styleUrls: ['./recurring-expense-employee.component.scss']
+ selector: 'ga-recurring-expenses-employee',
+ templateUrl: './recurring-expense-employee.component.html',
+ styleUrls: ['./recurring-expense-employee.component.scss'],
+ standalone: false
})
export class RecurringExpensesEmployeeComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
selectedEmployee: IEmployee;
diff --git a/apps/gauzy/src/app/pages/reports/all-report/all-report/all-report.component.scss b/apps/gauzy/src/app/pages/reports/all-report/all-report/all-report.component.scss
index 62de34fd2da..4472d55ee9f 100644
--- a/apps/gauzy/src/app/pages/reports/all-report/all-report/all-report.component.scss
+++ b/apps/gauzy/src/app/pages/reports/all-report/all-report/all-report.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host {
.category-icon {
diff --git a/apps/gauzy/src/app/pages/reports/all-report/all-report/all-report.component.ts b/apps/gauzy/src/app/pages/reports/all-report/all-report/all-report.component.ts
index 2024318af00..6a9a5811837 100644
--- a/apps/gauzy/src/app/pages/reports/all-report/all-report/all-report.component.ts
+++ b/apps/gauzy/src/app/pages/reports/all-report/all-report/all-report.component.ts
@@ -8,9 +8,10 @@ import { ReportService } from '../report.service';
@UntilDestroy()
@Component({
- selector: 'ga-all-report',
- templateUrl: './all-report.component.html',
- styleUrls: ['./all-report.component.scss']
+ selector: 'ga-all-report',
+ templateUrl: './all-report.component.html',
+ styleUrls: ['./all-report.component.scss'],
+ standalone: false
})
export class AllReportComponent implements OnInit {
PermissionsEnum = PermissionsEnum;
diff --git a/apps/gauzy/src/app/pages/reports/amounts-owed-report/amounts-owed-report/amounts-owed-report.component.scss b/apps/gauzy/src/app/pages/reports/amounts-owed-report/amounts-owed-report/amounts-owed-report.component.scss
index f35e4e6e4af..13a46da7387 100644
--- a/apps/gauzy/src/app/pages/reports/amounts-owed-report/amounts-owed-report/amounts-owed-report.component.scss
+++ b/apps/gauzy/src/app/pages/reports/amounts-owed-report/amounts-owed-report/amounts-owed-report.component.scss
@@ -1 +1 @@
-@import "report";
\ No newline at end of file
+@forward 'report';
diff --git a/apps/gauzy/src/app/pages/reports/amounts-owed-report/amounts-owed-report/amounts-owed-report.component.ts b/apps/gauzy/src/app/pages/reports/amounts-owed-report/amounts-owed-report/amounts-owed-report.component.ts
index 3a50380d8e4..31c4027a628 100644
--- a/apps/gauzy/src/app/pages/reports/amounts-owed-report/amounts-owed-report/amounts-owed-report.component.ts
+++ b/apps/gauzy/src/app/pages/reports/amounts-owed-report/amounts-owed-report/amounts-owed-report.component.ts
@@ -24,9 +24,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-amounts-owed-report',
- templateUrl: './amounts-owed-report.component.html',
- styleUrls: ['./amounts-owed-report.component.scss']
+ selector: 'ga-amounts-owed-report',
+ templateUrl: './amounts-owed-report.component.html',
+ styleUrls: ['./amounts-owed-report.component.scss'],
+ standalone: false
})
export class AmountsOwedReportComponent extends BaseSelectorFilterComponent implements OnInit, AfterViewInit {
public filters: IGetExpenseInput;
diff --git a/apps/gauzy/src/app/pages/reports/apps-urls-report/apps-urls-report/apps-urls-report.component.scss b/apps/gauzy/src/app/pages/reports/apps-urls-report/apps-urls-report/apps-urls-report.component.scss
index f35e4e6e4af..13a46da7387 100644
--- a/apps/gauzy/src/app/pages/reports/apps-urls-report/apps-urls-report/apps-urls-report.component.scss
+++ b/apps/gauzy/src/app/pages/reports/apps-urls-report/apps-urls-report/apps-urls-report.component.scss
@@ -1 +1 @@
-@import "report";
\ No newline at end of file
+@forward 'report';
diff --git a/apps/gauzy/src/app/pages/reports/apps-urls-report/apps-urls-report/apps-urls-report.component.ts b/apps/gauzy/src/app/pages/reports/apps-urls-report/apps-urls-report/apps-urls-report.component.ts
index a96a7d28f2f..082e5b3c79f 100644
--- a/apps/gauzy/src/app/pages/reports/apps-urls-report/apps-urls-report/apps-urls-report.component.ts
+++ b/apps/gauzy/src/app/pages/reports/apps-urls-report/apps-urls-report/apps-urls-report.component.ts
@@ -8,9 +8,10 @@ import { BaseSelectorFilterComponent, GauzyFiltersComponent, TimeZoneService } f
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-apps-urls-report',
- templateUrl: './apps-urls-report.component.html',
- styleUrls: ['./apps-urls-report.component.scss']
+ selector: 'ga-apps-urls-report',
+ templateUrl: './apps-urls-report.component.html',
+ styleUrls: ['./apps-urls-report.component.scss'],
+ standalone: false
})
export class AppsUrlsReportComponent extends BaseSelectorFilterComponent implements OnInit, AfterViewInit, OnDestroy {
filters: IGetActivitiesInput;
diff --git a/apps/gauzy/src/app/pages/reports/client-budgets-report/client-budgets-report/client-budgets-report.component.scss b/apps/gauzy/src/app/pages/reports/client-budgets-report/client-budgets-report/client-budgets-report.component.scss
index ea36ed73967..8786c349582 100644
--- a/apps/gauzy/src/app/pages/reports/client-budgets-report/client-budgets-report/client-budgets-report.component.scss
+++ b/apps/gauzy/src/app/pages/reports/client-budgets-report/client-budgets-report/client-budgets-report.component.scss
@@ -1,4 +1,4 @@
-@import 'report';
+@use 'report' as *;
.contact-column {
width: 15%;
@@ -55,4 +55,4 @@
overflow: hidden;
white-space: nowrap;
}
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/reports/client-budgets-report/client-budgets-report/client-budgets-report.component.ts b/apps/gauzy/src/app/pages/reports/client-budgets-report/client-budgets-report/client-budgets-report.component.ts
index 34fc9fc8580..ceb75a3651c 100644
--- a/apps/gauzy/src/app/pages/reports/client-budgets-report/client-budgets-report/client-budgets-report.component.ts
+++ b/apps/gauzy/src/app/pages/reports/client-budgets-report/client-budgets-report/client-budgets-report.component.ts
@@ -18,9 +18,10 @@ import { BaseSelectorFilterComponent, GauzyFiltersComponent, TimeZoneService } f
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-client-budgets-report',
- templateUrl: './client-budgets-report.component.html',
- styleUrls: ['./client-budgets-report.component.scss']
+ selector: 'ga-client-budgets-report',
+ templateUrl: './client-budgets-report.component.html',
+ styleUrls: ['./client-budgets-report.component.scss'],
+ standalone: false
})
export class ClientBudgetsReportComponent extends BaseSelectorFilterComponent implements OnInit, AfterViewInit {
OrganizationContactBudgetTypeEnum = OrganizationContactBudgetTypeEnum;
diff --git a/apps/gauzy/src/app/pages/reports/expenses-report/expenses-report/expenses-report.component.scss b/apps/gauzy/src/app/pages/reports/expenses-report/expenses-report/expenses-report.component.scss
index 097ba829b51..a59357b1e97 100644
--- a/apps/gauzy/src/app/pages/reports/expenses-report/expenses-report/expenses-report.component.scss
+++ b/apps/gauzy/src/app/pages/reports/expenses-report/expenses-report/expenses-report.component.scss
@@ -1,5 +1,5 @@
-@import 'report';
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-overrides' as *;
+@forward 'report';
:host {
::ng-deep {
diff --git a/apps/gauzy/src/app/pages/reports/expenses-report/expenses-report/expenses-report.component.ts b/apps/gauzy/src/app/pages/reports/expenses-report/expenses-report/expenses-report.component.ts
index 0a04c416bd7..90674bb6f56 100644
--- a/apps/gauzy/src/app/pages/reports/expenses-report/expenses-report/expenses-report.component.ts
+++ b/apps/gauzy/src/app/pages/reports/expenses-report/expenses-report/expenses-report.component.ts
@@ -18,9 +18,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-expenses-report',
- templateUrl: './expenses-report.component.html',
- styleUrls: ['./expenses-report.component.scss']
+ selector: 'ga-expenses-report',
+ templateUrl: './expenses-report.component.html',
+ styleUrls: ['./expenses-report.component.scss'],
+ standalone: false
})
export class ExpensesReportComponent extends BaseSelectorFilterComponent implements OnInit, AfterViewInit {
public filters: ITimeLogFilters;
diff --git a/apps/gauzy/src/app/pages/reports/manual-time/manual-time/manual-time.component.scss b/apps/gauzy/src/app/pages/reports/manual-time/manual-time/manual-time.component.scss
index afd827c9ffb..68dbc4d3a31 100644
--- a/apps/gauzy/src/app/pages/reports/manual-time/manual-time/manual-time.component.scss
+++ b/apps/gauzy/src/app/pages/reports/manual-time/manual-time/manual-time.component.scss
@@ -1,7 +1,18 @@
-@import 'report';
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-overrides' as *;
+@use 'report' as ga-report;
:host {
+ ::ng-deep {
+ @include ng-select-overrides(
+ 2.25rem,
+ $default-button-radius,
+ $default-box-shadow
+ );
+
+ .weekly-logs .no-data-found {
+ height: calc(100vh - 20.1rem) !important;
+ }
+ }
nb-badge {
border: 2px solid var(--gauzy-border-default-color);
position: relative;
@@ -47,20 +58,8 @@
}
}
-@include respond(ipad) {
- @include mobile-table-styles;
-}
-
-:host {
- ::ng-deep {
- @include ng-select-overrides(2.25rem,
- $default-button-radius,
- $default-box-shadow );
-
- .weekly-logs .no-data-found {
- height: calc(100vh - 20.1rem) !important;
- }
- }
+@include ga-report.respond(ipad) {
+ @include ga-report.mobile-table-styles;
}
nb-card-body.report-body {
diff --git a/apps/gauzy/src/app/pages/reports/manual-time/manual-time/manual-time.component.ts b/apps/gauzy/src/app/pages/reports/manual-time/manual-time/manual-time.component.ts
index d3284c54ae1..48cc78021fe 100644
--- a/apps/gauzy/src/app/pages/reports/manual-time/manual-time/manual-time.component.ts
+++ b/apps/gauzy/src/app/pages/reports/manual-time/manual-time/manual-time.component.ts
@@ -20,9 +20,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-manual-time-report',
- templateUrl: './manual-time.component.html',
- styleUrls: ['./manual-time.component.scss']
+ selector: 'ga-manual-time-report',
+ templateUrl: './manual-time.component.html',
+ styleUrls: ['./manual-time.component.scss'],
+ standalone: false
})
export class ManualTimeComponent extends BaseSelectorFilterComponent implements OnInit, AfterViewInit {
public control = new FormControl();
diff --git a/apps/gauzy/src/app/pages/reports/payment-report/payment-report/payment-report.component.scss b/apps/gauzy/src/app/pages/reports/payment-report/payment-report/payment-report.component.scss
index 3af89f636f8..3020e737342 100644
--- a/apps/gauzy/src/app/pages/reports/payment-report/payment-report/payment-report.component.scss
+++ b/apps/gauzy/src/app/pages/reports/payment-report/payment-report/payment-report.component.scss
@@ -1,5 +1,5 @@
-@import 'report';
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-overrides' as *;
+@forward 'report';
:host {
.filters {
diff --git a/apps/gauzy/src/app/pages/reports/payment-report/payment-report/payment-report.component.ts b/apps/gauzy/src/app/pages/reports/payment-report/payment-report/payment-report.component.ts
index eae530f1160..5331e748031 100644
--- a/apps/gauzy/src/app/pages/reports/payment-report/payment-report/payment-report.component.ts
+++ b/apps/gauzy/src/app/pages/reports/payment-report/payment-report/payment-report.component.ts
@@ -26,9 +26,10 @@ import { DateRangePickerBuilderService, PaymentService, Store, TimesheetFilterSe
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-payment-report',
- templateUrl: './payment-report.component.html',
- styleUrls: ['./payment-report.component.scss']
+ selector: 'ga-payment-report',
+ templateUrl: './payment-report.component.html',
+ styleUrls: ['./payment-report.component.scss'],
+ standalone: false
})
export class PaymentReportComponent extends BaseSelectorFilterComponent implements OnInit, AfterViewInit {
public filters: IGetPaymentInput;
diff --git a/apps/gauzy/src/app/pages/reports/project-budgets-report/project-budgets-report/project-budgets-report.component.scss b/apps/gauzy/src/app/pages/reports/project-budgets-report/project-budgets-report/project-budgets-report.component.scss
index 95963eb933d..086a63435f7 100644
--- a/apps/gauzy/src/app/pages/reports/project-budgets-report/project-budgets-report/project-budgets-report.component.scss
+++ b/apps/gauzy/src/app/pages/reports/project-budgets-report/project-budgets-report/project-budgets-report.component.scss
@@ -1,5 +1,5 @@
-@import 'report';
-@import "var";
+@use 'var' as *;
+@forward 'report';
.employees-column {
width: 25%;
@@ -54,4 +54,4 @@
overflow: hidden;
white-space: nowrap;
}
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/reports/project-budgets-report/project-budgets-report/project-budgets-report.component.ts b/apps/gauzy/src/app/pages/reports/project-budgets-report/project-budgets-report/project-budgets-report.component.ts
index 05656972e29..83e1cdbc672 100644
--- a/apps/gauzy/src/app/pages/reports/project-budgets-report/project-budgets-report/project-budgets-report.component.ts
+++ b/apps/gauzy/src/app/pages/reports/project-budgets-report/project-budgets-report/project-budgets-report.component.ts
@@ -18,9 +18,10 @@ import { BaseSelectorFilterComponent, GauzyFiltersComponent, TimeZoneService } f
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-project-budgets-report',
- templateUrl: './project-budgets-report.component.html',
- styleUrls: ['./project-budgets-report.component.scss']
+ selector: 'ga-project-budgets-report',
+ templateUrl: './project-budgets-report.component.html',
+ styleUrls: ['./project-budgets-report.component.scss'],
+ standalone: false
})
export class ProjectBudgetsReportComponent extends BaseSelectorFilterComponent implements OnInit, AfterViewInit {
public loading: boolean = false;
diff --git a/apps/gauzy/src/app/pages/reports/time-limit-report/time-limit-report/time-limit-report.component.scss b/apps/gauzy/src/app/pages/reports/time-limit-report/time-limit-report/time-limit-report.component.scss
index 4eb7f91a335..cc8678c9f3a 100644
--- a/apps/gauzy/src/app/pages/reports/time-limit-report/time-limit-report/time-limit-report.component.scss
+++ b/apps/gauzy/src/app/pages/reports/time-limit-report/time-limit-report/time-limit-report.component.scss
@@ -1,5 +1,5 @@
-@import 'report';
-@import "var";
+@use 'var' as *;
+@forward 'report';
:host {
display: block;
@@ -34,4 +34,4 @@
.activity-column {
width: 30%;
}
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/reports/time-limit-report/time-limit-report/time-limit-report.component.ts b/apps/gauzy/src/app/pages/reports/time-limit-report/time-limit-report/time-limit-report.component.ts
index 6244dd7651f..4447b684480 100644
--- a/apps/gauzy/src/app/pages/reports/time-limit-report/time-limit-report/time-limit-report.component.ts
+++ b/apps/gauzy/src/app/pages/reports/time-limit-report/time-limit-report/time-limit-report.component.ts
@@ -12,9 +12,10 @@ import { BaseSelectorFilterComponent, GauzyFiltersComponent, TimeZoneService } f
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-time-limit-report',
- templateUrl: './time-limit-report.component.html',
- styleUrls: ['./time-limit-report.component.scss']
+ selector: 'ga-time-limit-report',
+ templateUrl: './time-limit-report.component.html',
+ styleUrls: ['./time-limit-report.component.scss'],
+ standalone: false
})
export class TimeLimitReportComponent extends BaseSelectorFilterComponent implements OnInit, AfterViewInit {
filters: ITimeLogFilters;
diff --git a/apps/gauzy/src/app/pages/reports/time-reports/time-reports/time-reports.component.scss b/apps/gauzy/src/app/pages/reports/time-reports/time-reports/time-reports.component.scss
index b60c26ac3df..417b7314cb3 100644
--- a/apps/gauzy/src/app/pages/reports/time-reports/time-reports/time-reports.component.scss
+++ b/apps/gauzy/src/app/pages/reports/time-reports/time-reports/time-reports.component.scss
@@ -1,4 +1,4 @@
-@import "report";
+@forward 'report';
:host ::ng-deep nb-accordion .item-body {
padding-bottom: 0 !important;
diff --git a/apps/gauzy/src/app/pages/reports/time-reports/time-reports/time-reports.component.ts b/apps/gauzy/src/app/pages/reports/time-reports/time-reports/time-reports.component.ts
index 30a325babe3..d1b352f103d 100644
--- a/apps/gauzy/src/app/pages/reports/time-reports/time-reports/time-reports.component.ts
+++ b/apps/gauzy/src/app/pages/reports/time-reports/time-reports/time-reports.component.ts
@@ -23,9 +23,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-time-reports',
- templateUrl: './time-reports.component.html',
- styleUrls: ['./time-reports.component.scss']
+ selector: 'ga-time-reports',
+ templateUrl: './time-reports.component.html',
+ styleUrls: ['./time-reports.component.scss'],
+ standalone: false
})
export class TimeReportsComponent extends BaseSelectorFilterComponent implements OnInit, AfterViewInit, OnDestroy {
public filters: ITimeLogFilters;
diff --git a/apps/gauzy/src/app/pages/reports/weekly-time-reports/weekly-time-reports/weekly-time-reports.component.scss b/apps/gauzy/src/app/pages/reports/weekly-time-reports/weekly-time-reports/weekly-time-reports.component.scss
index 9f825a982fa..1b5a7f02381 100644
--- a/apps/gauzy/src/app/pages/reports/weekly-time-reports/weekly-time-reports/weekly-time-reports.component.scss
+++ b/apps/gauzy/src/app/pages/reports/weekly-time-reports/weekly-time-reports/weekly-time-reports.component.scss
@@ -1,5 +1,5 @@
-@import 'report';
-@import 'themes';
+@use 'themes' as *;
+@use 'report' as *;
:host {
.employee-column {
diff --git a/apps/gauzy/src/app/pages/reports/weekly-time-reports/weekly-time-reports/weekly-time-reports.component.ts b/apps/gauzy/src/app/pages/reports/weekly-time-reports/weekly-time-reports/weekly-time-reports.component.ts
index 409f5344d54..7e8e0ba0780 100644
--- a/apps/gauzy/src/app/pages/reports/weekly-time-reports/weekly-time-reports/weekly-time-reports.component.ts
+++ b/apps/gauzy/src/app/pages/reports/weekly-time-reports/weekly-time-reports/weekly-time-reports.component.ts
@@ -24,9 +24,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-weekly-time-reports',
- templateUrl: './weekly-time-reports.component.html',
- styleUrls: ['./weekly-time-reports.component.scss']
+ selector: 'ga-weekly-time-reports',
+ templateUrl: './weekly-time-reports.component.html',
+ styleUrls: ['./weekly-time-reports.component.scss'],
+ standalone: false
})
export class WeeklyTimeReportsComponent extends BaseSelectorFilterComponent implements OnInit, AfterViewInit {
public filters: ITimeLogFilters;
diff --git a/apps/gauzy/src/app/pages/settings/custom-smtp/custom-smtp.component.scss b/apps/gauzy/src/app/pages/settings/custom-smtp/custom-smtp.component.scss
index c22028f6d3c..276a5a13f98 100644
--- a/apps/gauzy/src/app/pages/settings/custom-smtp/custom-smtp.component.scss
+++ b/apps/gauzy/src/app/pages/settings/custom-smtp/custom-smtp.component.scss
@@ -1 +1 @@
-@import '../feature/feature.component.scss';
\ No newline at end of file
+@forward '../feature/feature.component';
diff --git a/apps/gauzy/src/app/pages/settings/custom-smtp/custom-smtp.component.ts b/apps/gauzy/src/app/pages/settings/custom-smtp/custom-smtp.component.ts
index 31ecf7b70d4..805b3630361 100644
--- a/apps/gauzy/src/app/pages/settings/custom-smtp/custom-smtp.component.ts
+++ b/apps/gauzy/src/app/pages/settings/custom-smtp/custom-smtp.component.ts
@@ -7,9 +7,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-custom-smtp',
- templateUrl: './custom-smtp.component.html',
- styleUrls: ['./custom-smtp.component.scss']
+ selector: 'ga-custom-smtp',
+ templateUrl: './custom-smtp.component.html',
+ styleUrls: ['./custom-smtp.component.scss'],
+ standalone: false
})
export class CustomSmtpComponent extends TranslationBaseComponent implements OnInit {
tabs: NbRouteTab[] = [];
diff --git a/apps/gauzy/src/app/pages/settings/danger-zone/danger-zone.component.ts b/apps/gauzy/src/app/pages/settings/danger-zone/danger-zone.component.ts
index 9e95d2fab37..d232daa7477 100644
--- a/apps/gauzy/src/app/pages/settings/danger-zone/danger-zone.component.ts
+++ b/apps/gauzy/src/app/pages/settings/danger-zone/danger-zone.component.ts
@@ -12,8 +12,9 @@ import { DangerZoneMutationComponent } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-danger-zone',
- templateUrl: './danger-zone.component.html'
+ selector: 'ga-danger-zone',
+ templateUrl: './danger-zone.component.html',
+ standalone: false
})
export class DangerZoneComponent extends TranslationBaseComponent implements OnInit {
environment: Environment = environment;
diff --git a/apps/gauzy/src/app/pages/settings/email-history/email-filters/email-filters.component.ts b/apps/gauzy/src/app/pages/settings/email-history/email-filters/email-filters.component.ts
index bc123e4f2bd..a29c574c028 100644
--- a/apps/gauzy/src/app/pages/settings/email-history/email-filters/email-filters.component.ts
+++ b/apps/gauzy/src/app/pages/settings/email-history/email-filters/email-filters.component.ts
@@ -8,9 +8,10 @@ import { EmailService, EmailTemplateService, Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-email-filters',
- templateUrl: './email-filters.component.html',
- styleUrls: ['./email-filters.component.scss']
+ selector: 'ngx-email-filters',
+ templateUrl: './email-filters.component.html',
+ styleUrls: ['./email-filters.component.scss'],
+ standalone: false
})
export class EmailFiltersComponent implements OnInit, OnDestroy {
constructor(
diff --git a/apps/gauzy/src/app/pages/settings/email-history/email-history.component.scss b/apps/gauzy/src/app/pages/settings/email-history/email-history.component.scss
index 504233e83aa..160ed38394e 100644
--- a/apps/gauzy/src/app/pages/settings/email-history/email-history.component.scss
+++ b/apps/gauzy/src/app/pages/settings/email-history/email-history.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
@include nb-install-component {
nb-card {
diff --git a/apps/gauzy/src/app/pages/settings/email-history/email-history.component.ts b/apps/gauzy/src/app/pages/settings/email-history/email-history.component.ts
index acfff80040c..e7e57640e01 100644
--- a/apps/gauzy/src/app/pages/settings/email-history/email-history.component.ts
+++ b/apps/gauzy/src/app/pages/settings/email-history/email-history.component.ts
@@ -19,9 +19,10 @@ import { EmailService, EmployeesService, OrganizationContactService, Store, Toas
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-email-history',
- templateUrl: './email-history.component.html',
- styleUrls: ['./email-history.component.scss']
+ selector: 'ngx-email-history',
+ templateUrl: './email-history.component.html',
+ styleUrls: ['./email-history.component.scss'],
+ standalone: false
})
export class EmailHistoryComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
loading: boolean = false;
diff --git a/apps/gauzy/src/app/pages/settings/feature/feature.component.scss b/apps/gauzy/src/app/pages/settings/feature/feature.component.scss
index fedc418c15c..46c0a090c44 100644
--- a/apps/gauzy/src/app/pages/settings/feature/feature.component.scss
+++ b/apps/gauzy/src/app/pages/settings/feature/feature.component.scss
@@ -1,4 +1,4 @@
-@import '../../employees/activity/layout/layout.component.scss';
+@forward '../../employees/activity/layout/layout.component';
.tabset{
padding: 0;
@@ -13,4 +13,4 @@ h4 {
.menu-setting {
font-weight: 400;
}
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/settings/feature/feature.component.ts b/apps/gauzy/src/app/pages/settings/feature/feature.component.ts
index b7bff8a7eda..0c6de30b60b 100644
--- a/apps/gauzy/src/app/pages/settings/feature/feature.component.ts
+++ b/apps/gauzy/src/app/pages/settings/feature/feature.component.ts
@@ -8,9 +8,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-feature',
- templateUrl: './feature.component.html',
- styleUrls: ['./feature.component.scss']
+ selector: 'ngx-feature',
+ templateUrl: './feature.component.html',
+ styleUrls: ['./feature.component.scss'],
+ standalone: false
})
export class FeatureComponent extends TranslationBaseComponent implements OnInit {
public tabs: NbRouteTab[] = [];
diff --git a/apps/gauzy/src/app/pages/settings/file-storage/file-storage.component.scss b/apps/gauzy/src/app/pages/settings/file-storage/file-storage.component.scss
index 437bc3ec820..2e2770f2ee3 100644
--- a/apps/gauzy/src/app/pages/settings/file-storage/file-storage.component.scss
+++ b/apps/gauzy/src/app/pages/settings/file-storage/file-storage.component.scss
@@ -1,4 +1,4 @@
-@import '../sms-gateway/sms-gateway.component.scss';
+@forward '../sms-gateway/sms-gateway.component';
:host {
.label {
diff --git a/apps/gauzy/src/app/pages/settings/file-storage/file-storage.component.ts b/apps/gauzy/src/app/pages/settings/file-storage/file-storage.component.ts
index 6e582057221..ea563190101 100644
--- a/apps/gauzy/src/app/pages/settings/file-storage/file-storage.component.ts
+++ b/apps/gauzy/src/app/pages/settings/file-storage/file-storage.component.ts
@@ -21,10 +21,11 @@ import { FileStorageService, TenantService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-file-storage',
- templateUrl: './file-storage.component.html',
- styleUrls: ['./file-storage.component.scss'],
- providers: [FileStorageService, TenantService]
+ selector: 'ga-file-storage',
+ templateUrl: './file-storage.component.html',
+ styleUrls: ['./file-storage.component.scss'],
+ providers: [FileStorageService, TenantService],
+ standalone: false
})
export class FileStorageComponent extends TranslationBaseComponent implements OnInit {
secureOptions = [
diff --git a/apps/gauzy/src/app/pages/settings/general-setting/general-setting.component.ts b/apps/gauzy/src/app/pages/settings/general-setting/general-setting.component.ts
index 225db34e821..99916fd06e7 100644
--- a/apps/gauzy/src/app/pages/settings/general-setting/general-setting.component.ts
+++ b/apps/gauzy/src/app/pages/settings/general-setting/general-setting.component.ts
@@ -1,9 +1,10 @@
import { Component, OnInit } from '@angular/core';
@Component({
- selector: 'ga-general-settings',
- templateUrl: './general-setting.component.html',
- styleUrls: ['./general-setting.component.css']
+ selector: 'ga-general-settings',
+ templateUrl: './general-setting.component.html',
+ styleUrls: ['./general-setting.component.css'],
+ standalone: false
})
export class GeneralSettingComponent implements OnInit {
constructor() { }
diff --git a/apps/gauzy/src/app/pages/settings/roles-permissions/roles-permissions.component.scss b/apps/gauzy/src/app/pages/settings/roles-permissions/roles-permissions.component.scss
index c92aaf532a2..cc3e0aeecb7 100644
--- a/apps/gauzy/src/app/pages/settings/roles-permissions/roles-permissions.component.scss
+++ b/apps/gauzy/src/app/pages/settings/roles-permissions/roles-permissions.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/gauzy-table';
+@use 'gauzy/gauzy-table' as *;
.main-form {
width: 100%;
diff --git a/apps/gauzy/src/app/pages/settings/roles-permissions/roles-permissions.component.ts b/apps/gauzy/src/app/pages/settings/roles-permissions/roles-permissions.component.ts
index e71a64cb86b..8000231e6f5 100644
--- a/apps/gauzy/src/app/pages/settings/roles-permissions/roles-permissions.component.ts
+++ b/apps/gauzy/src/app/pages/settings/roles-permissions/roles-permissions.component.ts
@@ -12,9 +12,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-org-roles-permissions',
- templateUrl: './roles-permissions.component.html',
- styleUrls: ['./roles-permissions.component.scss']
+ selector: 'ga-org-roles-permissions',
+ templateUrl: './roles-permissions.component.html',
+ styleUrls: ['./roles-permissions.component.scss'],
+ standalone: false
})
export class RolesPermissionsComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
rolesEnum = RolesEnum;
diff --git a/apps/gauzy/src/app/pages/settings/settings.component.ts b/apps/gauzy/src/app/pages/settings/settings.component.ts
index 62d9b1a36bf..154d7213364 100644
--- a/apps/gauzy/src/app/pages/settings/settings.component.ts
+++ b/apps/gauzy/src/app/pages/settings/settings.component.ts
@@ -1,8 +1,9 @@
import { Component, OnDestroy, OnInit } from '@angular/core';
@Component({
- selector: 'ngx-settings',
- templateUrl: './settings.component.html'
+ selector: 'ngx-settings',
+ templateUrl: './settings.component.html',
+ standalone: false
})
export class SettingsComponent implements OnInit, OnDestroy {
constructor() {}
diff --git a/apps/gauzy/src/app/pages/settings/sms-gateway/sms-gateway.component.scss b/apps/gauzy/src/app/pages/settings/sms-gateway/sms-gateway.component.scss
index 80c828f5c90..469fd85b9b3 100644
--- a/apps/gauzy/src/app/pages/settings/sms-gateway/sms-gateway.component.scss
+++ b/apps/gauzy/src/app/pages/settings/sms-gateway/sms-gateway.component.scss
@@ -1,7 +1,6 @@
-@import '../feature/feature.component.scss';
+@forward '../feature/feature.component';
:host {
-
nb-card,
nb-card-body {
background-color: nb-theme(gauzy-card-2);
@@ -17,4 +16,4 @@
nb-card-body {
border-radius: 0 0 nb-theme(border-radius) nb-theme(border-radius);
}
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/settings/sms-gateway/sms-gateway.component.ts b/apps/gauzy/src/app/pages/settings/sms-gateway/sms-gateway.component.ts
index 6432c5ae5e8..7c4d03b9d03 100644
--- a/apps/gauzy/src/app/pages/settings/sms-gateway/sms-gateway.component.ts
+++ b/apps/gauzy/src/app/pages/settings/sms-gateway/sms-gateway.component.ts
@@ -2,9 +2,10 @@ import { Component, OnInit } from '@angular/core';
import { SMSProviderEnum } from '@gauzy/contracts';
@Component({
- selector: 'ga-sms-gateway',
- templateUrl: './sms-gateway.component.html',
- styleUrls: ['./sms-gateway.component.scss']
+ selector: 'ga-sms-gateway',
+ templateUrl: './sms-gateway.component.html',
+ styleUrls: ['./sms-gateway.component.scss'],
+ standalone: false
})
export class SmsGatewayComponent implements OnInit {
smsProviders: string[] = Object.values(SMSProviderEnum);
diff --git a/apps/gauzy/src/app/pages/tags/tags-color/tags-color.component.ts b/apps/gauzy/src/app/pages/tags/tags-color/tags-color.component.ts
index 8828857bc98..407e551f260 100644
--- a/apps/gauzy/src/app/pages/tags/tags-color/tags-color.component.ts
+++ b/apps/gauzy/src/app/pages/tags/tags-color/tags-color.component.ts
@@ -2,9 +2,10 @@ import { Component, Input } from '@angular/core';
import { NotesWithTagsComponent } from '@gauzy/ui-core/shared';
@Component({
- selector: 'ngx-tags-color',
- templateUrl: './tags-color.component.html',
- styleUrls: ['./tags-color.component.scss']
+ selector: 'ngx-tags-color',
+ templateUrl: './tags-color.component.html',
+ styleUrls: ['./tags-color.component.scss'],
+ standalone: false
})
export class TagsColorComponent extends NotesWithTagsComponent {
@Input() value: string | number;
diff --git a/apps/gauzy/src/app/pages/tags/tags.component.scss b/apps/gauzy/src/app/pages/tags/tags.component.scss
index dac7e4c084e..660b3f3953f 100644
--- a/apps/gauzy/src/app/pages/tags/tags.component.scss
+++ b/apps/gauzy/src/app/pages/tags/tags.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-table.scss';
-@import 'gauzy/_gauzy-cards.scss';
+@use 'gauzy/_gauzy-cards' as *;
+@use 'gauzy/_gauzy-table' as *;
:host .search {
margin: 20px 0 0 0;
diff --git a/apps/gauzy/src/app/pages/tags/tags.component.ts b/apps/gauzy/src/app/pages/tags/tags.component.ts
index 9d2dfc81a4f..d60ae5386bc 100644
--- a/apps/gauzy/src/app/pages/tags/tags.component.ts
+++ b/apps/gauzy/src/app/pages/tags/tags.component.ts
@@ -19,9 +19,10 @@ import { TagsColorComponent } from './tags-color/tags-color.component';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-tags',
- templateUrl: './tags.component.html',
- styleUrls: ['./tags.component.scss']
+ selector: 'ngx-tags',
+ templateUrl: './tags.component.html',
+ styleUrls: ['./tags.component.scss'],
+ standalone: false
})
export class TagsComponent extends PaginationFilterBaseComponent implements AfterViewInit, OnInit, OnDestroy {
settingsSmartTable: object;
diff --git a/apps/gauzy/src/app/pages/tasks/components/my-task-dialog/my-task-dialog.component.scss b/apps/gauzy/src/app/pages/tasks/components/my-task-dialog/my-task-dialog.component.scss
index c3e5db202e1..14a7b1fa0f6 100644
--- a/apps/gauzy/src/app/pages/tasks/components/my-task-dialog/my-task-dialog.component.scss
+++ b/apps/gauzy/src/app/pages/tasks/components/my-task-dialog/my-task-dialog.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_add-task-dialog';
+@forward '@shared/_add-task-dialog';
.body {
width: 550px;
diff --git a/apps/gauzy/src/app/pages/tasks/components/my-task-dialog/my-task-dialog.component.ts b/apps/gauzy/src/app/pages/tasks/components/my-task-dialog/my-task-dialog.component.ts
index b671e0e4254..8c6805a4f48 100644
--- a/apps/gauzy/src/app/pages/tasks/components/my-task-dialog/my-task-dialog.component.ts
+++ b/apps/gauzy/src/app/pages/tasks/components/my-task-dialog/my-task-dialog.component.ts
@@ -29,9 +29,10 @@ const initialTaskValue = {
};
@Component({
- selector: 'ngx-my-task-dialog',
- templateUrl: './my-task-dialog.component.html',
- styleUrls: ['./my-task-dialog.component.scss']
+ selector: 'ngx-my-task-dialog',
+ templateUrl: './my-task-dialog.component.html',
+ styleUrls: ['./my-task-dialog.component.scss'],
+ standalone: false
})
export class MyTaskDialogComponent extends TranslationBaseComponent implements OnInit {
selectedTaskId: string;
diff --git a/apps/gauzy/src/app/pages/tasks/components/task/task-settings/project-view/project-view.component.ts b/apps/gauzy/src/app/pages/tasks/components/task/task-settings/project-view/project-view.component.ts
index e2eb76f07be..6be14f47c1d 100644
--- a/apps/gauzy/src/app/pages/tasks/components/task/task-settings/project-view/project-view.component.ts
+++ b/apps/gauzy/src/app/pages/tasks/components/task/task-settings/project-view/project-view.component.ts
@@ -9,9 +9,10 @@ export interface TaskViewMode {
}
@Component({
- selector: 'ngx-project-view',
- templateUrl: './project-view.component.html',
- styleUrls: ['./project-view.component.scss']
+ selector: 'ngx-project-view',
+ templateUrl: './project-view.component.html',
+ styleUrls: ['./project-view.component.scss'],
+ standalone: false
})
export class ProjectViewComponent implements OnInit {
@Input() project: IOrganizationProject;
diff --git a/apps/gauzy/src/app/pages/tasks/components/task/task-settings/task-settings.component.ts b/apps/gauzy/src/app/pages/tasks/components/task/task-settings/task-settings.component.ts
index 0373dbaca54..d8c9a70a0e8 100644
--- a/apps/gauzy/src/app/pages/tasks/components/task/task-settings/task-settings.component.ts
+++ b/apps/gauzy/src/app/pages/tasks/components/task/task-settings/task-settings.component.ts
@@ -8,9 +8,10 @@ import { Store, TasksService, TasksStoreService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-task-settings',
- templateUrl: './task-settings.component.html',
- styleUrls: ['./task-settings.component.scss']
+ selector: 'ngx-task-settings',
+ templateUrl: './task-settings.component.html',
+ styleUrls: ['./task-settings.component.scss'],
+ standalone: false
})
export class TaskSettingsComponent {
projects$: Observable
;
diff --git a/apps/gauzy/src/app/pages/tasks/components/task/task.component.scss b/apps/gauzy/src/app/pages/tasks/components/task/task.component.scss
index 5e624dea674..868a4965050 100644
--- a/apps/gauzy/src/app/pages/tasks/components/task/task.component.scss
+++ b/apps/gauzy/src/app/pages/tasks/components/task/task.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_pg-card';
+@use '@shared/_pg-card' as *;
.tasks-component {
&__settings {
diff --git a/apps/gauzy/src/app/pages/tasks/components/task/task.component.ts b/apps/gauzy/src/app/pages/tasks/components/task/task.component.ts
index ae961872b19..fe043c4c6f5 100644
--- a/apps/gauzy/src/app/pages/tasks/components/task/task.component.ts
+++ b/apps/gauzy/src/app/pages/tasks/components/task/task.component.ts
@@ -50,9 +50,10 @@ import { TeamTaskDialogComponent } from '../team-task-dialog/team-task-dialog.co
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-tasks',
- templateUrl: './task.component.html',
- styleUrls: ['task.component.scss']
+ selector: 'ngx-tasks',
+ templateUrl: './task.component.html',
+ styleUrls: ['task.component.scss'],
+ standalone: false
})
export class TaskComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
private _refresh$: Subject = new Subject();
diff --git a/apps/gauzy/src/app/pages/tasks/components/task/tasks-layouts/tasks-sprint-view/task/task.component.ts b/apps/gauzy/src/app/pages/tasks/components/task/tasks-layouts/tasks-sprint-view/task/task.component.ts
index f87aa432df0..f163af286da 100644
--- a/apps/gauzy/src/app/pages/tasks/components/task/tasks-layouts/tasks-sprint-view/task/task.component.ts
+++ b/apps/gauzy/src/app/pages/tasks/components/task/tasks-layouts/tasks-sprint-view/task/task.component.ts
@@ -20,9 +20,10 @@ import { Store, TaskStatusesService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-sprint-task',
- templateUrl: './task.component.html',
- styleUrls: ['./task.component.scss']
+ selector: 'ga-sprint-task',
+ templateUrl: './task.component.html',
+ styleUrls: ['./task.component.scss'],
+ standalone: false
})
export class SprintTaskComponent extends TranslationBaseComponent implements OnInit, AfterViewInit, OnDestroy {
private onDestroy$ = new Subject();
diff --git a/apps/gauzy/src/app/pages/tasks/components/task/tasks-layouts/tasks-sprint-view/tasks-sprint-view.component.ts b/apps/gauzy/src/app/pages/tasks/components/task/tasks-layouts/tasks-sprint-view/tasks-sprint-view.component.ts
index bca2b6363dd..a854925e56a 100644
--- a/apps/gauzy/src/app/pages/tasks/components/task/tasks-layouts/tasks-sprint-view/tasks-sprint-view.component.ts
+++ b/apps/gauzy/src/app/pages/tasks/components/task/tasks-layouts/tasks-sprint-view/tasks-sprint-view.component.ts
@@ -11,9 +11,10 @@ import { GauzyEditableGridComponent } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-tasks-sprint-view',
- templateUrl: './tasks-sprint-view.component.html',
- styleUrls: ['./tasks-sprint-view.component.scss']
+ selector: 'ga-tasks-sprint-view',
+ templateUrl: './tasks-sprint-view.component.html',
+ styleUrls: ['./tasks-sprint-view.component.scss'],
+ standalone: false
})
export class TasksSprintViewComponent extends GauzyEditableGridComponent implements OnInit, OnChanges {
sprints: IOrganizationSprint[] = [];
diff --git a/apps/gauzy/src/app/pages/tasks/components/team-task-dialog/team-task-dialog.component.scss b/apps/gauzy/src/app/pages/tasks/components/team-task-dialog/team-task-dialog.component.scss
index e7e0aa3d74c..4ef3aecb8b4 100644
--- a/apps/gauzy/src/app/pages/tasks/components/team-task-dialog/team-task-dialog.component.scss
+++ b/apps/gauzy/src/app/pages/tasks/components/team-task-dialog/team-task-dialog.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_add-task-dialog';
+@forward '@shared/_add-task-dialog';
.body {
width: 550px;
diff --git a/apps/gauzy/src/app/pages/tasks/components/team-task-dialog/team-task-dialog.component.ts b/apps/gauzy/src/app/pages/tasks/components/team-task-dialog/team-task-dialog.component.ts
index 73beca97924..7f009407c92 100644
--- a/apps/gauzy/src/app/pages/tasks/components/team-task-dialog/team-task-dialog.component.ts
+++ b/apps/gauzy/src/app/pages/tasks/components/team-task-dialog/team-task-dialog.component.ts
@@ -43,9 +43,10 @@ const initialTaskValue = {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-team-task-dialog',
- templateUrl: './team-task-dialog.component.html',
- styleUrls: ['./team-task-dialog.component.scss']
+ selector: 'ngx-team-task-dialog',
+ templateUrl: './team-task-dialog.component.html',
+ styleUrls: ['./team-task-dialog.component.scss'],
+ standalone: false
})
export class TeamTaskDialogComponent extends TranslationBaseComponent implements OnInit {
selectedTaskId: string;
diff --git a/apps/gauzy/src/app/pages/teams/teams-mutation/teams-mutation.component.scss b/apps/gauzy/src/app/pages/teams/teams-mutation/teams-mutation.component.scss
index 64b04cffbad..9eb97c23635 100644
--- a/apps/gauzy/src/app/pages/teams/teams-mutation/teams-mutation.component.scss
+++ b/apps/gauzy/src/app/pages/teams/teams-mutation/teams-mutation.component.scss
@@ -1,4 +1,4 @@
-@import 'apps/gauzy/src/app/pages/expenses/expense-categories/expense-categories.component.scss';
+@forward '../../expenses/expense-categories/expense-categories.component';
.team-photo {
width: fit-content;
diff --git a/apps/gauzy/src/app/pages/teams/teams-mutation/teams-mutation.component.ts b/apps/gauzy/src/app/pages/teams/teams-mutation/teams-mutation.component.ts
index d70ce4242d3..7a8c02e9c0b 100644
--- a/apps/gauzy/src/app/pages/teams/teams-mutation/teams-mutation.component.ts
+++ b/apps/gauzy/src/app/pages/teams/teams-mutation/teams-mutation.component.ts
@@ -16,9 +16,10 @@ import { Store, ToastrService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-teams-mutation',
- templateUrl: './teams-mutation.component.html',
- styleUrls: ['./teams-mutation.component.scss']
+ selector: 'ga-teams-mutation',
+ templateUrl: './teams-mutation.component.html',
+ styleUrls: ['./teams-mutation.component.scss'],
+ standalone: false
})
export class TeamsMutationComponent implements OnInit {
@Input() employees: IEmployee[] = [];
diff --git a/apps/gauzy/src/app/pages/teams/teams.component.scss b/apps/gauzy/src/app/pages/teams/teams.component.scss
index df91f07792a..5ac39261bb7 100644
--- a/apps/gauzy/src/app/pages/teams/teams.component.scss
+++ b/apps/gauzy/src/app/pages/teams/teams.component.scss
@@ -1 +1 @@
-@import '@shared/_pg-card';
+@forward '@shared/_pg-card';
diff --git a/apps/gauzy/src/app/pages/teams/teams.component.ts b/apps/gauzy/src/app/pages/teams/teams.component.ts
index 19a5f3d7be4..1aa133de83a 100644
--- a/apps/gauzy/src/app/pages/teams/teams.component.ts
+++ b/apps/gauzy/src/app/pages/teams/teams.component.ts
@@ -40,9 +40,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-teams',
- templateUrl: './teams.component.html',
- styleUrls: ['./teams.component.scss']
+ selector: 'ga-teams',
+ templateUrl: './teams.component.html',
+ styleUrls: ['./teams.component.scss'],
+ standalone: false
})
export class TeamsComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
@ViewChild('addEditTemplate')
diff --git a/apps/gauzy/src/app/pages/time-off/table-components/paid-icon.scss b/apps/gauzy/src/app/pages/time-off/table-components/paid-icon.scss
index ef52caca86c..698f9ef7782 100644
--- a/apps/gauzy/src/app/pages/time-off/table-components/paid-icon.scss
+++ b/apps/gauzy/src/app/pages/time-off/table-components/paid-icon.scss
@@ -1 +1 @@
-@import './request-approval-icon.scss'
+@forward './request-approval-icon'
diff --git a/apps/gauzy/src/app/pages/time-off/table-components/paid-icon.ts b/apps/gauzy/src/app/pages/time-off/table-components/paid-icon.ts
index bcc6fdd05d6..b0a52b90d22 100644
--- a/apps/gauzy/src/app/pages/time-off/table-components/paid-icon.ts
+++ b/apps/gauzy/src/app/pages/time-off/table-components/paid-icon.ts
@@ -1,8 +1,9 @@
import { Component, Input } from '@angular/core';
@Component({
- templateUrl: './paid-icon.html',
- styleUrls: ['./paid-icon.scss']
+ templateUrl: './paid-icon.html',
+ styleUrls: ['./paid-icon.scss'],
+ standalone: false
})
export class PaidIcon {
@Input()
diff --git a/apps/gauzy/src/app/pages/time-off/table-components/request-approval-icon.scss b/apps/gauzy/src/app/pages/time-off/table-components/request-approval-icon.scss
index 40351b41fe9..67daa47bb16 100644
--- a/apps/gauzy/src/app/pages/time-off/table-components/request-approval-icon.scss
+++ b/apps/gauzy/src/app/pages/time-off/table-components/request-approval-icon.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
.center {
height: auto;
diff --git a/apps/gauzy/src/app/pages/time-off/table-components/request-approval-icon.ts b/apps/gauzy/src/app/pages/time-off/table-components/request-approval-icon.ts
index b951d4304d3..3b735975453 100644
--- a/apps/gauzy/src/app/pages/time-off/table-components/request-approval-icon.ts
+++ b/apps/gauzy/src/app/pages/time-off/table-components/request-approval-icon.ts
@@ -1,8 +1,9 @@
import { Component, Input } from '@angular/core';
@Component({
- templateUrl: './request-approval-icon.html',
- styleUrls: ['./request-approval-icon.scss']
+ templateUrl: './request-approval-icon.html',
+ styleUrls: ['./request-approval-icon.scss'],
+ standalone: false
})
export class RequestApprovalIcon {
@Input() rowData: any;
diff --git a/apps/gauzy/src/app/pages/time-off/time-off-settings/time-off-settings.component.scss b/apps/gauzy/src/app/pages/time-off/time-off-settings/time-off-settings.component.scss
index f64d0c0e1eb..5ac39261bb7 100644
--- a/apps/gauzy/src/app/pages/time-off/time-off-settings/time-off-settings.component.scss
+++ b/apps/gauzy/src/app/pages/time-off/time-off-settings/time-off-settings.component.scss
@@ -1 +1 @@
-@import '@shared/_pg-card.scss';
+@forward '@shared/_pg-card';
diff --git a/apps/gauzy/src/app/pages/time-off/time-off-settings/time-off-settings.component.ts b/apps/gauzy/src/app/pages/time-off/time-off-settings/time-off-settings.component.ts
index 6b347e3f159..a1ed9cb98e7 100644
--- a/apps/gauzy/src/app/pages/time-off/time-off-settings/time-off-settings.component.ts
+++ b/apps/gauzy/src/app/pages/time-off/time-off-settings/time-off-settings.component.ts
@@ -20,9 +20,10 @@ import { PaidIcon, RequestApprovalIcon } from '../table-components';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-time-off-policy-list',
- templateUrl: './time-off-settings.component.html',
- styleUrls: ['./time-off-settings.component.scss']
+ selector: 'ga-time-off-policy-list',
+ templateUrl: './time-off-settings.component.html',
+ styleUrls: ['./time-off-settings.component.scss'],
+ standalone: false
})
export class TimeOffSettingsComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
public smartTableSettings: object;
diff --git a/apps/gauzy/src/app/pages/time-off/time-off.component.scss b/apps/gauzy/src/app/pages/time-off/time-off.component.scss
index 4e76a145bfe..281ea4756dd 100644
--- a/apps/gauzy/src/app/pages/time-off/time-off.component.scss
+++ b/apps/gauzy/src/app/pages/time-off/time-off.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_pg-card';
+@use '@shared/_pg-card' as *;
nb-radio-group {
display: flex;
diff --git a/apps/gauzy/src/app/pages/time-off/time-off.component.ts b/apps/gauzy/src/app/pages/time-off/time-off.component.ts
index 21d74620dbc..540b3fa0f38 100644
--- a/apps/gauzy/src/app/pages/time-off/time-off.component.ts
+++ b/apps/gauzy/src/app/pages/time-off/time-off.component.ts
@@ -43,9 +43,10 @@ import { ApprovalPolicyComponent } from '../approvals/table-components';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-time-off-list',
- templateUrl: './time-off.component.html',
- styleUrls: ['./time-off.component.scss']
+ selector: 'ga-time-off-list',
+ templateUrl: './time-off.component.html',
+ styleUrls: ['./time-off.component.scss'],
+ standalone: false
})
export class TimeOffComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
public settingsSmartTable: object;
diff --git a/apps/gauzy/src/app/pages/users/edit-user-mutation/edit-user-mutation.component.scss b/apps/gauzy/src/app/pages/users/edit-user-mutation/edit-user-mutation.component.scss
index 0f60cfd0ccb..cdc174fc081 100644
--- a/apps/gauzy/src/app/pages/users/edit-user-mutation/edit-user-mutation.component.scss
+++ b/apps/gauzy/src/app/pages/users/edit-user-mutation/edit-user-mutation.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
:host {
nb-card {
@@ -10,4 +10,4 @@
@include nb-rtl(margin-right, 1rem);
}
@include dialog(var(--gauzy-card-2), var(--gauzy-card-1));
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/users/edit-user-mutation/edit-user-mutation.component.ts b/apps/gauzy/src/app/pages/users/edit-user-mutation/edit-user-mutation.component.ts
index 8ba3119e371..af72baff316 100644
--- a/apps/gauzy/src/app/pages/users/edit-user-mutation/edit-user-mutation.component.ts
+++ b/apps/gauzy/src/app/pages/users/edit-user-mutation/edit-user-mutation.component.ts
@@ -7,9 +7,10 @@ import { Store, UsersOrganizationsService } from '@gauzy/ui-core/core';
import { BasicInfoFormComponent } from '@gauzy/ui-core/shared';
@Component({
- selector: 'ga-edit-user-mutation',
- templateUrl: './edit-user-mutation.component.html',
- styleUrls: ['./edit-user-mutation.component.scss']
+ selector: 'ga-edit-user-mutation',
+ templateUrl: './edit-user-mutation.component.html',
+ styleUrls: ['./edit-user-mutation.component.scss'],
+ standalone: false
})
export class EditUserMutationComponent extends TranslationBaseComponent implements OnInit {
@ViewChild('userBasicInfo') userBasicInfo: BasicInfoFormComponent;
diff --git a/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-data/edit-user-data.component.scss b/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-data/edit-user-data.component.scss
index a57a8eef711..e462af59ee3 100644
--- a/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-data/edit-user-data.component.scss
+++ b/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-data/edit-user-data.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host {
ngx-profile ::ng-deep {
@@ -6,4 +6,4 @@
border-radius: 0 nb-theme(border-radius) nb-theme(border-radius) nb-theme(border-radius);
}
}
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-data/edit-user-data.component.ts b/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-data/edit-user-data.component.ts
index 4bc65853844..d310c15bd57 100644
--- a/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-data/edit-user-data.component.ts
+++ b/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-data/edit-user-data.component.ts
@@ -11,9 +11,10 @@ import { UsersService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-edit-user-data',
- templateUrl: './edit-user-data.component.html',
- styleUrls: ['./edit-user-data.component.scss']
+ selector: 'ngx-edit-user-data',
+ templateUrl: './edit-user-data.component.html',
+ styleUrls: ['./edit-user-data.component.scss'],
+ standalone: false
})
export class EditUserDataComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
params: Params;
diff --git a/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-organizations/edit-user-organizations-mutation/edit-user-organizations-mutation.component.ts b/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-organizations/edit-user-organizations-mutation/edit-user-organizations-mutation.component.ts
index ad4c02f61fd..e97984b00c2 100644
--- a/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-organizations/edit-user-organizations-mutation/edit-user-organizations-mutation.component.ts
+++ b/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-organizations/edit-user-organizations-mutation/edit-user-organizations-mutation.component.ts
@@ -6,9 +6,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
import { OrganizationsService, Store, UserIdService, UsersOrganizationsService } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-edit-user-organizations-mutation',
- templateUrl: './edit-user-organizations-mutation.component.html',
- styleUrls: ['../../../edit-user-mutation/edit-user-mutation.component.scss']
+ selector: 'ga-edit-user-organizations-mutation',
+ templateUrl: './edit-user-organizations-mutation.component.html',
+ styleUrls: ['../../../edit-user-mutation/edit-user-mutation.component.scss'],
+ standalone: false
})
export class EditUserOrganizationsMutationComponent extends TranslationBaseComponent implements OnInit {
@Input()
diff --git a/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-organizations/edit-user-organizations.component.scss b/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-organizations/edit-user-organizations.component.scss
index d896b693893..ac6e2ff9ea3 100644
--- a/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-organizations/edit-user-organizations.component.scss
+++ b/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-organizations/edit-user-organizations.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host {
nb-card {
@@ -27,4 +27,4 @@
.edit-user-organizations {
width: 100%;
}
-}
\ No newline at end of file
+}
diff --git a/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-organizations/edit-user-organizations.component.ts b/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-organizations/edit-user-organizations.component.ts
index b96af716b77..21b7b2d9663 100644
--- a/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-organizations/edit-user-organizations.component.ts
+++ b/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-organizations/edit-user-organizations.component.ts
@@ -18,9 +18,10 @@ import { DeleteConfirmationComponent } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-edit-user-organization',
- templateUrl: './edit-user-organizations.component.html',
- styleUrls: ['./edit-user-organizations.component.scss']
+ selector: 'ngx-edit-user-organization',
+ templateUrl: './edit-user-organizations.component.html',
+ styleUrls: ['./edit-user-organizations.component.scss'],
+ standalone: false
})
export class EditUserOrganizationsComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
showAddCard: boolean;
diff --git a/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-profile.component.scss b/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-profile.component.scss
index 8a6ce9f49f9..9b77c25d287 100644
--- a/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-profile.component.scss
+++ b/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-profile.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-overrides';
-@import '@shared/_edit-profile-form';
+@use 'gauzy/_gauzy-overrides' as *;
+@forward '@shared/_edit-profile-form';
:host {
nb-card {
diff --git a/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-profile.component.ts b/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-profile.component.ts
index 706aa35ff6c..43d6989eda2 100644
--- a/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-profile.component.ts
+++ b/apps/gauzy/src/app/pages/users/edit-user-profile/edit-user-profile.component.ts
@@ -11,9 +11,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-edit-user-profile',
- templateUrl: './edit-user-profile.component.html',
- styleUrls: ['./edit-user-profile.component.scss']
+ selector: 'ngx-edit-user-profile',
+ templateUrl: './edit-user-profile.component.html',
+ styleUrls: ['./edit-user-profile.component.scss'],
+ standalone: false
})
export class EditUserProfileComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
form: FormGroup;
diff --git a/apps/gauzy/src/app/pages/users/manage-user-invite/manage-user-invite.component.ts b/apps/gauzy/src/app/pages/users/manage-user-invite/manage-user-invite.component.ts
index 06d43e96564..503ad75c089 100644
--- a/apps/gauzy/src/app/pages/users/manage-user-invite/manage-user-invite.component.ts
+++ b/apps/gauzy/src/app/pages/users/manage-user-invite/manage-user-invite.component.ts
@@ -2,8 +2,9 @@ import { Component } from '@angular/core';
import { InvitationTypeEnum } from '@gauzy/contracts';
@Component({
- selector: 'ga-manage-user-invite',
- templateUrl: './manage-user-invite.component.html'
+ selector: 'ga-manage-user-invite',
+ templateUrl: './manage-user-invite.component.html',
+ standalone: false
})
export class ManageUserInviteComponent {
diff --git a/apps/gauzy/src/app/pages/users/users.component.scss b/apps/gauzy/src/app/pages/users/users.component.scss
index 54eeccf9cb4..9e929c85a3d 100644
--- a/apps/gauzy/src/app/pages/users/users.component.scss
+++ b/apps/gauzy/src/app/pages/users/users.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_pg-card';
+@use '@shared/_pg-card' as *;
:host {
nb-card-body {
diff --git a/apps/gauzy/src/app/pages/users/users.component.ts b/apps/gauzy/src/app/pages/users/users.component.ts
index fc620bb9766..74cdbf5cfba 100644
--- a/apps/gauzy/src/app/pages/users/users.component.ts
+++ b/apps/gauzy/src/app/pages/users/users.component.ts
@@ -45,8 +45,9 @@ import { EmployeeWorkStatusComponent } from '../employees/table-components';
@UntilDestroy({ checkProperties: true })
@Component({
- templateUrl: './users.component.html',
- styleUrls: ['./users.component.scss']
+ templateUrl: './users.component.html',
+ styleUrls: ['./users.component.scss'],
+ standalone: false
})
export class UsersComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
public PermissionsEnum = PermissionsEnum;
diff --git a/apps/gauzy/src/app/pages/vendors/vendors.component.scss b/apps/gauzy/src/app/pages/vendors/vendors.component.scss
index 0903904fd3c..50a5ad789ae 100644
--- a/apps/gauzy/src/app/pages/vendors/vendors.component.scss
+++ b/apps/gauzy/src/app/pages/vendors/vendors.component.scss
@@ -1,4 +1,5 @@
-@import 'apps/gauzy/src/app/pages/expenses/expense-categories/expense-categories.component.scss';
+@use 'gauzy/_gauzy-cards' as *;
+@forward '../expenses/expense-categories/expense-categories.component';
.editable {
width: 525px;
diff --git a/apps/gauzy/src/app/pages/vendors/vendors.component.ts b/apps/gauzy/src/app/pages/vendors/vendors.component.ts
index ca3bfa90096..7246d848ce1 100644
--- a/apps/gauzy/src/app/pages/vendors/vendors.component.ts
+++ b/apps/gauzy/src/app/pages/vendors/vendors.component.ts
@@ -29,9 +29,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-vendors',
- templateUrl: './vendors.component.html',
- styleUrls: ['vendors.component.scss']
+ selector: 'ga-vendors',
+ templateUrl: './vendors.component.html',
+ styleUrls: ['vendors.component.scss'],
+ standalone: false
})
export class VendorsComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
public addEditDialogRef: NbDialogRef;
diff --git a/apps/server-api/package.json b/apps/server-api/package.json
index 3e38e6eec8e..bea4eb25582 100644
--- a/apps/server-api/package.json
+++ b/apps/server-api/package.json
@@ -33,27 +33,27 @@
"terser-webpack-plugin": "^5.3.10"
},
"dependencies": {
- "@angular/animations": "18.2.12",
- "@angular/cdk": "18.2.14",
- "@angular/common": "18.2.12",
- "@angular/core": "18.2.12",
- "@angular/forms": "18.2.12",
- "@angular/material": "18.2.14",
- "@angular/router": "18.2.12",
+ "@angular/animations": "19.2.7",
+ "@angular/cdk": "19.2.7",
+ "@angular/common": "19.2.7",
+ "@angular/core": "19.2.7",
+ "@angular/forms": "19.2.7",
+ "@angular/material": "19.2.7",
+ "@angular/router": "19.2.7",
"@datorama/akita": "^8.0.1",
"@datorama/akita-ngdevtools": "^7.0.0",
"@electron/remote": "^2.0.8",
"@grpc/grpc-js": "^1.6.7",
- "@nebular/auth": "^14.0.2",
+ "@nebular/auth": "^15.0.0",
"@nebular/bootstrap": "^9.1.0-rc.6",
- "@nebular/eva-icons": "^14.0.2",
- "@nebular/security": "^14.0.2",
- "@nebular/theme": "^14.0.2",
+ "@nebular/eva-icons": "^15.0.0",
+ "@nebular/security": "^15.0.0",
+ "@nebular/theme": "^15.0.0",
"@nestjs/typeorm": "^10.0.2",
- "@ng-select/ng-select": "^13.9.0",
+ "@ng-select/ng-select": "^14.2.2",
"@ngneat/until-destroy": "^10.0.0",
- "@ngx-translate/core": "^16.0.3",
- "@ngx-translate/http-loader": "^16.0.0",
+ "@ngx-translate/core": "^16.0.4",
+ "@ngx-translate/http-loader": "^16.0.1",
"@sentry/angular-ivy": "^7.101.1",
"@sentry/electron": "^4.18.0",
"@sentry/node": "^7.101.1",
diff --git a/apps/server-api/src/app/app.component.ts b/apps/server-api/src/app/app.component.ts
index ffd269e9cd5..a0114cbe066 100644
--- a/apps/server-api/src/app/app.component.ts
+++ b/apps/server-api/src/app/app.component.ts
@@ -2,8 +2,9 @@ import { Component, OnInit } from '@angular/core';
import { LanguageElectronService } from '@gauzy/desktop-ui-lib';
@Component({
- selector: 'gauzy-root',
- template: ''
+ selector: 'gauzy-root',
+ template: '',
+ standalone: false
})
export class AppComponent implements OnInit {
constructor(private readonly languageElectronService: LanguageElectronService) {}
diff --git a/apps/server-api/src/app/app.module.ts b/apps/server-api/src/app/app.module.ts
index 57a3d3e0d15..f442b8fe8d1 100644
--- a/apps/server-api/src/app/app.module.ts
+++ b/apps/server-api/src/app/app.module.ts
@@ -1,5 +1,5 @@
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
-import { APP_INITIALIZER, ErrorHandler, NgModule } from '@angular/core';
+import { ErrorHandler, NgModule, inject, provideAppInitializer } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { Router, RouterModule } from '@angular/router';
@@ -65,7 +65,9 @@ if (environment.SENTRY_DSN) {
UpdaterModule,
ServerDashboardModule,
AboutModule,
- LanguageModule.forRoot()], providers: [
+ LanguageModule.forRoot()
+ ],
+ providers: [
AppService,
NbDialogService,
ElectronService,
@@ -80,12 +82,10 @@ if (environment.SENTRY_DSN) {
provide: Sentry.TraceService,
deps: [Router]
},
- {
- provide: APP_INITIALIZER,
- useFactory: () => () => { },
- deps: [Sentry.TraceService],
- multi: true
- },
+ provideAppInitializer(() => {
+ const initializerFn = ((trace: Sentry.TraceService) => () => { })(inject(Sentry.TraceService));
+ return initializerFn();
+ }),
{
provide: GAUZY_ENV,
useValue: {
diff --git a/apps/server-api/src/assets/styles/material/_angular-material.scss b/apps/server-api/src/assets/styles/material/_angular-material.scss
index cb09eedb304..9a7f807606e 100644
--- a/apps/server-api/src/assets/styles/material/_angular-material.scss
+++ b/apps/server-api/src/assets/styles/material/_angular-material.scss
@@ -1,7 +1,8 @@
@use '@angular/material' as mat;
@mixin angular-material() {
- @include mat.core();
+ @include mat.elevation-classes();
+ @include mat.app-background();
@include nb-for-theme(material-dark) {
$custom-dark-theme: mat.m2-define-dark-theme(
diff --git a/apps/server-api/src/package.json b/apps/server-api/src/package.json
old mode 100755
new mode 100644
diff --git a/apps/server/package.json b/apps/server/package.json
index 06b06943727..9dbf644660f 100644
--- a/apps/server/package.json
+++ b/apps/server/package.json
@@ -30,27 +30,27 @@
"terser-webpack-plugin": "^5.3.10"
},
"dependencies": {
- "@angular/animations": "18.2.12",
- "@angular/cdk": "18.2.14",
- "@angular/common": "18.2.12",
- "@angular/core": "18.2.12",
- "@angular/forms": "18.2.12",
- "@angular/material": "18.2.14",
- "@angular/router": "18.2.12",
+ "@angular/animations": "19.2.7",
+ "@angular/cdk": "19.2.7",
+ "@angular/common": "19.2.7",
+ "@angular/core": "19.2.7",
+ "@angular/forms": "19.2.7",
+ "@angular/material": "19.2.7",
+ "@angular/router": "19.2.7",
"@datorama/akita": "^8.0.1",
"@datorama/akita-ngdevtools": "^7.0.0",
"@electron/remote": "^2.0.8",
"@grpc/grpc-js": "^1.6.7",
- "@nebular/auth": "^14.0.2",
+ "@nebular/auth": "^15.0.0",
"@nebular/bootstrap": "^9.1.0-rc.6",
- "@nebular/eva-icons": "^14.0.2",
- "@nebular/security": "^14.0.2",
- "@nebular/theme": "^14.0.2",
+ "@nebular/eva-icons": "^15.0.0",
+ "@nebular/security": "^15.0.0",
+ "@nebular/theme": "^15.0.0",
"@nestjs/typeorm": "^10.0.2",
- "@ng-select/ng-select": "^13.9.0",
+ "@ng-select/ng-select": "^14.2.2",
"@ngneat/until-destroy": "^10.0.0",
- "@ngx-translate/core": "^16.0.3",
- "@ngx-translate/http-loader": "^16.0.0",
+ "@ngx-translate/core": "^16.0.4",
+ "@ngx-translate/http-loader": "^16.0.1",
"@sentry/angular-ivy": "^7.101.1",
"@sentry/electron": "^4.18.0",
"@sentry/node": "^7.101.1",
diff --git a/apps/server/src/app/app.component.ts b/apps/server/src/app/app.component.ts
index 64404008407..fa0a8eab4e1 100644
--- a/apps/server/src/app/app.component.ts
+++ b/apps/server/src/app/app.component.ts
@@ -2,8 +2,9 @@ import { Component, OnInit } from '@angular/core';
import { LanguageElectronService } from '@gauzy/desktop-ui-lib';
@Component({
- selector: 'gauzy-root',
- template: ''
+ selector: 'gauzy-root',
+ template: '',
+ standalone: false
})
export class AppComponent implements OnInit {
constructor(private readonly languageElectronService: LanguageElectronService) {}
diff --git a/apps/server/src/app/app.module.ts b/apps/server/src/app/app.module.ts
index e1d9f825f92..4941b525153 100644
--- a/apps/server/src/app/app.module.ts
+++ b/apps/server/src/app/app.module.ts
@@ -1,5 +1,5 @@
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
-import { APP_INITIALIZER, ErrorHandler, NgModule } from '@angular/core';
+import { ErrorHandler, NgModule, inject, provideAppInitializer } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { Router, RouterModule } from '@angular/router';
@@ -65,7 +65,9 @@ if (environment.SENTRY_DSN) {
UpdaterModule,
ServerDashboardModule,
AboutModule,
- LanguageModule.forRoot()], providers: [
+ LanguageModule.forRoot()
+ ],
+ providers: [
AppService,
NbDialogService,
ElectronService,
@@ -80,12 +82,10 @@ if (environment.SENTRY_DSN) {
provide: Sentry.TraceService,
deps: [Router]
},
- {
- provide: APP_INITIALIZER,
- useFactory: () => () => { },
- deps: [Sentry.TraceService],
- multi: true
- },
+ provideAppInitializer(() => {
+ const initializerFn = ((trace: Sentry.TraceService) => () => { })(inject(Sentry.TraceService));
+ return initializerFn();
+ }),
{
provide: GAUZY_ENV,
useValue: {
diff --git a/apps/server/src/assets/styles/material/_angular-material.scss b/apps/server/src/assets/styles/material/_angular-material.scss
index cb09eedb304..9a7f807606e 100644
--- a/apps/server/src/assets/styles/material/_angular-material.scss
+++ b/apps/server/src/assets/styles/material/_angular-material.scss
@@ -1,7 +1,8 @@
@use '@angular/material' as mat;
@mixin angular-material() {
- @include mat.core();
+ @include mat.elevation-classes();
+ @include mat.app-background();
@include nb-for-theme(material-dark) {
$custom-dark-theme: mat.m2-define-dark-theme(
diff --git a/apps/server/src/package.json b/apps/server/src/package.json
old mode 100755
new mode 100644
diff --git a/migrations.json b/migrations.json
index b9b83c878cc..3e002cdf90f 100644
--- a/migrations.json
+++ b/migrations.json
@@ -1,27 +1,13 @@
{
"migrations": [
- {
- "version": "20.0.0-beta.7",
- "description": "Migration for v20.0.0-beta.7",
- "implementation": "./src/migrations/update-20-0-0/move-use-daemon-process",
- "package": "nx",
- "name": "move-use-daemon-process"
- },
- {
- "version": "20.0.1",
- "description": "Set `useLegacyCache` to true for migrating workspaces",
- "implementation": "./src/migrations/update-20-0-1/use-legacy-cache",
- "x-repair-skip": true,
- "package": "nx",
- "name": "use-legacy-cache"
- },
{
"cli": "nx",
- "version": "20.0.0-beta.5",
- "description": "replace getJestProjects with getJestProjectsAsync",
- "implementation": "./src/migrations/update-20-0-0/replace-getJestProjects-with-getJestProjectsAsync",
- "package": "@nx/jest",
- "name": "replace-getJestProjects-with-getJestProjectsAsync"
+ "version": "20.5.0-beta.5",
+ "requires": { "@angular/core": ">=19.2.0" },
+ "description": "Update the @angular/cli package version to ~19.2.0.",
+ "factory": "./src/migrations/update-20-5-0/update-angular-cli",
+ "package": "@nx/angular",
+ "name": "update-angular-cli-version-19-2-0"
}
]
}
diff --git a/package.json b/package.json
index 2469a49b8a4..321905388ff 100644
--- a/package.json
+++ b/package.json
@@ -407,11 +407,11 @@
]
},
"resolutions": {
- "@angular-devkit/architect": "^0.1802.12",
- "@angular-devkit/core": "^18.2.9",
- "@typescript-eslint/scope-manager": "^8.18.2",
- "@typescript-eslint/utils": "^8.18.2",
- "@typescript-eslint/visitor-keys": "^8.18.2",
+ "@angular-devkit/architect": "^0.1902.8",
+ "@angular-devkit/core": "^19.2.8",
+ "@typescript-eslint/scope-manager": "^8.31.0",
+ "@typescript-eslint/utils": "^8.31.0",
+ "@typescript-eslint/visitor-keys": "^8.31.0",
"camelcase": "^6.3.0",
"rxjs": "^7.8.0",
"autoprefixer": "^10.4.20",
@@ -419,34 +419,33 @@
"minizlib": "^2.1.2"
},
"dependencies": {
- "@angular-slider/ngx-slider": "^18.0.0",
- "@angular/animations": "18.2.12",
- "@angular/cdk": "18.2.14",
- "@angular/common": "18.2.12",
- "@angular/compiler": "18.2.12",
- "@angular/core": "18.2.12",
- "@angular/forms": "18.2.12",
- "@angular/language-service": "18.2.12",
- "@angular/material": "18.2.14",
- "@angular/platform-browser": "18.2.12",
- "@angular/platform-browser-dynamic": "18.2.12",
- "@angular/router": "18.2.12",
- "@angular/service-worker": "18.2.12",
- "@fortawesome/angular-fontawesome": "^0.15.0",
- "@fullcalendar/angular": "^6.1.15",
- "@nebular/auth": "^14.0.2",
+ "@angular/animations": "19.2.7",
+ "@angular/cdk": "19.2.7",
+ "@angular/common": "19.2.7",
+ "@angular/compiler": "19.2.7",
+ "@angular/core": "19.2.7",
+ "@angular/forms": "19.2.7",
+ "@angular/language-service": "19.2.7",
+ "@angular/material": "19.2.7",
+ "@angular/platform-browser": "19.2.7",
+ "@angular/platform-browser-dynamic": "19.2.7",
+ "@angular/router": "19.2.7",
+ "@angular/service-worker": "19.2.7",
+ "@fortawesome/angular-fontawesome": "^1.0.0",
+ "@fullcalendar/angular": "^6.1.17",
+ "@nebular/auth": "^15.0.0",
"@nebular/bootstrap": "^9.1.0-rc.6",
- "@nebular/eva-icons": "^14.0.2",
- "@nebular/security": "^14.0.2",
- "@nebular/theme": "^14.0.2",
+ "@nebular/eva-icons": "^15.0.0",
+ "@nebular/security": "^15.0.0",
+ "@nebular/theme": "^15.0.0",
"@nestjs/common": "^10.4.15",
"@nestjs/core": "^10.4.15",
"@nestjs/mapped-types": "^2.0.6",
"@nestjs/platform-express": "^10.4.15",
- "@ng-select/ng-select": "^13.9.0",
- "@ngx-translate/core": "^16.0.3",
- "@ngx-translate/http-loader": "^16.0.0",
- "angular2-smart-table": "^3.4.0",
+ "@ng-select/ng-select": "^14.2.2",
+ "@ngx-translate/core": "^16.0.4",
+ "@ngx-translate/http-loader": "^16.0.1",
+ "angular2-smart-table": "^3.6.1",
"autoprefixer": "^10.4.20",
"bcrypt": "^5.1.1",
"camelcase": "^6.3.0",
@@ -456,10 +455,10 @@
"lodash-es": "^4.17.21",
"minizlib": "^2.1.2",
"mobx": "~4.14.1",
- "ng2-file-upload": "^7.0.1",
+ "ng2-file-upload": "^8.0.0",
"ngx-draggable-dom": "^3.4.1",
- "ngx-infinite-scroll": "^18.0.0",
- "ngx-permissions": "^17.1.0",
+ "ngx-infinite-scroll": "^19.0.0",
+ "ngx-permissions": "^19.0.0",
"parse5": "^7.1.2",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.0",
@@ -468,17 +467,17 @@
"zone.js": "0.14.8"
},
"devDependencies": {
- "@angular-builders/custom-webpack": "^18.0.0",
- "@angular-devkit/architect": "^0.1802.12",
- "@angular-devkit/build-angular": "^18.2.9",
+ "@angular-builders/custom-webpack": "^19.0.1",
+ "@angular-devkit/architect": "0.1902.8",
+ "@angular-devkit/build-angular": "19.2.8",
"@angular-devkit/build-ng-packagr": "^0.1002.0",
- "@angular-devkit/core": "^18.2.9",
- "@angular-devkit/schematics": "18.2.9",
- "@angular-eslint/eslint-plugin": "18.4.3",
- "@angular-eslint/eslint-plugin-template": "18.4.3",
- "@angular-eslint/template-parser": "18.4.3",
- "@angular/cli": "~18.2.0",
- "@angular/compiler-cli": "18.2.12",
+ "@angular-devkit/core": "19.2.8",
+ "@angular-devkit/schematics": "19.2.8",
+ "@angular-eslint/eslint-plugin": "^19.3.0",
+ "@angular-eslint/eslint-plugin-template": "^19.3.0",
+ "@angular-eslint/template-parser": "^19.3.0",
+ "@angular/cli": "~19.2.0",
+ "@angular/compiler-cli": "19.2.7",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/config-lerna-scopes": "^19.5.0",
@@ -495,19 +494,20 @@
"@nstudio/web": "^20.0.3",
"@nstudio/web-angular": "^20.0.3",
"@nstudio/xplat": "^20.0.3",
- "@nx/angular": "20.1.3",
- "@nx/cypress": "20.1.3",
- "@nx/devkit": "20.1.3",
- "@nx/eslint": "20.1.3",
- "@nx/eslint-plugin": "20.1.3",
- "@nx/jest": "20.1.3",
- "@nx/js": "20.1.3",
- "@nx/nest": "20.1.3",
- "@nx/node": "20.1.3",
- "@nx/web": "20.1.3",
- "@nx/webpack": "20.1.3",
- "@nx/workspace": "20.1.3",
- "@schematics/angular": "18.2.9",
+ "@nx/angular": "20.8.0",
+ "@nx/cypress": "20.8.0",
+ "@nx/devkit": "20.8.0",
+ "@nx/eslint": "20.8.0",
+ "@nx/eslint-plugin": "20.8.0",
+ "@nx/eslint-plugin-nx": "^16.0.0-beta.1",
+ "@nx/jest": "20.8.0",
+ "@nx/js": "20.8.0",
+ "@nx/nest": "20.8.0",
+ "@nx/node": "20.8.0",
+ "@nx/web": "20.8.0",
+ "@nx/webpack": "20.8.0",
+ "@nx/workspace": "20.8.0",
+ "@schematics/angular": "19.2.8",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
@@ -524,7 +524,7 @@
"@types/yargs": "^15.0.9",
"@typescript-eslint/utils": "^8.0.0",
"ajv-formats": "^2.1.1",
- "angular-eslint": "^18.3.0",
+ "angular-eslint": "^19.3.0",
"cloc": "^2.7.0",
"codecov": "^3.8.3",
"commitizen": "^4.2.1",
@@ -540,7 +540,7 @@
"cz-conventional-changelog": "^3.3.0",
"electron-builder": "^24.13.3",
"envalid": "^6.0.2",
- "esbuild": "0.25.0",
+ "esbuild": "0.24.0",
"eslint-plugin-cypress": "2.13.4",
"fork-ts-checker-webpack-plugin": "^5.2.0",
"gulp-tag-version": "^1.3.1",
@@ -549,16 +549,16 @@
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "^29.7.0",
"jest-jasmine2": "29.7.0",
- "jest-preset-angular": "14.1.1",
+ "jest-preset-angular": "14.4.2",
"jsonc-eslint-parser": "^2.1.0",
"lerna": "^8.1.9",
"lerna-changelog": "^2.2.0",
"lighthouse": "^6.3.0",
"lint-staged": "^10.4.0",
- "ng-packagr": "18.2.1",
+ "ng-packagr": "19.2.2",
"node-gyp": "^10.2.0",
"npm-run-all": "^4.1.5",
- "nx": "20.1.3",
+ "nx": "20.8.0",
"pkg": "^5.3.0",
"png-to-ico": "^2.1.8",
"postcss": "^8.4.5",
@@ -582,9 +582,9 @@
"tslint-config-prettier": "^1.18.0",
"tslint-language-service": "^0.9.9",
"typedoc": "^0.23.24",
- "typescript": "5.5.4",
+ "typescript": "^5.8.3",
"verdaccio": "^5.0.4",
- "webpack": "^5.91.0",
+ "webpack": "5.98.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^4.9.0",
"webpack-merge": "^5.10.0",
diff --git a/packages/auth/package.json b/packages/auth/package.json
index 31a57e933b2..77848095719 100644
--- a/packages/auth/package.json
+++ b/packages/auth/package.json
@@ -58,7 +58,7 @@
"@types/passport-github2": "^1.2.9",
"@types/passport-google-oauth20": "^2.0.6",
"@types/passport-jwt": "^3.0.6",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"auth",
diff --git a/packages/common/package.json b/packages/common/package.json
index 5be258ba2be..c7ec4a37cc0 100644
--- a/packages/common/package.json
+++ b/packages/common/package.json
@@ -43,7 +43,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"nestjs",
diff --git a/packages/config/package.json b/packages/config/package.json
index cfca7bfe70d..d315832e96b 100644
--- a/packages/config/package.json
+++ b/packages/config/package.json
@@ -51,7 +51,7 @@
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
"cross-env": "^7.0.3",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"api",
diff --git a/packages/contracts/package.json b/packages/contracts/package.json
index 87365e0a8e8..95b4dc78291 100644
--- a/packages/contracts/package.json
+++ b/packages/contracts/package.json
@@ -33,7 +33,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"nestjs",
diff --git a/packages/core/package.json b/packages/core/package.json
index 8220fcef5cc..49191bf1608 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -118,7 +118,6 @@
"chalk": "^4.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
- "cli-ux": "^5.5.0",
"cloudinary": "^1.33.0",
"connect-redis": "^7.1.0",
"cross-fetch": "^3.1.5",
@@ -217,7 +216,7 @@
"ts-jest": "29.1.1",
"ts-node": "^10.9.2",
"tslint-config-prettier": "^1.18.0",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"gauzy",
diff --git a/packages/desktop-ui-lib/package.json b/packages/desktop-ui-lib/package.json
index 3d069f51aa8..fb11cd4029a 100644
--- a/packages/desktop-ui-lib/package.json
+++ b/packages/desktop-ui-lib/package.json
@@ -24,37 +24,37 @@
"lib:watch": "yarn nx build desktop-ui-lib --watch --configuration=development"
},
"peerDependencies": {
- "@angular/common": "^18.2.0",
- "@angular/core": "^18.2.0"
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0"
},
"dependencies": {
- "@angular-slider/ngx-slider": "^18.0.0",
- "@angular/animations": "18.2.12",
- "@angular/forms": "18.2.12",
- "@angular/platform-browser": "18.2.12",
- "@angular/platform-browser-dynamic": "18.2.12",
- "@angular/router": "18.2.12",
+ "@angular-slider/ngx-slider": "^19.0.0",
+ "@angular/animations": "19.2.7",
+ "@angular/forms": "19.2.7",
+ "@angular/platform-browser": "19.2.7",
+ "@angular/platform-browser-dynamic": "19.2.7",
+ "@angular/router": "19.2.7",
"@datorama/akita": "^8.0.1",
"@datorama/akita-ngdevtools": "^7.0.0",
"@electron/remote": "^2.0.8",
- "@fortawesome/angular-fontawesome": "^0.15.0",
+ "@fortawesome/angular-fontawesome": "^1.0.0",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@gauzy/constants": "^0.1.0",
"@gauzy/contracts": "^0.1.0",
"@gauzy/desktop-window": "^0.1.0",
"@kurkle/color": "^0.3.2",
- "@nebular/auth": "^14.0.2",
+ "@nebular/auth": "^15.0.0",
"@nebular/bootstrap": "^9.1.0-rc.6",
- "@nebular/eva-icons": "^14.0.2",
- "@nebular/security": "^14.0.2",
- "@nebular/theme": "^14.0.2",
- "@ng-select/ng-select": "^13.9.0",
+ "@nebular/eva-icons": "^15.0.0",
+ "@nebular/security": "^15.0.0",
+ "@nebular/theme": "^15.0.0",
+ "@ng-select/ng-select": "^14.2.2",
"@ngneat/until-destroy": "^10.0.0",
+ "@ngx-translate/core": "^16.0.4",
+ "@ngx-translate/http-loader": "^16.0.1",
"@ngneat/effects-ng": "3.1.4",
- "@ngx-translate/core": "^16.0.3",
- "@ngx-translate/http-loader": "^16.0.0",
- "@swimlane/ngx-charts": "20.5.0",
- "angular2-smart-table": "^3.4.0",
+ "@swimlane/ngx-charts": "^22.0.0-alpha.1",
+ "angular2-smart-table": "^3.6.1",
"ckeditor4-angular": "4.0.1",
"electron-log": "^4.4.8",
"electron-store": "^8.1.0",
@@ -71,7 +71,7 @@
"@types/moment-duration-format": "^2.2.3",
"@types/node": "^20.14.9",
"electron": "^30.0.1",
- "jest-preset-angular": "14.1.1"
+ "jest-preset-angular": "14.4.2"
},
"keywords": [
"angular",
diff --git a/packages/desktop-ui-lib/src/lib/always-on/always-on.component.ts b/packages/desktop-ui-lib/src/lib/always-on/always-on.component.ts
index 29adab27f9c..2c4cb302bce 100644
--- a/packages/desktop-ui-lib/src/lib/always-on/always-on.component.ts
+++ b/packages/desktop-ui-lib/src/lib/always-on/always-on.component.ts
@@ -7,9 +7,10 @@ import { AlwaysOnService, AlwaysOnStateEnum, ITimeCounter } from './always-on.se
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-always-on',
- templateUrl: './always-on.component.html',
- styleUrls: ['./always-on.component.scss']
+ selector: 'gauzy-always-on',
+ templateUrl: './always-on.component.html',
+ styleUrls: ['./always-on.component.scss'],
+ standalone: false
})
export class AlwaysOnComponent implements OnInit {
public start$: BehaviorSubject = new BehaviorSubject(false);
diff --git a/packages/desktop-ui-lib/src/lib/dialogs/about/about.component.ts b/packages/desktop-ui-lib/src/lib/dialogs/about/about.component.ts
index 316d2f256f7..86d9f7a9bf6 100644
--- a/packages/desktop-ui-lib/src/lib/dialogs/about/about.component.ts
+++ b/packages/desktop-ui-lib/src/lib/dialogs/about/about.component.ts
@@ -6,9 +6,10 @@ import { ElectronService } from '../../electron/services';
import { LanguageElectronService } from '../../language/language-electron.service';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-about',
- templateUrl: './about.component.html',
- styleUrls: ['./about.component.scss']
+ selector: 'gauzy-about',
+ templateUrl: './about.component.html',
+ styleUrls: ['./about.component.scss'],
+ standalone: false
})
export class AboutComponent implements OnInit {
private _application = {
diff --git a/packages/desktop-ui-lib/src/lib/dialogs/alert/alert.component.scss b/packages/desktop-ui-lib/src/lib/dialogs/alert/alert.component.scss
index 9bf4653b9db..6b6c8674af5 100644
--- a/packages/desktop-ui-lib/src/lib/dialogs/alert/alert.component.scss
+++ b/packages/desktop-ui-lib/src/lib/dialogs/alert/alert.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
nb-card {
width: 400px;
diff --git a/packages/desktop-ui-lib/src/lib/dialogs/alert/alert.component.ts b/packages/desktop-ui-lib/src/lib/dialogs/alert/alert.component.ts
index fd1af9dfddb..110bd955297 100644
--- a/packages/desktop-ui-lib/src/lib/dialogs/alert/alert.component.ts
+++ b/packages/desktop-ui-lib/src/lib/dialogs/alert/alert.component.ts
@@ -11,7 +11,8 @@ export interface AlertDialogOptions {
@Component({
selector: 'ngx-alert',
templateUrl: './alert.component.html',
- styleUrls: ['./alert.component.scss']
+ styleUrls: ['./alert.component.scss'],
+ standalone: false
})
export class AlertComponent {
@Input() data: AlertDialogOptions;
diff --git a/packages/desktop-ui-lib/src/lib/directives/debounce-click.directive.ts b/packages/desktop-ui-lib/src/lib/directives/debounce-click.directive.ts
index 08b1c28a426..a69db7f25c5 100644
--- a/packages/desktop-ui-lib/src/lib/directives/debounce-click.directive.ts
+++ b/packages/desktop-ui-lib/src/lib/directives/debounce-click.directive.ts
@@ -3,7 +3,8 @@ import { Subject, Subscription, tap } from 'rxjs';
import { debounceTime } from 'rxjs/operators';
@Directive({
- selector: '[debounceClick]'
+ selector: '[debounceClick]',
+ standalone: false
})
export class DebounceClickDirective implements OnInit, OnDestroy {
private clicks: Subject = new Subject();
diff --git a/packages/desktop-ui-lib/src/lib/directives/dynamic.directive.ts b/packages/desktop-ui-lib/src/lib/directives/dynamic.directive.ts
index f19919b9472..c95be43b733 100644
--- a/packages/desktop-ui-lib/src/lib/directives/dynamic.directive.ts
+++ b/packages/desktop-ui-lib/src/lib/directives/dynamic.directive.ts
@@ -1,7 +1,8 @@
import { Directive, ViewContainerRef } from '@angular/core';
@Directive({
- selector: '[dynamicDirective]'
+ selector: '[dynamicDirective]',
+ standalone: false
})
export class DynamicDirective {
constructor(public viewContainerRef: ViewContainerRef) {}
diff --git a/packages/desktop-ui-lib/src/lib/directives/read-more.directive.ts b/packages/desktop-ui-lib/src/lib/directives/read-more.directive.ts
index 95bc8e93960..a8e3f52fa4c 100644
--- a/packages/desktop-ui-lib/src/lib/directives/read-more.directive.ts
+++ b/packages/desktop-ui-lib/src/lib/directives/read-more.directive.ts
@@ -1,7 +1,8 @@
import { AfterViewInit, Directive, ElementRef, Input, Renderer2 } from '@angular/core';
@Directive({
- selector: '[readMore]'
+ selector: '[readMore]',
+ standalone: false
})
export class ReadMoreDirective implements AfterViewInit {
@Input('readMore') maxLength = 100;
diff --git a/packages/desktop-ui-lib/src/lib/directives/spinner-button.directive.ts b/packages/desktop-ui-lib/src/lib/directives/spinner-button.directive.ts
index bdf89dc802e..be598c6e90e 100644
--- a/packages/desktop-ui-lib/src/lib/directives/spinner-button.directive.ts
+++ b/packages/desktop-ui-lib/src/lib/directives/spinner-button.directive.ts
@@ -1,18 +1,12 @@
-import {
- ComponentFactoryResolver,
- Directive,
- Input,
- Renderer2,
- TemplateRef,
- ViewContainerRef,
-} from '@angular/core';
+import { ComponentFactoryResolver, Directive, Input, Renderer2, TemplateRef, ViewContainerRef } from '@angular/core';
import { NbSpinnerComponent } from '@nebular/theme';
@Directive({
selector: '[gauzySpinnerButton]',
+ standalone: false
})
export class SpinnerButtonDirective {
- private _isSpinning = null;
+ private _isSpinning = false;
private _spinner: HTMLElement;
constructor(
@@ -41,14 +35,8 @@ export class SpinnerButtonDirective {
}
private _addSpinner() {
- const componentFactory =
- this._componentFactoryResolver.resolveComponentFactory(
- NbSpinnerComponent
- );
- const container =
- this._viewContainer.createComponent(
- componentFactory
- );
+ const componentFactory = this._componentFactoryResolver.resolveComponentFactory(NbSpinnerComponent);
+ const container = this._viewContainer.createComponent(componentFactory);
container.instance.size = 'small';
container.instance.message = '';
@@ -57,33 +45,13 @@ export class SpinnerButtonDirective {
this._render.setStyle(spinner, 'background', 'unset');
this._render.setStyle(spinner, 'position', 'relative');
- this._render.setStyle(
- spinner.firstChild,
- 'border-top-color',
- 'inherit'
- );
- this._render.setStyle(
- spinner.firstChild,
- 'border-bottom-color',
- 'inherit'
- );
- this._render.setStyle(
- spinner.firstChild,
- 'border-left-color',
- 'inherit'
- );
+ this._render.setStyle(spinner.firstChild, 'border-top-color', 'inherit');
+ this._render.setStyle(spinner.firstChild, 'border-bottom-color', 'inherit');
+ this._render.setStyle(spinner.firstChild, 'border-left-color', 'inherit');
- this._render.setStyle(
- spinner.firstChild,
- 'width',
- '14px'
- );
+ this._render.setStyle(spinner.firstChild, 'width', '14px');
- this._render.setStyle(
- spinner.firstChild,
- 'height',
- '14px'
- );
+ this._render.setStyle(spinner.firstChild, 'height', '14px');
this._render.setStyle(spinner.parentElement, 'display', 'flex');
this._render.setStyle(spinner.parentElement, 'gap', '0.5rem');
diff --git a/packages/desktop-ui-lib/src/lib/directives/text-mask.directive.ts b/packages/desktop-ui-lib/src/lib/directives/text-mask.directive.ts
index 532bf81211f..1d9c6d76999 100644
--- a/packages/desktop-ui-lib/src/lib/directives/text-mask.directive.ts
+++ b/packages/desktop-ui-lib/src/lib/directives/text-mask.directive.ts
@@ -9,7 +9,8 @@ interface IMaskConfig {
}
@Directive({
- selector: '[gaTextMask]'
+ selector: '[gaTextMask]',
+ standalone: false
})
export class TextMaskDirective {
// Default configuration for text masking
diff --git a/packages/desktop-ui-lib/src/lib/image-viewer/image-viewer.component.ts b/packages/desktop-ui-lib/src/lib/image-viewer/image-viewer.component.ts
index 3d74e878ece..a61f6aa5aea 100644
--- a/packages/desktop-ui-lib/src/lib/image-viewer/image-viewer.component.ts
+++ b/packages/desktop-ui-lib/src/lib/image-viewer/image-viewer.component.ts
@@ -1,10 +1,4 @@
-import {
- Component,
- OnInit,
- ViewChild,
- ElementRef,
- NgZone,
-} from '@angular/core';
+import { Component, OnInit, ViewChild, ElementRef, NgZone } from '@angular/core';
import { transition, trigger, style, animate } from '@angular/animations';
import { ElectronService } from '../electron/services';
import { SafeUrl } from '@angular/platform-browser';
@@ -16,12 +10,12 @@ export const fadeInOutAnimation = trigger('fadeInOut', [
transition(':enter', [
// :enter is alias to 'void => *'
style({ opacity: 0 }),
- animate(300, style({ opacity: 1 })),
+ animate(300, style({ opacity: 1 }))
]),
transition(':leave', [
// :leave is alias to '* => void'
- animate(300, style({ opacity: 0 })),
- ]),
+ animate(300, style({ opacity: 0 }))
+ ])
]);
@Component({
@@ -29,9 +23,10 @@ export const fadeInOutAnimation = trigger('fadeInOut', [
templateUrl: './image-viewer.component.html',
styleUrls: ['./image-viewer.component.scss'],
animations: [fadeInOutAnimation],
+ standalone: false
})
export class ImageViewerComponent implements OnInit {
- active_index: any;
+ active_index: number;
@ViewChild('customScroll', { static: true })
customScroll: ElementRef;
@@ -53,25 +48,22 @@ export class ImageViewerComponent implements OnInit {
}
ngOnInit(): void {
- this._electronService.ipcRenderer.on(
- 'show_image',
- (event, arg: any[]) => {
- this._ngZone.run(() => {
- this.items = arg
- .sort((a, b) => {
- const c: any = new Date(b.recordedAt);
- const d: any = new Date(a.recordedAt);
- return c - d;
- })
- .map((img) => ({
- ...img,
- fullUrl: from(this.sanitizeImgUrl(img.fullUrl)),
- thumbUrl: from(this.sanitizeImgUrl(img.thumbUrl)),
- }));
- this.item = this.items[0];
- });
- }
- );
+ this._electronService.ipcRenderer.on('show_image', (event, arg: any[]) => {
+ this._ngZone.run(() => {
+ this.items = arg
+ .sort((a, b) => {
+ const c: any = new Date(b.recordedAt);
+ const d: any = new Date(a.recordedAt);
+ return c - d;
+ })
+ .map((img) => ({
+ ...img,
+ fullUrl: from(this.sanitizeImgUrl(img.fullUrl)),
+ thumbUrl: from(this.sanitizeImgUrl(img.thumbUrl))
+ }));
+ this.item = this.items[0];
+ });
+ });
this.active_index = 0;
}
@@ -82,10 +74,7 @@ export class ImageViewerComponent implements OnInit {
next($event) {
$event.stopPropagation();
- this.active_index = Math.min(
- this.active_index + 1,
- this.items.length - 1
- );
+ this.active_index = Math.min(this.active_index + 1, this.items.length - 1);
this.item = this.items[this.active_index];
this.updateActiveIndex();
}
@@ -110,21 +99,18 @@ export class ImageViewerComponent implements OnInit {
}
updateActiveIndex() {
- const activeItem =
- this.customScroll.nativeElement.querySelector('.thumb-item-active');
+ const activeItem = this.customScroll.nativeElement.querySelector('.thumb-item-active');
if (activeItem) {
const position = activeItem.getBoundingClientRect();
if (position) {
const left: any = position.left;
const right: any = position.left + activeItem.clientWidth;
- const scrollRight: any =
- this.customScroll.nativeElement.clientWidth;
- const scrollLeft: any =
- this.customScroll.nativeElement.scrollLeft;
+ const scrollRight: any = this.customScroll.nativeElement.clientWidth;
+ const scrollLeft: any = this.customScroll.nativeElement.scrollLeft;
if (left < Math.abs(scrollLeft) || right > scrollRight) {
this.customScroll.nativeElement.scrollTo({
- left: left,
+ left: left
});
}
}
diff --git a/packages/desktop-ui-lib/src/lib/integrations/activity-watch/view/activity-watch.component.ts b/packages/desktop-ui-lib/src/lib/integrations/activity-watch/view/activity-watch.component.ts
index a5d66e74c3b..c3028331de2 100644
--- a/packages/desktop-ui-lib/src/lib/integrations/activity-watch/view/activity-watch.component.ts
+++ b/packages/desktop-ui-lib/src/lib/integrations/activity-watch/view/activity-watch.component.ts
@@ -3,9 +3,10 @@ import { Observable } from 'rxjs';
import { ActivityWatchViewService } from '../activity-watch-view.service';
@Component({
- selector: 'gauzy-activity-watch',
- templateUrl: './activity-watch.component.html',
- styleUrls: ['./activity-watch.component.scss']
+ selector: 'gauzy-activity-watch',
+ templateUrl: './activity-watch.component.html',
+ styleUrls: ['./activity-watch.component.scss'],
+ standalone: false
})
export class ActivityWatchComponent {
constructor(private readonly activityWatchViewService: ActivityWatchViewService) {}
diff --git a/packages/desktop-ui-lib/src/lib/language/language-selector.component.ts b/packages/desktop-ui-lib/src/lib/language/language-selector.component.ts
index 1c1ea460361..0c4ac0084c5 100644
--- a/packages/desktop-ui-lib/src/lib/language/language-selector.component.ts
+++ b/packages/desktop-ui-lib/src/lib/language/language-selector.component.ts
@@ -12,9 +12,10 @@ import { ElectronService } from '../electron/services';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-language-selector',
- templateUrl: './language-selector.component.html',
- styleUrls: ['./language-selector.component.scss']
+ selector: 'gauzy-language-selector',
+ templateUrl: './language-selector.component.html',
+ styleUrls: ['./language-selector.component.scss'],
+ standalone: false
})
export class LanguageSelectorComponent implements OnInit, AfterViewInit {
private _user: IUser;
diff --git a/packages/desktop-ui-lib/src/lib/login/features/login-magic/login-magic.component.scss b/packages/desktop-ui-lib/src/lib/login/features/login-magic/login-magic.component.scss
index aa41ace6a8b..2f1c2eeff89 100644
--- a/packages/desktop-ui-lib/src/lib/login/features/login-magic/login-magic.component.scss
+++ b/packages/desktop-ui-lib/src/lib/login/features/login-magic/login-magic.component.scss
@@ -1,5 +1,5 @@
-@import 'themes';
-@import '../../_reusable.scss';
+@use 'themes' as *;
+@use '../../_reusable' as *;
$button-color: #fa754e;
@@ -247,8 +247,8 @@ $button-color: #fa754e;
}
& .another-action {
+ margin-top: 10px;
@include another-action;
- margin-top: 10px;
}
}
diff --git a/packages/desktop-ui-lib/src/lib/login/features/login-magic/login-magic.component.ts b/packages/desktop-ui-lib/src/lib/login/features/login-magic/login-magic.component.ts
index 52059ce5d9f..20e6e40438a 100644
--- a/packages/desktop-ui-lib/src/lib/login/features/login-magic/login-magic.component.ts
+++ b/packages/desktop-ui-lib/src/lib/login/features/login-magic/login-magic.component.ts
@@ -10,9 +10,10 @@ import { ErrorHandlerService } from '../../../services';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-login-magic',
- templateUrl: './login-magic.component.html',
- styleUrls: ['./login-magic.component.scss']
+ selector: 'ngx-login-magic',
+ templateUrl: './login-magic.component.html',
+ styleUrls: ['./login-magic.component.scss'],
+ standalone: false
})
export class NgxLoginMagicComponent extends NbLoginComponent implements OnInit {
public countdown: number;
diff --git a/packages/desktop-ui-lib/src/lib/login/features/login-workspace/login-workspace.component.scss b/packages/desktop-ui-lib/src/lib/login/features/login-workspace/login-workspace.component.scss
index a73b13f14e9..b90d7dbec96 100644
--- a/packages/desktop-ui-lib/src/lib/login/features/login-workspace/login-workspace.component.scss
+++ b/packages/desktop-ui-lib/src/lib/login/features/login-workspace/login-workspace.component.scss
@@ -1,5 +1,5 @@
-@import 'themes';
-@import '../../_reusable.scss';
+@use 'themes' as *;
+@use '../../_reusable' as *;
:host {
.section-wrapper {
diff --git a/packages/desktop-ui-lib/src/lib/login/features/login-workspace/login-workspace.component.ts b/packages/desktop-ui-lib/src/lib/login/features/login-workspace/login-workspace.component.ts
index 935d5608803..6abac7203e8 100644
--- a/packages/desktop-ui-lib/src/lib/login/features/login-workspace/login-workspace.component.ts
+++ b/packages/desktop-ui-lib/src/lib/login/features/login-workspace/login-workspace.component.ts
@@ -9,9 +9,10 @@ import { ErrorHandlerService, Store, TimeTrackerDateManager } from '../../../ser
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-login-workspace',
- templateUrl: './login-workspace.component.html',
- styleUrls: ['./login-workspace.component.scss']
+ selector: 'ngx-login-workspace',
+ templateUrl: './login-workspace.component.html',
+ styleUrls: ['./login-workspace.component.scss'],
+ standalone: false
})
export class NgxLoginWorkspaceComponent implements OnInit {
public confirmedEmail: string;
diff --git a/packages/desktop-ui-lib/src/lib/login/features/magic-login-workspace/magic-login-workspace.component.scss b/packages/desktop-ui-lib/src/lib/login/features/magic-login-workspace/magic-login-workspace.component.scss
index c681e4798ad..73e45189fc9 100644
--- a/packages/desktop-ui-lib/src/lib/login/features/magic-login-workspace/magic-login-workspace.component.scss
+++ b/packages/desktop-ui-lib/src/lib/login/features/magic-login-workspace/magic-login-workspace.component.scss
@@ -1,4 +1,4 @@
-@import '../../_reusable.scss';
+@forward '../../_reusable';
.ever-logo-svg {
margin-top: 2rem;
diff --git a/packages/desktop-ui-lib/src/lib/login/features/magic-login-workspace/magic-login-workspace.component.ts b/packages/desktop-ui-lib/src/lib/login/features/magic-login-workspace/magic-login-workspace.component.ts
index 5876d751722..a8cca17eb4f 100644
--- a/packages/desktop-ui-lib/src/lib/login/features/magic-login-workspace/magic-login-workspace.component.ts
+++ b/packages/desktop-ui-lib/src/lib/login/features/magic-login-workspace/magic-login-workspace.component.ts
@@ -8,9 +8,10 @@ import { ErrorHandlerService, Store, TimeTrackerDateManager } from '../../../ser
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-magic-sign-in-workspace',
- templateUrl: './magic-login-workspace.component.html',
- styleUrls: ['./magic-login-workspace.component.scss']
+ selector: 'ngx-magic-sign-in-workspace',
+ templateUrl: './magic-login-workspace.component.html',
+ styleUrls: ['./magic-login-workspace.component.scss'],
+ standalone: false
})
export class NgxMagicSignInWorkspaceComponent implements OnInit {
public error: boolean = false;
diff --git a/packages/desktop-ui-lib/src/lib/login/login.component.scss b/packages/desktop-ui-lib/src/lib/login/login.component.scss
index cd2a9546bb8..fbceea5d05b 100644
--- a/packages/desktop-ui-lib/src/lib/login/login.component.scss
+++ b/packages/desktop-ui-lib/src/lib/login/login.component.scss
@@ -1,4 +1,4 @@
-@import './reusable';
+@use './reusable' as *;
.login-container {
width: 560px;
@@ -140,9 +140,9 @@
}
& .links {
- margin-top: 10px;
- @include social-links-style;
- width: 100%;
+ margin-top: 10px;
+ width: 100%;
+ @include social-links-style;
& .socials {
display: flex;
@@ -153,8 +153,8 @@
}
& .another-action {
+ margin-top: 10px;
@include another-action;
- margin-top: 10px;
}
}
@@ -396,8 +396,8 @@
}
.hr-div-soft {
- @include hr-div-soft;
- margin-bottom: 12px;
+ margin-bottom: 12px;
+ @include hr-div-soft;
}
.theme-switch {
diff --git a/packages/desktop-ui-lib/src/lib/login/login.component.ts b/packages/desktop-ui-lib/src/lib/login/login.component.ts
index 8e67b0cc63b..ffebe1b3aa9 100644
--- a/packages/desktop-ui-lib/src/lib/login/login.component.ts
+++ b/packages/desktop-ui-lib/src/lib/login/login.component.ts
@@ -13,9 +13,10 @@ import { ErrorHandlerService } from '../services';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-desktop-timer-login',
- templateUrl: './login.component.html',
- styleUrls: ['./login.component.scss']
+ selector: 'ngx-desktop-timer-login',
+ templateUrl: './login.component.html',
+ styleUrls: ['./login.component.scss'],
+ standalone: false
})
export class NgxLoginComponent extends NbLoginComponent implements OnInit {
@ViewChild('form')
diff --git a/packages/desktop-ui-lib/src/lib/login/shared/ui/logo/logo.component.ts b/packages/desktop-ui-lib/src/lib/login/shared/ui/logo/logo.component.ts
index a81ab50fc5a..041ee60052e 100644
--- a/packages/desktop-ui-lib/src/lib/login/shared/ui/logo/logo.component.ts
+++ b/packages/desktop-ui-lib/src/lib/login/shared/ui/logo/logo.component.ts
@@ -3,9 +3,10 @@ import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
import { GAUZY_ENV } from '../../../../constants';
@Component({
- selector: 'gauzy-logo',
- templateUrl: './logo.component.html',
- styleUrls: ['./logo.component.scss']
+ selector: 'gauzy-logo',
+ templateUrl: './logo.component.html',
+ styleUrls: ['./logo.component.scss'],
+ standalone: false
})
export class LogoComponent {
constructor(
diff --git a/packages/desktop-ui-lib/src/lib/login/shared/ui/social-links/social-links.component.scss b/packages/desktop-ui-lib/src/lib/login/shared/ui/social-links/social-links.component.scss
index 81c3deb68c8..193132e9e7a 100644
--- a/packages/desktop-ui-lib/src/lib/login/shared/ui/social-links/social-links.component.scss
+++ b/packages/desktop-ui-lib/src/lib/login/shared/ui/social-links/social-links.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/reusable';
+@use '@shared/reusable' as *;
.links {
margin-top: 21px;
diff --git a/packages/desktop-ui-lib/src/lib/login/shared/ui/social-links/social-links.component.ts b/packages/desktop-ui-lib/src/lib/login/shared/ui/social-links/social-links.component.ts
index 9d37305e1b7..6cf137ce09d 100644
--- a/packages/desktop-ui-lib/src/lib/login/shared/ui/social-links/social-links.component.ts
+++ b/packages/desktop-ui-lib/src/lib/login/shared/ui/social-links/social-links.component.ts
@@ -21,9 +21,10 @@ export interface ISocialLink {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-social-links',
- templateUrl: './social-links.component.html',
- styleUrls: ['./social-links.component.scss']
+ selector: 'ngx-social-links',
+ templateUrl: './social-links.component.html',
+ styleUrls: ['./social-links.component.scss'],
+ standalone: false
})
export class SocialLinksComponent implements OnInit {
/** */
diff --git a/packages/desktop-ui-lib/src/lib/login/shared/ui/workspace-selection/workspace-selection.component.scss b/packages/desktop-ui-lib/src/lib/login/shared/ui/workspace-selection/workspace-selection.component.scss
index 75c17ef5729..6e4f1e9cc23 100644
--- a/packages/desktop-ui-lib/src/lib/login/shared/ui/workspace-selection/workspace-selection.component.scss
+++ b/packages/desktop-ui-lib/src/lib/login/shared/ui/workspace-selection/workspace-selection.component.scss
@@ -1,4 +1,4 @@
-@import '../../../_reusable.scss';
+@forward '../../../_reusable';
:host {
.workspace-selection-container {
diff --git a/packages/desktop-ui-lib/src/lib/login/shared/ui/workspace-selection/workspace-selection.component.ts b/packages/desktop-ui-lib/src/lib/login/shared/ui/workspace-selection/workspace-selection.component.ts
index de75ca3fa55..5c47082197b 100644
--- a/packages/desktop-ui-lib/src/lib/login/shared/ui/workspace-selection/workspace-selection.component.ts
+++ b/packages/desktop-ui-lib/src/lib/login/shared/ui/workspace-selection/workspace-selection.component.ts
@@ -2,9 +2,10 @@ import { Component, EventEmitter, Input, Output } from '@angular/core';
import { IWorkspaceResponse } from '@gauzy/contracts';
@Component({
- selector: 'ngx-workspace-selection',
- templateUrl: './workspace-selection.component.html',
- styleUrls: ['./workspace-selection.component.scss']
+ selector: 'ngx-workspace-selection',
+ templateUrl: './workspace-selection.component.html',
+ styleUrls: ['./workspace-selection.component.scss'],
+ standalone: false
})
export class WorkspaceSelectionComponent {
selected: IWorkspaceResponse = null;
diff --git a/packages/desktop-ui-lib/src/lib/ngx-translate/ngx-translate.module.ts b/packages/desktop-ui-lib/src/lib/ngx-translate/ngx-translate.module.ts
index 31cdcbf069e..c20d99e3b58 100644
--- a/packages/desktop-ui-lib/src/lib/ngx-translate/ngx-translate.module.ts
+++ b/packages/desktop-ui-lib/src/lib/ngx-translate/ngx-translate.module.ts
@@ -1,6 +1,6 @@
import { CommonModule } from '@angular/common';
import { HttpClient } from '@angular/common/http';
-import { APP_INITIALIZER, NgModule } from '@angular/core';
+import { NgModule, inject, provideAppInitializer } from '@angular/core';
import { TranslateLoader, TranslateModule, TranslateService } from '@ngx-translate/core';
import { ElectronService } from '../electron/services';
import { HttpLoaderFactory } from '../ngx-translate';
@@ -20,12 +20,10 @@ import { LanguageInitializerFactory } from './language-initializer.factory';
],
providers: [
TranslateService,
- {
- provide: APP_INITIALIZER,
- useFactory: LanguageInitializerFactory,
- deps: [TranslateService, ElectronService],
- multi: true
- }
+ provideAppInitializer(() => {
+ const initializerFn = (LanguageInitializerFactory)(inject(TranslateService), inject(ElectronService));
+ return initializerFn();
+ })
],
exports: [TranslateModule]
})
diff --git a/packages/desktop-ui-lib/src/lib/recap/features/activities/activities.component.ts b/packages/desktop-ui-lib/src/lib/recap/features/activities/activities.component.ts
index 34683069bad..7d4805bee44 100644
--- a/packages/desktop-ui-lib/src/lib/recap/features/activities/activities.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/features/activities/activities.component.ts
@@ -10,10 +10,11 @@ import { ActivityStatisticsAdapter } from '../../shared/utils/adapters/activity.
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-activities',
- templateUrl: './activities.component.html',
- styleUrls: ['./activities.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-activities',
+ templateUrl: './activities.component.html',
+ styleUrls: ['./activities.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class ActivitiesComponent implements OnInit {
constructor(
diff --git a/packages/desktop-ui-lib/src/lib/recap/features/filter/filter.component.ts b/packages/desktop-ui-lib/src/lib/recap/features/filter/filter.component.ts
index 51892cb46cb..2941abb54c4 100644
--- a/packages/desktop-ui-lib/src/lib/recap/features/filter/filter.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/features/filter/filter.component.ts
@@ -5,10 +5,11 @@ import { RequestQuery } from '../../+state/request/request.query';
import { RequestStore } from '../../+state/request/request.store';
@Component({
- selector: 'ngx-filter',
- templateUrl: './filter.component.html',
- styleUrls: ['./filter.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-filter',
+ templateUrl: './filter.component.html',
+ styleUrls: ['./filter.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class FilterComponent {
constructor(private readonly store: RequestStore, private readonly query: RequestQuery) {}
diff --git a/packages/desktop-ui-lib/src/lib/recap/features/projects/projects.component.ts b/packages/desktop-ui-lib/src/lib/recap/features/projects/projects.component.ts
index 9201a9c0788..1517dc667fd 100644
--- a/packages/desktop-ui-lib/src/lib/recap/features/projects/projects.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/features/projects/projects.component.ts
@@ -10,10 +10,11 @@ import { ProjectStatisticsAdapter } from '../../shared/utils/adapters/project.ad
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-projects',
- templateUrl: './projects.component.html',
- styleUrls: ['./projects.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-projects',
+ templateUrl: './projects.component.html',
+ styleUrls: ['./projects.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class ProjectsComponent implements OnInit {
constructor(
diff --git a/packages/desktop-ui-lib/src/lib/recap/features/recap/recap.component.scss b/packages/desktop-ui-lib/src/lib/recap/features/recap/recap.component.scss
index d6969f2b84e..f4195299882 100644
--- a/packages/desktop-ui-lib/src/lib/recap/features/recap/recap.component.scss
+++ b/packages/desktop-ui-lib/src/lib/recap/features/recap/recap.component.scss
@@ -1,4 +1,4 @@
-@import '../../shared/features/activity-report/activity-report.component.scss';
+@forward '../../shared/features/activity-report/activity-report.component';
.tools {
diff --git a/packages/desktop-ui-lib/src/lib/recap/features/recap/recap.component.ts b/packages/desktop-ui-lib/src/lib/recap/features/recap/recap.component.ts
index 4a7e9baf1cd..04325733782 100644
--- a/packages/desktop-ui-lib/src/lib/recap/features/recap/recap.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/features/recap/recap.component.ts
@@ -7,10 +7,11 @@ import { IDateRangePicker } from '../../shared/features/date-range-picker/date-p
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-recap',
- templateUrl: './recap.component.html',
- styleUrls: ['./recap.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-recap',
+ templateUrl: './recap.component.html',
+ styleUrls: ['./recap.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class RecapComponent {
private readonly basePath = ['/', 'time-tracker', 'daily'];
diff --git a/packages/desktop-ui-lib/src/lib/recap/features/tasks/tasks.component.ts b/packages/desktop-ui-lib/src/lib/recap/features/tasks/tasks.component.ts
index 3aa500f8f63..1c92c94113e 100644
--- a/packages/desktop-ui-lib/src/lib/recap/features/tasks/tasks.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/features/tasks/tasks.component.ts
@@ -10,10 +10,11 @@ import { TaskStatisticsAdapter } from '../../shared/utils/adapters/task.adapter'
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-tasks',
- templateUrl: './tasks.component.html',
- styleUrls: ['./tasks.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-tasks',
+ templateUrl: './tasks.component.html',
+ styleUrls: ['./tasks.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class TasksComponent implements OnInit {
constructor(
diff --git a/packages/desktop-ui-lib/src/lib/recap/features/time-tracking-charts/time-tracking-charts.component.ts b/packages/desktop-ui-lib/src/lib/recap/features/time-tracking-charts/time-tracking-charts.component.ts
index 5555316a59c..f9c12de0633 100644
--- a/packages/desktop-ui-lib/src/lib/recap/features/time-tracking-charts/time-tracking-charts.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/features/time-tracking-charts/time-tracking-charts.component.ts
@@ -12,10 +12,11 @@ import { IChartData } from '../../shared/utils/adapters/chart.adapter';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-time-tracking-charts',
- templateUrl: './time-tracking-charts.component.html',
- styleUrls: ['./time-tracking-charts.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-time-tracking-charts',
+ templateUrl: './time-tracking-charts.component.html',
+ styleUrls: ['./time-tracking-charts.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class TimeTrackingChartsComponent implements OnInit {
private readonly _chartData$: BehaviorSubject = new BehaviorSubject([]);
diff --git a/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-calendar/monthly-calendar.component.ts b/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-calendar/monthly-calendar.component.ts
index b418daa9f04..7610bcc979f 100644
--- a/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-calendar/monthly-calendar.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-calendar/monthly-calendar.component.ts
@@ -4,10 +4,11 @@ import { MonthlyRecapService } from '../../+state/monthly.service';
import { IDateRangePicker } from '../../../shared/features/date-range-picker/date-picker.interface';
@Component({
- selector: 'ngx-monthly-calendar',
- templateUrl: './monthly-calendar.component.html',
- styleUrls: ['./monthly-calendar.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-monthly-calendar',
+ templateUrl: './monthly-calendar.component.html',
+ styleUrls: ['./monthly-calendar.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class MonthlyCalendarComponent {
constructor(private readonly monthlyRecapService: MonthlyRecapService) {}
diff --git a/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-progress/monthly-progress.component.scss b/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-progress/monthly-progress.component.scss
index acf8d878cbd..4ac915c84e4 100644
--- a/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-progress/monthly-progress.component.scss
+++ b/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-progress/monthly-progress.component.scss
@@ -1,4 +1,4 @@
-@import 'report';
+@forward 'report';
.activity {
display: flex;
diff --git a/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-progress/monthly-progress.component.ts b/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-progress/monthly-progress.component.ts
index 512d69553e2..8b9d8ca6441 100644
--- a/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-progress/monthly-progress.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-progress/monthly-progress.component.ts
@@ -10,10 +10,11 @@ export interface IMonthWeekdays {
}
@Component({
- selector: 'ngx-monthly-progress',
- templateUrl: './monthly-progress.component.html',
- styleUrls: ['./monthly-progress.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-monthly-progress',
+ templateUrl: './monthly-progress.component.html',
+ styleUrls: ['./monthly-progress.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class MonthlyProgressComponent {
public monthWeekdays: IMonthWeekdays[] = [];
diff --git a/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-recap/monthly-recap.component.scss b/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-recap/monthly-recap.component.scss
index 5aba1479620..cfa79e23ebb 100644
--- a/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-recap/monthly-recap.component.scss
+++ b/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-recap/monthly-recap.component.scss
@@ -1,4 +1,4 @@
-@import '../../../features/recap/recap.component.scss';
+@forward '../../../features/recap/recap.component';
.recap-monthly {
display: flex;
diff --git a/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-recap/monthly-recap.component.ts b/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-recap/monthly-recap.component.ts
index 59f97609423..2ba9a00c81c 100644
--- a/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-recap/monthly-recap.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-recap/monthly-recap.component.ts
@@ -8,10 +8,11 @@ import { LoggerService } from '../../../../electron/services';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-monthly-recap',
- templateUrl: './monthly-recap.component.html',
- styleUrls: ['./monthly-recap.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-monthly-recap',
+ templateUrl: './monthly-recap.component.html',
+ styleUrls: ['./monthly-recap.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class MonthlyRecapComponent implements OnInit {
public isLoading$ = new BehaviorSubject(false);
diff --git a/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-statistic/monthly-statistic.component.ts b/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-statistic/monthly-statistic.component.ts
index 6319687acb6..15a2f7a26c4 100644
--- a/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-statistic/monthly-statistic.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/monthly/features/monthly-statistic/monthly-statistic.component.ts
@@ -3,10 +3,11 @@ import { map } from 'rxjs';
import { MonthlyRecapService } from '../../+state/monthly.service';
@Component({
- selector: 'ngx-monthly-statistic',
- templateUrl: './monthly-statistic.component.html',
- styleUrls: ['./monthly-statistic.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-monthly-statistic',
+ templateUrl: './monthly-statistic.component.html',
+ styleUrls: ['./monthly-statistic.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class MonthlyStatisticComponent {
constructor(private readonly monthlyRecapService: MonthlyRecapService) {}
diff --git a/packages/desktop-ui-lib/src/lib/recap/shared/features/activity-report/activity-report.component.scss b/packages/desktop-ui-lib/src/lib/recap/shared/features/activity-report/activity-report.component.scss
index 5de4f56ae24..4273e956e92 100644
--- a/packages/desktop-ui-lib/src/lib/recap/shared/features/activity-report/activity-report.component.scss
+++ b/packages/desktop-ui-lib/src/lib/recap/shared/features/activity-report/activity-report.component.scss
@@ -1,5 +1,5 @@
-@import 'report';
-@import "var";
+@use 'var' as *;
+@forward 'report';
.project-row {
padding-top: 10px;
diff --git a/packages/desktop-ui-lib/src/lib/recap/shared/features/activity-report/activity-report.component.ts b/packages/desktop-ui-lib/src/lib/recap/shared/features/activity-report/activity-report.component.ts
index c8b745c950d..9a8c0c6e807 100644
--- a/packages/desktop-ui-lib/src/lib/recap/shared/features/activity-report/activity-report.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/shared/features/activity-report/activity-report.component.ts
@@ -9,10 +9,11 @@ import { RequestQuery } from '../../../+state/request/request.query';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-activity-report',
- templateUrl: './activity-report.component.html',
- styleUrls: ['./activity-report.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-activity-report',
+ templateUrl: './activity-report.component.html',
+ styleUrls: ['./activity-report.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class ActivityReportComponent implements OnInit {
public isLoading$ = new BehaviorSubject(false);
diff --git a/packages/desktop-ui-lib/src/lib/recap/shared/features/date-range-picker/date-range-picker.component.scss b/packages/desktop-ui-lib/src/lib/recap/shared/features/date-range-picker/date-range-picker.component.scss
index 792529e98b7..4b7e72bc5b5 100644
--- a/packages/desktop-ui-lib/src/lib/recap/shared/features/date-range-picker/date-range-picker.component.scss
+++ b/packages/desktop-ui-lib/src/lib/recap/shared/features/date-range-picker/date-range-picker.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
$button-radius: var(--button-rectangle-border-radius);
diff --git a/packages/desktop-ui-lib/src/lib/recap/shared/features/date-range-picker/date-range-picker.component.ts b/packages/desktop-ui-lib/src/lib/recap/shared/features/date-range-picker/date-range-picker.component.ts
index 3bf5a9b056c..5d74d788c24 100644
--- a/packages/desktop-ui-lib/src/lib/recap/shared/features/date-range-picker/date-range-picker.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/shared/features/date-range-picker/date-range-picker.component.ts
@@ -30,10 +30,11 @@ import { dayOfWeekAsString, shiftUTCtoLocal } from './date-picker.utils';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-date-range-picker',
- templateUrl: './date-range-picker.component.html',
- styleUrls: ['./date-range-picker.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-date-range-picker',
+ templateUrl: './date-range-picker.component.html',
+ styleUrls: ['./date-range-picker.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class DateRangePickerComponent implements OnInit, OnDestroy {
public picker: NgxDateRangePickerComponent;
diff --git a/packages/desktop-ui-lib/src/lib/recap/shared/features/gauzy-filters/gauzy-filters.component.scss b/packages/desktop-ui-lib/src/lib/recap/shared/features/gauzy-filters/gauzy-filters.component.scss
index 4f26377327d..da788c2ed75 100644
--- a/packages/desktop-ui-lib/src/lib/recap/shared/features/gauzy-filters/gauzy-filters.component.scss
+++ b/packages/desktop-ui-lib/src/lib/recap/shared/features/gauzy-filters/gauzy-filters.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-overrides';
-@import 'filters.component.scss';
+@use 'gauzy/_gauzy-overrides' as *;
+@forward 'filters.component';
$button-radius : var(--button-rectangle-border-radius);
diff --git a/packages/desktop-ui-lib/src/lib/recap/shared/features/gauzy-filters/gauzy-filters.component.ts b/packages/desktop-ui-lib/src/lib/recap/shared/features/gauzy-filters/gauzy-filters.component.ts
index 17c0fd60e0c..3a7d406787a 100644
--- a/packages/desktop-ui-lib/src/lib/recap/shared/features/gauzy-filters/gauzy-filters.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/shared/features/gauzy-filters/gauzy-filters.component.ts
@@ -7,10 +7,11 @@ import { ITimeLogFilters, PermissionsEnum, TimeFormatEnum, TimeLogSourceEnum, Ti
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-gauzy-filters',
- templateUrl: './gauzy-filters.component.html',
- styleUrls: ['./gauzy-filters.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-gauzy-filters',
+ templateUrl: './gauzy-filters.component.html',
+ styleUrls: ['./gauzy-filters.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class GauzyFiltersComponent implements OnInit, OnDestroy {
// declaration of variables
diff --git a/packages/desktop-ui-lib/src/lib/recap/shared/features/segmented-control/segmented-control.component.ts b/packages/desktop-ui-lib/src/lib/recap/shared/features/segmented-control/segmented-control.component.ts
index 671b909de9e..caa32ca245e 100644
--- a/packages/desktop-ui-lib/src/lib/recap/shared/features/segmented-control/segmented-control.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/shared/features/segmented-control/segmented-control.component.ts
@@ -5,10 +5,11 @@ import { SegmentControlService } from './+state/segment-control.service';
import { ISegmentControlState } from './+state/segment-control.store';
@Component({
- selector: 'ngx-segmented-control',
- templateUrl: './segmented-control.component.html',
- styleUrls: ['./segmented-control.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-segmented-control',
+ templateUrl: './segmented-control.component.html',
+ styleUrls: ['./segmented-control.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class SegmentedControlComponent implements OnInit {
@Input()
diff --git a/packages/desktop-ui-lib/src/lib/recap/shared/ui/auto-refresh/auto-refresh.component.ts b/packages/desktop-ui-lib/src/lib/recap/shared/ui/auto-refresh/auto-refresh.component.ts
index 289f0850108..12cb5f6e7ed 100644
--- a/packages/desktop-ui-lib/src/lib/recap/shared/ui/auto-refresh/auto-refresh.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/shared/ui/auto-refresh/auto-refresh.component.ts
@@ -5,10 +5,11 @@ import { AutoRefreshService } from '../../../+state/auto-refresh/auto-refresh.se
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-auto-refresh',
- templateUrl: './auto-refresh.component.html',
- styleUrls: ['./auto-refresh.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-auto-refresh',
+ templateUrl: './auto-refresh.component.html',
+ styleUrls: ['./auto-refresh.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class AutoRefreshComponent {
private service = inject(AutoRefreshService);
diff --git a/packages/desktop-ui-lib/src/lib/recap/shared/ui/progress-status/progress-status.component.scss b/packages/desktop-ui-lib/src/lib/recap/shared/ui/progress-status/progress-status.component.scss
index 368fed70bbf..16b76b2331c 100644
--- a/packages/desktop-ui-lib/src/lib/recap/shared/ui/progress-status/progress-status.component.scss
+++ b/packages/desktop-ui-lib/src/lib/recap/shared/ui/progress-status/progress-status.component.scss
@@ -1,4 +1,4 @@
-@import "var";
+@use 'var' as *;
.wrapper {
display: flex;
diff --git a/packages/desktop-ui-lib/src/lib/recap/shared/ui/progress-status/progress-status.component.ts b/packages/desktop-ui-lib/src/lib/recap/shared/ui/progress-status/progress-status.component.ts
index 59798278df7..7ab10e85bdd 100644
--- a/packages/desktop-ui-lib/src/lib/recap/shared/ui/progress-status/progress-status.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/shared/ui/progress-status/progress-status.component.ts
@@ -8,9 +8,10 @@ export interface IProgressStatusDisplayValue {
}
@Component({
- selector: 'ngx-progress-status',
- templateUrl: './progress-status.component.html',
- styleUrls: ['./progress-status.component.scss']
+ selector: 'ngx-progress-status',
+ templateUrl: './progress-status.component.html',
+ styleUrls: ['./progress-status.component.scss'],
+ standalone: false
})
export class ProgressStatusComponent {
/*
diff --git a/packages/desktop-ui-lib/src/lib/recap/shared/ui/project-column-view/project-column-view.component.scss b/packages/desktop-ui-lib/src/lib/recap/shared/ui/project-column-view/project-column-view.component.scss
index 370909fdf35..ab9a5c4f1e5 100644
--- a/packages/desktop-ui-lib/src/lib/recap/shared/ui/project-column-view/project-column-view.component.scss
+++ b/packages/desktop-ui-lib/src/lib/recap/shared/ui/project-column-view/project-column-view.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host {
width: 100%;
diff --git a/packages/desktop-ui-lib/src/lib/recap/shared/ui/project-column-view/project-column-view.component.ts b/packages/desktop-ui-lib/src/lib/recap/shared/ui/project-column-view/project-column-view.component.ts
index cd1c71ddc1c..d84aef224f2 100644
--- a/packages/desktop-ui-lib/src/lib/recap/shared/ui/project-column-view/project-column-view.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/shared/ui/project-column-view/project-column-view.component.ts
@@ -3,9 +3,10 @@ import { IOrganizationProject } from '@gauzy/contracts';
import { DEFAULT_SVG } from '@gauzy/ui-core/common';
@Component({
- selector: 'ga-project-column-view',
- templateUrl: './project-column-view.component.html',
- styleUrls: ['./project-column-view.component.scss']
+ selector: 'ga-project-column-view',
+ templateUrl: './project-column-view.component.html',
+ styleUrls: ['./project-column-view.component.scss'],
+ standalone: false
})
export class ProjectColumnViewComponent {
fallbackSvg = DEFAULT_SVG;
diff --git a/packages/desktop-ui-lib/src/lib/recap/shared/ui/statistic/statistic.component.ts b/packages/desktop-ui-lib/src/lib/recap/shared/ui/statistic/statistic.component.ts
index 9b499dac250..52de32c4d3a 100644
--- a/packages/desktop-ui-lib/src/lib/recap/shared/ui/statistic/statistic.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/shared/ui/statistic/statistic.component.ts
@@ -9,10 +9,11 @@ export interface IStatisticItem {
}
@Component({
- selector: 'ngx-statistic',
- templateUrl: './statistic.component.html',
- styleUrls: ['./statistic.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-statistic',
+ templateUrl: './statistic.component.html',
+ styleUrls: ['./statistic.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class StatisticComponent {
private _items: IStatisticItem[] = [];
diff --git a/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-calendar/weekly-calendar.component.ts b/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-calendar/weekly-calendar.component.ts
index ee77f83dc2c..b8511e4d5e6 100644
--- a/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-calendar/weekly-calendar.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-calendar/weekly-calendar.component.ts
@@ -4,10 +4,11 @@ import { WeeklyRecapService } from '../../+state/weekly.service';
import { IDateRangePicker } from '../../../shared/features/date-range-picker/date-picker.interface';
@Component({
- selector: 'ngx-weekly-calendar',
- templateUrl: './weekly-calendar.component.html',
- styleUrls: ['./weekly-calendar.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-weekly-calendar',
+ templateUrl: './weekly-calendar.component.html',
+ styleUrls: ['./weekly-calendar.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class WeeklyCalendarComponent {
constructor(private readonly weeklyRecapService: WeeklyRecapService) {}
diff --git a/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-progress/weekly-progress.component.scss b/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-progress/weekly-progress.component.scss
index c29abe60153..1eb053d4fe1 100644
--- a/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-progress/weekly-progress.component.scss
+++ b/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-progress/weekly-progress.component.scss
@@ -1,4 +1,4 @@
-@import 'report';
+@use 'report' as *;
.activity {
display: flex;
diff --git a/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-progress/weekly-progress.component.ts b/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-progress/weekly-progress.component.ts
index 91441e0a8bc..c01e4596daa 100644
--- a/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-progress/weekly-progress.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-progress/weekly-progress.component.ts
@@ -4,10 +4,11 @@ import { WeeklyRecapService } from '../../+state/weekly.service';
import { updateWeekDays } from '../../../shared/features/date-range-picker';
@Component({
- selector: 'ngx-weekly-progress',
- templateUrl: './weekly-progress.component.html',
- styleUrls: ['./weekly-progress.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-weekly-progress',
+ templateUrl: './weekly-progress.component.html',
+ styleUrls: ['./weekly-progress.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class WeeklyProgressComponent {
public weekDays: string[] = [];
diff --git a/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-recap/weekly-recap.component.scss b/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-recap/weekly-recap.component.scss
index 2d05816ca92..ee87d4456ab 100644
--- a/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-recap/weekly-recap.component.scss
+++ b/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-recap/weekly-recap.component.scss
@@ -1,4 +1,4 @@
-@import '../../../features/recap/recap.component.scss';
+@forward '../../../features/recap/recap.component';
.recap-weekly {
display: flex;
diff --git a/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-recap/weekly-recap.component.ts b/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-recap/weekly-recap.component.ts
index 4306520d33d..4b3a37fde38 100644
--- a/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-recap/weekly-recap.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-recap/weekly-recap.component.ts
@@ -8,10 +8,11 @@ import { LoggerService } from '../../../../electron/services';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-weekly-recap',
- templateUrl: './weekly-recap.component.html',
- styleUrls: ['./weekly-recap.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-weekly-recap',
+ templateUrl: './weekly-recap.component.html',
+ styleUrls: ['./weekly-recap.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class WeeklyRecapComponent implements OnInit {
public isLoading$ = new BehaviorSubject(false);
diff --git a/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-statistic/weekly-statistic.component.ts b/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-statistic/weekly-statistic.component.ts
index cf1e2103b9e..a85ee783dc5 100644
--- a/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-statistic/weekly-statistic.component.ts
+++ b/packages/desktop-ui-lib/src/lib/recap/weekly/features/weekly-statistic/weekly-statistic.component.ts
@@ -3,10 +3,11 @@ import { map } from 'rxjs';
import { WeeklyRecapService } from '../../+state/weekly.service';
@Component({
- selector: 'ngx-weekly-statistic',
- templateUrl: './weekly-statistic.component.html',
- styleUrls: ['./weekly-statistic.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-weekly-statistic',
+ templateUrl: './weekly-statistic.component.html',
+ styleUrls: ['./weekly-statistic.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class WeeklyStatisticComponent {
constructor(private readonly weeklyRecapService: WeeklyRecapService) {}
diff --git a/packages/desktop-ui-lib/src/lib/screen-capture/screen-capture.component.ts b/packages/desktop-ui-lib/src/lib/screen-capture/screen-capture.component.ts
index 92e86b8fa91..a738458d557 100644
--- a/packages/desktop-ui-lib/src/lib/screen-capture/screen-capture.component.ts
+++ b/packages/desktop-ui-lib/src/lib/screen-capture/screen-capture.component.ts
@@ -9,9 +9,10 @@ import { ElectronService } from '../electron/services';
import { GAUZY_ENV } from '../constants';
@Component({
- selector: 'ngx-screen-capture',
- templateUrl: './screen-capture.component.html',
- styleUrls: ['./screen-capture.component.scss'],
+ selector: 'ngx-screen-capture',
+ templateUrl: './screen-capture.component.html',
+ styleUrls: ['./screen-capture.component.scss'],
+ standalone: false
})
export class ScreenCaptureComponent implements OnInit {
private _screenCaptureUrl$: BehaviorSubject;
diff --git a/packages/desktop-ui-lib/src/lib/server-dashboard/server-dashboard.component.ts b/packages/desktop-ui-lib/src/lib/server-dashboard/server-dashboard.component.ts
index 93561262491..d96adee63f9 100644
--- a/packages/desktop-ui-lib/src/lib/server-dashboard/server-dashboard.component.ts
+++ b/packages/desktop-ui-lib/src/lib/server-dashboard/server-dashboard.component.ts
@@ -26,7 +26,8 @@ export enum ServerStatus {
selector: 'ngx-server-dashboard',
templateUrl: './server-dashboard.component.html',
styleUrls: ['./server-dashboard.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class ServerDashboardComponent implements OnInit, AfterViewInit {
@ViewChild('logBox') logBox: ElementRef;
@@ -106,7 +107,7 @@ export class ServerDashboardComponent implements OnInit, AfterViewInit {
ngAfterViewInit(): void {
this.electronService.ipcRenderer.on('dashboard_ready', (event, arg) => {
this._ngZone.run(() => {
- if (!!arg.setting?.autoStart ?? true) {
+ if (arg.setting?.autoStart ?? true) {
this.runServer();
}
});
diff --git a/packages/desktop-ui-lib/src/lib/server-down/server-down.page.ts b/packages/desktop-ui-lib/src/lib/server-down/server-down.page.ts
index 3a81f19e04e..e43f0eb028d 100644
--- a/packages/desktop-ui-lib/src/lib/server-down/server-down.page.ts
+++ b/packages/desktop-ui-lib/src/lib/server-down/server-down.page.ts
@@ -9,8 +9,9 @@ import { ServerConnectionService, Store } from '../services';
@UntilDestroy({ checkProperties: true })
@Component({
- styleUrls: ['./server-down.page.scss'],
- templateUrl: 'server-down.page.html'
+ styleUrls: ['./server-down.page.scss'],
+ templateUrl: 'server-down.page.html',
+ standalone: false
})
export class ServerDownPage implements OnInit, OnDestroy {
public noInternetLogo: string;
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/add-plugin/add-plugin.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/add-plugin/add-plugin.component.ts
index faf83516cd7..7500978c8b5 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/add-plugin/add-plugin.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/add-plugin/add-plugin.component.ts
@@ -9,9 +9,10 @@ import { PluginInstallationQuery } from '../plugin-marketplace/+state/queries/pl
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-add-plugin',
- templateUrl: './add-plugin.component.html',
- styleUrls: ['./add-plugin.component.scss']
+ selector: 'ngx-add-plugin',
+ templateUrl: './add-plugin.component.html',
+ styleUrls: ['./add-plugin.component.scss'],
+ standalone: false
})
export class AddPluginComponent {
private readonly dialogRef = inject(NbDialogRef);
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-layout/plugin-layout.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-layout/plugin-layout.component.ts
index 463deab1d75..e0717ed4d2f 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-layout/plugin-layout.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-layout/plugin-layout.component.ts
@@ -4,9 +4,10 @@ import { TranslateService } from '@ngx-translate/core';
import { Subject, takeUntil } from 'rxjs';
@Component({
- selector: 'ngx-plugin-layout',
- templateUrl: './plugin-layout.component.html',
- styleUrls: ['./plugin-layout.component.scss']
+ selector: 'ngx-plugin-layout',
+ templateUrl: './plugin-layout.component.html',
+ styleUrls: ['./plugin-layout.component.scss'],
+ standalone: false
})
export class PluginLayoutComponent implements OnInit, OnDestroy {
public tabs: NbRouteTab[] = [];
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-list/plugin-list.component.scss b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-list/plugin-list.component.scss
index 849ef7e2fea..69b564eb27f 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-list/plugin-list.component.scss
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-list/plugin-list.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-table';
+@use 'gauzy/_gauzy-table' as *;
.custom-table {
background-color: var(--gauzy-card-2);
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-list/plugin-list.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-list/plugin-list.component.ts
index a28238923df..0d71b70b3c1 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-list/plugin-list.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-list/plugin-list.component.ts
@@ -18,9 +18,10 @@ import { PluginInstallationQuery } from '../plugin-marketplace/+state/queries/pl
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-plugin-list',
- templateUrl: './plugin-list.component.html',
- styleUrls: ['./plugin-list.component.scss']
+ selector: 'ngx-plugin-list',
+ templateUrl: './plugin-list.component.html',
+ styleUrls: ['./plugin-list.component.scss'],
+ standalone: false
})
export class PluginListComponent implements OnInit, OnDestroy {
private readonly translateService = inject(TranslateService);
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-list/plugin-status/plugin-status.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-list/plugin-status/plugin-status.component.ts
index 12ebe13f039..4871ca9ca6e 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-list/plugin-status/plugin-status.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-list/plugin-status/plugin-status.component.ts
@@ -1,9 +1,10 @@
import { Component } from '@angular/core';
@Component({
- selector: 'ngx-plugin-status',
- templateUrl: './plugin-status.component.html',
- styleUrls: ['./plugin-status.component.scss']
+ selector: 'ngx-plugin-status',
+ templateUrl: './plugin-status.component.html',
+ styleUrls: ['./plugin-status.component.scss'],
+ standalone: false
})
export class PluginStatusComponent {
public rowData: any;
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-list/plugin-update/plugin-update.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-list/plugin-update/plugin-update.component.ts
index d36c254f824..144a1d0bec5 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-list/plugin-update/plugin-update.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-list/plugin-update/plugin-update.component.ts
@@ -1,9 +1,10 @@
import { Component } from '@angular/core';
@Component({
- selector: 'ngx-plugin-update',
- templateUrl: './plugin-update.component.html',
- styleUrls: ['./plugin-update.component.scss']
+ selector: 'ngx-plugin-update',
+ templateUrl: './plugin-update.component.html',
+ styleUrls: ['./plugin-update.component.scss'],
+ standalone: false
})
export class PluginUpdateComponent {
public rowData: any;
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-detail/plugin-marketplace-detail.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-detail/plugin-marketplace-detail.component.ts
index 01f6e2516ad..706cecb2937 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-detail/plugin-marketplace-detail.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-detail/plugin-marketplace-detail.component.ts
@@ -21,6 +21,7 @@ import { PluginVersionActions } from '../+state/actions/plugin-version.action';
selector: 'lib-plugin-marketplace-detail',
templateUrl: './plugin-marketplace-detail.component.html',
styleUrls: ['./plugin-marketplace-detail.component.scss'],
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class PluginMarketplaceDetailComponent implements OnInit {
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/dialog-create-version/dialog-create-version.component.scss b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/dialog-create-version/dialog-create-version.component.scss
index bd923e2c67e..2c295006eb8 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/dialog-create-version/dialog-create-version.component.scss
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/dialog-create-version/dialog-create-version.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
// Custom variables
$card-border-radius: 0.75rem;
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/dialog-create-version/dialog-create-version.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/dialog-create-version/dialog-create-version.component.ts
index 3e8d4d2e506..128fd9e2c83 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/dialog-create-version/dialog-create-version.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/dialog-create-version/dialog-create-version.component.ts
@@ -11,6 +11,7 @@ import { ToastrNotificationService } from '../../../../../../services';
selector: 'lib-dialog-create-version',
templateUrl: './dialog-create-version.component.html',
styleUrls: ['./dialog-create-version.component.scss'],
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class DialogCreateVersionComponent implements OnInit, OnDestroy {
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/plugin-marketplace-item.component.scss b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/plugin-marketplace-item.component.scss
index a19f66b21a6..ddd65564f6a 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/plugin-marketplace-item.component.scss
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/plugin-marketplace-item.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-table';
+@use 'gauzy/_gauzy-table' as *;
:host {
display: block;
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/plugin-marketplace-item.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/plugin-marketplace-item.component.ts
index 3b8493c229c..6f917519e85 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/plugin-marketplace-item.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/plugin-marketplace-item.component.ts
@@ -4,7 +4,6 @@ import { NbDialogService } from '@nebular/theme';
import { TranslateService } from '@ngx-translate/core';
import { BehaviorSubject, Observable, Subject, tap } from 'rxjs';
import { catchError, concatMap, filter, take, takeUntil } from 'rxjs/operators';
-
import {
ICDNSource,
IGauzySource,
@@ -35,6 +34,7 @@ import { DialogCreateVersionComponent } from './dialog-create-version/dialog-cre
selector: 'gauzy-plugin-marketplace-item',
templateUrl: './plugin-marketplace-item.component.html',
styleUrls: ['./plugin-marketplace-item.component.scss'],
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class PluginMarketplaceItemComponent implements OnInit, OnDestroy {
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/version-history/version-history.component.scss b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/version-history/version-history.component.scss
index e80baf38473..82ff315e1cf 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/version-history/version-history.component.scss
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/version-history/version-history.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-table';
+@use 'gauzy/_gauzy-table' as *;
:host {
nb-card,
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/version-history/version-history.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/version-history/version-history.component.ts
index a25702967fe..37fd0daa254 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/version-history/version-history.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/version-history/version-history.component.ts
@@ -16,6 +16,7 @@ import { DialogCreateVersionComponent } from '../dialog-create-version/dialog-cr
selector: 'lib-version-history',
templateUrl: './version-history.component.html',
styleUrls: ['./version-history.component.scss'],
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class VersionHistoryComponent implements OnInit, OnDestroy {
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/version-selector/version-selector.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/version-selector/version-selector.component.ts
index 06ec27b82d8..5204b79bf60 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/version-selector/version-selector.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-item/version-selector/version-selector.component.ts
@@ -12,6 +12,7 @@ import { PluginVersionQuery } from '../../+state/queries/plugin-version.query';
selector: 'gauzy-version-selector',
templateUrl: './version-selector.component.html',
styleUrls: ['./version-selector.component.scss'],
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class VersionSelectorComponent implements OnInit, OnDestroy {
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/file-upload/file-upload.component.scss b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/file-upload/file-upload.component.scss
index dd586fc9aa5..e2459f49f62 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/file-upload/file-upload.component.scss
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/file-upload/file-upload.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.file-upload-area {
display: flex;
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/file-upload/file-upload.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/file-upload/file-upload.component.ts
index 9d5f85a16d9..f1cb86a4a9b 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/file-upload/file-upload.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/file-upload/file-upload.component.ts
@@ -4,6 +4,7 @@ import { ChangeDetectionStrategy, Component, ElementRef, EventEmitter, Input, Ou
selector: 'lib-file-upload',
templateUrl: './file-upload.component.html',
styleUrls: ['./file-upload.component.scss'],
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class FileUploadComponent {
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/form-row/form-row.component.scss b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/form-row/form-row.component.scss
index 839ac0bfb35..097fcf332ab 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/form-row/form-row.component.scss
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/form-row/form-row.component.scss
@@ -1,4 +1,5 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
+
// Custom variables
$card-border-radius: 0.75rem;
$input-padding: 0.75rem 1rem;
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/form-row/form-row.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/form-row/form-row.component.ts
index 8c5d2bd0401..32b8b5d8376 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/form-row/form-row.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/form-row/form-row.component.ts
@@ -4,6 +4,7 @@ import { ChangeDetectionStrategy, Component } from '@angular/core';
selector: 'lib-form-row',
templateUrl: './form-row.component.html',
styleUrls: ['./form-row.component.scss'],
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class FormRowComponent {}
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/form-section/form-section.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/form-section/form-section.component.ts
index ec53208e34b..d2be44759a7 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/form-section/form-section.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/form-section/form-section.component.ts
@@ -4,6 +4,7 @@ import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
selector: 'lib-form-section',
templateUrl: './form-section.component.html',
styleUrls: ['./form-section.component.scss'],
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class FormSectionComponent {
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-basic-information/plugin-basic-information.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-basic-information/plugin-basic-information.component.ts
index d895c9c0497..57450eb45b3 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-basic-information/plugin-basic-information.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-basic-information/plugin-basic-information.component.ts
@@ -5,6 +5,7 @@ import { FormGroup } from '@angular/forms';
selector: 'lib-plugin-basic-information',
templateUrl: './plugin-basic-information.component.html',
styleUrls: ['./plugin-basic-information.component.scss'],
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class PluginBasicInformationComponent {
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-marketplace-upload.component.scss b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-marketplace-upload.component.scss
index e6c075bef13..ef9a8996c5e 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-marketplace-upload.component.scss
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-marketplace-upload.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
// Custom variables
$card-border-radius: 0.75rem;
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-marketplace-upload.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-marketplace-upload.component.ts
index 703c7bc3a3b..f6982bd39d0 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-marketplace-upload.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-marketplace-upload.component.ts
@@ -11,6 +11,7 @@ import { ToastrNotificationService } from '../../../../../services';
selector: 'lib-plugin-marketplace-upload',
templateUrl: './plugin-marketplace-upload.component.html',
styleUrls: ['./plugin-marketplace-upload.component.scss'],
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class PluginMarketplaceUploadComponent implements OnInit, OnDestroy {
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-metadata/plugin-metadata.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-metadata/plugin-metadata.component.ts
index a69dc13ecbb..273655c6c78 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-metadata/plugin-metadata.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-metadata/plugin-metadata.component.ts
@@ -5,6 +5,7 @@ import { FormGroup } from '@angular/forms';
selector: 'lib-plugin-metadata',
templateUrl: './plugin-metadata.component.html',
styleUrls: ['./plugin-metadata.component.scss'],
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class PluginMetadataComponent {
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-source/plugin-source.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-source/plugin-source.component.ts
index 94993df0d76..3084b78f65d 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-source/plugin-source.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-source/plugin-source.component.ts
@@ -5,6 +5,7 @@ import { FormGroup } from '@angular/forms';
selector: 'lib-plugin-source',
templateUrl: './plugin-source.component.html',
styleUrls: ['./plugin-source.component.scss'],
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class PluginSourceComponent {
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-version/plugin-version.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-version/plugin-version.component.ts
index ea82d64108f..87cebbb13f8 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-version/plugin-version.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace-upload/plugin-version/plugin-version.component.ts
@@ -6,6 +6,7 @@ import { NbDateService } from '@nebular/theme';
selector: 'lib-plugin-version',
templateUrl: './plugin-version.component.html',
styleUrls: ['./plugin-version.component.scss'],
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class PluginVersionComponent {
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace.component.ts
index 971300a9254..ad1b833229a 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin-marketplace/plugin-marketplace.component.ts
@@ -14,7 +14,8 @@ import { Store } from '../../../../services';
@Component({
selector: 'lib-plugin-marketplace',
templateUrl: './plugin-marketplace.component.html',
- styleUrls: ['./plugin-marketplace.component.scss']
+ styleUrls: ['./plugin-marketplace.component.scss'],
+ standalone: false
})
export class PluginMarketplaceComponent implements OnInit, OnDestroy {
private skip = 1;
diff --git a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin/plugin.component.ts b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin/plugin.component.ts
index c8a0e6404e0..14aa6b3ba9f 100644
--- a/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin/plugin.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/plugins/component/plugin/plugin.component.ts
@@ -8,9 +8,10 @@ import { PluginLoaderService } from '../../services/plugin-loader.service';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-plugin',
- templateUrl: './plugin.component.html',
- styleUrls: ['./plugin.component.scss']
+ selector: 'ngx-plugin',
+ templateUrl: './plugin.component.html',
+ styleUrls: ['./plugin.component.scss'],
+ standalone: false
})
export class PluginComponent implements AfterViewInit {
private readonly loaderService = inject(PluginLoaderService);
diff --git a/packages/desktop-ui-lib/src/lib/settings/settings.component.scss b/packages/desktop-ui-lib/src/lib/settings/settings.component.scss
index e8c0ce7ff2a..31715e4238e 100644
--- a/packages/desktop-ui-lib/src/lib/settings/settings.component.scss
+++ b/packages/desktop-ui-lib/src/lib/settings/settings.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
.center-card {
text-align: center;
diff --git a/packages/desktop-ui-lib/src/lib/settings/settings.component.ts b/packages/desktop-ui-lib/src/lib/settings/settings.component.ts
index de2854ee4c5..bcd5ba0f28e 100644
--- a/packages/desktop-ui-lib/src/lib/settings/settings.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/settings.component.ts
@@ -18,16 +18,17 @@ import { TimeTrackerService } from '../time-tracker/time-tracker.service';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-settings',
- templateUrl: './settings.component.html',
- styleUrls: ['./settings.component.scss'],
- styles: [
- `
+ selector: 'ngx-settings',
+ templateUrl: './settings.component.html',
+ styleUrls: ['./settings.component.scss'],
+ styles: [
+ `
:host nb-tab {
padding: 1rem;
}
`
- ]
+ ],
+ standalone: false
})
export class SettingsComponent implements OnInit, AfterViewInit, OnDestroy {
@ViewChild('selectRef') selectProjectElement: ElementRef;
diff --git a/packages/desktop-ui-lib/src/lib/settings/ssl/ssl.component.scss b/packages/desktop-ui-lib/src/lib/settings/ssl/ssl.component.scss
index f622d0e930b..f021ab308c9 100644
--- a/packages/desktop-ui-lib/src/lib/settings/ssl/ssl.component.scss
+++ b/packages/desktop-ui-lib/src/lib/settings/ssl/ssl.component.scss
@@ -1,4 +1,4 @@
-@import '../settings.component';
+@forward '../settings.component';
.ga-flex {
display: flex;
diff --git a/packages/desktop-ui-lib/src/lib/settings/ssl/ssl.component.ts b/packages/desktop-ui-lib/src/lib/settings/ssl/ssl.component.ts
index da4cd555f81..47f204fde15 100644
--- a/packages/desktop-ui-lib/src/lib/settings/ssl/ssl.component.ts
+++ b/packages/desktop-ui-lib/src/lib/settings/ssl/ssl.component.ts
@@ -9,9 +9,10 @@ interface ICheckSslResponse {
}
@Component({
- selector: 'gauzy-ssl',
- templateUrl: './ssl.component.html',
- styleUrls: ['./ssl.component.scss']
+ selector: 'gauzy-ssl',
+ templateUrl: './ssl.component.html',
+ styleUrls: ['./ssl.component.scss'],
+ standalone: false
})
export class SslComponent implements OnInit {
public isCheckSsl$: BehaviorSubject;
diff --git a/packages/desktop-ui-lib/src/lib/setup/setup.component.ts b/packages/desktop-ui-lib/src/lib/setup/setup.component.ts
index 028e7b66062..1c59ef71534 100644
--- a/packages/desktop-ui-lib/src/lib/setup/setup.component.ts
+++ b/packages/desktop-ui-lib/src/lib/setup/setup.component.ts
@@ -21,10 +21,11 @@ import { ErrorHandlerService, Store, ToastrNotificationService } from '../servic
import { SetupService } from './setup.service';
@Component({
- selector: 'ngx-setup',
- templateUrl: './setup.component.html',
- styleUrls: ['./setup.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-setup',
+ templateUrl: './setup.component.html',
+ styleUrls: ['./setup.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class SetupComponent implements OnInit, OnDestroy {
@ViewChild('dialogOpenBtn') btnDialogOpen: ElementRef;
diff --git a/packages/desktop-ui-lib/src/lib/shared/components/abstract/selector.abstract.ts b/packages/desktop-ui-lib/src/lib/shared/components/abstract/selector.abstract.ts
index ef1be0edd60..7a4d36c9bc2 100644
--- a/packages/desktop-ui-lib/src/lib/shared/components/abstract/selector.abstract.ts
+++ b/packages/desktop-ui-lib/src/lib/shared/components/abstract/selector.abstract.ts
@@ -7,7 +7,8 @@ import { SelectorService } from '../../+state/selector.service';
@UntilDestroy({ checkProperties: true })
@Component({
- template: ''
+ template: '',
+ standalone: false
})
export abstract class AbstractSelectorComponent implements ControlValueAccessor {
public search$ = new Subject();
diff --git a/packages/desktop-ui-lib/src/lib/shared/components/ui/avatar/avatar.component.scss b/packages/desktop-ui-lib/src/lib/shared/components/ui/avatar/avatar.component.scss
index 2a73e626d26..4cea7f93fb9 100644
--- a/packages/desktop-ui-lib/src/lib/shared/components/ui/avatar/avatar.component.scss
+++ b/packages/desktop-ui-lib/src/lib/shared/components/ui/avatar/avatar.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
@mixin avatarMixin($radius: var(--border-radius), $imageSize: 48px) {
.inner-wrapper {
diff --git a/packages/desktop-ui-lib/src/lib/shared/components/ui/avatar/avatar.component.ts b/packages/desktop-ui-lib/src/lib/shared/components/ui/avatar/avatar.component.ts
index dccbba43948..7accb6ae518 100644
--- a/packages/desktop-ui-lib/src/lib/shared/components/ui/avatar/avatar.component.ts
+++ b/packages/desktop-ui-lib/src/lib/shared/components/ui/avatar/avatar.component.ts
@@ -4,9 +4,10 @@ import { BehaviorSubject, Observable } from 'rxjs';
import { map } from 'rxjs/operators';
@Component({
- selector: 'ngx-avatar',
- templateUrl: './avatar.component.html',
- styleUrls: ['./avatar.component.scss']
+ selector: 'ngx-avatar',
+ templateUrl: './avatar.component.html',
+ styleUrls: ['./avatar.component.scss'],
+ standalone: false
})
export class AvatarComponent implements OnInit {
public online$: Observable;
diff --git a/packages/desktop-ui-lib/src/lib/shared/components/ui/error-message/error-message.component.ts b/packages/desktop-ui-lib/src/lib/shared/components/ui/error-message/error-message.component.ts
index c7b6be2dc29..fd30cf6a79b 100644
--- a/packages/desktop-ui-lib/src/lib/shared/components/ui/error-message/error-message.component.ts
+++ b/packages/desktop-ui-lib/src/lib/shared/components/ui/error-message/error-message.component.ts
@@ -2,9 +2,10 @@ import { Component, Input } from '@angular/core';
import { FormControl, NgModel } from '@angular/forms';
@Component({
- selector: 'ngx-error-message',
- templateUrl: './error-message.component.html',
- styleUrls: ['./error-message.component.scss']
+ selector: 'ngx-error-message',
+ templateUrl: './error-message.component.html',
+ styleUrls: ['./error-message.component.scss'],
+ standalone: false
})
export class ErrorMessageComponent {
@Input() field: FormControl | NgModel;
diff --git a/packages/desktop-ui-lib/src/lib/shared/components/ui/select/select.component.ts b/packages/desktop-ui-lib/src/lib/shared/components/ui/select/select.component.ts
index 22491ea7264..12b1584938e 100644
--- a/packages/desktop-ui-lib/src/lib/shared/components/ui/select/select.component.ts
+++ b/packages/desktop-ui-lib/src/lib/shared/components/ui/select/select.component.ts
@@ -3,17 +3,18 @@ import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';
import { Subject } from 'rxjs';
@Component({
- selector: 'gauzy-select',
- templateUrl: './select.component.html',
- styleUrls: ['./select.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush,
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => SelectComponent),
- multi: true
- }
- ]
+ selector: 'gauzy-select',
+ templateUrl: './select.component.html',
+ styleUrls: ['./select.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => SelectComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class SelectComponent implements ControlValueAccessor {
private _selectedItem: string = null;
diff --git a/packages/desktop-ui-lib/src/lib/shared/components/ui/text-area/text-area.component.ts b/packages/desktop-ui-lib/src/lib/shared/components/ui/text-area/text-area.component.ts
index 8cb33d822bb..08ee73552c3 100644
--- a/packages/desktop-ui-lib/src/lib/shared/components/ui/text-area/text-area.component.ts
+++ b/packages/desktop-ui-lib/src/lib/shared/components/ui/text-area/text-area.component.ts
@@ -1,10 +1,11 @@
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
@Component({
- selector: 'gauzy-text-area',
- templateUrl: './text-area.component.html',
- styleUrls: ['./text-area.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'gauzy-text-area',
+ templateUrl: './text-area.component.html',
+ styleUrls: ['./text-area.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class TextAreaComponent {
private _text: string = '';
diff --git a/packages/desktop-ui-lib/src/lib/shared/features/client-selector/client-selector.component.ts b/packages/desktop-ui-lib/src/lib/shared/features/client-selector/client-selector.component.ts
index 714454ba6e9..acf01a6348a 100644
--- a/packages/desktop-ui-lib/src/lib/shared/features/client-selector/client-selector.component.ts
+++ b/packages/desktop-ui-lib/src/lib/shared/features/client-selector/client-selector.component.ts
@@ -13,17 +13,18 @@ import { ClientSelectorStore } from './+state/client-selector.store';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-client-selector',
- templateUrl: './client-selector.component.html',
- styleUrls: ['./client-selector.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush,
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => ClientSelectorComponent),
- multi: true
- }
- ]
+ selector: 'gauzy-client-selector',
+ templateUrl: './client-selector.component.html',
+ styleUrls: ['./client-selector.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => ClientSelectorComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class ClientSelectorComponent extends AbstractSelectorComponent implements OnInit {
constructor(
diff --git a/packages/desktop-ui-lib/src/lib/shared/features/note/note.component.ts b/packages/desktop-ui-lib/src/lib/shared/features/note/note.component.ts
index a561d669eab..cd059a43d4b 100644
--- a/packages/desktop-ui-lib/src/lib/shared/features/note/note.component.ts
+++ b/packages/desktop-ui-lib/src/lib/shared/features/note/note.component.ts
@@ -7,17 +7,18 @@ import { NoteSelectorStore } from './+state/note-selector.store';
import { NoteService } from './+state/note.service';
@Component({
- selector: 'gauzy-note',
- templateUrl: './note.component.html',
- styleUrls: ['./note.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush,
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => NoteComponent),
- multi: true
- }
- ]
+ selector: 'gauzy-note',
+ templateUrl: './note.component.html',
+ styleUrls: ['./note.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => NoteComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class NoteComponent implements ControlValueAccessor {
private onChange: (value: string) => void;
diff --git a/packages/desktop-ui-lib/src/lib/shared/features/project-selector/project-selector.component.ts b/packages/desktop-ui-lib/src/lib/shared/features/project-selector/project-selector.component.ts
index 117ad3a8d49..b4dd0cc58d9 100644
--- a/packages/desktop-ui-lib/src/lib/shared/features/project-selector/project-selector.component.ts
+++ b/packages/desktop-ui-lib/src/lib/shared/features/project-selector/project-selector.component.ts
@@ -14,17 +14,18 @@ import { ProjectSelectorStore } from './+state/project-selector.store';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-project-selector',
- templateUrl: './project-selector.component.html',
- styleUrls: ['./project-selector.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush,
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => ProjectSelectorComponent),
- multi: true
- }
- ]
+ selector: 'gauzy-project-selector',
+ templateUrl: './project-selector.component.html',
+ styleUrls: ['./project-selector.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => ProjectSelectorComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class ProjectSelectorComponent extends AbstractSelectorComponent implements OnInit {
constructor(
diff --git a/packages/desktop-ui-lib/src/lib/shared/features/task-selector/task-selector.component.ts b/packages/desktop-ui-lib/src/lib/shared/features/task-selector/task-selector.component.ts
index a450cd339f4..992c1c263e4 100644
--- a/packages/desktop-ui-lib/src/lib/shared/features/task-selector/task-selector.component.ts
+++ b/packages/desktop-ui-lib/src/lib/shared/features/task-selector/task-selector.component.ts
@@ -12,17 +12,18 @@ import { TaskSelectorStore } from './+state/task-selector.store';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-task-selector',
- templateUrl: './task-selector.component.html',
- styleUrls: ['./task-selector.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush,
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TaskSelectorComponent),
- multi: true
- }
- ]
+ selector: 'gauzy-task-selector',
+ templateUrl: './task-selector.component.html',
+ styleUrls: ['./task-selector.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TaskSelectorComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TaskSelectorComponent extends AbstractSelectorComponent implements OnInit {
constructor(
diff --git a/packages/desktop-ui-lib/src/lib/shared/features/team-selector/team-selector.component.ts b/packages/desktop-ui-lib/src/lib/shared/features/team-selector/team-selector.component.ts
index 65a387f205e..b5f683f4525 100644
--- a/packages/desktop-ui-lib/src/lib/shared/features/team-selector/team-selector.component.ts
+++ b/packages/desktop-ui-lib/src/lib/shared/features/team-selector/team-selector.component.ts
@@ -14,17 +14,18 @@ import { TeamSelectorStore } from './+state/team-selector.store';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-team-selector',
- templateUrl: './team-selector.component.html',
- styleUrls: ['./team-selector.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush,
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TeamSelectorComponent),
- multi: true
- }
- ]
+ selector: 'gauzy-team-selector',
+ templateUrl: './team-selector.component.html',
+ styleUrls: ['./team-selector.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TeamSelectorComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TeamSelectorComponent extends AbstractSelectorComponent implements OnInit {
constructor(
diff --git a/packages/desktop-ui-lib/src/lib/shared/features/time-tracker-form/time-tracker-form.component.ts b/packages/desktop-ui-lib/src/lib/shared/features/time-tracker-form/time-tracker-form.component.ts
index 04536f1e313..ed15ffbc970 100644
--- a/packages/desktop-ui-lib/src/lib/shared/features/time-tracker-form/time-tracker-form.component.ts
+++ b/packages/desktop-ui-lib/src/lib/shared/features/time-tracker-form/time-tracker-form.component.ts
@@ -6,10 +6,11 @@ import { IgnitionState, TimerStartMode, TimeTrackerStore } from '../../../time-t
import { TeamSelectorService } from './../team-selector/+state/team-selector.service';
@Component({
- selector: 'gauzy-time-tracker-form',
- templateUrl: './time-tracker-form.component.html',
- styleUrls: ['./time-tracker-form.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'gauzy-time-tracker-form',
+ templateUrl: './time-tracker-form.component.html',
+ styleUrls: ['./time-tracker-form.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class TimeTrackerFormComponent {
constructor(
diff --git a/packages/desktop-ui-lib/src/lib/splash-screen/splash-screen.component.scss b/packages/desktop-ui-lib/src/lib/splash-screen/splash-screen.component.scss
index 83909c81e58..90fe94b7cfb 100644
--- a/packages/desktop-ui-lib/src/lib/splash-screen/splash-screen.component.scss
+++ b/packages/desktop-ui-lib/src/lib/splash-screen/splash-screen.component.scss
@@ -1,4 +1,4 @@
-@import '../dialogs/about/about.component.scss';
+@forward '../dialogs/about/about.component';
.ga-logo {
img {
diff --git a/packages/desktop-ui-lib/src/lib/splash-screen/splash-screen.component.ts b/packages/desktop-ui-lib/src/lib/splash-screen/splash-screen.component.ts
index 2a11e6885f9..129b96fa7f8 100644
--- a/packages/desktop-ui-lib/src/lib/splash-screen/splash-screen.component.ts
+++ b/packages/desktop-ui-lib/src/lib/splash-screen/splash-screen.component.ts
@@ -7,9 +7,10 @@ import { LanguageElectronService } from '../language/language-electron.service';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-splash-screen',
- templateUrl: './splash-screen.component.html',
- styleUrls: ['./splash-screen.component.scss']
+ selector: 'ngx-splash-screen',
+ templateUrl: './splash-screen.component.html',
+ styleUrls: ['./splash-screen.component.scss'],
+ standalone: false
})
export class SplashScreenComponent implements OnInit {
private _application = {
diff --git a/packages/desktop-ui-lib/src/lib/tasks/tasks.component.scss b/packages/desktop-ui-lib/src/lib/tasks/tasks.component.scss
index e1714fc8cda..073831d0dae 100644
--- a/packages/desktop-ui-lib/src/lib/tasks/tasks.component.scss
+++ b/packages/desktop-ui-lib/src/lib/tasks/tasks.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
:host {
nb-card {
diff --git a/packages/desktop-ui-lib/src/lib/tasks/tasks.component.ts b/packages/desktop-ui-lib/src/lib/tasks/tasks.component.ts
index 11743fca7cf..82cbcff54ca 100644
--- a/packages/desktop-ui-lib/src/lib/tasks/tasks.component.ts
+++ b/packages/desktop-ui-lib/src/lib/tasks/tasks.component.ts
@@ -28,9 +28,10 @@ import { CkEditorConfig, ColorAdapter } from '../utils';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-tasks',
- templateUrl: './tasks.component.html',
- styleUrls: ['./tasks.component.scss']
+ selector: 'ngx-tasks',
+ templateUrl: './tasks.component.html',
+ styleUrls: ['./tasks.component.scss'],
+ standalone: false
})
export class TasksComponent implements OnInit {
@Input() userData: IUserOrganization = this.store.user as any;
diff --git a/packages/desktop-ui-lib/src/lib/theme-selector/switch-theme/switch-theme.component.scss b/packages/desktop-ui-lib/src/lib/theme-selector/switch-theme/switch-theme.component.scss
index 0023d6cffc7..a3744d50345 100644
--- a/packages/desktop-ui-lib/src/lib/theme-selector/switch-theme/switch-theme.component.scss
+++ b/packages/desktop-ui-lib/src/lib/theme-selector/switch-theme/switch-theme.component.scss
@@ -1,4 +1,4 @@
-@import 'var';
+@use 'var' as *;
:host .switch-container {
display: flex;
diff --git a/packages/desktop-ui-lib/src/lib/theme-selector/switch-theme/switch-theme.component.ts b/packages/desktop-ui-lib/src/lib/theme-selector/switch-theme/switch-theme.component.ts
index 102e7e135f3..1121f46c8a3 100644
--- a/packages/desktop-ui-lib/src/lib/theme-selector/switch-theme/switch-theme.component.ts
+++ b/packages/desktop-ui-lib/src/lib/theme-selector/switch-theme/switch-theme.component.ts
@@ -5,10 +5,11 @@ import { ElectronService } from '../../electron/services';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-switch-theme',
- templateUrl: './switch-theme.component.html',
- styleUrls: ['./switch-theme.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'gauzy-switch-theme',
+ templateUrl: './switch-theme.component.html',
+ styleUrls: ['./switch-theme.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class SwitchThemeComponent implements OnInit {
private _switch$ = new BehaviorSubject(true);
diff --git a/packages/desktop-ui-lib/src/lib/theme/index.ts b/packages/desktop-ui-lib/src/lib/theme/index.ts
index 4dcafbd6553..ee08da1d07e 100644
--- a/packages/desktop-ui-lib/src/lib/theme/index.ts
+++ b/packages/desktop-ui-lib/src/lib/theme/index.ts
@@ -1,5 +1,5 @@
import { CommonModule } from '@angular/common';
-import { APP_INITIALIZER, NgModule } from '@angular/core';
+import { NgModule, inject, provideAppInitializer } from '@angular/core';
import { ElectronService } from '../electron/services';
import {
NbThemeModule,
@@ -22,12 +22,10 @@ import {
],
providers: [
NbThemeService,
- {
- provide: APP_INITIALIZER,
- useFactory: ThemeInitializerFactory,
- deps: [NbThemeService, ElectronService],
- multi: true
- }
+ provideAppInitializer(() => {
+ const initializerFn = (ThemeInitializerFactory)(inject(NbThemeService), inject(ElectronService));
+ return initializerFn();
+ })
],
exports: [NbThemeModule]
})
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/custom-render-cell.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/custom-render-cell.component.ts
index 0444421504a..4a749be0ae5 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/custom-render-cell.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/custom-render-cell.component.ts
@@ -1,8 +1,8 @@
import { Component, Input, OnInit } from '@angular/core';
@Component({
- selector: 'ga-custom-render-selector',
- template: `
+ selector: 'ga-custom-render-selector',
+ template: `
`,
- styleUrls: ['./time-tracker.component.scss'],
+ styleUrls: ['./time-tracker.component.scss'],
+ standalone: false
})
export class CustomRenderComponent implements OnInit {
isSelected: boolean = false;
@@ -30,13 +31,14 @@ export class CustomRenderComponent implements OnInit {
}
@Component({
- selector: 'ga-custom-description-selector',
- template: `
+ selector: 'ga-custom-description-selector',
+ template: `
{{ value.toString() }}
`,
- styleUrls: ['./time-tracker.component.scss'],
+ styleUrls: ['./time-tracker.component.scss'],
+ standalone: false
})
export class CustomDescriptionComponent {
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/no-data-message/no-data-message.component.scss b/packages/desktop-ui-lib/src/lib/time-tracker/no-data-message/no-data-message.component.scss
index 9a7feac38f8..41c599fa770 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/no-data-message/no-data-message.component.scss
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/no-data-message/no-data-message.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-cards';
+@use 'gauzy/_gauzy-cards' as *;
.no-data-found {
overflow-y: hidden;
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/no-data-message/no-data-message.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/no-data-message/no-data-message.component.ts
index f0f2d97e695..4c0dddb54ea 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/no-data-message/no-data-message.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/no-data-message/no-data-message.component.ts
@@ -1,9 +1,10 @@
import { Component, Input, OnInit } from '@angular/core';
@Component({
- selector: 'ngx-no-data-message',
- templateUrl: './no-data-message.component.html',
- styleUrls: ['./no-data-message.component.scss']
+ selector: 'ngx-no-data-message',
+ templateUrl: './no-data-message.component.html',
+ styleUrls: ['./no-data-message.component.scss'],
+ standalone: false
})
export class NoDataMessageComponent implements OnInit {
@Input() message: string;
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/organization-selector/organization-selector.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/organization-selector/organization-selector.component.ts
index e030b264579..b8638f1bbfc 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/organization-selector/organization-selector.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/organization-selector/organization-selector.component.ts
@@ -6,9 +6,10 @@ import { Store } from '../../services';
import { UserOrganizationService } from './user-organization.service';
@Component({
- selector: 'ngx-desktop-timer-organization-selector',
- templateUrl: './organization-selector.component.html',
- styleUrls: ['./organization-selector.component.scss']
+ selector: 'ngx-desktop-timer-organization-selector',
+ templateUrl: './organization-selector.component.html',
+ styleUrls: ['./organization-selector.component.scss'],
+ standalone: false
})
export class OrganizationSelectorComponent implements OnInit, AfterViewInit {
public organizations: IOrganization[] = [];
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/pagination/pagination.component.scss b/packages/desktop-ui-lib/src/lib/time-tracker/pagination/pagination.component.scss
index 9318d596cbf..b417865fc61 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/pagination/pagination.component.scss
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/pagination/pagination.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-overrides' as *;
:host {
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/pagination/pagination.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/pagination/pagination.component.ts
index 4ee4c34ceae..a409458297f 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/pagination/pagination.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/pagination/pagination.component.ts
@@ -14,9 +14,10 @@ import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-pagination',
- templateUrl: './pagination.component.html',
- styleUrls: ['./pagination.component.scss'],
+ selector: 'ga-pagination',
+ templateUrl: './pagination.component.html',
+ styleUrls: ['./pagination.component.scss'],
+ standalone: false
})
export class PaginationComponent implements OnChanges, OnDestroy {
private _source: LocalDataSource;
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/pipes/date-time.pipe.ts b/packages/desktop-ui-lib/src/lib/time-tracker/pipes/date-time.pipe.ts
index 7ae580b7301..4802be887a2 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/pipes/date-time.pipe.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/pipes/date-time.pipe.ts
@@ -2,7 +2,8 @@ import { Pipe, PipeTransform } from '@angular/core';
import * as moment from 'moment';
@Pipe({
- name: 'dateTime'
+ name: 'dateTime',
+ standalone: false
})
export class DateTimePipe implements PipeTransform {
/**
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/pipes/dayjs.pipe.ts b/packages/desktop-ui-lib/src/lib/time-tracker/pipes/dayjs.pipe.ts
index 7767db09655..f3d8c9884c1 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/pipes/dayjs.pipe.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/pipes/dayjs.pipe.ts
@@ -2,7 +2,8 @@ import { Pipe, PipeTransform } from '@angular/core';
import dayjs from 'dayjs';
@Pipe({
- name: 'dayjs'
+ name: 'dayjs',
+ standalone: false
})
export class DayjsPipe implements PipeTransform {
transform(value: Date): dayjs.Dayjs {
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/pipes/duration-format.pipe.ts b/packages/desktop-ui-lib/src/lib/time-tracker/pipes/duration-format.pipe.ts
index 90f5a5b8cee..3af955c84cc 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/pipes/duration-format.pipe.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/pipes/duration-format.pipe.ts
@@ -3,7 +3,8 @@ import * as moment from 'moment';
import 'moment-duration-format';
@Pipe({
- name: 'durationFormat'
+ name: 'durationFormat',
+ standalone: false
})
export class DurationFormatPipe implements PipeTransform {
transform(
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/pipes/humanize.pipe.ts b/packages/desktop-ui-lib/src/lib/time-tracker/pipes/humanize.pipe.ts
index 1602d2b15be..158ba5f8f3c 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/pipes/humanize.pipe.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/pipes/humanize.pipe.ts
@@ -8,7 +8,10 @@
import { Pipe, ChangeDetectorRef, PipeTransform, OnDestroy, NgZone } from '@angular/core';
import * as moment from 'moment';
-@Pipe({ name: 'humanize', pure: false })
+@Pipe({
+ name: 'humanize', pure: false,
+ standalone: false
+})
export class HumanizePipe implements PipeTransform, OnDestroy {
private _currentTimer: number | null;
private _lastTime: Number;
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/pipes/replace.pipe.ts b/packages/desktop-ui-lib/src/lib/time-tracker/pipes/replace.pipe.ts
index b81c3866999..621ad03221a 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/pipes/replace.pipe.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/pipes/replace.pipe.ts
@@ -2,7 +2,8 @@ import { Pipe, PipeTransform } from '@angular/core';
import { isRegExp, isString, isUndefined } from 'underscore';
@Pipe({
- name: 'replace',
+ name: 'replace',
+ standalone: false
})
export class ReplacePipe implements PipeTransform {
transform(input: any, pattern: any, replacement: any): any {
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-badge-default/task-badge-default.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-badge-default/task-badge-default.component.ts
index 046be699ad1..4b8b54c39e4 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-badge-default/task-badge-default.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-badge-default/task-badge-default.component.ts
@@ -3,9 +3,10 @@ import { TaskStatusEnum } from '@gauzy/contracts';
import { NbComponentStatus } from '@nebular/theme';
@Component({
- selector: 'gauzy-task-badge-default',
- templateUrl: './task-badge-default.component.html',
- styleUrls: ['./task-badge-default.component.scss'],
+ selector: 'gauzy-task-badge-default',
+ templateUrl: './task-badge-default.component.html',
+ styleUrls: ['./task-badge-default.component.scss'],
+ standalone: false
})
export class TaskBadgeDefaultComponent implements OnInit {
@Input() taskBadge: string;
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-badge-view/task-badge-view.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-badge-view/task-badge-view.component.ts
index 8de32331a62..f7333e2159a 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-badge-view/task-badge-view.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-badge-view/task-badge-view.component.ts
@@ -8,9 +8,10 @@ import { StatusIconService } from '../../../services/status-icon-service';
export type ITaskBadge = ITaskStatus | ITaskSize | ITaskPriority;
@Component({
- selector: 'gauzy-task-badge-view',
- templateUrl: './task-badge-view.component.html',
- styleUrls: ['./task-badge-view.component.scss']
+ selector: 'gauzy-task-badge-view',
+ templateUrl: './task-badge-view.component.html',
+ styleUrls: ['./task-badge-view.component.scss'],
+ standalone: false
})
export class TaskBadgeViewComponent {
constructor(private _statusIconService: StatusIconService) {
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-detail/task-detail.component.scss b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-detail/task-detail.component.scss
index 5b356d56e2f..882cfd2fbf7 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-detail/task-detail.component.scss
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-detail/task-detail.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
.badges {
display: flex;
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-detail/task-detail.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-detail/task-detail.component.ts
index b947d792b1c..d8d97bad65b 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-detail/task-detail.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-detail/task-detail.component.ts
@@ -5,9 +5,10 @@ import { TranslateService } from '@ngx-translate/core';
import { NbDialogRef } from '@nebular/theme';
@Component({
- selector: 'gauzy-task-detail',
- templateUrl: './task-detail.component.html',
- styleUrls: ['./task-detail.component.scss'],
+ selector: 'gauzy-task-detail',
+ templateUrl: './task-detail.component.html',
+ styleUrls: ['./task-detail.component.scss'],
+ standalone: false
})
export class TaskDetailComponent {
@Input()
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-due-date/task-due-date.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-due-date/task-due-date.component.ts
index b169512d4fc..1a20c976b3a 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-due-date/task-due-date.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-due-date/task-due-date.component.ts
@@ -2,9 +2,10 @@ import { Component, Input } from '@angular/core';
import * as moment from 'moment';
@Component({
- selector: 'gauzy-task-due-date',
- templateUrl: './task-due-date.component.html',
- styleUrls: ['./task-due-date.component.scss'],
+ selector: 'gauzy-task-due-date',
+ templateUrl: './task-due-date.component.html',
+ styleUrls: ['./task-due-date.component.scss'],
+ standalone: false
})
export class TaskDueDateComponent {
constructor() {
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-duration/task-duration.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-duration/task-duration.component.ts
index 28e179f083c..ecb4e4ff9ad 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-duration/task-duration.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-duration/task-duration.component.ts
@@ -2,9 +2,10 @@ import { Component } from '@angular/core';
import { TaskRenderComponent } from '../task-render.component';
@Component({
- selector: 'gauzy-task-duration',
- templateUrl: './task-duration.component.html',
- styleUrls: ['./task-duration.component.scss'],
+ selector: 'gauzy-task-duration',
+ templateUrl: './task-duration.component.html',
+ styleUrls: ['./task-duration.component.scss'],
+ standalone: false
})
export class TaskDurationComponent extends TaskRenderComponent {
public get total(): number {
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-estimate/task-estimate-input/task-estimate-input.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-estimate/task-estimate-input/task-estimate-input.component.ts
index e7142785812..c3ff3603ce3 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-estimate/task-estimate-input/task-estimate-input.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-estimate/task-estimate-input/task-estimate-input.component.ts
@@ -20,9 +20,10 @@ export interface IEstimateInput {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-task-estimate-input',
- templateUrl: './task-estimate-input.component.html',
- styleUrls: ['./task-estimate-input.component.scss'],
+ selector: 'gauzy-task-estimate-input',
+ templateUrl: './task-estimate-input.component.html',
+ styleUrls: ['./task-estimate-input.component.scss'],
+ standalone: false
})
export class TaskEstimateInputComponent implements OnInit, AfterViewInit {
@Output()
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-estimate/task-estimate.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-estimate/task-estimate.component.ts
index 5382f2737d3..1e5958a50f7 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-estimate/task-estimate.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-estimate/task-estimate.component.ts
@@ -7,9 +7,10 @@ import { TaskStatusEnum } from '@gauzy/contracts';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-task-estimate',
- templateUrl: './task-estimate.component.html',
- styleUrls: ['./task-estimate.component.scss'],
+ selector: 'gauzy-task-estimate',
+ templateUrl: './task-estimate.component.html',
+ styleUrls: ['./task-estimate.component.scss'],
+ standalone: false
})
export class TaskEstimateComponent {
public isEdit = false;
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-progress/task-progress.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-progress/task-progress.component.ts
index 9b25511a93f..c600337d49d 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-progress/task-progress.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-progress/task-progress.component.ts
@@ -8,9 +8,10 @@ import { map } from 'rxjs/operators';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-task-progress',
- templateUrl: './task-progress.component.html',
- styleUrls: ['./task-progress.component.scss']
+ selector: 'gauzy-task-progress',
+ templateUrl: './task-progress.component.html',
+ styleUrls: ['./task-progress.component.scss'],
+ standalone: false
})
export class TaskProgressComponent extends TaskRenderComponent implements AfterViewInit {
public updated: EventEmitter;
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-render-cell/task-render-cell.component.scss b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-render-cell/task-render-cell.component.scss
index 16677656447..c1a0fd38701 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-render-cell/task-render-cell.component.scss
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-render-cell/task-render-cell.component.scss
@@ -1,4 +1,4 @@
-@import '../../time-tracker.component';
+@forward '../../time-tracker.component';
.task-render {
display: flex;
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-render-cell/task-render-cell.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-render-cell/task-render-cell.component.ts
index 83260ec070f..2c36e395e5b 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-render-cell/task-render-cell.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-render-cell/task-render-cell.component.ts
@@ -9,9 +9,10 @@ import {TaskDetailComponent} from "../task-detail/task-detail.component";
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-task-render-cell',
- templateUrl: './task-render-cell.component.html',
- styleUrls: ['./task-render-cell.component.scss'],
+ selector: 'gauzy-task-render-cell',
+ templateUrl: './task-render-cell.component.html',
+ styleUrls: ['./task-render-cell.component.scss'],
+ standalone: false
})
export class TaskRenderCellComponent extends TaskRenderComponent {
private _popover: NbPopoverDirective;
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-render.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-render.component.ts
index ba372cc6470..3bb647bfefa 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-render.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-render.component.ts
@@ -9,7 +9,8 @@ export interface ITaskRender extends ITasksStatistics {
}
@Component({
- template: '',
+ template: '',
+ standalone: false
})
export abstract class TaskRenderComponent {
private readonly _task$: BehaviorSubject;
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-status/task-status.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-status/task-status.component.ts
index 697d9c2b573..946fad74a53 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-status/task-status.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/task-render/task-status/task-status.component.ts
@@ -8,9 +8,10 @@ import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-task-status',
- templateUrl: './task-status.component.html',
- styleUrls: ['./task-status.component.scss'],
+ selector: 'gauzy-task-status',
+ templateUrl: './task-status.component.html',
+ styleUrls: ['./task-status.component.scss'],
+ standalone: false
})
export class TaskStatusComponent extends TaskRenderComponent implements OnInit {
public statuses$: Observable;
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/task-table/action-button/action-button.component.scss b/packages/desktop-ui-lib/src/lib/time-tracker/task-table/action-button/action-button.component.scss
index 36cffcc1276..3468008814a 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/task-table/action-button/action-button.component.scss
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/task-table/action-button/action-button.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-table';
+@use 'gauzy/_gauzy-table' as *;
.button-container,
.button-hide {
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/task-table/action-button/action-button.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/task-table/action-button/action-button.component.ts
index d238e6aefb9..48ecd16b085 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/task-table/action-button/action-button.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/task-table/action-button/action-button.component.ts
@@ -14,6 +14,7 @@ import { ActionButton, ActionButtonStore } from './+state/action-button.store';
selector: 'ngx-action-button',
templateUrl: './action-button.component.html',
styleUrls: ['./action-button.component.scss'],
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class ActionButtonComponent {
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/task-table/search/search.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/task-table/search/search.component.ts
index aaf8e21005f..92ab7f65b94 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/task-table/search/search.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/task-table/search/search.component.ts
@@ -8,10 +8,11 @@ import { SearchTermStore } from './+state/search-term.store';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-search',
- templateUrl: './search.component.html',
- styleUrls: ['./search.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-search',
+ templateUrl: './search.component.html',
+ styleUrls: ['./search.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class SearchComponent implements AfterViewInit {
@ViewChild('search') search!: ElementRef;
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/task-table/table/task-table.component.scss b/packages/desktop-ui-lib/src/lib/time-tracker/task-table/table/task-table.component.scss
index ebc588e4a3b..e97809890ef 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/task-table/table/task-table.component.scss
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/task-table/table/task-table.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
nb-card {
margin: 0 !important;
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/task-table/table/task-table.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/task-table/table/task-table.component.ts
index f339a03d1a3..b8eee305186 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/task-table/table/task-table.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/task-table/table/task-table.component.ts
@@ -24,9 +24,10 @@ import { SearchTermStore } from '../search/+state/search-term.store';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-task-table',
- templateUrl: './task-table.component.html',
- styleUrls: ['./task-table.component.scss']
+ selector: 'ngx-task-table',
+ templateUrl: './task-table.component.html',
+ styleUrls: ['./task-table.component.scss'],
+ standalone: false
})
export class TaskTableComponent implements OnInit, AfterViewInit {
private _smartTable: Angular2SmartTableComponent;
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/time-tracker-status/time-tracker-status.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/time-tracker-status/time-tracker-status.component.ts
index 676b336d40d..e031ac85a7e 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/time-tracker-status/time-tracker-status.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/time-tracker-status/time-tracker-status.component.ts
@@ -4,9 +4,10 @@ import { ITimerIcon } from './interfaces';
import { TimeTrackerStatusService } from './time-tracker-status.service';
@Component({
- selector: 'gauzy-time-tracker-status',
- templateUrl: './time-tracker-status.component.html',
- styleUrls: ['./time-tracker-status.component.scss']
+ selector: 'gauzy-time-tracker-status',
+ templateUrl: './time-tracker-status.component.html',
+ styleUrls: ['./time-tracker-status.component.scss'],
+ standalone: false
})
export class TimeTrackerStatusComponent {
constructor(private readonly _timeTrackerStatusService: TimeTrackerStatusService) {}
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/time-tracker.component.scss b/packages/desktop-ui-lib/src/lib/time-tracker/time-tracker.component.scss
index e78f2719708..d9377942cc5 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/time-tracker.component.scss
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/time-tracker.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
.border-vertical {
border-right: solid 0.1px rgba($color: #000000, $alpha: 0.1);
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/time-tracker.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/time-tracker.component.ts
index 9d919e0c911..a73f4c28d2d 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/time-tracker.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/time-tracker.component.ts
@@ -90,16 +90,17 @@ enum TimerStartMode {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-desktop-time-tracker',
- templateUrl: './time-tracker.component.html',
- styleUrls: ['./time-tracker.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TimeTrackerComponent),
- multi: true
- }
- ]
+ selector: 'ngx-desktop-time-tracker',
+ templateUrl: './time-tracker.component.html',
+ styleUrls: ['./time-tracker.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TimeTrackerComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TimeTrackerComponent implements OnInit, AfterViewInit {
private _lastTotalWorkedToday$: BehaviorSubject = new BehaviorSubject(0);
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/timer-tracker-change-dialog/timer-tracker-change-dialog.component.scss b/packages/desktop-ui-lib/src/lib/time-tracker/timer-tracker-change-dialog/timer-tracker-change-dialog.component.scss
index 3ee35314a86..ec251ce8cff 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/timer-tracker-change-dialog/timer-tracker-change-dialog.component.scss
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/timer-tracker-change-dialog/timer-tracker-change-dialog.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
nb-card {
width: 320px;
diff --git a/packages/desktop-ui-lib/src/lib/time-tracker/timer-tracker-change-dialog/timer-tracker-change-dialog.component.ts b/packages/desktop-ui-lib/src/lib/time-tracker/timer-tracker-change-dialog/timer-tracker-change-dialog.component.ts
index a43f5356ebe..6c1e1746970 100644
--- a/packages/desktop-ui-lib/src/lib/time-tracker/timer-tracker-change-dialog/timer-tracker-change-dialog.component.ts
+++ b/packages/desktop-ui-lib/src/lib/time-tracker/timer-tracker-change-dialog/timer-tracker-change-dialog.component.ts
@@ -19,10 +19,11 @@ import { DynamicSelectorValidation } from '../../shared/utils/validation/dynamic
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-timer-tracker-change-dialog',
- templateUrl: './timer-tracker-change-dialog.component.html',
- styleUrls: ['./timer-tracker-change-dialog.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'gauzy-timer-tracker-change-dialog',
+ templateUrl: './timer-tracker-change-dialog.component.html',
+ styleUrls: ['./timer-tracker-change-dialog.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class TimerTrackerChangeDialogComponent implements OnInit {
private lastSelectorState: ITimeTrackerFormState;
diff --git a/packages/desktop-ui-lib/src/lib/updater/updater.component.ts b/packages/desktop-ui-lib/src/lib/updater/updater.component.ts
index a359a38625b..ba0cba687b0 100644
--- a/packages/desktop-ui-lib/src/lib/updater/updater.component.ts
+++ b/packages/desktop-ui-lib/src/lib/updater/updater.component.ts
@@ -11,10 +11,11 @@ import { ElectronService } from '../electron/services';
import { Event } from 'electron';
@Component({
- selector: 'ngx-updater',
- templateUrl: './updater.component.html',
- styleUrls: ['./updater.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush,
+ selector: 'ngx-updater',
+ templateUrl: './updater.component.html',
+ styleUrls: ['./updater.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class UpdaterComponent implements OnInit, OnDestroy {
@ViewChild('logBox') logBox: ElementRef;
diff --git a/packages/plugin/package.json b/packages/plugin/package.json
index 1a6a4273378..b59f8109214 100644
--- a/packages/plugin/package.json
+++ b/packages/plugin/package.json
@@ -38,7 +38,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"plugin",
diff --git a/packages/plugins/changelog/package.json b/packages/plugins/changelog/package.json
index f524d357948..ca5be369007 100644
--- a/packages/plugins/changelog/package.json
+++ b/packages/plugins/changelog/package.json
@@ -44,7 +44,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"changelog",
diff --git a/packages/plugins/integration-ai-ui/package.json b/packages/plugins/integration-ai-ui/package.json
index 613df10f0b1..70d085ed7db 100644
--- a/packages/plugins/integration-ai-ui/package.json
+++ b/packages/plugins/integration-ai-ui/package.json
@@ -24,24 +24,24 @@
"lib:watch": "yarn nx build plugin-integration-ai-ui --watch --configuration=development"
},
"peerDependencies": {
- "@angular/common": "^18.2.0",
- "@angular/core": "^18.2.0"
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0"
},
"dependencies": {
- "@angular/forms": "18.2.12",
- "@angular/router": "18.2.12",
+ "@angular/forms": "19.2.7",
+ "@angular/router": "19.2.7",
"@gauzy/contracts": "^0.1.0",
- "@nebular/theme": "^14.0.2",
+ "@nebular/theme": "^15.0.0",
"@ngneat/until-destroy": "^10.0.0",
- "@ngx-translate/core": "^16.0.3",
- "ngx-permissions": "^17.1.0",
+ "@ngx-translate/core": "^16.0.4",
+ "ngx-permissions": "^19.0.0",
"rxjs": "^7.8.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "jest-preset-angular": "14.1.1"
+ "jest-preset-angular": "14.4.2"
},
"keywords": [
"Ever Gauzy",
diff --git a/packages/plugins/integration-ai-ui/src/lib/components/authorization/authorization.component.ts b/packages/plugins/integration-ai-ui/src/lib/components/authorization/authorization.component.ts
index 54533116474..c85285d4ee7 100644
--- a/packages/plugins/integration-ai-ui/src/lib/components/authorization/authorization.component.ts
+++ b/packages/plugins/integration-ai-ui/src/lib/components/authorization/authorization.component.ts
@@ -10,10 +10,11 @@ import { ReplacePipe } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-gauzy-ai-authorization',
- templateUrl: './authorization.component.html',
- styleUrls: ['./authorization.component.scss'],
- providers: []
+ selector: 'ngx-gauzy-ai-authorization',
+ templateUrl: './authorization.component.html',
+ styleUrls: ['./authorization.component.scss'],
+ providers: [],
+ standalone: false
})
export class IntegrationAIAuthorizationComponent implements AfterViewInit, OnInit, OnDestroy {
public organization: IOrganization;
diff --git a/packages/plugins/integration-ai-ui/src/lib/components/integration-setting-card/integration-setting-card.component.ts b/packages/plugins/integration-ai-ui/src/lib/components/integration-setting-card/integration-setting-card.component.ts
index f490c904de5..b171473cede 100644
--- a/packages/plugins/integration-ai-ui/src/lib/components/integration-setting-card/integration-setting-card.component.ts
+++ b/packages/plugins/integration-ai-ui/src/lib/components/integration-setting-card/integration-setting-card.component.ts
@@ -13,9 +13,10 @@ export enum SettingTitlesEnum {
}
@Component({
- selector: 'ngx-integration-setting-card',
- styleUrls: ['./integration-setting-card.component.scss'],
- templateUrl: './integration-setting-card.component.html'
+ selector: 'ngx-integration-setting-card',
+ styleUrls: ['./integration-setting-card.component.scss'],
+ templateUrl: './integration-setting-card.component.html',
+ standalone: false
})
export class IntegrationSettingCardComponent extends TranslationBaseComponent {
public isIntegrationAISettingsEdit: boolean = false;
diff --git a/packages/plugins/integration-ai-ui/src/lib/components/view/view.component.ts b/packages/plugins/integration-ai-ui/src/lib/components/view/view.component.ts
index 7547f878421..886a25eb83d 100644
--- a/packages/plugins/integration-ai-ui/src/lib/components/view/view.component.ts
+++ b/packages/plugins/integration-ai-ui/src/lib/components/view/view.component.ts
@@ -27,9 +27,10 @@ import { SettingTitlesEnum } from '../integration-setting-card/integration-setti
@UntilDestroy({ checkProperties: true })
@Component({
- styleUrls: ['./view.component.scss'],
- templateUrl: './view.component.html',
- providers: [TitleCasePipe]
+ styleUrls: ['./view.component.scss'],
+ templateUrl: './view.component.html',
+ providers: [TitleCasePipe],
+ standalone: false
})
export class IntegrationAIViewComponent extends TranslationBaseComponent implements OnInit {
public organization: IOrganization;
diff --git a/packages/plugins/integration-ai-ui/src/lib/integration-ai.layout.component.ts b/packages/plugins/integration-ai-ui/src/lib/integration-ai.layout.component.ts
index 6bf68bc2b31..3589018103a 100644
--- a/packages/plugins/integration-ai-ui/src/lib/integration-ai.layout.component.ts
+++ b/packages/plugins/integration-ai-ui/src/lib/integration-ai.layout.component.ts
@@ -10,8 +10,9 @@ import { I18nService } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-integration-ai-layout',
- template: ``
+ selector: 'ngx-integration-ai-layout',
+ template: ``,
+ standalone: false
})
export class IntegrationAILayoutComponent implements OnInit, OnDestroy {
constructor(
diff --git a/packages/plugins/integration-ai/package.json b/packages/plugins/integration-ai/package.json
index 521ed2fa6d5..d39f3469a42 100644
--- a/packages/plugins/integration-ai/package.json
+++ b/packages/plugins/integration-ai/package.json
@@ -47,7 +47,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"Ever Gauzy",
diff --git a/packages/plugins/integration-github-ui/package.json b/packages/plugins/integration-github-ui/package.json
index 86dadb5ec2d..f3d8757db03 100644
--- a/packages/plugins/integration-github-ui/package.json
+++ b/packages/plugins/integration-github-ui/package.json
@@ -24,25 +24,25 @@
"lib:watch": "yarn nx build plugin-integration-github-ui --watch --configuration=development"
},
"peerDependencies": {
- "@angular/common": "^18.2.0",
- "@angular/core": "^18.2.0"
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0"
},
"dependencies": {
- "@angular/forms": "18.2.12",
- "@angular/router": "18.2.12",
+ "@angular/forms": "19.2.7",
+ "@angular/router": "19.2.7",
"@gauzy/contracts": "^0.1.0",
- "@nebular/theme": "^14.0.2",
+ "@nebular/theme": "^15.0.0",
"@ngneat/until-destroy": "^10.0.0",
- "@ngx-translate/core": "^16.0.3",
- "angular2-smart-table": "^3.4.0",
- "ngx-permissions": "^17.1.0",
+ "@ngx-translate/core": "^16.0.4",
+ "angular2-smart-table": "^3.6.1",
+ "ngx-permissions": "^19.0.0",
"rxjs": "^7.8.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "jest-preset-angular": "14.1.1"
+ "jest-preset-angular": "14.4.2"
},
"keywords": [
"gauzy",
diff --git a/packages/plugins/integration-github-ui/src/lib/components/installation/installation.component.ts b/packages/plugins/integration-github-ui/src/lib/components/installation/installation.component.ts
index 8562d89bf14..9c151936057 100644
--- a/packages/plugins/integration-github-ui/src/lib/components/installation/installation.component.ts
+++ b/packages/plugins/integration-github-ui/src/lib/components/installation/installation.component.ts
@@ -7,8 +7,9 @@ import { GithubService, Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-integration-github-installation',
- templateUrl: './installation.component.html'
+ selector: 'ngx-integration-github-installation',
+ templateUrl: './installation.component.html',
+ standalone: false
})
export class GithubInstallationComponent implements AfterViewInit, OnInit {
public isLoading: boolean = true;
diff --git a/packages/plugins/integration-github-ui/src/lib/components/settings/settings.component.scss b/packages/plugins/integration-github-ui/src/lib/components/settings/settings.component.scss
index 5c7056275fa..54d3097dbf7 100644
--- a/packages/plugins/integration-github-ui/src/lib/components/settings/settings.component.scss
+++ b/packages/plugins/integration-github-ui/src/lib/components/settings/settings.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-overrides' as *;
:host {
.popover-container {
diff --git a/packages/plugins/integration-github-ui/src/lib/components/settings/settings.component.ts b/packages/plugins/integration-github-ui/src/lib/components/settings/settings.component.ts
index 9b5e4380f0b..b8322a88457 100644
--- a/packages/plugins/integration-github-ui/src/lib/components/settings/settings.component.ts
+++ b/packages/plugins/integration-github-ui/src/lib/components/settings/settings.component.ts
@@ -16,9 +16,10 @@ import { IntegrationEntitySettingService, IntegrationEntitySettingServiceStoreSe
@UntilDestroy()
@Component({
- selector: 'ngx-github-settings',
- templateUrl: './settings.component.html',
- styleUrls: ['./settings.component.scss']
+ selector: 'ngx-github-settings',
+ templateUrl: './settings.component.html',
+ styleUrls: ['./settings.component.scss'],
+ standalone: false
})
export class GithubSettingsComponent extends TranslationBaseComponent implements OnInit, AfterViewInit {
// Define a public property 'IntegrationEntity' that appears to be an enum.
diff --git a/packages/plugins/integration-github-ui/src/lib/components/view/view.component.scss b/packages/plugins/integration-github-ui/src/lib/components/view/view.component.scss
index 434af434f08..bc865918fdc 100644
--- a/packages/plugins/integration-github-ui/src/lib/components/view/view.component.scss
+++ b/packages/plugins/integration-github-ui/src/lib/components/view/view.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-table.scss';
+@use 'gauzy/_gauzy-table' as *;
:host {
nb-card,
diff --git a/packages/plugins/integration-github-ui/src/lib/components/view/view.component.ts b/packages/plugins/integration-github-ui/src/lib/components/view/view.component.ts
index a7fc08087d3..233d4202cf0 100644
--- a/packages/plugins/integration-github-ui/src/lib/components/view/view.component.ts
+++ b/packages/plugins/integration-github-ui/src/lib/components/view/view.component.ts
@@ -50,9 +50,10 @@ export enum SyncTabsEnum {
@UntilDestroy({ checkProperties: true })
@Component({
- styleUrls: ['./view.component.scss'],
- templateUrl: './view.component.html',
- providers: [TitleCasePipe]
+ styleUrls: ['./view.component.scss'],
+ templateUrl: './view.component.html',
+ providers: [TitleCasePipe],
+ standalone: false
})
export class GithubViewComponent extends PaginationFilterBaseComponent implements AfterViewInit, OnInit {
public syncTabsEnum: typeof SyncTabsEnum = SyncTabsEnum;
diff --git a/packages/plugins/integration-github-ui/src/lib/components/wizard/wizard.component.ts b/packages/plugins/integration-github-ui/src/lib/components/wizard/wizard.component.ts
index 521a295a78d..37625944849 100644
--- a/packages/plugins/integration-github-ui/src/lib/components/wizard/wizard.component.ts
+++ b/packages/plugins/integration-github-ui/src/lib/components/wizard/wizard.component.ts
@@ -10,8 +10,9 @@ import { GITHUB_AUTHORIZATION_URL } from '../../github.config';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-integration-github-wizard',
- templateUrl: './wizard.component.html'
+ selector: 'ngx-integration-github-wizard',
+ templateUrl: './wizard.component.html',
+ standalone: false
})
export class GithubWizardComponent implements AfterViewInit, OnInit, OnDestroy {
/**
diff --git a/packages/plugins/integration-github-ui/src/lib/integration-github.layout.component.ts b/packages/plugins/integration-github-ui/src/lib/integration-github.layout.component.ts
index 1d904e4e23d..0b3ff372c15 100644
--- a/packages/plugins/integration-github-ui/src/lib/integration-github.layout.component.ts
+++ b/packages/plugins/integration-github-ui/src/lib/integration-github.layout.component.ts
@@ -5,8 +5,9 @@ import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: `ngx-integration-github-layout`,
- template: ``
+ selector: `ngx-integration-github-layout`,
+ template: ``,
+ standalone: false
})
export class IntegrationGithubLayoutComponent implements OnInit {
constructor(private readonly _router: Router, private readonly _activatedRoute: ActivatedRoute) {}
diff --git a/packages/plugins/integration-github/package.json b/packages/plugins/integration-github/package.json
index 09d7f50f20f..03c3e9c8340 100644
--- a/packages/plugins/integration-github/package.json
+++ b/packages/plugins/integration-github/package.json
@@ -61,7 +61,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"github",
diff --git a/packages/plugins/integration-hubstaff-ui/package.json b/packages/plugins/integration-hubstaff-ui/package.json
index 439f1f71d20..78114f8fa0b 100644
--- a/packages/plugins/integration-hubstaff-ui/package.json
+++ b/packages/plugins/integration-hubstaff-ui/package.json
@@ -24,26 +24,26 @@
"lib:watch": "yarn nx build plugin-integration-hubstaff-ui --watch --configuration=development"
},
"peerDependencies": {
- "@angular/common": "^18.2.0",
- "@angular/core": "^18.2.0"
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0"
},
"dependencies": {
- "@angular/forms": "18.2.12",
- "@angular/router": "18.2.12",
+ "@angular/forms": "19.2.7",
+ "@angular/router": "19.2.7",
"@gauzy/contracts": "^0.1.0",
- "@nebular/theme": "^14.0.2",
- "@ng-select/ng-select": "^13.9.0",
+ "@nebular/theme": "^15.0.0",
+ "@ng-select/ng-select": "^14.2.2",
"@ngneat/until-destroy": "^10.0.0",
- "@ngx-translate/core": "^16.0.3",
- "angular2-smart-table": "^3.4.0",
- "ngx-permissions": "^17.1.0",
+ "@ngx-translate/core": "^16.0.4",
+ "angular2-smart-table": "^3.6.1",
+ "ngx-permissions": "^19.0.0",
"rxjs": "^7.8.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "jest-preset-angular": "14.1.1"
+ "jest-preset-angular": "14.4.2"
},
"keywords": [
"hubstaff",
diff --git a/packages/plugins/integration-hubstaff-ui/src/lib/components/hubstaff-authorize/hubstaff-authorize.component.ts b/packages/plugins/integration-hubstaff-ui/src/lib/components/hubstaff-authorize/hubstaff-authorize.component.ts
index 1c028c92f93..9589402dbcc 100644
--- a/packages/plugins/integration-hubstaff-ui/src/lib/components/hubstaff-authorize/hubstaff-authorize.component.ts
+++ b/packages/plugins/integration-hubstaff-ui/src/lib/components/hubstaff-authorize/hubstaff-authorize.component.ts
@@ -8,9 +8,10 @@ import { ErrorHandlingService, HubstaffService, IntegrationsService, Store } fro
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-hubstaff-authorize',
- templateUrl: './hubstaff-authorize.component.html',
- styleUrls: ['./hubstaff-authorize.component.scss']
+ selector: 'ngx-hubstaff-authorize',
+ templateUrl: './hubstaff-authorize.component.html',
+ styleUrls: ['./hubstaff-authorize.component.scss'],
+ standalone: false
})
export class HubstaffAuthorizeComponent implements OnInit, OnDestroy {
public hubStaffAuthorizeCode: string;
diff --git a/packages/plugins/integration-hubstaff-ui/src/lib/components/hubstaff/hubstaff.component.ts b/packages/plugins/integration-hubstaff-ui/src/lib/components/hubstaff/hubstaff.component.ts
index 9796268f555..bee7cf4ab73 100644
--- a/packages/plugins/integration-hubstaff-ui/src/lib/components/hubstaff/hubstaff.component.ts
+++ b/packages/plugins/integration-hubstaff-ui/src/lib/components/hubstaff/hubstaff.component.ts
@@ -12,10 +12,11 @@ import { SettingsDialogComponent } from '../settings-dialog/settings-dialog.comp
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-hubstaff',
- templateUrl: './hubstaff.component.html',
- styleUrls: ['./hubstaff.component.scss'],
- providers: [TitleCasePipe]
+ selector: 'ngx-hubstaff',
+ templateUrl: './hubstaff.component.html',
+ styleUrls: ['./hubstaff.component.scss'],
+ providers: [TitleCasePipe],
+ standalone: false
})
export class HubstaffComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
public settingsSmartTable: any;
diff --git a/packages/plugins/integration-hubstaff-ui/src/lib/components/settings-dialog/settings-dialog.component.ts b/packages/plugins/integration-hubstaff-ui/src/lib/components/settings-dialog/settings-dialog.component.ts
index b6bdbff96e5..83146ce7120 100644
--- a/packages/plugins/integration-hubstaff-ui/src/lib/components/settings-dialog/settings-dialog.component.ts
+++ b/packages/plugins/integration-hubstaff-ui/src/lib/components/settings-dialog/settings-dialog.component.ts
@@ -7,9 +7,10 @@ import { IDateRangeActivityFilter, IntegrationEntity } from '@gauzy/contracts';
import { HubstaffService } from '@gauzy/ui-core/core';
@Component({
- selector: 'ngx-hubstaff-settings-dialog',
- templateUrl: './settings-dialog.component.html',
- styleUrls: ['./settings-dialog.component.scss']
+ selector: 'ngx-hubstaff-settings-dialog',
+ templateUrl: './settings-dialog.component.html',
+ styleUrls: ['./settings-dialog.component.scss'],
+ standalone: false
})
export class SettingsDialogComponent implements OnInit, AfterViewInit {
entitiesToSync$: Observable = this._hubstaffService.entitiesToSync$;
diff --git a/packages/plugins/integration-hubstaff-ui/src/lib/integration-hubstaff.layout.component.ts b/packages/plugins/integration-hubstaff-ui/src/lib/integration-hubstaff.layout.component.ts
index 8f6e13e558d..6ef0d1985b0 100644
--- a/packages/plugins/integration-hubstaff-ui/src/lib/integration-hubstaff.layout.component.ts
+++ b/packages/plugins/integration-hubstaff-ui/src/lib/integration-hubstaff.layout.component.ts
@@ -10,8 +10,9 @@ import { I18nService } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-integration-hubstaff-layout',
- template: ``
+ selector: 'ngx-integration-hubstaff-layout',
+ template: ``,
+ standalone: false
})
export class IntegrationHubstaffLayoutComponent implements OnInit, OnDestroy {
constructor(
diff --git a/packages/plugins/integration-hubstaff/package.json b/packages/plugins/integration-hubstaff/package.json
index f08bdcbdcab..cc05fbf71f8 100644
--- a/packages/plugins/integration-hubstaff/package.json
+++ b/packages/plugins/integration-hubstaff/package.json
@@ -47,7 +47,7 @@
"@types/express": "^5.0.0",
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"Hubstaff",
diff --git a/packages/plugins/integration-jira/package.json b/packages/plugins/integration-jira/package.json
index a5b9502f442..75883a36996 100644
--- a/packages/plugins/integration-jira/package.json
+++ b/packages/plugins/integration-jira/package.json
@@ -37,7 +37,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"jira",
diff --git a/packages/plugins/integration-make-com/package.json b/packages/plugins/integration-make-com/package.json
index 5c6250e82b5..e812bae5b1c 100644
--- a/packages/plugins/integration-make-com/package.json
+++ b/packages/plugins/integration-make-com/package.json
@@ -49,7 +49,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"make.com",
diff --git a/packages/plugins/integration-upwork-ui/package.json b/packages/plugins/integration-upwork-ui/package.json
index 3ca9b8bdb03..1fe19596196 100644
--- a/packages/plugins/integration-upwork-ui/package.json
+++ b/packages/plugins/integration-upwork-ui/package.json
@@ -24,25 +24,25 @@
"lib:watch": "yarn nx build plugin-integration-upwork-ui --watch --configuration=development"
},
"peerDependencies": {
- "@angular/common": "^18.2.0",
- "@angular/core": "^18.2.0"
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0"
},
"dependencies": {
- "@angular/forms": "18.2.12",
- "@angular/router": "18.2.12",
+ "@angular/forms": "19.2.7",
+ "@angular/router": "19.2.7",
"@gauzy/contracts": "^0.1.0",
- "@nebular/theme": "^14.0.2",
+ "@nebular/theme": "^15.0.0",
"@ngneat/until-destroy": "^10.0.0",
- "@ngx-translate/core": "^16.0.3",
- "angular2-smart-table": "^3.4.0",
- "ngx-permissions": "^17.1.0",
+ "@ngx-translate/core": "^16.0.4",
+ "angular2-smart-table": "^3.6.1",
+ "ngx-permissions": "^19.0.0",
"rxjs": "^7.8.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "jest-preset-angular": "14.1.1"
+ "jest-preset-angular": "14.4.2"
},
"keywords": [
"gauzy",
diff --git a/packages/plugins/integration-upwork-ui/src/lib/components/contracts/contracts.component.ts b/packages/plugins/integration-upwork-ui/src/lib/components/contracts/contracts.component.ts
index 6cb110d25e0..5280d258094 100644
--- a/packages/plugins/integration-upwork-ui/src/lib/components/contracts/contracts.component.ts
+++ b/packages/plugins/integration-upwork-ui/src/lib/components/contracts/contracts.component.ts
@@ -15,10 +15,11 @@ import { SyncDataSelectionComponent } from '../sync-data-selection/sync-data-sel
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-contracts',
- templateUrl: './contracts.component.html',
- styleUrls: ['./contracts.component.scss'],
- providers: [TitleCasePipe]
+ selector: 'ngx-contracts',
+ templateUrl: './contracts.component.html',
+ styleUrls: ['./contracts.component.scss'],
+ providers: [TitleCasePipe],
+ standalone: false
})
export class ContractsComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
public smartTableSettings: any;
diff --git a/packages/plugins/integration-upwork-ui/src/lib/components/reports/reports.component.ts b/packages/plugins/integration-upwork-ui/src/lib/components/reports/reports.component.ts
index 725d0b76e96..d0039fbe0a5 100644
--- a/packages/plugins/integration-upwork-ui/src/lib/components/reports/reports.component.ts
+++ b/packages/plugins/integration-upwork-ui/src/lib/components/reports/reports.component.ts
@@ -12,9 +12,10 @@ import { DateViewComponent, IncomeExpenseAmountComponent } from '@gauzy/ui-core/
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-upwork-reports',
- templateUrl: './reports.component.html',
- styleUrls: ['./reports.component.scss']
+ selector: 'ngx-upwork-reports',
+ templateUrl: './reports.component.html',
+ styleUrls: ['./reports.component.scss'],
+ standalone: false
})
export class ReportsComponent extends TranslationBaseComponent implements OnInit, OnDestroy, AfterViewInit {
public reports$: Observable = this._upworkStoreService.reports$;
diff --git a/packages/plugins/integration-upwork-ui/src/lib/components/sync-data-selection/sync-data-selection.component.ts b/packages/plugins/integration-upwork-ui/src/lib/components/sync-data-selection/sync-data-selection.component.ts
index 841d719de0d..35afb2d2cf0 100644
--- a/packages/plugins/integration-upwork-ui/src/lib/components/sync-data-selection/sync-data-selection.component.ts
+++ b/packages/plugins/integration-upwork-ui/src/lib/components/sync-data-selection/sync-data-selection.component.ts
@@ -10,9 +10,10 @@ import { ErrorHandlingService, ToastrService, UpworkStoreService } from '@gauzy/
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-sync-data-selection',
- templateUrl: './sync-data-selection.component.html',
- styleUrls: ['./sync-data-selection.component.scss']
+ selector: 'ngx-sync-data-selection',
+ templateUrl: './sync-data-selection.component.html',
+ styleUrls: ['./sync-data-selection.component.scss'],
+ standalone: false
})
export class SyncDataSelectionComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
contractsSettings$: Observable = this._us.contractsSettings$;
diff --git a/packages/plugins/integration-upwork-ui/src/lib/components/transactions/transactions.component.ts b/packages/plugins/integration-upwork-ui/src/lib/components/transactions/transactions.component.ts
index f2134e95d46..96073aef866 100644
--- a/packages/plugins/integration-upwork-ui/src/lib/components/transactions/transactions.component.ts
+++ b/packages/plugins/integration-upwork-ui/src/lib/components/transactions/transactions.component.ts
@@ -8,9 +8,10 @@ import { ErrorHandlingService, Store, ToastrService, UpworkService } from '@gauz
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-transactions',
- templateUrl: './transactions.component.html',
- styleUrls: ['./transactions.component.scss']
+ selector: 'ngx-transactions',
+ templateUrl: './transactions.component.html',
+ styleUrls: ['./transactions.component.scss'],
+ standalone: false
})
export class TransactionsComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
private _selectedOrganizationId: string;
diff --git a/packages/plugins/integration-upwork-ui/src/lib/components/upwork-authorize/upwork-authorize.component.ts b/packages/plugins/integration-upwork-ui/src/lib/components/upwork-authorize/upwork-authorize.component.ts
index 2dc7bde746b..81864b1bdbe 100644
--- a/packages/plugins/integration-upwork-ui/src/lib/components/upwork-authorize/upwork-authorize.component.ts
+++ b/packages/plugins/integration-upwork-ui/src/lib/components/upwork-authorize/upwork-authorize.component.ts
@@ -15,9 +15,10 @@ import { IntegrationsService, Store, UpworkService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-upwork-authorize',
- templateUrl: './upwork-authorize.component.html',
- styleUrls: ['./upwork-authorize.component.scss']
+ selector: 'ngx-upwork-authorize',
+ templateUrl: './upwork-authorize.component.html',
+ styleUrls: ['./upwork-authorize.component.scss'],
+ standalone: false
})
export class UpworkAuthorizeComponent implements OnInit, OnDestroy {
public rememberState: boolean;
diff --git a/packages/plugins/integration-upwork-ui/src/lib/components/upwork/upwork.component.ts b/packages/plugins/integration-upwork-ui/src/lib/components/upwork/upwork.component.ts
index 0349a9ba7b9..9bfc9de8b87 100644
--- a/packages/plugins/integration-upwork-ui/src/lib/components/upwork/upwork.component.ts
+++ b/packages/plugins/integration-upwork-ui/src/lib/components/upwork/upwork.component.ts
@@ -11,8 +11,9 @@ import { Store, UpworkStoreService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-upwork',
- templateUrl: './upwork.component.html'
+ selector: 'ngx-upwork',
+ templateUrl: './upwork.component.html',
+ standalone: false
})
export class UpworkComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
public tabs: NbRouteTab[] = [];
diff --git a/packages/plugins/integration-upwork-ui/src/lib/integration-upwork.layout.component.ts b/packages/plugins/integration-upwork-ui/src/lib/integration-upwork.layout.component.ts
index 67d007687e5..3d60d22370d 100644
--- a/packages/plugins/integration-upwork-ui/src/lib/integration-upwork.layout.component.ts
+++ b/packages/plugins/integration-upwork-ui/src/lib/integration-upwork.layout.component.ts
@@ -9,8 +9,9 @@ import { I18nService } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-integration-upwork-layout',
- template: ``
+ selector: 'ngx-integration-upwork-layout',
+ template: ``,
+ standalone: false
})
export class IntegrationUpworkLayoutComponent implements OnInit, OnDestroy {
constructor(
diff --git a/packages/plugins/integration-upwork/package.json b/packages/plugins/integration-upwork/package.json
index 7956bb85e90..127d356e19e 100644
--- a/packages/plugins/integration-upwork/package.json
+++ b/packages/plugins/integration-upwork/package.json
@@ -55,7 +55,7 @@
"@types/multer": "^1.4.12",
"@types/node": "^20.14.9",
"@types/uuid": "^3.4.4",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"gauzy",
diff --git a/packages/plugins/integration-wakatime/package.json b/packages/plugins/integration-wakatime/package.json
index 4392ad0a1e2..cd7d6cd4534 100644
--- a/packages/plugins/integration-wakatime/package.json
+++ b/packages/plugins/integration-wakatime/package.json
@@ -42,7 +42,7 @@
"@nestjs/testing": "^10.4.15",
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"Ever Gauzy",
diff --git a/packages/plugins/integration-zapier/package.json b/packages/plugins/integration-zapier/package.json
index cff3c1af220..d7cb1123ff3 100644
--- a/packages/plugins/integration-zapier/package.json
+++ b/packages/plugins/integration-zapier/package.json
@@ -50,7 +50,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4",
+ "typescript": "^5.8.3",
"zapier-platform-cli": "16.3.1"
},
"keywords": [
diff --git a/packages/plugins/jitsu-analytics/package.json b/packages/plugins/jitsu-analytics/package.json
index ab92e3d48cf..2eaa311d5a0 100644
--- a/packages/plugins/jitsu-analytics/package.json
+++ b/packages/plugins/jitsu-analytics/package.json
@@ -30,7 +30,7 @@
"@gauzy/config": "^0.1.0",
"@gauzy/core": "^0.1.0",
"@gauzy/plugin": "^0.1.0",
- "@jitsu/js": "^1.9.12",
+ "@jitsu/js": "^1.10.0",
"@nestjs/common": "^10.4.15",
"chalk": "^4.1.0",
"node-fetch": "^2.6.7",
@@ -40,7 +40,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"gauzy",
diff --git a/packages/plugins/jitsu-analytics/src/lib/jitsu.types.ts b/packages/plugins/jitsu-analytics/src/lib/jitsu.types.ts
index c989af9e0ac..14b9a7cf980 100644
--- a/packages/plugins/jitsu-analytics/src/lib/jitsu.types.ts
+++ b/packages/plugins/jitsu-analytics/src/lib/jitsu.types.ts
@@ -1,4 +1,4 @@
-import { JitsuOptions } from "@jitsu/js";
+import { JitsuOptions } from '@jitsu/js';
// Provider key for Jitsu configuration
export const JITSU_MODULE_PROVIDER_CONFIG = 'JITSU_MODULE_PROVIDER_CONFIG';
diff --git a/packages/plugins/job-employee-ui/package.json b/packages/plugins/job-employee-ui/package.json
index 587bc7845e6..9cc004c45d4 100644
--- a/packages/plugins/job-employee-ui/package.json
+++ b/packages/plugins/job-employee-ui/package.json
@@ -24,26 +24,26 @@
"lib:watch": "yarn nx build plugin-job-employee-ui --watch --configuration=development"
},
"peerDependencies": {
- "@angular/common": "^18.2.0",
- "@angular/core": "^18.2.0"
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0"
},
"dependencies": {
- "@angular/forms": "18.2.12",
- "@angular/router": "18.2.12",
+ "@angular/forms": "19.2.7",
+ "@angular/router": "19.2.7",
"@gauzy/contracts": "^0.1.0",
- "@nebular/theme": "^14.0.2",
+ "@nebular/theme": "^15.0.0",
"@ngneat/until-destroy": "^10.0.0",
- "@ngx-translate/core": "^16.0.3",
- "@ngx-translate/http-loader": "^16.0.0",
- "angular2-smart-table": "^3.4.0",
- "ngx-permissions": "^17.1.0",
+ "@ngx-translate/core": "^16.0.4",
+ "@ngx-translate/http-loader": "^16.0.1",
+ "angular2-smart-table": "^3.6.1",
+ "ngx-permissions": "^19.0.0",
"rxjs": "^7.8.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "jest-preset-angular": "14.1.1"
+ "jest-preset-angular": "14.4.2"
},
"keywords": [
"Angular",
diff --git a/packages/plugins/job-employee-ui/src/lib/components/job-employee/job-employee.component.scss b/packages/plugins/job-employee-ui/src/lib/components/job-employee/job-employee.component.scss
index a427841a4b6..a6c331c3dae 100644
--- a/packages/plugins/job-employee-ui/src/lib/components/job-employee/job-employee.component.scss
+++ b/packages/plugins/job-employee-ui/src/lib/components/job-employee/job-employee.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-table';
-@import 'gauzy/_gauzy-cards';
+@use 'gauzy/_gauzy-table' as *;
+@use 'gauzy/_gauzy-cards' as *;
:host {
height: 100%;
diff --git a/packages/plugins/job-employee-ui/src/lib/components/job-employee/job-employee.component.ts b/packages/plugins/job-employee-ui/src/lib/components/job-employee/job-employee.component.ts
index 2dba511bcb6..59fd4a37a57 100644
--- a/packages/plugins/job-employee-ui/src/lib/components/job-employee/job-employee.component.ts
+++ b/packages/plugins/job-employee-ui/src/lib/components/job-employee/job-employee.component.ts
@@ -45,10 +45,11 @@ export enum JobSearchTabsEnum {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-job-employees',
- templateUrl: './job-employee.component.html',
- styleUrls: ['./job-employee.component.scss'],
- providers: [CurrencyPipe]
+ selector: 'ga-job-employees',
+ templateUrl: './job-employee.component.html',
+ styleUrls: ['./job-employee.component.scss'],
+ providers: [CurrencyPipe],
+ standalone: false
})
export class JobEmployeeComponent extends PaginationFilterBaseComponent implements AfterViewInit, OnInit, OnDestroy {
public tabsetId: PageTabsetRegistryId = this._route.snapshot.data.tabsetId; // The identifier for the tabset
diff --git a/packages/plugins/job-matching-ui/package.json b/packages/plugins/job-matching-ui/package.json
index dc0de9a9a71..1cb387d872b 100644
--- a/packages/plugins/job-matching-ui/package.json
+++ b/packages/plugins/job-matching-ui/package.json
@@ -24,19 +24,19 @@
"lib:watch": "yarn nx build plugin-job-matching-ui --watch --configuration=development"
},
"peerDependencies": {
- "@angular/common": "^18.2.0",
- "@angular/core": "^18.2.0"
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0"
},
"dependencies": {
- "@angular/forms": "18.2.12",
- "@angular/router": "18.2.12",
+ "@angular/forms": "19.2.7",
+ "@angular/router": "19.2.7",
"@gauzy/contracts": "^0.1.0",
- "@nebular/theme": "^14.0.2",
- "@ng-select/ng-select": "^13.9.0",
+ "@nebular/theme": "^15.0.0",
+ "@ng-select/ng-select": "^14.2.2",
"@ngneat/until-destroy": "^10.0.0",
- "@ngx-translate/core": "^16.0.3",
- "@ngx-translate/http-loader": "^16.0.0",
- "ngx-permissions": "^17.1.0",
+ "@ngx-translate/core": "^16.0.4",
+ "@ngx-translate/http-loader": "^16.0.1",
+ "ngx-permissions": "^19.0.0",
"rxjs": "^7.8.0",
"tslib": "^2.6.2",
"underscore": "^1.13.3"
@@ -44,7 +44,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "jest-preset-angular": "14.1.1"
+ "jest-preset-angular": "14.4.2"
},
"keywords": [
"gauzy",
diff --git a/packages/plugins/job-matching-ui/src/lib/components/job-matching/job-matching.component.scss b/packages/plugins/job-matching-ui/src/lib/components/job-matching/job-matching.component.scss
index 43125d6101b..38a59cc4810 100644
--- a/packages/plugins/job-matching-ui/src/lib/components/job-matching/job-matching.component.scss
+++ b/packages/plugins/job-matching-ui/src/lib/components/job-matching/job-matching.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-overrides' as *;
:host {
height: 100%;
diff --git a/packages/plugins/job-matching-ui/src/lib/components/job-matching/job-matching.component.ts b/packages/plugins/job-matching-ui/src/lib/components/job-matching/job-matching.component.ts
index a526d0e25d4..b54e5e7fe98 100644
--- a/packages/plugins/job-matching-ui/src/lib/components/job-matching/job-matching.component.ts
+++ b/packages/plugins/job-matching-ui/src/lib/components/job-matching/job-matching.component.ts
@@ -32,9 +32,10 @@ import { I18nService, TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-job-matching',
- templateUrl: './job-matching.component.html',
- styleUrls: ['./job-matching.component.scss']
+ selector: 'ga-job-matching',
+ templateUrl: './job-matching.component.html',
+ styleUrls: ['./job-matching.component.scss'],
+ standalone: false
})
export class JobMatchingComponent extends TranslationBaseComponent implements OnInit {
public criterionForm = {
diff --git a/packages/plugins/job-proposal-ui/package.json b/packages/plugins/job-proposal-ui/package.json
index 2c0781c3340..ee48cdd1e67 100644
--- a/packages/plugins/job-proposal-ui/package.json
+++ b/packages/plugins/job-proposal-ui/package.json
@@ -24,31 +24,31 @@
"lib:watch": "yarn nx build plugin-job-proposal-ui --watch --configuration=development"
},
"peerDependencies": {
- "@angular/common": "^18.2.0",
- "@angular/core": "^18.2.0"
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0"
},
"dependencies": {
- "@angular/forms": "18.2.12",
- "@angular/platform-browser": "18.2.12",
- "@angular/router": "18.2.12",
+ "@angular/forms": "19.2.7",
+ "@angular/platform-browser": "19.2.7",
+ "@angular/router": "19.2.7",
"@gauzy/contracts": "^0.1.0",
- "@nebular/theme": "^14.0.2",
- "@ng-select/ng-select": "^13.9.0",
+ "@nebular/theme": "^15.0.0",
+ "@ng-select/ng-select": "^14.2.2",
"@ngneat/until-destroy": "^10.0.0",
- "@ngx-translate/core": "^16.0.3",
- "angular2-smart-table": "^3.4.0",
+ "@ngx-translate/core": "^16.0.4",
+ "angular2-smart-table": "^3.6.1",
"ckeditor4-angular": "4.0.1",
"moment": "^2.30.1",
- "ngx-infinite-scroll": "^18.0.0",
+ "ngx-infinite-scroll": "^19.0.0",
"ng2-charts": "^5.0.4",
- "ngx-permissions": "^17.1.0",
+ "ngx-permissions": "^19.0.0",
"rxjs": "^7.8.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "jest-preset-angular": "14.1.1"
+ "jest-preset-angular": "14.4.2"
},
"keywords": [
"Ever Gauzy",
diff --git a/packages/plugins/job-proposal-ui/src/lib/proposal-template/components/add-edit-proposal-template/add-edit-proposal-template.component.scss b/packages/plugins/job-proposal-ui/src/lib/proposal-template/components/add-edit-proposal-template/add-edit-proposal-template.component.scss
index 112472df1c4..19aa49c3146 100644
--- a/packages/plugins/job-proposal-ui/src/lib/proposal-template/components/add-edit-proposal-template/add-edit-proposal-template.component.scss
+++ b/packages/plugins/job-proposal-ui/src/lib/proposal-template/components/add-edit-proposal-template/add-edit-proposal-template.component.scss
@@ -1,4 +1,5 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
+
:host {
display: block;
width: 550px;
diff --git a/packages/plugins/job-proposal-ui/src/lib/proposal-template/components/add-edit-proposal-template/add-edit-proposal-template.component.ts b/packages/plugins/job-proposal-ui/src/lib/proposal-template/components/add-edit-proposal-template/add-edit-proposal-template.component.ts
index 793cd9d1f20..b480da9dc86 100644
--- a/packages/plugins/job-proposal-ui/src/lib/proposal-template/components/add-edit-proposal-template/add-edit-proposal-template.component.ts
+++ b/packages/plugins/job-proposal-ui/src/lib/proposal-template/components/add-edit-proposal-template/add-edit-proposal-template.component.ts
@@ -13,9 +13,10 @@ import { ckEditorConfig } from '@gauzy/ui-core/shared';
@UntilDestroy()
@Component({
- selector: 'ga-add-edit-proposal-template',
- templateUrl: './add-edit-proposal-template.component.html',
- styleUrls: ['./add-edit-proposal-template.component.scss']
+ selector: 'ga-add-edit-proposal-template',
+ templateUrl: './add-edit-proposal-template.component.html',
+ styleUrls: ['./add-edit-proposal-template.component.scss'],
+ standalone: false
})
export class AddEditProposalTemplateComponent extends TranslationBaseComponent implements OnInit {
public organization: IOrganization;
diff --git a/packages/plugins/job-proposal-ui/src/lib/proposal-template/components/proposal-template/proposal-template.component.scss b/packages/plugins/job-proposal-ui/src/lib/proposal-template/components/proposal-template/proposal-template.component.scss
index f4c16b95f56..df570d23395 100644
--- a/packages/plugins/job-proposal-ui/src/lib/proposal-template/components/proposal-template/proposal-template.component.scss
+++ b/packages/plugins/job-proposal-ui/src/lib/proposal-template/components/proposal-template/proposal-template.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-table';
-@import 'gauzy/_gauzy-cards';
+@use 'gauzy/_gauzy-table' as *;
+@use 'gauzy/_gauzy-cards' as *;
:host {
height: 100%;
diff --git a/packages/plugins/job-proposal-ui/src/lib/proposal-template/components/proposal-template/proposal-template.component.ts b/packages/plugins/job-proposal-ui/src/lib/proposal-template/components/proposal-template/proposal-template.component.ts
index bbdd898a074..f7ed213ebe3 100644
--- a/packages/plugins/job-proposal-ui/src/lib/proposal-template/components/proposal-template/proposal-template.component.ts
+++ b/packages/plugins/job-proposal-ui/src/lib/proposal-template/components/proposal-template/proposal-template.component.ts
@@ -43,9 +43,10 @@ export enum ProposalTemplateTabsEnum {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-proposal-template',
- templateUrl: './proposal-template.component.html',
- styleUrls: ['./proposal-template.component.scss']
+ selector: 'ga-proposal-template',
+ templateUrl: './proposal-template.component.html',
+ styleUrls: ['./proposal-template.component.scss'],
+ standalone: false
})
export class ProposalTemplateComponent extends PaginationFilterBaseComponent implements OnInit, OnDestroy {
public smartTableSettings: any;
diff --git a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-details/proposal-details.component.scss b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-details/proposal-details.component.scss
index 99fa01cbc6a..dd1d125e711 100644
--- a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-details/proposal-details.component.scss
+++ b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-details/proposal-details.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-cards';
-@import 'gauzy/_gauzy-table';
+@use 'gauzy/_gauzy-cards' as *;
+@use 'gauzy/_gauzy-table' as *;
.tags {
padding-top: 0.25rem !important;
diff --git a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-details/proposal-details.component.ts b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-details/proposal-details.component.ts
index 74e5edbee8a..b84f7136d3c 100644
--- a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-details/proposal-details.component.ts
+++ b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-details/proposal-details.component.ts
@@ -8,9 +8,10 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-proposal-details',
- templateUrl: './proposal-details.component.html',
- styleUrls: ['./proposal-details.component.scss']
+ selector: 'ngx-proposal-details',
+ templateUrl: './proposal-details.component.html',
+ styleUrls: ['./proposal-details.component.scss'],
+ standalone: false
})
export class ProposalDetailsComponent implements AfterViewInit, OnInit, OnDestroy {
public user: IUser;
diff --git a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-edit/proposal-edit.component.scss b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-edit/proposal-edit.component.scss
index c6a01caecf5..9232913ede4 100644
--- a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-edit/proposal-edit.component.scss
+++ b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-edit/proposal-edit.component.scss
@@ -1,11 +1,17 @@
-@import 'gauzy/_gauzy-cards';
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-cards' as *;
+@use 'gauzy/_gauzy-overrides' as ga-overrides;
.text-editors {
- padding-right: 15px;
- padding-left: 15px;
+ /* combine left/right paddings */
+ padding: 0 15px;
}
:host {
+ h4 {
+ font-size: 24px;
+ font-weight: 500;
+ line-height: 30px;
+ letter-spacing: 0em;
+ }
@include nb-card-overrides(
overlay,
calc($default-card-height + 3.5rem),
@@ -16,11 +22,5 @@
nb-card-footer {
background-color: var(--gauzy-card-2);
}
- @include input-appearance(42px, var(--gauzy-card-1));
-}
-h4 {
- font-size: 24px;
- font-weight: 500;
- line-height: 30px;
- letter-spacing: 0em;
+ @include ga-overrides.input-appearance(42px, var(--gauzy-card-1));
}
diff --git a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-edit/proposal-edit.component.ts b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-edit/proposal-edit.component.ts
index 854ef2793a3..15bfa5afdca 100644
--- a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-edit/proposal-edit.component.ts
+++ b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-edit/proposal-edit.component.ts
@@ -19,9 +19,10 @@ import { ckEditorConfig } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-proposal-edit',
- templateUrl: './proposal-edit.component.html',
- styleUrls: ['./proposal-edit.component.scss']
+ selector: 'ngx-proposal-edit',
+ templateUrl: './proposal-edit.component.html',
+ styleUrls: ['./proposal-edit.component.scss'],
+ standalone: false
})
export class ProposalEditComponent extends TranslationBaseComponent implements OnInit, AfterViewInit {
public proposal: IProposal;
diff --git a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-layout.component.ts b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-layout.component.ts
index 52e4a536009..94764f34ec2 100644
--- a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-layout.component.ts
+++ b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-layout.component.ts
@@ -10,16 +10,17 @@ import { I18nService } from '@gauzy/ui-core/i18n';
@UntilDestroy()
@Component({
- selector: 'gz-proposal-layout',
- template: ` `,
- styles: [
- `
+ selector: 'gz-proposal-layout',
+ template: ` `,
+ styles: [
+ `
:host {
height: 100%;
display: block;
}
`
- ]
+ ],
+ standalone: false
})
export class ProposalLayoutComponent implements OnDestroy {
constructor(
diff --git a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-pie-chart/proposal-pie-chart.component.scss b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-pie-chart/proposal-pie-chart.component.scss
index 109786656cd..d06de59dcb5 100644
--- a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-pie-chart/proposal-pie-chart.component.scss
+++ b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-pie-chart/proposal-pie-chart.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
@include nb-install-component() {
ngx-echarts-pie,
@@ -12,7 +12,6 @@
height: nb-theme(card-height-medium);
width: 100%;
}
-
::ng-deep .echart {
height: 100%;
width: 100%;
diff --git a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-pie-chart/proposal-pie-chart.component.ts b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-pie-chart/proposal-pie-chart.component.ts
index b57278e290e..fce127565e6 100644
--- a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-pie-chart/proposal-pie-chart.component.ts
+++ b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-pie-chart/proposal-pie-chart.component.ts
@@ -8,9 +8,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
type JSThemeVariable = string | NbJSThemeVariable | string[];
@Component({
- selector: 'ngx-proposal-pie-chart',
- template: ``,
- styleUrls: ['./proposal-pie-chart.component.scss']
+ selector: 'ngx-proposal-pie-chart',
+ template: ``,
+ styleUrls: ['./proposal-pie-chart.component.scss'],
+ standalone: false
})
export class ProposalPieChartComponent extends TranslationBaseComponent implements AfterViewInit, OnDestroy {
@Input() values: { name: string; value: number }[];
diff --git a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-register/proposal-register.component.scss b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-register/proposal-register.component.scss
index 8931d784e25..b97c63e454a 100644
--- a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-register/proposal-register.component.scss
+++ b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-register/proposal-register.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-cards';
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-cards' as *;
+@use 'gauzy/_gauzy-overrides' as ga-overrides;
.register-btn {
margin: 20px;
@@ -57,10 +57,10 @@
@include nb-rtl(margin, 3px 0 0 0 !important);
}
}
- @include card-overrides(overlay, calc($default-card-height + 1.5rem), $default-radius);
+ @include card_overrides(overlay, calc($default-card-height + 1.5rem), $default-radius);
.card,
.card-body {
background: var(--gauzy-card-2);
}
- @include input-appearance(42px, var(--gauzy-card-1));
+ @include ga-overrides.input-appearance(42px, var(--gauzy-card-1));
}
diff --git a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-register/proposal-register.component.ts b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-register/proposal-register.component.ts
index 5b9f0250636..8e8162d38db 100644
--- a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-register/proposal-register.component.ts
+++ b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal-register/proposal-register.component.ts
@@ -30,9 +30,10 @@ import { ckEditorConfig } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-proposal-register',
- templateUrl: './proposal-register.component.html',
- styleUrls: ['././proposal-register.component.scss']
+ selector: 'ga-proposal-register',
+ templateUrl: './proposal-register.component.html',
+ styleUrls: ['././proposal-register.component.scss'],
+ standalone: false
})
export class ProposalRegisterComponent extends TranslationBaseComponent implements OnInit, OnDestroy, AfterViewInit {
proposalTemplate: IEmployeeProposalTemplate;
diff --git a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal/proposal.component.scss b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal/proposal.component.scss
index 60e40264033..5aabe0eb06b 100644
--- a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal/proposal.component.scss
+++ b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal/proposal.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_pg-card';
+@forward '@shared/_pg-card';
.statistics {
display: flex;
diff --git a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal/proposal.component.ts b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal/proposal.component.ts
index 986500b015b..f3104efb244 100644
--- a/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal/proposal.component.ts
+++ b/packages/plugins/job-proposal-ui/src/lib/proposal/components/proposal/proposal.component.ts
@@ -49,9 +49,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-proposal-list',
- templateUrl: './proposal.component.html',
- styleUrls: ['./proposal.component.scss']
+ selector: 'ga-proposal-list',
+ templateUrl: './proposal.component.html',
+ styleUrls: ['./proposal.component.scss'],
+ standalone: false
})
export class ProposalComponent extends PaginationFilterBaseComponent implements AfterViewInit, OnInit, OnDestroy {
public smartTableSettings: any;
diff --git a/packages/plugins/job-proposal-ui/src/lib/proposal/components/table-components/job-title/job-title.component.ts b/packages/plugins/job-proposal-ui/src/lib/proposal/components/table-components/job-title/job-title.component.ts
index 4135750a9af..3454e3f696d 100644
--- a/packages/plugins/job-proposal-ui/src/lib/proposal/components/table-components/job-title/job-title.component.ts
+++ b/packages/plugins/job-proposal-ui/src/lib/proposal/components/table-components/job-title/job-title.component.ts
@@ -1,7 +1,8 @@
import { Component, Input } from '@angular/core';
@Component({
- template: `{{ rowData.jobTitle }}`
+ template: `{{ rowData.jobTitle }}`,
+ standalone: false
})
export class JobTitleComponent {
@Input() rowData: any;
diff --git a/packages/plugins/job-proposal-ui/src/lib/proposal/components/table-components/proposal-status/proposal-status.component.ts b/packages/plugins/job-proposal-ui/src/lib/proposal/components/table-components/proposal-status/proposal-status.component.ts
index 9da7af6b1ef..78a539a4e27 100644
--- a/packages/plugins/job-proposal-ui/src/lib/proposal/components/table-components/proposal-status/proposal-status.component.ts
+++ b/packages/plugins/job-proposal-ui/src/lib/proposal/components/table-components/proposal-status/proposal-status.component.ts
@@ -1,9 +1,10 @@
import { Component, Input } from '@angular/core';
@Component({
- selector: 'ga-proposal-status',
- templateUrl: './proposal-status.component.html',
- styleUrls: ['./proposal-status.component.scss']
+ selector: 'ga-proposal-status',
+ templateUrl: './proposal-status.component.html',
+ styleUrls: ['./proposal-status.component.scss'],
+ standalone: false
})
export class ProposalStatusComponent {
@Input() rowData: any;
diff --git a/packages/plugins/job-proposal/package.json b/packages/plugins/job-proposal/package.json
index 45061dd2ccf..fdd554921a1 100644
--- a/packages/plugins/job-proposal/package.json
+++ b/packages/plugins/job-proposal/package.json
@@ -49,7 +49,7 @@
"@nestjs/testing": "^10.4.15",
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"job-proposal",
diff --git a/packages/plugins/job-search-ui/package.json b/packages/plugins/job-search-ui/package.json
index ea312ac7537..c2632e0b225 100644
--- a/packages/plugins/job-search-ui/package.json
+++ b/packages/plugins/job-search-ui/package.json
@@ -24,22 +24,22 @@
"lib:watch": "yarn nx build plugin-job-search-ui --watch --configuration=development"
},
"peerDependencies": {
- "@angular/common": "^18.2.0",
- "@angular/core": "^18.2.0"
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0"
},
"dependencies": {
- "@angular/forms": "18.2.12",
- "@angular/router": "18.2.12",
+ "@angular/forms": "19.2.7",
+ "@angular/router": "19.2.7",
"@gauzy/contracts": "^0.1.0",
- "@nebular/theme": "^14.0.2",
+ "@nebular/theme": "^15.0.0",
"@ngneat/until-destroy": "^10.0.0",
- "@ngx-translate/core": "^16.0.3",
- "@ngx-translate/http-loader": "^16.0.0",
- "angular2-smart-table": "^3.4.0",
+ "@ngx-translate/core": "^16.0.4",
+ "@ngx-translate/http-loader": "^16.0.1",
+ "angular2-smart-table": "^3.6.1",
"ckeditor4-angular": "4.0.1",
- "ng2-file-upload": "^7.0.1",
+ "ng2-file-upload": "^8.0.0",
"ngx-moment": "^6.0.2",
- "ngx-permissions": "^17.1.0",
+ "ngx-permissions": "^19.0.0",
"rxjs": "^7.8.0",
"tslib": "^2.6.2",
"underscore": "^1.13.3"
@@ -47,7 +47,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "jest-preset-angular": "14.1.1"
+ "jest-preset-angular": "14.4.2"
},
"keywords": [
"job search",
diff --git a/packages/plugins/job-search-ui/src/lib/components/apply-job-manually/apply-job-manually.component.scss b/packages/plugins/job-search-ui/src/lib/components/apply-job-manually/apply-job-manually.component.scss
index cf64b884086..ee4d66dae39 100644
--- a/packages/plugins/job-search-ui/src/lib/components/apply-job-manually/apply-job-manually.component.scss
+++ b/packages/plugins/job-search-ui/src/lib/components/apply-job-manually/apply-job-manually.component.scss
@@ -1,4 +1,5 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
+
:host {
.main {
display: flex;
diff --git a/packages/plugins/job-search-ui/src/lib/components/apply-job-manually/apply-job-manually.component.ts b/packages/plugins/job-search-ui/src/lib/components/apply-job-manually/apply-job-manually.component.ts
index d2752b7a26d..1d67df3e383 100644
--- a/packages/plugins/job-search-ui/src/lib/components/apply-job-manually/apply-job-manually.component.ts
+++ b/packages/plugins/job-search-ui/src/lib/components/apply-job-manually/apply-job-manually.component.ts
@@ -27,10 +27,11 @@ import { EmployeeSelectorComponent, FormHelpers, ckEditorConfig } from '@gauzy/u
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-apply-job-manually',
- templateUrl: './apply-job-manually.component.html',
- styleUrls: ['./apply-job-manually.component.scss'],
- providers: []
+ selector: 'ga-apply-job-manually',
+ templateUrl: './apply-job-manually.component.html',
+ styleUrls: ['./apply-job-manually.component.scss'],
+ providers: [],
+ standalone: false
})
export class ApplyJobManuallyComponent extends TranslationBaseComponent implements AfterViewInit, OnInit, OnDestroy {
public JobPostSourceEnum: typeof JobPostSourceEnum = JobPostSourceEnum;
diff --git a/packages/plugins/job-search-ui/src/lib/components/job-search/job-search.component.scss b/packages/plugins/job-search-ui/src/lib/components/job-search/job-search.component.scss
index 1cac85ff98f..924475402d7 100644
--- a/packages/plugins/job-search-ui/src/lib/components/job-search/job-search.component.scss
+++ b/packages/plugins/job-search-ui/src/lib/components/job-search/job-search.component.scss
@@ -1,6 +1,6 @@
-@import 'gauzy/_gauzy-table.scss';
-@import 'gauzy/_gauzy-overrides';
-@import 'gauzy/_gauzy-cards.scss';
+@use 'gauzy/_gauzy-table' as *;
+@use 'gauzy/_gauzy-overrides' as *;
+@use 'gauzy/_gauzy-cards' as *;
:host {
.form-group {
diff --git a/packages/plugins/job-search-ui/src/lib/components/job-search/job-search.component.ts b/packages/plugins/job-search-ui/src/lib/components/job-search/job-search.component.ts
index 3acd34972e6..26167201a5e 100644
--- a/packages/plugins/job-search-ui/src/lib/components/job-search/job-search.component.ts
+++ b/packages/plugins/job-search-ui/src/lib/components/job-search/job-search.component.ts
@@ -51,9 +51,10 @@ import { JobTitleDescriptionDetailsComponent } from '../job-title-description-de
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-job-search',
- templateUrl: './job-search.component.html',
- styleUrls: ['./job-search.component.scss']
+ selector: 'ga-job-search',
+ templateUrl: './job-search.component.html',
+ styleUrls: ['./job-search.component.scss'],
+ standalone: false
})
export class JobSearchComponent extends PaginationFilterBaseComponent implements AfterViewInit, OnInit, OnDestroy {
loading: boolean = false;
diff --git a/packages/plugins/job-search-ui/src/lib/components/job-status/job-status.component.ts b/packages/plugins/job-search-ui/src/lib/components/job-status/job-status.component.ts
index 13a31df5343..caeda20327c 100644
--- a/packages/plugins/job-search-ui/src/lib/components/job-status/job-status.component.ts
+++ b/packages/plugins/job-search-ui/src/lib/components/job-status/job-status.component.ts
@@ -4,10 +4,11 @@ import { TranslateService } from '@ngx-translate/core';
import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@Component({
- selector: 'job-status',
- templateUrl: './job-status.component.html',
- styleUrls: ['./job-status.component.scss'],
- providers: []
+ selector: 'job-status',
+ templateUrl: './job-status.component.html',
+ styleUrls: ['./job-status.component.scss'],
+ providers: [],
+ standalone: false
})
export class JobStatusComponent extends TranslationBaseComponent {
constructor(translateService: TranslateService) {
diff --git a/packages/plugins/job-search-ui/src/lib/components/job-title-description-details/job-title-description-details.component.ts b/packages/plugins/job-search-ui/src/lib/components/job-title-description-details/job-title-description-details.component.ts
index 25d0a1a54fd..8c322373da2 100644
--- a/packages/plugins/job-search-ui/src/lib/components/job-title-description-details/job-title-description-details.component.ts
+++ b/packages/plugins/job-search-ui/src/lib/components/job-title-description-details/job-title-description-details.component.ts
@@ -5,10 +5,11 @@ import { IVisibilityJobPostInput } from '@gauzy/contracts';
import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@Component({
- selector: 'job-title-description-details',
- templateUrl: './job-title-description-details.component.html',
- styleUrls: ['./job-title-description-details.component.scss'],
- providers: [CurrencyPipe]
+ selector: 'job-title-description-details',
+ templateUrl: './job-title-description-details.component.html',
+ styleUrls: ['./job-title-description-details.component.scss'],
+ providers: [CurrencyPipe],
+ standalone: false
})
export class JobTitleDescriptionDetailsComponent extends TranslationBaseComponent {
constructor(translateService: TranslateService) {
diff --git a/packages/plugins/job-search/package.json b/packages/plugins/job-search/package.json
index 5c0fb469ca6..6e1f649d70e 100644
--- a/packages/plugins/job-search/package.json
+++ b/packages/plugins/job-search/package.json
@@ -49,7 +49,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"job-search",
diff --git a/packages/plugins/knowledge-base/package.json b/packages/plugins/knowledge-base/package.json
index a74eb22ca86..e8a1ac8924e 100644
--- a/packages/plugins/knowledge-base/package.json
+++ b/packages/plugins/knowledge-base/package.json
@@ -38,7 +38,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"knowledge-base",
diff --git a/packages/plugins/legal-ui/package.json b/packages/plugins/legal-ui/package.json
index b15f3664ecb..6b33d0de3e8 100644
--- a/packages/plugins/legal-ui/package.json
+++ b/packages/plugins/legal-ui/package.json
@@ -24,19 +24,19 @@
"lib:watch": "yarn nx build plugin-legal-ui --watch --configuration=development"
},
"peerDependencies": {
- "@angular/common": "^18.2.0",
- "@angular/core": "^18.2.0"
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0"
},
"dependencies": {
- "@angular/router": "18.2.12",
- "@nebular/auth": "^14.0.2",
- "@ngx-translate/core": "^16.0.3",
+ "@angular/router": "19.2.7",
+ "@nebular/auth": "^15.0.0",
+ "@ngx-translate/core": "^16.0.4",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "jest-preset-angular": "14.1.1"
+ "jest-preset-angular": "14.4.2"
},
"keywords": [
"legal",
diff --git a/packages/plugins/legal-ui/src/lib/components/privacy-policy/privacy-policy.component.scss b/packages/plugins/legal-ui/src/lib/components/privacy-policy/privacy-policy.component.scss
index b48aaf87323..a444c48721c 100644
--- a/packages/plugins/legal-ui/src/lib/components/privacy-policy/privacy-policy.component.scss
+++ b/packages/plugins/legal-ui/src/lib/components/privacy-policy/privacy-policy.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes';
:host {
background-color: var(--gauzy-card-2);
diff --git a/packages/plugins/legal-ui/src/lib/components/privacy-policy/privacy-policy.component.ts b/packages/plugins/legal-ui/src/lib/components/privacy-policy/privacy-policy.component.ts
index 5f886ed748d..9cb93a8b5da 100644
--- a/packages/plugins/legal-ui/src/lib/components/privacy-policy/privacy-policy.component.ts
+++ b/packages/plugins/legal-ui/src/lib/components/privacy-policy/privacy-policy.component.ts
@@ -6,8 +6,9 @@ export const PRIVACY_POLICY_ENDPOINT = 'https://www.iubenda.com/api/privacy-poli
export const COOKIE_PRIVACY_POLICY_ENDPOINT = 'https://www.iubenda.com/api/privacy-policy/18120170/cookie-policy';
@Component({
- templateUrl: './privacy-policy.component.html',
- styleUrls: ['./privacy-policy.component.scss']
+ templateUrl: './privacy-policy.component.html',
+ styleUrls: ['./privacy-policy.component.scss'],
+ standalone: false
})
export class PrivacyPolicyComponent implements OnInit, OnDestroy {
public privacy_policy: string;
diff --git a/packages/plugins/legal-ui/src/lib/components/terms-and-conditions/terms-and-conditions.component.scss b/packages/plugins/legal-ui/src/lib/components/terms-and-conditions/terms-and-conditions.component.scss
index 309e664955e..a6c4b9a073d 100644
--- a/packages/plugins/legal-ui/src/lib/components/terms-and-conditions/terms-and-conditions.component.scss
+++ b/packages/plugins/legal-ui/src/lib/components/terms-and-conditions/terms-and-conditions.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes';
::ng-deep {
.term-container {
diff --git a/packages/plugins/legal-ui/src/lib/components/terms-and-conditions/terms-and-conditions.component.ts b/packages/plugins/legal-ui/src/lib/components/terms-and-conditions/terms-and-conditions.component.ts
index e8bf753b9c4..a95fbf7b4b8 100644
--- a/packages/plugins/legal-ui/src/lib/components/terms-and-conditions/terms-and-conditions.component.ts
+++ b/packages/plugins/legal-ui/src/lib/components/terms-and-conditions/terms-and-conditions.component.ts
@@ -5,9 +5,10 @@ import { LegalService } from '../../providers/legal.service';
export const TERM_AND_POLICY_ENDPOINT = 'https://www.iubenda.com/api/terms-and-conditions/7927924';
@Component({
- selector: 'ga-terms-conditions',
- templateUrl: './terms-and-conditions.component.html',
- styleUrls: ['./terms-and-conditions.component.scss']
+ selector: 'ga-terms-conditions',
+ templateUrl: './terms-and-conditions.component.html',
+ styleUrls: ['./terms-and-conditions.component.scss'],
+ standalone: false
})
export class TermsAndConditionsComponent implements OnInit, OnDestroy {
public term_and_policy: string;
diff --git a/packages/plugins/maintenance-ui/package.json b/packages/plugins/maintenance-ui/package.json
index 28704329c37..5d82e3c0548 100644
--- a/packages/plugins/maintenance-ui/package.json
+++ b/packages/plugins/maintenance-ui/package.json
@@ -24,20 +24,20 @@
"lib:watch": "yarn nx build plugin-maintenance-ui --watch --configuration=development"
},
"peerDependencies": {
- "@angular/common": "^18.2.0",
- "@angular/core": "^18.2.0"
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0"
},
"dependencies": {
- "@angular/router": "18.2.12",
+ "@angular/router": "19.2.7",
"@gauzy/contracts": "^0.1.0",
- "@nebular/theme": "^14.0.2",
- "@ngx-translate/core": "^16.0.3",
+ "@nebular/theme": "^15.0.0",
+ "@ngx-translate/core": "^16.0.4",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "jest-preset-angular": "14.1.1"
+ "jest-preset-angular": "14.4.2"
},
"keywords": [],
"engines": {
diff --git a/packages/plugins/maintenance-ui/src/lib/maintenance-mode.component.ts b/packages/plugins/maintenance-ui/src/lib/maintenance-mode.component.ts
index 4a1f21f35d2..3a6d3b0db47 100644
--- a/packages/plugins/maintenance-ui/src/lib/maintenance-mode.component.ts
+++ b/packages/plugins/maintenance-ui/src/lib/maintenance-mode.component.ts
@@ -4,9 +4,10 @@ import { environment } from '@gauzy/ui-config';
import { ServerConnectionService, Store } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-maintenance-mode',
- styleUrls: ['./maintenance-mode.component.scss'],
- templateUrl: './maintenance-mode.component.html'
+ selector: 'ga-maintenance-mode',
+ styleUrls: ['./maintenance-mode.component.scss'],
+ templateUrl: './maintenance-mode.component.html',
+ standalone: false
})
export class MaintenanceModeComponent implements OnInit, OnDestroy {
noInternetLogo: string;
diff --git a/packages/plugins/onboarding-ui/package.json b/packages/plugins/onboarding-ui/package.json
index 7a190e12077..b482acb2c20 100644
--- a/packages/plugins/onboarding-ui/package.json
+++ b/packages/plugins/onboarding-ui/package.json
@@ -24,23 +24,23 @@
"lib:watch": "yarn nx build plugin-onboarding-ui --watch --configuration=development"
},
"peerDependencies": {
- "@angular/common": "^18.2.0",
- "@angular/core": "^18.2.0"
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0"
},
"dependencies": {
- "@angular/router": "18.2.12",
+ "@angular/router": "19.2.7",
"@gauzy/contracts": "^0.1.0",
- "@nebular/theme": "^14.0.2",
+ "@nebular/theme": "^15.0.0",
"@ngneat/until-destroy": "^10.0.0",
- "@ngx-translate/core": "^16.0.3",
- "ngx-permissions": "^17.1.0",
+ "@ngx-translate/core": "^16.0.4",
+ "ngx-permissions": "^19.0.0",
"rxjs": "^7.8.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "jest-preset-angular": "14.1.1"
+ "jest-preset-angular": "14.4.2"
},
"keywords": [
"onboarding",
diff --git a/packages/plugins/onboarding-ui/src/lib/components/onboarding-complete/onboarding-complete.component.ts b/packages/plugins/onboarding-ui/src/lib/components/onboarding-complete/onboarding-complete.component.ts
index 6ff07a6657b..fb6e254dfc5 100644
--- a/packages/plugins/onboarding-ui/src/lib/components/onboarding-complete/onboarding-complete.component.ts
+++ b/packages/plugins/onboarding-ui/src/lib/components/onboarding-complete/onboarding-complete.component.ts
@@ -10,9 +10,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-onboarding-complete',
- templateUrl: './onboarding-complete.component.html',
- styleUrls: ['./onboarding-complete.component.scss']
+ selector: 'ga-onboarding-complete',
+ templateUrl: './onboarding-complete.component.html',
+ styleUrls: ['./onboarding-complete.component.scss'],
+ standalone: false
})
export class OnboardingCompleteComponent extends TranslationBaseComponent implements OnInit {
blocks$: Observable = this._featureStoreService.blocks$;
diff --git a/packages/plugins/onboarding-ui/src/lib/components/onboarding.component.ts b/packages/plugins/onboarding-ui/src/lib/components/onboarding.component.ts
index 58c38f11afe..3d356a1fbb5 100644
--- a/packages/plugins/onboarding-ui/src/lib/components/onboarding.component.ts
+++ b/packages/plugins/onboarding-ui/src/lib/components/onboarding.component.ts
@@ -1,14 +1,15 @@
import { Component } from '@angular/core';
@Component({
- selector: 'ga-onboarding',
- template: `
+ selector: 'ga-onboarding',
+ template: `
- `
+ `,
+ standalone: false
})
export class OnboardingComponent {}
diff --git a/packages/plugins/onboarding-ui/src/lib/components/tenant-onboarding/tenant-onboarding.component.ts b/packages/plugins/onboarding-ui/src/lib/components/tenant-onboarding/tenant-onboarding.component.ts
index 433c1049b42..189ebd7cabf 100644
--- a/packages/plugins/onboarding-ui/src/lib/components/tenant-onboarding/tenant-onboarding.component.ts
+++ b/packages/plugins/onboarding-ui/src/lib/components/tenant-onboarding/tenant-onboarding.component.ts
@@ -15,9 +15,10 @@ import {
@UntilDestroy()
@Component({
- selector: 'ga-tenant-onboarding',
- templateUrl: './tenant-onboarding.component.html',
- styleUrls: ['./tenant-onboarding.component.scss']
+ selector: 'ga-tenant-onboarding',
+ templateUrl: './tenant-onboarding.component.html',
+ styleUrls: ['./tenant-onboarding.component.scss'],
+ standalone: false
})
export class TenantOnboardingComponent implements OnInit, OnDestroy {
public loading: boolean = true;
diff --git a/packages/plugins/posthog/package.json b/packages/plugins/posthog/package.json
index d020625ab54..2d17901a0e0 100644
--- a/packages/plugins/posthog/package.json
+++ b/packages/plugins/posthog/package.json
@@ -39,7 +39,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"gauzy",
diff --git a/packages/plugins/product-reviews/package.json b/packages/plugins/product-reviews/package.json
index 5a2852ee1f9..5ff616f8c62 100644
--- a/packages/plugins/product-reviews/package.json
+++ b/packages/plugins/product-reviews/package.json
@@ -42,7 +42,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"gauzy",
diff --git a/packages/plugins/product-reviews/src/lib/graphql/schema-extensions.ts b/packages/plugins/product-reviews/src/lib/graphql/schema-extensions.ts
index eccc2c09366..c6b64709e52 100644
--- a/packages/plugins/product-reviews/src/lib/graphql/schema-extensions.ts
+++ b/packages/plugins/product-reviews/src/lib/graphql/schema-extensions.ts
@@ -1,9 +1,9 @@
import { gql } from 'graphql-tag';
export const schemaExtensions = gql`
- type ProductReview {
- id: ID!
- body: String
- rating: Float!
- }
+ type ProductReview {
+ id: ID!
+ body: String
+ rating: Float!
+ }
`;
diff --git a/packages/plugins/public-layout-ui/package.json b/packages/plugins/public-layout-ui/package.json
index 9c7a0c3a627..0bf3869de93 100644
--- a/packages/plugins/public-layout-ui/package.json
+++ b/packages/plugins/public-layout-ui/package.json
@@ -23,29 +23,29 @@
"lib:watch": "yarn nx build plugin-public-layout-ui --watch --configuration=development"
},
"peerDependencies": {
- "@angular/common": "^18.2.0",
- "@angular/core": "^18.2.0"
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0"
},
"dependencies": {
- "@angular/forms": "18.2.12",
- "@angular/router": "18.2.12",
- "@fullcalendar/angular": "^6.1.15",
+ "@angular/forms": "19.2.7",
+ "@angular/router": "19.2.7",
+ "@fullcalendar/angular": "^6.1.17",
"@gauzy/contracts": "^0.1.0",
- "@nebular/theme": "^14.0.2",
- "@ng-select/ng-select": "^13.9.0",
+ "@nebular/theme": "^15.0.0",
+ "@ng-select/ng-select": "^14.2.2",
"@ngneat/until-destroy": "^10.0.0",
- "@ngx-translate/core": "^16.0.3",
+ "@ngx-translate/core": "^16.0.4",
"ckeditor4-angular": "4.0.1",
"moment": "^2.30.1",
- "ng2-file-upload": "^7.0.1",
- "ngx-permissions": "^17.1.0",
+ "ng2-file-upload": "^8.0.0",
+ "ngx-permissions": "^19.0.0",
"rxjs": "^7.8.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "jest-preset-angular": "14.1.1"
+ "jest-preset-angular": "14.4.2"
},
"keywords": [
"angular",
diff --git a/packages/plugins/public-layout-ui/src/lib/components/appointment-form/appointment-form.component.ts b/packages/plugins/public-layout-ui/src/lib/components/appointment-form/appointment-form.component.ts
index e796bea2239..2fd5c8c98e5 100644
--- a/packages/plugins/public-layout-ui/src/lib/components/appointment-form/appointment-form.component.ts
+++ b/packages/plugins/public-layout-ui/src/lib/components/appointment-form/appointment-form.component.ts
@@ -9,7 +9,8 @@ import { EmployeesService } from '@gauzy/ui-core/core';
@UntilDestroy()
@Component({
- templateUrl: './appointment-form.component.html'
+ templateUrl: './appointment-form.component.html',
+ standalone: false
})
export class AppointmentFormComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
public loading: boolean = true;
diff --git a/packages/plugins/public-layout-ui/src/lib/components/confirm-appointment/confirm-appointment.component.ts b/packages/plugins/public-layout-ui/src/lib/components/confirm-appointment/confirm-appointment.component.ts
index 72b83807088..b8d27261c26 100644
--- a/packages/plugins/public-layout-ui/src/lib/components/confirm-appointment/confirm-appointment.component.ts
+++ b/packages/plugins/public-layout-ui/src/lib/components/confirm-appointment/confirm-appointment.component.ts
@@ -14,9 +14,10 @@ import { AlertModalComponent } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-confirm-appointment',
- templateUrl: './confirm-appointment.component.html',
- providers: [EmployeeAppointmentService]
+ selector: 'ga-confirm-appointment',
+ templateUrl: './confirm-appointment.component.html',
+ providers: [EmployeeAppointmentService],
+ standalone: false
})
export class ConfirmAppointmentComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
public loading: boolean = false;
diff --git a/packages/plugins/public-layout-ui/src/lib/components/create-appointment/create-appointment.component.ts b/packages/plugins/public-layout-ui/src/lib/components/create-appointment/create-appointment.component.ts
index cb8b15e68f7..f2fe47411ef 100644
--- a/packages/plugins/public-layout-ui/src/lib/components/create-appointment/create-appointment.component.ts
+++ b/packages/plugins/public-layout-ui/src/lib/components/create-appointment/create-appointment.component.ts
@@ -9,9 +9,10 @@ import { EmployeesService, ErrorHandlingService, EventTypeService } from '@gauzy
@UntilDestroy()
@Component({
- templateUrl: './create-appointment.component.html',
- styleUrls: ['../public-appointment/public-appointment.component.scss'],
- providers: [EventTypeService]
+ templateUrl: './create-appointment.component.html',
+ styleUrls: ['../public-appointment/public-appointment.component.scss'],
+ providers: [EventTypeService],
+ standalone: false
})
export class CreateAppointmentComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
public employee$: Observable;
diff --git a/packages/plugins/public-layout-ui/src/lib/components/edit-appointment/edit-appointment.component.ts b/packages/plugins/public-layout-ui/src/lib/components/edit-appointment/edit-appointment.component.ts
index 39472079e8a..3a6d2b9de6f 100644
--- a/packages/plugins/public-layout-ui/src/lib/components/edit-appointment/edit-appointment.component.ts
+++ b/packages/plugins/public-layout-ui/src/lib/components/edit-appointment/edit-appointment.component.ts
@@ -10,8 +10,9 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy()
@Component({
- selector: 'ga-edit-appointment',
- templateUrl: './edit-appointment.component.html'
+ selector: 'ga-edit-appointment',
+ templateUrl: './edit-appointment.component.html',
+ standalone: false
})
export class EditAppointmentComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
public loading: boolean;
diff --git a/packages/plugins/public-layout-ui/src/lib/components/employee/employee.component.scss b/packages/plugins/public-layout-ui/src/lib/components/employee/employee.component.scss
index 5d0cc9c6da7..46e38eb8794 100644
--- a/packages/plugins/public-layout-ui/src/lib/components/employee/employee.component.scss
+++ b/packages/plugins/public-layout-ui/src/lib/components/employee/employee.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-table';
+@use 'gauzy/_gauzy-table' as *;
.employee-info-wrapper,
.right-side {
diff --git a/packages/plugins/public-layout-ui/src/lib/components/employee/employee.component.ts b/packages/plugins/public-layout-ui/src/lib/components/employee/employee.component.ts
index 37e1441c457..1cb89b4105d 100644
--- a/packages/plugins/public-layout-ui/src/lib/components/employee/employee.component.ts
+++ b/packages/plugins/public-layout-ui/src/lib/components/employee/employee.component.ts
@@ -13,9 +13,10 @@ import { PublicPageEmployeeMutationComponent } from '../mutation/public-page-emp
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-employee-share',
- templateUrl: './employee.component.html',
- styleUrls: ['./employee.component.scss']
+ selector: 'ngx-employee-share',
+ templateUrl: './employee.component.html',
+ styleUrls: ['./employee.component.scss'],
+ standalone: false
})
export class EmployeeComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
public hasEditPermission$: Observable;
diff --git a/packages/plugins/public-layout-ui/src/lib/components/invoice-estimate/invoice-estimate-view.component.ts b/packages/plugins/public-layout-ui/src/lib/components/invoice-estimate/invoice-estimate-view.component.ts
index 4414db88a08..5bd6176d99c 100644
--- a/packages/plugins/public-layout-ui/src/lib/components/invoice-estimate/invoice-estimate-view.component.ts
+++ b/packages/plugins/public-layout-ui/src/lib/components/invoice-estimate/invoice-estimate-view.component.ts
@@ -10,9 +10,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gz-public-invoice-estimate-view',
- templateUrl: './invoice-estimate-view.component.html',
- styleUrls: ['./invoice-estimate-view.component.scss']
+ selector: 'gz-public-invoice-estimate-view',
+ templateUrl: './invoice-estimate-view.component.html',
+ styleUrls: ['./invoice-estimate-view.component.scss'],
+ standalone: false
})
export class InvoiceEstimateViewComponent extends TranslationBaseComponent implements OnInit {
public invoice$: Observable;
diff --git a/packages/plugins/public-layout-ui/src/lib/components/mutation/public-page-employee-mutation/public-page-employee-mutation.component.scss b/packages/plugins/public-layout-ui/src/lib/components/mutation/public-page-employee-mutation/public-page-employee-mutation.component.scss
index 52b5f5bbbc0..215d19ae81f 100644
--- a/packages/plugins/public-layout-ui/src/lib/components/mutation/public-page-employee-mutation/public-page-employee-mutation.component.scss
+++ b/packages/plugins/public-layout-ui/src/lib/components/mutation/public-page-employee-mutation/public-page-employee-mutation.component.scss
@@ -1 +1 @@
-@import '../public-page-organization-mutation/public-page-organization-mutation.component.scss';
+@forward '../public-page-organization-mutation/public-page-organization-mutation.component';
diff --git a/packages/plugins/public-layout-ui/src/lib/components/mutation/public-page-employee-mutation/public-page-employee-mutation.component.ts b/packages/plugins/public-layout-ui/src/lib/components/mutation/public-page-employee-mutation/public-page-employee-mutation.component.ts
index 703c6623a83..c3bbb070e1a 100644
--- a/packages/plugins/public-layout-ui/src/lib/components/mutation/public-page-employee-mutation/public-page-employee-mutation.component.ts
+++ b/packages/plugins/public-layout-ui/src/lib/components/mutation/public-page-employee-mutation/public-page-employee-mutation.component.ts
@@ -30,9 +30,10 @@ import { ckEditorConfig } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-public-page-employee-mutation',
- templateUrl: './public-page-employee-mutation.component.html',
- styleUrls: ['./public-page-employee-mutation.component.scss']
+ selector: 'ngx-public-page-employee-mutation',
+ templateUrl: './public-page-employee-mutation.component.html',
+ styleUrls: ['./public-page-employee-mutation.component.scss'],
+ standalone: false
})
export class PublicPageEmployeeMutationComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
employee: IEmployee;
diff --git a/packages/plugins/public-layout-ui/src/lib/components/mutation/public-page-organization-mutation/public-page-organization-mutation.component.scss b/packages/plugins/public-layout-ui/src/lib/components/mutation/public-page-organization-mutation/public-page-organization-mutation.component.scss
index f2e03edd636..909799e7a82 100644
--- a/packages/plugins/public-layout-ui/src/lib/components/mutation/public-page-organization-mutation/public-page-organization-mutation.component.scss
+++ b/packages/plugins/public-layout-ui/src/lib/components/mutation/public-page-organization-mutation/public-page-organization-mutation.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/gauzy-dialogs';
-@import 'gauzy/gauzy-overrides';
+@use 'gauzy/gauzy-dialogs' as *;
+@use 'gauzy/gauzy-overrides' as ga-overrides;
.main {
background-color: var(--gauzy-card-1);
@@ -111,7 +111,7 @@
.content-active {
nb-card {
- @include input-appearance(42px, var(--gauzy-sidebar-background-4));
+ @include ga-overrides.input-appearance(42px, var(--gauzy-sidebar-background-4));
}
}
}
@@ -121,7 +121,7 @@
nb-card-footer {
background-color: var(--gauzy-card-2);
}
- @include input-appearance(42px, var(--gauzy-card-1));
+ @include ga-overrides.input-appearance(42px, var(--gauzy-card-1));
::ng-deep nb-tabset .tabset .tab.active a.tab-link {
border-radius: nb-theme(border-radius) nb-theme(border-radius) 0 0;
display: flex;
diff --git a/packages/plugins/public-layout-ui/src/lib/components/mutation/public-page-organization-mutation/public-page-organization-mutation.component.ts b/packages/plugins/public-layout-ui/src/lib/components/mutation/public-page-organization-mutation/public-page-organization-mutation.component.ts
index f575971d4c7..eb52d758f5d 100644
--- a/packages/plugins/public-layout-ui/src/lib/components/mutation/public-page-organization-mutation/public-page-organization-mutation.component.ts
+++ b/packages/plugins/public-layout-ui/src/lib/components/mutation/public-page-organization-mutation/public-page-organization-mutation.component.ts
@@ -19,9 +19,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
import { ckEditorConfig } from '@gauzy/ui-core/shared';
@Component({
- selector: 'ngx-public-page-organization-mutation',
- templateUrl: './public-page-organization-mutation.component.html',
- styleUrls: ['./public-page-organization-mutation.component.scss']
+ selector: 'ngx-public-page-organization-mutation',
+ templateUrl: './public-page-organization-mutation.component.html',
+ styleUrls: ['./public-page-organization-mutation.component.scss'],
+ standalone: false
})
export class PublicPageOrganizationMutationComponent extends TranslationBaseComponent implements OnInit {
income: IIncome;
diff --git a/packages/plugins/public-layout-ui/src/lib/components/organization/organization.component.scss b/packages/plugins/public-layout-ui/src/lib/components/organization/organization.component.scss
index 8530cd9d76e..7d66a9c3f7d 100644
--- a/packages/plugins/public-layout-ui/src/lib/components/organization/organization.component.scss
+++ b/packages/plugins/public-layout-ui/src/lib/components/organization/organization.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-table';
+@use 'gauzy/_gauzy-table' as *;
.org-info {
border-radius: var(--border-radius);
@@ -528,4 +528,4 @@ nb-card {
margin: 0;
padding: 0;
}
-}
\ No newline at end of file
+}
diff --git a/packages/plugins/public-layout-ui/src/lib/components/organization/organization.component.ts b/packages/plugins/public-layout-ui/src/lib/components/organization/organization.component.ts
index 708aa30c9ec..e105f33f082 100644
--- a/packages/plugins/public-layout-ui/src/lib/components/organization/organization.component.ts
+++ b/packages/plugins/public-layout-ui/src/lib/components/organization/organization.component.ts
@@ -21,9 +21,10 @@ import { PublicPageOrganizationMutationComponent } from '../mutation/public-page
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-public-organization',
- templateUrl: './organization.component.html',
- styleUrls: ['./organization.component.scss']
+ selector: 'ngx-public-organization',
+ templateUrl: './organization.component.html',
+ styleUrls: ['./organization.component.scss'],
+ standalone: false
})
export class OrganizationComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
public hasEditPublicPage$: Observable = of(false);
diff --git a/packages/plugins/public-layout-ui/src/lib/components/pick-employee/pick-employee.component.ts b/packages/plugins/public-layout-ui/src/lib/components/pick-employee/pick-employee.component.ts
index 9547242cd93..1056964301d 100644
--- a/packages/plugins/public-layout-ui/src/lib/components/pick-employee/pick-employee.component.ts
+++ b/packages/plugins/public-layout-ui/src/lib/components/pick-employee/pick-employee.component.ts
@@ -12,10 +12,11 @@ import { EmployeeSelectorComponent } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-pick-employee',
- templateUrl: './pick-employee.component.html',
- styleUrls: ['./pick-employee.component.scss'],
- providers: [EventTypeService]
+ selector: 'ga-pick-employee',
+ templateUrl: './pick-employee.component.html',
+ styleUrls: ['./pick-employee.component.scss'],
+ providers: [EventTypeService],
+ standalone: false
})
export class PickEmployeeComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
public loading: boolean;
diff --git a/packages/plugins/public-layout-ui/src/lib/components/public-appointment/public-appointment.component.ts b/packages/plugins/public-layout-ui/src/lib/components/public-appointment/public-appointment.component.ts
index dd489d23787..e2277fef4b2 100644
--- a/packages/plugins/public-layout-ui/src/lib/components/public-appointment/public-appointment.component.ts
+++ b/packages/plugins/public-layout-ui/src/lib/components/public-appointment/public-appointment.component.ts
@@ -11,10 +11,11 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-public-appointment',
- templateUrl: './public-appointment.component.html',
- styleUrls: ['./public-appointment.component.scss'],
- providers: [EventTypeService]
+ selector: 'ga-public-appointment',
+ templateUrl: './public-appointment.component.html',
+ styleUrls: ['./public-appointment.component.scss'],
+ providers: [EventTypeService],
+ standalone: false
})
export class PublicAppointmentComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
public employee: IEmployee;
diff --git a/packages/plugins/public-layout-ui/src/lib/components/public-layout.component.ts b/packages/plugins/public-layout-ui/src/lib/components/public-layout.component.ts
index 778b4662876..963fd7c5daa 100644
--- a/packages/plugins/public-layout-ui/src/lib/components/public-layout.component.ts
+++ b/packages/plugins/public-layout-ui/src/lib/components/public-layout.component.ts
@@ -3,12 +3,13 @@ import { TranslateService } from '@ngx-translate/core';
import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@Component({
- selector: 'gz-public-layout',
- template: `
+ selector: 'gz-public-layout',
+ template: `
- `
+ `,
+ standalone: false
})
export class PublicLayoutComponent extends TranslationBaseComponent {
constructor(readonly translateService: TranslateService) {
diff --git a/packages/plugins/registry/package.json b/packages/plugins/registry/package.json
index 6e6b6348690..49c5612cdd4 100644
--- a/packages/plugins/registry/package.json
+++ b/packages/plugins/registry/package.json
@@ -30,7 +30,7 @@
"tslib": "^2.6.2"
},
"devDependencies": {
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"engines": {
"node": ">=20.11.1",
diff --git a/packages/plugins/sentry-tracing/package.json b/packages/plugins/sentry-tracing/package.json
index 6112e81a1ed..e77da16fda8 100644
--- a/packages/plugins/sentry-tracing/package.json
+++ b/packages/plugins/sentry-tracing/package.json
@@ -43,7 +43,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"gauzy",
diff --git a/packages/plugins/videos-ui/package.json b/packages/plugins/videos-ui/package.json
index 29805375ee9..3421552a6e0 100644
--- a/packages/plugins/videos-ui/package.json
+++ b/packages/plugins/videos-ui/package.json
@@ -24,18 +24,18 @@
"lib:watch": "yarn nx build plugin-videos-ui --watch --configuration=development"
},
"peerDependencies": {
- "@angular/common": "^18.2.0",
- "@angular/core": "^18.2.0"
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0"
},
"dependencies": {
- "@angular/forms": "18.2.12",
- "@angular/router": "18.2.12",
+ "@angular/forms": "19.2.7",
+ "@angular/router": "19.2.7",
"@gauzy/contracts": "^0.1.0",
- "@nebular/theme": "^14.0.2",
- "@ng-select/ng-select": "^13.9.0",
+ "@nebular/theme": "^15.0.0",
+ "@ng-select/ng-select": "^14.2.2",
"@ngneat/until-destroy": "^10.0.0",
- "@ngx-translate/core": "^16.0.3",
- "ngx-permissions": "^17.1.0",
+ "@ngx-translate/core": "^16.0.4",
+ "ngx-permissions": "^19.0.0",
"@ngneat/effects-ng": "3.1.4",
"rxjs": "^7.8.0",
"tslib": "^2.6.2"
@@ -43,7 +43,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "jest-preset-angular": "14.1.1"
+ "jest-preset-angular": "14.4.2"
},
"keywords": [
"gauzy",
diff --git a/packages/plugins/videos-ui/src/lib/features/video-download-manager/video-download-manager.component.ts b/packages/plugins/videos-ui/src/lib/features/video-download-manager/video-download-manager.component.ts
index fadae53d3c4..d3f26ba71ad 100644
--- a/packages/plugins/videos-ui/src/lib/features/video-download-manager/video-download-manager.component.ts
+++ b/packages/plugins/videos-ui/src/lib/features/video-download-manager/video-download-manager.component.ts
@@ -10,7 +10,8 @@ import { extractFilenameFromUrl } from '../../shared/utilities/extract-filename-
@Component({
selector: 'plug-video-download-manager',
templateUrl: './video-download-manager.component.html',
- styleUrl: './video-download-manager.component.scss'
+ styleUrl: './video-download-manager.component.scss',
+ standalone: false
})
export class VideoDownloadManagerComponent {
public readonly retryButton: IActionButton = {
diff --git a/packages/plugins/videos-ui/src/lib/features/video-list/video-list.component.ts b/packages/plugins/videos-ui/src/lib/features/video-list/video-list.component.ts
index 89ac8105325..d8e167b88fe 100644
--- a/packages/plugins/videos-ui/src/lib/features/video-list/video-list.component.ts
+++ b/packages/plugins/videos-ui/src/lib/features/video-list/video-list.component.ts
@@ -7,6 +7,7 @@ import { IVideo } from '../../shared/models/video.model';
selector: 'plug-video-list',
templateUrl: './video-list.component.html',
styleUrl: './video-list.component.scss',
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class VideoListComponent {
diff --git a/packages/plugins/videos-ui/src/lib/features/video/video.component.ts b/packages/plugins/videos-ui/src/lib/features/video/video.component.ts
index 32c8a86d74c..630b48922f6 100644
--- a/packages/plugins/videos-ui/src/lib/features/video/video.component.ts
+++ b/packages/plugins/videos-ui/src/lib/features/video/video.component.ts
@@ -17,6 +17,7 @@ import { VideoPlayerComponent } from '../../shared/ui/video-player/video-player.
selector: 'plug-video',
templateUrl: './video.component.html',
styleUrl: './video.component.scss',
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class VideoComponent implements AfterViewInit {
diff --git a/packages/plugins/videos-ui/src/lib/pages/video-detail-page/video-detail-page.component.scss b/packages/plugins/videos-ui/src/lib/pages/video-detail-page/video-detail-page.component.scss
index 49517fd2dc6..db73ccb4420 100644
--- a/packages/plugins/videos-ui/src/lib/pages/video-detail-page/video-detail-page.component.scss
+++ b/packages/plugins/videos-ui/src/lib/pages/video-detail-page/video-detail-page.component.scss
@@ -1,4 +1,4 @@
-@import '../video-page/video-page.component';
+@forward '../video-page/video-page.component';
.custom-card-body {
display: flex;
diff --git a/packages/plugins/videos-ui/src/lib/pages/video-detail-page/video-detail-page.component.ts b/packages/plugins/videos-ui/src/lib/pages/video-detail-page/video-detail-page.component.ts
index ed99514f996..f13fdca1c23 100644
--- a/packages/plugins/videos-ui/src/lib/pages/video-detail-page/video-detail-page.component.ts
+++ b/packages/plugins/videos-ui/src/lib/pages/video-detail-page/video-detail-page.component.ts
@@ -20,6 +20,7 @@ import { VideoStore } from '../../+state/video.store';
selector: 'lib-video-detail-page',
templateUrl: './video-detail-page.component.html',
styleUrl: './video-detail-page.component.scss',
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class VideoDetailPageComponent implements OnInit, AfterViewInit, OnDestroy {
diff --git a/packages/plugins/videos-ui/src/lib/pages/video-page/video-page.component.ts b/packages/plugins/videos-ui/src/lib/pages/video-page/video-page.component.ts
index f5bf9a86d01..8939b749854 100644
--- a/packages/plugins/videos-ui/src/lib/pages/video-page/video-page.component.ts
+++ b/packages/plugins/videos-ui/src/lib/pages/video-page/video-page.component.ts
@@ -17,6 +17,7 @@ import { VideoStore } from '../../+state/video.store';
selector: 'lib-video-page',
templateUrl: './video-page.component.html',
styleUrl: './video-page.component.scss',
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class VideoPageComponent extends BaseSelectorFilterComponent implements OnInit, OnDestroy {
diff --git a/packages/plugins/videos-ui/src/lib/shared/ui/video-actions/buttons/action-button-group/action-button-group.component.ts b/packages/plugins/videos-ui/src/lib/shared/ui/video-actions/buttons/action-button-group/action-button-group.component.ts
index 678cda5a7e2..218d9f8100b 100644
--- a/packages/plugins/videos-ui/src/lib/shared/ui/video-actions/buttons/action-button-group/action-button-group.component.ts
+++ b/packages/plugins/videos-ui/src/lib/shared/ui/video-actions/buttons/action-button-group/action-button-group.component.ts
@@ -5,6 +5,7 @@ import { IActionButton } from '../../../../../shared/models/action-button.model'
selector: 'plug-action-button-group',
templateUrl: './action-button-group.component.html',
styleUrl: './action-button-group.component.scss',
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class ActionButtonGroupComponent {
diff --git a/packages/plugins/videos-ui/src/lib/shared/ui/video-actions/buttons/action-button/action-button.component.ts b/packages/plugins/videos-ui/src/lib/shared/ui/video-actions/buttons/action-button/action-button.component.ts
index 6d188870ea0..5b48f65f060 100644
--- a/packages/plugins/videos-ui/src/lib/shared/ui/video-actions/buttons/action-button/action-button.component.ts
+++ b/packages/plugins/videos-ui/src/lib/shared/ui/video-actions/buttons/action-button/action-button.component.ts
@@ -5,6 +5,7 @@ import { IActionButton } from '../../../../../shared/models/action-button.model'
selector: 'plug-action-button',
templateUrl: './action-button.component.html',
styleUrl: './action-button.component.scss',
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class ActionButtonComponent {
diff --git a/packages/plugins/videos-ui/src/lib/shared/ui/video-edit/video-edit.component.scss b/packages/plugins/videos-ui/src/lib/shared/ui/video-edit/video-edit.component.scss
index 6910976419e..0f4b8724a9e 100644
--- a/packages/plugins/videos-ui/src/lib/shared/ui/video-edit/video-edit.component.scss
+++ b/packages/plugins/videos-ui/src/lib/shared/ui/video-edit/video-edit.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.form {
display: flex;
diff --git a/packages/plugins/videos-ui/src/lib/shared/ui/video-edit/video-edit.component.ts b/packages/plugins/videos-ui/src/lib/shared/ui/video-edit/video-edit.component.ts
index 3c0234abaab..d3441f174b7 100644
--- a/packages/plugins/videos-ui/src/lib/shared/ui/video-edit/video-edit.component.ts
+++ b/packages/plugins/videos-ui/src/lib/shared/ui/video-edit/video-edit.component.ts
@@ -8,6 +8,7 @@ import { IVideo } from '../../models/video.model';
selector: 'plug-video-edit',
templateUrl: './video-edit.component.html',
styleUrl: './video-edit.component.scss',
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class VideoEditComponent implements OnInit {
diff --git a/packages/plugins/videos-ui/src/lib/shared/ui/video-item-skeleton/video-item-skeleton.component.ts b/packages/plugins/videos-ui/src/lib/shared/ui/video-item-skeleton/video-item-skeleton.component.ts
index bdf37802102..a5e99a39c6f 100644
--- a/packages/plugins/videos-ui/src/lib/shared/ui/video-item-skeleton/video-item-skeleton.component.ts
+++ b/packages/plugins/videos-ui/src/lib/shared/ui/video-item-skeleton/video-item-skeleton.component.ts
@@ -4,6 +4,7 @@ import { ChangeDetectionStrategy, Component } from '@angular/core';
selector: 'plug-video-item-skeleton',
templateUrl: './video-item-skeleton.component.html',
styleUrl: './video-item-skeleton.component.scss',
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class VideoItemSkeletonComponent {}
diff --git a/packages/plugins/videos-ui/src/lib/shared/ui/video-item/video-item.component.ts b/packages/plugins/videos-ui/src/lib/shared/ui/video-item/video-item.component.ts
index 0482aa399d5..9ec837ecb11 100644
--- a/packages/plugins/videos-ui/src/lib/shared/ui/video-item/video-item.component.ts
+++ b/packages/plugins/videos-ui/src/lib/shared/ui/video-item/video-item.component.ts
@@ -12,6 +12,7 @@ import { IVideo } from '../../models/video.model';
selector: 'plug-video-item',
templateUrl: './video-item.component.html',
styleUrl: './video-item.component.scss',
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class VideoItemComponent {
diff --git a/packages/plugins/videos-ui/src/lib/shared/ui/video-metadata/video-metadata.component.scss b/packages/plugins/videos-ui/src/lib/shared/ui/video-metadata/video-metadata.component.scss
index ed28c47cb74..9d84fcf0163 100644
--- a/packages/plugins/videos-ui/src/lib/shared/ui/video-metadata/video-metadata.component.scss
+++ b/packages/plugins/videos-ui/src/lib/shared/ui/video-metadata/video-metadata.component.scss
@@ -1,4 +1,4 @@
-@import '../video-edit/video-edit.component';
+@forward '../video-edit/video-edit.component';
.video-details-container {
border-radius: var(--border-radius);
diff --git a/packages/plugins/videos-ui/src/lib/shared/ui/video-metadata/video-metadata.component.ts b/packages/plugins/videos-ui/src/lib/shared/ui/video-metadata/video-metadata.component.ts
index ac9883517e6..5e4b9bda120 100644
--- a/packages/plugins/videos-ui/src/lib/shared/ui/video-metadata/video-metadata.component.ts
+++ b/packages/plugins/videos-ui/src/lib/shared/ui/video-metadata/video-metadata.component.ts
@@ -6,6 +6,7 @@ import { IVideo } from '../../models/video.model';
selector: 'lib-video-metadata',
templateUrl: './video-metadata.component.html',
styleUrl: './video-metadata.component.scss',
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class VideoMetadataComponent {
diff --git a/packages/plugins/videos-ui/src/lib/shared/ui/video-player/video-player.component.ts b/packages/plugins/videos-ui/src/lib/shared/ui/video-player/video-player.component.ts
index 5f4927cd715..9ca79f312f0 100644
--- a/packages/plugins/videos-ui/src/lib/shared/ui/video-player/video-player.component.ts
+++ b/packages/plugins/videos-ui/src/lib/shared/ui/video-player/video-player.component.ts
@@ -4,6 +4,7 @@ import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
selector: 'plug-video-player',
templateUrl: './video-player.component.html',
styleUrl: './video-player.component.scss',
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class VideoPlayerComponent {
diff --git a/packages/plugins/videos-ui/src/lib/shared/ui/video-skeleton/video-skeleton.component.ts b/packages/plugins/videos-ui/src/lib/shared/ui/video-skeleton/video-skeleton.component.ts
index 9379e52c2a6..0993c502605 100644
--- a/packages/plugins/videos-ui/src/lib/shared/ui/video-skeleton/video-skeleton.component.ts
+++ b/packages/plugins/videos-ui/src/lib/shared/ui/video-skeleton/video-skeleton.component.ts
@@ -4,6 +4,7 @@ import { ChangeDetectionStrategy, Component } from '@angular/core';
selector: 'plug-video-skeleton',
templateUrl: './video-skeleton.component.html',
styleUrl: './video-skeleton.component.scss',
+ standalone: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class VideoSkeletonComponent {}
diff --git a/packages/plugins/videos/package.json b/packages/plugins/videos/package.json
index 6ca9b276f6e..ff4cbaf0836 100644
--- a/packages/plugins/videos/package.json
+++ b/packages/plugins/videos/package.json
@@ -36,7 +36,7 @@
"@types/express": "^5.0.0",
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"video",
diff --git a/packages/ui-auth/package.json b/packages/ui-auth/package.json
index 83355e21d46..55bf8156acd 100644
--- a/packages/ui-auth/package.json
+++ b/packages/ui-auth/package.json
@@ -24,27 +24,27 @@
"lib:watch": "yarn nx build ui-auth --watch --configuration=development"
},
"peerDependencies": {
- "@angular/common": "^18.2.0",
- "@angular/core": "^18.2.0"
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0"
},
"dependencies": {
- "@angular/forms": "18.2.12",
- "@angular/router": "18.2.12",
+ "@angular/forms": "19.2.7",
+ "@angular/router": "19.2.7",
"@gauzy/contracts": "^0.1.0",
- "@nebular/auth": "^14.0.2",
- "@nebular/theme": "^14.0.2",
+ "@nebular/auth": "^15.0.0",
+ "@nebular/theme": "^15.0.0",
"@ngneat/until-destroy": "^10.0.0",
- "@ngx-translate/core": "^16.0.3",
- "@ng-select/ng-select": "^13.9.0",
- "ngx-cookie-service": "^18.0.0",
- "ngx-permissions": "^17.1.0",
+ "@ngx-translate/core": "^16.0.4",
+ "@ng-select/ng-select": "^14.2.2",
+ "ngx-cookie-service": "^19.0.0",
+ "ngx-permissions": "^19.0.0",
"rxjs": "^7.8.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "jest-preset-angular": "14.1.1"
+ "jest-preset-angular": "14.4.2"
},
"keywords": [
"angular",
diff --git a/packages/ui-auth/src/lib/components/accept-client-invite/accept-client-invite-form/accept-client-invite-form.component.scss b/packages/ui-auth/src/lib/components/accept-client-invite/accept-client-invite-form/accept-client-invite-form.component.scss
index 455ec0ddab8..390d745ceac 100644
--- a/packages/ui-auth/src/lib/components/accept-client-invite/accept-client-invite-form/accept-client-invite-form.component.scss
+++ b/packages/ui-auth/src/lib/components/accept-client-invite/accept-client-invite-form/accept-client-invite-form.component.scss
@@ -1,4 +1,4 @@
-@import 'var';
+@use 'var' as *;
@include nb-install-component {
.item-invalid {
diff --git a/packages/ui-auth/src/lib/components/accept-client-invite/accept-client-invite-form/accept-client-invite-form.component.ts b/packages/ui-auth/src/lib/components/accept-client-invite/accept-client-invite-form/accept-client-invite-form.component.ts
index 5ae561b198a..f99e7887e51 100644
--- a/packages/ui-auth/src/lib/components/accept-client-invite/accept-client-invite-form/accept-client-invite-form.component.ts
+++ b/packages/ui-auth/src/lib/components/accept-client-invite/accept-client-invite-form/accept-client-invite-form.component.ts
@@ -15,9 +15,10 @@ import { FormHelpers, OrganizationsMutationComponent } from '@gauzy/ui-core/shar
import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@Component({
- selector: 'ga-accept-client-invite-form',
- templateUrl: './accept-client-invite-form.component.html',
- styleUrls: ['./accept-client-invite-form.component.scss']
+ selector: 'ga-accept-client-invite-form',
+ templateUrl: './accept-client-invite-form.component.html',
+ styleUrls: ['./accept-client-invite-form.component.scss'],
+ standalone: false
})
export class AcceptClientInviteFormComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
FormHelpers: typeof FormHelpers = FormHelpers;
diff --git a/packages/ui-auth/src/lib/components/accept-client-invite/accept-client-invite.component.ts b/packages/ui-auth/src/lib/components/accept-client-invite/accept-client-invite.component.ts
index fd095f13c4b..9c3842e9791 100644
--- a/packages/ui-auth/src/lib/components/accept-client-invite/accept-client-invite.component.ts
+++ b/packages/ui-auth/src/lib/components/accept-client-invite/accept-client-invite.component.ts
@@ -6,9 +6,10 @@ import { ErrorHandlingService, InviteService, ToastrService } from '@gauzy/ui-co
import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@Component({
- selector: 'ga-accept-client-invite',
- styleUrls: ['./accept-client-invite.component.scss'],
- templateUrl: './accept-client-invite.component.html'
+ selector: 'ga-accept-client-invite',
+ styleUrls: ['./accept-client-invite.component.scss'],
+ templateUrl: './accept-client-invite.component.html',
+ standalone: false
})
export class AcceptClientInviteComponent extends TranslationBaseComponent implements OnInit {
public invitation: IInvite;
diff --git a/packages/ui-auth/src/lib/components/accept-invite/accept-invite-form/accept-invite-form.component.scss b/packages/ui-auth/src/lib/components/accept-invite/accept-invite-form/accept-invite-form.component.scss
index 455ec0ddab8..390d745ceac 100644
--- a/packages/ui-auth/src/lib/components/accept-invite/accept-invite-form/accept-invite-form.component.scss
+++ b/packages/ui-auth/src/lib/components/accept-invite/accept-invite-form/accept-invite-form.component.scss
@@ -1,4 +1,4 @@
-@import 'var';
+@use 'var' as *;
@include nb-install-component {
.item-invalid {
diff --git a/packages/ui-auth/src/lib/components/accept-invite/accept-invite-form/accept-invite-form.component.ts b/packages/ui-auth/src/lib/components/accept-invite/accept-invite-form/accept-invite-form.component.ts
index ed8547749ad..89703169dbd 100644
--- a/packages/ui-auth/src/lib/components/accept-invite/accept-invite-form/accept-invite-form.component.ts
+++ b/packages/ui-auth/src/lib/components/accept-invite/accept-invite-form/accept-invite-form.component.ts
@@ -7,9 +7,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
import { FormHelpers } from '@gauzy/ui-core/shared';
@Component({
- selector: 'ga-accept-invite-form',
- templateUrl: './accept-invite-form.component.html',
- styleUrls: ['./accept-invite-form.component.scss']
+ selector: 'ga-accept-invite-form',
+ templateUrl: './accept-invite-form.component.html',
+ styleUrls: ['./accept-invite-form.component.scss'],
+ standalone: false
})
export class AcceptInviteFormComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
FormHelpers: typeof FormHelpers = FormHelpers;
diff --git a/packages/ui-auth/src/lib/components/accept-invite/accept-invite.component.ts b/packages/ui-auth/src/lib/components/accept-invite/accept-invite.component.ts
index 2e0a3dbcee5..639ec487db3 100644
--- a/packages/ui-auth/src/lib/components/accept-invite/accept-invite.component.ts
+++ b/packages/ui-auth/src/lib/components/accept-invite/accept-invite.component.ts
@@ -9,8 +9,9 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- styleUrls: ['./accept-invite.component.scss'],
- templateUrl: './accept-invite.component.html'
+ styleUrls: ['./accept-invite.component.scss'],
+ templateUrl: './accept-invite.component.html',
+ standalone: false
})
export class AcceptInviteComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
public invitation: IInvite;
diff --git a/packages/ui-auth/src/lib/components/auth/auth.component.scss b/packages/ui-auth/src/lib/components/auth/auth.component.scss
index 8e954541e6d..e0e0f9b7007 100644
--- a/packages/ui-auth/src/lib/components/auth/auth.component.scss
+++ b/packages/ui-auth/src/lib/components/auth/auth.component.scss
@@ -1,5 +1,5 @@
-@import 'themes';
-@import '@shared/reusable';
+@use 'themes' as *;
+@use '@shared/reusable' as *;
.wrapper {
padding: 0 !important;
diff --git a/packages/ui-auth/src/lib/components/auth/auth.component.ts b/packages/ui-auth/src/lib/components/auth/auth.component.ts
index 47f32df82c2..d4aa790da58 100644
--- a/packages/ui-auth/src/lib/components/auth/auth.component.ts
+++ b/packages/ui-auth/src/lib/components/auth/auth.component.ts
@@ -8,9 +8,10 @@ import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-auth',
- templateUrl: './auth.component.html',
- styleUrls: ['./auth.component.scss']
+ selector: 'ngx-auth',
+ templateUrl: './auth.component.html',
+ styleUrls: ['./auth.component.scss'],
+ standalone: false
})
export class NgxAuthComponent extends NbAuthComponent implements OnInit {
public isRegister: boolean = false;
diff --git a/packages/ui-auth/src/lib/components/confirm-email/confirm-email.component.ts b/packages/ui-auth/src/lib/components/confirm-email/confirm-email.component.ts
index d476790e6a6..cbd0b8c8ebc 100644
--- a/packages/ui-auth/src/lib/components/confirm-email/confirm-email.component.ts
+++ b/packages/ui-auth/src/lib/components/confirm-email/confirm-email.component.ts
@@ -8,8 +8,9 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-confirm-email',
- templateUrl: './confirm-email.component.html'
+ selector: 'ngx-confirm-email',
+ templateUrl: './confirm-email.component.html',
+ standalone: false
})
export class ConfirmEmailComponent extends TranslationBaseComponent implements OnInit {
public loading: boolean = true;
diff --git a/packages/ui-auth/src/lib/components/estimate-email/estimate-email.component.ts b/packages/ui-auth/src/lib/components/estimate-email/estimate-email.component.ts
index 2747a0888b4..72e8379edfe 100644
--- a/packages/ui-auth/src/lib/components/estimate-email/estimate-email.component.ts
+++ b/packages/ui-auth/src/lib/components/estimate-email/estimate-email.component.ts
@@ -10,8 +10,9 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-estimate-email',
- templateUrl: './estimate-email.component.html'
+ selector: 'ga-estimate-email',
+ templateUrl: './estimate-email.component.html',
+ standalone: false
})
export class EstimateEmailComponent extends TranslationBaseComponent implements OnInit {
public errorMessage: string;
diff --git a/packages/ui-auth/src/lib/components/forgot-password/forgot-password.component.scss b/packages/ui-auth/src/lib/components/forgot-password/forgot-password.component.scss
index 239f5be00d3..2dd7960799e 100644
--- a/packages/ui-auth/src/lib/components/forgot-password/forgot-password.component.scss
+++ b/packages/ui-auth/src/lib/components/forgot-password/forgot-password.component.scss
@@ -1,5 +1,5 @@
-@import 'themes';
-@import '@shared/reusable';
+@use 'themes' as *;
+@use '@shared/reusable' as *;
.section-wrapper {
width: 765px;
diff --git a/packages/ui-auth/src/lib/components/forgot-password/forgot-password.component.ts b/packages/ui-auth/src/lib/components/forgot-password/forgot-password.component.ts
index ee57dc4eed4..1c8f0eecaeb 100644
--- a/packages/ui-auth/src/lib/components/forgot-password/forgot-password.component.ts
+++ b/packages/ui-auth/src/lib/components/forgot-password/forgot-password.component.ts
@@ -2,8 +2,9 @@ import { Component } from '@angular/core';
import { NbRequestPasswordComponent } from '@nebular/auth';
@Component({
- selector: 'ngx-forgot-password',
- templateUrl: './forgot-password.component.html',
- styleUrls: ['./forgot-password.component.scss']
+ selector: 'ngx-forgot-password',
+ templateUrl: './forgot-password.component.html',
+ styleUrls: ['./forgot-password.component.scss'],
+ standalone: false
})
export class NgxForgotPasswordComponent extends NbRequestPasswordComponent {}
diff --git a/packages/ui-auth/src/lib/components/login-magic/login-magic.component.scss b/packages/ui-auth/src/lib/components/login-magic/login-magic.component.scss
index 64fdc54fd83..5f6284299dd 100644
--- a/packages/ui-auth/src/lib/components/login-magic/login-magic.component.scss
+++ b/packages/ui-auth/src/lib/components/login-magic/login-magic.component.scss
@@ -1,5 +1,5 @@
-@import 'themes';
-@import '@shared/reusable';
+@use 'themes' as *;
+@use '@shared/reusable' as *;
.login-container {
width: 765px;
@@ -192,8 +192,8 @@
}
}
& .another-action {
+ margin-top: 10px;
@include another-action;
- margin-top: 10px;
}
}
.features-wrapper {
@@ -361,8 +361,8 @@
}
.hr-div-soft {
- @include hr-div-soft;
margin-bottom: 12px;
+ @include hr-div-soft;
}
.theme-switch {
@include not-mobile-screen {
diff --git a/packages/ui-auth/src/lib/components/login-magic/login-magic.component.ts b/packages/ui-auth/src/lib/components/login-magic/login-magic.component.ts
index 79174a5a73e..1748dee5e81 100644
--- a/packages/ui-auth/src/lib/components/login-magic/login-magic.component.ts
+++ b/packages/ui-auth/src/lib/components/login-magic/login-magic.component.ts
@@ -11,9 +11,10 @@ import { patterns } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-login-magic',
- templateUrl: './login-magic.component.html',
- styleUrls: ['./login-magic.component.scss']
+ selector: 'ngx-login-magic',
+ templateUrl: './login-magic.component.html',
+ styleUrls: ['./login-magic.component.scss'],
+ standalone: false
})
export class NgxLoginMagicComponent extends NbLoginComponent implements OnInit {
public countdown: number;
diff --git a/packages/ui-auth/src/lib/components/login-workspace/login-workspace.component.scss b/packages/ui-auth/src/lib/components/login-workspace/login-workspace.component.scss
index 9e7de55ffbf..179c8763e07 100644
--- a/packages/ui-auth/src/lib/components/login-workspace/login-workspace.component.scss
+++ b/packages/ui-auth/src/lib/components/login-workspace/login-workspace.component.scss
@@ -1,5 +1,5 @@
-@import 'themes';
-@import '@shared/reusable';
+@use 'themes' as *;
+@use '@shared/reusable' as *;
:host {
.section-wrapper {
diff --git a/packages/ui-auth/src/lib/components/login-workspace/login-workspace.component.ts b/packages/ui-auth/src/lib/components/login-workspace/login-workspace.component.ts
index d1f3386c8ad..e5511032fe6 100644
--- a/packages/ui-auth/src/lib/components/login-workspace/login-workspace.component.ts
+++ b/packages/ui-auth/src/lib/components/login-workspace/login-workspace.component.ts
@@ -10,9 +10,10 @@ import { PasswordFormFieldComponent } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-login-workspace',
- templateUrl: './login-workspace.component.html',
- styleUrls: ['./login-workspace.component.scss']
+ selector: 'ngx-login-workspace',
+ templateUrl: './login-workspace.component.html',
+ styleUrls: ['./login-workspace.component.scss'],
+ standalone: false
})
export class NgxLoginWorkspaceComponent implements OnInit {
public confirmed_email: string;
diff --git a/packages/ui-auth/src/lib/components/login/login.component.scss b/packages/ui-auth/src/lib/components/login/login.component.scss
index 3ceb10607f6..86506a3860e 100644
--- a/packages/ui-auth/src/lib/components/login/login.component.scss
+++ b/packages/ui-auth/src/lib/components/login/login.component.scss
@@ -1,5 +1,5 @@
-@import 'themes';
-@import '@shared/reusable';
+@use 'themes' as *;
+@use '@shared/reusable' as *;
.login-container {
width: 765px;
@@ -118,8 +118,8 @@
}
}
& .another-action {
+ margin-top: 10px;
@include another-action;
- margin-top: 10px;
}
}
.features-wrapper {
@@ -330,8 +330,8 @@
}
.hr-div-soft {
- @include hr-div-soft;
margin-bottom: 12px;
+ @include hr-div-soft;
}
.theme-switch {
@include not-mobile-screen {
diff --git a/packages/ui-auth/src/lib/components/login/login.component.ts b/packages/ui-auth/src/lib/components/login/login.component.ts
index 0e020e5b59d..44f9347dadf 100644
--- a/packages/ui-auth/src/lib/components/login/login.component.ts
+++ b/packages/ui-auth/src/lib/components/login/login.component.ts
@@ -9,9 +9,10 @@ import { ElectronService } from '@gauzy/ui-core/core';
import { patterns } from '@gauzy/ui-core/shared';
@Component({
- selector: 'ngx-login',
- templateUrl: './login.component.html',
- styleUrls: ['./login.component.scss']
+ selector: 'ngx-login',
+ templateUrl: './login.component.html',
+ styleUrls: ['./login.component.scss'],
+ standalone: false
})
export class NgxLoginComponent extends NbLoginComponent implements OnInit {
@ViewChild('form') private readonly form: FormGroupDirective;
diff --git a/packages/ui-auth/src/lib/components/magic-login-workspace/magic-login-workspace.component.scss b/packages/ui-auth/src/lib/components/magic-login-workspace/magic-login-workspace.component.scss
index c4d860d3c1b..fc42963d080 100644
--- a/packages/ui-auth/src/lib/components/magic-login-workspace/magic-login-workspace.component.scss
+++ b/packages/ui-auth/src/lib/components/magic-login-workspace/magic-login-workspace.component.scss
@@ -1,4 +1,4 @@
-@import "themes";
+@use 'themes' as *;
.ever-logo-svg {
margin-top: 2rem;
diff --git a/packages/ui-auth/src/lib/components/magic-login-workspace/magic-login-workspace.component.ts b/packages/ui-auth/src/lib/components/magic-login-workspace/magic-login-workspace.component.ts
index 3bd83734cdd..37389f23893 100644
--- a/packages/ui-auth/src/lib/components/magic-login-workspace/magic-login-workspace.component.ts
+++ b/packages/ui-auth/src/lib/components/magic-login-workspace/magic-login-workspace.component.ts
@@ -9,9 +9,10 @@ import { AuthService, ErrorHandlingService, Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-magic-sign-in-workspace',
- templateUrl: './magic-login-workspace.component.html',
- styleUrls: ['./magic-login-workspace.component.scss']
+ selector: 'ngx-magic-sign-in-workspace',
+ templateUrl: './magic-login-workspace.component.html',
+ styleUrls: ['./magic-login-workspace.component.scss'],
+ standalone: false
})
export class NgxMagicSignInWorkspaceComponent implements OnInit {
public error: boolean = false;
diff --git a/packages/ui-auth/src/lib/components/register/register-side-features/register-side-features.component.scss b/packages/ui-auth/src/lib/components/register/register-side-features/register-side-features.component.scss
index 4171286935d..98c6b17a311 100644
--- a/packages/ui-auth/src/lib/components/register/register-side-features/register-side-features.component.scss
+++ b/packages/ui-auth/src/lib/components/register/register-side-features/register-side-features.component.scss
@@ -1,5 +1,5 @@
-@import 'themes';
-@import '@shared/reusable';
+@use 'themes' as *;
+@use '@shared/reusable' as *;
.main-section {
background: linear-gradient(to bottom, nb-theme(color-primary-400), nb-theme(color-primary-600));
diff --git a/packages/ui-auth/src/lib/components/register/register-side-features/register-side-features.component.ts b/packages/ui-auth/src/lib/components/register/register-side-features/register-side-features.component.ts
index dde5f7391c8..c9ae70da2e6 100644
--- a/packages/ui-auth/src/lib/components/register/register-side-features/register-side-features.component.ts
+++ b/packages/ui-auth/src/lib/components/register/register-side-features/register-side-features.component.ts
@@ -7,9 +7,10 @@ import { ChangelogService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-register-side-features',
- templateUrl: './register-side-features.component.html',
- styleUrls: ['./register-side-features.component.scss']
+ selector: 'ngx-register-side-features',
+ templateUrl: './register-side-features.component.html',
+ styleUrls: ['./register-side-features.component.scss'],
+ standalone: false
})
export class NgxRegisterSideFeaturesComponent implements OnInit {
subject$: Subject = new Subject();
diff --git a/packages/ui-auth/src/lib/components/register/register-side-features/register-side-single-feature/register-side-single-feature.component.scss b/packages/ui-auth/src/lib/components/register/register-side-features/register-side-single-feature/register-side-single-feature.component.scss
index 92c35da3061..091e8c4b136 100644
--- a/packages/ui-auth/src/lib/components/register/register-side-features/register-side-single-feature/register-side-single-feature.component.scss
+++ b/packages/ui-auth/src/lib/components/register/register-side-features/register-side-single-feature/register-side-single-feature.component.scss
@@ -1,5 +1,5 @@
-@import 'themes';
-@import '@shared/reusable';
+@use 'themes' as *;
+@use '@shared/reusable' as *;
.feature-wrapper {
width: 100%;
diff --git a/packages/ui-auth/src/lib/components/register/register-side-features/register-side-single-feature/register-side-single-feature.component.ts b/packages/ui-auth/src/lib/components/register/register-side-features/register-side-single-feature/register-side-single-feature.component.ts
index 80f178e06bd..fbb6448e3be 100644
--- a/packages/ui-auth/src/lib/components/register/register-side-features/register-side-single-feature/register-side-single-feature.component.ts
+++ b/packages/ui-auth/src/lib/components/register/register-side-features/register-side-single-feature/register-side-single-feature.component.ts
@@ -2,9 +2,10 @@ import { Component, Input } from '@angular/core';
import { IChangelog } from "@gauzy/contracts";
@Component({
- selector: 'ngx-register-side-single-feature',
- templateUrl: './register-side-single-feature.component.html',
- styleUrls: ['./register-side-single-feature.component.scss'],
+ selector: 'ngx-register-side-single-feature',
+ templateUrl: './register-side-single-feature.component.html',
+ styleUrls: ['./register-side-single-feature.component.scss'],
+ standalone: false
})
export class NgxRegisterSideSingleFeatureComponent {
@Input() feature: IChangelog | null = null;
diff --git a/packages/ui-auth/src/lib/components/register/register.component.scss b/packages/ui-auth/src/lib/components/register/register.component.scss
index 0603d26fb1c..74459e2d237 100644
--- a/packages/ui-auth/src/lib/components/register/register.component.scss
+++ b/packages/ui-auth/src/lib/components/register/register.component.scss
@@ -1,5 +1,5 @@
-@import 'themes';
-@import '@shared/reusable';
+@use 'themes' as *;
+@use '@shared/reusable' as *;
@mixin addPaddings {
padding-left: 10px;
@@ -43,8 +43,8 @@
@include hr-div-soft;
}
& .another-action {
+ margin-top: 12px;
@include another-action;
- margin-top: 12px;
}
& .form-control-group {
@include mobile-screen {
diff --git a/packages/ui-auth/src/lib/components/register/register.component.ts b/packages/ui-auth/src/lib/components/register/register.component.ts
index 52dc9d0a321..dfcf1ed8e05 100644
--- a/packages/ui-auth/src/lib/components/register/register.component.ts
+++ b/packages/ui-auth/src/lib/components/register/register.component.ts
@@ -9,9 +9,10 @@ import { patterns } from '@gauzy/ui-core/shared';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-register',
- templateUrl: './register.component.html',
- styleUrls: ['./register.component.scss']
+ selector: 'ngx-register',
+ templateUrl: './register.component.html',
+ styleUrls: ['./register.component.scss'],
+ standalone: false
})
export class NgxRegisterComponent extends NbRegisterComponent implements OnInit {
public showPassword: boolean = false;
diff --git a/packages/ui-auth/src/lib/components/reset-password/reset-password.component.scss b/packages/ui-auth/src/lib/components/reset-password/reset-password.component.scss
index 1eace443f98..00715ed4c63 100644
--- a/packages/ui-auth/src/lib/components/reset-password/reset-password.component.scss
+++ b/packages/ui-auth/src/lib/components/reset-password/reset-password.component.scss
@@ -1,5 +1,5 @@
-@import 'themes';
-@import '@shared/reusable';
+@use 'themes' as *;
+@use '@shared/reusable' as *;
.reset-password-wrapper {
background: nb-theme(gauzy-card-2);
diff --git a/packages/ui-auth/src/lib/components/reset-password/reset-password.component.ts b/packages/ui-auth/src/lib/components/reset-password/reset-password.component.ts
index 30374174720..d751a4f565d 100644
--- a/packages/ui-auth/src/lib/components/reset-password/reset-password.component.ts
+++ b/packages/ui-auth/src/lib/components/reset-password/reset-password.component.ts
@@ -2,9 +2,10 @@ import { NbResetPasswordComponent } from '@nebular/auth';
import { Component } from '@angular/core';
@Component({
- selector: 'ngx-reset-password',
- templateUrl: './reset-password.component.html',
- styleUrls: ['./reset-password.component.scss']
+ selector: 'ngx-reset-password',
+ templateUrl: './reset-password.component.html',
+ styleUrls: ['./reset-password.component.scss'],
+ standalone: false
})
export class NgxResetPasswordComponent extends NbResetPasswordComponent {
public showPassword: boolean = false;
diff --git a/packages/ui-auth/src/lib/components/social-links/social-links.component.scss b/packages/ui-auth/src/lib/components/social-links/social-links.component.scss
index 81c3deb68c8..193132e9e7a 100644
--- a/packages/ui-auth/src/lib/components/social-links/social-links.component.scss
+++ b/packages/ui-auth/src/lib/components/social-links/social-links.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/reusable';
+@use '@shared/reusable' as *;
.links {
margin-top: 21px;
diff --git a/packages/ui-auth/src/lib/components/social-links/social-links.component.ts b/packages/ui-auth/src/lib/components/social-links/social-links.component.ts
index 9a566b7a1fd..3a249fb0acd 100644
--- a/packages/ui-auth/src/lib/components/social-links/social-links.component.ts
+++ b/packages/ui-auth/src/lib/components/social-links/social-links.component.ts
@@ -26,9 +26,10 @@ export interface ISocialLink {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-social-links',
- templateUrl: './social-links.component.html',
- styleUrls: ['./social-links.component.scss']
+ selector: 'ngx-social-links',
+ templateUrl: './social-links.component.html',
+ styleUrls: ['./social-links.component.scss'],
+ standalone: false
})
export class SocialLinksComponent implements OnInit {
/** */
diff --git a/packages/ui-auth/src/lib/components/whats-new/whats-new.component.scss b/packages/ui-auth/src/lib/components/whats-new/whats-new.component.scss
index 19c8b3c0a43..2021b243030 100644
--- a/packages/ui-auth/src/lib/components/whats-new/whats-new.component.scss
+++ b/packages/ui-auth/src/lib/components/whats-new/whats-new.component.scss
@@ -1 +1 @@
-@import '@shared/whats-new.scss';
+@use '@shared/whats-new' as *;
diff --git a/packages/ui-auth/src/lib/components/whats-new/whats-new.component.ts b/packages/ui-auth/src/lib/components/whats-new/whats-new.component.ts
index 77b2f4647b2..4d27f825a22 100644
--- a/packages/ui-auth/src/lib/components/whats-new/whats-new.component.ts
+++ b/packages/ui-auth/src/lib/components/whats-new/whats-new.component.ts
@@ -7,9 +7,10 @@ import { ChangelogService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-whats-new',
- templateUrl: './whats-new.component.html',
- styleUrls: ['./whats-new.component.scss']
+ selector: 'ngx-whats-new',
+ templateUrl: './whats-new.component.html',
+ styleUrls: ['./whats-new.component.scss'],
+ standalone: false
})
export class NgxWhatsNewComponent implements OnInit {
learnMore: string;
diff --git a/packages/ui-auth/src/lib/components/workspace-selection/workspace-selection.component.ts b/packages/ui-auth/src/lib/components/workspace-selection/workspace-selection.component.ts
index a4f9a7a872d..f302a71a533 100644
--- a/packages/ui-auth/src/lib/components/workspace-selection/workspace-selection.component.ts
+++ b/packages/ui-auth/src/lib/components/workspace-selection/workspace-selection.component.ts
@@ -4,10 +4,11 @@ import { IWorkspaceResponse } from '@gauzy/contracts';
import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@Component({
- selector: 'ngx-workspace-selection',
- templateUrl: './workspace-selection.component.html',
- styleUrls: ['./workspace-selection.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-workspace-selection',
+ templateUrl: './workspace-selection.component.html',
+ styleUrls: ['./workspace-selection.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class WorkspaceSelectionComponent extends TranslationBaseComponent implements OnInit {
/**
diff --git a/packages/ui-auth/src/lib/sign-in-success/sign-in-success.component.ts b/packages/ui-auth/src/lib/sign-in-success/sign-in-success.component.ts
index 8024af8b94e..8793ee100dc 100644
--- a/packages/ui-auth/src/lib/sign-in-success/sign-in-success.component.ts
+++ b/packages/ui-auth/src/lib/sign-in-success/sign-in-success.component.ts
@@ -4,8 +4,9 @@ import { filter, tap } from 'rxjs/operators';
import { Store } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-sign-in-success',
- templateUrl: './sign-in-success.component.html'
+ selector: 'ga-sign-in-success',
+ templateUrl: './sign-in-success.component.html',
+ standalone: false
})
export class SignInSuccessComponent {
constructor(
diff --git a/packages/ui-config/package.json b/packages/ui-config/package.json
index bf127b2e5ff..d4691c4148e 100644
--- a/packages/ui-config/package.json
+++ b/packages/ui-config/package.json
@@ -24,8 +24,8 @@
"lib:watch": "yarn nx build ui-config --watch --configuration=development"
},
"peerDependencies": {
- "@angular/common": "^18.2.0",
- "@angular/core": "^18.2.0"
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0"
},
"dependencies": {
"tslib": "^2.6.2"
@@ -34,7 +34,7 @@
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
"cross-env": "^7.0.3",
- "jest-preset-angular": "14.1.1"
+ "jest-preset-angular": "14.4.2"
},
"keywords": [
"gauzy",
diff --git a/packages/ui-core/common/src/lib/interfaces/gui-drag.abstract.ts b/packages/ui-core/common/src/lib/interfaces/gui-drag.abstract.ts
index 0773406840c..241fb8d37cc 100644
--- a/packages/ui-core/common/src/lib/interfaces/gui-drag.abstract.ts
+++ b/packages/ui-core/common/src/lib/interfaces/gui-drag.abstract.ts
@@ -3,7 +3,10 @@ import { Collapsable } from './collapsable.interface';
import { Draggable } from './draggable.interface';
import { Expandable } from './expandable.interface';
-@Component({ template: '' })
+@Component({
+ template: '',
+ standalone: false
+})
export abstract class GuiDrag implements Draggable, Expandable, Collapsable {
private _templateRef: TemplateRef;
private _position: number;
diff --git a/packages/ui-core/core/src/lib/components/base-nav-menu/base-nav-menu.component.ts b/packages/ui-core/core/src/lib/components/base-nav-menu/base-nav-menu.component.ts
index 00ccaa192c4..54af9ea6184 100644
--- a/packages/ui-core/core/src/lib/components/base-nav-menu/base-nav-menu.component.ts
+++ b/packages/ui-core/core/src/lib/components/base-nav-menu/base-nav-menu.component.ts
@@ -10,7 +10,8 @@ import { NavMenuBuilderService, NavMenuSectionItem, SidebarMenuService, Store }
@UntilDestroy()
@Directive({
- selector: '[gaBaseNavMenu]'
+ selector: '[gaBaseNavMenu]',
+ standalone: false
})
export class BaseNavMenuComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
constructor(
diff --git a/packages/ui-core/core/src/lib/components/main-nav-menu/main-nav-menu.component.ts b/packages/ui-core/core/src/lib/components/main-nav-menu/main-nav-menu.component.ts
index 5b40fb6358b..4f845c8b27b 100644
--- a/packages/ui-core/core/src/lib/components/main-nav-menu/main-nav-menu.component.ts
+++ b/packages/ui-core/core/src/lib/components/main-nav-menu/main-nav-menu.component.ts
@@ -6,9 +6,10 @@ import { NavMenuCategory, NavMenuSectionItem } from '../../services/nav-builder/
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-main-nav-menu',
- templateUrl: './main-nav-menu.component.html',
- styleUrls: ['./main-nav-menu.component.scss']
+ selector: 'ga-main-nav-menu',
+ templateUrl: './main-nav-menu.component.html',
+ styleUrls: ['./main-nav-menu.component.scss'],
+ standalone: false
})
export class MainNavMenuComponent extends BaseNavMenuComponent implements OnInit {
// Define the input property menuCategory of type NavMenuCategory | undefined
diff --git a/packages/ui-core/core/src/lib/components/settings-nav-menu/settings-nav-menu.component.ts b/packages/ui-core/core/src/lib/components/settings-nav-menu/settings-nav-menu.component.ts
index d8158ae8f9a..88ff575ce2b 100644
--- a/packages/ui-core/core/src/lib/components/settings-nav-menu/settings-nav-menu.component.ts
+++ b/packages/ui-core/core/src/lib/components/settings-nav-menu/settings-nav-menu.component.ts
@@ -6,9 +6,10 @@ import { NavMenuSectionItem } from '../../services/nav-builder/nav-builder-types
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-settings-nav-menu',
- templateUrl: './settings-nav-menu.component.html',
- styleUrls: ['./settings-nav-menu.component.scss']
+ selector: 'ga-settings-nav-menu',
+ templateUrl: './settings-nav-menu.component.html',
+ styleUrls: ['./settings-nav-menu.component.scss'],
+ standalone: false
})
export class SettingsNavMenuComponent extends BaseNavMenuComponent implements OnInit {
public settingsMenuConfig$: Observable;
diff --git a/packages/ui-core/core/src/lib/components/sidebar-menu/menu-items/concrete/children-menu-item/children-menu-item.component.scss b/packages/ui-core/core/src/lib/components/sidebar-menu/menu-items/concrete/children-menu-item/children-menu-item.component.scss
index 097d857ae50..ddd96a64c7a 100644
--- a/packages/ui-core/core/src/lib/components/sidebar-menu/menu-items/concrete/children-menu-item/children-menu-item.component.scss
+++ b/packages/ui-core/core/src/lib/components/sidebar-menu/menu-items/concrete/children-menu-item/children-menu-item.component.scss
@@ -1,4 +1,4 @@
-@import '../menu-item/menu-item.component.scss';
+@use '../menu-item/menu-item.component';
[nbButton].plus.appearance-outline.size-tiny {
padding: 2px 3px;
@@ -9,4 +9,4 @@
margin: 0;
font-size: 14px;
}
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/core/src/lib/components/sidebar-menu/menu-items/concrete/children-menu-item/children-menu-item.component.ts b/packages/ui-core/core/src/lib/components/sidebar-menu/menu-items/concrete/children-menu-item/children-menu-item.component.ts
index 4cc83ffe26a..4d39fa6bfe4 100644
--- a/packages/ui-core/core/src/lib/components/sidebar-menu/menu-items/concrete/children-menu-item/children-menu-item.component.ts
+++ b/packages/ui-core/core/src/lib/components/sidebar-menu/menu-items/concrete/children-menu-item/children-menu-item.component.ts
@@ -7,9 +7,10 @@ import { IMenuItem } from '../../interface/menu-item.interface';
@UntilDestroy()
@Component({
- selector: 'ga-children-menu-item',
- templateUrl: './children-menu-item.component.html',
- styleUrls: ['./children-menu-item.component.scss']
+ selector: 'ga-children-menu-item',
+ templateUrl: './children-menu-item.component.html',
+ styleUrls: ['./children-menu-item.component.scss'],
+ standalone: false
})
export class ChildrenMenuItemComponent implements OnInit {
/**
diff --git a/packages/ui-core/core/src/lib/components/sidebar-menu/menu-items/concrete/menu-item/menu-item.component.scss b/packages/ui-core/core/src/lib/components/sidebar-menu/menu-items/concrete/menu-item/menu-item.component.scss
index f8e2130221f..2c65c01063c 100644
--- a/packages/ui-core/core/src/lib/components/sidebar-menu/menu-items/concrete/menu-item/menu-item.component.scss
+++ b/packages/ui-core/core/src/lib/components/sidebar-menu/menu-items/concrete/menu-item/menu-item.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host {
position: relative;
diff --git a/packages/ui-core/core/src/lib/components/sidebar-menu/menu-items/concrete/menu-item/menu-item.component.ts b/packages/ui-core/core/src/lib/components/sidebar-menu/menu-items/concrete/menu-item/menu-item.component.ts
index ccdb61f19ba..3bc5e32c7f1 100644
--- a/packages/ui-core/core/src/lib/components/sidebar-menu/menu-items/concrete/menu-item/menu-item.component.ts
+++ b/packages/ui-core/core/src/lib/components/sidebar-menu/menu-items/concrete/menu-item/menu-item.component.ts
@@ -8,9 +8,10 @@ import { JitsuAnalyticsEvents, JitsuAnalyticsEventsEnum, JitsuService, Store } f
import { IMenuItem } from '../../interface/menu-item.interface';
@Component({
- selector: 'ga-menu-item',
- templateUrl: './menu-item.component.html',
- styleUrls: ['./menu-item.component.scss']
+ selector: 'ga-menu-item',
+ templateUrl: './menu-item.component.html',
+ styleUrls: ['./menu-item.component.scss'],
+ standalone: false
})
export class MenuItemComponent implements OnInit, AfterViewChecked {
private _user: IUser;
diff --git a/packages/ui-core/core/src/lib/components/sidebar-menu/sidebar-menu.component.ts b/packages/ui-core/core/src/lib/components/sidebar-menu/sidebar-menu.component.ts
index a8c9ca28a06..494af955e08 100644
--- a/packages/ui-core/core/src/lib/components/sidebar-menu/sidebar-menu.component.ts
+++ b/packages/ui-core/core/src/lib/components/sidebar-menu/sidebar-menu.component.ts
@@ -10,10 +10,11 @@ import { IMenuItem } from './menu-items/interface/menu-item.interface';
import { SidebarMenuService } from '../../services';
@Component({
- selector: 'ga-sidebar-menu',
- templateUrl: './sidebar-menu.component.html',
- styleUrls: ['./sidebar-menu.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ga-sidebar-menu',
+ templateUrl: './sidebar-menu.component.html',
+ styleUrls: ['./sidebar-menu.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class SidebarMenuComponent implements AfterContentChecked, AfterViewInit {
@Input() items: IMenuItem[] = [];
diff --git a/packages/ui-core/core/src/lib/components/sidebar-menu/tooltip.directive.ts b/packages/ui-core/core/src/lib/components/sidebar-menu/tooltip.directive.ts
index d4ecad7f49f..1274fcbc0ba 100644
--- a/packages/ui-core/core/src/lib/components/sidebar-menu/tooltip.directive.ts
+++ b/packages/ui-core/core/src/lib/components/sidebar-menu/tooltip.directive.ts
@@ -1,7 +1,8 @@
import { Directive, ElementRef, HostListener, Input, OnDestroy } from '@angular/core';
@Directive({
- selector: '[gaTooltip]'
+ selector: '[gaTooltip]',
+ standalone: false
})
export class TooltipDirective implements OnDestroy {
@Input() gaTooltip: string;
diff --git a/packages/ui-core/core/src/lib/extension/add-nav-menu-item.ts b/packages/ui-core/core/src/lib/extension/add-nav-menu-item.ts
index fb003fd7bee..0c38aaa601a 100644
--- a/packages/ui-core/core/src/lib/extension/add-nav-menu-item.ts
+++ b/packages/ui-core/core/src/lib/extension/add-nav-menu-item.ts
@@ -1,4 +1,4 @@
-import { APP_INITIALIZER, Provider } from '@angular/core';
+import { EnvironmentProviders, inject, provideAppInitializer } from '@angular/core';
import { NavMenuSectionItem } from '../services/nav-builder/nav-builder-types';
import { NavMenuBuilderService } from '../services/nav-builder';
@@ -34,15 +34,19 @@ import { NavMenuBuilderService } from '../services/nav-builder';
*
* @returns The provider configuration.
*/
-export function addNavMenuSection(config: NavMenuSectionItem, before?: string): Provider {
- return {
- provide: APP_INITIALIZER,
- multi: true,
- useFactory: (navBuilderService: NavMenuBuilderService) => () => {
- navBuilderService.addNavMenuSection(config, before);
- },
- deps: [NavMenuBuilderService]
- };
+export function addNavMenuSection(
+ config: NavMenuSectionItem,
+ before?: string
+): EnvironmentProviders {
+ return provideAppInitializer(() => {
+ const initializerFn = (
+ (navBuilderService: NavMenuBuilderService) => () => {
+ navBuilderService.addNavMenuSection(config, before);
+ }
+ )(inject(NavMenuBuilderService));
+
+ return initializerFn();
+ });
}
/**
@@ -66,13 +70,18 @@ export function addNavMenuSection(config: NavMenuSectionItem, before?: string):
*
* @returns The provider configuration.
*/
-export function addNavMenuItem(config: NavMenuSectionItem, sectionId: string, before?: string): Provider {
- return {
- provide: APP_INITIALIZER,
- multi: true,
- useFactory: (navBuilderService: NavMenuBuilderService) => () => {
- navBuilderService.addNavMenuItem(config, sectionId, before);
- },
- deps: [NavMenuBuilderService]
- };
+export function addNavMenuItem(
+ config: NavMenuSectionItem,
+ sectionId: string,
+ before?: string
+): EnvironmentProviders {
+ return provideAppInitializer(() => {
+ const initializerFn = (
+ (navBuilderService: NavMenuBuilderService) => () => {
+ navBuilderService.addNavMenuItem(config, sectionId, before);
+ }
+ )(inject(NavMenuBuilderService));
+
+ return initializerFn();
+ });
}
diff --git a/packages/ui-core/core/src/lib/services/navigation-builder/navigation-initializer.ts b/packages/ui-core/core/src/lib/services/navigation-builder/navigation-initializer.ts
index 6735f247539..a42ba6a385d 100644
--- a/packages/ui-core/core/src/lib/services/navigation-builder/navigation-initializer.ts
+++ b/packages/ui-core/core/src/lib/services/navigation-builder/navigation-initializer.ts
@@ -1,37 +1,58 @@
-import { APP_INITIALIZER, FactoryProvider } from '@angular/core';
+import { EnvironmentProviders, inject, provideAppInitializer } from '@angular/core';
import {
ISidebarActionConfig,
ISidebarConfig,
NavigationBuilderService
} from './navigation-builder.service';
+/**
+ * Adds a new action item to the sidebar navigation.
+ *
+ * @param config - The configuration object defining the properties of the sidebar action item.
+ *
+ * @returns An instance of `EnvironmentProviders` that initializes the sidebar action item during app setup.
+ *
+ * The function uses `provideAppInitializer` to ensure the action item is added
+ * to the `NavigationBuilderService` during application initialization.
+ */
export function addSidebarActionItem(
- config: ISidebarActionConfig
-): FactoryProvider {
- return {
- provide: APP_INITIALIZER,
- multi: true,
- useFactory: (
- navigationBuilderService: NavigationBuilderService
- ) => () => {
- navigationBuilderService.addSidebarActionItem(config);
- },
- deps: [NavigationBuilderService]
- };
+ config: ISidebarActionConfig
+): EnvironmentProviders {
+ return provideAppInitializer(() => {
+ const initializerFn = (
+ (navigationBuilderService: NavigationBuilderService) => () => {
+ navigationBuilderService.addSidebarActionItem(config);
+ }
+ )(inject(NavigationBuilderService));
+
+ return initializerFn();
+ });
}
+/**
+ * Registers a new widget in the sidebar navigation.
+ *
+ * @param id - A unique identifier for the sidebar widget.
+ * Example: 'widget-id'
+ *
+ * @param config - The configuration object defining the properties and behavior of the sidebar widget.
+ *
+ * @returns An instance of `EnvironmentProviders` that initializes the sidebar widget during app setup.
+ *
+ * This function ensures that the widget is registered with the `NavigationBuilderService` during
+ * the application initialization process.
+ */
export function registerSidebarWidget(
- id: string,
- config: ISidebarConfig
-): FactoryProvider {
- return {
- provide: APP_INITIALIZER,
- multi: true,
- useFactory: (
- navigationBuilderService: NavigationBuilderService
- ) => () => {
- navigationBuilderService.registerSidebar(id, config);
- },
- deps: [NavigationBuilderService]
- };
+ id: string,
+ config: ISidebarConfig
+): EnvironmentProviders {
+ return provideAppInitializer(() => {
+ const initializerFn = (
+ (navigationBuilderService: NavigationBuilderService) => () => {
+ navigationBuilderService.registerSidebar(id, config);
+ }
+ )(inject(NavigationBuilderService));
+
+ return initializerFn();
+ });
}
diff --git a/packages/ui-core/package.json b/packages/ui-core/package.json
index 8d78d6040d1..5d037b8ea93 100644
--- a/packages/ui-core/package.json
+++ b/packages/ui-core/package.json
@@ -24,54 +24,54 @@
"lib:watch": "yarn nx build ui-core --watch --configuration=development"
},
"peerDependencies": {
- "@angular/common": "^18.2.0",
- "@angular/core": "^18.2.0"
+ "@angular/common": "^19.2.0",
+ "@angular/core": "^19.2.0"
},
"dependencies": {
- "@ali-hm/angular-tree-component": "^18.0.5",
- "@angular-slider/ngx-slider": "^18.0.0",
- "@angular/animations": "18.2.12",
- "@angular/cdk": "18.2.14",
- "@angular/forms": "18.2.12",
- "@angular/material": "18.2.14",
- "@angular/platform-browser": "18.2.12",
- "@angular/router": "18.2.12",
- "@asymmetrik/ngx-leaflet": "^18.0.1",
+ "@ali-hm/angular-tree-component": "^19.0.1",
+ "@angular-slider/ngx-slider": "^19.0.0",
+ "@angular/animations": "19.2.7",
+ "@angular/cdk": "19.2.7",
+ "@angular/forms": "19.2.7",
+ "@angular/material": "19.2.7",
+ "@angular/platform-browser": "19.2.7",
+ "@angular/router": "19.2.7",
+ "@bluehalo/ngx-leaflet": "^19.0.0",
"@datorama/akita": "^8.0.1",
"@electron/remote": "^2.0.8",
- "@fortawesome/angular-fontawesome": "^0.15.0",
+ "@fortawesome/angular-fontawesome": "^1.0.0",
"@fortawesome/fontawesome-free": "^6.7.2",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
- "@fullcalendar/angular": "^6.1.15",
- "@fullcalendar/bootstrap": "^6.1.15",
- "@fullcalendar/core": "^6.1.15",
- "@fullcalendar/daygrid": "^6.1.15",
- "@fullcalendar/interaction": "^6.1.15",
- "@fullcalendar/moment-timezone": "^6.1.15",
- "@fullcalendar/timegrid": "^6.1.15",
+ "@fullcalendar/angular": "^6.1.17",
+ "@fullcalendar/bootstrap": "^6.1.17",
+ "@fullcalendar/core": "^6.1.17",
+ "@fullcalendar/daygrid": "^6.1.17",
+ "@fullcalendar/interaction": "^6.1.17",
+ "@fullcalendar/moment-timezone": "^6.1.17",
+ "@fullcalendar/timegrid": "^6.1.17",
"@gauzy/constants": "^0.1.0",
"@gauzy/contracts": "^0.1.0",
- "@jitsu/js": "^1.9.12",
+ "@jitsu/js": "^1.10.0",
"@kurkle/color": "^0.3.2",
- "@nebular/auth": "^14.0.2",
+ "@nebular/auth": "^15.0.0",
"@nebular/bootstrap": "^9.1.0-rc.6",
- "@nebular/eva-icons": "^14.0.2",
- "@nebular/security": "^14.0.2",
- "@nebular/theme": "^14.0.2",
- "@ng-maps/core": "^7.0.0",
- "@ng-maps/google": "^7.0.0",
- "@ng-select/ng-select": "^13.9.0",
+ "@nebular/eva-icons": "^15.0.0",
+ "@nebular/security": "^15.0.0",
+ "@nebular/theme": "^15.0.0",
+ "@ng-maps/core": "^8.0.0",
+ "@ng-maps/google": "^8.0.0",
+ "@ng-select/ng-select": "^14.2.2",
"@ngneat/until-destroy": "^10.0.0",
- "@ngx-translate/core": "^16.0.3",
- "@ngx-translate/http-loader": "^16.0.0",
+ "@ngx-translate/core": "^16.0.4",
+ "@ngx-translate/http-loader": "^16.0.1",
"@sentry/angular-ivy": "^7.101.1",
- "angular2-smart-table": "^3.4.0",
+ "angular2-smart-table": "^3.6.1",
"bootstrap": "^4.3.1",
"camelcase": "^6.3.0",
- "chart.js": "^4.4.1",
+ "chart.js": "^4.4.9",
"chartjs-plugin-annotation": "^3.0.1",
"ckeditor4": "4.22.1",
"ckeditor4-angular": "4.0.1",
@@ -88,16 +88,16 @@
"moment-timezone": "^0.5.45",
"nebular-icons": "^1.1.0",
"ng2-charts": "^5.0.4",
- "ng2-file-upload": "^7.0.1",
+ "ng2-file-upload": "^8.0.0",
"ngx-clipboard": "^16.0.0",
"ngx-color-picker": "^17.0.0",
- "ngx-cookie-service": "^18.0.0",
- "ngx-countdown": "^17.1.1",
+ "ngx-cookie-service": "^19.0.0",
+ "ngx-countdown": "^19.0.0",
"ngx-daterangepicker-material": "^6.0.4",
"ngx-draggable-dom": "^3.4.1",
- "ngx-infinite-scroll": "^18.0.0",
+ "ngx-infinite-scroll": "^19.0.0",
"ngx-moment": "^6.0.2",
- "ngx-permissions": "^17.1.0",
+ "ngx-permissions": "^19.0.0",
"randomcolor": "^0.6.2",
"rxjs": "^7.8.0",
"slugify": "^1.6.6",
@@ -111,7 +111,7 @@
"@types/ckeditor": "^4.9.10",
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "jest-preset-angular": "14.1.1"
+ "jest-preset-angular": "14.4.2"
},
"keywords": [
"ui-core",
diff --git a/packages/ui-core/shared/src/lib/appointments/appointment-calendar/appointment-calendar.component.scss b/packages/ui-core/shared/src/lib/appointments/appointment-calendar/appointment-calendar.component.scss
index 223cd116123..deb16746c5c 100644
--- a/packages/ui-core/shared/src/lib/appointments/appointment-calendar/appointment-calendar.component.scss
+++ b/packages/ui-core/shared/src/lib/appointments/appointment-calendar/appointment-calendar.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_pg-card';
+@forward '@shared/_pg-card';
.main-header {
display: flex;
diff --git a/packages/ui-core/shared/src/lib/appointments/appointment-calendar/appointment-calendar.component.ts b/packages/ui-core/shared/src/lib/appointments/appointment-calendar/appointment-calendar.component.ts
index 42c932222eb..a7138a45b24 100644
--- a/packages/ui-core/shared/src/lib/appointments/appointment-calendar/appointment-calendar.component.ts
+++ b/packages/ui-core/shared/src/lib/appointments/appointment-calendar/appointment-calendar.component.ts
@@ -39,16 +39,17 @@ import { TimezoneSelectorComponent } from '../timezone-selector/timezone-selecto
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-appointment-calendar',
- templateUrl: './appointment-calendar.component.html',
- styleUrls: ['./appointment-calendar.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => AppointmentCalendarComponent),
- multi: true
- }
- ]
+ selector: 'ngx-appointment-calendar',
+ templateUrl: './appointment-calendar.component.html',
+ styleUrls: ['./appointment-calendar.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => AppointmentCalendarComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class AppointmentCalendarComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
organization: IOrganization;
diff --git a/packages/ui-core/shared/src/lib/appointments/employee-schedules/employee-schedule.component.ts b/packages/ui-core/shared/src/lib/appointments/employee-schedules/employee-schedule.component.ts
index 09251a30d6f..b32e38ac27b 100644
--- a/packages/ui-core/shared/src/lib/appointments/employee-schedules/employee-schedule.component.ts
+++ b/packages/ui-core/shared/src/lib/appointments/employee-schedules/employee-schedule.component.ts
@@ -14,8 +14,9 @@ export interface EmployeeSchedule {
}
@Component({
- selector: 'ga-employee-schedules',
- templateUrl: './employee-schedule.component.html'
+ selector: 'ga-employee-schedules',
+ templateUrl: './employee-schedule.component.html',
+ standalone: false
})
export class EmployeeScheduleComponent extends TranslationBaseComponent implements OnInit {
schedule: EmployeeSchedule;
diff --git a/packages/ui-core/shared/src/lib/appointments/manage-appointment/manage-appointment.component.scss b/packages/ui-core/shared/src/lib/appointments/manage-appointment/manage-appointment.component.scss
index e08de1a1f55..337c2eaca5c 100644
--- a/packages/ui-core/shared/src/lib/appointments/manage-appointment/manage-appointment.component.scss
+++ b/packages/ui-core/shared/src/lib/appointments/manage-appointment/manage-appointment.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
@include nb-install-component {
.item-invalid {
diff --git a/packages/ui-core/shared/src/lib/appointments/manage-appointment/manage-appointment.component.ts b/packages/ui-core/shared/src/lib/appointments/manage-appointment/manage-appointment.component.ts
index fe8c1f4dddd..79a448ce84e 100644
--- a/packages/ui-core/shared/src/lib/appointments/manage-appointment/manage-appointment.component.ts
+++ b/packages/ui-core/shared/src/lib/appointments/manage-appointment/manage-appointment.component.ts
@@ -34,10 +34,11 @@ import { AlertModalComponent } from '../../components/alert-modal/alert-modal.co
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-manage-appointment',
- templateUrl: './manage-appointment.component.html',
- styleUrls: ['./manage-appointment.component.scss'],
- providers: [AppointmentEmployeesService, AvailabilitySlotsService, EmployeeAppointmentService]
+ selector: 'ga-manage-appointment',
+ templateUrl: './manage-appointment.component.html',
+ styleUrls: ['./manage-appointment.component.scss'],
+ providers: [AppointmentEmployeesService, AvailabilitySlotsService, EmployeeAppointmentService],
+ standalone: false
})
export class ManageAppointmentComponent extends TranslationBaseComponent implements OnInit, OnDestroy, AfterViewInit {
form: UntypedFormGroup;
diff --git a/packages/ui-core/shared/src/lib/appointments/timezone-selector/timezone-selector.component.ts b/packages/ui-core/shared/src/lib/appointments/timezone-selector/timezone-selector.component.ts
index 3eea769128c..d01fa69361a 100644
--- a/packages/ui-core/shared/src/lib/appointments/timezone-selector/timezone-selector.component.ts
+++ b/packages/ui-core/shared/src/lib/appointments/timezone-selector/timezone-selector.component.ts
@@ -5,7 +5,8 @@ import * as timezone from 'moment-timezone';
import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@Component({
- templateUrl: './timezone-selector.component.html'
+ templateUrl: './timezone-selector.component.html',
+ standalone: false
})
export class TimezoneSelectorComponent extends TranslationBaseComponent implements OnInit {
listOfZones = timezone.tz.names().filter((zone) => zone.includes('/'));
diff --git a/packages/ui-core/shared/src/lib/approval-policy/approval-policy-mutation.component.scss b/packages/ui-core/shared/src/lib/approval-policy/approval-policy-mutation.component.scss
index fce97e45562..ece65ec9937 100644
--- a/packages/ui-core/shared/src/lib/approval-policy/approval-policy-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/approval-policy/approval-policy-mutation.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.in-valid {
border: 1px solid #ff3d71;
diff --git a/packages/ui-core/shared/src/lib/approval-policy/approval-policy-mutation.component.ts b/packages/ui-core/shared/src/lib/approval-policy/approval-policy-mutation.component.ts
index 09cd7ea557b..476f3cf85bd 100644
--- a/packages/ui-core/shared/src/lib/approval-policy/approval-policy-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/approval-policy/approval-policy-mutation.component.ts
@@ -12,9 +12,10 @@ import { FormHelpers } from '../forms/helpers';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-approval-policy-mutation',
- templateUrl: './approval-policy-mutation.component.html',
- styleUrls: ['./approval-policy-mutation.component.scss']
+ selector: 'ngx-approval-policy-mutation',
+ templateUrl: './approval-policy-mutation.component.html',
+ styleUrls: ['./approval-policy-mutation.component.scss'],
+ standalone: false
})
export class ApprovalPolicyMutationComponent extends TranslationBaseComponent implements OnInit {
FormHelpers: typeof FormHelpers = FormHelpers;
diff --git a/packages/ui-core/shared/src/lib/approvals/approvals-mutation.component.scss b/packages/ui-core/shared/src/lib/approvals/approvals-mutation.component.scss
index 96dd966e8a7..cd20de4eaa5 100644
--- a/packages/ui-core/shared/src/lib/approvals/approvals-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/approvals/approvals-mutation.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs';
.main {
width: 645px;
diff --git a/packages/ui-core/shared/src/lib/approvals/approvals-mutation.component.ts b/packages/ui-core/shared/src/lib/approvals/approvals-mutation.component.ts
index e7dd089661f..170c17a035f 100644
--- a/packages/ui-core/shared/src/lib/approvals/approvals-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/approvals/approvals-mutation.component.ts
@@ -25,9 +25,10 @@ import { FormHelpers } from '../forms/helpers';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-approval-mutation',
- templateUrl: './approvals-mutation.component.html',
- styleUrls: ['./approvals-mutation.component.scss']
+ selector: 'ngx-approval-mutation',
+ templateUrl: './approvals-mutation.component.html',
+ styleUrls: ['./approvals-mutation.component.scss'],
+ standalone: false
})
export class RequestApprovalMutationComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
FormHelpers: typeof FormHelpers = FormHelpers;
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-calendar-info/candidate-calendar-info.component.ts b/packages/ui-core/shared/src/lib/candidate/candidate-calendar-info/candidate-calendar-info.component.ts
index 05c8dd017a7..ee2ea631859 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-calendar-info/candidate-calendar-info.component.ts
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-calendar-info/candidate-calendar-info.component.ts
@@ -17,9 +17,10 @@ import { distinctUntilChange } from '@gauzy/ui-core/common';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-candidate-interviews-calendar-info',
- templateUrl: './candidate-calendar-info.component.html',
- styleUrls: ['./candidate-calendar-info.component.scss']
+ selector: 'ga-candidate-interviews-calendar-info',
+ templateUrl: './candidate-calendar-info.component.html',
+ styleUrls: ['./candidate-calendar-info.component.scss'],
+ standalone: false
})
export class CandidateCalendarInfoComponent implements OnInit {
@ViewChild('calendar', { static: true }) calendar: FullCalendarComponent;
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-confirmation/delete-feedback/delete-feedback.component.scss b/packages/ui-core/shared/src/lib/candidate/candidate-confirmation/delete-feedback/delete-feedback.component.scss
index 61eb601fb3b..e29d3bfcf70 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-confirmation/delete-feedback/delete-feedback.component.scss
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-confirmation/delete-feedback/delete-feedback.component.scss
@@ -1 +1 @@
-@import '../delete-interview/delete-interview.component.scss';
+@forward '../delete-interview/delete-interview.component';
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-confirmation/delete-feedback/delete-feedback.component.ts b/packages/ui-core/shared/src/lib/candidate/candidate-confirmation/delete-feedback/delete-feedback.component.ts
index 348767ef050..225edc5428d 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-confirmation/delete-feedback/delete-feedback.component.ts
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-confirmation/delete-feedback/delete-feedback.component.ts
@@ -8,9 +8,10 @@ import { CandidateCriterionsRatingService, CandidateFeedbacksService } from '@ga
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-delete-feedback',
- templateUrl: 'delete-feedback.component.html',
- styleUrls: ['delete-feedback.component.scss']
+ selector: 'ga-delete-feedback',
+ templateUrl: 'delete-feedback.component.html',
+ styleUrls: ['delete-feedback.component.scss'],
+ standalone: false
})
export class DeleteFeedbackComponent extends TranslationBaseComponent implements OnDestroy {
@Input() feedbackId: string;
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-confirmation/delete-interview/delete-interview.component.scss b/packages/ui-core/shared/src/lib/candidate/candidate-confirmation/delete-interview/delete-interview.component.scss
index 1c7628bec66..90fefaa1774 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-confirmation/delete-interview/delete-interview.component.scss
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-confirmation/delete-interview/delete-interview.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.card {
border-radius: nb-theme(border-radius);
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-confirmation/delete-interview/delete-interview.component.ts b/packages/ui-core/shared/src/lib/candidate/candidate-confirmation/delete-interview/delete-interview.component.ts
index ff6b3efb328..90d690e569d 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-confirmation/delete-interview/delete-interview.component.ts
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-confirmation/delete-interview/delete-interview.component.ts
@@ -14,9 +14,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy()
@Component({
- selector: 'ga-delete-interview',
- templateUrl: 'delete-interview.component.html',
- styleUrls: ['delete-interview.component.scss']
+ selector: 'ga-delete-interview',
+ templateUrl: 'delete-interview.component.html',
+ styleUrls: ['delete-interview.component.scss'],
+ standalone: false
})
export class DeleteInterviewComponent extends TranslationBaseComponent implements OnDestroy {
@Input() interview: ICandidateInterview;
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-cv/candidate-cv.component.ts b/packages/ui-core/shared/src/lib/candidate/candidate-cv/candidate-cv.component.ts
index ce2aa79c65e..5e14b68aa25 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-cv/candidate-cv.component.ts
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-cv/candidate-cv.component.ts
@@ -1,8 +1,9 @@
import { Component, OnInit, Input } from '@angular/core';
import { Validators, UntypedFormBuilder } from '@angular/forms';
@Component({
- selector: 'ga-candidate-cv',
- templateUrl: 'candidate-cv.component.html'
+ selector: 'ga-candidate-cv',
+ templateUrl: 'candidate-cv.component.html',
+ standalone: false
})
export class CandidateCvComponent implements OnInit {
@Input() documentUrl: any;
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-interview-feedback/candidate-interview-feedback.component.scss b/packages/ui-core/shared/src/lib/candidate/candidate-interview-feedback/candidate-interview-feedback.component.scss
index 787ba1a12a2..9f44a298ae2 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-interview-feedback/candidate-interview-feedback.component.scss
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-interview-feedback/candidate-interview-feedback.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.card-wrap {
min-width: 40rem;
@@ -113,4 +113,4 @@
font-weight: 400;
padding: 7px 18px;
}
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-interview-feedback/candidate-interview-feedback.component.ts b/packages/ui-core/shared/src/lib/candidate/candidate-interview-feedback/candidate-interview-feedback.component.ts
index b8235ff4c32..76f0bb24123 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-interview-feedback/candidate-interview-feedback.component.ts
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-interview-feedback/candidate-interview-feedback.component.ts
@@ -22,9 +22,10 @@ import { Store } from '@gauzy/ui-core/core';
import { EmployeeSelectorComponent } from '../../selectors/employee';
@Component({
- selector: 'ga-candidate-interview-feedback',
- templateUrl: './candidate-interview-feedback.component.html',
- styleUrls: ['./candidate-interview-feedback.component.scss']
+ selector: 'ga-candidate-interview-feedback',
+ templateUrl: './candidate-interview-feedback.component.html',
+ styleUrls: ['./candidate-interview-feedback.component.scss'],
+ standalone: false
})
export class CandidateInterviewFeedbackComponent extends TranslationBaseComponent implements OnInit {
@Input() candidateId: string;
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-interview-info/candidate-interview-info.component.scss b/packages/ui-core/shared/src/lib/candidate/candidate-interview-info/candidate-interview-info.component.scss
index 3ddbef99eb8..3f65ccd423a 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-interview-info/candidate-interview-info.component.scss
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-interview-info/candidate-interview-info.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
.card-wrap {
min-width: 40rem;
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-interview-info/candidate-interview-info.component.ts b/packages/ui-core/shared/src/lib/candidate/candidate-interview-info/candidate-interview-info.component.ts
index 071302b1e4e..b65873aed0d 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-interview-info/candidate-interview-info.component.ts
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-interview-info/candidate-interview-info.component.ts
@@ -17,9 +17,10 @@ import { CandidateInterviewMutationComponent } from '../candidate-interview-muta
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-candidate-interview-info',
- templateUrl: './candidate-interview-info.component.html',
- styleUrls: ['./candidate-interview-info.component.scss']
+ selector: 'ga-candidate-interview-info',
+ templateUrl: './candidate-interview-info.component.html',
+ styleUrls: ['./candidate-interview-info.component.scss'],
+ standalone: false
})
export class CandidateInterviewInfoComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
@Input() interviewId: any; //from calendar
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-criterions-form/candidate-criterions-form.component.scss b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-criterions-form/candidate-criterions-form.component.scss
index 78cb4f279b7..e4da63f84a6 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-criterions-form/candidate-criterions-form.component.scss
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-criterions-form/candidate-criterions-form.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host .form {
width: 45rem;
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-criterions-form/candidate-criterions-form.component.ts b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-criterions-form/candidate-criterions-form.component.ts
index ccbcbd628a1..2b736568730 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-criterions-form/candidate-criterions-form.component.ts
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-criterions-form/candidate-criterions-form.component.ts
@@ -6,9 +6,10 @@ import { Store } from '@gauzy/ui-core/core';
import { CandidatePersonalQualitiesService, CandidateTechnologiesService } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-candidate-criterions-form',
- templateUrl: 'candidate-criterions-form.component.html',
- styleUrls: ['candidate-criterions-form.component.scss']
+ selector: 'ga-candidate-criterions-form',
+ templateUrl: 'candidate-criterions-form.component.html',
+ styleUrls: ['candidate-criterions-form.component.scss'],
+ standalone: false
})
export class CandidateCriterionsFormComponent implements OnInit, OnDestroy {
@Input() editSelectedTechnologies: ICandidateTechnologies[] = [];
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-interview-form/candidate-interview-form.component.scss b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-interview-form/candidate-interview-form.component.scss
index c6143c5f102..8a9d9bfb053 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-interview-form/candidate-interview-form.component.scss
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-interview-form/candidate-interview-form.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
.form {
width: 35rem;
@@ -71,4 +71,4 @@
font-size: 11px;
color: #ff3d71;
}
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-interview-form/candidate-interview-form.component.ts b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-interview-form/candidate-interview-form.component.ts
index f2d6469e55c..6b9ac243ac9 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-interview-form/candidate-interview-form.component.ts
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-interview-form/candidate-interview-form.component.ts
@@ -21,9 +21,10 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-candidate-interview-form',
- templateUrl: 'candidate-interview-form.component.html',
- styleUrls: ['candidate-interview-form.component.scss']
+ selector: 'ga-candidate-interview-form',
+ templateUrl: 'candidate-interview-form.component.html',
+ styleUrls: ['candidate-interview-form.component.scss'],
+ standalone: false
})
export class CandidateInterviewFormComponent implements AfterViewInit, OnInit, OnDestroy {
@Input() editData: ICandidateInterview;
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-interview-mutation.component.scss b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-interview-mutation.component.scss
index c1e3d697103..368b8d9e904 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-interview-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-interview-mutation.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.candidate-image {
width: 70px;
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-interview-mutation.component.ts b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-interview-mutation.component.ts
index d7ac5020771..436bd3a82df 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-interview-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-interview-mutation.component.ts
@@ -32,9 +32,10 @@ import { CommunicationService } from './communication.service';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-candidate-interview-mutation',
- templateUrl: 'candidate-interview-mutation.component.html',
- styleUrls: ['candidate-interview-mutation.component.scss']
+ selector: 'ga-candidate-interview-mutation',
+ templateUrl: 'candidate-interview-mutation.component.html',
+ styleUrls: ['candidate-interview-mutation.component.scss'],
+ standalone: false
})
export class CandidateInterviewMutationComponent implements AfterViewInit, OnInit, OnDestroy {
@Input() editData: ICandidateInterview;
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-notification-form/candidate-email/candidate-email.component.scss b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-notification-form/candidate-email/candidate-email.component.scss
index 5e3c70a9c5f..e2067bdd7d5 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-notification-form/candidate-email/candidate-email.component.scss
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-notification-form/candidate-email/candidate-email.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
.email-wrap {
max-width: 45rem;
@@ -20,4 +20,4 @@
:host .editor {
@include nb-ltr(padding, 0 2px 0 0);
@include nb-rtl(padding, 0 0px 0 2px);
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-notification-form/candidate-email/candidate-email.component.ts b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-notification-form/candidate-email/candidate-email.component.ts
index 9667820623d..b660074f7ac 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-notification-form/candidate-email/candidate-email.component.ts
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-notification-form/candidate-email/candidate-email.component.ts
@@ -6,9 +6,10 @@ import { CandidatesService } from '@gauzy/ui-core/core';
import { ckEditorConfig } from '../../../../ckeditor.config';
@Component({
- selector: 'ga-candidate-email',
- templateUrl: 'candidate-email.component.html',
- styleUrls: ['candidate-email.component.scss']
+ selector: 'ga-candidate-email',
+ templateUrl: 'candidate-email.component.html',
+ styleUrls: ['candidate-email.component.scss'],
+ standalone: false
})
export class CandidateEmailComponent implements OnInit {
@Input() isCandidate: boolean;
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-notification-form/candidate-notification-form.component.scss b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-notification-form/candidate-notification-form.component.scss
index 4d0f54ad2d7..a5f204dd267 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-notification-form/candidate-notification-form.component.scss
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-notification-form/candidate-notification-form.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
.summary {
min-width: 45rem;
@@ -42,4 +42,4 @@
border-radius: 13px;
margin-right: 4px;
margin-left: 4px;
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-notification-form/candidate-notification-form.component.ts b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-notification-form/candidate-notification-form.component.ts
index 282fde12460..0e912c76dd2 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-notification-form/candidate-notification-form.component.ts
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/candidate-notification-form/candidate-notification-form.component.ts
@@ -3,9 +3,10 @@ import { UntypedFormGroup } from '@angular/forms';
import { ICandidateInterview, ICandidate, IEmployee } from '@gauzy/contracts';
import { CandidateEmailComponent } from './candidate-email/candidate-email.component';
@Component({
- selector: 'ga-candidate-notification-form',
- templateUrl: './candidate-notification-form.component.html',
- styleUrls: ['./candidate-notification-form.component.scss']
+ selector: 'ga-candidate-notification-form',
+ templateUrl: './candidate-notification-form.component.html',
+ styleUrls: ['./candidate-notification-form.component.scss'],
+ standalone: false
})
export class CandidateNotificationFormComponent implements OnDestroy {
@Input() interview: ICandidateInterview;
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/interview-criterions/candidate-personal-qualities/candidate-personal-qualities.component.scss b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/interview-criterions/candidate-personal-qualities/candidate-personal-qualities.component.scss
index f2a05ff2064..628598cb44f 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/interview-criterions/candidate-personal-qualities/candidate-personal-qualities.component.scss
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/interview-criterions/candidate-personal-qualities/candidate-personal-qualities.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.add-criterion {
display: flex;
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/interview-criterions/candidate-personal-qualities/candidate-personal-qualities.component.ts b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/interview-criterions/candidate-personal-qualities/candidate-personal-qualities.component.ts
index 16313feea56..ea388c9d14e 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/interview-criterions/candidate-personal-qualities/candidate-personal-qualities.component.ts
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/interview-criterions/candidate-personal-qualities/candidate-personal-qualities.component.ts
@@ -10,9 +10,10 @@ import { Store } from '@gauzy/ui-core/core';
import { CommunicationService } from '../../communication.service';
@Component({
- selector: 'ga-candidate-personal-qualities',
- templateUrl: './candidate-personal-qualities.component.html',
- styleUrls: ['./candidate-personal-qualities.component.scss']
+ selector: 'ga-candidate-personal-qualities',
+ templateUrl: './candidate-personal-qualities.component.html',
+ styleUrls: ['./candidate-personal-qualities.component.scss'],
+ standalone: false
})
export class CandidatePersonalQualitiesComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
private _ngDestroy$ = new Subject();
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/interview-criterions/candidate-technologies/candidate-technologies.component.scss b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/interview-criterions/candidate-technologies/candidate-technologies.component.scss
index 21e541d0384..2bbd51528b2 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/interview-criterions/candidate-technologies/candidate-technologies.component.scss
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/interview-criterions/candidate-technologies/candidate-technologies.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.add-criterion {
display: flex;
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/interview-criterions/candidate-technologies/candidate-technologies.component.ts b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/interview-criterions/candidate-technologies/candidate-technologies.component.ts
index 8229ceaf50b..cc3537442a9 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/interview-criterions/candidate-technologies/candidate-technologies.component.ts
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-interview-mutation/interview-criterions/candidate-technologies/candidate-technologies.component.ts
@@ -10,9 +10,10 @@ import { Store } from '@gauzy/ui-core/core';
import { CommunicationService } from '../../communication.service';
@Component({
- selector: 'ga-candidate-technologies',
- templateUrl: './candidate-technologies.component.html',
- styleUrls: ['./candidate-technologies.component.scss']
+ selector: 'ga-candidate-technologies',
+ templateUrl: './candidate-technologies.component.html',
+ styleUrls: ['./candidate-technologies.component.scss'],
+ standalone: false
})
export class CandidateTechnologiesComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
private _ngDestroy$ = new Subject();
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-mutation/candidate-mutation.component.scss b/packages/ui-core/shared/src/lib/candidate/candidate-mutation/candidate-mutation.component.scss
index 45e10f3b5dc..43709069eae 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-mutation/candidate-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-mutation/candidate-mutation.component.scss
@@ -1,4 +1,4 @@
-@import '@shared/_employee-mutation';
+@forward '@shared/_employee-mutation';
.label {
margin: 0 0 8px;
diff --git a/packages/ui-core/shared/src/lib/candidate/candidate-mutation/candidate-mutation.component.ts b/packages/ui-core/shared/src/lib/candidate/candidate-mutation/candidate-mutation.component.ts
index 84cc1cae79e..755577e16ed 100644
--- a/packages/ui-core/shared/src/lib/candidate/candidate-mutation/candidate-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/candidate/candidate-mutation/candidate-mutation.component.ts
@@ -21,9 +21,10 @@ import { CandidateCvComponent } from '../candidate-cv/candidate-cv.component';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-candidate-mutation',
- templateUrl: 'candidate-mutation.component.html',
- styleUrls: ['candidate-mutation.component.scss']
+ selector: 'ga-candidate-mutation',
+ templateUrl: 'candidate-mutation.component.html',
+ styleUrls: ['candidate-mutation.component.scss'],
+ standalone: false
})
export class CandidateMutationComponent implements OnInit, AfterViewInit {
@ViewChild('userBasicInfo')
diff --git a/packages/ui-core/shared/src/lib/candidate/selectors/base-candidate-selector.component.ts b/packages/ui-core/shared/src/lib/candidate/selectors/base-candidate-selector.component.ts
index 35c81c9f0ac..91a41f274a3 100644
--- a/packages/ui-core/shared/src/lib/candidate/selectors/base-candidate-selector.component.ts
+++ b/packages/ui-core/shared/src/lib/candidate/selectors/base-candidate-selector.component.ts
@@ -7,7 +7,8 @@ import { CandidatesService, ErrorHandlingService, Store } from '@gauzy/ui-core/c
@UntilDestroy()
@Component({
- template: ''
+ template: '',
+ standalone: false
})
export class BaseCandidateSelectorComponent implements OnInit {
public candidates$: Observable; // Observable for an array of Organization candidates
diff --git a/packages/ui-core/shared/src/lib/candidate/selectors/candidate-interviewer-select/candidate-interviewer-select.component.ts b/packages/ui-core/shared/src/lib/candidate/selectors/candidate-interviewer-select/candidate-interviewer-select.component.ts
index 7ff5db4e355..0e91ffe725d 100644
--- a/packages/ui-core/shared/src/lib/candidate/selectors/candidate-interviewer-select/candidate-interviewer-select.component.ts
+++ b/packages/ui-core/shared/src/lib/candidate/selectors/candidate-interviewer-select/candidate-interviewer-select.component.ts
@@ -5,9 +5,10 @@ import { ICandidate, IEmployee } from '@gauzy/contracts';
@UntilDestroy()
@Component({
- selector: 'ga-candidate-interviewer-select',
- templateUrl: './candidate-interviewer-select.component.html',
- styleUrls: ['../base-candidate-selector.component.scss']
+ selector: 'ga-candidate-interviewer-select',
+ templateUrl: './candidate-interviewer-select.component.html',
+ styleUrls: ['../base-candidate-selector.component.scss'],
+ standalone: false
})
export class CandidateInterviewerSelectComponent {
public select: FormControl = new FormControl();
diff --git a/packages/ui-core/shared/src/lib/candidate/selectors/candidate-multi-select/candidate-multi-select.component.ts b/packages/ui-core/shared/src/lib/candidate/selectors/candidate-multi-select/candidate-multi-select.component.ts
index cd5c6071251..a92c1cae6fa 100644
--- a/packages/ui-core/shared/src/lib/candidate/selectors/candidate-multi-select/candidate-multi-select.component.ts
+++ b/packages/ui-core/shared/src/lib/candidate/selectors/candidate-multi-select/candidate-multi-select.component.ts
@@ -5,9 +5,10 @@ import { CandidatesService, ErrorHandlingService } from '@gauzy/ui-core/core';
import { BaseCandidateSelectorComponent } from '../base-candidate-selector.component';
@Component({
- selector: 'ga-candidate-multi-select',
- templateUrl: './candidate-multi-select.component.html',
- styleUrls: ['../base-candidate-selector.component.scss']
+ selector: 'ga-candidate-multi-select',
+ templateUrl: './candidate-multi-select.component.html',
+ styleUrls: ['../base-candidate-selector.component.scss'],
+ standalone: false
})
export class CandidateMultiSelectComponent extends BaseCandidateSelectorComponent implements OnInit {
@Input() selectedCandidateIds: string[] = [];
diff --git a/packages/ui-core/shared/src/lib/candidate/selectors/candidate-select/candidate-select.component.ts b/packages/ui-core/shared/src/lib/candidate/selectors/candidate-select/candidate-select.component.ts
index 17971846aaf..06132bb51e1 100644
--- a/packages/ui-core/shared/src/lib/candidate/selectors/candidate-select/candidate-select.component.ts
+++ b/packages/ui-core/shared/src/lib/candidate/selectors/candidate-select/candidate-select.component.ts
@@ -10,9 +10,10 @@ import { BaseCandidateSelectorComponent } from '../base-candidate-selector.compo
@UntilDestroy()
@Component({
- selector: 'ga-candidate-select',
- templateUrl: './candidate-select.component.html',
- styleUrls: ['../base-candidate-selector.component.scss']
+ selector: 'ga-candidate-select',
+ templateUrl: './candidate-select.component.html',
+ styleUrls: ['../base-candidate-selector.component.scss'],
+ standalone: false
})
export class CandidateSelectComponent extends BaseCandidateSelectorComponent implements OnInit {
public select: FormControl = new FormControl();
diff --git a/packages/ui-core/shared/src/lib/card-grid/card-grid-custom.component.ts b/packages/ui-core/shared/src/lib/card-grid/card-grid-custom.component.ts
index 03b84f67a1a..0c10a7cbe0c 100644
--- a/packages/ui-core/shared/src/lib/card-grid/card-grid-custom.component.ts
+++ b/packages/ui-core/shared/src/lib/card-grid/card-grid-custom.component.ts
@@ -10,8 +10,9 @@ import {
import { ComponentLayoutStyleEnum } from '@gauzy/contracts';
@Component({
- selector: 'ga-custom-component',
- template: ` `
+ selector: 'ga-custom-component',
+ template: ` `,
+ standalone: false
})
export class CustomViewComponent implements OnInit, OnDestroy {
@Input() renderComponent: any;
diff --git a/packages/ui-core/shared/src/lib/card-grid/card-grid.component.scss b/packages/ui-core/shared/src/lib/card-grid/card-grid.component.scss
index 10c643e4444..50ab9510d0b 100644
--- a/packages/ui-core/shared/src/lib/card-grid/card-grid.component.scss
+++ b/packages/ui-core/shared/src/lib/card-grid/card-grid.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host .card-layout {
display: grid;
diff --git a/packages/ui-core/shared/src/lib/card-grid/card-grid.component.ts b/packages/ui-core/shared/src/lib/card-grid/card-grid.component.ts
index a6f08a49a90..3554ea05c20 100644
--- a/packages/ui-core/shared/src/lib/card-grid/card-grid.component.ts
+++ b/packages/ui-core/shared/src/lib/card-grid/card-grid.component.ts
@@ -8,9 +8,10 @@ import { CustomViewComponent } from './card-grid-custom.component';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-card-grid',
- templateUrl: './card-grid.component.html',
- styleUrls: ['./card-grid.component.scss']
+ selector: 'ga-card-grid',
+ templateUrl: './card-grid.component.html',
+ styleUrls: ['./card-grid.component.scss'],
+ standalone: false
})
export class CardGridComponent implements OnInit, OnDestroy {
source$: BehaviorSubject = new BehaviorSubject([]);
diff --git a/packages/ui-core/shared/src/lib/components/alert-modal/alert-modal.component.scss b/packages/ui-core/shared/src/lib/components/alert-modal/alert-modal.component.scss
index 8b7f9812c85..2090c092897 100644
--- a/packages/ui-core/shared/src/lib/components/alert-modal/alert-modal.component.scss
+++ b/packages/ui-core/shared/src/lib/components/alert-modal/alert-modal.component.scss
@@ -1 +1 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
diff --git a/packages/ui-core/shared/src/lib/components/alert-modal/alert-modal.component.ts b/packages/ui-core/shared/src/lib/components/alert-modal/alert-modal.component.ts
index 0777aa9e521..bed2529b6a3 100644
--- a/packages/ui-core/shared/src/lib/components/alert-modal/alert-modal.component.ts
+++ b/packages/ui-core/shared/src/lib/components/alert-modal/alert-modal.component.ts
@@ -8,9 +8,10 @@ export interface AlertModalOptions {
}
@Component({
- selector: 'ga-alert-modal',
- templateUrl: './alert-modal.component.html',
- styleUrls: ['./alert-modal.component.scss']
+ selector: 'ga-alert-modal',
+ templateUrl: './alert-modal.component.html',
+ styleUrls: ['./alert-modal.component.scss'],
+ standalone: false
})
export class AlertModalComponent implements OnInit {
@Input() public data: AlertModalOptions;
diff --git a/packages/ui-core/shared/src/lib/components/avatar/avatar.component.scss b/packages/ui-core/shared/src/lib/components/avatar/avatar.component.scss
index 7dfbb13eab4..78ddf183abe 100644
--- a/packages/ui-core/shared/src/lib/components/avatar/avatar.component.scss
+++ b/packages/ui-core/shared/src/lib/components/avatar/avatar.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
@mixin common {
.inner-wrapper {
diff --git a/packages/ui-core/shared/src/lib/components/avatar/avatar.component.ts b/packages/ui-core/shared/src/lib/components/avatar/avatar.component.ts
index 7988826fc3d..95d72ed5ace 100644
--- a/packages/ui-core/shared/src/lib/components/avatar/avatar.component.ts
+++ b/packages/ui-core/shared/src/lib/components/avatar/avatar.component.ts
@@ -5,9 +5,10 @@ import { map } from 'rxjs/operators';
import { ID, IEmployee } from '@gauzy/contracts';
@Component({
- selector: 'ngx-avatar',
- templateUrl: './avatar.component.html',
- styleUrls: ['./avatar.component.scss']
+ selector: 'ngx-avatar',
+ templateUrl: './avatar.component.html',
+ styleUrls: ['./avatar.component.scss'],
+ standalone: false
})
export class AvatarComponent implements OnInit {
public online$: Observable;
diff --git a/packages/ui-core/shared/src/lib/components/back-navigation/back-navigation.component.scss b/packages/ui-core/shared/src/lib/components/back-navigation/back-navigation.component.scss
index d2726adc8c7..788b16d511d 100644
--- a/packages/ui-core/shared/src/lib/components/back-navigation/back-navigation.component.scss
+++ b/packages/ui-core/shared/src/lib/components/back-navigation/back-navigation.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
$border-primary: nb-theme(text-primary-color);
diff --git a/packages/ui-core/shared/src/lib/components/back-navigation/back-navigation.component.ts b/packages/ui-core/shared/src/lib/components/back-navigation/back-navigation.component.ts
index c1f26d7b75a..fb83864e2b9 100644
--- a/packages/ui-core/shared/src/lib/components/back-navigation/back-navigation.component.ts
+++ b/packages/ui-core/shared/src/lib/components/back-navigation/back-navigation.component.ts
@@ -2,9 +2,10 @@ import { Component, Input, OnInit } from '@angular/core';
import { Location } from '@angular/common';
@Component({
- selector: 'ngx-back-navigation',
- templateUrl: './back-navigation.component.html',
- styleUrls: ['./back-navigation.component.scss']
+ selector: 'ngx-back-navigation',
+ templateUrl: './back-navigation.component.html',
+ styleUrls: ['./back-navigation.component.scss'],
+ standalone: false
})
export class BackNavigationComponent implements OnInit {
@Input() haveLink = false;
diff --git a/packages/ui-core/shared/src/lib/components/badge-label/badge-label.component.ts b/packages/ui-core/shared/src/lib/components/badge-label/badge-label.component.ts
index 2c607566a9e..0b3b4606123 100644
--- a/packages/ui-core/shared/src/lib/components/badge-label/badge-label.component.ts
+++ b/packages/ui-core/shared/src/lib/components/badge-label/badge-label.component.ts
@@ -2,17 +2,18 @@ import { Component, Input } from '@angular/core';
import { NbComponentStatus, NbComponentSize } from '@nebular/theme';
@Component({
- selector: 'ngx-badge-label',
- templateUrl: './badge-label.component.html',
- styles: [
- `
+ selector: 'ngx-badge-label',
+ templateUrl: './badge-label.component.html',
+ styles: [
+ `
:host {
:is(nb-badge) {
position: relative;
}
}
`
- ]
+ ],
+ standalone: false
})
export class BadgeLabelComponent {
@Input() status: NbComponentStatus = 'primary';
diff --git a/packages/ui-core/shared/src/lib/components/date-range-title/date-range-title.component.ts b/packages/ui-core/shared/src/lib/components/date-range-title/date-range-title.component.ts
index cc73aba40f3..e949db4704a 100644
--- a/packages/ui-core/shared/src/lib/components/date-range-title/date-range-title.component.ts
+++ b/packages/ui-core/shared/src/lib/components/date-range-title/date-range-title.component.ts
@@ -5,10 +5,10 @@ import { DateFormatPipe } from '../../pipes';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-date-range-title',
- template: `{{ title }}`,
- styles: [
- `
+ selector: 'ngx-date-range-title',
+ template: `{{ title }}`,
+ styles: [
+ `
span {
font-size: 14px;
font-weight: 600;
@@ -17,7 +17,8 @@ import { DateFormatPipe } from '../../pipes';
color: var(--gauzy-text-color-2);
}
`
- ]
+ ],
+ standalone: false
})
export class DateRangeTitleComponent {
/**
diff --git a/packages/ui-core/shared/src/lib/components/dynamic-tabs/dynamic-tabs.component.ts b/packages/ui-core/shared/src/lib/components/dynamic-tabs/dynamic-tabs.component.ts
index de79f415044..3fab208bc6f 100644
--- a/packages/ui-core/shared/src/lib/components/dynamic-tabs/dynamic-tabs.component.ts
+++ b/packages/ui-core/shared/src/lib/components/dynamic-tabs/dynamic-tabs.component.ts
@@ -25,10 +25,11 @@ import { I18nService } from '@gauzy/ui-core/i18n';
@UntilDestroy()
@Component({
- selector: 'gz-dynamic-tabs',
- templateUrl: './dynamic-tabs.component.html',
- styleUrls: ['./dynamic-tabs.component.scss'],
- providers: []
+ selector: 'gz-dynamic-tabs',
+ templateUrl: './dynamic-tabs.component.html',
+ styleUrls: ['./dynamic-tabs.component.scss'],
+ providers: [],
+ standalone: false
})
export class DynamicTabsComponent implements OnInit, OnDestroy {
public tabs: CustomNbRouteTab[] = []; // Define the structure of tabs according to your needs
diff --git a/packages/ui-core/shared/src/lib/components/header-title/header-title.component.ts b/packages/ui-core/shared/src/lib/components/header-title/header-title.component.ts
index 1d18ca7ebf4..85048075c18 100644
--- a/packages/ui-core/shared/src/lib/components/header-title/header-title.component.ts
+++ b/packages/ui-core/shared/src/lib/components/header-title/header-title.component.ts
@@ -7,10 +7,10 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-header-title',
- templateUrl: './header-title.component.html',
- styles: [
- `
+ selector: 'ngx-header-title',
+ templateUrl: './header-title.component.html',
+ styles: [
+ `
.name,
.org-name {
font-size: 24px;
@@ -27,7 +27,8 @@ import { Store } from '@gauzy/ui-core/core';
text-align: left;
}
`
- ]
+ ],
+ standalone: false
})
export class HeaderTitleComponent implements OnInit {
PermissionsEnum: typeof PermissionsEnum = PermissionsEnum;
diff --git a/packages/ui-core/shared/src/lib/components/layout-selector/layout-selector.component.ts b/packages/ui-core/shared/src/lib/components/layout-selector/layout-selector.component.ts
index e730448d3cb..68af3933dc2 100644
--- a/packages/ui-core/shared/src/lib/components/layout-selector/layout-selector.component.ts
+++ b/packages/ui-core/shared/src/lib/components/layout-selector/layout-selector.component.ts
@@ -6,9 +6,10 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-layout-selector',
- templateUrl: './layout-selector.component.html',
- styleUrls: ['./layout-selector.component.scss']
+ selector: 'ga-layout-selector',
+ templateUrl: './layout-selector.component.html',
+ styleUrls: ['./layout-selector.component.scss'],
+ standalone: false
})
export class LayoutSelectorComponent implements OnInit, OnDestroy {
public layoutStyles = ComponentLayoutStyleEnum;
diff --git a/packages/ui-core/shared/src/lib/components/popup/popup.component.scss b/packages/ui-core/shared/src/lib/components/popup/popup.component.scss
index 80317e64f6f..68ba8038b02 100644
--- a/packages/ui-core/shared/src/lib/components/popup/popup.component.scss
+++ b/packages/ui-core/shared/src/lib/components/popup/popup.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
.button {
/* Search */
diff --git a/packages/ui-core/shared/src/lib/components/popup/popup.component.ts b/packages/ui-core/shared/src/lib/components/popup/popup.component.ts
index 8c012dacb85..18c10a637cc 100644
--- a/packages/ui-core/shared/src/lib/components/popup/popup.component.ts
+++ b/packages/ui-core/shared/src/lib/components/popup/popup.component.ts
@@ -4,10 +4,11 @@ import { NbCardComponent } from '@nebular/theme';
@Component({
selector: 'gauzy-under-construction-popup',
templateUrl: './popup.component.html',
- styleUrls: ['./popup.component.scss']
+ styleUrls: ['./popup.component.scss'],
+ standalone: false
})
export class UnderConstructionPopupComponent {
- @Output() onClosed: EventEmitter;
+ @Output() onClosed: EventEmitter;
private _popup: TemplateRef;
public get popup(): TemplateRef {
diff --git a/packages/ui-core/shared/src/lib/components/search-input/search-input.component.ts b/packages/ui-core/shared/src/lib/components/search-input/search-input.component.ts
index 35fd7177c9b..b948ce9bc6d 100644
--- a/packages/ui-core/shared/src/lib/components/search-input/search-input.component.ts
+++ b/packages/ui-core/shared/src/lib/components/search-input/search-input.component.ts
@@ -1,9 +1,9 @@
import { Component, ElementRef, EventEmitter, Output, ViewChild } from '@angular/core';
@Component({
- selector: 'ngx-search-input',
- styleUrls: ['./search-input.component.scss'],
- template: `
+ selector: 'ngx-search-input',
+ styleUrls: ['./search-input.component.scss'],
+ template: `
- `
+ `,
+ standalone: false
})
export class SearchInputComponent {
isInputShown = false;
diff --git a/packages/ui-core/shared/src/lib/contact-select/contact-select.component.ts b/packages/ui-core/shared/src/lib/contact-select/contact-select.component.ts
index c782139c646..ffc0a282da4 100644
--- a/packages/ui-core/shared/src/lib/contact-select/contact-select.component.ts
+++ b/packages/ui-core/shared/src/lib/contact-select/contact-select.component.ts
@@ -11,15 +11,16 @@ import { OrganizationContactService, ErrorHandlingService, ToastrService } from
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-contact-select',
- templateUrl: './contact-select.component.html',
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => ContactSelectComponent),
- multi: true
- }
- ]
+ selector: 'ga-contact-select',
+ templateUrl: './contact-select.component.html',
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => ContactSelectComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class ContactSelectComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
public hasEditEmployee$: Observable;
diff --git a/packages/ui-core/shared/src/lib/contact-selector/contact-selector.component.ts b/packages/ui-core/shared/src/lib/contact-selector/contact-selector.component.ts
index 0cceed61750..5aea022106c 100644
--- a/packages/ui-core/shared/src/lib/contact-selector/contact-selector.component.ts
+++ b/packages/ui-core/shared/src/lib/contact-selector/contact-selector.component.ts
@@ -11,16 +11,17 @@ import { OrganizationContactService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-contact-selector',
- templateUrl: './contact-selector.component.html',
- styleUrls: ['./contact-selector.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => ContactSelectorComponent),
- multi: true
- }
- ]
+ selector: 'ga-contact-selector',
+ templateUrl: './contact-selector.component.html',
+ styleUrls: ['./contact-selector.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => ContactSelectorComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class ContactSelectorComponent implements AfterViewInit, OnInit, OnDestroy {
public organization: IOrganization;
diff --git a/packages/ui-core/shared/src/lib/counter-point/counter-point.component.scss b/packages/ui-core/shared/src/lib/counter-point/counter-point.component.scss
index 0147fd92b7b..e90de0e5e47 100644
--- a/packages/ui-core/shared/src/lib/counter-point/counter-point.component.scss
+++ b/packages/ui-core/shared/src/lib/counter-point/counter-point.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host .point{
width: 100%;
diff --git a/packages/ui-core/shared/src/lib/counter-point/counter-point.component.ts b/packages/ui-core/shared/src/lib/counter-point/counter-point.component.ts
index d4632da3615..6ea57f811e5 100644
--- a/packages/ui-core/shared/src/lib/counter-point/counter-point.component.ts
+++ b/packages/ui-core/shared/src/lib/counter-point/counter-point.component.ts
@@ -4,9 +4,10 @@ import { progressStatus } from '@gauzy/ui-core/common';
import { NbThemeService } from '@nebular/theme';
@Component({
- selector: 'gauzy-counter-point',
- templateUrl: './counter-point.component.html',
- styleUrls: ['./counter-point.component.scss']
+ selector: 'gauzy-counter-point',
+ templateUrl: './counter-point.component.html',
+ styleUrls: ['./counter-point.component.scss'],
+ standalone: false
})
export class CounterPointComponent implements OnInit, OnChanges {
progressStatus = progressStatus;
diff --git a/packages/ui-core/shared/src/lib/dashboard/info-block/info-block.component.ts b/packages/ui-core/shared/src/lib/dashboard/info-block/info-block.component.ts
index 4824f8304c2..8cda37e86b4 100644
--- a/packages/ui-core/shared/src/lib/dashboard/info-block/info-block.component.ts
+++ b/packages/ui-core/shared/src/lib/dashboard/info-block/info-block.component.ts
@@ -1,9 +1,10 @@
import { Component, Output, EventEmitter, Input } from '@angular/core';
@Component({
- selector: 'ga-info-block',
- templateUrl: './info-block.component.html',
- styleUrls: ['./info-block.component.scss']
+ selector: 'ga-info-block',
+ templateUrl: './info-block.component.html',
+ styleUrls: ['./info-block.component.scss'],
+ standalone: false
})
export class InfoBlockComponent {
@Input() title: string;
diff --git a/packages/ui-core/shared/src/lib/dashboard/profit-history/profit-history.component.scss b/packages/ui-core/shared/src/lib/dashboard/profit-history/profit-history.component.scss
index c52d0c8c18c..d722b3a6eb0 100644
--- a/packages/ui-core/shared/src/lib/dashboard/profit-history/profit-history.component.scss
+++ b/packages/ui-core/shared/src/lib/dashboard/profit-history/profit-history.component.scss
@@ -1,4 +1,4 @@
-@import '../records-history/records-history.component.scss';
+@forward '../records-history/records-history.component';
.totals {
display: flex;
diff --git a/packages/ui-core/shared/src/lib/dashboard/profit-history/profit-history.component.ts b/packages/ui-core/shared/src/lib/dashboard/profit-history/profit-history.component.ts
index 5b90e1fc50a..5613d6c80d9 100644
--- a/packages/ui-core/shared/src/lib/dashboard/profit-history/profit-history.component.ts
+++ b/packages/ui-core/shared/src/lib/dashboard/profit-history/profit-history.component.ts
@@ -15,9 +15,10 @@ import { DateViewComponent } from '../../table-components';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-profit-history-selector',
- templateUrl: './profit-history.component.html',
- styleUrls: ['./profit-history.component.scss']
+ selector: 'ga-profit-history-selector',
+ templateUrl: './profit-history.component.html',
+ styleUrls: ['./profit-history.component.scss'],
+ standalone: false
})
export class ProfitHistoryComponent extends PaginationFilterBaseComponent implements OnInit {
public organization: IOrganization;
diff --git a/packages/ui-core/shared/src/lib/dashboard/profit-history/table-components/expense-table.component.ts b/packages/ui-core/shared/src/lib/dashboard/profit-history/table-components/expense-table.component.ts
index e7f28d295bc..46cab7ec4a1 100644
--- a/packages/ui-core/shared/src/lib/dashboard/profit-history/table-components/expense-table.component.ts
+++ b/packages/ui-core/shared/src/lib/dashboard/profit-history/table-components/expense-table.component.ts
@@ -6,12 +6,13 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-expense-table-selector',
- template: `
+ selector: 'ga-expense-table-selector',
+ template: `
{{ rowData.expense ? '- ' + rowData.expense + ' ' + organization?.currency : '' }}
- `
+ `,
+ standalone: false
})
export class ExpenseTableComponent implements OnInit {
public organization: IOrganization;
diff --git a/packages/ui-core/shared/src/lib/dashboard/profit-history/table-components/income-table.component.ts b/packages/ui-core/shared/src/lib/dashboard/profit-history/table-components/income-table.component.ts
index 82f84421c78..dc38ab98fe5 100644
--- a/packages/ui-core/shared/src/lib/dashboard/profit-history/table-components/income-table.component.ts
+++ b/packages/ui-core/shared/src/lib/dashboard/profit-history/table-components/income-table.component.ts
@@ -6,12 +6,13 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-income-table-selector',
- template: `
+ selector: 'ga-income-table-selector',
+ template: `
{{ rowData.income ? '+ ' + rowData.income + ' ' + organization?.currency : '' }}
- `
+ `,
+ standalone: false
})
export class IncomeTableComponent implements OnInit {
public organization: IOrganization;
diff --git a/packages/ui-core/shared/src/lib/dashboard/records-history/records-history.component.scss b/packages/ui-core/shared/src/lib/dashboard/records-history/records-history.component.scss
index 5bd014803cf..b9abc57b973 100644
--- a/packages/ui-core/shared/src/lib/dashboard/records-history/records-history.component.scss
+++ b/packages/ui-core/shared/src/lib/dashboard/records-history/records-history.component.scss
@@ -1,6 +1,6 @@
-@import 'gauzy/_gauzy-table.scss';
-@import 'gauzy/_gauzy-dialogs';
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-table' as *;
+@use 'gauzy/_gauzy-dialogs' as ga-dialogs;
+@use 'gauzy/_gauzy-overrides' as ga-overrides;
:host nb-card {
border-radius: nb-theme(border-radius);
@@ -10,7 +10,7 @@
}
nb-card-body {
overflow: unset;
- @include input-appearance(2rem, var(--gauzy-sidebar-background-4));
+ @include ga-overrides.input-appearance(2rem, var(--gauzy-sidebar-background-4));
background-color: var(--gauzy-card-2);
padding: 1rem 11px;
.table-scroll-container {
diff --git a/packages/ui-core/shared/src/lib/dashboard/records-history/records-history.component.ts b/packages/ui-core/shared/src/lib/dashboard/records-history/records-history.component.ts
index f64989c1065..c0d02e364a5 100644
--- a/packages/ui-core/shared/src/lib/dashboard/records-history/records-history.component.ts
+++ b/packages/ui-core/shared/src/lib/dashboard/records-history/records-history.component.ts
@@ -16,9 +16,10 @@ import { ContactLinksComponent, DateViewComponent, IncomeExpenseAmountComponent
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-records-history',
- templateUrl: './records-history.component.html',
- styleUrls: ['./records-history.component.scss']
+ selector: 'ngx-records-history',
+ templateUrl: './records-history.component.html',
+ styleUrls: ['./records-history.component.scss'],
+ standalone: false
})
export class RecordsHistoryComponent extends PaginationFilterBaseComponent implements OnInit {
type: HistoryType;
diff --git a/packages/ui-core/shared/src/lib/dashboard/widget-layout/widget-layout.component.ts b/packages/ui-core/shared/src/lib/dashboard/widget-layout/widget-layout.component.ts
index e0ff3124785..45cfe63bccf 100644
--- a/packages/ui-core/shared/src/lib/dashboard/widget-layout/widget-layout.component.ts
+++ b/packages/ui-core/shared/src/lib/dashboard/widget-layout/widget-layout.component.ts
@@ -19,9 +19,10 @@ import { WidgetService } from '../widget/widget.service';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-widget-layout',
- templateUrl: './widget-layout.component.html',
- styleUrls: ['./widget-layout.component.scss']
+ selector: 'ga-widget-layout',
+ templateUrl: './widget-layout.component.html',
+ styleUrls: ['./widget-layout.component.scss'],
+ standalone: false
})
export class WidgetLayoutComponent
extends LayoutWithDraggableObject
diff --git a/packages/ui-core/shared/src/lib/dashboard/widget/widget.component.scss b/packages/ui-core/shared/src/lib/dashboard/widget/widget.component.scss
index 90ad5c12552..4f474da840a 100644
--- a/packages/ui-core/shared/src/lib/dashboard/widget/widget.component.scss
+++ b/packages/ui-core/shared/src/lib/dashboard/widget/widget.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
#widget {
position: relative;
diff --git a/packages/ui-core/shared/src/lib/dashboard/widget/widget.component.ts b/packages/ui-core/shared/src/lib/dashboard/widget/widget.component.ts
index b0567ffa3b6..c85087260d4 100644
--- a/packages/ui-core/shared/src/lib/dashboard/widget/widget.component.ts
+++ b/packages/ui-core/shared/src/lib/dashboard/widget/widget.component.ts
@@ -8,9 +8,10 @@ import { WidgetService } from './widget.service';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-widget',
- templateUrl: './widget.component.html',
- styleUrls: ['./widget.component.scss']
+ selector: 'ga-widget',
+ templateUrl: './widget.component.html',
+ styleUrls: ['./widget.component.scss'],
+ standalone: false
})
export class WidgetComponent extends GuiDrag implements OnInit, AfterViewInit, OnDestroy {
private _widgetDragEnded: Observable;
diff --git a/packages/ui-core/shared/src/lib/dashboard/window-layout/window-layout.component.ts b/packages/ui-core/shared/src/lib/dashboard/window-layout/window-layout.component.ts
index 8ee7aa041b1..2ecf9c19041 100644
--- a/packages/ui-core/shared/src/lib/dashboard/window-layout/window-layout.component.ts
+++ b/packages/ui-core/shared/src/lib/dashboard/window-layout/window-layout.component.ts
@@ -19,9 +19,10 @@ import { WindowService } from '../window/window.service';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-window-layout',
- templateUrl: './window-layout.component.html',
- styleUrls: ['./window-layout.component.scss']
+ selector: 'ga-window-layout',
+ templateUrl: './window-layout.component.html',
+ styleUrls: ['./window-layout.component.scss'],
+ standalone: false
})
export class WindowLayoutComponent
extends LayoutWithDraggableObject
diff --git a/packages/ui-core/shared/src/lib/dashboard/window/window.component.scss b/packages/ui-core/shared/src/lib/dashboard/window/window.component.scss
index 0d318b60e9f..ef74eafc28e 100644
--- a/packages/ui-core/shared/src/lib/dashboard/window/window.component.scss
+++ b/packages/ui-core/shared/src/lib/dashboard/window/window.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
#window {
position: relative;
diff --git a/packages/ui-core/shared/src/lib/dashboard/window/window.component.ts b/packages/ui-core/shared/src/lib/dashboard/window/window.component.ts
index 53a6b96a4f3..57bc19044f1 100644
--- a/packages/ui-core/shared/src/lib/dashboard/window/window.component.ts
+++ b/packages/ui-core/shared/src/lib/dashboard/window/window.component.ts
@@ -8,9 +8,10 @@ import { WindowService } from './window.service';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-window',
- templateUrl: './window.component.html',
- styleUrls: ['./window.component.scss']
+ selector: 'ga-window',
+ templateUrl: './window.component.html',
+ styleUrls: ['./window.component.scss'],
+ standalone: false
})
export class WindowComponent extends GuiDrag implements OnInit, AfterViewInit, OnDestroy {
private _windowDragEnded: Observable;
diff --git a/packages/ui-core/shared/src/lib/dialogs/alert/alert.component.ts b/packages/ui-core/shared/src/lib/dialogs/alert/alert.component.ts
index ac04c5a1dc4..a589465f1eb 100644
--- a/packages/ui-core/shared/src/lib/dialogs/alert/alert.component.ts
+++ b/packages/ui-core/shared/src/lib/dialogs/alert/alert.component.ts
@@ -8,9 +8,10 @@ export interface AlertDialogOptions {
}
@Component({
- selector: 'ngx-alert',
- templateUrl: './alert.component.html',
- styleUrls: ['./alert.component.scss']
+ selector: 'ngx-alert',
+ templateUrl: './alert.component.html',
+ styleUrls: ['./alert.component.scss'],
+ standalone: false
})
export class AlertComponent implements OnInit {
@Input() data: AlertDialogOptions;
diff --git a/packages/ui-core/shared/src/lib/dialogs/confirm/confirm.component.scss b/packages/ui-core/shared/src/lib/dialogs/confirm/confirm.component.scss
index 22827d81f2e..c9f7bf57589 100644
--- a/packages/ui-core/shared/src/lib/dialogs/confirm/confirm.component.scss
+++ b/packages/ui-core/shared/src/lib/dialogs/confirm/confirm.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
nb-card {
min-width: 375px;
diff --git a/packages/ui-core/shared/src/lib/dialogs/confirm/confirm.component.ts b/packages/ui-core/shared/src/lib/dialogs/confirm/confirm.component.ts
index 530ab226a01..b59c9cb8be7 100644
--- a/packages/ui-core/shared/src/lib/dialogs/confirm/confirm.component.ts
+++ b/packages/ui-core/shared/src/lib/dialogs/confirm/confirm.component.ts
@@ -10,9 +10,10 @@ export interface ConfirmDialogOptions {
}
@Component({
- selector: 'ngx-confirm',
- templateUrl: './confirm.component.html',
- styleUrls: ['./confirm.component.scss']
+ selector: 'ngx-confirm',
+ templateUrl: './confirm.component.html',
+ styleUrls: ['./confirm.component.scss'],
+ standalone: false
})
export class ConfirmComponent implements OnInit {
@Input() data: ConfirmDialogOptions;
diff --git a/packages/ui-core/shared/src/lib/dialogs/directive/alert.directive.ts b/packages/ui-core/shared/src/lib/dialogs/directive/alert.directive.ts
index 9c5eacab227..0362be3cd5c 100644
--- a/packages/ui-core/shared/src/lib/dialogs/directive/alert.directive.ts
+++ b/packages/ui-core/shared/src/lib/dialogs/directive/alert.directive.ts
@@ -6,7 +6,8 @@ import { AlertComponent, AlertDialogOptions } from '../alert/alert.component';
@UntilDestroy({ checkProperties: true })
@Directive({
- selector: '[ngxAlertDialog]'
+ selector: '[ngxAlertDialog]',
+ standalone: false
})
export class AlertDirective implements OnDestroy {
data: AlertDialogOptions = {};
diff --git a/packages/ui-core/shared/src/lib/dialogs/directive/confirm.directive.ts b/packages/ui-core/shared/src/lib/dialogs/directive/confirm.directive.ts
index ee893ccd825..b2797eaf7ff 100644
--- a/packages/ui-core/shared/src/lib/dialogs/directive/confirm.directive.ts
+++ b/packages/ui-core/shared/src/lib/dialogs/directive/confirm.directive.ts
@@ -5,7 +5,8 @@ import { ConfirmComponent, ConfirmDialogOptions } from '../confirm/confirm.compo
@UntilDestroy({ checkProperties: true })
@Directive({
- selector: '[ngxConfirmDialog]'
+ selector: '[ngxConfirmDialog]',
+ standalone: false
})
export class ConfirmDirective implements OnDestroy {
data: ConfirmDialogOptions = {};
diff --git a/packages/ui-core/shared/src/lib/dialogs/directive/prompt.directive.ts b/packages/ui-core/shared/src/lib/dialogs/directive/prompt.directive.ts
index 084b6261980..1a9497e86ae 100644
--- a/packages/ui-core/shared/src/lib/dialogs/directive/prompt.directive.ts
+++ b/packages/ui-core/shared/src/lib/dialogs/directive/prompt.directive.ts
@@ -7,7 +7,8 @@ import { PromptComponent, PromptDialogOptions } from '../prompt/prompt.component
@UntilDestroy({ checkProperties: true })
@Directive({
- selector: '[ngxPromptDialog]'
+ selector: '[ngxPromptDialog]',
+ standalone: false
})
export class PromptDirective extends TranslationBaseComponent implements OnDestroy {
/*
diff --git a/packages/ui-core/shared/src/lib/dialogs/prompt/prompt.component.ts b/packages/ui-core/shared/src/lib/dialogs/prompt/prompt.component.ts
index 40907f47405..8b3936b4a9b 100644
--- a/packages/ui-core/shared/src/lib/dialogs/prompt/prompt.component.ts
+++ b/packages/ui-core/shared/src/lib/dialogs/prompt/prompt.component.ts
@@ -18,9 +18,10 @@ export interface PromptDialogOptions {
}
@Component({
- selector: 'ngx-prompt',
- templateUrl: './prompt.component.html',
- styleUrls: ['./prompt.component.scss']
+ selector: 'ngx-prompt',
+ templateUrl: './prompt.component.html',
+ styleUrls: ['./prompt.component.scss'],
+ standalone: false
})
export class PromptComponent implements OnInit {
@Input() data: PromptDialogOptions;
diff --git a/packages/ui-core/shared/src/lib/dialogs/quick-actions/quick-actions.component.scss b/packages/ui-core/shared/src/lib/dialogs/quick-actions/quick-actions.component.scss
index 70423aedc42..e4578757295 100644
--- a/packages/ui-core/shared/src/lib/dialogs/quick-actions/quick-actions.component.scss
+++ b/packages/ui-core/shared/src/lib/dialogs/quick-actions/quick-actions.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host nb-card-header {
display: flex;
diff --git a/packages/ui-core/shared/src/lib/dialogs/quick-actions/quick-actions.component.ts b/packages/ui-core/shared/src/lib/dialogs/quick-actions/quick-actions.component.ts
index 6558588c8a5..adac75fb9cd 100644
--- a/packages/ui-core/shared/src/lib/dialogs/quick-actions/quick-actions.component.ts
+++ b/packages/ui-core/shared/src/lib/dialogs/quick-actions/quick-actions.component.ts
@@ -83,9 +83,10 @@ const quickActionsCollection = {
};
@Component({
- selector: 'ngx-quick-actions',
- templateUrl: './quick-actions.component.html',
- styleUrls: ['./quick-actions.component.scss']
+ selector: 'ngx-quick-actions',
+ templateUrl: './quick-actions.component.html',
+ styleUrls: ['./quick-actions.component.scss'],
+ standalone: false
})
export class QuickActionsComponent extends TranslationBaseComponent implements OnInit {
@Input() items: NbMenuItem[] = [];
diff --git a/packages/ui-core/shared/src/lib/directives/autocomplete-off.directive.ts b/packages/ui-core/shared/src/lib/directives/autocomplete-off.directive.ts
index f9b3a028d9d..5cffc304bf8 100644
--- a/packages/ui-core/shared/src/lib/directives/autocomplete-off.directive.ts
+++ b/packages/ui-core/shared/src/lib/directives/autocomplete-off.directive.ts
@@ -2,7 +2,8 @@ import { Directive, ElementRef, NgZone, OnInit, Renderer2 } from '@angular/core'
import { asapScheduler } from 'rxjs';
@Directive({
- selector: '[autocomplete-off]'
+ selector: '[autocomplete-off]',
+ standalone: false
})
/**
* Alterates autocomplete="off" attribute on chrome because it's ignoring it in case of credentials, address or credit card data type.
diff --git a/packages/ui-core/shared/src/lib/directives/debounce-click.directive.ts b/packages/ui-core/shared/src/lib/directives/debounce-click.directive.ts
index c751502cb68..0adc58fb956 100644
--- a/packages/ui-core/shared/src/lib/directives/debounce-click.directive.ts
+++ b/packages/ui-core/shared/src/lib/directives/debounce-click.directive.ts
@@ -2,7 +2,8 @@ import { Directive, EventEmitter, HostListener, Input, OnDestroy, OnInit, Output
import { debounceTime, Subject, Subscription, tap } from 'rxjs';
@Directive({
- selector: '[debounceClick]'
+ selector: '[debounceClick]',
+ standalone: false
})
export class DebounceClickDirective implements OnInit, OnDestroy {
private clicks = new Subject();
diff --git a/packages/ui-core/shared/src/lib/directives/img.directive.ts b/packages/ui-core/shared/src/lib/directives/img.directive.ts
index b254bf2c3b1..e5680d4fb91 100644
--- a/packages/ui-core/shared/src/lib/directives/img.directive.ts
+++ b/packages/ui-core/shared/src/lib/directives/img.directive.ts
@@ -3,7 +3,8 @@ import { environment } from '@gauzy/ui-config';
import { AVATAR_DEFAULT_SVG, DEFAULT_SVG } from '@gauzy/ui-core/common';
@Directive({
- selector: 'img'
+ selector: 'img',
+ standalone: false
})
export class ImgDirective implements OnDestroy, OnInit {
@Input() type: 'user' | 'default' = 'default';
diff --git a/packages/ui-core/shared/src/lib/directives/no-space-edges.directive.ts b/packages/ui-core/shared/src/lib/directives/no-space-edges.directive.ts
index 04d41b9b5f9..73d6ad186ca 100644
--- a/packages/ui-core/shared/src/lib/directives/no-space-edges.directive.ts
+++ b/packages/ui-core/shared/src/lib/directives/no-space-edges.directive.ts
@@ -1,7 +1,8 @@
import { Directive, ElementRef, HostListener } from '@angular/core';
@Directive({
- selector: '[noSpaceEdges]'
+ selector: '[noSpaceEdges]',
+ standalone: false
})
export class NoSpaceEdgesDirective {
constructor(private readonly el: ElementRef) {}
diff --git a/packages/ui-core/shared/src/lib/directives/outside.directive.ts b/packages/ui-core/shared/src/lib/directives/outside.directive.ts
index 27d18b5cc8e..e5d27754e44 100644
--- a/packages/ui-core/shared/src/lib/directives/outside.directive.ts
+++ b/packages/ui-core/shared/src/lib/directives/outside.directive.ts
@@ -1,7 +1,8 @@
import { Directive, ElementRef, EventEmitter, Output, HostListener } from '@angular/core';
@Directive({
- selector: '[gauzyOutside]'
+ selector: '[gauzyOutside]',
+ standalone: false
})
export class OutsideDirective {
constructor(private readonly elementRef: ElementRef) {}
diff --git a/packages/ui-core/shared/src/lib/directives/read-more.ts b/packages/ui-core/shared/src/lib/directives/read-more.ts
index 96519a961e0..a8b357592e3 100644
--- a/packages/ui-core/shared/src/lib/directives/read-more.ts
+++ b/packages/ui-core/shared/src/lib/directives/read-more.ts
@@ -1,7 +1,8 @@
import { Directive, Input, ElementRef, AfterViewInit, OnChanges } from '@angular/core';
@Directive({
- selector: '[readMore]'
+ selector: '[readMore]',
+ standalone: false
})
export class ReadMoreDirective implements AfterViewInit, OnChanges {
@Input('readMore-length') private maxLength: number;
diff --git a/packages/ui-core/shared/src/lib/directives/text-mask.directive.ts b/packages/ui-core/shared/src/lib/directives/text-mask.directive.ts
index ff0b553aa10..dbc33079a91 100644
--- a/packages/ui-core/shared/src/lib/directives/text-mask.directive.ts
+++ b/packages/ui-core/shared/src/lib/directives/text-mask.directive.ts
@@ -8,7 +8,8 @@ interface IMaskConfig {
}
@Directive({
- selector: '[gaTextMask]'
+ selector: '[gaTextMask]',
+ standalone: false
})
export class TextMaskDirective {
// Default configuration for text masking
diff --git a/packages/ui-core/shared/src/lib/directives/time-tracking-authorized-directive.ts b/packages/ui-core/shared/src/lib/directives/time-tracking-authorized-directive.ts
index fbb6c2f4045..209a892060d 100644
--- a/packages/ui-core/shared/src/lib/directives/time-tracking-authorized-directive.ts
+++ b/packages/ui-core/shared/src/lib/directives/time-tracking-authorized-directive.ts
@@ -8,7 +8,8 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Directive({
- selector: '[ngxTimeTrackingAuthorized]'
+ selector: '[ngxTimeTrackingAuthorized]',
+ standalone: false
})
export class TimeTrackingAuthorizedDirective implements OnInit {
private _permission: string | string[] = []; // Default initialization
diff --git a/packages/ui-core/shared/src/lib/directives/trigger-parent-click.directive.ts b/packages/ui-core/shared/src/lib/directives/trigger-parent-click.directive.ts
index 92a1d09cf29..0fdf9d74d54 100644
--- a/packages/ui-core/shared/src/lib/directives/trigger-parent-click.directive.ts
+++ b/packages/ui-core/shared/src/lib/directives/trigger-parent-click.directive.ts
@@ -1,7 +1,8 @@
import { Directive, ElementRef, HostListener } from '@angular/core';
@Directive({
- selector: '[triggerParentClick]'
+ selector: '[triggerParentClick]',
+ standalone: false
})
export class TriggerParentClickDirective {
constructor(private readonly el: ElementRef) {}
diff --git a/packages/ui-core/shared/src/lib/directives/under-construction.directive.ts b/packages/ui-core/shared/src/lib/directives/under-construction.directive.ts
index 406109d30f3..f2ea0e197a9 100644
--- a/packages/ui-core/shared/src/lib/directives/under-construction.directive.ts
+++ b/packages/ui-core/shared/src/lib/directives/under-construction.directive.ts
@@ -14,7 +14,8 @@ import { UnderConstructionPopupComponent } from '../components/popup/popup.compo
@UntilDestroy({ checkProperties: true })
@Directive({
- selector: '[underConstruction]'
+ selector: '[underConstruction]',
+ standalone: false
})
export class UnderConstructionDirective {
private _popupComponentRef: ComponentRef;
diff --git a/packages/ui-core/shared/src/lib/editable-grid/gauzy-editable-grid.component.scss b/packages/ui-core/shared/src/lib/editable-grid/gauzy-editable-grid.component.scss
index e80a47d1037..f250bbd9a8a 100644
--- a/packages/ui-core/shared/src/lib/editable-grid/gauzy-editable-grid.component.scss
+++ b/packages/ui-core/shared/src/lib/editable-grid/gauzy-editable-grid.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-table';
+@use 'gauzy/_gauzy-table' as *;
.selected-item {
background: rgba(126, 126, 143, 0.1);
@@ -24,4 +24,4 @@
ngx-gauzy-button-action ::ng-deep .actions-container {
padding-top: 0;
}
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/editable-grid/gauzy-editable-grid.component.ts b/packages/ui-core/shared/src/lib/editable-grid/gauzy-editable-grid.component.ts
index 21de0e71a50..d6c16dda10c 100644
--- a/packages/ui-core/shared/src/lib/editable-grid/gauzy-editable-grid.component.ts
+++ b/packages/ui-core/shared/src/lib/editable-grid/gauzy-editable-grid.component.ts
@@ -9,9 +9,10 @@ export type ItemActionType = 'create' | 'edit' | 'delete';
@UntilDestroy()
@Component({
- selector: 'ga-editable-grid',
- templateUrl: './gauzy-editable-grid.component.html',
- styleUrls: ['./gauzy-editable-grid.component.scss']
+ selector: 'ga-editable-grid',
+ templateUrl: './gauzy-editable-grid.component.html',
+ styleUrls: ['./gauzy-editable-grid.component.scss'],
+ standalone: false
})
export class GauzyEditableGridComponent
extends TranslationBaseComponent
diff --git a/packages/ui-core/shared/src/lib/employee/edit-employee-membership-form/edit-employee-membership-form.component.scss b/packages/ui-core/shared/src/lib/employee/edit-employee-membership-form/edit-employee-membership-form.component.scss
index bc305a5414d..0a621e05b65 100644
--- a/packages/ui-core/shared/src/lib/employee/edit-employee-membership-form/edit-employee-membership-form.component.scss
+++ b/packages/ui-core/shared/src/lib/employee/edit-employee-membership-form/edit-employee-membership-form.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.employee-form {
width: 100%;
diff --git a/packages/ui-core/shared/src/lib/employee/edit-employee-membership-form/edit-employee-membership-form.component.ts b/packages/ui-core/shared/src/lib/employee/edit-employee-membership-form/edit-employee-membership-form.component.ts
index 8f353c912be..b6301cc3714 100644
--- a/packages/ui-core/shared/src/lib/employee/edit-employee-membership-form/edit-employee-membership-form.component.ts
+++ b/packages/ui-core/shared/src/lib/employee/edit-employee-membership-form/edit-employee-membership-form.component.ts
@@ -4,9 +4,10 @@ import { IBaseEntityWithMembers, IEditEntityByMemberInput, IEmployee, IOrganizat
import { Store } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-edit-employee-membership',
- templateUrl: './edit-employee-membership-form.component.html',
- styleUrls: ['./edit-employee-membership-form.component.scss']
+ selector: 'ga-edit-employee-membership',
+ templateUrl: './edit-employee-membership-form.component.html',
+ styleUrls: ['./edit-employee-membership-form.component.scss'],
+ standalone: false
})
export class EditEmployeeMembershipFormComponent implements OnInit {
@Input() organizationEntities: IBaseEntityWithMembers[] = [];
diff --git a/packages/ui-core/shared/src/lib/employee/employee-end-work-popup/employee-end-work.component.scss b/packages/ui-core/shared/src/lib/employee/employee-end-work-popup/employee-end-work.component.scss
index 9f15f5e6d66..4455547cd73 100644
--- a/packages/ui-core/shared/src/lib/employee/employee-end-work-popup/employee-end-work.component.scss
+++ b/packages/ui-core/shared/src/lib/employee/employee-end-work-popup/employee-end-work.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
nb-card {
width: 375px;
diff --git a/packages/ui-core/shared/src/lib/employee/employee-end-work-popup/employee-end-work.component.ts b/packages/ui-core/shared/src/lib/employee/employee-end-work-popup/employee-end-work.component.ts
index 3ded049ff99..215f6d014db 100644
--- a/packages/ui-core/shared/src/lib/employee/employee-end-work-popup/employee-end-work.component.ts
+++ b/packages/ui-core/shared/src/lib/employee/employee-end-work-popup/employee-end-work.component.ts
@@ -4,9 +4,10 @@ import { NbDialogRef } from '@nebular/theme';
import { TranslateService } from '@ngx-translate/core';
@Component({
- selector: 'ga-employee-end-work',
- templateUrl: 'employee-end-work.component.html',
- styleUrls: ['employee-end-work.component.scss']
+ selector: 'ga-employee-end-work',
+ templateUrl: 'employee-end-work.component.html',
+ styleUrls: ['employee-end-work.component.scss'],
+ standalone: false
})
export class EmployeeEndWorkComponent {
backToWork: boolean;
diff --git a/packages/ui-core/shared/src/lib/employee/employee-location/employee-location.component.scss b/packages/ui-core/shared/src/lib/employee/employee-location/employee-location.component.scss
index 4fa394aa012..4efd989e763 100644
--- a/packages/ui-core/shared/src/lib/employee/employee-location/employee-location.component.scss
+++ b/packages/ui-core/shared/src/lib/employee/employee-location/employee-location.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host {
height: 100%;
diff --git a/packages/ui-core/shared/src/lib/employee/employee-location/employee-location.component.ts b/packages/ui-core/shared/src/lib/employee/employee-location/employee-location.component.ts
index 86ea371c18a..dc06b0b461f 100644
--- a/packages/ui-core/shared/src/lib/employee/employee-location/employee-location.component.ts
+++ b/packages/ui-core/shared/src/lib/employee/employee-location/employee-location.component.ts
@@ -10,9 +10,10 @@ import { LeafletMapComponent, LocationFormComponent } from '../../forms';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-employee-location',
- templateUrl: './employee-location.component.html',
- styleUrls: ['./employee-location.component.scss']
+ selector: 'ga-employee-location',
+ templateUrl: './employee-location.component.html',
+ styleUrls: ['./employee-location.component.scss'],
+ standalone: false
})
export class EmployeeLocationComponent implements OnInit, OnDestroy {
@Input() public isEmployee: boolean;
diff --git a/packages/ui-core/shared/src/lib/employee/employee-multi-select/employee-multi-select.component.ts b/packages/ui-core/shared/src/lib/employee/employee-multi-select/employee-multi-select.component.ts
index 9af7e3d7d22..81dc598b3f9 100644
--- a/packages/ui-core/shared/src/lib/employee/employee-multi-select/employee-multi-select.component.ts
+++ b/packages/ui-core/shared/src/lib/employee/employee-multi-select/employee-multi-select.component.ts
@@ -9,16 +9,17 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-employee-multi-select',
- templateUrl: './employee-multi-select.component.html',
- styleUrls: ['./employee-multi-select.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => EmployeeSelectComponent),
- multi: true
- }
- ]
+ selector: 'ga-employee-multi-select',
+ templateUrl: './employee-multi-select.component.html',
+ styleUrls: ['./employee-multi-select.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => EmployeeSelectComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class EmployeeSelectComponent implements OnInit, OnDestroy {
loaded: boolean;
diff --git a/packages/ui-core/shared/src/lib/employee/employee-mutation/employee-mutation.component.scss b/packages/ui-core/shared/src/lib/employee/employee-mutation/employee-mutation.component.scss
index 32d629d9f59..7ccdbe8b487 100644
--- a/packages/ui-core/shared/src/lib/employee/employee-mutation/employee-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/employee/employee-mutation/employee-mutation.component.scss
@@ -1 +1 @@
-@import '@shared/_employee-mutation';
+@forward '@shared/_employee-mutation';
diff --git a/packages/ui-core/shared/src/lib/employee/employee-mutation/employee-mutation.component.ts b/packages/ui-core/shared/src/lib/employee/employee-mutation/employee-mutation.component.ts
index 82aa92b58ce..a6c795246a3 100644
--- a/packages/ui-core/shared/src/lib/employee/employee-mutation/employee-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/employee/employee-mutation/employee-mutation.component.ts
@@ -16,9 +16,10 @@ import { BasicInfoFormComponent } from '../../user/forms';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-employee-mutation',
- templateUrl: 'employee-mutation.component.html',
- styleUrls: ['employee-mutation.component.scss']
+ selector: 'ga-employee-mutation',
+ templateUrl: 'employee-mutation.component.html',
+ styleUrls: ['employee-mutation.component.scss'],
+ standalone: false
})
export class EmployeeMutationComponent implements OnInit, AfterViewInit {
@ViewChild('userBasicInfo') userBasicInfo: BasicInfoFormComponent;
diff --git a/packages/ui-core/shared/src/lib/employee/employee-rates/employee-rates.component.scss b/packages/ui-core/shared/src/lib/employee/employee-rates/employee-rates.component.scss
index 8c6d199193d..835a2f55493 100644
--- a/packages/ui-core/shared/src/lib/employee/employee-rates/employee-rates.component.scss
+++ b/packages/ui-core/shared/src/lib/employee/employee-rates/employee-rates.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
.employee-form {
height: 100%;
diff --git a/packages/ui-core/shared/src/lib/employee/employee-rates/employee-rates.component.ts b/packages/ui-core/shared/src/lib/employee/employee-rates/employee-rates.component.ts
index bc57fac59e9..baa2e6fc1d9 100644
--- a/packages/ui-core/shared/src/lib/employee/employee-rates/employee-rates.component.ts
+++ b/packages/ui-core/shared/src/lib/employee/employee-rates/employee-rates.component.ts
@@ -8,9 +8,10 @@ import { CandidateStore, EmployeeStore } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-employee-rates',
- templateUrl: 'employee-rates.component.html',
- styleUrls: ['employee-rates.component.scss']
+ selector: 'ga-employee-rates',
+ templateUrl: 'employee-rates.component.html',
+ styleUrls: ['employee-rates.component.scss'],
+ standalone: false
})
export class EmployeeRatesComponent implements OnInit, OnDestroy {
@Input() public isEmployee: boolean;
diff --git a/packages/ui-core/shared/src/lib/employee/employee-start-work/employee-start-work.component.scss b/packages/ui-core/shared/src/lib/employee/employee-start-work/employee-start-work.component.scss
index ea42c8e0b50..a7f175a69f7 100644
--- a/packages/ui-core/shared/src/lib/employee/employee-start-work/employee-start-work.component.scss
+++ b/packages/ui-core/shared/src/lib/employee/employee-start-work/employee-start-work.component.scss
@@ -1 +1 @@
-@import "../employee-end-work-popup/employee-end-work.component";
+@forward "../employee-end-work-popup/employee-end-work.component";
diff --git a/packages/ui-core/shared/src/lib/employee/employee-start-work/employee-start-work.component.ts b/packages/ui-core/shared/src/lib/employee/employee-start-work/employee-start-work.component.ts
index 5a387c9df8d..da21150e570 100644
--- a/packages/ui-core/shared/src/lib/employee/employee-start-work/employee-start-work.component.ts
+++ b/packages/ui-core/shared/src/lib/employee/employee-start-work/employee-start-work.component.ts
@@ -3,9 +3,10 @@ import { NbDialogRef } from '@nebular/theme';
import { EmployeeEndWorkComponent } from '../employee-end-work-popup/employee-end-work.component';
@Component({
- selector: 'ga-employee-start-work',
- templateUrl: './employee-start-work.component.html',
- styleUrls: ['./employee-start-work.component.scss']
+ selector: 'ga-employee-start-work',
+ templateUrl: './employee-start-work.component.html',
+ styleUrls: ['./employee-start-work.component.scss'],
+ standalone: false
})
export class EmployeeStartWorkComponent {
startWorkValue: Date;
diff --git a/packages/ui-core/shared/src/lib/entity-with-members-card/entity-with-members-card.component.scss b/packages/ui-core/shared/src/lib/entity-with-members-card/entity-with-members-card.component.scss
index 9dd51d2383a..1407401ccf6 100644
--- a/packages/ui-core/shared/src/lib/entity-with-members-card/entity-with-members-card.component.scss
+++ b/packages/ui-core/shared/src/lib/entity-with-members-card/entity-with-members-card.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host .card-body {
margin: 10px;
@@ -58,4 +58,4 @@
display: flex;
width: 200px;
flex-wrap: wrap;
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/entity-with-members-card/entity-with-members-card.component.ts b/packages/ui-core/shared/src/lib/entity-with-members-card/entity-with-members-card.component.ts
index 99bf0efbf44..0d83ca97434 100644
--- a/packages/ui-core/shared/src/lib/entity-with-members-card/entity-with-members-card.component.ts
+++ b/packages/ui-core/shared/src/lib/entity-with-members-card/entity-with-members-card.component.ts
@@ -5,9 +5,10 @@ import {
} from '@gauzy/contracts';
@Component({
- selector: 'ga-entity-with-members-card',
- templateUrl: './entity-with-members-card.component.html',
- styleUrls: ['./entity-with-members-card.component.scss']
+ selector: 'ga-entity-with-members-card',
+ templateUrl: './entity-with-members-card.component.html',
+ styleUrls: ['./entity-with-members-card.component.scss'],
+ standalone: false
})
export class EntityWithMembersCardComponent {
@Input() entityWithMembers: IBaseEntityWithMembers;
diff --git a/packages/ui-core/shared/src/lib/equipment/equipment-mutation.component.scss b/packages/ui-core/shared/src/lib/equipment/equipment-mutation.component.scss
index 49899fc7ee3..dddda473b83 100644
--- a/packages/ui-core/shared/src/lib/equipment/equipment-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/equipment/equipment-mutation.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.equipment-img {
display: flex;
@@ -34,4 +34,4 @@
background-color: nb-theme(gauzy-card-1);
width: 645px;
}
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/equipment/equipment-mutation.component.ts b/packages/ui-core/shared/src/lib/equipment/equipment-mutation.component.ts
index 82c96664aff..3f2ffe132e7 100644
--- a/packages/ui-core/shared/src/lib/equipment/equipment-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/equipment/equipment-mutation.component.ts
@@ -13,9 +13,10 @@ import { SelectAssetComponent } from '../select-asset-modal/select-asset.compone
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-equipment-mutation',
- templateUrl: './equipment-mutation.component.html',
- styleUrls: ['./equipment-mutation.component.scss']
+ selector: 'ngx-equipment-mutation',
+ templateUrl: './equipment-mutation.component.html',
+ styleUrls: ['./equipment-mutation.component.scss'],
+ standalone: false
})
export class EquipmentMutationComponent extends TranslationBaseComponent implements OnInit {
form: UntypedFormGroup;
diff --git a/packages/ui-core/shared/src/lib/equipment/equipment-sharing-policy/equipment-sharing-policy-mutation.component.scss b/packages/ui-core/shared/src/lib/equipment/equipment-sharing-policy/equipment-sharing-policy-mutation.component.scss
index 08e880c76fa..3ce1092850a 100644
--- a/packages/ui-core/shared/src/lib/equipment/equipment-sharing-policy/equipment-sharing-policy-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/equipment/equipment-sharing-policy/equipment-sharing-policy-mutation.component.scss
@@ -1,4 +1,4 @@
-@import '../equipment-sharing/equipment-sharing-mutation.component.scss';
+@forward '../equipment-sharing/equipment-sharing-mutation.component';
:host .main {
width: 445px;
diff --git a/packages/ui-core/shared/src/lib/equipment/equipment-sharing-policy/equipment-sharing-policy-mutation.component.ts b/packages/ui-core/shared/src/lib/equipment/equipment-sharing-policy/equipment-sharing-policy-mutation.component.ts
index fbf435abea4..3cf196ddb60 100644
--- a/packages/ui-core/shared/src/lib/equipment/equipment-sharing-policy/equipment-sharing-policy-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/equipment/equipment-sharing-policy/equipment-sharing-policy-mutation.component.ts
@@ -7,9 +7,10 @@ import { TranslateService } from '@ngx-translate/core';
import { EquipmentSharingPolicyService } from '@gauzy/ui-core/core';
@Component({
- selector: 'ngx-equipment-sharing-policy-mutation',
- templateUrl: './equipment-sharing-policy-mutation.component.html',
- styleUrls: ['./equipment-sharing-policy-mutation.component.scss']
+ selector: 'ngx-equipment-sharing-policy-mutation',
+ templateUrl: './equipment-sharing-policy-mutation.component.html',
+ styleUrls: ['./equipment-sharing-policy-mutation.component.scss'],
+ standalone: false
})
export class EquipmentSharingPolicyMutationComponent extends TranslationBaseComponent implements OnInit {
equipmentSharingPolicy: IEquipmentSharingPolicy;
diff --git a/packages/ui-core/shared/src/lib/equipment/equipment-sharing/equipment-sharing-mutation.component.scss b/packages/ui-core/shared/src/lib/equipment/equipment-sharing/equipment-sharing-mutation.component.scss
index 67e11ad82a6..1b2dc2558ae 100644
--- a/packages/ui-core/shared/src/lib/equipment/equipment-sharing/equipment-sharing-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/equipment/equipment-sharing/equipment-sharing-mutation.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
:host {
nb-card {
@@ -50,4 +50,4 @@ nb-radio-group {
.main {
min-width: 800px;
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/equipment/equipment-sharing/equipment-sharing-mutation.component.ts b/packages/ui-core/shared/src/lib/equipment/equipment-sharing/equipment-sharing-mutation.component.ts
index 520710d5a4f..6d7fe99a214 100644
--- a/packages/ui-core/shared/src/lib/equipment/equipment-sharing/equipment-sharing-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/equipment/equipment-sharing/equipment-sharing-mutation.component.ts
@@ -30,9 +30,10 @@ import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-equipment-sharing-mutation',
- templateUrl: './equipment-sharing-mutation.component.html',
- styleUrls: ['./equipment-sharing-mutation.component.scss']
+ selector: 'ngx-equipment-sharing-mutation',
+ templateUrl: './equipment-sharing-mutation.component.html',
+ styleUrls: ['./equipment-sharing-mutation.component.scss'],
+ standalone: false
})
export class EquipmentSharingMutationComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
constructor(
diff --git a/packages/ui-core/shared/src/lib/expenses/expense-category-select/expense-category-select.component.ts b/packages/ui-core/shared/src/lib/expenses/expense-category-select/expense-category-select.component.ts
index c7a39fc51b0..dd4a7d889fa 100644
--- a/packages/ui-core/shared/src/lib/expenses/expense-category-select/expense-category-select.component.ts
+++ b/packages/ui-core/shared/src/lib/expenses/expense-category-select/expense-category-select.component.ts
@@ -10,16 +10,17 @@ import { removeDuplicatesByProperty } from '@gauzy/ui-core/common';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-expense-category-select',
- templateUrl: './expense-category-select.component.html',
- styleUrls: ['./expense-category-select.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => ExpenseCategorySelectComponent),
- multi: true
- }
- ]
+ selector: 'ga-expense-category-select',
+ templateUrl: './expense-category-select.component.html',
+ styleUrls: ['./expense-category-select.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => ExpenseCategorySelectComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class ExpenseCategorySelectComponent implements OnInit, OnDestroy {
categories: IExpenseCategory[] = [];
diff --git a/packages/ui-core/shared/src/lib/expenses/expenses-mutation/attach-receipt/attach-receipt.component.scss b/packages/ui-core/shared/src/lib/expenses/expenses-mutation/attach-receipt/attach-receipt.component.scss
index e05807a5021..71ad464ae86 100644
--- a/packages/ui-core/shared/src/lib/expenses/expenses-mutation/attach-receipt/attach-receipt.component.scss
+++ b/packages/ui-core/shared/src/lib/expenses/expenses-mutation/attach-receipt/attach-receipt.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.receipt-image {
width: 600px;
diff --git a/packages/ui-core/shared/src/lib/expenses/expenses-mutation/attach-receipt/attach-receipt.component.ts b/packages/ui-core/shared/src/lib/expenses/expenses-mutation/attach-receipt/attach-receipt.component.ts
index 7d3645bcb4f..3d54ee16411 100644
--- a/packages/ui-core/shared/src/lib/expenses/expenses-mutation/attach-receipt/attach-receipt.component.ts
+++ b/packages/ui-core/shared/src/lib/expenses/expenses-mutation/attach-receipt/attach-receipt.component.ts
@@ -3,9 +3,10 @@ import { NbDialogRef } from '@nebular/theme';
import { IImageAsset } from '@gauzy/contracts';
@Component({
- selector: 'ga-attach-receipt',
- templateUrl: './attach-receipt.component.html',
- styleUrls: ['./attach-receipt.component.scss']
+ selector: 'ga-attach-receipt',
+ templateUrl: './attach-receipt.component.html',
+ styleUrls: ['./attach-receipt.component.scss'],
+ standalone: false
})
export class AttachReceiptComponent implements OnInit {
constructor(private dialogRef: NbDialogRef) { }
diff --git a/packages/ui-core/shared/src/lib/expenses/expenses-mutation/expenses-mutation.component.scss b/packages/ui-core/shared/src/lib/expenses/expenses-mutation/expenses-mutation.component.scss
index 8637d11a8c5..45ab360306a 100644
--- a/packages/ui-core/shared/src/lib/expenses/expenses-mutation/expenses-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/expenses/expenses-mutation/expenses-mutation.component.scss
@@ -1,4 +1,5 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
+
.main {
height: auto;
width: auto;
diff --git a/packages/ui-core/shared/src/lib/expenses/expenses-mutation/expenses-mutation.component.ts b/packages/ui-core/shared/src/lib/expenses/expenses-mutation/expenses-mutation.component.ts
index 92b187c890f..e162f0bc52e 100644
--- a/packages/ui-core/shared/src/lib/expenses/expenses-mutation/expenses-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/expenses/expenses-mutation/expenses-mutation.component.ts
@@ -25,9 +25,10 @@ import { ALL_EMPLOYEES_SELECTED } from '../../selectors/employee/default-employe
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-expenses-mutation',
- templateUrl: './expenses-mutation.component.html',
- styleUrls: ['./expenses-mutation.component.scss']
+ selector: 'ga-expenses-mutation',
+ templateUrl: './expenses-mutation.component.html',
+ styleUrls: ['./expenses-mutation.component.scss'],
+ standalone: false
})
export class ExpensesMutationComponent extends TranslationBaseComponent implements AfterViewInit, OnInit, OnDestroy {
FormHelpers: typeof FormHelpers = FormHelpers;
diff --git a/packages/ui-core/shared/src/lib/expenses/recurring-expense-block/recurring-expense-block.component.scss b/packages/ui-core/shared/src/lib/expenses/recurring-expense-block/recurring-expense-block.component.scss
index 50b96267bc8..d45ff27b765 100644
--- a/packages/ui-core/shared/src/lib/expenses/recurring-expense-block/recurring-expense-block.component.scss
+++ b/packages/ui-core/shared/src/lib/expenses/recurring-expense-block/recurring-expense-block.component.scss
@@ -1,4 +1,4 @@
-@import 'var';
+@use 'var' as *;
:host .setting-block {
@@ -156,4 +156,4 @@
.setting-block {
width: fit-content;
}
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/expenses/recurring-expense-block/recurring-expense-block.component.ts b/packages/ui-core/shared/src/lib/expenses/recurring-expense-block/recurring-expense-block.component.ts
index e66ab1fba83..f500fb590c2 100644
--- a/packages/ui-core/shared/src/lib/expenses/recurring-expense-block/recurring-expense-block.component.ts
+++ b/packages/ui-core/shared/src/lib/expenses/recurring-expense-block/recurring-expense-block.component.ts
@@ -11,9 +11,10 @@ import {
import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@Component({
- selector: 'ga-recurring-expense-block',
- templateUrl: './recurring-expense-block.component.html',
- styleUrls: ['./recurring-expense-block.component.scss']
+ selector: 'ga-recurring-expense-block',
+ templateUrl: './recurring-expense-block.component.html',
+ styleUrls: ['./recurring-expense-block.component.scss'],
+ standalone: false
})
export class RecurringExpenseBlockComponent extends TranslationBaseComponent implements OnInit {
@Input()
diff --git a/packages/ui-core/shared/src/lib/expenses/recurring-expense-delete-confirmation/recurring-expense-delete-confirmation.component.scss b/packages/ui-core/shared/src/lib/expenses/recurring-expense-delete-confirmation/recurring-expense-delete-confirmation.component.scss
index 41a8f5591c8..086b78d32c8 100644
--- a/packages/ui-core/shared/src/lib/expenses/recurring-expense-delete-confirmation/recurring-expense-delete-confirmation.component.scss
+++ b/packages/ui-core/shared/src/lib/expenses/recurring-expense-delete-confirmation/recurring-expense-delete-confirmation.component.scss
@@ -1,7 +1,7 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
:host {
nb-card {
background-color: nb-theme(gauzy-card-1);
}
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/expenses/recurring-expense-delete-confirmation/recurring-expense-delete-confirmation.component.ts b/packages/ui-core/shared/src/lib/expenses/recurring-expense-delete-confirmation/recurring-expense-delete-confirmation.component.ts
index f053dac00ba..0880500a9dd 100644
--- a/packages/ui-core/shared/src/lib/expenses/recurring-expense-delete-confirmation/recurring-expense-delete-confirmation.component.ts
+++ b/packages/ui-core/shared/src/lib/expenses/recurring-expense-delete-confirmation/recurring-expense-delete-confirmation.component.ts
@@ -3,8 +3,8 @@ import { NbDialogRef } from '@nebular/theme';
import { RecurringExpenseDeletionEnum } from '@gauzy/contracts';
@Component({
- selector: 'ga-delete-confirmation',
- template: `
+ selector: 'ga-delete-confirmation',
+ template: `
`,
- styleUrls: ['./recurring-expense-delete-confirmation.component.scss']
+ styleUrls: ['./recurring-expense-delete-confirmation.component.scss'],
+ standalone: false
})
export class RecurringExpenseDeleteConfirmationComponent {
recordType: string;
diff --git a/packages/ui-core/shared/src/lib/expenses/recurring-expense-history/recurring-expense-history.component.scss b/packages/ui-core/shared/src/lib/expenses/recurring-expense-history/recurring-expense-history.component.scss
index cff8a4c389c..fa96c90443b 100644
--- a/packages/ui-core/shared/src/lib/expenses/recurring-expense-history/recurring-expense-history.component.scss
+++ b/packages/ui-core/shared/src/lib/expenses/recurring-expense-history/recurring-expense-history.component.scss
@@ -1,4 +1,4 @@
-@import 'var';
+@use 'var' as *;
.recurring-expense-history {
background-color: transparent;
@@ -33,4 +33,4 @@
cursor: pointer;
justify-content: space-between;
}
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/expenses/recurring-expense-history/recurring-expense-history.component.ts b/packages/ui-core/shared/src/lib/expenses/recurring-expense-history/recurring-expense-history.component.ts
index 07dbc30f69c..21d67e00db0 100644
--- a/packages/ui-core/shared/src/lib/expenses/recurring-expense-history/recurring-expense-history.component.ts
+++ b/packages/ui-core/shared/src/lib/expenses/recurring-expense-history/recurring-expense-history.component.ts
@@ -9,9 +9,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-recurring-expense-history',
- templateUrl: './recurring-expense-history.component.html',
- styleUrls: ['./recurring-expense-history.component.scss']
+ selector: 'ga-recurring-expense-history',
+ templateUrl: './recurring-expense-history.component.html',
+ styleUrls: ['./recurring-expense-history.component.scss'],
+ standalone: false
})
export class RecurringExpenseHistoryComponent extends TranslationBaseComponent implements OnInit {
@Input()
diff --git a/packages/ui-core/shared/src/lib/expenses/recurring-expense-mutation/recurring-expense-mutation.component.scss b/packages/ui-core/shared/src/lib/expenses/recurring-expense-mutation/recurring-expense-mutation.component.scss
index 65a9591b76a..dac46ce2570 100644
--- a/packages/ui-core/shared/src/lib/expenses/recurring-expense-mutation/recurring-expense-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/expenses/recurring-expense-mutation/recurring-expense-mutation.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs';
nb-card-body {
width: 500px;
@@ -10,4 +10,4 @@ nb-card-body {
nb-card-body {
background-color: nb-theme(gauzy-card-1);
}
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/expenses/recurring-expense-mutation/recurring-expense-mutation.component.ts b/packages/ui-core/shared/src/lib/expenses/recurring-expense-mutation/recurring-expense-mutation.component.ts
index 72652c9a28b..34b5eb30a90 100644
--- a/packages/ui-core/shared/src/lib/expenses/recurring-expense-mutation/recurring-expense-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/expenses/recurring-expense-mutation/recurring-expense-mutation.component.ts
@@ -32,9 +32,10 @@ import { DEFAULT_CATEGORIES } from './recurring-expense.setting';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-recurring-expense-mutation',
- templateUrl: './recurring-expense-mutation.component.html',
- styleUrls: ['./recurring-expense-mutation.component.scss']
+ selector: 'ga-recurring-expense-mutation',
+ templateUrl: './recurring-expense-mutation.component.html',
+ styleUrls: ['./recurring-expense-mutation.component.scss'],
+ standalone: false
})
export class RecurringExpenseMutationComponent
extends TranslationBaseComponent
diff --git a/packages/ui-core/shared/src/lib/faq/faq.component.scss b/packages/ui-core/shared/src/lib/faq/faq.component.scss
index bb70bb3fdf9..8a08f1108bd 100644
--- a/packages/ui-core/shared/src/lib/faq/faq.component.scss
+++ b/packages/ui-core/shared/src/lib/faq/faq.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
.faq {
width: 260px;
diff --git a/packages/ui-core/shared/src/lib/faq/faq.component.ts b/packages/ui-core/shared/src/lib/faq/faq.component.ts
index a9be54f74b9..f44f75a64aa 100644
--- a/packages/ui-core/shared/src/lib/faq/faq.component.ts
+++ b/packages/ui-core/shared/src/lib/faq/faq.component.ts
@@ -6,9 +6,10 @@ import { faqs } from './faq-setting';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-faq',
- templateUrl: './faq.component.html',
- styleUrls: ['./faq.component.scss']
+ selector: 'ngx-faq',
+ templateUrl: './faq.component.html',
+ styleUrls: ['./faq.component.scss'],
+ standalone: false
})
export class NgxFaqComponent implements OnInit, OnDestroy {
private _faqs$: BehaviorSubject = new BehaviorSubject([]);
diff --git a/packages/ui-core/shared/src/lib/feature-toggle/feature-toggle.component.scss b/packages/ui-core/shared/src/lib/feature-toggle/feature-toggle.component.scss
index 27fa5e65265..fe53fcaa8b1 100644
--- a/packages/ui-core/shared/src/lib/feature-toggle/feature-toggle.component.scss
+++ b/packages/ui-core/shared/src/lib/feature-toggle/feature-toggle.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host {
header {
diff --git a/packages/ui-core/shared/src/lib/feature-toggle/feature-toggle.component.ts b/packages/ui-core/shared/src/lib/feature-toggle/feature-toggle.component.ts
index cf206951970..8d7f34d7a3f 100644
--- a/packages/ui-core/shared/src/lib/feature-toggle/feature-toggle.component.ts
+++ b/packages/ui-core/shared/src/lib/feature-toggle/feature-toggle.component.ts
@@ -15,9 +15,10 @@ import { CountdownConfirmationComponent } from '../user/forms';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-feature-toggle',
- templateUrl: './feature-toggle.component.html',
- styleUrls: ['./feature-toggle.component.scss']
+ selector: 'ga-feature-toggle',
+ templateUrl: './feature-toggle.component.html',
+ styleUrls: ['./feature-toggle.component.scss'],
+ standalone: false
})
export class FeatureToggleComponent extends TranslationBaseComponent implements OnInit, OnChanges {
@Input() organization: IOrganization;
diff --git a/packages/ui-core/shared/src/lib/file-uploader-input/file-uploader-input.component.scss b/packages/ui-core/shared/src/lib/file-uploader-input/file-uploader-input.component.scss
index b6c83c51f1e..395f10f626f 100644
--- a/packages/ui-core/shared/src/lib/file-uploader-input/file-uploader-input.component.scss
+++ b/packages/ui-core/shared/src/lib/file-uploader-input/file-uploader-input.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes';
.file-uploader-container {
padding: 0;
@@ -25,4 +25,4 @@
line-height: 16px;
letter-spacing: -0.009em;
}
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/file-uploader-input/file-uploader-input.component.ts b/packages/ui-core/shared/src/lib/file-uploader-input/file-uploader-input.component.ts
index db468f44667..ab4ce2e977d 100644
--- a/packages/ui-core/shared/src/lib/file-uploader-input/file-uploader-input.component.ts
+++ b/packages/ui-core/shared/src/lib/file-uploader-input/file-uploader-input.component.ts
@@ -5,9 +5,10 @@ import { Store } from '@gauzy/ui-core/core';
import { ImageUploaderBaseComponent } from '../image-uploader/image-uploader-base.component';
@Component({
- selector: 'ngx-file-uploader-input',
- templateUrl: './file-uploader-input.component.html',
- styleUrls: ['./file-uploader-input.component.scss']
+ selector: 'ngx-file-uploader-input',
+ templateUrl: './file-uploader-input.component.html',
+ styleUrls: ['./file-uploader-input.component.scss'],
+ standalone: false
})
export class FileUploaderInputComponent extends ImageUploaderBaseComponent implements AfterViewInit, OnInit {
public inputControl = new FormControl();
diff --git a/packages/ui-core/shared/src/lib/forms/location/location-form.component.ts b/packages/ui-core/shared/src/lib/forms/location/location-form.component.ts
index 7d9caf3a897..0d20b735094 100644
--- a/packages/ui-core/shared/src/lib/forms/location/location-form.component.ts
+++ b/packages/ui-core/shared/src/lib/forms/location/location-form.component.ts
@@ -24,9 +24,10 @@ import { FormHelpers } from '../helpers';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-location-form',
- styleUrls: ['./location-form.component.scss'],
- templateUrl: 'location-form.component.html'
+ selector: 'ga-location-form',
+ styleUrls: ['./location-form.component.scss'],
+ templateUrl: 'location-form.component.html',
+ standalone: false
})
export class LocationFormComponent extends TranslationBaseComponent implements AfterViewInit {
FormHelpers: typeof FormHelpers = FormHelpers;
diff --git a/packages/ui-core/shared/src/lib/forms/maps/leaflet/leaflet.component.scss b/packages/ui-core/shared/src/lib/forms/maps/leaflet/leaflet.component.scss
index 0719cfa8c29..24697f74e86 100644
--- a/packages/ui-core/shared/src/lib/forms/maps/leaflet/leaflet.component.scss
+++ b/packages/ui-core/shared/src/lib/forms/maps/leaflet/leaflet.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
::ng-deep .leaflet-container {
width: 100% !important;
height: calc(100vh - 30rem) !important;
diff --git a/packages/ui-core/shared/src/lib/forms/maps/leaflet/leaflet.component.ts b/packages/ui-core/shared/src/lib/forms/maps/leaflet/leaflet.component.ts
index 2be170ef246..c3f8da177a5 100644
--- a/packages/ui-core/shared/src/lib/forms/maps/leaflet/leaflet.component.ts
+++ b/packages/ui-core/shared/src/lib/forms/maps/leaflet/leaflet.component.ts
@@ -5,9 +5,10 @@ import { environment } from '@gauzy/ui-config';
import { convertPrecisionFloatDigit } from '@gauzy/ui-core/common';
@Component({
- selector: 'ga-leaflet-map',
- templateUrl: './leaflet.component.html',
- styleUrls: ['./leaflet.component.scss']
+ selector: 'ga-leaflet-map',
+ templateUrl: './leaflet.component.html',
+ styleUrls: ['./leaflet.component.scss'],
+ standalone: false
})
export class LeafletMapComponent implements AfterViewInit {
public loaded: boolean;
diff --git a/packages/ui-core/shared/src/lib/forms/maps/leaflet/leaflet.module.ts b/packages/ui-core/shared/src/lib/forms/maps/leaflet/leaflet.module.ts
index c99f0607dd8..332c6edcb94 100644
--- a/packages/ui-core/shared/src/lib/forms/maps/leaflet/leaflet.module.ts
+++ b/packages/ui-core/shared/src/lib/forms/maps/leaflet/leaflet.module.ts
@@ -1,7 +1,7 @@
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
+import { LeafletModule } from '@bluehalo/ngx-leaflet';
import { NbCardModule } from '@nebular/theme';
-import { LeafletModule } from '@asymmetrik/ngx-leaflet';
import { TranslateModule } from '@ngx-translate/core';
import { LeafletMapComponent } from './leaflet.component';
diff --git a/packages/ui-core/shared/src/lib/gallery/gallery.component.scss b/packages/ui-core/shared/src/lib/gallery/gallery.component.scss
index e804aa2e386..cc2e1999385 100644
--- a/packages/ui-core/shared/src/lib/gallery/gallery.component.scss
+++ b/packages/ui-core/shared/src/lib/gallery/gallery.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host {
.gallery-inner {
height: 100%;
diff --git a/packages/ui-core/shared/src/lib/gallery/gallery.component.ts b/packages/ui-core/shared/src/lib/gallery/gallery.component.ts
index 6c96fef8b4d..855864c7711 100644
--- a/packages/ui-core/shared/src/lib/gallery/gallery.component.ts
+++ b/packages/ui-core/shared/src/lib/gallery/gallery.component.ts
@@ -24,10 +24,11 @@ export const fadeInOutAnimation = trigger('fadeInOut', [
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-gallery',
- templateUrl: './gallery.component.html',
- styleUrls: ['./gallery.component.scss'],
- animations: [fadeInOutAnimation]
+ selector: 'ngx-gallery',
+ templateUrl: './gallery.component.html',
+ styleUrls: ['./gallery.component.scss'],
+ animations: [fadeInOutAnimation],
+ standalone: false
})
export class GalleryComponent implements OnInit, OnDestroy {
public active_index: number;
diff --git a/packages/ui-core/shared/src/lib/gallery/gallery.directive.ts b/packages/ui-core/shared/src/lib/gallery/gallery.directive.ts
index 49b751f6d2a..b57655ff204 100644
--- a/packages/ui-core/shared/src/lib/gallery/gallery.directive.ts
+++ b/packages/ui-core/shared/src/lib/gallery/gallery.directive.ts
@@ -24,7 +24,8 @@ export interface GalleryItem {
}
@Directive({
- selector: '[ngxGallery]'
+ selector: '[ngxGallery]',
+ standalone: false
})
export class GalleryDirective implements OnDestroy, OnInit {
public disableClick: boolean = false;
diff --git a/packages/ui-core/shared/src/lib/gauzy-button-action/gauzy-button-action.component.scss b/packages/ui-core/shared/src/lib/gauzy-button-action/gauzy-button-action.component.scss
index d7e8720f7bb..f46bc7a1ae6 100644
--- a/packages/ui-core/shared/src/lib/gauzy-button-action/gauzy-button-action.component.scss
+++ b/packages/ui-core/shared/src/lib/gauzy-button-action/gauzy-button-action.component.scss
@@ -1,5 +1,5 @@
-@import 'var';
-@import 'gauzy/_gauzy-table.scss';
+@use 'var' as *;
+@use 'gauzy/_gauzy-table' as *;
:host .actions-container {
display: flex;
diff --git a/packages/ui-core/shared/src/lib/gauzy-button-action/gauzy-button-action.component.ts b/packages/ui-core/shared/src/lib/gauzy-button-action/gauzy-button-action.component.ts
index aa4384a950c..81742812ee1 100644
--- a/packages/ui-core/shared/src/lib/gauzy-button-action/gauzy-button-action.component.ts
+++ b/packages/ui-core/shared/src/lib/gauzy-button-action/gauzy-button-action.component.ts
@@ -2,9 +2,10 @@ import { Component, OnInit, Input, TemplateRef } from '@angular/core';
import { ComponentEnum } from '@gauzy/ui-core/common';
@Component({
- selector: 'ngx-gauzy-button-action',
- templateUrl: './gauzy-button-action.component.html',
- styleUrls: ['./gauzy-button-action.component.scss']
+ selector: 'ngx-gauzy-button-action',
+ templateUrl: './gauzy-button-action.component.html',
+ styleUrls: ['./gauzy-button-action.component.scss'],
+ standalone: false
})
export class GauzyButtonActionComponent implements OnInit {
@Input() isDisable: boolean = true;
diff --git a/packages/ui-core/shared/src/lib/goal/goal-custom-unit/goal-custom-unit-select.component.ts b/packages/ui-core/shared/src/lib/goal/goal-custom-unit/goal-custom-unit-select.component.ts
index d5403ca94b2..26112a83d74 100644
--- a/packages/ui-core/shared/src/lib/goal/goal-custom-unit/goal-custom-unit-select.component.ts
+++ b/packages/ui-core/shared/src/lib/goal/goal-custom-unit/goal-custom-unit-select.component.ts
@@ -7,9 +7,10 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-goal-custom-unit-select',
- templateUrl: './goal-custom-unit-select.component.html',
- styleUrls: ['./goal-custom-unit-select.component.scss']
+ selector: 'ga-goal-custom-unit-select',
+ templateUrl: './goal-custom-unit-select.component.html',
+ styleUrls: ['./goal-custom-unit-select.component.scss'],
+ standalone: false
})
export class GoalCustomUnitSelectComponent implements OnInit, OnDestroy {
@Input() parentFormGroup: UntypedFormGroup;
diff --git a/packages/ui-core/shared/src/lib/goal/goal-level-select/goal-level-select.component.ts b/packages/ui-core/shared/src/lib/goal/goal-level-select/goal-level-select.component.ts
index b9951f55391..dfb434874ac 100644
--- a/packages/ui-core/shared/src/lib/goal/goal-level-select/goal-level-select.component.ts
+++ b/packages/ui-core/shared/src/lib/goal/goal-level-select/goal-level-select.component.ts
@@ -5,9 +5,10 @@ import { Store } from '@gauzy/ui-core/core';
import { OrganizationTeamsService } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-goal-level-select',
- templateUrl: './goal-level-select.component.html',
- styleUrls: ['./goal-level-select.component.scss']
+ selector: 'ga-goal-level-select',
+ templateUrl: './goal-level-select.component.html',
+ styleUrls: ['./goal-level-select.component.scss'],
+ standalone: false
})
export class GoalLevelSelectComponent {
@Input() parentFormGroup: UntypedFormGroup;
diff --git a/packages/ui-core/shared/src/lib/goal/goal-templates/goal-templates.component.ts b/packages/ui-core/shared/src/lib/goal/goal-templates/goal-templates.component.ts
index f6f2ae426f6..7015d70eceb 100644
--- a/packages/ui-core/shared/src/lib/goal/goal-templates/goal-templates.component.ts
+++ b/packages/ui-core/shared/src/lib/goal/goal-templates/goal-templates.component.ts
@@ -9,9 +9,10 @@ import {
import { NbDialogRef } from '@nebular/theme';
@Component({
- selector: 'ga-goal-templates',
- templateUrl: './goal-templates.component.html',
- styleUrls: ['./goal-templates.component.scss']
+ selector: 'ga-goal-templates',
+ templateUrl: './goal-templates.component.html',
+ styleUrls: ['./goal-templates.component.scss'],
+ standalone: false
})
export class GoalTemplatesComponent implements OnInit {
goalTemplateForm: UntypedFormGroup;
diff --git a/packages/ui-core/shared/src/lib/image-asset/image-asset.component.scss b/packages/ui-core/shared/src/lib/image-asset/image-asset.component.scss
index 90e1d648e9b..2f3beafc3ce 100644
--- a/packages/ui-core/shared/src/lib/image-asset/image-asset.component.scss
+++ b/packages/ui-core/shared/src/lib/image-asset/image-asset.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
img {
width: 100%;
@@ -19,4 +19,4 @@ label {
.main {
background-color: var(--gauzy-card-1);
width: 645px;
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/image-asset/image-asset.component.ts b/packages/ui-core/shared/src/lib/image-asset/image-asset.component.ts
index b46d7ab7bdf..295c236095c 100644
--- a/packages/ui-core/shared/src/lib/image-asset/image-asset.component.ts
+++ b/packages/ui-core/shared/src/lib/image-asset/image-asset.component.ts
@@ -9,9 +9,10 @@ import { ImageAssetService, ToastrService } from '@gauzy/ui-core/core';
@UntilDestroy()
@Component({
- selector: 'ga-image-asset',
- templateUrl: './image-asset.component.html',
- styleUrls: ['./image-asset.component.scss']
+ selector: 'ga-image-asset',
+ templateUrl: './image-asset.component.html',
+ styleUrls: ['./image-asset.component.scss'],
+ standalone: false
})
export class ImageAssetComponent extends TranslationBaseComponent implements OnInit {
form: UntypedFormGroup;
diff --git a/packages/ui-core/shared/src/lib/image-uploader/image-uploader-base.component.ts b/packages/ui-core/shared/src/lib/image-uploader/image-uploader-base.component.ts
index 0fdaa4dd335..4709ba444fe 100644
--- a/packages/ui-core/shared/src/lib/image-uploader/image-uploader-base.component.ts
+++ b/packages/ui-core/shared/src/lib/image-uploader/image-uploader-base.component.ts
@@ -10,7 +10,8 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- template: ''
+ template: '',
+ standalone: false
})
export class ImageUploaderBaseComponent {
public organization: IOrganization;
diff --git a/packages/ui-core/shared/src/lib/image-uploader/image-uploader.component.ts b/packages/ui-core/shared/src/lib/image-uploader/image-uploader.component.ts
index 19c7da27af9..fe8c159d6fc 100644
--- a/packages/ui-core/shared/src/lib/image-uploader/image-uploader.component.ts
+++ b/packages/ui-core/shared/src/lib/image-uploader/image-uploader.component.ts
@@ -9,8 +9,8 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy()
@Component({
- selector: 'ngx-image-uploader',
- template: `
+ selector: 'ngx-image-uploader',
+ template: `
`,
- styleUrls: ['./image-uploader.component.scss']
+ styleUrls: ['./image-uploader.component.scss'],
+ standalone: false
})
export class ImageUploaderComponent implements AfterViewInit, OnInit {
public organization: IOrganization;
diff --git a/packages/ui-core/shared/src/lib/income/income-mutation/income-mutation.component.scss b/packages/ui-core/shared/src/lib/income/income-mutation/income-mutation.component.scss
index 8f1486555b6..26bf1528009 100644
--- a/packages/ui-core/shared/src/lib/income/income-mutation/income-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/income/income-mutation/income-mutation.component.scss
@@ -1,4 +1,5 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
+
.main {
.body {
width: 605px;
diff --git a/packages/ui-core/shared/src/lib/income/income-mutation/income-mutation.component.ts b/packages/ui-core/shared/src/lib/income/income-mutation/income-mutation.component.ts
index 670df8f0611..11abb742cd4 100644
--- a/packages/ui-core/shared/src/lib/income/income-mutation/income-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/income/income-mutation/income-mutation.component.ts
@@ -12,9 +12,10 @@ import { FormHelpers } from '../../forms/helpers';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-income-mutation',
- templateUrl: './income-mutation.component.html',
- styleUrls: ['./income-mutation.component.scss']
+ selector: 'ngx-income-mutation',
+ templateUrl: './income-mutation.component.html',
+ styleUrls: ['./income-mutation.component.scss'],
+ standalone: false
})
export class IncomeMutationComponent extends TranslationBaseComponent implements AfterViewInit, OnInit {
FormHelpers: typeof FormHelpers = FormHelpers;
diff --git a/packages/ui-core/shared/src/lib/integrations/github/repository-selector/repository-selector.component.ts b/packages/ui-core/shared/src/lib/integrations/github/repository-selector/repository-selector.component.ts
index 28c76a60914..89884b43ba4 100644
--- a/packages/ui-core/shared/src/lib/integrations/github/repository-selector/repository-selector.component.ts
+++ b/packages/ui-core/shared/src/lib/integrations/github/repository-selector/repository-selector.component.ts
@@ -9,16 +9,17 @@ import { ErrorHandlingService, GithubService, Store } from '@gauzy/ui-core/core'
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-github-repository-selector',
- templateUrl: './repository-selector.component.html',
- styleUrls: ['./repository-selector.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => RepositorySelectorComponent),
- multi: true
- }
- ]
+ selector: 'ngx-github-repository-selector',
+ templateUrl: './repository-selector.component.html',
+ styleUrls: ['./repository-selector.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => RepositorySelectorComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class RepositorySelectorComponent implements OnInit, OnDestroy {
public preSelected: boolean = false;
diff --git a/packages/ui-core/shared/src/lib/invite/forms/email-invite-form/email-invite-form.component.scss b/packages/ui-core/shared/src/lib/invite/forms/email-invite-form/email-invite-form.component.scss
index 5328e1759f8..3b275ed81ee 100644
--- a/packages/ui-core/shared/src/lib/invite/forms/email-invite-form/email-invite-form.component.scss
+++ b/packages/ui-core/shared/src/lib/invite/forms/email-invite-form/email-invite-form.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
@include nb-install-component {
.remove-icon {
diff --git a/packages/ui-core/shared/src/lib/invite/forms/email-invite-form/email-invite-form.component.ts b/packages/ui-core/shared/src/lib/invite/forms/email-invite-form/email-invite-form.component.ts
index 25aae86c924..82f770e5725 100644
--- a/packages/ui-core/shared/src/lib/invite/forms/email-invite-form/email-invite-form.component.ts
+++ b/packages/ui-core/shared/src/lib/invite/forms/email-invite-form/email-invite-form.component.ts
@@ -25,9 +25,10 @@ import { FormHelpers } from '../../../forms/helpers';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-email-invite-form',
- templateUrl: 'email-invite-form.component.html',
- styleUrls: ['email-invite-form.component.scss']
+ selector: 'ga-email-invite-form',
+ templateUrl: 'email-invite-form.component.html',
+ styleUrls: ['email-invite-form.component.scss'],
+ standalone: false
})
export class EmailInviteFormComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
FormHelpers: typeof FormHelpers = FormHelpers;
diff --git a/packages/ui-core/shared/src/lib/invite/invite-mutation/invite-mutation.component.scss b/packages/ui-core/shared/src/lib/invite/invite-mutation/invite-mutation.component.scss
index dd1db29c57d..6b8d9af3789 100644
--- a/packages/ui-core/shared/src/lib/invite/invite-mutation/invite-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/invite/invite-mutation/invite-mutation.component.scss
@@ -1,5 +1,5 @@
-@import 'var';
-@import 'gauzy/_gauzy-dialogs';
+@use 'var' as *;
+@use 'gauzy/_gauzy-dialogs' as *;
@include nb-install-component() {
nb-card {
diff --git a/packages/ui-core/shared/src/lib/invite/invite-mutation/invite-mutation.component.ts b/packages/ui-core/shared/src/lib/invite/invite-mutation/invite-mutation.component.ts
index d87472c2ae8..106a7d91b4f 100644
--- a/packages/ui-core/shared/src/lib/invite/invite-mutation/invite-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/invite/invite-mutation/invite-mutation.component.ts
@@ -25,9 +25,10 @@ import { EmailInviteFormComponent } from '../forms/email-invite-form/email-invit
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-invite-mutation',
- templateUrl: './invite-mutation.component.html',
- styleUrls: ['./invite-mutation.component.scss']
+ selector: 'ga-invite-mutation',
+ templateUrl: './invite-mutation.component.html',
+ styleUrls: ['./invite-mutation.component.scss'],
+ standalone: false
})
export class InviteMutationComponent extends TranslationBaseComponent implements OnInit {
/*
diff --git a/packages/ui-core/shared/src/lib/invite/invites/client-names/client-names.component.scss b/packages/ui-core/shared/src/lib/invite/invites/client-names/client-names.component.scss
index a2cf335d53b..8d5125a8ab8 100644
--- a/packages/ui-core/shared/src/lib/invite/invites/client-names/client-names.component.scss
+++ b/packages/ui-core/shared/src/lib/invite/invites/client-names/client-names.component.scss
@@ -1,5 +1,5 @@
-@import 'themes';
-@import '@shared/_contact-links';
+@use 'themes' as *;
+@forward '@shared/_contact-links';
@include nb-install-component() {
.client-badge {
diff --git a/packages/ui-core/shared/src/lib/invite/invites/client-names/client-names.component.ts b/packages/ui-core/shared/src/lib/invite/invites/client-names/client-names.component.ts
index 6b352bc4002..08ff53a81e0 100644
--- a/packages/ui-core/shared/src/lib/invite/invites/client-names/client-names.component.ts
+++ b/packages/ui-core/shared/src/lib/invite/invites/client-names/client-names.component.ts
@@ -1,7 +1,7 @@
import { Component, Input } from '@angular/core';
@Component({
- template: `
+ template: `
`,
- styleUrls: ['./client-names.component.scss']
+ styleUrls: ['./client-names.component.scss'],
+ standalone: false
})
export class ClientNamesComponent {
@Input()
diff --git a/packages/ui-core/shared/src/lib/invite/invites/department-names/department-names.component.scss b/packages/ui-core/shared/src/lib/invite/invites/department-names/department-names.component.scss
index 54b64d6343a..5589347f8af 100644
--- a/packages/ui-core/shared/src/lib/invite/invites/department-names/department-names.component.scss
+++ b/packages/ui-core/shared/src/lib/invite/invites/department-names/department-names.component.scss
@@ -1,4 +1,4 @@
-@import 'var';
+@use 'var' as *;
@include nb-install-component() {
.department-badge {
diff --git a/packages/ui-core/shared/src/lib/invite/invites/department-names/department-names.component.ts b/packages/ui-core/shared/src/lib/invite/invites/department-names/department-names.component.ts
index dbe9fd7c976..d389224563d 100644
--- a/packages/ui-core/shared/src/lib/invite/invites/department-names/department-names.component.ts
+++ b/packages/ui-core/shared/src/lib/invite/invites/department-names/department-names.component.ts
@@ -1,7 +1,7 @@
import { Component, Input } from '@angular/core';
@Component({
- template: `
+ template: `
`,
- styleUrls: ['./department-names.component.scss']
+ styleUrls: ['./department-names.component.scss'],
+ standalone: false
})
export class DepartmentNamesComponent {
@Input()
diff --git a/packages/ui-core/shared/src/lib/invite/invites/invites.component.scss b/packages/ui-core/shared/src/lib/invite/invites/invites.component.scss
index 221092cce16..b80e8aa75be 100644
--- a/packages/ui-core/shared/src/lib/invite/invites/invites.component.scss
+++ b/packages/ui-core/shared/src/lib/invite/invites/invites.component.scss
@@ -1,6 +1,6 @@
-@import 'gauzy/_gauzy-table';
-@import 'gauzy/_gauzy-cards';
-@import '@shared/_pg-card';
+@use 'gauzy/_gauzy-table' as *;
+@use 'gauzy/_gauzy-cards' as *;
+@use '@shared/_pg-card' as *;
:host {
.header-title-with-back {
diff --git a/packages/ui-core/shared/src/lib/invite/invites/invites.component.ts b/packages/ui-core/shared/src/lib/invite/invites/invites.component.ts
index 2312ee2d717..45fc2cf13fe 100644
--- a/packages/ui-core/shared/src/lib/invite/invites/invites.component.ts
+++ b/packages/ui-core/shared/src/lib/invite/invites/invites.component.ts
@@ -37,9 +37,10 @@ import { DepartmentNamesComponent } from './department-names/department-names.co
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-invites',
- templateUrl: './invites.component.html',
- styleUrls: ['invites.component.scss']
+ selector: 'ga-invites',
+ templateUrl: './invites.component.html',
+ styleUrls: ['invites.component.scss'],
+ standalone: false
})
export class InvitesComponent extends PaginationFilterBaseComponent implements AfterViewInit, OnInit, OnDestroy {
public InviteStatusEnum: typeof InviteStatusEnum = InviteStatusEnum;
diff --git a/packages/ui-core/shared/src/lib/invite/invites/project-names/project-names.component.scss b/packages/ui-core/shared/src/lib/invite/invites/project-names/project-names.component.scss
index b3a6e9b1714..3c506157fa6 100644
--- a/packages/ui-core/shared/src/lib/invite/invites/project-names/project-names.component.scss
+++ b/packages/ui-core/shared/src/lib/invite/invites/project-names/project-names.component.scss
@@ -1,4 +1,4 @@
-@import 'var';
+@use 'var' as *;
@include nb-install-component() {
.project-badge {
diff --git a/packages/ui-core/shared/src/lib/invite/invites/project-names/project-names.component.ts b/packages/ui-core/shared/src/lib/invite/invites/project-names/project-names.component.ts
index a17b95b3f36..7e1d181c58a 100644
--- a/packages/ui-core/shared/src/lib/invite/invites/project-names/project-names.component.ts
+++ b/packages/ui-core/shared/src/lib/invite/invites/project-names/project-names.component.ts
@@ -1,7 +1,7 @@
import { Component, Input } from '@angular/core';
@Component({
- template: `
+ template: `
`,
- styleUrls: ['./project-names.component.scss']
+ styleUrls: ['./project-names.component.scss'],
+ standalone: false
})
export class ProjectNamesComponent {
@Input()
diff --git a/packages/ui-core/shared/src/lib/invite/invites/resend-confirmation/resend-confirmation.component.scss b/packages/ui-core/shared/src/lib/invite/invites/resend-confirmation/resend-confirmation.component.scss
index 8b7f9812c85..55b0ed16b30 100644
--- a/packages/ui-core/shared/src/lib/invite/invites/resend-confirmation/resend-confirmation.component.scss
+++ b/packages/ui-core/shared/src/lib/invite/invites/resend-confirmation/resend-confirmation.component.scss
@@ -1 +1,7 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
+
+:host {
+ .center {
+ width: 300px;
+ }
+}
diff --git a/packages/ui-core/shared/src/lib/invite/invites/resend-confirmation/resend-confirmation.component.ts b/packages/ui-core/shared/src/lib/invite/invites/resend-confirmation/resend-confirmation.component.ts
index 87f7ce70a75..6ad14febe80 100644
--- a/packages/ui-core/shared/src/lib/invite/invites/resend-confirmation/resend-confirmation.component.ts
+++ b/packages/ui-core/shared/src/lib/invite/invites/resend-confirmation/resend-confirmation.component.ts
@@ -6,17 +6,12 @@ import { NbDialogRef } from '@nebular/theme';
template: `
-
+
{{ 'POP_UPS.CONFIRM' | translate }}
- {{
- 'POP_UPS.ARE_YOU_SURE_YOU_WANT_TO_RESEND_THE_INVITE_TO'
- | translate
- }}
+ {{ 'POP_UPS.ARE_YOU_SURE_YOU_WANT_TO_RESEND_THE_INVITE_TO' | translate }}
{{ email }} ?
@@ -24,31 +19,18 @@ import { NbDialogRef } from '@nebular/theme';
-
`,
- styles: [
- `
- .center {
- width: 300px;
- }
- `
- ],
- styleUrls: ['resend-confirmation.component.scss']
+ styleUrls: ['./resend-confirmation.component.scss'],
+ standalone: false
})
export class ResendConfirmationComponent {
email: string;
- constructor(
- protected dialogRef: NbDialogRef
- ) {}
+ constructor(protected dialogRef: NbDialogRef) {}
close() {
this.dialogRef.close();
diff --git a/packages/ui-core/shared/src/lib/invoice/components/inner-component/invoice-view-inner.component.scss b/packages/ui-core/shared/src/lib/invoice/components/inner-component/invoice-view-inner.component.scss
index 24cfb83378c..86f220d811e 100644
--- a/packages/ui-core/shared/src/lib/invoice/components/inner-component/invoice-view-inner.component.scss
+++ b/packages/ui-core/shared/src/lib/invoice/components/inner-component/invoice-view-inner.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
.table {
margin-top: 20px;
diff --git a/packages/ui-core/shared/src/lib/invoice/components/inner-component/invoice-view-inner.component.ts b/packages/ui-core/shared/src/lib/invoice/components/inner-component/invoice-view-inner.component.ts
index b9128149e44..8bb8851b725 100644
--- a/packages/ui-core/shared/src/lib/invoice/components/inner-component/invoice-view-inner.component.ts
+++ b/packages/ui-core/shared/src/lib/invoice/components/inner-component/invoice-view-inner.component.ts
@@ -11,10 +11,11 @@ import { CurrencyPositionPipe } from '../../../pipes/currency-position.pipe';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-invoice-view-inner',
- templateUrl: './invoice-view-inner.component.html',
- styleUrls: ['./invoice-view-inner.component.scss'],
- providers: [TranslatableService, CurrencyPipe, CurrencyPositionPipe]
+ selector: 'ga-invoice-view-inner',
+ templateUrl: './invoice-view-inner.component.html',
+ styleUrls: ['./invoice-view-inner.component.scss'],
+ providers: [TranslatableService, CurrencyPipe, CurrencyPositionPipe],
+ standalone: false
})
export class InvoiceViewInnerComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
public settingsSmartTable: object;
diff --git a/packages/ui-core/shared/src/lib/language/language-selector/language-selector.component.ts b/packages/ui-core/shared/src/lib/language/language-selector/language-selector.component.ts
index 000f106a734..026eddb75f0 100644
--- a/packages/ui-core/shared/src/lib/language/language-selector/language-selector.component.ts
+++ b/packages/ui-core/shared/src/lib/language/language-selector/language-selector.component.ts
@@ -11,16 +11,17 @@ import { NG_VALUE_ACCESSOR } from '@angular/forms';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-language-selector',
- templateUrl: './language-selector.component.html',
- styleUrls: ['./language-selector.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => LanguageSelectorComponent),
- multi: true
- }
- ]
+ selector: 'ngx-language-selector',
+ templateUrl: './language-selector.component.html',
+ styleUrls: ['./language-selector.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => LanguageSelectorComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class LanguageSelectorComponent extends TranslationBaseComponent implements OnInit {
languages: ILanguage[];
diff --git a/packages/ui-core/shared/src/lib/miscellaneous/components/not-found/not-found.component.ts b/packages/ui-core/shared/src/lib/miscellaneous/components/not-found/not-found.component.ts
index 41972a08fd8..4e7f8a8ba8a 100644
--- a/packages/ui-core/shared/src/lib/miscellaneous/components/not-found/not-found.component.ts
+++ b/packages/ui-core/shared/src/lib/miscellaneous/components/not-found/not-found.component.ts
@@ -2,9 +2,10 @@ import { AfterViewInit, Component } from '@angular/core';
import { Router } from '@angular/router';
@Component({
- selector: 'ngx-not-found',
- styleUrls: ['./not-found.component.scss'],
- templateUrl: './not-found.component.html'
+ selector: 'ngx-not-found',
+ styleUrls: ['./not-found.component.scss'],
+ templateUrl: './not-found.component.html',
+ standalone: false
})
export class NotFoundComponent implements AfterViewInit {
constructor(private readonly router: Router) {}
diff --git a/packages/ui-core/shared/src/lib/miscellaneous/miscellaneous.component.ts b/packages/ui-core/shared/src/lib/miscellaneous/miscellaneous.component.ts
index 0e50fd9e8e5..cf314be678c 100644
--- a/packages/ui-core/shared/src/lib/miscellaneous/miscellaneous.component.ts
+++ b/packages/ui-core/shared/src/lib/miscellaneous/miscellaneous.component.ts
@@ -1,7 +1,8 @@
import { Component } from '@angular/core';
@Component({
- selector: 'ngx-miscellaneous-outlet',
- template: ` `
+ selector: 'ngx-miscellaneous-outlet',
+ template: ` `,
+ standalone: false
})
export class MiscellaneousComponent {}
diff --git a/packages/ui-core/shared/src/lib/modules/country/country.component.ts b/packages/ui-core/shared/src/lib/modules/country/country.component.ts
index b6893ed129b..d31be0252f8 100644
--- a/packages/ui-core/shared/src/lib/modules/country/country.component.ts
+++ b/packages/ui-core/shared/src/lib/modules/country/country.component.ts
@@ -21,16 +21,17 @@ import { distinctUntilChange } from '@gauzy/ui-core/common';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-country',
- templateUrl: './country.component.html',
- styleUrls: ['./country.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => CountryComponent),
- multi: true
- }
- ]
+ selector: 'ga-country',
+ templateUrl: './country.component.html',
+ styleUrls: ['./country.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => CountryComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class CountryComponent extends TranslationBaseComponent implements OnInit, AfterViewInit, ControlValueAccessor {
@Input() formControl: FormControl = new FormControl();
diff --git a/packages/ui-core/shared/src/lib/modules/currency/currency.component.ts b/packages/ui-core/shared/src/lib/modules/currency/currency.component.ts
index 4d8a3f93096..40d585f57f4 100644
--- a/packages/ui-core/shared/src/lib/modules/currency/currency.component.ts
+++ b/packages/ui-core/shared/src/lib/modules/currency/currency.component.ts
@@ -21,16 +21,17 @@ import { distinctUntilChange, isNotEmpty } from '@gauzy/ui-core/common';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-currency',
- templateUrl: './currency.component.html',
- styleUrls: ['./currency.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => CurrencyComponent),
- multi: true
- }
- ]
+ selector: 'ga-currency',
+ templateUrl: './currency.component.html',
+ styleUrls: ['./currency.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => CurrencyComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class CurrencyComponent extends TranslationBaseComponent implements OnInit, AfterViewInit, ControlValueAccessor {
@Input() formControl: FormControl = new FormControl();
diff --git a/packages/ui-core/shared/src/lib/modules/selectors/file-provider-selector/file-provider-selector.component.scss b/packages/ui-core/shared/src/lib/modules/selectors/file-provider-selector/file-provider-selector.component.scss
index 2fb36f39e7f..d8fc2f50b9d 100644
--- a/packages/ui-core/shared/src/lib/modules/selectors/file-provider-selector/file-provider-selector.component.scss
+++ b/packages/ui-core/shared/src/lib/modules/selectors/file-provider-selector/file-provider-selector.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/gauzy-overrides';
+@use 'gauzy/gauzy-overrides' as *;
:host {
::ng-deep {
diff --git a/packages/ui-core/shared/src/lib/modules/selectors/file-provider-selector/file-provider-selector.component.ts b/packages/ui-core/shared/src/lib/modules/selectors/file-provider-selector/file-provider-selector.component.ts
index e7b03d207d6..4b4d0bd48a8 100644
--- a/packages/ui-core/shared/src/lib/modules/selectors/file-provider-selector/file-provider-selector.component.ts
+++ b/packages/ui-core/shared/src/lib/modules/selectors/file-provider-selector/file-provider-selector.component.ts
@@ -5,16 +5,17 @@ import { FileStorageProviderEnum } from '@gauzy/contracts';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'file-provider-selector',
- templateUrl: './file-provider-selector.component.html',
- styleUrls: ['./file-provider-selector.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => FileProviderSelectorComponent),
- multi: true
- }
- ]
+ selector: 'file-provider-selector',
+ templateUrl: './file-provider-selector.component.html',
+ styleUrls: ['./file-provider-selector.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => FileProviderSelectorComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class FileProviderSelectorComponent implements OnInit {
public fileStorageProviders: { label: FileStorageProviderEnum; value: any }[] = [];
diff --git a/packages/ui-core/shared/src/lib/modules/selectors/timezone-selector/timezone-selector.component.ts b/packages/ui-core/shared/src/lib/modules/selectors/timezone-selector/timezone-selector.component.ts
index c661af287ba..f4beb0bb6fd 100644
--- a/packages/ui-core/shared/src/lib/modules/selectors/timezone-selector/timezone-selector.component.ts
+++ b/packages/ui-core/shared/src/lib/modules/selectors/timezone-selector/timezone-selector.component.ts
@@ -5,16 +5,17 @@ import * as timezone from 'moment-timezone';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-timezone-selector',
- templateUrl: './timezone-selector.component.html',
- styleUrls: ['./timezone-selector.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TimeZoneSelectorComponent),
- multi: true
- }
- ]
+ selector: 'ga-timezone-selector',
+ templateUrl: './timezone-selector.component.html',
+ styleUrls: ['./timezone-selector.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TimeZoneSelectorComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TimeZoneSelectorComponent implements OnInit, OnDestroy {
listOfZones = timezone.tz.names().filter((zone) => zone.includes('/'));
diff --git a/packages/ui-core/shared/src/lib/organizations/organizations-mutation/organizations-mutation.component.scss b/packages/ui-core/shared/src/lib/organizations/organizations-mutation/organizations-mutation.component.scss
index d3d66429e66..2eb9d1b9c50 100644
--- a/packages/ui-core/shared/src/lib/organizations/organizations-mutation/organizations-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/organizations/organizations-mutation/organizations-mutation.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-overrides' as *;
:host ga-organizations-step-form ::ng-deep {
@include dialog(var(--gauzy-card-1), var(--gauzy-sidebar-background-4));
diff --git a/packages/ui-core/shared/src/lib/organizations/organizations-mutation/organizations-mutation.component.ts b/packages/ui-core/shared/src/lib/organizations/organizations-mutation/organizations-mutation.component.ts
index afd669643f1..7487c78cb2a 100644
--- a/packages/ui-core/shared/src/lib/organizations/organizations-mutation/organizations-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/organizations/organizations-mutation/organizations-mutation.component.ts
@@ -1,9 +1,10 @@
import { Component, OnInit } from '@angular/core';
import { NbDialogRef } from '@nebular/theme';
@Component({
- selector: 'ga-organizations-mutation',
- templateUrl: './organizations-mutation.component.html',
- styleUrls: ['./organizations-mutation.component.scss']
+ selector: 'ga-organizations-mutation',
+ templateUrl: './organizations-mutation.component.html',
+ styleUrls: ['./organizations-mutation.component.scss'],
+ standalone: false
})
export class OrganizationsMutationComponent implements OnInit {
constructor(protected readonly dialogRef: NbDialogRef) {}
diff --git a/packages/ui-core/shared/src/lib/organizations/organizations-step-form/organizations-step-form.component.scss b/packages/ui-core/shared/src/lib/organizations/organizations-step-form/organizations-step-form.component.scss
index 64de4b474e6..5ae98e2326d 100644
--- a/packages/ui-core/shared/src/lib/organizations/organizations-step-form/organizations-step-form.component.scss
+++ b/packages/ui-core/shared/src/lib/organizations/organizations-step-form/organizations-step-form.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
:host nb-card {
//width: 1145px;
diff --git a/packages/ui-core/shared/src/lib/organizations/organizations-step-form/organizations-step-form.component.ts b/packages/ui-core/shared/src/lib/organizations/organizations-step-form/organizations-step-form.component.ts
index 0c5026851ef..96aac972009 100644
--- a/packages/ui-core/shared/src/lib/organizations/organizations-step-form/organizations-step-form.component.ts
+++ b/packages/ui-core/shared/src/lib/organizations/organizations-step-form/organizations-step-form.component.ts
@@ -36,12 +36,13 @@ import { FormHelpers, LeafletMapComponent, LocationFormComponent } from '../../f
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-organizations-step-form',
- templateUrl: './organizations-step-form.component.html',
- styleUrls: [
- './organizations-step-form.component.scss',
- './../../user/edit-profile-form/edit-profile-form.component.scss'
- ]
+ selector: 'ga-organizations-step-form',
+ templateUrl: './organizations-step-form.component.html',
+ styleUrls: [
+ './organizations-step-form.component.scss',
+ './../../user/edit-profile-form/edit-profile-form.component.scss'
+ ],
+ standalone: false
})
export class OrganizationsStepFormComponent implements OnInit, OnDestroy, AfterViewInit {
FormHelpers: typeof FormHelpers = FormHelpers;
diff --git a/packages/ui-core/shared/src/lib/pipes/budget.pipe.ts b/packages/ui-core/shared/src/lib/pipes/budget.pipe.ts
index 67bb8e0c6da..aeb0795f5f4 100644
--- a/packages/ui-core/shared/src/lib/pipes/budget.pipe.ts
+++ b/packages/ui-core/shared/src/lib/pipes/budget.pipe.ts
@@ -2,7 +2,10 @@ import { CurrencyPipe } from '@angular/common';
import { Pipe, PipeTransform } from '@angular/core';
import { CurrenciesEnum } from '@gauzy/contracts';
-@Pipe({ name: 'budget' })
+@Pipe({
+ name: 'budget',
+ standalone: false
+})
export class JobBudgetPipe implements PipeTransform {
constructor(private readonly currencyPipe: CurrencyPipe) {}
/**
diff --git a/packages/ui-core/shared/src/lib/pipes/currency-position.pipe.ts b/packages/ui-core/shared/src/lib/pipes/currency-position.pipe.ts
index 1b5591f283a..e32b6d711cc 100644
--- a/packages/ui-core/shared/src/lib/pipes/currency-position.pipe.ts
+++ b/packages/ui-core/shared/src/lib/pipes/currency-position.pipe.ts
@@ -1,7 +1,10 @@
import { Pipe, PipeTransform } from '@angular/core';
import { CurrencyPosition } from '@gauzy/contracts';
-@Pipe({ name: 'position' })
+@Pipe({
+ name: 'position',
+ standalone: false
+})
export class CurrencyPositionPipe implements PipeTransform {
/**
* Transforms the given data string based on the specified position.
diff --git a/packages/ui-core/shared/src/lib/pipes/date-format.pipe.ts b/packages/ui-core/shared/src/lib/pipes/date-format.pipe.ts
index 8bd89ca8a2a..30ae1e5b885 100644
--- a/packages/ui-core/shared/src/lib/pipes/date-format.pipe.ts
+++ b/packages/ui-core/shared/src/lib/pipes/date-format.pipe.ts
@@ -8,8 +8,9 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Pipe({
- name: 'dateFormat',
- pure: false
+ name: 'dateFormat',
+ pure: false,
+ standalone: false
})
export class DateFormatPipe implements PipeTransform {
dateFormat: string = 'd MMMM, y';
diff --git a/packages/ui-core/shared/src/lib/pipes/datetime-format.pipe.ts b/packages/ui-core/shared/src/lib/pipes/datetime-format.pipe.ts
index b1558863bd8..47a9075ea32 100644
--- a/packages/ui-core/shared/src/lib/pipes/datetime-format.pipe.ts
+++ b/packages/ui-core/shared/src/lib/pipes/datetime-format.pipe.ts
@@ -8,8 +8,9 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Pipe({
- name: 'dateTimeFormat',
- pure: false
+ name: 'dateTimeFormat',
+ pure: false,
+ standalone: false
})
export class DateTimeFormatPipe implements PipeTransform {
timeFormat: number = TimeFormatEnum.FORMAT_12_HOURS;
diff --git a/packages/ui-core/shared/src/lib/pipes/duration-format.pipe.ts b/packages/ui-core/shared/src/lib/pipes/duration-format.pipe.ts
index c5d0517ed40..8cd4e0462c6 100644
--- a/packages/ui-core/shared/src/lib/pipes/duration-format.pipe.ts
+++ b/packages/ui-core/shared/src/lib/pipes/duration-format.pipe.ts
@@ -1,6 +1,7 @@
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
- name: 'durationFormat'
+ name: 'durationFormat',
+ standalone: false
})
export class DurationFormatPipe implements PipeTransform {
/**
diff --git a/packages/ui-core/shared/src/lib/pipes/file-size.pipe.ts b/packages/ui-core/shared/src/lib/pipes/file-size.pipe.ts
index d0a750b8353..91b9840cbe0 100644
--- a/packages/ui-core/shared/src/lib/pipes/file-size.pipe.ts
+++ b/packages/ui-core/shared/src/lib/pipes/file-size.pipe.ts
@@ -30,7 +30,8 @@ const defaultPrecisionMap: unitPrecisionMap = {
*/
@Pipe({
- name: 'fileSize'
+ name: 'fileSize',
+ standalone: false
})
export class FileSizePipe implements PipeTransform {
private readonly units: unit[] = ['bytes', 'KB', 'MB', 'GB', 'TB'];
diff --git a/packages/ui-core/shared/src/lib/pipes/filter-array.pipe.ts b/packages/ui-core/shared/src/lib/pipes/filter-array.pipe.ts
index 69e18c2646c..0956ccd4144 100644
--- a/packages/ui-core/shared/src/lib/pipes/filter-array.pipe.ts
+++ b/packages/ui-core/shared/src/lib/pipes/filter-array.pipe.ts
@@ -1,8 +1,9 @@
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
- name: 'filterArray',
- pure: false
+ name: 'filterArray',
+ pure: false,
+ standalone: false
})
export class FilterArrayPipe implements PipeTransform {
/**
diff --git a/packages/ui-core/shared/src/lib/pipes/hash-number.pipe.ts b/packages/ui-core/shared/src/lib/pipes/hash-number.pipe.ts
index 28db556247f..d3c68cf47d7 100644
--- a/packages/ui-core/shared/src/lib/pipes/hash-number.pipe.ts
+++ b/packages/ui-core/shared/src/lib/pipes/hash-number.pipe.ts
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
- name: 'hash'
+ name: 'hash',
+ standalone: false
})
export class HashNumberPipe implements PipeTransform {
/**
diff --git a/packages/ui-core/shared/src/lib/pipes/replace.pipe.ts b/packages/ui-core/shared/src/lib/pipes/replace.pipe.ts
index 11666bdb789..d945abca48a 100644
--- a/packages/ui-core/shared/src/lib/pipes/replace.pipe.ts
+++ b/packages/ui-core/shared/src/lib/pipes/replace.pipe.ts
@@ -3,7 +3,8 @@ import { isRegExp, isString, isUndefined } from 'underscore';
import { replaceAll } from '@gauzy/ui-core/common';
@Pipe({
- name: 'replace'
+ name: 'replace',
+ standalone: false
})
export class ReplacePipe implements PipeTransform {
/**
diff --git a/packages/ui-core/shared/src/lib/pipes/safe/safe.pipe.ts b/packages/ui-core/shared/src/lib/pipes/safe/safe.pipe.ts
index d67f36eb023..0325798ceb6 100644
--- a/packages/ui-core/shared/src/lib/pipes/safe/safe.pipe.ts
+++ b/packages/ui-core/shared/src/lib/pipes/safe/safe.pipe.ts
@@ -2,7 +2,8 @@ import { Pipe, PipeTransform } from '@angular/core';
import { DomSanitizer } from '@angular/platform-browser';
@Pipe({
- name: 'safeUrl'
+ name: 'safeUrl',
+ standalone: false
})
export class SafeUrlPipe implements PipeTransform {
constructor(private readonly sanitizer: DomSanitizer) {}
@@ -19,7 +20,8 @@ export class SafeUrlPipe implements PipeTransform {
}
@Pipe({
- name: 'safeHtml'
+ name: 'safeHtml',
+ standalone: false
})
export class SafeHtmlPipe implements PipeTransform {
constructor(private readonly sanitizer: DomSanitizer) {}
diff --git a/packages/ui-core/shared/src/lib/pipes/text.pipe.ts b/packages/ui-core/shared/src/lib/pipes/text.pipe.ts
index 8990e00084c..8a5c6bc89f2 100644
--- a/packages/ui-core/shared/src/lib/pipes/text.pipe.ts
+++ b/packages/ui-core/shared/src/lib/pipes/text.pipe.ts
@@ -2,7 +2,8 @@ import { Pipe, PipeTransform, SecurityContext, VERSION } from '@angular/core';
import { DomSanitizer } from '@angular/platform-browser';
@Pipe({
- name: 'truncate'
+ name: 'truncate',
+ standalone: false
})
export class TruncatePipe implements PipeTransform {
/**
@@ -26,7 +27,8 @@ export class TruncatePipe implements PipeTransform {
}
}
@Pipe({
- name: 'nl2br'
+ name: 'nl2br',
+ standalone: false
})
export class Nl2BrPipe implements PipeTransform {
constructor(private readonly sanitizer: DomSanitizer) {}
diff --git a/packages/ui-core/shared/src/lib/pipes/time-format.pipe.ts b/packages/ui-core/shared/src/lib/pipes/time-format.pipe.ts
index 2a4a5e169f2..a312624756f 100644
--- a/packages/ui-core/shared/src/lib/pipes/time-format.pipe.ts
+++ b/packages/ui-core/shared/src/lib/pipes/time-format.pipe.ts
@@ -7,8 +7,9 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Pipe({
- name: 'timeFormat',
- pure: false
+ name: 'timeFormat',
+ pure: false,
+ standalone: false
})
export class TimeFormatPipe implements PipeTransform, OnDestroy {
private format: TimeFormatEnum;
diff --git a/packages/ui-core/shared/src/lib/pipes/utc-to-local.pipe.ts b/packages/ui-core/shared/src/lib/pipes/utc-to-local.pipe.ts
index 499c75552d3..b173f8390ca 100644
--- a/packages/ui-core/shared/src/lib/pipes/utc-to-local.pipe.ts
+++ b/packages/ui-core/shared/src/lib/pipes/utc-to-local.pipe.ts
@@ -3,7 +3,8 @@ import * as moment from 'moment';
import { toLocal } from '@gauzy/ui-core/common';
@Pipe({
- name: 'utcToLocal'
+ name: 'utcToLocal',
+ standalone: false
})
export class UtcToLocalPipe implements PipeTransform {
/**
diff --git a/packages/ui-core/shared/src/lib/pipes/utc-to-timezone.pipe.ts b/packages/ui-core/shared/src/lib/pipes/utc-to-timezone.pipe.ts
index e3771c662b7..bfceabc55d7 100644
--- a/packages/ui-core/shared/src/lib/pipes/utc-to-timezone.pipe.ts
+++ b/packages/ui-core/shared/src/lib/pipes/utc-to-timezone.pipe.ts
@@ -3,7 +3,8 @@ import * as moment from 'moment';
import { toTimezone } from '@gauzy/ui-core/common';
@Pipe({
- name: 'utcToTimezone'
+ name: 'utcToTimezone',
+ standalone: false
})
export class UtcToTimezone implements PipeTransform {
/**
diff --git a/packages/ui-core/shared/src/lib/product/product-category-selector/product-category-selector.component.ts b/packages/ui-core/shared/src/lib/product/product-category-selector/product-category-selector.component.ts
index 75bfbb3d651..8f0506ade3c 100644
--- a/packages/ui-core/shared/src/lib/product/product-category-selector/product-category-selector.component.ts
+++ b/packages/ui-core/shared/src/lib/product/product-category-selector/product-category-selector.component.ts
@@ -14,16 +14,17 @@ import { ProductCategoryService, Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-product-category-selector',
- templateUrl: './product-category-selector.component.html',
- styleUrls: ['./product-category-selector.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => ProductCategorySelectorComponent),
- multi: true
- }
- ]
+ selector: 'ngx-product-category-selector',
+ templateUrl: './product-category-selector.component.html',
+ styleUrls: ['./product-category-selector.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => ProductCategorySelectorComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class ProductCategorySelectorComponent implements OnInit, OnDestroy {
public organization: IOrganization;
diff --git a/packages/ui-core/shared/src/lib/product/product-mutation/product-category-mutation/product-category-mutation.component.scss b/packages/ui-core/shared/src/lib/product/product-mutation/product-category-mutation/product-category-mutation.component.scss
index 13671c0e89e..22217487c50 100644
--- a/packages/ui-core/shared/src/lib/product/product-mutation/product-category-mutation/product-category-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/product/product-mutation/product-category-mutation/product-category-mutation.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.d-bottom {
display: flex;
@@ -79,4 +79,4 @@ form {
:host nb-card {
background-color: var(--gauzy-card-1);
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/product/product-mutation/product-category-mutation/product-category-mutation.component.ts b/packages/ui-core/shared/src/lib/product/product-mutation/product-category-mutation/product-category-mutation.component.ts
index 7c7176306e9..de4676ba154 100644
--- a/packages/ui-core/shared/src/lib/product/product-mutation/product-category-mutation/product-category-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/product/product-mutation/product-category-mutation/product-category-mutation.component.ts
@@ -19,9 +19,10 @@ import { distinctUntilChange } from '@gauzy/ui-core/common';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-product-category-mutation',
- templateUrl: './product-category-mutation.component.html',
- styleUrls: ['./product-category-mutation.component.scss']
+ selector: 'ngx-product-category-mutation',
+ templateUrl: './product-category-mutation.component.html',
+ styleUrls: ['./product-category-mutation.component.scss'],
+ standalone: false
})
export class ProductCategoryMutationComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
@Input() productCategory: IProductCategoryTranslatable;
diff --git a/packages/ui-core/shared/src/lib/product/product-mutation/product-option-group-translation/product-option-group-translation.component.scss b/packages/ui-core/shared/src/lib/product/product-mutation/product-option-group-translation/product-option-group-translation.component.scss
index 78e60ca44d7..601c680e4e1 100644
--- a/packages/ui-core/shared/src/lib/product/product-mutation/product-option-group-translation/product-option-group-translation.component.scss
+++ b/packages/ui-core/shared/src/lib/product/product-mutation/product-option-group-translation/product-option-group-translation.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.main {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
diff --git a/packages/ui-core/shared/src/lib/product/product-mutation/product-option-group-translation/product-option-group-translation.component.ts b/packages/ui-core/shared/src/lib/product/product-mutation/product-option-group-translation/product-option-group-translation.component.ts
index 526eaaedae8..a6b96d7bfc0 100644
--- a/packages/ui-core/shared/src/lib/product/product-mutation/product-option-group-translation/product-option-group-translation.component.ts
+++ b/packages/ui-core/shared/src/lib/product/product-mutation/product-option-group-translation/product-option-group-translation.component.ts
@@ -10,9 +10,10 @@ import { debounceTime, distinctUntilChanged } from 'rxjs/operators';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-product-option-group-translation',
- templateUrl: './product-option-group-translation.component.html',
- styleUrls: ['./product-option-group-translation.component.scss']
+ selector: 'ngx-product-option-group-translation',
+ templateUrl: './product-option-group-translation.component.html',
+ styleUrls: ['./product-option-group-translation.component.scss'],
+ standalone: false
})
export class ProductOptionGroupTranslationsComponent extends TranslationBaseComponent {
form: UntypedFormGroup;
diff --git a/packages/ui-core/shared/src/lib/product/product-mutation/product-type-mutation/product-type-mutation.component.scss b/packages/ui-core/shared/src/lib/product/product-mutation/product-type-mutation/product-type-mutation.component.scss
index c552266ec3e..7e6553c043e 100644
--- a/packages/ui-core/shared/src/lib/product/product-mutation/product-type-mutation/product-type-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/product/product-mutation/product-type-mutation/product-type-mutation.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.d-bottom {
display: flex;
@@ -34,4 +34,4 @@ ng-select {
:host nb-card {
background-color: var(--gauzy-card-1);
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/product/product-mutation/product-type-mutation/product-type-mutation.component.ts b/packages/ui-core/shared/src/lib/product/product-mutation/product-type-mutation/product-type-mutation.component.ts
index 61731adc4ea..adb40dcfcdc 100644
--- a/packages/ui-core/shared/src/lib/product/product-mutation/product-type-mutation/product-type-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/product/product-mutation/product-type-mutation/product-type-mutation.component.ts
@@ -19,9 +19,10 @@ import { HttpErrorResponse } from '@angular/common/http';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-product-type-mutation',
- templateUrl: './product-type-mutation.component.html',
- styleUrls: ['./product-type-mutation.component.scss']
+ selector: 'ngx-product-type-mutation',
+ templateUrl: './product-type-mutation.component.html',
+ styleUrls: ['./product-type-mutation.component.scss'],
+ standalone: false
})
export class ProductTypeMutationComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
@Input() productType: IProductTypeTranslatable;
diff --git a/packages/ui-core/shared/src/lib/product/product-type-selector/product-type-selector.component.ts b/packages/ui-core/shared/src/lib/product/product-type-selector/product-type-selector.component.ts
index ee49d562d01..d7e8a9f7442 100644
--- a/packages/ui-core/shared/src/lib/product/product-type-selector/product-type-selector.component.ts
+++ b/packages/ui-core/shared/src/lib/product/product-type-selector/product-type-selector.component.ts
@@ -15,16 +15,17 @@ import { ErrorHandlingService, ProductTypeService, Store } from '@gauzy/ui-core/
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-product-type-selector',
- templateUrl: './product-type-selector.component.html',
- styleUrls: ['./product-type-selector.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => ProductTypeSelectorComponent),
- multi: true
- }
- ]
+ selector: 'ngx-product-type-selector',
+ templateUrl: './product-type-selector.component.html',
+ styleUrls: ['./product-type-selector.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => ProductTypeSelectorComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class ProductTypeSelectorComponent implements OnInit, OnDestroy {
public organization: IOrganization;
diff --git a/packages/ui-core/shared/src/lib/progress-status/progress-status/progress-status.component.scss b/packages/ui-core/shared/src/lib/progress-status/progress-status/progress-status.component.scss
index 5f80b830fe3..a3bc286c62a 100644
--- a/packages/ui-core/shared/src/lib/progress-status/progress-status/progress-status.component.scss
+++ b/packages/ui-core/shared/src/lib/progress-status/progress-status/progress-status.component.scss
@@ -1,4 +1,4 @@
-@import "var";
+@use "var" as *;
.wrapper {
display: flex;
diff --git a/packages/ui-core/shared/src/lib/progress-status/progress-status/progress-status.component.ts b/packages/ui-core/shared/src/lib/progress-status/progress-status/progress-status.component.ts
index aa100e58ce7..549104ad246 100644
--- a/packages/ui-core/shared/src/lib/progress-status/progress-status/progress-status.component.ts
+++ b/packages/ui-core/shared/src/lib/progress-status/progress-status/progress-status.component.ts
@@ -3,9 +3,10 @@ import { progressStatus } from '@gauzy/ui-core/common';
import { NbComponentOrCustomStatus } from '@nebular/theme';
@Component({
- selector: 'ngx-progress-status',
- templateUrl: './progress-status.component.html',
- styleUrls: ['./progress-status.component.scss']
+ selector: 'ngx-progress-status',
+ templateUrl: './progress-status.component.html',
+ styleUrls: ['./progress-status.component.scss'],
+ standalone: false
})
export class ProgressStatusComponent implements OnInit {
progressStatus = progressStatus;
diff --git a/packages/ui-core/shared/src/lib/project-module/project-module-mutation/project-module-mutation.component.scss b/packages/ui-core/shared/src/lib/project-module/project-module-mutation/project-module-mutation.component.scss
index 7bd19ceaf94..a009cea0664 100644
--- a/packages/ui-core/shared/src/lib/project-module/project-module-mutation/project-module-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/project-module/project-module-mutation/project-module-mutation.component.scss
@@ -1 +1 @@
-@import '@shared/add-task-dialog';
+@forward '@shared/add-task-dialog';
diff --git a/packages/ui-core/shared/src/lib/project-module/project-module-mutation/project-module-mutation.component.ts b/packages/ui-core/shared/src/lib/project-module/project-module-mutation/project-module-mutation.component.ts
index ced93f127b5..4fd0b375b9f 100644
--- a/packages/ui-core/shared/src/lib/project-module/project-module-mutation/project-module-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/project-module/project-module-mutation/project-module-mutation.component.ts
@@ -36,7 +36,8 @@ import { richTextCKEditorConfig } from '../../ckeditor.config';
@Component({
selector: 'ngx-project-module-mutation',
templateUrl: './project-module-mutation.component.html',
- styleUrl: './project-module-mutation.component.scss'
+ styleUrl: './project-module-mutation.component.scss',
+ standalone: false
})
export class ProjectModuleMutationComponent extends TranslationBaseComponent implements OnInit {
memberIds: ID[] = [];
diff --git a/packages/ui-core/shared/src/lib/project-module/project-module-table/project-module-table.component.scss b/packages/ui-core/shared/src/lib/project-module/project-module-table/project-module-table.component.scss
index 628fae58055..e4e40d05d3b 100644
--- a/packages/ui-core/shared/src/lib/project-module/project-module-table/project-module-table.component.scss
+++ b/packages/ui-core/shared/src/lib/project-module/project-module-table/project-module-table.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-table';
+@forward 'gauzy/_gauzy-table';
:host ngx-gauzy-button-action ::ng-deep {
.transition-container span {
diff --git a/packages/ui-core/shared/src/lib/project-module/project-module-table/project-module-table.component.ts b/packages/ui-core/shared/src/lib/project-module/project-module-table/project-module-table.component.ts
index 8ce9b8c2d6f..f805fdb3d94 100644
--- a/packages/ui-core/shared/src/lib/project-module/project-module-table/project-module-table.component.ts
+++ b/packages/ui-core/shared/src/lib/project-module/project-module-table/project-module-table.component.ts
@@ -21,7 +21,8 @@ import { ProjectModuleMutationComponent } from '../project-module-mutation/proje
@Component({
selector: 'ngx-project-module-table',
templateUrl: './project-module-table.component.html',
- styleUrl: './project-module-table.component.scss'
+ styleUrl: './project-module-table.component.scss',
+ standalone: false
})
export class ProjectModuleTableComponent extends TranslationBaseComponent implements OnInit {
public modules: IOrganizationProjectModule[] = [];
diff --git a/packages/ui-core/shared/src/lib/project/project-mutation/project-mutation.component.scss b/packages/ui-core/shared/src/lib/project/project-mutation/project-mutation.component.scss
index 9f7344658af..ed08e140306 100644
--- a/packages/ui-core/shared/src/lib/project/project-mutation/project-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/project/project-mutation/project-mutation.component.scss
@@ -1,5 +1,5 @@
// Import Gauzy dialogs styles
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
// Define styles for the .project-toggle class
.project-toggle {
diff --git a/packages/ui-core/shared/src/lib/project/project-mutation/project-mutation.component.ts b/packages/ui-core/shared/src/lib/project/project-mutation/project-mutation.component.ts
index 1072adaee2d..66b8e894e15 100644
--- a/packages/ui-core/shared/src/lib/project/project-mutation/project-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/project/project-mutation/project-mutation.component.ts
@@ -51,9 +51,10 @@ import { ProjectModuleMutationComponent } from '../../project-module/project-mod
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-project-mutation',
- templateUrl: './project-mutation.component.html',
- styleUrls: ['./project-mutation.component.scss']
+ selector: 'ga-project-mutation',
+ templateUrl: './project-mutation.component.html',
+ styleUrls: ['./project-mutation.component.scss'],
+ standalone: false
})
export class ProjectMutationComponent extends TranslationBaseComponent implements AfterViewInit, OnInit {
public FormHelpers: typeof FormHelpers = FormHelpers;
diff --git a/packages/ui-core/shared/src/lib/proposal-template-select/proposal-template-select/proposal-template-select.component.ts b/packages/ui-core/shared/src/lib/proposal-template-select/proposal-template-select/proposal-template-select.component.ts
index 136adbf67f6..5a5c7d56982 100644
--- a/packages/ui-core/shared/src/lib/proposal-template-select/proposal-template-select/proposal-template-select.component.ts
+++ b/packages/ui-core/shared/src/lib/proposal-template-select/proposal-template-select/proposal-template-select.component.ts
@@ -9,16 +9,17 @@ import { ErrorHandlingService, ProposalTemplateService, Store } from '@gauzy/ui-
@UntilDestroy()
@Component({
- selector: 'ngx-proposal-template-select',
- templateUrl: './proposal-template-select.component.html',
- styleUrls: ['./proposal-template-select.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => ProposalTemplateSelectComponent),
- multi: true
- }
- ]
+ selector: 'ngx-proposal-template-select',
+ templateUrl: './proposal-template-select.component.html',
+ styleUrls: ['./proposal-template-select.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => ProposalTemplateSelectComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class ProposalTemplateSelectComponent implements OnInit {
proposalTemplates: IEmployeeProposalTemplate[] = [];
diff --git a/packages/ui-core/shared/src/lib/remove-lodash/remove-lodash.pipe.ts b/packages/ui-core/shared/src/lib/remove-lodash/remove-lodash.pipe.ts
index 170a757b9cd..7fff0abfc40 100644
--- a/packages/ui-core/shared/src/lib/remove-lodash/remove-lodash.pipe.ts
+++ b/packages/ui-core/shared/src/lib/remove-lodash/remove-lodash.pipe.ts
@@ -1,7 +1,8 @@
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
- name: 'removeLodash'
+ name: 'removeLodash',
+ standalone: false
})
export class RemoveLodashPipe implements PipeTransform {
transform(value: string, args?: any): any {
diff --git a/packages/ui-core/shared/src/lib/report/activities-report-grid/activities-report-grid.component.scss b/packages/ui-core/shared/src/lib/report/activities-report-grid/activities-report-grid.component.scss
index fa2150fb5ae..c946ba1e59c 100644
--- a/packages/ui-core/shared/src/lib/report/activities-report-grid/activities-report-grid.component.scss
+++ b/packages/ui-core/shared/src/lib/report/activities-report-grid/activities-report-grid.component.scss
@@ -1,5 +1,5 @@
-@import 'report';
-@import "var";
+@forward 'report';
+@use 'var' as *;
.project-row {
margin-bottom: 10px;
diff --git a/packages/ui-core/shared/src/lib/report/activities-report-grid/activities-report-grid.component.ts b/packages/ui-core/shared/src/lib/report/activities-report-grid/activities-report-grid.component.ts
index 3fb938149a9..bddba9ba003 100644
--- a/packages/ui-core/shared/src/lib/report/activities-report-grid/activities-report-grid.component.ts
+++ b/packages/ui-core/shared/src/lib/report/activities-report-grid/activities-report-grid.component.ts
@@ -17,9 +17,10 @@ import { BaseSelectorFilterComponent, TimeZoneService } from '../../timesheet/ga
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-activities-report-grid',
- templateUrl: './activities-report-grid.component.html',
- styleUrls: ['./activities-report-grid.component.scss']
+ selector: 'ga-activities-report-grid',
+ templateUrl: './activities-report-grid.component.html',
+ styleUrls: ['./activities-report-grid.component.scss'],
+ standalone: false
})
export class ActivitiesReportGridComponent extends BaseSelectorFilterComponent implements OnInit, AfterViewInit {
dailyData: IReportDayData[] = [];
diff --git a/packages/ui-core/shared/src/lib/report/amounts-owed-grid/amounts-owed-grid.component.scss b/packages/ui-core/shared/src/lib/report/amounts-owed-grid/amounts-owed-grid.component.scss
index 4d67b88af8c..ef9e3261024 100644
--- a/packages/ui-core/shared/src/lib/report/amounts-owed-grid/amounts-owed-grid.component.scss
+++ b/packages/ui-core/shared/src/lib/report/amounts-owed-grid/amounts-owed-grid.component.scss
@@ -1,4 +1,4 @@
-@import 'report';
+@forward 'report';
:host {
display: block;
diff --git a/packages/ui-core/shared/src/lib/report/amounts-owed-grid/amounts-owed-grid.component.ts b/packages/ui-core/shared/src/lib/report/amounts-owed-grid/amounts-owed-grid.component.ts
index 21c47b0d12a..7e84ea34436 100644
--- a/packages/ui-core/shared/src/lib/report/amounts-owed-grid/amounts-owed-grid.component.ts
+++ b/packages/ui-core/shared/src/lib/report/amounts-owed-grid/amounts-owed-grid.component.ts
@@ -16,9 +16,10 @@ import { BaseSelectorFilterComponent, TimeZoneService } from '../../timesheet/ga
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-amounts-owed-grid',
- templateUrl: './amounts-owed-grid.component.html',
- styleUrls: ['./amounts-owed-grid.component.scss']
+ selector: 'ga-amounts-owed-grid',
+ templateUrl: './amounts-owed-grid.component.html',
+ styleUrls: ['./amounts-owed-grid.component.scss'],
+ standalone: false
})
export class AmountsOwedGridComponent extends BaseSelectorFilterComponent implements OnInit, AfterViewInit {
public loading: boolean;
diff --git a/packages/ui-core/shared/src/lib/report/charts/line-chart/line-chart.component.ts b/packages/ui-core/shared/src/lib/report/charts/line-chart/line-chart.component.ts
index 30fad653658..9bf26a3ebb4 100644
--- a/packages/ui-core/shared/src/lib/report/charts/line-chart/line-chart.component.ts
+++ b/packages/ui-core/shared/src/lib/report/charts/line-chart/line-chart.component.ts
@@ -21,10 +21,11 @@ import { ChartUtil } from './chart-utils';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: ' ngx-line-chart',
+ selector: 'ngx-line-chart',
templateUrl: './line-chart.component.html',
styleUrls: ['./line-chart.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class LineChartComponent extends TranslationBaseComponent implements OnChanges, OnDestroy, OnInit {
public lineChartType: ChartType = 'line';
diff --git a/packages/ui-core/shared/src/lib/report/daily-grid/daily-grid.component.scss b/packages/ui-core/shared/src/lib/report/daily-grid/daily-grid.component.scss
index 10118629811..d6b1b48d122 100644
--- a/packages/ui-core/shared/src/lib/report/daily-grid/daily-grid.component.scss
+++ b/packages/ui-core/shared/src/lib/report/daily-grid/daily-grid.component.scss
@@ -1,4 +1,4 @@
-@import 'report';
+@use 'report' as *;
.group-by-wrapper {
display: flex;
diff --git a/packages/ui-core/shared/src/lib/report/daily-grid/daily-grid.component.ts b/packages/ui-core/shared/src/lib/report/daily-grid/daily-grid.component.ts
index 5acb5514b1c..b5d5c662ae1 100644
--- a/packages/ui-core/shared/src/lib/report/daily-grid/daily-grid.component.ts
+++ b/packages/ui-core/shared/src/lib/report/daily-grid/daily-grid.component.ts
@@ -18,9 +18,10 @@ import { BaseSelectorFilterComponent, TimeZoneService } from '../../timesheet/ga
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-daily-grid',
- templateUrl: './daily-grid.component.html',
- styleUrls: ['./daily-grid.component.scss']
+ selector: 'ga-daily-grid',
+ templateUrl: './daily-grid.component.html',
+ styleUrls: ['./daily-grid.component.scss'],
+ standalone: false
})
export class DailyGridComponent extends BaseSelectorFilterComponent implements OnInit, AfterViewInit, OnDestroy {
// This constant holds the URL for downloading content from the platform's website.
diff --git a/packages/ui-core/shared/src/lib/report/daily-statistics/daily-statistics/daily-statistics.component.scss b/packages/ui-core/shared/src/lib/report/daily-statistics/daily-statistics/daily-statistics.component.scss
index a3762709dd2..db8d206067c 100644
--- a/packages/ui-core/shared/src/lib/report/daily-statistics/daily-statistics/daily-statistics.component.scss
+++ b/packages/ui-core/shared/src/lib/report/daily-statistics/daily-statistics/daily-statistics.component.scss
@@ -1,4 +1,4 @@
-@import 'var';
+@use 'var' as *;
:host {
display: block;
@@ -49,4 +49,4 @@ p {
line-height: 16px;
letter-spacing: -0.009em;
color: var(--gauzy-text-color-2);
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/report/daily-statistics/daily-statistics/daily-statistics.component.ts b/packages/ui-core/shared/src/lib/report/daily-statistics/daily-statistics/daily-statistics.component.ts
index 5b6923eebe3..5b3ee031bb9 100644
--- a/packages/ui-core/shared/src/lib/report/daily-statistics/daily-statistics/daily-statistics.component.ts
+++ b/packages/ui-core/shared/src/lib/report/daily-statistics/daily-statistics/daily-statistics.component.ts
@@ -18,9 +18,10 @@ import { BaseSelectorFilterComponent, TimeZoneService } from '../../../timesheet
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-daily-statistics',
- templateUrl: './daily-statistics.component.html',
- styleUrls: ['./daily-statistics.component.scss']
+ selector: 'ga-daily-statistics',
+ templateUrl: './daily-statistics.component.html',
+ styleUrls: ['./daily-statistics.component.scss'],
+ standalone: false
})
export class DailyStatisticsComponent extends BaseSelectorFilterComponent implements OnInit, AfterViewInit {
payloads$: BehaviorSubject = new BehaviorSubject(null);
diff --git a/packages/ui-core/shared/src/lib/report/expenses-report-grid/expenses-report-grid.component.scss b/packages/ui-core/shared/src/lib/report/expenses-report-grid/expenses-report-grid.component.scss
index e682839796e..78fdf2a8418 100644
--- a/packages/ui-core/shared/src/lib/report/expenses-report-grid/expenses-report-grid.component.scss
+++ b/packages/ui-core/shared/src/lib/report/expenses-report-grid/expenses-report-grid.component.scss
@@ -1,6 +1,6 @@
-@import 'report';
-@import "themes";
-@import "var";
+@forward 'report';
+@use "themes" as *;
+@use "var" as *;
:host {
display: block;
diff --git a/packages/ui-core/shared/src/lib/report/expenses-report-grid/expenses-report-grid.component.ts b/packages/ui-core/shared/src/lib/report/expenses-report-grid/expenses-report-grid.component.ts
index 50b0faa225a..7e4605bf562 100644
--- a/packages/ui-core/shared/src/lib/report/expenses-report-grid/expenses-report-grid.component.ts
+++ b/packages/ui-core/shared/src/lib/report/expenses-report-grid/expenses-report-grid.component.ts
@@ -16,9 +16,10 @@ import { BaseSelectorFilterComponent, TimeZoneService } from '../../timesheet/ga
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-expenses-report-grid',
- templateUrl: './expenses-report-grid.component.html',
- styleUrls: ['./expenses-report-grid.component.scss']
+ selector: 'ga-expenses-report-grid',
+ templateUrl: './expenses-report-grid.component.html',
+ styleUrls: ['./expenses-report-grid.component.scss'],
+ standalone: false
})
export class ExpensesReportGridComponent extends BaseSelectorFilterComponent implements OnInit, AfterViewInit {
dailyData: IExpenseReportData[] = [];
diff --git a/packages/ui-core/shared/src/lib/report/payment-report-grid/payment-report-grid.component.scss b/packages/ui-core/shared/src/lib/report/payment-report-grid/payment-report-grid.component.scss
index b4ae8a50cff..b951d5a7ce6 100644
--- a/packages/ui-core/shared/src/lib/report/payment-report-grid/payment-report-grid.component.scss
+++ b/packages/ui-core/shared/src/lib/report/payment-report-grid/payment-report-grid.component.scss
@@ -1,4 +1,4 @@
-@import 'report';
+@forward 'report';
:host {
display: block;
diff --git a/packages/ui-core/shared/src/lib/report/payment-report-grid/payment-report-grid.component.ts b/packages/ui-core/shared/src/lib/report/payment-report-grid/payment-report-grid.component.ts
index 168db0540e5..691da66805f 100644
--- a/packages/ui-core/shared/src/lib/report/payment-report-grid/payment-report-grid.component.ts
+++ b/packages/ui-core/shared/src/lib/report/payment-report-grid/payment-report-grid.component.ts
@@ -16,9 +16,10 @@ import { BaseSelectorFilterComponent, TimeZoneService } from '../../timesheet/ga
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-payment-report-grid',
- templateUrl: './payment-report-grid.component.html',
- styleUrls: ['./payment-report-grid.component.scss']
+ selector: 'ga-payment-report-grid',
+ templateUrl: './payment-report-grid.component.html',
+ styleUrls: ['./payment-report-grid.component.scss'],
+ standalone: false
})
export class PaymentReportGridComponent extends BaseSelectorFilterComponent implements OnInit, AfterViewInit {
dailyData: IPaymentReportData[] = [];
diff --git a/packages/ui-core/shared/src/lib/report/project-column-view/project-column-view.component.scss b/packages/ui-core/shared/src/lib/report/project-column-view/project-column-view.component.scss
index 0478c41e15c..c78e1112ed1 100644
--- a/packages/ui-core/shared/src/lib/report/project-column-view/project-column-view.component.scss
+++ b/packages/ui-core/shared/src/lib/report/project-column-view/project-column-view.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host {
width: 100%;
@@ -50,4 +50,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/report/project-column-view/project-column-view.component.ts b/packages/ui-core/shared/src/lib/report/project-column-view/project-column-view.component.ts
index cd1c71ddc1c..d84aef224f2 100644
--- a/packages/ui-core/shared/src/lib/report/project-column-view/project-column-view.component.ts
+++ b/packages/ui-core/shared/src/lib/report/project-column-view/project-column-view.component.ts
@@ -3,9 +3,10 @@ import { IOrganizationProject } from '@gauzy/contracts';
import { DEFAULT_SVG } from '@gauzy/ui-core/common';
@Component({
- selector: 'ga-project-column-view',
- templateUrl: './project-column-view.component.html',
- styleUrls: ['./project-column-view.component.scss']
+ selector: 'ga-project-column-view',
+ templateUrl: './project-column-view.component.html',
+ styleUrls: ['./project-column-view.component.scss'],
+ standalone: false
})
export class ProjectColumnViewComponent {
fallbackSvg = DEFAULT_SVG;
diff --git a/packages/ui-core/shared/src/lib/select-asset-modal/img-asset/img-asset.component.scss b/packages/ui-core/shared/src/lib/select-asset-modal/img-asset/img-asset.component.scss
index 419d6db37ec..d2553c37c42 100644
--- a/packages/ui-core/shared/src/lib/select-asset-modal/img-asset/img-asset.component.scss
+++ b/packages/ui-core/shared/src/lib/select-asset-modal/img-asset/img-asset.component.scss
@@ -1,4 +1,4 @@
-@import './themes';
+@use 'themes' as *;
.image-item {
height: 100px;
diff --git a/packages/ui-core/shared/src/lib/select-asset-modal/img-asset/img-asset.component.ts b/packages/ui-core/shared/src/lib/select-asset-modal/img-asset/img-asset.component.ts
index fd38f87af2e..79c3284956c 100644
--- a/packages/ui-core/shared/src/lib/select-asset-modal/img-asset/img-asset.component.ts
+++ b/packages/ui-core/shared/src/lib/select-asset-modal/img-asset/img-asset.component.ts
@@ -8,9 +8,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
import { DeleteConfirmationComponent } from '../../user/forms/delete-confirmation/delete-confirmation.component';
@Component({
- selector: 'ngx-img-asset',
- templateUrl: './img-asset.component.html',
- styleUrls: ['./img-asset.component.scss']
+ selector: 'ngx-img-asset',
+ templateUrl: './img-asset.component.html',
+ styleUrls: ['./img-asset.component.scss'],
+ standalone: false
})
export class NgxImageAssetComponent extends TranslationBaseComponent implements OnInit {
@Input()
diff --git a/packages/ui-core/shared/src/lib/select-asset-modal/img-preview/img-preview.component.scss b/packages/ui-core/shared/src/lib/select-asset-modal/img-preview/img-preview.component.scss
index a451c87a35b..b8a0d8838ad 100644
--- a/packages/ui-core/shared/src/lib/select-asset-modal/img-preview/img-preview.component.scss
+++ b/packages/ui-core/shared/src/lib/select-asset-modal/img-preview/img-preview.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
.img-asset-preview {
width: 100%;
diff --git a/packages/ui-core/shared/src/lib/select-asset-modal/img-preview/img-preview.component.ts b/packages/ui-core/shared/src/lib/select-asset-modal/img-preview/img-preview.component.ts
index 9adedcca842..1ad707efa68 100644
--- a/packages/ui-core/shared/src/lib/select-asset-modal/img-preview/img-preview.component.ts
+++ b/packages/ui-core/shared/src/lib/select-asset-modal/img-preview/img-preview.component.ts
@@ -2,9 +2,10 @@ import { Component, Input } from '@angular/core';
import { IImageAsset } from '@gauzy/contracts';
@Component({
- selector: 'ngx-img-preview',
- templateUrl: './img-preview.component.html',
- styleUrls: ['./img-preview.component.scss']
+ selector: 'ngx-img-preview',
+ templateUrl: './img-preview.component.html',
+ styleUrls: ['./img-preview.component.scss'],
+ standalone: false
})
export class ImagePreviewComponent {
@Input()
diff --git a/packages/ui-core/shared/src/lib/select-asset-modal/select-asset.component.scss b/packages/ui-core/shared/src/lib/select-asset-modal/select-asset.component.scss
index 38e6cfc3e77..74e3404cfea 100644
--- a/packages/ui-core/shared/src/lib/select-asset-modal/select-asset.component.scss
+++ b/packages/ui-core/shared/src/lib/select-asset-modal/select-asset.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
nb-card {
width: 950px;
diff --git a/packages/ui-core/shared/src/lib/select-asset-modal/select-asset.component.ts b/packages/ui-core/shared/src/lib/select-asset-modal/select-asset.component.ts
index cdaadb60bb0..49dad84e6d1 100644
--- a/packages/ui-core/shared/src/lib/select-asset-modal/select-asset.component.ts
+++ b/packages/ui-core/shared/src/lib/select-asset-modal/select-asset.component.ts
@@ -17,9 +17,10 @@ export interface SelectAssetSettings {
@UntilDestroy()
@Component({
- selector: 'ngx-select-asset',
- templateUrl: './select-asset.component.html',
- styleUrls: ['./select-asset.component.scss']
+ selector: 'ngx-select-asset',
+ templateUrl: './select-asset.component.html',
+ styleUrls: ['./select-asset.component.scss'],
+ standalone: false
})
export class SelectAssetComponent extends TranslationBaseComponent implements OnInit {
activeImage: IImageAsset;
diff --git a/packages/ui-core/shared/src/lib/selectors/date-range-picker/date-range-picker.component.scss b/packages/ui-core/shared/src/lib/selectors/date-range-picker/date-range-picker.component.scss
index 32b974c2d1c..ed6a9011937 100644
--- a/packages/ui-core/shared/src/lib/selectors/date-range-picker/date-range-picker.component.scss
+++ b/packages/ui-core/shared/src/lib/selectors/date-range-picker/date-range-picker.component.scss
@@ -1,5 +1,6 @@
-@import 'var';
+@use 'var' as *;
$button-radius: nb-theme(button-rectangle-border-radius);
+
.filter-input {
width: fit-content;
display: flex;
diff --git a/packages/ui-core/shared/src/lib/selectors/date-range-picker/date-range-picker.component.ts b/packages/ui-core/shared/src/lib/selectors/date-range-picker/date-range-picker.component.ts
index bbbca23be54..ba87f02faa5 100644
--- a/packages/ui-core/shared/src/lib/selectors/date-range-picker/date-range-picker.component.ts
+++ b/packages/ui-core/shared/src/lib/selectors/date-range-picker/date-range-picker.component.ts
@@ -30,9 +30,10 @@ import { TimeZoneService } from '../../timesheet/gauzy-filters/timezone-filter';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-date-range-picker',
- templateUrl: './date-range-picker.component.html',
- styleUrls: ['./date-range-picker.component.scss']
+ selector: 'ngx-date-range-picker',
+ templateUrl: './date-range-picker.component.html',
+ styleUrls: ['./date-range-picker.component.scss'],
+ standalone: false
})
export class DateRangePickerComponent extends TranslationBaseComponent implements AfterViewInit, OnInit, OnDestroy {
public picker: NgxDateRangePickerComponent;
diff --git a/packages/ui-core/shared/src/lib/selectors/date/date.component.scss b/packages/ui-core/shared/src/lib/selectors/date/date.component.scss
index 07bf8eb1c05..dbbd7b491e6 100644
--- a/packages/ui-core/shared/src/lib/selectors/date/date.component.scss
+++ b/packages/ui-core/shared/src/lib/selectors/date/date.component.scss
@@ -1,4 +1,4 @@
-@import 'var';
+@use 'var' as *;
:host .calendar-picker {
position: relative;
diff --git a/packages/ui-core/shared/src/lib/selectors/date/date.component.ts b/packages/ui-core/shared/src/lib/selectors/date/date.component.ts
index 4fdca68a10c..530f2da75fe 100644
--- a/packages/ui-core/shared/src/lib/selectors/date/date.component.ts
+++ b/packages/ui-core/shared/src/lib/selectors/date/date.component.ts
@@ -5,12 +5,13 @@ import { monthNames } from '@gauzy/ui-core/core';
import { Store } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-date-selector',
- templateUrl: './date.component.html',
- styleUrls: ['./date.component.scss'],
- host: {
- '(document:click)': 'clickOutside($event)'
- }
+ selector: 'ga-date-selector',
+ templateUrl: './date.component.html',
+ styleUrls: ['./date.component.scss'],
+ host: {
+ '(document:click)': 'clickOutside($event)'
+ },
+ standalone: false
})
export class DateSelectorComponent implements OnInit {
loadCalendar = false;
diff --git a/packages/ui-core/shared/src/lib/selectors/employee/employee.component.scss b/packages/ui-core/shared/src/lib/selectors/employee/employee.component.scss
index 68f52afcb19..d6c4ec5fdba 100644
--- a/packages/ui-core/shared/src/lib/selectors/employee/employee.component.scss
+++ b/packages/ui-core/shared/src/lib/selectors/employee/employee.component.scss
@@ -1,4 +1,4 @@
-@import 'var';
+@use 'var' as *;
ng-select {
.selector-template {
@@ -17,4 +17,4 @@ ng-select {
:host ::ng-deep .employee.ng-select .ng-select-container .ng-value-container {
@include nb-ltr(padding-left, 0);
@include nb-rtl(padding-right, 0);
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/selectors/employee/employee.component.ts b/packages/ui-core/shared/src/lib/selectors/employee/employee.component.ts
index f71ed2d7eb0..7feeafed883 100644
--- a/packages/ui-core/shared/src/lib/selectors/employee/employee.component.ts
+++ b/packages/ui-core/shared/src/lib/selectors/employee/employee.component.ts
@@ -38,10 +38,11 @@ import { ALL_EMPLOYEES_SELECTED } from './default-employee';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-employee-selector',
- templateUrl: './employee.component.html',
- styleUrls: ['./employee.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ga-employee-selector',
+ templateUrl: './employee.component.html',
+ styleUrls: ['./employee.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class EmployeeSelectorComponent implements OnInit, OnDestroy, OnChanges, AfterViewInit {
public hasEditEmployee$: Observable;
diff --git a/packages/ui-core/shared/src/lib/selectors/organization/organization.component.scss b/packages/ui-core/shared/src/lib/selectors/organization/organization.component.scss
index eab8eded340..2dac352fa41 100644
--- a/packages/ui-core/shared/src/lib/selectors/organization/organization.component.scss
+++ b/packages/ui-core/shared/src/lib/selectors/organization/organization.component.scss
@@ -1,5 +1,7 @@
-@import 'var';
+@use 'var' as *;
+
$radius: nb-theme(button-rectangle-border-radius);
+
ng-select {
.selector-template {
display: flex;
diff --git a/packages/ui-core/shared/src/lib/selectors/organization/organization.component.ts b/packages/ui-core/shared/src/lib/selectors/organization/organization.component.ts
index 921d138ccb2..2f186762850 100644
--- a/packages/ui-core/shared/src/lib/selectors/organization/organization.component.ts
+++ b/packages/ui-core/shared/src/lib/selectors/organization/organization.component.ts
@@ -16,9 +16,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-organization-selector',
- templateUrl: './organization.component.html',
- styleUrls: ['./organization.component.scss']
+ selector: 'ga-organization-selector',
+ templateUrl: './organization.component.html',
+ styleUrls: ['./organization.component.scss'],
+ standalone: false
})
export class OrganizationSelectorComponent implements AfterViewInit, OnInit, OnDestroy {
public organizations: IOrganization[] = [];
diff --git a/packages/ui-core/shared/src/lib/selectors/project/project/project.component.scss b/packages/ui-core/shared/src/lib/selectors/project/project/project.component.scss
index 4c466dc5440..3906ec419b6 100644
--- a/packages/ui-core/shared/src/lib/selectors/project/project/project.component.scss
+++ b/packages/ui-core/shared/src/lib/selectors/project/project/project.component.scss
@@ -1,4 +1,4 @@
-@import 'var';
+@use 'var' as *;
:host {
min-width: 200px;
@@ -31,4 +31,4 @@
img{
object-fit: cover;
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/selectors/project/project/project.component.ts b/packages/ui-core/shared/src/lib/selectors/project/project/project.component.ts
index 4220d4099f8..5ee7e554b76 100644
--- a/packages/ui-core/shared/src/lib/selectors/project/project/project.component.ts
+++ b/packages/ui-core/shared/src/lib/selectors/project/project/project.component.ts
@@ -26,16 +26,17 @@ import { ALL_PROJECT_SELECTED } from './default-project';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-project-selector',
- templateUrl: './project.component.html',
- styleUrls: ['./project.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => ProjectSelectorComponent),
- multi: true
- }
- ]
+ selector: 'ga-project-selector',
+ templateUrl: './project.component.html',
+ styleUrls: ['./project.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => ProjectSelectorComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class ProjectSelectorComponent implements OnInit, OnDestroy, AfterViewInit {
public projects: IOrganizationProject[] = [];
diff --git a/packages/ui-core/shared/src/lib/selectors/team/team/team.component.scss b/packages/ui-core/shared/src/lib/selectors/team/team/team.component.scss
index 4c466dc5440..3906ec419b6 100644
--- a/packages/ui-core/shared/src/lib/selectors/team/team/team.component.scss
+++ b/packages/ui-core/shared/src/lib/selectors/team/team/team.component.scss
@@ -1,4 +1,4 @@
-@import 'var';
+@use 'var' as *;
:host {
min-width: 200px;
@@ -31,4 +31,4 @@
img{
object-fit: cover;
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/selectors/team/team/team.component.ts b/packages/ui-core/shared/src/lib/selectors/team/team/team.component.ts
index 2a797227fc2..72c0d11ac3b 100644
--- a/packages/ui-core/shared/src/lib/selectors/team/team/team.component.ts
+++ b/packages/ui-core/shared/src/lib/selectors/team/team/team.component.ts
@@ -26,16 +26,17 @@ import { ALL_TEAM_SELECTED } from './default-team';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-team-selector',
- templateUrl: './team.component.html',
- styleUrls: ['./team.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TeamSelectorComponent),
- multi: true
- }
- ]
+ selector: 'ga-team-selector',
+ templateUrl: './team.component.html',
+ styleUrls: ['./team.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TeamSelectorComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TeamSelectorComponent implements OnInit, OnDestroy {
public organization: IOrganization;
diff --git a/packages/ui-core/shared/src/lib/settings/danger-zone-mutation/danger-zone-mutation.component.ts b/packages/ui-core/shared/src/lib/settings/danger-zone-mutation/danger-zone-mutation.component.ts
index 9edcca9ef64..e6cecbe1911 100644
--- a/packages/ui-core/shared/src/lib/settings/danger-zone-mutation/danger-zone-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/settings/danger-zone-mutation/danger-zone-mutation.component.ts
@@ -5,9 +5,10 @@ import { ToastrService } from '@gauzy/ui-core/core';
import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@Component({
- selector: 'ga-danger-zone-mutation',
- templateUrl: './danger-zone-mutation.component.html',
- styleUrls: ['./danger-zone-mutation.component.scss']
+ selector: 'ga-danger-zone-mutation',
+ templateUrl: './danger-zone-mutation.component.html',
+ styleUrls: ['./danger-zone-mutation.component.scss'],
+ standalone: false
})
export class DangerZoneMutationComponent extends TranslationBaseComponent {
recordType: string;
diff --git a/packages/ui-core/shared/src/lib/sidebar/add-icon/add-icon.component.ts b/packages/ui-core/shared/src/lib/sidebar/add-icon/add-icon.component.ts
index f2b5d7bd404..0260524ae78 100644
--- a/packages/ui-core/shared/src/lib/sidebar/add-icon/add-icon.component.ts
+++ b/packages/ui-core/shared/src/lib/sidebar/add-icon/add-icon.component.ts
@@ -5,9 +5,10 @@ import { TranslateService } from '@ngx-translate/core';
import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@Component({
- selector: 'ga-add-icon',
- templateUrl: 'add-icon.component.html',
- styleUrls: ['add-icon.component.scss']
+ selector: 'ga-add-icon',
+ templateUrl: 'add-icon.component.html',
+ styleUrls: ['add-icon.component.scss'],
+ standalone: false
})
export class AddIconComponent extends TranslationBaseComponent implements OnDestroy {
private _ngDestroy$ = new Subject();
diff --git a/packages/ui-core/shared/src/lib/sidebar/delete-base/delete-base.component.scss b/packages/ui-core/shared/src/lib/sidebar/delete-base/delete-base.component.scss
index bd2648ca7e4..4f046eacbf7 100644
--- a/packages/ui-core/shared/src/lib/sidebar/delete-base/delete-base.component.scss
+++ b/packages/ui-core/shared/src/lib/sidebar/delete-base/delete-base.component.scss
@@ -1 +1 @@
-@import '../delete-category/delete-category.component.scss';
\ No newline at end of file
+@forward '../delete-category/delete-category.component';
diff --git a/packages/ui-core/shared/src/lib/sidebar/delete-base/delete-base.component.ts b/packages/ui-core/shared/src/lib/sidebar/delete-base/delete-base.component.ts
index 41841115a26..2c046b624f4 100644
--- a/packages/ui-core/shared/src/lib/sidebar/delete-base/delete-base.component.ts
+++ b/packages/ui-core/shared/src/lib/sidebar/delete-base/delete-base.component.ts
@@ -6,9 +6,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
import { HelpCenterService } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-delete-base',
- templateUrl: 'delete-base.component.html',
- styleUrls: ['delete-base.component.scss']
+ selector: 'ga-delete-base',
+ templateUrl: 'delete-base.component.html',
+ styleUrls: ['delete-base.component.scss'],
+ standalone: false
})
export class DeleteBaseComponent extends TranslationBaseComponent implements OnDestroy {
@Input() base: IHelpCenter;
diff --git a/packages/ui-core/shared/src/lib/sidebar/delete-category/delete-category.component.scss b/packages/ui-core/shared/src/lib/sidebar/delete-category/delete-category.component.scss
index b0d5ae0f662..7c8ab0908ec 100644
--- a/packages/ui-core/shared/src/lib/sidebar/delete-category/delete-category.component.scss
+++ b/packages/ui-core/shared/src/lib/sidebar/delete-category/delete-category.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.main {
display: flex;
@@ -23,4 +23,4 @@
display: flex;
flex-direction: row;
justify-content: flex-start;
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/sidebar/delete-category/delete-category.component.ts b/packages/ui-core/shared/src/lib/sidebar/delete-category/delete-category.component.ts
index 3877c41d437..faca56d9b7c 100644
--- a/packages/ui-core/shared/src/lib/sidebar/delete-category/delete-category.component.ts
+++ b/packages/ui-core/shared/src/lib/sidebar/delete-category/delete-category.component.ts
@@ -6,9 +6,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
import { HelpCenterService } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-delete-category',
- templateUrl: 'delete-category.component.html',
- styleUrls: ['delete-category.component.scss']
+ selector: 'ga-delete-category',
+ templateUrl: 'delete-category.component.html',
+ styleUrls: ['delete-category.component.scss'],
+ standalone: false
})
export class DeleteCategoryComponent extends TranslationBaseComponent implements OnDestroy {
@Input() category: IHelpCenter;
diff --git a/packages/ui-core/shared/src/lib/sidebar/index.ts b/packages/ui-core/shared/src/lib/sidebar/index.ts
index d682d828c91..00b3985c278 100644
--- a/packages/ui-core/shared/src/lib/sidebar/index.ts
+++ b/packages/ui-core/shared/src/lib/sidebar/index.ts
@@ -4,7 +4,7 @@ export * from './delete-base/delete-base.component';
export * from './delete-base/delete-base.module';
export * from './delete-category/delete-category.component';
export * from './delete-category/delete-category.module';
-export * from './knowledeg-base/knowledeg-base.component';
-export * from './knowledeg-base/knowledeg-base.module';
+export * from './knowledge-base/knowledge-base.component';
+export * from './knowledge-base/knowledge-base.module';
export * from './sidebar.component';
export * from './sidebar.module';
diff --git a/packages/ui-core/shared/src/lib/sidebar/knowledeg-base/knowledeg-base.component.html b/packages/ui-core/shared/src/lib/sidebar/knowledge-base/knowledge-base.component.html
similarity index 100%
rename from packages/ui-core/shared/src/lib/sidebar/knowledeg-base/knowledeg-base.component.html
rename to packages/ui-core/shared/src/lib/sidebar/knowledge-base/knowledge-base.component.html
diff --git a/packages/ui-core/shared/src/lib/sidebar/knowledeg-base/knowledeg-base.component.scss b/packages/ui-core/shared/src/lib/sidebar/knowledge-base/knowledge-base.component.scss
similarity index 96%
rename from packages/ui-core/shared/src/lib/sidebar/knowledeg-base/knowledeg-base.component.scss
rename to packages/ui-core/shared/src/lib/sidebar/knowledge-base/knowledge-base.component.scss
index 2bfdfec73d9..922c63cfd31 100644
--- a/packages/ui-core/shared/src/lib/sidebar/knowledeg-base/knowledeg-base.component.scss
+++ b/packages/ui-core/shared/src/lib/sidebar/knowledge-base/knowledge-base.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.card {
display: flex;
@@ -49,4 +49,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/sidebar/knowledeg-base/knowledeg-base.component.ts b/packages/ui-core/shared/src/lib/sidebar/knowledge-base/knowledge-base.component.ts
similarity index 96%
rename from packages/ui-core/shared/src/lib/sidebar/knowledeg-base/knowledeg-base.component.ts
rename to packages/ui-core/shared/src/lib/sidebar/knowledge-base/knowledge-base.component.ts
index 1a008e21d11..ac9afaa1aa5 100644
--- a/packages/ui-core/shared/src/lib/sidebar/knowledeg-base/knowledeg-base.component.ts
+++ b/packages/ui-core/shared/src/lib/sidebar/knowledge-base/knowledge-base.component.ts
@@ -8,9 +8,10 @@ import { Store } from '@gauzy/ui-core/core';
import { HelpCenterService } from '@gauzy/ui-core/core';
@Component({
- selector: 'ga-knowledeg-base-mutation',
- templateUrl: './knowledeg-base.component.html',
- styleUrls: ['./knowledeg-base.component.scss']
+ selector: 'ga-knowledge-base-mutation',
+ templateUrl: './knowledge-base.component.html',
+ styleUrls: ['./knowledge-base.component.scss'],
+ standalone: false
})
export class KnowledgeBaseComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
@Input() base?: IHelpCenter;
diff --git a/packages/ui-core/shared/src/lib/sidebar/knowledeg-base/knowledeg-base.module.ts b/packages/ui-core/shared/src/lib/sidebar/knowledge-base/knowledge-base.module.ts
similarity index 93%
rename from packages/ui-core/shared/src/lib/sidebar/knowledeg-base/knowledeg-base.module.ts
rename to packages/ui-core/shared/src/lib/sidebar/knowledge-base/knowledge-base.module.ts
index e82277cb4d1..88bb966eafd 100644
--- a/packages/ui-core/shared/src/lib/sidebar/knowledeg-base/knowledeg-base.module.ts
+++ b/packages/ui-core/shared/src/lib/sidebar/knowledge-base/knowledge-base.module.ts
@@ -11,7 +11,7 @@ import {
} from '@nebular/theme';
import { ColorPickerModule, ColorPickerService } from 'ngx-color-picker';
import { TranslateModule } from '@ngx-translate/core';
-import { KnowledgeBaseComponent } from './knowledeg-base.component';
+import { KnowledgeBaseComponent } from './knowledge-base.component';
import { LanguageSelectorModule } from '../../language/language-selector';
@NgModule({
diff --git a/packages/ui-core/shared/src/lib/sidebar/sidebar.component.scss b/packages/ui-core/shared/src/lib/sidebar/sidebar.component.scss
index 17758e648e7..135491872f4 100644
--- a/packages/ui-core/shared/src/lib/sidebar/sidebar.component.scss
+++ b/packages/ui-core/shared/src/lib/sidebar/sidebar.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
.sidemenu-wrap {
display: flex;
@@ -80,7 +80,7 @@
line-height: 14px;
letter-spacing: 0em;
text-align: center;
-
+
&.privacy-category {
margin-right: 0.5rem;
}
@@ -192,4 +192,4 @@
nb-card-body {
padding: 1rem;
}
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/sidebar/sidebar.component.ts b/packages/ui-core/shared/src/lib/sidebar/sidebar.component.ts
index 80bf4b18469..51eafc8e1f2 100644
--- a/packages/ui-core/shared/src/lib/sidebar/sidebar.component.ts
+++ b/packages/ui-core/shared/src/lib/sidebar/sidebar.component.ts
@@ -1,25 +1,24 @@
import { HelpCenterActionEnum, HelpCenterFlagEnum, IHelpCenter, IOrganization } from '@gauzy/contracts';
import { Component, ViewChild, OnInit, OnDestroy, Output, EventEmitter, AfterViewInit } from '@angular/core';
import { TreeComponent, ITreeOptions } from '@ali-hm/angular-tree-component';
+import { firstValueFrom } from 'rxjs';
+import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
-import { ErrorHandlingService, ToastrService } from '@gauzy/ui-core/core';
+import { ErrorHandlingService, HelpCenterService, Store, ToastrService } from '@gauzy/ui-core/core';
import { TranslateService } from '@ngx-translate/core';
import { NbDialogService, NbMenuItem, NbMenuService } from '@nebular/theme';
import { AddIconComponent } from './add-icon/add-icon.component';
import { filter, tap } from 'rxjs/operators';
import { DeleteCategoryComponent } from './delete-category/delete-category.component';
import { DeleteBaseComponent } from './delete-base/delete-base.component';
-import { HelpCenterService } from '@gauzy/ui-core/core';
-import { Store } from '@gauzy/ui-core/core';
-import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
-import { KnowledgeBaseComponent } from './knowledeg-base/knowledeg-base.component';
-import { firstValueFrom } from 'rxjs';
+import { KnowledgeBaseComponent } from './knowledge-base/knowledge-base.component';
@UntilDestroy({ checkProperties: true })
@Component({
selector: 'ga-sidebar',
templateUrl: './sidebar.component.html',
- styleUrls: ['./sidebar.component.scss']
+ styleUrls: ['./sidebar.component.scss'],
+ standalone: false
})
export class SidebarComponent extends TranslationBaseComponent implements OnInit, OnDestroy, AfterViewInit {
public organization: IOrganization;
diff --git a/packages/ui-core/shared/src/lib/sidebar/sidebar.module.ts b/packages/ui-core/shared/src/lib/sidebar/sidebar.module.ts
index bed1b3b7143..7c6593ae602 100644
--- a/packages/ui-core/shared/src/lib/sidebar/sidebar.module.ts
+++ b/packages/ui-core/shared/src/lib/sidebar/sidebar.module.ts
@@ -18,7 +18,7 @@ import { TranslateModule } from '@ngx-translate/core';
import { HelpCenterService } from '@gauzy/ui-core/core';
import { AddIconModule } from './add-icon/add-icon.module';
import { SidebarComponent } from './sidebar.component';
-import { KnowledgeBaseModule } from './knowledeg-base/knowledeg-base.module';
+import { KnowledgeBaseModule } from './knowledge-base/knowledge-base.module';
import { DeleteCategoryModule } from './delete-category/delete-category.module';
import { DeleteBaseModule } from './delete-base/delete-base.module';
diff --git a/packages/ui-core/shared/src/lib/single-statistic/single-statistic.component.scss b/packages/ui-core/shared/src/lib/single-statistic/single-statistic.component.scss
index 65267080c9e..7d4bb7a6a84 100644
--- a/packages/ui-core/shared/src/lib/single-statistic/single-statistic.component.scss
+++ b/packages/ui-core/shared/src/lib/single-statistic/single-statistic.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
@include nb-install-component() {
.statistic-component {
@@ -28,4 +28,4 @@
color: var(--color-success-default);
font-weight: 600;
}
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/single-statistic/single-statistic.component.ts b/packages/ui-core/shared/src/lib/single-statistic/single-statistic.component.ts
index 67aef340666..3214d219444 100644
--- a/packages/ui-core/shared/src/lib/single-statistic/single-statistic.component.ts
+++ b/packages/ui-core/shared/src/lib/single-statistic/single-statistic.component.ts
@@ -1,9 +1,10 @@
import { Component, OnInit, Input } from '@angular/core';
@Component({
- selector: 'ga-single-statistic',
- templateUrl: './single-statistic.component.html',
- styleUrls: ['./single-statistic.component.scss']
+ selector: 'ga-single-statistic',
+ templateUrl: './single-statistic.component.html',
+ styleUrls: ['./single-statistic.component.scss'],
+ standalone: false
})
export class SingleStatisticComponent implements OnInit {
@Input() title: string;
diff --git a/packages/ui-core/shared/src/lib/skills/skills-input/skills-input.component.ts b/packages/ui-core/shared/src/lib/skills/skills-input/skills-input.component.ts
index a246879ba17..561aad9b402 100644
--- a/packages/ui-core/shared/src/lib/skills/skills-input/skills-input.component.ts
+++ b/packages/ui-core/shared/src/lib/skills/skills-input/skills-input.component.ts
@@ -3,9 +3,10 @@ import { NgModel, UntypedFormGroup } from '@angular/forms';
import { SkillsService } from '@gauzy/ui-core/core';
@Component({
- selector: 'ngx-skills-input',
- templateUrl: './skills-input.component.html',
- styleUrls: ['./skills-input.component.scss']
+ selector: 'ngx-skills-input',
+ templateUrl: './skills-input.component.html',
+ styleUrls: ['./skills-input.component.scss'],
+ standalone: false
})
export class SkillsInputComponent implements OnInit {
@ViewChild('shownInput', { static: true })
diff --git a/packages/ui-core/shared/src/lib/smart-data-layout/no-data-message/no-data-message.component.scss b/packages/ui-core/shared/src/lib/smart-data-layout/no-data-message/no-data-message.component.scss
index 78a86c040a8..db22ab9a2d7 100644
--- a/packages/ui-core/shared/src/lib/smart-data-layout/no-data-message/no-data-message.component.scss
+++ b/packages/ui-core/shared/src/lib/smart-data-layout/no-data-message/no-data-message.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-cards';
+@use 'gauzy/_gauzy-cards' as *;
.no-data-found {
overflow-y: hidden;
diff --git a/packages/ui-core/shared/src/lib/smart-data-layout/no-data-message/no-data-message.component.ts b/packages/ui-core/shared/src/lib/smart-data-layout/no-data-message/no-data-message.component.ts
index 344e3777520..84a63c2efed 100644
--- a/packages/ui-core/shared/src/lib/smart-data-layout/no-data-message/no-data-message.component.ts
+++ b/packages/ui-core/shared/src/lib/smart-data-layout/no-data-message/no-data-message.component.ts
@@ -5,9 +5,10 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-no-data-message',
- templateUrl: './no-data-message.component.html',
- styleUrls: ['./no-data-message.component.scss']
+ selector: 'ngx-no-data-message',
+ templateUrl: './no-data-message.component.html',
+ styleUrls: ['./no-data-message.component.scss'],
+ standalone: false
})
export class NoDataMessageComponent extends TranslationBaseComponent implements OnInit {
@Input() title: string = this.getTranslation('SM_TABLE.NO_DATA_MESSAGE');
diff --git a/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination-filter-base.component.ts b/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination-filter-base.component.ts
index 6f97c1b49b3..f6f89d72891 100644
--- a/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination-filter-base.component.ts
+++ b/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination-filter-base.component.ts
@@ -15,7 +15,8 @@ export interface IPaginationBase {
@UntilDestroy({ checkProperties: true })
@Component({
- template: ''
+ template: '',
+ standalone: false
})
export class PaginationFilterBaseComponent extends TranslationBaseComponent implements AfterViewInit {
public activePage: number = 1;
diff --git a/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination-v2/pagination-v2.component.scss b/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination-v2/pagination-v2.component.scss
index fdb80054681..4eae1148aa6 100644
--- a/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination-v2/pagination-v2.component.scss
+++ b/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination-v2/pagination-v2.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-overrides' as *;
:host {
diff --git a/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination-v2/pagination-v2.component.ts b/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination-v2/pagination-v2.component.ts
index 16bcb227ab4..8c8b1692535 100644
--- a/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination-v2/pagination-v2.component.ts
+++ b/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination-v2/pagination-v2.component.ts
@@ -6,9 +6,10 @@ import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-pagination',
- templateUrl: './pagination-v2.component.html',
- styleUrls: ['./pagination-v2.component.scss']
+ selector: 'ngx-pagination',
+ templateUrl: './pagination-v2.component.html',
+ styleUrls: ['./pagination-v2.component.scss'],
+ standalone: false
})
export class PaginationV2Component implements OnChanges, OnDestroy {
private _source: LocalDataSource;
diff --git a/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination.component.scss b/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination.component.scss
index be318c3062b..e57ade3dfad 100644
--- a/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination.component.scss
+++ b/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination.component.scss
@@ -1,5 +1,5 @@
-@import 'themes';
-@import 'gauzy/_gauzy-overrides';
+@use 'themes' as *;
+@use 'gauzy/_gauzy-overrides' as *;
:host {
a,
diff --git a/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination.component.ts b/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination.component.ts
index cec1a740edf..6a021bac1b9 100644
--- a/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination.component.ts
+++ b/packages/ui-core/shared/src/lib/smart-data-layout/pagination/pagination.component.ts
@@ -6,9 +6,10 @@ import { distinctUntilChange } from '@gauzy/ui-core/common';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-pagination',
- templateUrl: './pagination.component.html',
- styleUrls: ['./pagination.component.scss']
+ selector: 'ga-pagination',
+ templateUrl: './pagination.component.html',
+ styleUrls: ['./pagination.component.scss'],
+ standalone: false
})
export class PaginationComponent implements OnInit {
/*
diff --git a/packages/ui-core/shared/src/lib/smtp/smtp.component.scss b/packages/ui-core/shared/src/lib/smtp/smtp.component.scss
index 86130d493c3..516b4a82c49 100644
--- a/packages/ui-core/shared/src/lib/smtp/smtp.component.scss
+++ b/packages/ui-core/shared/src/lib/smtp/smtp.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host {
header {
diff --git a/packages/ui-core/shared/src/lib/smtp/smtp.component.ts b/packages/ui-core/shared/src/lib/smtp/smtp.component.ts
index ea698ef3744..be803d4b76e 100644
--- a/packages/ui-core/shared/src/lib/smtp/smtp.component.ts
+++ b/packages/ui-core/shared/src/lib/smtp/smtp.component.ts
@@ -13,8 +13,9 @@ import { patterns } from '../regex/regex-patterns.const';
@UntilDestroy({ checkProperties: true })
@Component({
- templateUrl: './smtp.component.html',
- styleUrls: ['./smtp.component.scss']
+ templateUrl: './smtp.component.html',
+ styleUrls: ['./smtp.component.scss'],
+ standalone: false
})
export class SMTPComponent extends TranslationBaseComponent implements OnInit, OnChanges, AfterViewInit {
@ViewChild('formDirective') formDirective: FormGroupDirective;
diff --git a/packages/ui-core/shared/src/lib/star-rating/star-rating-input/star-rating-input.component.ts b/packages/ui-core/shared/src/lib/star-rating/star-rating-input/star-rating-input.component.ts
index 87cae70c0f2..9988bd11ddc 100644
--- a/packages/ui-core/shared/src/lib/star-rating/star-rating-input/star-rating-input.component.ts
+++ b/packages/ui-core/shared/src/lib/star-rating/star-rating-input/star-rating-input.component.ts
@@ -2,16 +2,17 @@ import { Component } from '@angular/core';
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';
@Component({
- selector: 'ga-star-rating-input',
- templateUrl: './star-rating-input.component.html',
- styleUrls: ['./star-rating-input.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: StarRatingInputComponent,
- multi: true
- }
- ]
+ selector: 'ga-star-rating-input',
+ templateUrl: './star-rating-input.component.html',
+ styleUrls: ['./star-rating-input.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: StarRatingInputComponent,
+ multi: true
+ }
+ ],
+ standalone: false
})
export class StarRatingInputComponent implements ControlValueAccessor {
public stars = [1, 2, 3, 4, 5];
diff --git a/packages/ui-core/shared/src/lib/star-rating/star-rating-output/star-rating-output.component.ts b/packages/ui-core/shared/src/lib/star-rating/star-rating-output/star-rating-output.component.ts
index a8ccdf6200c..b3679b2237f 100644
--- a/packages/ui-core/shared/src/lib/star-rating/star-rating-output/star-rating-output.component.ts
+++ b/packages/ui-core/shared/src/lib/star-rating/star-rating-output/star-rating-output.component.ts
@@ -7,9 +7,10 @@ export enum StarsIcon {
}
@Component({
- selector: 'ga-star-rating-output',
- templateUrl: './star-rating-output.component.html',
- styleUrls: ['./star-rating-output.component.scss']
+ selector: 'ga-star-rating-output',
+ templateUrl: './star-rating-output.component.html',
+ styleUrls: ['./star-rating-output.component.scss'],
+ standalone: false
})
export class StarRatingOutputComponent {
@Input() isGridView = false;
diff --git a/packages/ui-core/shared/src/lib/status-badge/status-badge.component.ts b/packages/ui-core/shared/src/lib/status-badge/status-badge.component.ts
index 72c0d7bbb59..21195377a7d 100644
--- a/packages/ui-core/shared/src/lib/status-badge/status-badge.component.ts
+++ b/packages/ui-core/shared/src/lib/status-badge/status-badge.component.ts
@@ -2,9 +2,10 @@ import { Component, OnInit, Input } from '@angular/core';
import { ComponentLayoutStyleEnum } from '@gauzy/contracts';
@Component({
- selector: 'ga-status-badge',
- templateUrl: './status-badge.component.html',
- styleUrls: ['./status-badge.component.scss']
+ selector: 'ga-status-badge',
+ templateUrl: './status-badge.component.html',
+ styleUrls: ['./status-badge.component.scss'],
+ standalone: false
})
export class StatusBadgeComponent implements OnInit {
text: string;
diff --git a/packages/ui-core/shared/src/lib/table-components/allow-screenshot-capture/allow-screenshot-capture.component.ts b/packages/ui-core/shared/src/lib/table-components/allow-screenshot-capture/allow-screenshot-capture.component.ts
index 5fd9e6e5a46..14ada12614d 100644
--- a/packages/ui-core/shared/src/lib/table-components/allow-screenshot-capture/allow-screenshot-capture.component.ts
+++ b/packages/ui-core/shared/src/lib/table-components/allow-screenshot-capture/allow-screenshot-capture.component.ts
@@ -5,9 +5,10 @@ import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-allow-screenshot-capture',
- templateUrl: './allow-screenshot-capture.component.html',
- styleUrls: ['./allow-screenshot-capture.component.scss']
+ selector: 'gauzy-allow-screenshot-capture',
+ templateUrl: './allow-screenshot-capture.component.html',
+ styleUrls: ['./allow-screenshot-capture.component.scss'],
+ standalone: false
})
export class AllowScreenshotCaptureComponent implements OnInit {
diff --git a/packages/ui-core/shared/src/lib/table-components/assigned-to/assigned-to.component.ts b/packages/ui-core/shared/src/lib/table-components/assigned-to/assigned-to.component.ts
index ea88a8ebc41..94da08f5c4c 100644
--- a/packages/ui-core/shared/src/lib/table-components/assigned-to/assigned-to.component.ts
+++ b/packages/ui-core/shared/src/lib/table-components/assigned-to/assigned-to.component.ts
@@ -2,8 +2,9 @@ import { Component, Input } from '@angular/core';
import { ITask } from '@gauzy/contracts';
@Component({
- selector: 'ngx-assigned-to',
- templateUrl: './assigned-to.component.html',
+ selector: 'ngx-assigned-to',
+ templateUrl: './assigned-to.component.html',
+ standalone: false
})
export class AssignedToComponent {
diff --git a/packages/ui-core/shared/src/lib/table-components/clickable-link/clickable-link.component.ts b/packages/ui-core/shared/src/lib/table-components/clickable-link/clickable-link.component.ts
index 6489b202306..b937094807c 100644
--- a/packages/ui-core/shared/src/lib/table-components/clickable-link/clickable-link.component.ts
+++ b/packages/ui-core/shared/src/lib/table-components/clickable-link/clickable-link.component.ts
@@ -1,9 +1,10 @@
import { Component, Input, OnInit } from '@angular/core';
@Component({
- selector: 'ngx-clickable-link',
- templateUrl: './clickable-link.component.html',
- styleUrls: ['./clickable-link.component.scss']
+ selector: 'ngx-clickable-link',
+ templateUrl: './clickable-link.component.html',
+ styleUrls: ['./clickable-link.component.scss'],
+ standalone: false
})
export class ClickableLinkComponent implements OnInit {
diff --git a/packages/ui-core/shared/src/lib/table-components/company-logo/company-logo.component.ts b/packages/ui-core/shared/src/lib/table-components/company-logo/company-logo.component.ts
index cdbc2a21773..3bee6e2a64e 100644
--- a/packages/ui-core/shared/src/lib/table-components/company-logo/company-logo.component.ts
+++ b/packages/ui-core/shared/src/lib/table-components/company-logo/company-logo.component.ts
@@ -1,9 +1,10 @@
import { Component, Input } from '@angular/core';
@Component({
- selector: 'ga-company-logo',
- templateUrl: './company-logo.component.html',
- styleUrls: ['./company-logo.component.scss']
+ selector: 'ga-company-logo',
+ templateUrl: './company-logo.component.html',
+ styleUrls: ['./company-logo.component.scss'],
+ standalone: false
})
export class CompanyLogoComponent {
@Input() value: string | number;
diff --git a/packages/ui-core/shared/src/lib/table-components/contact-links/contact-links.component.scss b/packages/ui-core/shared/src/lib/table-components/contact-links/contact-links.component.scss
index a32783a06e9..6dcc9c54673 100644
--- a/packages/ui-core/shared/src/lib/table-components/contact-links/contact-links.component.scss
+++ b/packages/ui-core/shared/src/lib/table-components/contact-links/contact-links.component.scss
@@ -1 +1 @@
-@import '@shared/_contact-links';
+@use '@shared/_contact-links';
diff --git a/packages/ui-core/shared/src/lib/table-components/contact-links/contact-links.component.ts b/packages/ui-core/shared/src/lib/table-components/contact-links/contact-links.component.ts
index 339ae590445..309ceecd570 100644
--- a/packages/ui-core/shared/src/lib/table-components/contact-links/contact-links.component.ts
+++ b/packages/ui-core/shared/src/lib/table-components/contact-links/contact-links.component.ts
@@ -5,7 +5,7 @@ import { Router } from '@angular/router';
selector: 'ngx-contact-links',
template: `
- `
+ `,
+ standalone: false
})
export class RangeFilterComponent extends DefaultFilter implements OnInit, OnDestroy {
public rangeControl = new FormGroup({
@@ -39,22 +39,21 @@ export class RangeFilterComponent extends DefaultFilter implements OnInit, OnDes
}
ngOnInit() {
- // Subscribe to both min and max value changes
+ // Subscribe to both min and max value changes with optimized operators
this.subscription = this.rangeControl.valueChanges
.pipe(
debounceTime(this.debounceTime), // Reduce unnecessary requests
- distinctUntilChanged(), // Avoid redundant filtering
- tap(({ min, max }) => {
- if (min !== null || max !== null) {
- this.column.filterFunction({ min, max }, this.column.id);
- }
- })
+ distinctUntilChanged((prev, curr) => prev.min === curr.min && prev.max === curr.max), // Compare min and max values
+ filter(({ min, max }) => min !== null || max !== null), // Only process when at least one value is provided
+ tap(({ min, max }) => this.column.filterFunction({ min, max }, this.column.id))
)
.subscribe();
}
ngOnDestroy() {
// Cleanup subscription to avoid memory leaks
- this.subscription.unsubscribe();
+ if (this.subscription) {
+ this.subscription.unsubscribe();
+ }
}
}
diff --git a/packages/ui-core/shared/src/lib/table-filters/tags-color-filter.component.ts b/packages/ui-core/shared/src/lib/table-filters/tags-color-filter.component.ts
index 783061ec6b0..6819d22fd9a 100644
--- a/packages/ui-core/shared/src/lib/table-filters/tags-color-filter.component.ts
+++ b/packages/ui-core/shared/src/lib/table-filters/tags-color-filter.component.ts
@@ -3,15 +3,16 @@ import { DefaultFilter } from 'angular2-smart-table';
import { ITag } from '@gauzy/contracts';
@Component({
- selector: 'ga-tag-color-filter',
- template: `
+ selector: 'ga-tag-color-filter',
+ template: `
- `
+ `,
+ standalone: false
})
export class TagsColorFilterComponent extends DefaultFilter implements OnChanges {
constructor() {
diff --git a/packages/ui-core/shared/src/lib/table-filters/task-status-filter.component.ts b/packages/ui-core/shared/src/lib/table-filters/task-status-filter.component.ts
index 327450331b9..d43a0553b57 100644
--- a/packages/ui-core/shared/src/lib/table-filters/task-status-filter.component.ts
+++ b/packages/ui-core/shared/src/lib/table-filters/task-status-filter.component.ts
@@ -3,15 +3,16 @@ import { DefaultFilter } from 'angular2-smart-table';
import { ITaskStatus } from '@gauzy/contracts';
@Component({
- selector: 'ga-task-status-select-filter',
- template: `
+ selector: 'ga-task-status-select-filter',
+ template: `
- `
+ `,
+ standalone: false
})
export class TaskStatusFilterComponent extends DefaultFilter implements OnChanges {
constructor() {
diff --git a/packages/ui-core/shared/src/lib/table-filters/toggle-filter/toggle-filter.component.ts b/packages/ui-core/shared/src/lib/table-filters/toggle-filter/toggle-filter.component.ts
index c1e253dfb8d..72d114f64e7 100644
--- a/packages/ui-core/shared/src/lib/table-filters/toggle-filter/toggle-filter.component.ts
+++ b/packages/ui-core/shared/src/lib/table-filters/toggle-filter/toggle-filter.component.ts
@@ -3,9 +3,10 @@ import { DefaultFilter } from 'angular2-smart-table';
import { faCheck, faBan, faTimes } from '@fortawesome/free-solid-svg-icons';
@Component({
- selector: 'ga-toggle-filter',
- templateUrl: './toggle-filter.component.html',
- styleUrls: ['./toggle-filter.component.scss']
+ selector: 'ga-toggle-filter',
+ templateUrl: './toggle-filter.component.html',
+ styleUrls: ['./toggle-filter.component.scss'],
+ standalone: false
})
export class ToggleFilterComponent extends DefaultFilter implements OnChanges {
faCheck = faCheck;
diff --git a/packages/ui-core/shared/src/lib/table-filters/vendor-filter.component.ts b/packages/ui-core/shared/src/lib/table-filters/vendor-filter.component.ts
index 6a03dbb2385..59bfe7120e7 100644
--- a/packages/ui-core/shared/src/lib/table-filters/vendor-filter.component.ts
+++ b/packages/ui-core/shared/src/lib/table-filters/vendor-filter.component.ts
@@ -3,8 +3,8 @@ import { DefaultFilter } from 'angular2-smart-table';
import { IOrganizationVendor } from '@gauzy/contracts';
@Component({
- selector: 'ga-vendor-select-filter',
- template: `
+ selector: 'ga-vendor-select-filter',
+ template: `
- `
+ `,
+ standalone: false
})
export class VendorFilterComponent extends DefaultFilter implements OnChanges {
constructor() {
diff --git a/packages/ui-core/shared/src/lib/tags/tags-color-input/tags-color-input.component.scss b/packages/ui-core/shared/src/lib/tags/tags-color-input/tags-color-input.component.scss
index 8bcdcd6a171..043abb24814 100644
--- a/packages/ui-core/shared/src/lib/tags/tags-color-input/tags-color-input.component.scss
+++ b/packages/ui-core/shared/src/lib/tags/tags-color-input/tags-color-input.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
.tag-color {
position: unset;
display: inline-flex;
diff --git a/packages/ui-core/shared/src/lib/tags/tags-color-input/tags-color-input.component.ts b/packages/ui-core/shared/src/lib/tags/tags-color-input/tags-color-input.component.ts
index f483e5696a5..8405a1b4095 100644
--- a/packages/ui-core/shared/src/lib/tags/tags-color-input/tags-color-input.component.ts
+++ b/packages/ui-core/shared/src/lib/tags/tags-color-input/tags-color-input.component.ts
@@ -24,9 +24,10 @@ import { PictureNameTagsComponent } from '../../table-components';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-tags-color-input',
- templateUrl: './tags-color-input.component.html',
- styleUrls: ['./tags-color-input.component.scss']
+ selector: 'ga-tags-color-input',
+ templateUrl: './tags-color-input.component.html',
+ styleUrls: ['./tags-color-input.component.scss'],
+ standalone: false
})
export class TagsColorInputComponent extends PictureNameTagsComponent implements OnInit, OnDestroy {
public subject$: Subject = new Subject();
diff --git a/packages/ui-core/shared/src/lib/tags/tags-mutation.component.scss b/packages/ui-core/shared/src/lib/tags/tags-mutation.component.scss
index 07525df4137..f48c3dcfe9c 100644
--- a/packages/ui-core/shared/src/lib/tags/tags-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/tags/tags-mutation.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
:host nb-card{
background-color: nb-theme(gauzy-card-1);
@@ -6,4 +6,4 @@
.description {
height: 198px;
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/tags/tags-mutation.component.ts b/packages/ui-core/shared/src/lib/tags/tags-mutation.component.ts
index d79158c1123..500a24dcdac 100644
--- a/packages/ui-core/shared/src/lib/tags/tags-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/tags/tags-mutation.component.ts
@@ -9,9 +9,10 @@ import { TagsService } from '@gauzy/ui-core/core';
import { NotesWithTagsComponent } from '../table-components';
@Component({
- selector: 'ngx-tags-mutation',
- templateUrl: './tags-mutation.component.html',
- styleUrls: ['./tags-mutation.component.scss']
+ selector: 'ngx-tags-mutation',
+ templateUrl: './tags-mutation.component.html',
+ styleUrls: ['./tags-mutation.component.scss'],
+ standalone: false
})
export class TagsMutationComponent extends NotesWithTagsComponent implements OnInit {
/**
diff --git a/packages/ui-core/shared/src/lib/tasks-sprint-settings-view/sprint-dialog/sprint-dialog.component.scss b/packages/ui-core/shared/src/lib/tasks-sprint-settings-view/sprint-dialog/sprint-dialog.component.scss
index 5519f5f78a6..d4aced3faf3 100644
--- a/packages/ui-core/shared/src/lib/tasks-sprint-settings-view/sprint-dialog/sprint-dialog.component.scss
+++ b/packages/ui-core/shared/src/lib/tasks-sprint-settings-view/sprint-dialog/sprint-dialog.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.form-group {
display: flex;
@@ -16,4 +16,4 @@ label {
line-height: 13px;
letter-spacing: -0.01em;
text-align: left;
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/tasks-sprint-settings-view/sprint-dialog/sprint-dialog.component.ts b/packages/ui-core/shared/src/lib/tasks-sprint-settings-view/sprint-dialog/sprint-dialog.component.ts
index 103fcdaf291..222e315a4f0 100644
--- a/packages/ui-core/shared/src/lib/tasks-sprint-settings-view/sprint-dialog/sprint-dialog.component.ts
+++ b/packages/ui-core/shared/src/lib/tasks-sprint-settings-view/sprint-dialog/sprint-dialog.component.ts
@@ -9,9 +9,10 @@ const DEFAULTS = {
};
@Component({
- selector: 'ngx-sprint-dialog',
- templateUrl: './sprint-dialog.component.html',
- styleUrls: ['./sprint-dialog.component.scss']
+ selector: 'ngx-sprint-dialog',
+ templateUrl: './sprint-dialog.component.html',
+ styleUrls: ['./sprint-dialog.component.scss'],
+ standalone: false
})
export class SprintDialogComponent implements OnInit {
@Input() action: 'create' | 'edit';
diff --git a/packages/ui-core/shared/src/lib/tasks-sprint-settings-view/tasks-sprint-settings-view.component.ts b/packages/ui-core/shared/src/lib/tasks-sprint-settings-view/tasks-sprint-settings-view.component.ts
index 9abdd1c55ce..5328d447dea 100644
--- a/packages/ui-core/shared/src/lib/tasks-sprint-settings-view/tasks-sprint-settings-view.component.ts
+++ b/packages/ui-core/shared/src/lib/tasks-sprint-settings-view/tasks-sprint-settings-view.component.ts
@@ -11,9 +11,10 @@ import { ItemActionType } from '../editable-grid/gauzy-editable-grid.component';
@UntilDestroy()
@Component({
- selector: 'ngx-tasks-sprint-settings-view',
- templateUrl: './tasks-sprint-settings-view.component.html',
- styleUrls: ['./tasks-sprint-settings-view.component.scss']
+ selector: 'ngx-tasks-sprint-settings-view',
+ templateUrl: './tasks-sprint-settings-view.component.html',
+ styleUrls: ['./tasks-sprint-settings-view.component.scss'],
+ standalone: false
})
export class TasksSprintSettingsViewComponent implements OnInit, OnDestroy {
@Input() project: IOrganizationProject;
diff --git a/packages/ui-core/shared/src/lib/tasks/add-task-dialog/add-task-dialog.component.scss b/packages/ui-core/shared/src/lib/tasks/add-task-dialog/add-task-dialog.component.scss
index 7bd19ceaf94..a009cea0664 100644
--- a/packages/ui-core/shared/src/lib/tasks/add-task-dialog/add-task-dialog.component.scss
+++ b/packages/ui-core/shared/src/lib/tasks/add-task-dialog/add-task-dialog.component.scss
@@ -1 +1 @@
-@import '@shared/add-task-dialog';
+@forward '@shared/add-task-dialog';
diff --git a/packages/ui-core/shared/src/lib/tasks/add-task-dialog/add-task-dialog.component.ts b/packages/ui-core/shared/src/lib/tasks/add-task-dialog/add-task-dialog.component.ts
index 7146f378ce6..48d6093182b 100644
--- a/packages/ui-core/shared/src/lib/tasks/add-task-dialog/add-task-dialog.component.ts
+++ b/packages/ui-core/shared/src/lib/tasks/add-task-dialog/add-task-dialog.component.ts
@@ -32,9 +32,10 @@ import { richTextCKEditorConfig } from '../../ckeditor.config';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-add-task-dialog',
- templateUrl: './add-task-dialog.component.html',
- styleUrls: ['./add-task-dialog.component.scss']
+ selector: 'ngx-add-task-dialog',
+ templateUrl: './add-task-dialog.component.html',
+ styleUrls: ['./add-task-dialog.component.scss'],
+ standalone: false
})
export class AddTaskDialogComponent extends TranslationBaseComponent implements OnInit {
employees: IEmployee[] = [];
diff --git a/packages/ui-core/shared/src/lib/tasks/task-badge-view/task-badge-view.component.ts b/packages/ui-core/shared/src/lib/tasks/task-badge-view/task-badge-view.component.ts
index 8e623138076..6e91ece18c4 100644
--- a/packages/ui-core/shared/src/lib/tasks/task-badge-view/task-badge-view.component.ts
+++ b/packages/ui-core/shared/src/lib/tasks/task-badge-view/task-badge-view.component.ts
@@ -5,9 +5,10 @@ import { ITaskPriority, ITaskSize, ITaskStatus } from '@gauzy/contracts';
export type ITaskBadge = ITaskStatus | ITaskSize | ITaskPriority;
@Component({
- selector: 'gauzy-task-badge-view',
- templateUrl: './task-badge-view.component.html',
- styleUrls: ['./task-badge-view.component.scss']
+ selector: 'gauzy-task-badge-view',
+ templateUrl: './task-badge-view.component.html',
+ styleUrls: ['./task-badge-view.component.scss'],
+ standalone: false
})
export class TaskBadgeViewComponent {
private _taskBadge: ITaskBadge = null;
diff --git a/packages/ui-core/shared/src/lib/tasks/task-number/task-number-field.component.ts b/packages/ui-core/shared/src/lib/tasks/task-number/task-number-field.component.ts
index a3c5cab1d1b..bcfb46afb60 100644
--- a/packages/ui-core/shared/src/lib/tasks/task-number/task-number-field.component.ts
+++ b/packages/ui-core/shared/src/lib/tasks/task-number/task-number-field.component.ts
@@ -12,15 +12,16 @@ import { TasksService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-task-number-field',
- templateUrl: './task-number-field.component.html',
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TaskNumberFieldComponent),
- multi: true
- }
- ]
+ selector: 'ngx-task-number-field',
+ templateUrl: './task-number-field.component.html',
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TaskNumberFieldComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TaskNumberFieldComponent extends TranslationBaseComponent implements OnInit, OnDestroy {
@Input() formControl: FormControl = new FormControl();
diff --git a/packages/ui-core/shared/src/lib/tasks/task-priority-select/task-priority-select.component.ts b/packages/ui-core/shared/src/lib/tasks/task-priority-select/task-priority-select.component.ts
index f767e9b5f58..63d9bd8e754 100644
--- a/packages/ui-core/shared/src/lib/tasks/task-priority-select/task-priority-select.component.ts
+++ b/packages/ui-core/shared/src/lib/tasks/task-priority-select/task-priority-select.component.ts
@@ -21,15 +21,16 @@ import { ToastrService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-task-priority-select',
- templateUrl: './task-priority-select.component.html',
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TaskPrioritySelectComponent),
- multi: true
- }
- ]
+ selector: 'ga-task-priority-select',
+ templateUrl: './task-priority-select.component.html',
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TaskPrioritySelectComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TaskPrioritySelectComponent extends TranslationBaseComponent implements AfterViewInit, OnInit, OnDestroy {
private subject$: Subject = new Subject();
diff --git a/packages/ui-core/shared/src/lib/tasks/task-select/task/task.component.ts b/packages/ui-core/shared/src/lib/tasks/task-select/task/task.component.ts
index 7cd8a5cfc65..2c0450ffc01 100644
--- a/packages/ui-core/shared/src/lib/tasks/task-select/task/task.component.ts
+++ b/packages/ui-core/shared/src/lib/tasks/task-select/task/task.component.ts
@@ -9,15 +9,16 @@ import { AuthService, Store, TasksService, ToastrService } from '@gauzy/ui-core/
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-task-selector',
- templateUrl: './task.component.html',
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TaskSelectorComponent),
- multi: true
- }
- ]
+ selector: 'ga-task-selector',
+ templateUrl: './task.component.html',
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TaskSelectorComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TaskSelectorComponent implements OnInit, OnDestroy, ControlValueAccessor {
private _multiple: boolean = false;
diff --git a/packages/ui-core/shared/src/lib/tasks/task-size-select/task-size-select.component.ts b/packages/ui-core/shared/src/lib/tasks/task-size-select/task-size-select.component.ts
index 0807b18dfe0..cf68ce78ace 100644
--- a/packages/ui-core/shared/src/lib/tasks/task-size-select/task-size-select.component.ts
+++ b/packages/ui-core/shared/src/lib/tasks/task-size-select/task-size-select.component.ts
@@ -21,15 +21,16 @@ import { TaskSizesService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-task-size-select',
- templateUrl: './task-size-select.component.html',
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TaskSizeSelectComponent),
- multi: true
- }
- ]
+ selector: 'ga-task-size-select',
+ templateUrl: './task-size-select.component.html',
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TaskSizeSelectComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TaskSizeSelectComponent extends TranslationBaseComponent implements AfterViewInit, OnInit, OnDestroy {
private subject$: Subject = new Subject();
diff --git a/packages/ui-core/shared/src/lib/tasks/task-status-select/task-status-select.component.ts b/packages/ui-core/shared/src/lib/tasks/task-status-select/task-status-select.component.ts
index 790de6c7daf..5972c577cd1 100644
--- a/packages/ui-core/shared/src/lib/tasks/task-status-select/task-status-select.component.ts
+++ b/packages/ui-core/shared/src/lib/tasks/task-status-select/task-status-select.component.ts
@@ -10,15 +10,16 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-task-status-select',
- templateUrl: './task-status-select.component.html',
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TaskStatusSelectComponent),
- multi: true
- }
- ]
+ selector: 'ga-task-status-select',
+ templateUrl: './task-status-select.component.html',
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TaskStatusSelectComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TaskStatusSelectComponent extends TranslationBaseComponent implements AfterViewInit, OnInit, OnDestroy {
public organization: IOrganization;
diff --git a/packages/ui-core/shared/src/lib/time-off/settings-mutation/time-off-settings-mutation.component.ts b/packages/ui-core/shared/src/lib/time-off/settings-mutation/time-off-settings-mutation.component.ts
index 673e26d16e1..92baa100f3d 100644
--- a/packages/ui-core/shared/src/lib/time-off/settings-mutation/time-off-settings-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/time-off/settings-mutation/time-off-settings-mutation.component.ts
@@ -7,9 +7,10 @@ import { EmployeesService, Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-time-off-settings-mutation',
- templateUrl: './time-off-settings-mutation.component.html',
- styleUrls: ['../time-off-mutation.components.scss']
+ selector: 'ngx-time-off-settings-mutation',
+ templateUrl: './time-off-settings-mutation.component.html',
+ styleUrls: ['../time-off-mutation.components.scss'],
+ standalone: false
})
export class TimeOffSettingsMutationComponent implements OnInit, OnDestroy {
constructor(
diff --git a/packages/ui-core/shared/src/lib/time-off/time-off-holiday-mutation/time-off-holiday-mutation.component.ts b/packages/ui-core/shared/src/lib/time-off/time-off-holiday-mutation/time-off-holiday-mutation.component.ts
index 29bd4cc0186..07521c7532a 100644
--- a/packages/ui-core/shared/src/lib/time-off/time-off-holiday-mutation/time-off-holiday-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/time-off/time-off-holiday-mutation/time-off-holiday-mutation.component.ts
@@ -13,9 +13,10 @@ import { FormHelpers } from '../../forms/helpers';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-time-off-holiday-mutation',
- templateUrl: './time-off-holiday-mutation.component.html',
- styleUrls: ['../time-off-mutation.components.scss']
+ selector: 'ngx-time-off-holiday-mutation',
+ templateUrl: './time-off-holiday-mutation.component.html',
+ styleUrls: ['../time-off-mutation.components.scss'],
+ standalone: false
})
export class TimeOffHolidayMutationComponent implements OnInit {
FormHelpers: typeof FormHelpers = FormHelpers;
diff --git a/packages/ui-core/shared/src/lib/time-off/time-off-mutation.components.scss b/packages/ui-core/shared/src/lib/time-off/time-off-mutation.components.scss
index e0031b59f88..0521f389ef3 100644
--- a/packages/ui-core/shared/src/lib/time-off/time-off-mutation.components.scss
+++ b/packages/ui-core/shared/src/lib/time-off/time-off-mutation.components.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.main {
width: 645px;
diff --git a/packages/ui-core/shared/src/lib/time-off/time-off-policy-select/time-off-policy-select.component.ts b/packages/ui-core/shared/src/lib/time-off/time-off-policy-select/time-off-policy-select.component.ts
index 4a70a9982b5..bf82f5540ec 100644
--- a/packages/ui-core/shared/src/lib/time-off/time-off-policy-select/time-off-policy-select.component.ts
+++ b/packages/ui-core/shared/src/lib/time-off/time-off-policy-select/time-off-policy-select.component.ts
@@ -10,16 +10,17 @@ import { TimeOffService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-time-off-policy-select',
- templateUrl: './time-off-policy-select.component.html',
- styleUrls: [],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TimeOffPolicySelectComponent),
- multi: true
- }
- ]
+ selector: 'ga-time-off-policy-select',
+ templateUrl: './time-off-policy-select.component.html',
+ styleUrls: [],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TimeOffPolicySelectComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TimeOffPolicySelectComponent implements OnInit {
policies: ITimeOffPolicy[] = [];
diff --git a/packages/ui-core/shared/src/lib/time-off/time-off-request-mutation/time-off-request-mutation.component.ts b/packages/ui-core/shared/src/lib/time-off/time-off-request-mutation/time-off-request-mutation.component.ts
index b6f18dce1aa..4715257cad7 100644
--- a/packages/ui-core/shared/src/lib/time-off/time-off-request-mutation/time-off-request-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/time-off/time-off-request-mutation/time-off-request-mutation.component.ts
@@ -18,9 +18,10 @@ import { FormHelpers } from '../../forms/helpers';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-time-off-request-mutation',
- templateUrl: './time-off-request-mutation.component.html',
- styleUrls: ['../time-off-mutation.components.scss']
+ selector: 'ngx-time-off-request-mutation',
+ templateUrl: './time-off-request-mutation.component.html',
+ styleUrls: ['../time-off-mutation.components.scss'],
+ standalone: false
})
export class TimeOffRequestMutationComponent implements OnInit {
FormHelpers: typeof FormHelpers = FormHelpers;
diff --git a/packages/ui-core/shared/src/lib/time-tracker/components/time-tracker-status/time-tracker-status.component.ts b/packages/ui-core/shared/src/lib/time-tracker/components/time-tracker-status/time-tracker-status.component.ts
index bd2cbb60757..30963ec0775 100644
--- a/packages/ui-core/shared/src/lib/time-tracker/components/time-tracker-status/time-tracker-status.component.ts
+++ b/packages/ui-core/shared/src/lib/time-tracker/components/time-tracker-status/time-tracker-status.component.ts
@@ -4,9 +4,10 @@ import { ITimerIcon } from '@gauzy/ui-core/core';
import { TimeTrackerStatusService } from './time-tracker-status.service';
@Component({
- selector: 'ga-time-tracker-status',
- templateUrl: './time-tracker-status.component.html',
- styleUrls: ['./time-tracker-status.component.scss']
+ selector: 'ga-time-tracker-status',
+ templateUrl: './time-tracker-status.component.html',
+ styleUrls: ['./time-tracker-status.component.scss'],
+ standalone: false
})
export class TimeTrackerStatusComponent {
constructor(private readonly _timeTrackerStatusService: TimeTrackerStatusService) {}
diff --git a/packages/ui-core/shared/src/lib/time-tracker/time-tracker/time-tracker.component.scss b/packages/ui-core/shared/src/lib/time-tracker/time-tracker/time-tracker.component.scss
index 7c6e30041aa..dd188773aed 100644
--- a/packages/ui-core/shared/src/lib/time-tracker/time-tracker/time-tracker.component.scss
+++ b/packages/ui-core/shared/src/lib/time-tracker/time-tracker/time-tracker.component.scss
@@ -1,4 +1,5 @@
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-overrides' as *;
+
:host {
position: fixed;
height: 0;
diff --git a/packages/ui-core/shared/src/lib/time-tracker/time-tracker/time-tracker.component.ts b/packages/ui-core/shared/src/lib/time-tracker/time-tracker/time-tracker.component.ts
index ed9330777c8..7534092596b 100644
--- a/packages/ui-core/shared/src/lib/time-tracker/time-tracker/time-tracker.component.ts
+++ b/packages/ui-core/shared/src/lib/time-tracker/time-tracker/time-tracker.component.ts
@@ -32,9 +32,10 @@ import { TimeTrackerStatusService } from '../components/time-tracker-status/time
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-web-time-tracker',
- templateUrl: './time-tracker.component.html',
- styleUrls: ['./time-tracker.component.scss']
+ selector: 'ngx-web-time-tracker',
+ templateUrl: './time-tracker.component.html',
+ styleUrls: ['./time-tracker.component.scss'],
+ standalone: false
})
export class TimeTrackerComponent implements OnInit, OnDestroy {
// This constant holds the URL for downloading content from the platform's website.
diff --git a/packages/ui-core/shared/src/lib/timer-picker/timer-picker/timer-picker.component.ts b/packages/ui-core/shared/src/lib/timer-picker/timer-picker/timer-picker.component.ts
index 3bee33933da..816216dbd1d 100644
--- a/packages/ui-core/shared/src/lib/timer-picker/timer-picker/timer-picker.component.ts
+++ b/packages/ui-core/shared/src/lib/timer-picker/timer-picker/timer-picker.component.ts
@@ -11,15 +11,16 @@ import * as moment from 'moment';
import { IOrganization } from '@gauzy/contracts';
@Component({
- selector: 'ga-timer-picker',
- templateUrl: './timer-picker.component.html',
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TimerPickerComponent),
- multi: true
- }
- ]
+ selector: 'ga-timer-picker',
+ templateUrl: './timer-picker.component.html',
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TimerPickerComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TimerPickerComponent implements OnInit {
private _max: string = '23:00';
diff --git a/packages/ui-core/shared/src/lib/timer-picker/timer-range-picker/timer-range-picker.component.scss b/packages/ui-core/shared/src/lib/timer-picker/timer-range-picker/timer-range-picker.component.scss
index b9313b02a5a..c4ac4b660f3 100644
--- a/packages/ui-core/shared/src/lib/timer-picker/timer-range-picker/timer-range-picker.component.scss
+++ b/packages/ui-core/shared/src/lib/timer-picker/timer-range-picker/timer-range-picker.component.scss
@@ -1,4 +1,4 @@
-@import 'var';
+@use 'var' as *;
:host .input,
:host input {
diff --git a/packages/ui-core/shared/src/lib/timer-picker/timer-range-picker/timer-range-picker.component.ts b/packages/ui-core/shared/src/lib/timer-picker/timer-range-picker/timer-range-picker.component.ts
index 7e78525e609..8282f58c4ec 100644
--- a/packages/ui-core/shared/src/lib/timer-picker/timer-range-picker/timer-range-picker.component.ts
+++ b/packages/ui-core/shared/src/lib/timer-picker/timer-range-picker/timer-range-picker.component.ts
@@ -15,16 +15,17 @@ import { merge } from 'rxjs';
import { debounceTime } from 'rxjs/operators';
@Component({
- selector: 'ngx-timer-range-picker',
- templateUrl: './timer-range-picker.component.html',
- styleUrls: ['./timer-range-picker.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => TimerRangePickerComponent),
- multi: true
- }
- ]
+ selector: 'ngx-timer-range-picker',
+ templateUrl: './timer-range-picker.component.html',
+ styleUrls: ['./timer-range-picker.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => TimerRangePickerComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class TimerRangePickerComponent implements OnInit, AfterViewInit {
private _maxDate: Date = null;
diff --git a/packages/ui-core/shared/src/lib/timesheet/activities/activity-item/activity-item.component.scss b/packages/ui-core/shared/src/lib/timesheet/activities/activity-item/activity-item.component.scss
index c94f2cb7209..07c043959ef 100644
--- a/packages/ui-core/shared/src/lib/timesheet/activities/activity-item/activity-item.component.scss
+++ b/packages/ui-core/shared/src/lib/timesheet/activities/activity-item/activity-item.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
:host {
.percentage-col {
width: 90px;
diff --git a/packages/ui-core/shared/src/lib/timesheet/activities/activity-item/activity-item.component.ts b/packages/ui-core/shared/src/lib/timesheet/activities/activity-item/activity-item.component.ts
index c1beb5f0cdb..0ae1d906d33 100644
--- a/packages/ui-core/shared/src/lib/timesheet/activities/activity-item/activity-item.component.ts
+++ b/packages/ui-core/shared/src/lib/timesheet/activities/activity-item/activity-item.component.ts
@@ -3,9 +3,10 @@ import { progressStatus } from '@gauzy/ui-core/common';
import { IDailyActivity } from '@gauzy/contracts';
@Component({
- selector: 'ngx-activity-item',
- templateUrl: './activity-item.component.html',
- styleUrls: ['./activity-item.component.scss']
+ selector: 'ngx-activity-item',
+ templateUrl: './activity-item.component.html',
+ styleUrls: ['./activity-item.component.scss'],
+ standalone: false
})
export class ActivityItemComponent implements OnInit, OnDestroy {
childOpen: boolean = false; // Property to track if the child is open or not
diff --git a/packages/ui-core/shared/src/lib/timesheet/edit-time-log-modal/edit-time-log-modal.component.scss b/packages/ui-core/shared/src/lib/timesheet/edit-time-log-modal/edit-time-log-modal.component.scss
index e74dd7e970a..ee279d8252a 100644
--- a/packages/ui-core/shared/src/lib/timesheet/edit-time-log-modal/edit-time-log-modal.component.scss
+++ b/packages/ui-core/shared/src/lib/timesheet/edit-time-log-modal/edit-time-log-modal.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-dialogs';
-@import 'gauzy/_gauzy-table';
+@use 'gauzy/_gauzy-dialogs' as *;
+@use 'gauzy/_gauzy-table' as *;
:host {
nb-card {
@@ -48,4 +48,4 @@
font-weight: 600;
color: var(--text-primary-color);
}
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/timesheet/edit-time-log-modal/edit-time-log-modal.component.ts b/packages/ui-core/shared/src/lib/timesheet/edit-time-log-modal/edit-time-log-modal.component.ts
index d3204252b6c..3f9c3dec07a 100644
--- a/packages/ui-core/shared/src/lib/timesheet/edit-time-log-modal/edit-time-log-modal.component.ts
+++ b/packages/ui-core/shared/src/lib/timesheet/edit-time-log-modal/edit-time-log-modal.component.ts
@@ -20,9 +20,10 @@ import { Store, TimesheetService, ToastrService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-edit-time-log-modal',
- templateUrl: './edit-time-log-modal.component.html',
- styleUrls: ['./edit-time-log-modal.component.scss']
+ selector: 'ngx-edit-time-log-modal',
+ templateUrl: './edit-time-log-modal.component.html',
+ styleUrls: ['./edit-time-log-modal.component.scss'],
+ standalone: false
})
export class EditTimeLogModalComponent implements OnInit, AfterViewInit, OnDestroy {
// Permissions and basic state initialization
diff --git a/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/base-selector-filter/base-selector-filter.component.ts b/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/base-selector-filter/base-selector-filter.component.ts
index 7d9eee1291a..cca54c13e2d 100644
--- a/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/base-selector-filter/base-selector-filter.component.ts
+++ b/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/base-selector-filter/base-selector-filter.component.ts
@@ -13,7 +13,8 @@ import { getAdjustDateRangeFutureAllowed } from '../../../selectors/date-range-p
@UntilDestroy({ checkProperties: true })
@Component({
- template: ''
+ template: '',
+ standalone: false
})
export class BaseSelectorFilterComponent extends TranslationBaseComponent {
request: ITimeLogFilters = {
diff --git a/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/filters.component.scss b/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/filters.component.scss
index c1a3d586647..489d487770c 100644
--- a/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/filters.component.scss
+++ b/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/filters.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes';
$status: 'basic';
:host {
.filters {
diff --git a/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/gauzy-filters.component.scss b/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/gauzy-filters.component.scss
index c9b72fe6a07..76f91623e11 100644
--- a/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/gauzy-filters.component.scss
+++ b/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/gauzy-filters.component.scss
@@ -1,6 +1,6 @@
-@import 'var';
-@import 'gauzy/_gauzy-overrides';
-@import 'filters.component.scss';
+@use 'var' as *;
+@use 'gauzy/_gauzy-overrides' as *;
+@forward 'filters.component';
$button-radius : nb-theme(button-rectangle-border-radius);
diff --git a/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/gauzy-filters.component.ts b/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/gauzy-filters.component.ts
index 81c1dc3767b..bcd5b763ff5 100644
--- a/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/gauzy-filters.component.ts
+++ b/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/gauzy-filters.component.ts
@@ -20,9 +20,10 @@ import { ActivityLevel, TimesheetFilterService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-gauzy-filters',
- templateUrl: './gauzy-filters.component.html',
- styleUrls: ['./gauzy-filters.component.scss']
+ selector: 'ngx-gauzy-filters',
+ templateUrl: './gauzy-filters.component.html',
+ styleUrls: ['./gauzy-filters.component.scss'],
+ standalone: false
})
export class GauzyFiltersComponent extends TranslationBaseComponent implements AfterViewInit, OnInit, OnDestroy {
// declaration of variables
diff --git a/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/timezone-filter/timezone-filter.component.scss b/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/timezone-filter/timezone-filter.component.scss
index 3f79de9d634..2d7a0dcf92b 100644
--- a/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/timezone-filter/timezone-filter.component.scss
+++ b/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/timezone-filter/timezone-filter.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-cards.scss';
+@use 'gauzy/_gauzy-cards' as *;
:host {
.popover-button {
diff --git a/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/timezone-filter/timezone-filter.component.ts b/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/timezone-filter/timezone-filter.component.ts
index afdbc0325f7..ec45d24b560 100644
--- a/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/timezone-filter/timezone-filter.component.ts
+++ b/packages/ui-core/shared/src/lib/timesheet/gauzy-filters/timezone-filter/timezone-filter.component.ts
@@ -15,9 +15,10 @@ import { TimeZoneService } from './time-zone.service';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-timezone-filter',
- templateUrl: './timezone-filter.component.html',
- styleUrls: ['./timezone-filter.component.scss']
+ selector: 'ga-timezone-filter',
+ templateUrl: './timezone-filter.component.html',
+ styleUrls: ['./timezone-filter.component.scss'],
+ standalone: false
})
export class TimezoneFilterComponent extends TranslationBaseComponent implements AfterViewInit, OnInit, OnDestroy {
timeZoneOptions: { value: TimeZoneEnum; label: string }[] = [
diff --git a/packages/ui-core/shared/src/lib/timesheet/screenshots/screenshots-item/screenshots-item.component.scss b/packages/ui-core/shared/src/lib/timesheet/screenshots/screenshots-item/screenshots-item.component.scss
index 3be318aa5b3..9242dd97344 100644
--- a/packages/ui-core/shared/src/lib/timesheet/screenshots/screenshots-item/screenshots-item.component.scss
+++ b/packages/ui-core/shared/src/lib/timesheet/screenshots/screenshots-item/screenshots-item.component.scss
@@ -1,4 +1,4 @@
-@import 'report';
+@forward 'report';
:host {
::ng-deep {
diff --git a/packages/ui-core/shared/src/lib/timesheet/screenshots/screenshots-item/screenshots-item.component.ts b/packages/ui-core/shared/src/lib/timesheet/screenshots/screenshots-item/screenshots-item.component.ts
index 685f1b77c83..5b088c66416 100644
--- a/packages/ui-core/shared/src/lib/timesheet/screenshots/screenshots-item/screenshots-item.component.ts
+++ b/packages/ui-core/shared/src/lib/timesheet/screenshots/screenshots-item/screenshots-item.component.ts
@@ -13,9 +13,10 @@ import { TimeZoneService } from '../../gauzy-filters/timezone-filter';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-screenshots-item',
- templateUrl: './screenshots-item.component.html',
- styleUrls: ['./screenshots-item.component.scss']
+ selector: 'ngx-screenshots-item',
+ templateUrl: './screenshots-item.component.html',
+ styleUrls: ['./screenshots-item.component.scss'],
+ standalone: false
})
export class ScreenshotsItemComponent implements OnInit, OnDestroy {
public isShowBorder: boolean = false;
diff --git a/packages/ui-core/shared/src/lib/timesheet/screenshots/view-screenshots-modal/view-screenshots-modal.component.scss b/packages/ui-core/shared/src/lib/timesheet/screenshots/view-screenshots-modal/view-screenshots-modal.component.scss
index bd9e8412e6c..2d8c5703b8b 100644
--- a/packages/ui-core/shared/src/lib/timesheet/screenshots/view-screenshots-modal/view-screenshots-modal.component.scss
+++ b/packages/ui-core/shared/src/lib/timesheet/screenshots/view-screenshots-modal/view-screenshots-modal.component.scss
@@ -1,5 +1,5 @@
-@import 'themes';
-@import 'gauzy/_gauzy-table';
+@use 'themes' as *;
+@use 'gauzy/_gauzy-table' as *;
:host {
display: block;
diff --git a/packages/ui-core/shared/src/lib/timesheet/screenshots/view-screenshots-modal/view-screenshots-modal.component.ts b/packages/ui-core/shared/src/lib/timesheet/screenshots/view-screenshots-modal/view-screenshots-modal.component.ts
index abfb42e1573..75e7dc7d088 100644
--- a/packages/ui-core/shared/src/lib/timesheet/screenshots/view-screenshots-modal/view-screenshots-modal.component.ts
+++ b/packages/ui-core/shared/src/lib/timesheet/screenshots/view-screenshots-modal/view-screenshots-modal.component.ts
@@ -20,9 +20,10 @@ import { TimeZoneService } from '../../gauzy-filters/timezone-filter';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-view-screenshots-modal',
- templateUrl: './view-screenshots-modal.component.html',
- styleUrls: ['./view-screenshots-modal.component.scss']
+ selector: 'ngx-view-screenshots-modal',
+ templateUrl: './view-screenshots-modal.component.html',
+ styleUrls: ['./view-screenshots-modal.component.scss'],
+ standalone: false
})
export class ViewScreenshotsModalComponent implements OnInit {
progressStatus = progressStatus;
diff --git a/packages/ui-core/shared/src/lib/timesheet/view-time-log-modal/view-time-log-modal.component.scss b/packages/ui-core/shared/src/lib/timesheet/view-time-log-modal/view-time-log-modal.component.scss
index adf16ffa276..ca1295a7ab4 100644
--- a/packages/ui-core/shared/src/lib/timesheet/view-time-log-modal/view-time-log-modal.component.scss
+++ b/packages/ui-core/shared/src/lib/timesheet/view-time-log-modal/view-time-log-modal.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-table';
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-table' as *;
+@use 'gauzy/_gauzy-dialogs' as *;
:host {
display: flex;
diff --git a/packages/ui-core/shared/src/lib/timesheet/view-time-log-modal/view-time-log-modal.component.ts b/packages/ui-core/shared/src/lib/timesheet/view-time-log-modal/view-time-log-modal.component.ts
index 7992266f1c6..c86f07e80d2 100644
--- a/packages/ui-core/shared/src/lib/timesheet/view-time-log-modal/view-time-log-modal.component.ts
+++ b/packages/ui-core/shared/src/lib/timesheet/view-time-log-modal/view-time-log-modal.component.ts
@@ -10,9 +10,10 @@ import { EditTimeLogModalComponent } from './../edit-time-log-modal';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-view-time-log-modal',
- templateUrl: './view-time-log-modal.component.html',
- styleUrls: ['view-time-log-modal.component.scss']
+ selector: 'ngx-view-time-log-modal',
+ templateUrl: './view-time-log-modal.component.html',
+ styleUrls: ['view-time-log-modal.component.scss'],
+ standalone: false
})
export class ViewTimeLogModalComponent implements OnInit, OnDestroy {
organization: IOrganization;
diff --git a/packages/ui-core/shared/src/lib/timesheet/view-time-log/view-time-log.component.html b/packages/ui-core/shared/src/lib/timesheet/view-time-log/view-time-log.component.html
index 6b857389770..820356423b3 100644
--- a/packages/ui-core/shared/src/lib/timesheet/view-time-log/view-time-log.component.html
+++ b/packages/ui-core/shared/src/lib/timesheet/view-time-log/view-time-log.component.html
@@ -1,4 +1,4 @@
-
+
{{ 'TIMESHEET.VIEW_TIME_LOGS' | translate }}
diff --git a/packages/ui-core/shared/src/lib/timesheet/view-time-log/view-time-log.component.scss b/packages/ui-core/shared/src/lib/timesheet/view-time-log/view-time-log.component.scss
index 32c26c4247e..cee95e213b4 100644
--- a/packages/ui-core/shared/src/lib/timesheet/view-time-log/view-time-log.component.scss
+++ b/packages/ui-core/shared/src/lib/timesheet/view-time-log/view-time-log.component.scss
@@ -1,8 +1,8 @@
-@import 'gauzy/_gauzy-table';
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-table' as *;
+@use 'gauzy/_gauzy-dialogs' as *;
:host {
- .time-log-view-contiainer {
+ .time-log-view-container {
width: 430px;
box-shadow: 0px 0px 0px 2px nb-theme(color-primary-transparent-default);
border-radius: nb-theme(border-radius);
@@ -40,4 +40,4 @@
.cancel {
padding: 4px 4px 0;
}
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/timesheet/view-time-log/view-time-log.component.ts b/packages/ui-core/shared/src/lib/timesheet/view-time-log/view-time-log.component.ts
index dc097728136..3b3ae034fb5 100644
--- a/packages/ui-core/shared/src/lib/timesheet/view-time-log/view-time-log.component.ts
+++ b/packages/ui-core/shared/src/lib/timesheet/view-time-log/view-time-log.component.ts
@@ -10,9 +10,10 @@ import { ViewTimeLogModalComponent } from './../view-time-log-modal';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-view-time-log',
- templateUrl: './view-time-log.component.html',
- styleUrls: ['./view-time-log.component.scss']
+ selector: 'ngx-view-time-log',
+ templateUrl: './view-time-log.component.html',
+ styleUrls: ['./view-time-log.component.scss'],
+ standalone: false
})
export class ViewTimeLogComponent implements OnInit, OnDestroy {
organization: IOrganization;
diff --git a/packages/ui-core/shared/src/lib/user/edit-profile-form/edit-profile-form.component.scss b/packages/ui-core/shared/src/lib/user/edit-profile-form/edit-profile-form.component.scss
index c30b3fc3907..8d4bf72d994 100644
--- a/packages/ui-core/shared/src/lib/user/edit-profile-form/edit-profile-form.component.scss
+++ b/packages/ui-core/shared/src/lib/user/edit-profile-form/edit-profile-form.component.scss
@@ -1 +1 @@
-@import '@shared/_edit-profile-form';
+@forward '@shared/_edit-profile-form';
diff --git a/packages/ui-core/shared/src/lib/user/edit-profile-form/edit-profile-form.component.ts b/packages/ui-core/shared/src/lib/user/edit-profile-form/edit-profile-form.component.ts
index 48f0bfc50a9..5e781e372b1 100644
--- a/packages/ui-core/shared/src/lib/user/edit-profile-form/edit-profile-form.component.ts
+++ b/packages/ui-core/shared/src/lib/user/edit-profile-form/edit-profile-form.component.ts
@@ -19,9 +19,10 @@ import { patterns } from '../../regex';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-profile',
- templateUrl: './edit-profile-form.component.html',
- styleUrls: ['./edit-profile-form.component.scss']
+ selector: 'ngx-profile',
+ templateUrl: './edit-profile-form.component.html',
+ styleUrls: ['./edit-profile-form.component.scss'],
+ standalone: false
})
export class EditProfileFormComponent implements OnInit, OnDestroy {
FormHelpers: typeof FormHelpers = FormHelpers;
diff --git a/packages/ui-core/shared/src/lib/user/forms/action-confirmation/action-confirmation.component.ts b/packages/ui-core/shared/src/lib/user/forms/action-confirmation/action-confirmation.component.ts
index cbdf70e1e6c..bc190995cf6 100644
--- a/packages/ui-core/shared/src/lib/user/forms/action-confirmation/action-confirmation.component.ts
+++ b/packages/ui-core/shared/src/lib/user/forms/action-confirmation/action-confirmation.component.ts
@@ -2,8 +2,8 @@ import { Component } from '@angular/core';
import { NbDialogRef } from '@nebular/theme';
@Component({
- selector: 'ga-action-confirmation',
- template: `
+ selector: 'ga-action-confirmation',
+ template: `
@@ -27,8 +27,8 @@ import { NbDialogRef } from '@nebular/theme';
`,
- styles: [
- `
+ styles: [
+ `
nb-card-footer {
text-align: left;
width: 100%;
@@ -38,8 +38,9 @@ import { NbDialogRef } from '@nebular/theme';
width: 300px;
}
`
- ],
- styleUrls: ['../delete-confirmation/delete-confirmation.component.scss']
+ ],
+ styleUrls: ['../delete-confirmation/delete-confirmation.component.scss'],
+ standalone: false
})
export class ActionConfirmationComponent {
recordType: string;
diff --git a/packages/ui-core/shared/src/lib/user/forms/archive-confirmation/archive-confirmation.component.ts b/packages/ui-core/shared/src/lib/user/forms/archive-confirmation/archive-confirmation.component.ts
index 5efbd8a6c68..e8c7e260ab5 100644
--- a/packages/ui-core/shared/src/lib/user/forms/archive-confirmation/archive-confirmation.component.ts
+++ b/packages/ui-core/shared/src/lib/user/forms/archive-confirmation/archive-confirmation.component.ts
@@ -2,8 +2,8 @@ import { Component } from '@angular/core';
import { NbDialogRef } from '@nebular/theme';
@Component({
- selector: 'ga-archive-confirmation',
- template: `
+ selector: 'ga-archive-confirmation',
+ template: `
@@ -26,7 +26,8 @@ import { NbDialogRef } from '@nebular/theme';
`,
- styleUrls: ['../delete-confirmation/delete-confirmation.component.scss']
+ styleUrls: ['../delete-confirmation/delete-confirmation.component.scss'],
+ standalone: false
})
export class ArchiveConfirmationComponent {
recordType: string;
diff --git a/packages/ui-core/shared/src/lib/user/forms/basic-info/basic-info-form.component.scss b/packages/ui-core/shared/src/lib/user/forms/basic-info/basic-info-form.component.scss
index 22c37152621..812beb447b2 100644
--- a/packages/ui-core/shared/src/lib/user/forms/basic-info/basic-info-form.component.scss
+++ b/packages/ui-core/shared/src/lib/user/forms/basic-info/basic-info-form.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
.preview-img {
padding-left: 14px;
diff --git a/packages/ui-core/shared/src/lib/user/forms/basic-info/basic-info-form.component.ts b/packages/ui-core/shared/src/lib/user/forms/basic-info/basic-info-form.component.ts
index bfb28ed9837..dbda587a650 100644
--- a/packages/ui-core/shared/src/lib/user/forms/basic-info/basic-info-form.component.ts
+++ b/packages/ui-core/shared/src/lib/user/forms/basic-info/basic-info-form.component.ts
@@ -34,9 +34,10 @@ import { FormHelpers } from '../../../forms/helpers';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-user-basic-info-form',
- templateUrl: 'basic-info-form.component.html',
- styleUrls: ['basic-info-form.component.scss']
+ selector: 'ga-user-basic-info-form',
+ templateUrl: 'basic-info-form.component.html',
+ styleUrls: ['basic-info-form.component.scss'],
+ standalone: false
})
export class BasicInfoFormComponent extends TranslationBaseComponent implements OnInit, AfterViewInit {
FormHelpers: typeof FormHelpers = FormHelpers;
diff --git a/packages/ui-core/shared/src/lib/user/forms/candidate-action-confirmation/candidate-action-confirmation.component.ts b/packages/ui-core/shared/src/lib/user/forms/candidate-action-confirmation/candidate-action-confirmation.component.ts
index 165750b892f..f6d696a4da6 100644
--- a/packages/ui-core/shared/src/lib/user/forms/candidate-action-confirmation/candidate-action-confirmation.component.ts
+++ b/packages/ui-core/shared/src/lib/user/forms/candidate-action-confirmation/candidate-action-confirmation.component.ts
@@ -2,8 +2,8 @@ import { Component } from '@angular/core';
import { NbDialogRef } from '@nebular/theme';
@Component({
- selector: 'ga-candidate-action-confirmation',
- template: `
+ selector: 'ga-candidate-action-confirmation',
+ template: `
{{ 'FORM.CONFIRM' | translate }}
@@ -27,8 +27,8 @@ import { NbDialogRef } from '@nebular/theme';
`,
- styles: [
- `
+ styles: [
+ `
nb-card-body {
text-align: center;
}
@@ -38,7 +38,8 @@ import { NbDialogRef } from '@nebular/theme';
width: 300px;
}
`
- ]
+ ],
+ standalone: false
})
export class CandidateActionConfirmationComponent {
recordType: string;
diff --git a/packages/ui-core/shared/src/lib/user/forms/countdown-confirmation/countdown-confirmation.component.ts b/packages/ui-core/shared/src/lib/user/forms/countdown-confirmation/countdown-confirmation.component.ts
index 4c457ff48f6..de230374ac3 100644
--- a/packages/ui-core/shared/src/lib/user/forms/countdown-confirmation/countdown-confirmation.component.ts
+++ b/packages/ui-core/shared/src/lib/user/forms/countdown-confirmation/countdown-confirmation.component.ts
@@ -3,8 +3,8 @@ import { NbDialogRef } from '@nebular/theme';
import { CountdownConfig, CountdownEvent } from 'ngx-countdown';
@Component({
- selector: 'ga-countdown-confirmation',
- template: `
+ selector: 'ga-countdown-confirmation',
+ template: `
{{ 'FORM.CONFIRM' | translate }}
@@ -33,8 +33,8 @@ import { CountdownConfig, CountdownEvent } from 'ngx-countdown';
`,
- styles: [
- `
+ styles: [
+ `
nb-card-body {
text-align: center;
}
@@ -44,7 +44,8 @@ import { CountdownConfig, CountdownEvent } from 'ngx-countdown';
width: 350px;
}
`
- ]
+ ],
+ standalone: false
})
export class CountdownConfirmationComponent {
recordType: string;
@@ -53,17 +54,36 @@ export class CountdownConfirmationComponent {
constructor(protected readonly dialogRef: NbDialogRef
) {}
- handleActionEvent(e: CountdownEvent) {
- if (e.action === 'done') {
+ /**
+ * Handles an action event triggered by the countdown.
+ *
+ * @param event - The CountdownEvent object containing details about the action.
+ * Example: { action: 'done', left: 0 }
+ * - If the action is 'done', this method closes the dialog and emits a 'continue' signal.
+ */
+ handleActionEvent(event: CountdownEvent): void {
+ if (event.action === 'done') {
this.dialogRef.close('continue');
}
}
- close() {
+ /**
+ * Closes the current dialog.
+ *
+ * This method is typically used to dismiss the dialog without performing
+ * any additional actions or sending a signal.
+ */
+ close(): void {
this.dialogRef.close();
}
- continue() {
+ /**
+ * Continues the current flow of execution.
+ *
+ * This method closes the dialog and sends a 'continue' signal to indicate
+ * that the user has chosen to proceed with the next step.
+ */
+ continue(): void {
this.dialogRef.close('continue');
}
}
diff --git a/packages/ui-core/shared/src/lib/user/forms/delete-confirmation/delete-confirmation.component.scss b/packages/ui-core/shared/src/lib/user/forms/delete-confirmation/delete-confirmation.component.scss
index 227aa790471..1e4e7509ce7 100644
--- a/packages/ui-core/shared/src/lib/user/forms/delete-confirmation/delete-confirmation.component.scss
+++ b/packages/ui-core/shared/src/lib/user/forms/delete-confirmation/delete-confirmation.component.scss
@@ -1,9 +1,10 @@
-@import 'gauzy/_gauzy-dialogs.scss';
-.center {
- width: 300px;
-}
+@use 'gauzy/_gauzy-dialogs';
+
:host {
nb-card {
background-color: nb-theme(gauzy-card-1);
}
+ .center {
+ width: 300px;
+ }
}
diff --git a/packages/ui-core/shared/src/lib/user/forms/delete-confirmation/delete-confirmation.component.ts b/packages/ui-core/shared/src/lib/user/forms/delete-confirmation/delete-confirmation.component.ts
index c86e978bfed..93bcfb971f3 100644
--- a/packages/ui-core/shared/src/lib/user/forms/delete-confirmation/delete-confirmation.component.ts
+++ b/packages/ui-core/shared/src/lib/user/forms/delete-confirmation/delete-confirmation.component.ts
@@ -2,8 +2,8 @@ import { Component } from '@angular/core';
import { NbDialogRef } from '@nebular/theme';
@Component({
- selector: 'ga-delete-confirmation',
- template: `
+ selector: 'ga-delete-confirmation',
+ template: `
@@ -26,7 +26,8 @@ import { NbDialogRef } from '@nebular/theme';
`,
- styleUrls: ['delete-confirmation.component.scss']
+ styleUrls: ['delete-confirmation.component.scss'],
+ standalone: false
})
export class DeleteConfirmationComponent {
recordType: string;
diff --git a/packages/ui-core/shared/src/lib/user/forms/fields/password/password.component.ts b/packages/ui-core/shared/src/lib/user/forms/fields/password/password.component.ts
index 7f98b7230c3..2d2fc5bee33 100644
--- a/packages/ui-core/shared/src/lib/user/forms/fields/password/password.component.ts
+++ b/packages/ui-core/shared/src/lib/user/forms/fields/password/password.component.ts
@@ -20,15 +20,16 @@ import { TranslationBaseComponent } from '@gauzy/ui-core/i18n';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-password-form-field',
- templateUrl: './password.component.html',
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => PasswordFormFieldComponent),
- multi: true
- }
- ]
+ selector: 'ngx-password-form-field',
+ templateUrl: './password.component.html',
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => PasswordFormFieldComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class PasswordFormFieldComponent
extends TranslationBaseComponent
diff --git a/packages/ui-core/shared/src/lib/user/forms/fields/phone/phone.component.ts b/packages/ui-core/shared/src/lib/user/forms/fields/phone/phone.component.ts
index ed490dfce6e..f412da5c10a 100644
--- a/packages/ui-core/shared/src/lib/user/forms/fields/phone/phone.component.ts
+++ b/packages/ui-core/shared/src/lib/user/forms/fields/phone/phone.component.ts
@@ -4,15 +4,16 @@ import { UntilDestroy } from "@ngneat/until-destroy";
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-phone-form-input',
- templateUrl: './phone.component.html',
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => PhoneFormInputComponent),
- multi: true
- }
- ]
+ selector: 'ngx-phone-form-input',
+ templateUrl: './phone.component.html',
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => PhoneFormInputComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class PhoneFormInputComponent implements OnInit, OnDestroy {
diff --git a/packages/ui-core/shared/src/lib/user/forms/fields/role/role.component.ts b/packages/ui-core/shared/src/lib/user/forms/fields/role/role.component.ts
index b88d166afc2..4b5102a1007 100644
--- a/packages/ui-core/shared/src/lib/user/forms/fields/role/role.component.ts
+++ b/packages/ui-core/shared/src/lib/user/forms/fields/role/role.component.ts
@@ -10,16 +10,17 @@ import { RoleService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-role-form-field',
- templateUrl: './role.component.html',
- styleUrls: [],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => RoleFormFieldComponent),
- multi: true
- }
- ]
+ selector: 'ngx-role-form-field',
+ templateUrl: './role.component.html',
+ styleUrls: [],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => RoleFormFieldComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class RoleFormFieldComponent implements OnInit, OnDestroy {
roles: IRole[] = [];
diff --git a/packages/ui-core/shared/src/lib/user/user-multi-select/user-multi-select.component.ts b/packages/ui-core/shared/src/lib/user/user-multi-select/user-multi-select.component.ts
index 8d298193968..9060fbb5fdf 100644
--- a/packages/ui-core/shared/src/lib/user/user-multi-select/user-multi-select.component.ts
+++ b/packages/ui-core/shared/src/lib/user/user-multi-select/user-multi-select.component.ts
@@ -2,8 +2,9 @@ import { Component, EventEmitter, Input, Output } from '@angular/core';
import { IUser } from '@gauzy/contracts';
@Component({
- selector: 'ga-user-multi-select',
- templateUrl: './user-multi-select.component.html'
+ selector: 'ga-user-multi-select',
+ templateUrl: './user-multi-select.component.html',
+ standalone: false
})
export class UserSelectComponent {
@Input() selectedUserIds: string[];
diff --git a/packages/ui-core/shared/src/lib/user/user-mutation/user-mutation.component.scss b/packages/ui-core/shared/src/lib/user/user-mutation/user-mutation.component.scss
index a6ca72934ca..e0cc33da31e 100644
--- a/packages/ui-core/shared/src/lib/user/user-mutation/user-mutation.component.scss
+++ b/packages/ui-core/shared/src/lib/user/user-mutation/user-mutation.component.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
:host nb-card{
background-color: nb-theme(gauzy-card-1);
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/shared/src/lib/user/user-mutation/user-mutation.component.ts b/packages/ui-core/shared/src/lib/user/user-mutation/user-mutation.component.ts
index 554e1e895d1..4a25d1ba48d 100644
--- a/packages/ui-core/shared/src/lib/user/user-mutation/user-mutation.component.ts
+++ b/packages/ui-core/shared/src/lib/user/user-mutation/user-mutation.component.ts
@@ -7,9 +7,10 @@ import { BasicInfoFormComponent } from '../forms/basic-info/basic-info-form.comp
import { filter, tap } from 'rxjs/operators';
@Component({
- selector: 'ga-user-mutation',
- templateUrl: './user-mutation.component.html',
- styleUrls: ['./user-mutation.component.scss']
+ selector: 'ga-user-mutation',
+ templateUrl: './user-mutation.component.html',
+ styleUrls: ['./user-mutation.component.scss'],
+ standalone: false
})
export class UserMutationComponent implements OnInit {
@ViewChild('userBasicInfo') userBasicInfo: BasicInfoFormComponent;
diff --git a/packages/ui-core/shared/src/lib/user/user-organizations-multi-select/user-organizations-multi-select.component.ts b/packages/ui-core/shared/src/lib/user/user-organizations-multi-select/user-organizations-multi-select.component.ts
index 07761d448fc..e2f1bf6e7ca 100644
--- a/packages/ui-core/shared/src/lib/user/user-organizations-multi-select/user-organizations-multi-select.component.ts
+++ b/packages/ui-core/shared/src/lib/user/user-organizations-multi-select/user-organizations-multi-select.component.ts
@@ -2,8 +2,9 @@ import { Component, EventEmitter, Input, Output } from '@angular/core';
import { IOrganization } from '@gauzy/contracts';
@Component({
- selector: 'ga-user-organizations-multi-select',
- templateUrl: './user-organizations-multi-select.component.html'
+ selector: 'ga-user-organizations-multi-select',
+ templateUrl: './user-organizations-multi-select.component.html',
+ standalone: false
})
export class UserOrganizationsSelectComponent {
@Input() selectedOrganizationsId: string[];
diff --git a/packages/ui-core/shared/src/lib/vendor-select/vendor-select.component.ts b/packages/ui-core/shared/src/lib/vendor-select/vendor-select.component.ts
index 318199a5259..0a55af3ab4f 100644
--- a/packages/ui-core/shared/src/lib/vendor-select/vendor-select.component.ts
+++ b/packages/ui-core/shared/src/lib/vendor-select/vendor-select.component.ts
@@ -10,16 +10,17 @@ import { OrganizationVendorsService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ga-vendor-select',
- templateUrl: './vendor-select.component.html',
- styleUrls: ['./vendor-select.component.scss'],
- providers: [
- {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef(() => VendorSelectComponent),
- multi: true
- }
- ]
+ selector: 'ga-vendor-select',
+ templateUrl: './vendor-select.component.html',
+ styleUrls: ['./vendor-select.component.scss'],
+ providers: [
+ {
+ provide: NG_VALUE_ACCESSOR,
+ useExisting: forwardRef(() => VendorSelectComponent),
+ multi: true
+ }
+ ],
+ standalone: false
})
export class VendorSelectComponent implements OnInit, OnDestroy {
vendors: IOrganizationVendor[] = [];
diff --git a/packages/ui-core/shared/src/lib/work-in-progress/work-in-progress.component.ts b/packages/ui-core/shared/src/lib/work-in-progress/work-in-progress.component.ts
index 4e242bc77ef..2b0d2680c7b 100644
--- a/packages/ui-core/shared/src/lib/work-in-progress/work-in-progress.component.ts
+++ b/packages/ui-core/shared/src/lib/work-in-progress/work-in-progress.component.ts
@@ -4,12 +4,13 @@ import { Component, OnInit, OnDestroy } from '@angular/core';
selector: 'ga-wip',
template: `
-
+
{{ 'COMING_SOON' | translate }}
- `
+ `,
+ standalone: false
})
export class WorkInProgressComponent implements OnInit, OnDestroy {
ngOnInit() {}
diff --git a/packages/ui-core/shared/src/lib/workspaces/workspaces.component.scss b/packages/ui-core/shared/src/lib/workspaces/workspaces.component.scss
index d440969c93c..b67a1dffaee 100644
--- a/packages/ui-core/shared/src/lib/workspaces/workspaces.component.scss
+++ b/packages/ui-core/shared/src/lib/workspaces/workspaces.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
div {
margin-bottom: 0.375rem;
diff --git a/packages/ui-core/shared/src/lib/workspaces/workspaces.component.ts b/packages/ui-core/shared/src/lib/workspaces/workspaces.component.ts
index ea3599818e6..df105695bb3 100644
--- a/packages/ui-core/shared/src/lib/workspaces/workspaces.component.ts
+++ b/packages/ui-core/shared/src/lib/workspaces/workspaces.component.ts
@@ -18,9 +18,10 @@ interface IWorkSpace {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-gauzy-workspaces',
- templateUrl: './workspaces.component.html',
- styleUrls: ['./workspaces.component.scss']
+ selector: 'ngx-gauzy-workspaces',
+ templateUrl: './workspaces.component.html',
+ styleUrls: ['./workspaces.component.scss'],
+ standalone: false
})
export class WorkspacesComponent extends TranslationBaseComponent implements AfterViewInit, OnInit {
public _workspaces$: BehaviorSubject
= new BehaviorSubject([]);
diff --git a/packages/ui-core/static/styles/@shared/_add-task-dialog.scss b/packages/ui-core/static/styles/@shared/_add-task-dialog.scss
index 20842fb0db3..e57dd6223be 100644
--- a/packages/ui-core/static/styles/@shared/_add-task-dialog.scss
+++ b/packages/ui-core/static/styles/@shared/_add-task-dialog.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-dialogs';
+@use 'gauzy/_gauzy-dialogs' as *;
.body {
width: 550px;
diff --git a/packages/ui-core/static/styles/@shared/_employee-mutation.scss b/packages/ui-core/static/styles/@shared/_employee-mutation.scss
index 7ebe10513a9..a37c86e8843 100644
--- a/packages/ui-core/static/styles/@shared/_employee-mutation.scss
+++ b/packages/ui-core/static/styles/@shared/_employee-mutation.scss
@@ -1,5 +1,5 @@
-@import 'var';
-@import 'gauzy/_gauzy-dialogs';
+@use 'var' as *;
+@use 'gauzy/_gauzy-dialogs' as *;
@include nb-install-component() {
nb-card {
diff --git a/packages/ui-core/static/styles/@shared/_pg-card.scss b/packages/ui-core/static/styles/@shared/_pg-card.scss
index 12c71395e6a..cc637856d1f 100644
--- a/packages/ui-core/static/styles/@shared/_pg-card.scss
+++ b/packages/ui-core/static/styles/@shared/_pg-card.scss
@@ -1,5 +1,5 @@
-@import 'gauzy/_gauzy-table.scss';
-@import 'gauzy/_gauzy-cards.scss';
+@import 'gauzy/_gauzy-table';
+@import 'gauzy/_gauzy-cards';
$card-height: calc($default-card-height + 3.75rem);
diff --git a/packages/ui-core/static/styles/material/_angular-material.scss b/packages/ui-core/static/styles/material/_angular-material.scss
index 119475240dc..23eb5acb36e 100644
--- a/packages/ui-core/static/styles/material/_angular-material.scss
+++ b/packages/ui-core/static/styles/material/_angular-material.scss
@@ -1,7 +1,8 @@
@use '@angular/material' as mat;
@mixin angular-material() {
- @include mat.core();
+ @include mat.elevation-classes();
+ @include mat.app-background();
@include nb-for-theme(material-dark) {
$custom-dark-theme: mat.define-dark-theme(
diff --git a/packages/ui-core/theme/src/lib/components/footer/footer.component.scss b/packages/ui-core/theme/src/lib/components/footer/footer.component.scss
index 1f017da8ab0..dfcb2cb81ad 100644
--- a/packages/ui-core/theme/src/lib/components/footer/footer.component.scss
+++ b/packages/ui-core/theme/src/lib/components/footer/footer.component.scss
@@ -1,6 +1,6 @@
-@import '@nebular/theme/styles/global/breakpoints';
-@import 'bootstrap/scss/mixins/breakpoints';
-@import 'themes';
+@use '@nebular/theme/styles/global/breakpoints' as *;
+@use 'bootstrap/scss/mixins/breakpoints';
+@use 'themes' as *;
@include nb-install-component() {
width: 100%;
@@ -12,7 +12,9 @@
line-height: 11px;
letter-spacing: 0em;
color: var(--gauzy-text-color-2);
-
+ a {
+ text-decoration: none;
+ }
.socials {
font-size: 1.25rem;
display: flex;
@@ -43,7 +45,3 @@
}
}
}
-
-a {
- text-decoration: none;
-}
diff --git a/packages/ui-core/theme/src/lib/components/footer/footer.component.ts b/packages/ui-core/theme/src/lib/components/footer/footer.component.ts
index de466983822..3ee43bdf6a1 100644
--- a/packages/ui-core/theme/src/lib/components/footer/footer.component.ts
+++ b/packages/ui-core/theme/src/lib/components/footer/footer.component.ts
@@ -7,9 +7,10 @@ import { Environment, GAUZY_ENV } from '@gauzy/ui-config';
import { Store } from '@gauzy/ui-core/core';
@Component({
- selector: 'ngx-footer',
- styleUrls: ['./footer.component.scss'],
- templateUrl: './footer.component.html'
+ selector: 'ngx-footer',
+ styleUrls: ['./footer.component.scss'],
+ templateUrl: './footer.component.html',
+ standalone: false
})
export class FooterComponent extends TranslationBaseComponent implements OnInit {
companyName: string;
diff --git a/packages/ui-core/theme/src/lib/components/gauzy-logo/gauzy-logo.component.scss b/packages/ui-core/theme/src/lib/components/gauzy-logo/gauzy-logo.component.scss
index f8982089308..88f709218ce 100644
--- a/packages/ui-core/theme/src/lib/components/gauzy-logo/gauzy-logo.component.scss
+++ b/packages/ui-core/theme/src/lib/components/gauzy-logo/gauzy-logo.component.scss
@@ -1,4 +1,4 @@
-@import 'var';
+@use 'var' as *;
.accordion.workspace {
width: 100%;
diff --git a/packages/ui-core/theme/src/lib/components/gauzy-logo/gauzy-logo.component.ts b/packages/ui-core/theme/src/lib/components/gauzy-logo/gauzy-logo.component.ts
index 58dafc0640b..ca68f782a82 100644
--- a/packages/ui-core/theme/src/lib/components/gauzy-logo/gauzy-logo.component.ts
+++ b/packages/ui-core/theme/src/lib/components/gauzy-logo/gauzy-logo.component.ts
@@ -21,9 +21,10 @@ import { COSMIC_THEME, DARK_THEME, GAUZY_DARK, MATERIAL_DARK_THEME } from '../..
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-gauzy-logo',
- templateUrl: './gauzy-logo.component.html',
- styleUrls: ['./gauzy-logo.component.scss']
+ selector: 'ngx-gauzy-logo',
+ templateUrl: './gauzy-logo.component.html',
+ styleUrls: ['./gauzy-logo.component.scss'],
+ standalone: false
})
export class GauzyLogoComponent implements AfterViewInit, OnInit, OnDestroy {
public theme: string;
diff --git a/packages/ui-core/theme/src/lib/components/header/header.component.scss b/packages/ui-core/theme/src/lib/components/header/header.component.scss
index 0bfed36b031..18d47225d74 100644
--- a/packages/ui-core/theme/src/lib/components/header/header.component.scss
+++ b/packages/ui-core/theme/src/lib/components/header/header.component.scss
@@ -1,6 +1,6 @@
-@import '@nebular/theme/styles/global/breakpoints';
-@import 'bootstrap/scss/mixins/breakpoints';
-@import 'themes';
+@use '@nebular/theme/styles/global/breakpoints' as *;
+@use 'bootstrap/scss/mixins/breakpoints';
+@use 'themes' as *;
$orange: #f56d58;
diff --git a/packages/ui-core/theme/src/lib/components/header/header.component.ts b/packages/ui-core/theme/src/lib/components/header/header.component.ts
index 3ce9075efa0..054a426e943 100644
--- a/packages/ui-core/theme/src/lib/components/header/header.component.ts
+++ b/packages/ui-core/theme/src/lib/components/header/header.component.ts
@@ -46,9 +46,10 @@ import { ALL_EMPLOYEES_SELECTED, NO_EMPLOYEE_SELECTED, QuickActionsComponent } f
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-header',
- styleUrls: ['./header.component.scss'],
- templateUrl: './header.component.html'
+ selector: 'ngx-header',
+ styleUrls: ['./header.component.scss'],
+ templateUrl: './header.component.html',
+ standalone: false
})
export class HeaderComponent extends TranslationBaseComponent implements OnInit, OnDestroy, AfterViewInit {
isEmployee = false;
diff --git a/packages/ui-core/theme/src/lib/components/theme-sidebar/changelog/changelog.component.scss b/packages/ui-core/theme/src/lib/components/theme-sidebar/changelog/changelog.component.scss
index b37adcbc3a2..e29dfc6cbd9 100644
--- a/packages/ui-core/theme/src/lib/components/theme-sidebar/changelog/changelog.component.scss
+++ b/packages/ui-core/theme/src/lib/components/theme-sidebar/changelog/changelog.component.scss
@@ -1,5 +1,5 @@
-@import '@shared/_whats-new';
-@import 'gauzy/_gauzy-dialogs';
+@use '@shared/_whats-new';
+@use 'gauzy/_gauzy-dialogs';
::ng-deep.changelog-sidebar {
.main-container {
diff --git a/packages/ui-core/theme/src/lib/components/theme-sidebar/changelog/changelog.component.ts b/packages/ui-core/theme/src/lib/components/theme-sidebar/changelog/changelog.component.ts
index c170a33a60f..e40824f7813 100644
--- a/packages/ui-core/theme/src/lib/components/theme-sidebar/changelog/changelog.component.ts
+++ b/packages/ui-core/theme/src/lib/components/theme-sidebar/changelog/changelog.component.ts
@@ -8,9 +8,10 @@ import { ChangelogService } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-changelog',
- templateUrl: './changelog.component.html',
- styleUrls: ['./changelog.component.scss']
+ selector: 'ngx-changelog',
+ templateUrl: './changelog.component.html',
+ styleUrls: ['./changelog.component.scss'],
+ standalone: false
})
export class ChangelogComponent implements OnInit, OnDestroy {
learnMore: string;
diff --git a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/layout-selector/layout-selector.component.scss b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/layout-selector/layout-selector.component.scss
index 76803c8c04e..49ed62b1a71 100644
--- a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/layout-selector/layout-selector.component.scss
+++ b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/layout-selector/layout-selector.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-overrides' as *;
.theme-container{
display: flex;
@@ -26,4 +26,4 @@
display: flex;
align-items: center;
gap: 4px;
-}
\ No newline at end of file
+}
diff --git a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/layout-selector/layout-selector.component.ts b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/layout-selector/layout-selector.component.ts
index b4448e5b990..7d2076fe705 100644
--- a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/layout-selector/layout-selector.component.ts
+++ b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/layout-selector/layout-selector.component.ts
@@ -7,9 +7,10 @@ import { Store } from '@gauzy/ui-core/core';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-layout-selector',
- templateUrl: './layout-selector.component.html',
- styleUrls: ['./layout-selector.component.scss']
+ selector: 'gauzy-layout-selector',
+ templateUrl: './layout-selector.component.html',
+ styleUrls: ['./layout-selector.component.scss'],
+ standalone: false
})
export class LayoutSelectorComponent implements OnInit, OnDestroy {
user: IUser;
diff --git a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-language-selector/theme-language-selector.component.scss b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-language-selector/theme-language-selector.component.scss
index a91e20a64c6..5466c5793ff 100644
--- a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-language-selector/theme-language-selector.component.scss
+++ b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-language-selector/theme-language-selector.component.scss
@@ -1,4 +1,4 @@
-@import 'themes';
+@use 'themes' as *;
@include nb-install-component() {
h6 {
diff --git a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-language-selector/theme-language-selector.component.ts b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-language-selector/theme-language-selector.component.ts
index 4a4b7697a8d..482ef857f4b 100644
--- a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-language-selector/theme-language-selector.component.ts
+++ b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-language-selector/theme-language-selector.component.ts
@@ -9,9 +9,10 @@ import { ThemeLanguageSelectorService } from './theme-language-selector.service'
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-theme-language-selector',
- styleUrls: ['./theme-language-selector.component.scss'],
- templateUrl: './theme-language-selector.component.html'
+ selector: 'ngx-theme-language-selector',
+ styleUrls: ['./theme-language-selector.component.scss'],
+ templateUrl: './theme-language-selector.component.html',
+ standalone: false
})
export class ThemeLanguageSelectorComponent implements OnInit, OnDestroy, AfterViewInit {
user: IUser;
diff --git a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/container/theme-selector-container.component.ts b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/container/theme-selector-container.component.ts
index 3da1a2fef8a..a6a99900ea7 100644
--- a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/container/theme-selector-container.component.ts
+++ b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/container/theme-selector-container.component.ts
@@ -1,10 +1,11 @@
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
@Component({
- selector: 'ngx-theme-selector-container',
- templateUrl: './theme-selector-container.component.html',
- styleUrl: './theme-selector-container.component.scss',
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-theme-selector-container',
+ templateUrl: './theme-selector-container.component.html',
+ styleUrl: './theme-selector-container.component.scss',
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class ThemeSelectorContainerComponent {
@Input() isClassic = true;
diff --git a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/switch-theme/switch-theme.component.scss b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/switch-theme/switch-theme.component.scss
index 8792a97ac2a..bb39f9fc4ce 100644
--- a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/switch-theme/switch-theme.component.scss
+++ b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/switch-theme/switch-theme.component.scss
@@ -1,4 +1,4 @@
-@import 'var';
+@use 'var' as *;
:host .switch-container {
display: flex;
diff --git a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/switch-theme/switch-theme.component.ts b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/switch-theme/switch-theme.component.ts
index e83607796d9..7832a896436 100644
--- a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/switch-theme/switch-theme.component.ts
+++ b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/switch-theme/switch-theme.component.ts
@@ -8,9 +8,10 @@ import { filter, tap } from 'rxjs/operators';
import { untilDestroyed } from '@ngneat/until-destroy';
@Component({
- selector: 'gauzy-switch-theme',
- templateUrl: './switch-theme.component.html',
- styleUrls: ['./switch-theme.component.scss']
+ selector: 'gauzy-switch-theme',
+ templateUrl: './switch-theme.component.html',
+ styleUrls: ['./switch-theme.component.scss'],
+ standalone: false
})
export class SwitchThemeComponent extends ThemeSelectorComponent {
private DARK_OS_SCHEME = '(prefers-color-scheme: dark)';
diff --git a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/theme-selector-image/theme-selector-image.component.scss b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/theme-selector-image/theme-selector-image.component.scss
index a6729c4d232..23c2fefe165 100644
--- a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/theme-selector-image/theme-selector-image.component.scss
+++ b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/theme-selector-image/theme-selector-image.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-overrides' as *;
.theme-card {
display: flex;
diff --git a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/theme-selector-image/theme-selector-image.component.ts b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/theme-selector-image/theme-selector-image.component.ts
index 7b1b27156f7..df19fd25dc4 100644
--- a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/theme-selector-image/theme-selector-image.component.ts
+++ b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/theme-selector-image/theme-selector-image.component.ts
@@ -4,9 +4,10 @@ import { Store } from '@gauzy/ui-core/core';
import { ThemeSelectorComponent } from '../theme-selector.component';
@Component({
- selector: 'gauzy-theme-selector-image',
- templateUrl: './theme-selector-image.component.html',
- styleUrls: ['./theme-selector-image.component.scss']
+ selector: 'gauzy-theme-selector-image',
+ templateUrl: './theme-selector-image.component.html',
+ styleUrls: ['./theme-selector-image.component.scss'],
+ standalone: false
})
export class ThemeSelectorImageComponent extends ThemeSelectorComponent {
isOpen: boolean = false;
diff --git a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/theme-selector.component.scss b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/theme-selector.component.scss
index 51683df331d..f224bbc6a06 100644
--- a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/theme-selector.component.scss
+++ b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/theme-selector.component.scss
@@ -1,4 +1,4 @@
-@import 'gauzy/_gauzy-overrides';
+@use 'gauzy/_gauzy-overrides' as *;
.theme-container{
display: flex;
diff --git a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/theme-selector.component.ts b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/theme-selector.component.ts
index 590a610aa6f..89eee5d590a 100644
--- a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/theme-selector.component.ts
+++ b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/components/theme-selector/theme-selector.component.ts
@@ -16,9 +16,10 @@ import {
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-theme-selector',
- templateUrl: './theme-selector.component.html',
- styleUrls: ['./theme-selector.component.scss']
+ selector: 'gauzy-theme-selector',
+ templateUrl: './theme-selector.component.html',
+ styleUrls: ['./theme-selector.component.scss'],
+ standalone: false
})
export class ThemeSelectorComponent implements OnInit {
_themes = [
diff --git a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/theme-settings.component.scss b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/theme-settings.component.scss
index 92f81a85e8a..77ede4531f8 100644
--- a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/theme-settings.component.scss
+++ b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/theme-settings.component.scss
@@ -1,5 +1,5 @@
-@import 'themes';
-@import 'gauzy/_gauzy-dialogs';
+@use 'themes' as *;
+@use 'gauzy/_gauzy-dialogs' as *;
@include nb-install-component() {
h6 {
diff --git a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/theme-settings.component.ts b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/theme-settings.component.ts
index e8d243ea816..96813e022c5 100644
--- a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/theme-settings.component.ts
+++ b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-settings/theme-settings.component.ts
@@ -5,9 +5,10 @@ import { tap } from 'rxjs/operators';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-theme-settings',
- styleUrls: ['./theme-settings.component.scss'],
- templateUrl: './theme-settings.component.html'
+ selector: 'ngx-theme-settings',
+ styleUrls: ['./theme-settings.component.scss'],
+ templateUrl: './theme-settings.component.html',
+ standalone: false
})
export class ThemeSettingsComponent implements AfterViewChecked, OnDestroy {
private state: boolean;
diff --git a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-sidebar.component.ts b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-sidebar.component.ts
index 4bad0bbedaa..448f396c7f4 100644
--- a/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-sidebar.component.ts
+++ b/packages/ui-core/theme/src/lib/components/theme-sidebar/theme-sidebar.component.ts
@@ -13,10 +13,11 @@ import {
import { ISidebarConfig } from '@gauzy/ui-core/core';
@Component({
- selector: 'ngx-theme-sidebar',
- templateUrl: './theme-sidebar.component.html',
- styleUrls: ['./theme-sidebar.component.scss'],
- changeDetection: ChangeDetectionStrategy.OnPush
+ selector: 'ngx-theme-sidebar',
+ templateUrl: './theme-sidebar.component.html',
+ styleUrls: ['./theme-sidebar.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: false
})
export class ThemeSidebarComponent implements AfterViewInit, OnDestroy {
@Input() config: ISidebarConfig;
diff --git a/packages/ui-core/theme/src/lib/components/user-menu/user-menu.component.scss b/packages/ui-core/theme/src/lib/components/user-menu/user-menu.component.scss
index 9de9daf7780..59d558df435 100644
--- a/packages/ui-core/theme/src/lib/components/user-menu/user-menu.component.scss
+++ b/packages/ui-core/theme/src/lib/components/user-menu/user-menu.component.scss
@@ -1,4 +1,5 @@
-@import 'themes';
+@use 'themes' as *;
+
:host {
.main-menu {
width: 36rem;
diff --git a/packages/ui-core/theme/src/lib/components/user-menu/user-menu.component.ts b/packages/ui-core/theme/src/lib/components/user-menu/user-menu.component.ts
index 2836ea2d559..4c2b0bf6328 100644
--- a/packages/ui-core/theme/src/lib/components/user-menu/user-menu.component.ts
+++ b/packages/ui-core/theme/src/lib/components/user-menu/user-menu.component.ts
@@ -8,9 +8,10 @@ import { BehaviorSubject, tap, Observable, filter, firstValueFrom } from 'rxjs';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'gauzy-user-menu',
- templateUrl: './user-menu.component.html',
- styleUrls: ['./user-menu.component.scss']
+ selector: 'gauzy-user-menu',
+ templateUrl: './user-menu.component.html',
+ styleUrls: ['./user-menu.component.scss'],
+ standalone: false
})
export class UserMenuComponent implements OnInit {
private _user$: Observable;
diff --git a/packages/ui-core/theme/src/lib/components/user/user.component.scss b/packages/ui-core/theme/src/lib/components/user/user.component.scss
index 17652528ee2..c015774d7e3 100644
--- a/packages/ui-core/theme/src/lib/components/user/user.component.scss
+++ b/packages/ui-core/theme/src/lib/components/user/user.component.scss
@@ -1,4 +1,5 @@
-@import 'themes';
+@use 'themes' as *;
+
.user-container {
display: flex;
align-items: center;
diff --git a/packages/ui-core/theme/src/lib/components/user/user.component.ts b/packages/ui-core/theme/src/lib/components/user/user.component.ts
index f99b605aa93..d604735140d 100644
--- a/packages/ui-core/theme/src/lib/components/user/user.component.ts
+++ b/packages/ui-core/theme/src/lib/components/user/user.component.ts
@@ -4,9 +4,10 @@ import { filter, map } from 'rxjs/operators';
import { Observable } from 'rxjs';
@Component({
- selector: 'gauzy-user',
- templateUrl: './user.component.html',
- styleUrls: ['./user.component.scss']
+ selector: 'gauzy-user',
+ templateUrl: './user.component.html',
+ styleUrls: ['./user.component.scss'],
+ standalone: false
})
export class UserComponent implements OnInit {
@Input() showIdentity = false;
diff --git a/packages/ui-core/theme/src/lib/layouts/one-column/one-column.layout.scss b/packages/ui-core/theme/src/lib/layouts/one-column/one-column.layout.scss
index d9c93c0d80d..6067252dad8 100644
--- a/packages/ui-core/theme/src/lib/layouts/one-column/one-column.layout.scss
+++ b/packages/ui-core/theme/src/lib/layouts/one-column/one-column.layout.scss
@@ -1,6 +1,6 @@
-@import '@nebular/theme/styles/global/breakpoints';
-@import 'bootstrap/scss/mixins/breakpoints';
-@import 'themes';
+@use '@nebular/theme/styles/global/breakpoints' as *;
+@use 'bootstrap/scss/mixins/breakpoints' as *;
+@use 'themes' as *;
@include nb-install-component() {
.menu-sidebar ::ng-deep .scrollable {
diff --git a/packages/ui-core/theme/src/lib/layouts/one-column/one-column.layout.ts b/packages/ui-core/theme/src/lib/layouts/one-column/one-column.layout.ts
index ba5340f341a..96f31a6e535 100644
--- a/packages/ui-core/theme/src/lib/layouts/one-column/one-column.layout.ts
+++ b/packages/ui-core/theme/src/lib/layouts/one-column/one-column.layout.ts
@@ -11,9 +11,10 @@ import { ThemeLanguageSelectorService } from '../../components/theme-sidebar/the
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-one-column-layout',
- styleUrls: ['./one-column.layout.scss'],
- templateUrl: './one-column.layout.html'
+ selector: 'ngx-one-column-layout',
+ styleUrls: ['./one-column.layout.scss'],
+ templateUrl: './one-column.layout.html',
+ standalone: false
})
export class OneColumnLayoutComponent implements OnInit, AfterViewInit, OnDestroy {
userMenu = [
diff --git a/packages/ui-core/theme/src/lib/layouts/public/public.layout.scss b/packages/ui-core/theme/src/lib/layouts/public/public.layout.scss
index 2e33030e3b4..cb228a4b440 100644
--- a/packages/ui-core/theme/src/lib/layouts/public/public.layout.scss
+++ b/packages/ui-core/theme/src/lib/layouts/public/public.layout.scss
@@ -1,6 +1,5 @@
-@import 'bootstrap/scss/mixins/breakpoints';
-@import '@nebular/theme/styles/global/breakpoints';
-@import 'themes';
+@use '@nebular/theme/styles/global/breakpoints' as *;
+@use 'bootstrap/scss/mixins/breakpoints' as *;
+@use 'themes' as *;
-@include nb-install-component() {
-}
+@include nb-install-component() {}
diff --git a/packages/ui-core/theme/src/lib/layouts/public/public.layout.ts b/packages/ui-core/theme/src/lib/layouts/public/public.layout.ts
index b5009cd3457..e6c9ae8444c 100644
--- a/packages/ui-core/theme/src/lib/layouts/public/public.layout.ts
+++ b/packages/ui-core/theme/src/lib/layouts/public/public.layout.ts
@@ -9,9 +9,10 @@ import { WindowModeBlockScrollService } from '../../services';
@UntilDestroy({ checkProperties: true })
@Component({
- selector: 'ngx-public-layout',
- styleUrls: ['./public.layout.scss'],
- templateUrl: './public.layout.html'
+ selector: 'ngx-public-layout',
+ styleUrls: ['./public.layout.scss'],
+ templateUrl: './public.layout.html',
+ standalone: false
})
export class PublicLayoutComponent implements OnInit, AfterViewInit {
constructor(
diff --git a/packages/ui-core/theme/src/lib/layouts/three-columns/three-columns.layout.scss b/packages/ui-core/theme/src/lib/layouts/three-columns/three-columns.layout.scss
index ebf9b2c0924..71ab7c51837 100644
--- a/packages/ui-core/theme/src/lib/layouts/three-columns/three-columns.layout.scss
+++ b/packages/ui-core/theme/src/lib/layouts/three-columns/three-columns.layout.scss
@@ -1,6 +1,6 @@
-@import '@nebular/theme/styles/global/breakpoints';
-@import 'bootstrap/scss/mixins/breakpoints';
-@import 'themes';
+@use '@nebular/theme/styles/global/breakpoints' as *;
+@use 'bootstrap/scss/mixins/breakpoints' as *;
+@use 'themes' as *;
@include nb-install-component() {
.menu-sidebar ::ng-deep .scrollable {
diff --git a/packages/ui-core/theme/src/lib/layouts/three-columns/three-columns.layout.ts b/packages/ui-core/theme/src/lib/layouts/three-columns/three-columns.layout.ts
index 29a704c071f..3aa4ef783d5 100644
--- a/packages/ui-core/theme/src/lib/layouts/three-columns/three-columns.layout.ts
+++ b/packages/ui-core/theme/src/lib/layouts/three-columns/three-columns.layout.ts
@@ -1,9 +1,9 @@
import { Component } from '@angular/core';
@Component({
- selector: 'ngx-three-columns-layout',
- styleUrls: ['./three-columns.layout.scss'],
- template: `
+ selector: 'ngx-three-columns-layout',
+ styleUrls: ['./three-columns.layout.scss'],
+ template: `
@@ -25,6 +25,7 @@ import { Component } from '@angular/core';
- `
+ `,
+ standalone: false
})
export class ThreeColumnsLayoutComponent {}
diff --git a/packages/ui-core/theme/src/lib/layouts/two-columns/two-columns.layout.scss b/packages/ui-core/theme/src/lib/layouts/two-columns/two-columns.layout.scss
index ebf9b2c0924..71ab7c51837 100644
--- a/packages/ui-core/theme/src/lib/layouts/two-columns/two-columns.layout.scss
+++ b/packages/ui-core/theme/src/lib/layouts/two-columns/two-columns.layout.scss
@@ -1,6 +1,6 @@
-@import '@nebular/theme/styles/global/breakpoints';
-@import 'bootstrap/scss/mixins/breakpoints';
-@import 'themes';
+@use '@nebular/theme/styles/global/breakpoints' as *;
+@use 'bootstrap/scss/mixins/breakpoints' as *;
+@use 'themes' as *;
@include nb-install-component() {
.menu-sidebar ::ng-deep .scrollable {
diff --git a/packages/ui-core/theme/src/lib/layouts/two-columns/two-columns.layout.ts b/packages/ui-core/theme/src/lib/layouts/two-columns/two-columns.layout.ts
index f0cccd72ba9..c0a21c25a71 100644
--- a/packages/ui-core/theme/src/lib/layouts/two-columns/two-columns.layout.ts
+++ b/packages/ui-core/theme/src/lib/layouts/two-columns/two-columns.layout.ts
@@ -1,9 +1,9 @@
import { Component } from '@angular/core';
@Component({
- selector: 'ngx-two-columns-layout',
- styleUrls: ['./two-columns.layout.scss'],
- template: `
+ selector: 'ngx-two-columns-layout',
+ styleUrls: ['./two-columns.layout.scss'],
+ template: `
@@ -23,6 +23,7 @@ import { Component } from '@angular/core';
- `
+ `,
+ standalone: false
})
export class TwoColumnsLayoutComponent {}
diff --git a/packages/ui-core/theme/src/lib/pipes/capitalize.pipe.ts b/packages/ui-core/theme/src/lib/pipes/capitalize.pipe.ts
index bc45e163c2d..a73013aec18 100644
--- a/packages/ui-core/theme/src/lib/pipes/capitalize.pipe.ts
+++ b/packages/ui-core/theme/src/lib/pipes/capitalize.pipe.ts
@@ -1,6 +1,9 @@
import { Pipe, PipeTransform } from '@angular/core';
-@Pipe({ name: 'ngxCapitalize' })
+@Pipe({
+ name: 'ngxCapitalize',
+ standalone: false
+})
export class CapitalizePipe implements PipeTransform {
/**
* Capitalize first letter of every word
diff --git a/packages/ui-core/theme/src/lib/pipes/eva-icons.pipe.ts b/packages/ui-core/theme/src/lib/pipes/eva-icons.pipe.ts
index 6deb56a6502..c4136bcb928 100644
--- a/packages/ui-core/theme/src/lib/pipes/eva-icons.pipe.ts
+++ b/packages/ui-core/theme/src/lib/pipes/eva-icons.pipe.ts
@@ -8,7 +8,10 @@ import { DomSanitizer } from '@angular/platform-browser';
import { Pipe, PipeTransform } from '@angular/core';
import { icons } from 'eva-icons';
-@Pipe({ name: 'eva' })
+@Pipe({
+ name: 'eva',
+ standalone: false
+})
export class EvaIconsPipe implements PipeTransform {
private defaultOptions = {
height: 24,
diff --git a/packages/ui-core/theme/src/lib/pipes/number-with-commas.pipe.ts b/packages/ui-core/theme/src/lib/pipes/number-with-commas.pipe.ts
index 2787dda4cc1..b26a2d8e946 100644
--- a/packages/ui-core/theme/src/lib/pipes/number-with-commas.pipe.ts
+++ b/packages/ui-core/theme/src/lib/pipes/number-with-commas.pipe.ts
@@ -1,6 +1,9 @@
import { Pipe, PipeTransform } from '@angular/core';
-@Pipe({ name: 'ngxNumberWithCommas' })
+@Pipe({
+ name: 'ngxNumberWithCommas',
+ standalone: false
+})
export class NumberWithCommasPipe implements PipeTransform {
/**
* Formats a number with commas
diff --git a/packages/ui-core/theme/src/lib/pipes/plural.pipe.ts b/packages/ui-core/theme/src/lib/pipes/plural.pipe.ts
index b5535bc8620..b9dd30537ea 100644
--- a/packages/ui-core/theme/src/lib/pipes/plural.pipe.ts
+++ b/packages/ui-core/theme/src/lib/pipes/plural.pipe.ts
@@ -1,6 +1,9 @@
import { Pipe, PipeTransform } from '@angular/core';
-@Pipe({ name: 'ngxPlural' })
+@Pipe({
+ name: 'ngxPlural',
+ standalone: false
+})
export class PluralPipe implements PipeTransform {
/**
* Pluralizes a word based on a number
diff --git a/packages/ui-core/theme/src/lib/pipes/round.pipe.ts b/packages/ui-core/theme/src/lib/pipes/round.pipe.ts
index 5905a206f0c..5a7f75613df 100644
--- a/packages/ui-core/theme/src/lib/pipes/round.pipe.ts
+++ b/packages/ui-core/theme/src/lib/pipes/round.pipe.ts
@@ -1,6 +1,9 @@
import { Pipe, PipeTransform } from '@angular/core';
-@Pipe({ name: 'ngxRound' })
+@Pipe({
+ name: 'ngxRound',
+ standalone: false
+})
export class RoundPipe implements PipeTransform {
/**
* Rounds a number to the nearest integer
diff --git a/packages/ui-core/theme/src/lib/pipes/timing.pipe.ts b/packages/ui-core/theme/src/lib/pipes/timing.pipe.ts
index 1cbbe0fba16..f6b15060668 100644
--- a/packages/ui-core/theme/src/lib/pipes/timing.pipe.ts
+++ b/packages/ui-core/theme/src/lib/pipes/timing.pipe.ts
@@ -1,6 +1,9 @@
import { Pipe, PipeTransform } from '@angular/core';
-@Pipe({ name: 'timing' })
+@Pipe({
+ name: 'timing',
+ standalone: false
+})
export class TimingPipe implements PipeTransform {
/**
* Formats a time in seconds into minutes and seconds
diff --git a/packages/utils/package.json b/packages/utils/package.json
index 8a4165773bc..a0543027bd1 100644
--- a/packages/utils/package.json
+++ b/packages/utils/package.json
@@ -35,7 +35,7 @@
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^20.14.9",
- "typescript": "5.5.4"
+ "typescript": "^5.8.3"
},
"keywords": [
"common",
diff --git a/yarn.lock b/yarn.lock
index c2615769cf7..535bf0a715e 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -27,10 +27,10 @@
resolved "https://registry.yarnpkg.com/@akveo/ng2-completer/-/ng2-completer-9.0.1.tgz#49d2914fb62b78cc6ae5aed861ea7fa4ed5863d1"
integrity sha512-iACL0heOUmGV1GBKD3srwBJMFLZykld1MiTDvmbgEEXMhavp0UA45GdNsv7BBKI9XauuFKpOqHLlC+fT6DLGAQ==
-"@ali-hm/angular-tree-component@^18.0.5":
- version "18.0.5"
- resolved "https://registry.yarnpkg.com/@ali-hm/angular-tree-component/-/angular-tree-component-18.0.5.tgz#0c7e0c8c1212e8f33e591f9314c80bbcd6ddeb4f"
- integrity sha512-ZhN9AAwLb3uht66seoK2FWOyLC5aVxgf6TczVdhm3HbmhmagAoEMlIq7mj79jsV4LfKESPraFvOq+EnA6G/3tg==
+"@ali-hm/angular-tree-component@^19.0.1":
+ version "19.0.1"
+ resolved "https://registry.yarnpkg.com/@ali-hm/angular-tree-component/-/angular-tree-component-19.0.1.tgz#961590db5e8a65ffd83de88763457eeaaedc6cc8"
+ integrity sha512-VG/iMC2rVnvbBntlyYHsOW47bw1iiuQHzu+puiUmxg9y6BLQmvIsCejcHp3VM19hsbbm2lZHfFVBPVKcmEJnNw==
dependencies:
mobx "~4.14.1"
tslib "^2.5.0"
@@ -96,103 +96,160 @@
resolved "https://registry.yarnpkg.com/@analytics/type-utils/-/type-utils-0.6.2.tgz#60d706603a98a95681d4b1e9726c703fdd541a9e"
integrity sha512-TD+xbmsBLyYy/IxFimW/YL/9L2IEnM7/EoV9Aeh56U64Ify8o27HJcKjo38XY9Tcn0uOq1AX3thkKgvtWvwFQg==
-"@angular-builders/common@2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/@angular-builders/common/-/common-2.0.0.tgz#76920a63c50a84669c0a786b6281ae9fbf34560d"
- integrity sha512-O5YJc++DtJVJhqA/OomRKN2jGYzvU/YXtfrPAqcA9Is3Ob5jvV0L0JHSAjSw/KaLvk/FjBIqoRVcYdLp5LKddA==
+"@angular-builders/common@3.0.1":
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/@angular-builders/common/-/common-3.0.1.tgz#6a9cfa466e5011934c8bd494cd4df93273072dea"
+ integrity sha512-AIIqWtlr3sc2+CTEOqbDsrpVvkT6ijfYzvzPk1HLFrcP9Y2tYLXVFc+gGThlE+e1Om0pKminXcINEqm3J/yY5g==
dependencies:
- "@angular-devkit/core" "^18.0.0"
+ "@angular-devkit/core" "^19.0.0"
ts-node "^10.0.0"
tsconfig-paths "^4.1.0"
-"@angular-builders/custom-webpack@^18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@angular-builders/custom-webpack/-/custom-webpack-18.0.0.tgz#b51f8b03d6fff4955f63cbe9e090e0366acc90d2"
- integrity sha512-XSynPSXHq5+nrh7J2snfrcbvm6YGwUGQRzr7OuO3wURJ6CHOD9C+xEAmvEUWW8c1YjEslVNG7aLtCGz7LA4ymw==
+"@angular-builders/custom-webpack@^19.0.1":
+ version "19.0.1"
+ resolved "https://registry.yarnpkg.com/@angular-builders/custom-webpack/-/custom-webpack-19.0.1.tgz#f6296277ad0d1b0882886aa51b03c971d0f2747d"
+ integrity sha512-UXsMg0UgttwAwKAuKduwr9fUrQbN//ylaL4+qbBzdZcfEwyHYGzqprvdEgCcx0CgFKED72Z3OmY8ekNJZ5panA==
dependencies:
- "@angular-builders/common" "2.0.0"
- "@angular-devkit/architect" ">=0.1800.0 < 0.1900.0"
- "@angular-devkit/build-angular" "^18.0.0"
- "@angular-devkit/core" "^18.0.0"
+ "@angular-builders/common" "3.0.1"
+ "@angular-devkit/architect" ">=0.1900.0 < 0.2000.0"
+ "@angular-devkit/build-angular" "^19.0.0"
+ "@angular-devkit/core" "^19.0.0"
lodash "^4.17.15"
- webpack-merge "^5.7.3"
+ webpack-merge "^6.0.0"
-"@angular-devkit/architect@0.1002.0", "@angular-devkit/architect@0.1802.14", "@angular-devkit/architect@>= 0.1800.0 < 0.1900.0", "@angular-devkit/architect@>=0.1800.0 < 0.1900.0", "@angular-devkit/architect@^0.1802.12":
- version "0.1802.14"
- resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1802.14.tgz#da0bca3fc42844ae7b251593495d912d10b90ed4"
- integrity sha512-eplaGCXSlPwf1f4XwyzsYTd8/lJ0/Adm6XsODsBxvkZlIpLcps80/h2lH5MVJpoDREzIFu1BweDpYCoNK5yYZg==
+"@angular-devkit/architect@0.1002.0", "@angular-devkit/architect@0.1902.8", "@angular-devkit/architect@0.1902.9", "@angular-devkit/architect@>= 0.1900.0 < 0.2000.0", "@angular-devkit/architect@>=0.1900.0 < 0.2000.0", "@angular-devkit/architect@^0.1902.8":
+ version "0.1902.8"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1902.8.tgz#7c363c9e31f420f0ff88d7ebe2fc2fb601c3872f"
+ integrity sha512-0A1EhtC/A/N7ukOD+s04l7sCyeSF5llBupkZdksSfi5y56s8U6Lt7KuqrbsErkOKgaCWrP/+Ef8fo0RmYpnefQ==
dependencies:
- "@angular-devkit/core" "18.2.14"
+ "@angular-devkit/core" "19.2.8"
rxjs "7.8.1"
-"@angular-devkit/build-angular@^18.0.0", "@angular-devkit/build-angular@^18.2.9":
- version "18.2.14"
- resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-18.2.14.tgz#a8d53749467f962ec9e6733e13bd16851b8a2349"
- integrity sha512-ycie4OhvNv8eNVqvq46pCIf6kB50xbMOdnAVqmlj+BaQjWbGjUQPjAmp4VGqeDZZ/lW82xkfTmJZxc6pYp7YdQ==
+"@angular-devkit/build-angular@19.2.8":
+ version "19.2.8"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-19.2.8.tgz#bfcc012d072ae6ebc54abb5ff4240a8b9ef0bbce"
+ integrity sha512-jlOig9cXfjvH34mq74wAznXpRTb88XP1g5ZE8rKch4qGwh+mFF7aES86MxCvMZGXgz6KckC5dIEL7VHuB7NVCA==
dependencies:
"@ampproject/remapping" "2.3.0"
- "@angular-devkit/architect" "0.1802.14"
- "@angular-devkit/build-webpack" "0.1802.14"
- "@angular-devkit/core" "18.2.14"
- "@angular/build" "18.2.14"
- "@babel/core" "7.25.2"
- "@babel/generator" "7.25.0"
- "@babel/helper-annotate-as-pure" "7.24.7"
+ "@angular-devkit/architect" "0.1902.8"
+ "@angular-devkit/build-webpack" "0.1902.8"
+ "@angular-devkit/core" "19.2.8"
+ "@angular/build" "19.2.8"
+ "@babel/core" "7.26.10"
+ "@babel/generator" "7.26.10"
+ "@babel/helper-annotate-as-pure" "7.25.9"
"@babel/helper-split-export-declaration" "7.24.7"
- "@babel/plugin-transform-async-generator-functions" "7.25.0"
- "@babel/plugin-transform-async-to-generator" "7.24.7"
- "@babel/plugin-transform-runtime" "7.24.7"
- "@babel/preset-env" "7.25.3"
- "@babel/runtime" "7.25.0"
- "@discoveryjs/json-ext" "0.6.1"
- "@ngtools/webpack" "18.2.14"
- "@vitejs/plugin-basic-ssl" "1.1.0"
+ "@babel/plugin-transform-async-generator-functions" "7.26.8"
+ "@babel/plugin-transform-async-to-generator" "7.25.9"
+ "@babel/plugin-transform-runtime" "7.26.10"
+ "@babel/preset-env" "7.26.9"
+ "@babel/runtime" "7.26.10"
+ "@discoveryjs/json-ext" "0.6.3"
+ "@ngtools/webpack" "19.2.8"
+ "@vitejs/plugin-basic-ssl" "1.2.0"
ansi-colors "4.1.3"
autoprefixer "10.4.20"
- babel-loader "9.1.3"
+ babel-loader "9.2.1"
browserslist "^4.21.5"
copy-webpack-plugin "12.0.2"
- critters "0.0.24"
css-loader "7.1.2"
- esbuild-wasm "0.23.0"
- fast-glob "3.3.2"
+ esbuild-wasm "0.25.1"
+ fast-glob "3.3.3"
http-proxy-middleware "3.0.3"
- https-proxy-agent "7.0.5"
istanbul-lib-instrument "6.0.3"
jsonc-parser "3.3.1"
karma-source-map-support "1.4.0"
- less "4.2.0"
+ less "4.2.2"
less-loader "12.2.0"
license-webpack-plugin "4.0.2"
loader-utils "3.3.1"
- magic-string "0.30.11"
- mini-css-extract-plugin "2.9.0"
- mrmime "2.0.0"
+ mini-css-extract-plugin "2.9.2"
open "10.1.0"
ora "5.4.1"
- parse5-html-rewriting-stream "7.0.0"
picomatch "4.0.2"
- piscina "4.6.1"
- postcss "8.4.41"
+ piscina "4.8.0"
+ postcss "8.5.2"
postcss-loader "8.1.1"
resolve-url-loader "5.0.0"
rxjs "7.8.1"
- sass "1.77.6"
- sass-loader "16.0.0"
- semver "7.6.3"
+ sass "1.85.0"
+ sass-loader "16.0.5"
+ semver "7.7.1"
source-map-loader "5.0.0"
source-map-support "0.5.21"
- terser "5.31.6"
+ terser "5.39.0"
tree-kill "1.2.2"
- tslib "2.6.3"
- watchpack "2.4.1"
- webpack "5.94.0"
+ tslib "2.8.1"
+ webpack "5.98.0"
webpack-dev-middleware "7.4.2"
- webpack-dev-server "5.0.4"
+ webpack-dev-server "5.2.0"
webpack-merge "6.0.1"
webpack-subresource-integrity "5.1.0"
optionalDependencies:
- esbuild "0.23.0"
+ esbuild "0.25.1"
+
+"@angular-devkit/build-angular@^19.0.0":
+ version "19.2.9"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-19.2.9.tgz#bf5d68e0101e0a81715787f29547dc133ed1b799"
+ integrity sha512-v6x3h+LYyEew3EjoI1+2IiFDz6f96lJB1JvbbZj3Li9FMhO4M/xo4BaWHbeg9Lot/vUy6IAlR+BJywawNIzv0Q==
+ dependencies:
+ "@ampproject/remapping" "2.3.0"
+ "@angular-devkit/architect" "0.1902.9"
+ "@angular-devkit/build-webpack" "0.1902.9"
+ "@angular-devkit/core" "19.2.9"
+ "@angular/build" "19.2.9"
+ "@babel/core" "7.26.10"
+ "@babel/generator" "7.26.10"
+ "@babel/helper-annotate-as-pure" "7.25.9"
+ "@babel/helper-split-export-declaration" "7.24.7"
+ "@babel/plugin-transform-async-generator-functions" "7.26.8"
+ "@babel/plugin-transform-async-to-generator" "7.25.9"
+ "@babel/plugin-transform-runtime" "7.26.10"
+ "@babel/preset-env" "7.26.9"
+ "@babel/runtime" "7.26.10"
+ "@discoveryjs/json-ext" "0.6.3"
+ "@ngtools/webpack" "19.2.9"
+ "@vitejs/plugin-basic-ssl" "1.2.0"
+ ansi-colors "4.1.3"
+ autoprefixer "10.4.20"
+ babel-loader "9.2.1"
+ browserslist "^4.21.5"
+ copy-webpack-plugin "12.0.2"
+ css-loader "7.1.2"
+ esbuild-wasm "0.25.1"
+ fast-glob "3.3.3"
+ http-proxy-middleware "3.0.5"
+ istanbul-lib-instrument "6.0.3"
+ jsonc-parser "3.3.1"
+ karma-source-map-support "1.4.0"
+ less "4.2.2"
+ less-loader "12.2.0"
+ license-webpack-plugin "4.0.2"
+ loader-utils "3.3.1"
+ mini-css-extract-plugin "2.9.2"
+ open "10.1.0"
+ ora "5.4.1"
+ picomatch "4.0.2"
+ piscina "4.8.0"
+ postcss "8.5.2"
+ postcss-loader "8.1.1"
+ resolve-url-loader "5.0.0"
+ rxjs "7.8.1"
+ sass "1.85.0"
+ sass-loader "16.0.5"
+ semver "7.7.1"
+ source-map-loader "5.0.0"
+ source-map-support "0.5.21"
+ terser "5.39.0"
+ tree-kill "1.2.2"
+ tslib "2.8.1"
+ webpack "5.98.0"
+ webpack-dev-middleware "7.4.2"
+ webpack-dev-server "5.2.0"
+ webpack-merge "6.0.1"
+ webpack-subresource-integrity "5.1.0"
+ optionalDependencies:
+ esbuild "0.25.1"
"@angular-devkit/build-ng-packagr@^0.1002.0":
version "0.1002.0"
@@ -202,18 +259,26 @@
"@angular-devkit/architect" "0.1002.0"
rxjs "6.6.2"
-"@angular-devkit/build-webpack@0.1802.14":
- version "0.1802.14"
- resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.1802.14.tgz#080e82247818b613ab7da9d65538ad1e11b4e667"
- integrity sha512-cccne0SG4BaQHsKRRZCi/wMLJ7yFXrwvE8w+Kug3HdpJJoyH3FeG386EQuca/azslQlK+c5g4ywSZdXeNkGazA==
+"@angular-devkit/build-webpack@0.1902.8":
+ version "0.1902.8"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.1902.8.tgz#7abf7fb71b09f2390037ec17095682a064b9c647"
+ integrity sha512-0X7Lou22VV5ZoG9AW9q1+0kqWbaq51vHZg0YnjfqxEZ1gqKXqE4flZHAvUhm92aeRp8O1UH8YqujwqiCGzvCNg==
dependencies:
- "@angular-devkit/architect" "0.1802.14"
+ "@angular-devkit/architect" "0.1902.8"
rxjs "7.8.1"
-"@angular-devkit/core@16.0.1", "@angular-devkit/core@17.3.11", "@angular-devkit/core@18.2.14", "@angular-devkit/core@18.2.8", "@angular-devkit/core@18.2.9", "@angular-devkit/core@>= 18.0.0 < 19.0.0", "@angular-devkit/core@^18.0.0", "@angular-devkit/core@^18.2.9":
- version "18.2.14"
- resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-18.2.14.tgz#cd1f30e4a058ea5e2a765e6b9c4033a02d5fd513"
- integrity sha512-UGIGOjXuOyCW+5S4tINu7e6LOu738CmTw3h7Ui1I8OzdTIYJcYJrei8sgrwDwOYADRal+p0MeMlnykH3TM5XBA==
+"@angular-devkit/build-webpack@0.1902.9":
+ version "0.1902.9"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.1902.9.tgz#714d66a108cea4727ef9fbbf1d3a90541533552d"
+ integrity sha512-iklNoxKgwd54KT5GE0o5SB+0hr6Iu3YSpj9fi23DlLKcWWwFYaKqoRaYcfuL7KdUzunFg7dzB7n6TgYpVHWWJw==
+ dependencies:
+ "@angular-devkit/architect" "0.1902.9"
+ rxjs "7.8.1"
+
+"@angular-devkit/core@16.0.1", "@angular-devkit/core@17.3.11", "@angular-devkit/core@18.2.14", "@angular-devkit/core@18.2.8", "@angular-devkit/core@19.2.8", "@angular-devkit/core@19.2.9", "@angular-devkit/core@>= 19.0.0 < 20.0.0", "@angular-devkit/core@^18.0.0", "@angular-devkit/core@^19.0.0", "@angular-devkit/core@^19.2.8":
+ version "19.2.8"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-19.2.8.tgz#0dd367e754a8611e9d2529435aa4b8bc5b143496"
+ integrity sha512-kcxUHKf5Hi98r4gAvMP3ntJV8wuQ3/i6wuU9RcMP0UKUt2Rer5Ryis3MPqT92jvVVwg6lhrLIhXsFuWJMiYjXQ==
dependencies:
ajv "8.17.1"
ajv-formats "3.0.1"
@@ -256,17 +321,6 @@
ora "5.4.1"
rxjs "7.8.1"
-"@angular-devkit/schematics@18.2.14", "@angular-devkit/schematics@>= 18.0.0 < 19.0.0", "@angular-devkit/schematics@^18.0.0":
- version "18.2.14"
- resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-18.2.14.tgz#0cdc69503fee38cc190947cae1bbadf99ead24a6"
- integrity sha512-mukjZIHHB7gWratq8fZwUq5WZ+1bF4feG/idXr1wgQ+/FqWjs2PP7HDesHVcPymmRulpTyCpB7TNB1O1fgnCpA==
- dependencies:
- "@angular-devkit/core" "18.2.14"
- jsonc-parser "3.3.1"
- magic-string "0.30.11"
- ora "5.4.1"
- rxjs "7.8.1"
-
"@angular-devkit/schematics@18.2.8":
version "18.2.8"
resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-18.2.8.tgz#ad10b81c23b353dd46cd770b0a463b7f3d126d5f"
@@ -278,168 +332,215 @@
ora "5.4.1"
rxjs "7.8.1"
-"@angular-devkit/schematics@18.2.9":
- version "18.2.9"
- resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-18.2.9.tgz#fba66afc694c015dc5626af562c9e656859b2d32"
- integrity sha512-aIY5/IomDOINGCtFYi77uo0acDpdQNNCighfBBUGEBNMQ1eE3oGNGpLAH/qWeuxJndgmxrdKsvws9DdT46kLig==
+"@angular-devkit/schematics@19.2.8", "@angular-devkit/schematics@>= 19.0.0 < 20.0.0":
+ version "19.2.8"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-19.2.8.tgz#489783d3cc44c6e49bfd39602238ce04550fae45"
+ integrity sha512-QsmFuYdAyeCyg9WF/AJBhFXDUfCwmDFTEbsv5t5KPSP6slhk0GoLNZApniiFytU2siRlSxVNpve2uATyYuAYkQ==
dependencies:
- "@angular-devkit/core" "18.2.9"
+ "@angular-devkit/core" "19.2.8"
+ jsonc-parser "3.3.1"
+ magic-string "0.30.17"
+ ora "5.4.1"
+ rxjs "7.8.1"
+
+"@angular-devkit/schematics@^18.0.0":
+ version "18.2.14"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-18.2.14.tgz#0cdc69503fee38cc190947cae1bbadf99ead24a6"
+ integrity sha512-mukjZIHHB7gWratq8fZwUq5WZ+1bF4feG/idXr1wgQ+/FqWjs2PP7HDesHVcPymmRulpTyCpB7TNB1O1fgnCpA==
+ dependencies:
+ "@angular-devkit/core" "18.2.14"
jsonc-parser "3.3.1"
magic-string "0.30.11"
ora "5.4.1"
rxjs "7.8.1"
-"@angular-eslint/builder@18.4.3":
- version "18.4.3"
- resolved "https://registry.yarnpkg.com/@angular-eslint/builder/-/builder-18.4.3.tgz#800b8a68b464ddfc0d737b0ad38c7804b463d8e1"
- integrity sha512-NzmrXlr7GFE+cjwipY/CxBscZXNqnuK0us1mO6Z2T6MeH6m+rRcdlY/rZyKoRniyNNvuzl6vpEsfMIMmnfebrA==
+"@angular-eslint/builder@19.3.0":
+ version "19.3.0"
+ resolved "https://registry.yarnpkg.com/@angular-eslint/builder/-/builder-19.3.0.tgz#38b150f3b5a815fb66bd2a7428d40c5c16662ff7"
+ integrity sha512-j9xNrzZJq29ONSG6EaeQHve0Squkm6u6Dm8fZgWP7crTFOrtLXn7Wxgxuyl9eddpbWY1Ov1gjFuwBVnxIdyAqg==
dependencies:
- "@angular-devkit/architect" ">= 0.1800.0 < 0.1900.0"
- "@angular-devkit/core" ">= 18.0.0 < 19.0.0"
+ "@angular-devkit/architect" ">= 0.1900.0 < 0.2000.0"
+ "@angular-devkit/core" ">= 19.0.0 < 20.0.0"
-"@angular-eslint/bundled-angular-compiler@18.4.3":
- version "18.4.3"
- resolved "https://registry.yarnpkg.com/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-18.4.3.tgz#0810f76045b854782e6370953cf5324112a65f80"
- integrity sha512-zdrA8mR98X+U4YgHzUKmivRU+PxzwOL/j8G7eTOvBuq8GPzsP+hvak+tyxlgeGm9HsvpFj9ERHLtJ0xDUPs8fg==
+"@angular-eslint/bundled-angular-compiler@19.3.0":
+ version "19.3.0"
+ resolved "https://registry.yarnpkg.com/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-19.3.0.tgz#2d770366d52ad242762d0dedff491ff85591a678"
+ integrity sha512-63Zci4pvnUR1iSkikFlNbShF1tO5HOarYd8fvNfmOZwFfZ/1T3j3bCy9YbE+aM5SYrWqPaPP/OcwZ3wJ8WNvqA==
-"@angular-eslint/eslint-plugin-template@18.4.3":
- version "18.4.3"
- resolved "https://registry.yarnpkg.com/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-18.4.3.tgz#3e9820735f087afad193361e3081fad54dbf4e51"
- integrity sha512-ijGlX2N01ayMXTpeQivOA31AszO8OEbu9ZQUCxnu9AyMMhxyi2q50bujRChAvN9YXQfdQtbxuajxV6+aiWb5BQ==
+"@angular-eslint/eslint-plugin-template@19.3.0", "@angular-eslint/eslint-plugin-template@^19.3.0":
+ version "19.3.0"
+ resolved "https://registry.yarnpkg.com/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-19.3.0.tgz#fc7aae64f3f682fc9b886ef26bd661ec3a396117"
+ integrity sha512-WyouppTpOYut+wvv13wlqqZ8EHoDrCZxNfGKuEUYK1BPmQlTB8EIZfQH4iR1rFVS28Rw+XRIiXo1x3oC0SOfnA==
dependencies:
- "@angular-eslint/bundled-angular-compiler" "18.4.3"
- "@angular-eslint/utils" "18.4.3"
+ "@angular-eslint/bundled-angular-compiler" "19.3.0"
+ "@angular-eslint/utils" "19.3.0"
aria-query "5.3.2"
axobject-query "4.1.0"
-"@angular-eslint/eslint-plugin@18.4.3":
- version "18.4.3"
- resolved "https://registry.yarnpkg.com/@angular-eslint/eslint-plugin/-/eslint-plugin-18.4.3.tgz#7618bc6056086a98ed4d888f31185fc62e6be2d1"
- integrity sha512-AyJbupiwTBR81P6T59v+aULEnPpZBCBxL2S5QFWfAhNCwWhcof4GihvdK2Z87yhvzDGeAzUFSWl/beJfeFa+PA==
- dependencies:
- "@angular-eslint/bundled-angular-compiler" "18.4.3"
- "@angular-eslint/utils" "18.4.3"
-
-"@angular-eslint/schematics@18.4.3":
- version "18.4.3"
- resolved "https://registry.yarnpkg.com/@angular-eslint/schematics/-/schematics-18.4.3.tgz#1d6e9026e0054d556c37750ccff0ecce701561c1"
- integrity sha512-D5maKn5e6n58+8n7jLFLD4g+RGPOPeDSsvPc1sqial5tEKLxAJQJS9WZ28oef3bhkob6C60D+1H0mMmEEVvyVA==
- dependencies:
- "@angular-devkit/core" ">= 18.0.0 < 19.0.0"
- "@angular-devkit/schematics" ">= 18.0.0 < 19.0.0"
- "@angular-eslint/eslint-plugin" "18.4.3"
- "@angular-eslint/eslint-plugin-template" "18.4.3"
- ignore "6.0.2"
- semver "7.6.3"
+"@angular-eslint/eslint-plugin@19.3.0", "@angular-eslint/eslint-plugin@^19.3.0":
+ version "19.3.0"
+ resolved "https://registry.yarnpkg.com/@angular-eslint/eslint-plugin/-/eslint-plugin-19.3.0.tgz#8147b529db2cc37dfc08b56eabfc61414b5f44a3"
+ integrity sha512-nBLslLI20KnVbqlfNW7GcnI9R6cYCvRGjOE2QYhzxM316ciAQ62tvQuXP9ZVnRBLSKDAVnMeC0eTq9O4ysrxrQ==
+ dependencies:
+ "@angular-eslint/bundled-angular-compiler" "19.3.0"
+ "@angular-eslint/utils" "19.3.0"
+
+"@angular-eslint/schematics@19.3.0":
+ version "19.3.0"
+ resolved "https://registry.yarnpkg.com/@angular-eslint/schematics/-/schematics-19.3.0.tgz#330b88ddee3d4627343d767ef72ad7a841f2f5da"
+ integrity sha512-Wl5sFQ4t84LUb8mJ2iVfhYFhtF55IugXu7rRhPHtgIu9Ty5s1v3HGUx4LKv51m2kWhPPeFOTmjeBv1APzFlmnQ==
+ dependencies:
+ "@angular-devkit/core" ">= 19.0.0 < 20.0.0"
+ "@angular-devkit/schematics" ">= 19.0.0 < 20.0.0"
+ "@angular-eslint/eslint-plugin" "19.3.0"
+ "@angular-eslint/eslint-plugin-template" "19.3.0"
+ ignore "7.0.3"
+ semver "7.7.1"
strip-json-comments "3.1.1"
-"@angular-eslint/template-parser@18.4.3":
- version "18.4.3"
- resolved "https://registry.yarnpkg.com/@angular-eslint/template-parser/-/template-parser-18.4.3.tgz#2c6c396563a278a6f2dfdb3fbe9d4310ad0c6dc6"
- integrity sha512-JZMPtEB8yNip3kg4WDEWQyObSo2Hwf+opq2ElYuwe85GQkGhfJSJ2CQYo4FSwd+c5MUQAqESNRg9QqGYauDsiw==
+"@angular-eslint/template-parser@19.3.0", "@angular-eslint/template-parser@^19.3.0":
+ version "19.3.0"
+ resolved "https://registry.yarnpkg.com/@angular-eslint/template-parser/-/template-parser-19.3.0.tgz#63281aa8bdb0b252a088e5134e86ab305df5ce79"
+ integrity sha512-VxMNgsHXMWbbmZeBuBX5i8pzsSSEaoACVpaE+j8Muk60Am4Mxc0PytJm4n3znBSvI3B7Kq2+vStSRYPkOER4lA==
dependencies:
- "@angular-eslint/bundled-angular-compiler" "18.4.3"
+ "@angular-eslint/bundled-angular-compiler" "19.3.0"
eslint-scope "^8.0.2"
-"@angular-eslint/utils@18.4.3":
- version "18.4.3"
- resolved "https://registry.yarnpkg.com/@angular-eslint/utils/-/utils-18.4.3.tgz#1ad0558b21aaa987ce69604a7624d4b213e84d8c"
- integrity sha512-w0bJ9+ELAEiPBSTPPm9bvDngfu1d8JbzUhvs2vU+z7sIz/HMwUZT5S4naypj2kNN0gZYGYrW0lt+HIbW87zTAQ==
+"@angular-eslint/utils@19.3.0":
+ version "19.3.0"
+ resolved "https://registry.yarnpkg.com/@angular-eslint/utils/-/utils-19.3.0.tgz#c945b0967c93b255e6affed50d1a932930f5b27b"
+ integrity sha512-ovvbQh96FIJfepHqLCMdKFkPXr3EbcvYc9kMj9hZyIxs/9/VxwPH7x25mMs4VsL6rXVgH2FgG5kR38UZlcTNNw==
dependencies:
- "@angular-eslint/bundled-angular-compiler" "18.4.3"
+ "@angular-eslint/bundled-angular-compiler" "19.3.0"
-"@angular-slider/ngx-slider@^18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@angular-slider/ngx-slider/-/ngx-slider-18.0.0.tgz#262befda815d7273e2a5f5f360134653118ab8aa"
- integrity sha512-QR5zP3B++cLCqUkfg7j65y+4wrt5xPrua6mANoClj2iaoHaAzf3qi+/ANgYTeZ9StoFu22r35uy5Qg0GigjhxQ==
+"@angular-slider/ngx-slider@^19.0.0":
+ version "19.0.0"
+ resolved "https://registry.yarnpkg.com/@angular-slider/ngx-slider/-/ngx-slider-19.0.0.tgz#02c278d732bb076ecfc9f700096787b9c24a8469"
+ integrity sha512-VVJ+Fij5SKnbltxh6TdoBAUAKWfCnSLRPZ7e+r2uO88t8qte5/KHqVOdK4DWCjBr3rEr4YrPR4ylqBCuAWPsKQ==
dependencies:
detect-passive-events "^2.0.3"
rxjs "^7.8.1"
tslib "^2.3.0"
-"@angular/animations@18.2.12":
- version "18.2.12"
- resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-18.2.12.tgz#4f7e7fcea4109a5fa73ddb2cb62ad09e5d58e31b"
- integrity sha512-XcWH/VFQ1Rddhdqi/iU8lW3Qg96yVx1NPfrO5lhcSSvVUzYWTZ5r+jh3GqYqUgPWyEp1Kpw3FLsOgVcGcBWQkQ==
+"@angular/animations@19.2.7":
+ version "19.2.7"
+ resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-19.2.7.tgz#3889a93acc4b0bec112e6366fd00feba2a2dddf6"
+ integrity sha512-2/pdoiZWC5dZSlweu9Kop5yHI4TNlRAXbw5dLzPkzzfqi/eSKy3Xwd4FZlDKtGXljn0O+T6CDtfS3Y+Jnypokw==
dependencies:
tslib "^2.3.0"
-"@angular/build@18.2.14":
- version "18.2.14"
- resolved "https://registry.yarnpkg.com/@angular/build/-/build-18.2.14.tgz#2c3e17c245335b93b4c6b4a2a25f2099771f2b00"
- integrity sha512-9g24Oe/ZLULacW3hEpRCjSZIJPJTzN5BeFbA27epSV5NsrQOoeUGsEpRs90Zmt6eReO0fW1BGshWRoZtpSedcw==
+"@angular/build@19.2.8":
+ version "19.2.8"
+ resolved "https://registry.yarnpkg.com/@angular/build/-/build-19.2.8.tgz#ae72b59aadd3e7d18b2772c6ffc5549751d99ffc"
+ integrity sha512-lfg9OZqRZhmaXbmZTjSE24auOskd7XSbWjZsYodGcW4dYfZdCGkI1g2bP/p6EGQqm+8Vw+IHecyzHLtdJNcbpA==
dependencies:
"@ampproject/remapping" "2.3.0"
- "@angular-devkit/architect" "0.1802.14"
- "@babel/core" "7.25.2"
- "@babel/helper-annotate-as-pure" "7.24.7"
+ "@angular-devkit/architect" "0.1902.8"
+ "@babel/core" "7.26.10"
+ "@babel/helper-annotate-as-pure" "7.25.9"
"@babel/helper-split-export-declaration" "7.24.7"
- "@babel/plugin-syntax-import-attributes" "7.24.7"
- "@inquirer/confirm" "3.1.22"
- "@vitejs/plugin-basic-ssl" "1.1.0"
+ "@babel/plugin-syntax-import-attributes" "7.26.0"
+ "@inquirer/confirm" "5.1.6"
+ "@vitejs/plugin-basic-ssl" "1.2.0"
+ beasties "0.3.2"
browserslist "^4.23.0"
- critters "0.0.24"
- esbuild "0.23.0"
- fast-glob "3.3.2"
- https-proxy-agent "7.0.5"
- listr2 "8.2.4"
- lmdb "3.0.13"
- magic-string "0.30.11"
- mrmime "2.0.0"
+ esbuild "0.25.1"
+ fast-glob "3.3.3"
+ https-proxy-agent "7.0.6"
+ istanbul-lib-instrument "6.0.3"
+ listr2 "8.2.5"
+ magic-string "0.30.17"
+ mrmime "2.0.1"
parse5-html-rewriting-stream "7.0.0"
picomatch "4.0.2"
- piscina "4.6.1"
- rollup "4.22.4"
- sass "1.77.6"
- semver "7.6.3"
- vite "5.4.14"
- watchpack "2.4.1"
+ piscina "4.8.0"
+ rollup "4.34.8"
+ sass "1.85.0"
+ semver "7.7.1"
+ source-map-support "0.5.21"
+ vite "6.2.6"
+ watchpack "2.4.2"
+ optionalDependencies:
+ lmdb "3.2.6"
-"@angular/cdk@18.2.14":
- version "18.2.14"
- resolved "https://registry.yarnpkg.com/@angular/cdk/-/cdk-18.2.14.tgz#6114f37a77f2f182de482da2273c70f74a6cc52d"
- integrity sha512-vDyOh1lwjfVk9OqoroZAP8pf3xxKUvyl+TVR8nJxL4c5fOfUFkD7l94HaanqKSRwJcI2xiztuu92IVoHn8T33Q==
+"@angular/build@19.2.9":
+ version "19.2.9"
+ resolved "https://registry.yarnpkg.com/@angular/build/-/build-19.2.9.tgz#18662544b2831db6a9982822bcbd5958a7a61d4e"
+ integrity sha512-hrRhSdY98wGQ/jrpT3K73/Ii5FadQEJFcHy+ockqP2Xh7pXOwhGFc+D0ks4AdHea+pHtNbIb/qPd+UvR5izY3Q==
dependencies:
- tslib "^2.3.0"
+ "@ampproject/remapping" "2.3.0"
+ "@angular-devkit/architect" "0.1902.9"
+ "@babel/core" "7.26.10"
+ "@babel/helper-annotate-as-pure" "7.25.9"
+ "@babel/helper-split-export-declaration" "7.24.7"
+ "@babel/plugin-syntax-import-attributes" "7.26.0"
+ "@inquirer/confirm" "5.1.6"
+ "@vitejs/plugin-basic-ssl" "1.2.0"
+ beasties "0.3.2"
+ browserslist "^4.23.0"
+ esbuild "0.25.1"
+ fast-glob "3.3.3"
+ https-proxy-agent "7.0.6"
+ istanbul-lib-instrument "6.0.3"
+ listr2 "8.2.5"
+ magic-string "0.30.17"
+ mrmime "2.0.1"
+ parse5-html-rewriting-stream "7.0.0"
+ picomatch "4.0.2"
+ piscina "4.8.0"
+ rollup "4.34.8"
+ sass "1.85.0"
+ semver "7.7.1"
+ source-map-support "0.5.21"
+ vite "6.2.6"
+ watchpack "2.4.2"
optionalDependencies:
- parse5 "^7.1.2"
+ lmdb "3.2.6"
-"@angular/cli@~18.2.0":
- version "18.2.14"
- resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-18.2.14.tgz#d25ff1da20ea699c88aeb15428610418de802540"
- integrity sha512-kWgRRQtJPkr8iwN7DMbTi3sXOnv7H5QhbU/GgD3nNX3D8YCSPmnby4PAE/P3wn7FsIK9JsSchsCt7MZ37Urh9A==
+"@angular/cdk@19.2.7":
+ version "19.2.7"
+ resolved "https://registry.yarnpkg.com/@angular/cdk/-/cdk-19.2.7.tgz#3f71a8b4dba9ea483303f18a0b98aeb48cf86203"
+ integrity sha512-+Dx1WGEWMO3OYDKr2w/Z5xOCsdjkRuG7Z18ve8eeBOHayRaC0KbYoXkvPxUiJo233CJWEzKQ/qF13C54GGWnng==
dependencies:
- "@angular-devkit/architect" "0.1802.14"
- "@angular-devkit/core" "18.2.14"
- "@angular-devkit/schematics" "18.2.14"
- "@inquirer/prompts" "5.3.8"
- "@listr2/prompt-adapter-inquirer" "2.0.15"
- "@schematics/angular" "18.2.14"
+ parse5 "^7.1.2"
+ tslib "^2.3.0"
+
+"@angular/cli@~19.2.0":
+ version "19.2.8"
+ resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-19.2.8.tgz#7f88e807d40e77b7bc31998a115c6f6525dbad22"
+ integrity sha512-8/6HBgmqjE8fODFeIIohHVbmCjYlYQj3anvZneEUAGlRbr2IvLUxj7k1/O+9pawEEsOsyjXh5bIvFmEzL19fBw==
+ dependencies:
+ "@angular-devkit/architect" "0.1902.8"
+ "@angular-devkit/core" "19.2.8"
+ "@angular-devkit/schematics" "19.2.8"
+ "@inquirer/prompts" "7.3.2"
+ "@listr2/prompt-adapter-inquirer" "2.0.18"
+ "@schematics/angular" "19.2.8"
"@yarnpkg/lockfile" "1.1.0"
- ini "4.1.3"
+ ini "5.0.0"
jsonc-parser "3.3.1"
- listr2 "8.2.4"
- npm-package-arg "11.0.3"
- npm-pick-manifest "9.1.0"
- pacote "18.0.6"
- resolve "1.22.8"
- semver "7.6.3"
+ listr2 "8.2.5"
+ npm-package-arg "12.0.2"
+ npm-pick-manifest "10.0.0"
+ pacote "20.0.0"
+ resolve "1.22.10"
+ semver "7.7.1"
symbol-observable "4.0.0"
yargs "17.7.2"
-"@angular/common@18.2.12":
- version "18.2.12"
- resolved "https://registry.yarnpkg.com/@angular/common/-/common-18.2.12.tgz#b407edd1408b583cd09c047005a9455b868e8e4d"
- integrity sha512-gI5o8Bccsi8ow8Wk2vG4Tw/Rw9LoHEA9j8+qHKNR/55SCBsz68Syg310dSyxy+sApJO2WiqIadr5VP36dlSUFw==
+"@angular/common@19.2.7":
+ version "19.2.7"
+ resolved "https://registry.yarnpkg.com/@angular/common/-/common-19.2.7.tgz#7d6b8de53461ba21127bdef255e5cc279dd6c2d7"
+ integrity sha512-It6G8ohe0R5J6+YoCB6eDgmMp55+zYlbCIqEq1AoRPVTO7oVn5X65SIRDBlgpx4kzoBLeeYjDt8WUk4qIZ0GLQ==
dependencies:
tslib "^2.3.0"
-"@angular/compiler-cli@18.2.12":
- version "18.2.12"
- resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-18.2.12.tgz#7a83939de4a8b6b7fed1e85a98b14ee4d3e142b7"
- integrity sha512-IWimTNq5Q+i2Wxev6HLqnN4iYbPvLz04W1BBycT1LfGUsHcjFYLuUqbeUzHbk2snmBAzXkixgVpo8SF6P4Y5Pg==
+"@angular/compiler-cli@19.2.7":
+ version "19.2.7"
+ resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-19.2.7.tgz#6a1bdd11691ebb1f4ab155707adb20dfb1b9bc8c"
+ integrity sha512-NMRCqzmDyPx4nZDgdyDtjZqpFJ+Yc0GoDVRwEILXnKA26yHkptoGQHLcasZAOxjCA0uqLuLqNVRG/IwkCoTb2Q==
dependencies:
- "@babel/core" "7.25.2"
+ "@babel/core" "7.26.9"
"@jridgewell/sourcemap-codec" "^1.4.14"
chokidar "^4.0.0"
convert-source-map "^1.5.1"
@@ -448,64 +549,64 @@
tslib "^2.3.0"
yargs "^17.2.1"
-"@angular/compiler@18.2.12":
- version "18.2.12"
- resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-18.2.12.tgz#a84a21465e23011d06c375d5b9688982331e5541"
- integrity sha512-D5d5dLrjQal5DbAXJJNSsCC3UxzjOI2wbc+Iv+LOpRM1gpNwuYfZMX5W7cj62Ce4G2++78CJSppdKBp8D4HErQ==
+"@angular/compiler@19.2.7":
+ version "19.2.7"
+ resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-19.2.7.tgz#33d98a6a9050b770161cd5cb1370d7c516178b14"
+ integrity sha512-YHXqDX7VVhfZpRa+ljJZW+PONKjg/LGwdGBBGk3955Ww4Ql+Gjrnv0OxFhChUdwCgsl3yTSXfVep29jYCp6dbA==
dependencies:
tslib "^2.3.0"
-"@angular/core@18.2.12":
- version "18.2.12"
- resolved "https://registry.yarnpkg.com/@angular/core/-/core-18.2.12.tgz#c34b00ef545bb2aaba1614dda7f37879e36136d2"
- integrity sha512-wCf/OObwS6bpM60rk6bpMpCRGp0DlMLB1WNAMtfcaPNyqimVV5Bm98mWRhkOuRyvU3fU7iHhM/10ePVaoyu9+A==
+"@angular/core@19.2.7":
+ version "19.2.7"
+ resolved "https://registry.yarnpkg.com/@angular/core/-/core-19.2.7.tgz#b08ca004dd28c1a99dfc7b0551bcd5795161e153"
+ integrity sha512-Ft3cTkXNU538wLDNI4qesFLVfDLXCSHq0uSmi53bHJJxddEJmjD73mGkYA4GGPc3NghQiDEcHuNoTZ3EXWbxjg==
dependencies:
tslib "^2.3.0"
-"@angular/forms@18.2.12":
- version "18.2.12"
- resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-18.2.12.tgz#a934a81593a9135fd72320fc25b2b00ced5f0e98"
- integrity sha512-FsukBJEU6jfAmht7TrODTkct/o4iwCZvGozuThOp0tYUPD/E1rZZzuKjEyTnT5Azpfkf0Wqx1nmpz80cczELOQ==
+"@angular/forms@19.2.7":
+ version "19.2.7"
+ resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-19.2.7.tgz#dd154d7406771420b42b3cb33b300114c5ea8640"
+ integrity sha512-tFPt53Hd8PKBGhYBdrWX/Az14vFddgujYqRX8fSZMTfd1nsgzUyGmpvwI4ftgx3q4esn3q9xeL2jrLhx8CX8EA==
dependencies:
tslib "^2.3.0"
-"@angular/language-service@18.2.12":
- version "18.2.12"
- resolved "https://registry.yarnpkg.com/@angular/language-service/-/language-service-18.2.12.tgz#fae01c650c0bcc1618c7cf4681623f6c6ff6db52"
- integrity sha512-oaiVAnGzmPZvrXdGh8XnosaqfEPbZxO2225MxbbrD49XTqUgpaS2zrz1Uf5j42e8qytA2kj8tckLq7PAMm0D1w==
+"@angular/language-service@19.2.7":
+ version "19.2.7"
+ resolved "https://registry.yarnpkg.com/@angular/language-service/-/language-service-19.2.7.tgz#6d8ef4eec7b7d7f1da4cf87d52b5aa6b2e236294"
+ integrity sha512-+/Pa6NWkunZyHVPi8rAQX+5MmFSE7aBgB9Qs0ZiCymgdJt8aFC/ry0O62k+9s2uxBd//GS1CZSIttwOxOZnZ7w==
-"@angular/material@18.2.14":
- version "18.2.14"
- resolved "https://registry.yarnpkg.com/@angular/material/-/material-18.2.14.tgz#2521916b650d16399b8d545d8f4213bc0922b5c6"
- integrity sha512-28pxzJP49Mymt664WnCtPkKeg7kXUsQKTKGf/Kl95rNTEdTJLbnlcc8wV0rT0yQNR7kXgpfBnG7h0ETLv/iu5Q==
+"@angular/material@19.2.7":
+ version "19.2.7"
+ resolved "https://registry.yarnpkg.com/@angular/material/-/material-19.2.7.tgz#735e32653a4ca84b7c284899f7a1f03d6862bce2"
+ integrity sha512-6aFj4Rk3oa0XykCMjQ28KGVCMo7umd8M37bT9/FALMue6JEi2fPIDrbUDWb2GYL5rdHkgsr+dbEqlwAyHW/5cw==
dependencies:
tslib "^2.3.0"
-"@angular/platform-browser-dynamic@18.2.12":
- version "18.2.12"
- resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-18.2.12.tgz#2995a3deead33b52fb2ec3e29fe331b253f344b3"
- integrity sha512-dv1QEjYpcFno6+oUeGEDRWpB5g2Ufb0XkUbLJQIgrOk1Qbyzb8tmpDpTjok8jcKdquigMRWolr6Y1EOicfRlLw==
+"@angular/platform-browser-dynamic@19.2.7":
+ version "19.2.7"
+ resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-19.2.7.tgz#b1c167b284901b119357b09c117418f2867bb98d"
+ integrity sha512-x52xcUzx2IK3JElyD73gJ6t7B6Y8F/Imgs9Ob0B+zYpow3RGva5501m0fHUm8UbOXAD0t11kX68MW4fUp+TRTg==
dependencies:
tslib "^2.3.0"
-"@angular/platform-browser@18.2.12":
- version "18.2.12"
- resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-18.2.12.tgz#2c93db068f9f06b9c250e288cff206b4666e247c"
- integrity sha512-DRSMznuxuecrs+v5BRyd60/R4vjkQtuYUEPfzdo+rqxM83Dmr3PGtnqPRgd5oAFUbATxf02hQXijRD27K7rZRg==
+"@angular/platform-browser@19.2.7":
+ version "19.2.7"
+ resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-19.2.7.tgz#78ff1465c7231326619f2829b943f4621244aa72"
+ integrity sha512-3kwatNyOUzdt3p92f6SRrNEnYbRVTBl7jL3t2wB+6RDWGboJXGjzFjGqpPpdIftTG56uUijPqZXmQ0gpSgtvuQ==
dependencies:
tslib "^2.3.0"
-"@angular/router@18.2.12":
- version "18.2.12"
- resolved "https://registry.yarnpkg.com/@angular/router/-/router-18.2.12.tgz#3a0ff4c912ac26403dd1276d10cb173d07a57a59"
- integrity sha512-cz/1YWOZadAT35PPPYmpK3HSzKOE56nlUHue5bFkw73VSZr2iBn03ALLpd9YKzWgRmx3y7DqnlQtCkDu9JPGKQ==
+"@angular/router@19.2.7":
+ version "19.2.7"
+ resolved "https://registry.yarnpkg.com/@angular/router/-/router-19.2.7.tgz#128ed044ba3146456bb7d944f29ea0e8be2731e3"
+ integrity sha512-tbvDz/gkifgdeQ9CazoLLfSRqHE4FQcwMOglzEE9gNCIFohpcUwRnxqZMRhZ3RE4BVLqUmzk2LmJ3VYDf6RbqA==
dependencies:
tslib "^2.3.0"
-"@angular/service-worker@18.2.12":
- version "18.2.12"
- resolved "https://registry.yarnpkg.com/@angular/service-worker/-/service-worker-18.2.12.tgz#5548abcd20f248a40800bb90392a41f4290fe981"
- integrity sha512-rgztA+Eduo69y6cvSDtAXC5lMTWjgowSSreiyM4ssyjwd8vD6h2TZp/3slr8Tt6+Lh9J4bK+UdcqMIjIdDxwSw==
+"@angular/service-worker@19.2.7":
+ version "19.2.7"
+ resolved "https://registry.yarnpkg.com/@angular/service-worker/-/service-worker-19.2.7.tgz#4591da4f18f149a50b21636d810b835f746fdf11"
+ integrity sha512-zSgq7Vg65VMbPYUZDohNbmrMohulfAbH1CjJU9QdaGg7FbPSJfrN8noi6XnfHl2HqI4QMqvk+jqNNjalhMj0Gw==
dependencies:
tslib "^2.3.0"
@@ -514,10 +615,10 @@
resolved "https://registry.yarnpkg.com/@apollo/cache-control-types/-/cache-control-types-1.0.3.tgz#5da62cf64c3b4419dabfef4536b57a40c8ff0b47"
integrity sha512-F17/vCp7QVwom9eG7ToauIKdAxpSoadsJnqIfyryLFSkLSOEqu+eC5Z3N8OXcUVStuOMcNHlyraRsA6rRICu4g==
-"@apollo/client@^3.12.4", "@apollo/client@~3.2.5 || ~3.3.0 || ~3.4.0 || ~3.5.0 || ~3.6.0 || ~3.7.0 || ~3.8.0 || ~3.9.0 || ~3.10.0 || ~3.11.0 || ~3.12.0 || ~3.13.0":
- version "3.13.3"
- resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.13.3.tgz#297acee7eca2b11f38d91a1ef7084a1cb7bd6534"
- integrity sha512-StozissNsakG9cveM5IYcVjQBiJXXtfybSwIklrJQv3c0CLshWBlUv5OddMrJxKfQ1A+9WqPQZXjkA/HxbflDA==
+"@apollo/client@^3.12.4", "@apollo/client@~3.2.5 || ~3.3.0 || ~3.4.0 || ~3.5.0 || ~3.6.0 || ~3.7.0 || ~3.8.0 || ~3.9.0 || ~3.10.0 || ~3.11.0 || ~3.12.0":
+ version "3.12.8"
+ resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.12.8.tgz#99670386104f77ceba03f7e3dc0d91813f03cd3c"
+ integrity sha512-053z5eCM7zNl81Lxs/SqHv8e+x3sszrtmGS2TNuPW0ZTZzmKATMsIsoblx1Kt0E67Ze3jb99JSPiQHG9ozGc3g==
dependencies:
"@graphql-typed-document-node/core" "^3.1.1"
"@wry/caches" "^1.0.0"
@@ -533,10 +634,10 @@
tslib "^2.3.0"
zen-observable-ts "^1.2.5"
-"@apollo/federation-internals@2.10.0":
- version "2.10.0"
- resolved "https://registry.yarnpkg.com/@apollo/federation-internals/-/federation-internals-2.10.0.tgz#f345ffa0359538376c80c99323d13dfa7ccfcbb9"
- integrity sha512-IneWuwDc9ozKLcEsKw7YEkhzo7VAa54RjKwAVEqPFHPVqUjIYUKX99gSWAp9ZQeI8DGrz2a8uKEDlKGOHh3UaA==
+"@apollo/federation-internals@2.9.3":
+ version "2.9.3"
+ resolved "https://registry.yarnpkg.com/@apollo/federation-internals/-/federation-internals-2.9.3.tgz#c6fa913dd10c74c0e0fffd6a7b369923b2a5d665"
+ integrity sha512-r50Ykc331CZUw4TxpcqprAZOlGkbzoHEiHObUqUhQopTx8i0aXNt+0pc3nzqUAoT9OD83yJqPJV1EiZF2vCupQ==
dependencies:
"@types/uuid" "^9.0.0"
chalk "^4.1.0"
@@ -609,12 +710,12 @@
whatwg-mimetype "^3.0.0"
"@apollo/subgraph@^2.9.3":
- version "2.10.0"
- resolved "https://registry.yarnpkg.com/@apollo/subgraph/-/subgraph-2.10.0.tgz#1d3ca4e4b5ce10d916a7378ef9779dc93b5530e2"
- integrity sha512-krPirTgu17KgF4gpTY60sB8O2xHJt+4YuX1Cbmr7eGeNEbEjFervAEljkzyk7/nT/2nUjbugSPHymaCs1PUlnQ==
+ version "2.9.3"
+ resolved "https://registry.yarnpkg.com/@apollo/subgraph/-/subgraph-2.9.3.tgz#be248964c417d5b38d7cfba10634bd52e4b528a1"
+ integrity sha512-oaC79gM01kdXRBal8gGms1bpBwqe8AsX82yNYUPO/Tb7R1n+sCYcFrVqG25YeBYXWNP2qbJuD2yBGcsrEWnS1w==
dependencies:
"@apollo/cache-control-types" "^1.0.2"
- "@apollo/federation-internals" "2.10.0"
+ "@apollo/federation-internals" "2.9.3"
"@apollo/usage-reporting-protobuf@^4.1.0", "@apollo/usage-reporting-protobuf@^4.1.1":
version "4.1.1"
@@ -705,13 +806,13 @@
dependencies:
xss "^1.0.8"
-"@asamuzakjp/css-color@^3.1.1":
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/@asamuzakjp/css-color/-/css-color-3.1.1.tgz#41a612834dafd9353b89855b37baa8a03fb67bf2"
- integrity sha512-hpRD68SV2OMcZCsrbdkccTw5FXjNDLo5OuqSHyHZfwweGsDWZwDJ2+gONyNAbazZclobMirACLw0lk8WVxIqxA==
+"@asamuzakjp/css-color@^2.8.2":
+ version "2.8.3"
+ resolved "https://registry.yarnpkg.com/@asamuzakjp/css-color/-/css-color-2.8.3.tgz#665f0f5e8edb95d8f543847529e30fe5cc437ef7"
+ integrity sha512-GIc76d9UI1hCvOATjZPyHFmE5qhRccp3/zGfMPapK3jBi+yocEzp6BBB0UnfRYP9NP4FANqUZYb0hnfs3TM3hw==
dependencies:
- "@csstools/css-calc" "^2.1.2"
- "@csstools/css-color-parser" "^3.0.8"
+ "@csstools/css-calc" "^2.1.1"
+ "@csstools/css-color-parser" "^3.0.7"
"@csstools/css-parser-algorithms" "^3.0.4"
"@csstools/css-tokenizer" "^3.0.3"
lru-cache "^10.4.3"
@@ -725,13 +826,6 @@
css-tree "^2.3.1"
is-potential-custom-element-name "^1.0.1"
-"@asymmetrik/ngx-leaflet@^18.0.1":
- version "18.0.1"
- resolved "https://registry.yarnpkg.com/@asymmetrik/ngx-leaflet/-/ngx-leaflet-18.0.1.tgz#48b8e23b6e0351531574e074bee610ab0e00d911"
- integrity sha512-x1KFH+qUCB4H6GWJik0r+8k10/WZXgWcqq2Iu7GpcpESxBFan+bHtiWJt6urqvMOroObEWfMKmVND83CB7AjlQ==
- dependencies:
- tslib "^2.3.0"
-
"@aws-crypto/crc32@5.2.0":
version "5.2.0"
resolved "https://registry.yarnpkg.com/@aws-crypto/crc32/-/crc32-5.2.0.tgz#cfcc22570949c98c6689cfcbd2d693d36cdae2e1"
@@ -801,45 +895,45 @@
tslib "^2.6.2"
"@aws-sdk/client-dynamodb@^3.398.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.758.0.tgz#5a09df4fd676a88912f8e221f50964ba250d3bed"
- integrity sha512-ZdVVCvmQ4wlV22HgYZKndIYNKkFfTLi8PIOF5rOkqthgYRTfVzKajrVbYebCs5jMDTk73LPLl2Ze/EYBEHKlBA==
+ version "3.738.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.738.0.tgz#689183b23e6af49d019e58e790fa27e86db6491b"
+ integrity sha512-ui8mCwdK96dtPVrwaCt5k1pimohtJQR/yfvECyDhbuaIybMxa51rr1DefWd1MmC7UtGJkPnS2Txtng9UJKYsFA==
dependencies:
"@aws-crypto/sha256-browser" "5.2.0"
"@aws-crypto/sha256-js" "5.2.0"
- "@aws-sdk/core" "3.758.0"
- "@aws-sdk/credential-provider-node" "3.758.0"
+ "@aws-sdk/core" "3.734.0"
+ "@aws-sdk/credential-provider-node" "3.738.0"
"@aws-sdk/middleware-endpoint-discovery" "3.734.0"
"@aws-sdk/middleware-host-header" "3.734.0"
"@aws-sdk/middleware-logger" "3.734.0"
"@aws-sdk/middleware-recursion-detection" "3.734.0"
- "@aws-sdk/middleware-user-agent" "3.758.0"
+ "@aws-sdk/middleware-user-agent" "3.734.0"
"@aws-sdk/region-config-resolver" "3.734.0"
"@aws-sdk/types" "3.734.0"
- "@aws-sdk/util-endpoints" "3.743.0"
+ "@aws-sdk/util-endpoints" "3.734.0"
"@aws-sdk/util-user-agent-browser" "3.734.0"
- "@aws-sdk/util-user-agent-node" "3.758.0"
+ "@aws-sdk/util-user-agent-node" "3.734.0"
"@smithy/config-resolver" "^4.0.1"
- "@smithy/core" "^3.1.5"
+ "@smithy/core" "^3.1.1"
"@smithy/fetch-http-handler" "^5.0.1"
"@smithy/hash-node" "^4.0.1"
"@smithy/invalid-dependency" "^4.0.1"
"@smithy/middleware-content-length" "^4.0.1"
- "@smithy/middleware-endpoint" "^4.0.6"
- "@smithy/middleware-retry" "^4.0.7"
- "@smithy/middleware-serde" "^4.0.2"
+ "@smithy/middleware-endpoint" "^4.0.2"
+ "@smithy/middleware-retry" "^4.0.3"
+ "@smithy/middleware-serde" "^4.0.1"
"@smithy/middleware-stack" "^4.0.1"
"@smithy/node-config-provider" "^4.0.1"
- "@smithy/node-http-handler" "^4.0.3"
+ "@smithy/node-http-handler" "^4.0.2"
"@smithy/protocol-http" "^5.0.1"
- "@smithy/smithy-client" "^4.1.6"
+ "@smithy/smithy-client" "^4.1.2"
"@smithy/types" "^4.1.0"
"@smithy/url-parser" "^4.0.1"
"@smithy/util-base64" "^4.0.0"
"@smithy/util-body-length-browser" "^4.0.0"
"@smithy/util-body-length-node" "^4.0.0"
- "@smithy/util-defaults-mode-browser" "^4.0.7"
- "@smithy/util-defaults-mode-node" "^4.0.7"
+ "@smithy/util-defaults-mode-browser" "^4.0.3"
+ "@smithy/util-defaults-mode-node" "^4.0.3"
"@smithy/util-endpoints" "^3.0.1"
"@smithy/util-middleware" "^4.0.1"
"@smithy/util-retry" "^4.0.1"
@@ -850,34 +944,34 @@
uuid "^9.0.1"
"@aws-sdk/client-s3@^3.0.0", "@aws-sdk/client-s3@^3.717.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.758.0.tgz#430708980e86584172ea8e3dc1450be50bd86818"
- integrity sha512-f8SlhU9/93OC/WEI6xVJf/x/GoQFj9a/xXK6QCtr5fvCjfSLgMVFmKTiIl/tgtDRzxUDc8YS6EGtbHjJ3Y/atg==
+ version "3.738.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.738.0.tgz#0bb71fa46d234c0bd7f86f61c4075453bdf61a8e"
+ integrity sha512-1Im/p5yfoV15ydVY+QlffsWQkQm7iGVI+3V9tCHEUT6SdmukYEpN3G8Y+lWofRBidxzUE2Xd+MbChCXfzLAoAg==
dependencies:
"@aws-crypto/sha1-browser" "5.2.0"
"@aws-crypto/sha256-browser" "5.2.0"
"@aws-crypto/sha256-js" "5.2.0"
- "@aws-sdk/core" "3.758.0"
- "@aws-sdk/credential-provider-node" "3.758.0"
+ "@aws-sdk/core" "3.734.0"
+ "@aws-sdk/credential-provider-node" "3.738.0"
"@aws-sdk/middleware-bucket-endpoint" "3.734.0"
"@aws-sdk/middleware-expect-continue" "3.734.0"
- "@aws-sdk/middleware-flexible-checksums" "3.758.0"
+ "@aws-sdk/middleware-flexible-checksums" "3.735.0"
"@aws-sdk/middleware-host-header" "3.734.0"
"@aws-sdk/middleware-location-constraint" "3.734.0"
"@aws-sdk/middleware-logger" "3.734.0"
"@aws-sdk/middleware-recursion-detection" "3.734.0"
- "@aws-sdk/middleware-sdk-s3" "3.758.0"
+ "@aws-sdk/middleware-sdk-s3" "3.734.0"
"@aws-sdk/middleware-ssec" "3.734.0"
- "@aws-sdk/middleware-user-agent" "3.758.0"
+ "@aws-sdk/middleware-user-agent" "3.734.0"
"@aws-sdk/region-config-resolver" "3.734.0"
- "@aws-sdk/signature-v4-multi-region" "3.758.0"
+ "@aws-sdk/signature-v4-multi-region" "3.734.0"
"@aws-sdk/types" "3.734.0"
- "@aws-sdk/util-endpoints" "3.743.0"
+ "@aws-sdk/util-endpoints" "3.734.0"
"@aws-sdk/util-user-agent-browser" "3.734.0"
- "@aws-sdk/util-user-agent-node" "3.758.0"
+ "@aws-sdk/util-user-agent-node" "3.734.0"
"@aws-sdk/xml-builder" "3.734.0"
"@smithy/config-resolver" "^4.0.1"
- "@smithy/core" "^3.1.5"
+ "@smithy/core" "^3.1.1"
"@smithy/eventstream-serde-browser" "^4.0.1"
"@smithy/eventstream-serde-config-resolver" "^4.0.1"
"@smithy/eventstream-serde-node" "^4.0.1"
@@ -888,129 +982,129 @@
"@smithy/invalid-dependency" "^4.0.1"
"@smithy/md5-js" "^4.0.1"
"@smithy/middleware-content-length" "^4.0.1"
- "@smithy/middleware-endpoint" "^4.0.6"
- "@smithy/middleware-retry" "^4.0.7"
- "@smithy/middleware-serde" "^4.0.2"
+ "@smithy/middleware-endpoint" "^4.0.2"
+ "@smithy/middleware-retry" "^4.0.3"
+ "@smithy/middleware-serde" "^4.0.1"
"@smithy/middleware-stack" "^4.0.1"
"@smithy/node-config-provider" "^4.0.1"
- "@smithy/node-http-handler" "^4.0.3"
+ "@smithy/node-http-handler" "^4.0.2"
"@smithy/protocol-http" "^5.0.1"
- "@smithy/smithy-client" "^4.1.6"
+ "@smithy/smithy-client" "^4.1.2"
"@smithy/types" "^4.1.0"
"@smithy/url-parser" "^4.0.1"
"@smithy/util-base64" "^4.0.0"
"@smithy/util-body-length-browser" "^4.0.0"
"@smithy/util-body-length-node" "^4.0.0"
- "@smithy/util-defaults-mode-browser" "^4.0.7"
- "@smithy/util-defaults-mode-node" "^4.0.7"
+ "@smithy/util-defaults-mode-browser" "^4.0.3"
+ "@smithy/util-defaults-mode-node" "^4.0.3"
"@smithy/util-endpoints" "^3.0.1"
"@smithy/util-middleware" "^4.0.1"
"@smithy/util-retry" "^4.0.1"
- "@smithy/util-stream" "^4.1.2"
+ "@smithy/util-stream" "^4.0.2"
"@smithy/util-utf8" "^4.0.0"
"@smithy/util-waiter" "^4.0.2"
tslib "^2.6.2"
-"@aws-sdk/client-sso@3.758.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.758.0.tgz#59a249abdfa52125fbe98b1d59c11e4f08ca6527"
- integrity sha512-BoGO6IIWrLyLxQG6txJw6RT2urmbtlwfggapNCrNPyYjlXpzTSJhBYjndg7TpDATFd0SXL0zm8y/tXsUXNkdYQ==
+"@aws-sdk/client-sso@3.734.0":
+ version "3.734.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.734.0.tgz#789c98267f07aaa7155b404d0bfd4059c4b4deb9"
+ integrity sha512-oerepp0mut9VlgTwnG5Ds/lb0C0b2/rQ+hL/rF6q+HGKPfGsCuPvFx1GtwGKCXd49ase88/jVgrhcA9OQbz3kg==
dependencies:
"@aws-crypto/sha256-browser" "5.2.0"
"@aws-crypto/sha256-js" "5.2.0"
- "@aws-sdk/core" "3.758.0"
+ "@aws-sdk/core" "3.734.0"
"@aws-sdk/middleware-host-header" "3.734.0"
"@aws-sdk/middleware-logger" "3.734.0"
"@aws-sdk/middleware-recursion-detection" "3.734.0"
- "@aws-sdk/middleware-user-agent" "3.758.0"
+ "@aws-sdk/middleware-user-agent" "3.734.0"
"@aws-sdk/region-config-resolver" "3.734.0"
"@aws-sdk/types" "3.734.0"
- "@aws-sdk/util-endpoints" "3.743.0"
+ "@aws-sdk/util-endpoints" "3.734.0"
"@aws-sdk/util-user-agent-browser" "3.734.0"
- "@aws-sdk/util-user-agent-node" "3.758.0"
+ "@aws-sdk/util-user-agent-node" "3.734.0"
"@smithy/config-resolver" "^4.0.1"
- "@smithy/core" "^3.1.5"
+ "@smithy/core" "^3.1.1"
"@smithy/fetch-http-handler" "^5.0.1"
"@smithy/hash-node" "^4.0.1"
"@smithy/invalid-dependency" "^4.0.1"
"@smithy/middleware-content-length" "^4.0.1"
- "@smithy/middleware-endpoint" "^4.0.6"
- "@smithy/middleware-retry" "^4.0.7"
- "@smithy/middleware-serde" "^4.0.2"
+ "@smithy/middleware-endpoint" "^4.0.2"
+ "@smithy/middleware-retry" "^4.0.3"
+ "@smithy/middleware-serde" "^4.0.1"
"@smithy/middleware-stack" "^4.0.1"
"@smithy/node-config-provider" "^4.0.1"
- "@smithy/node-http-handler" "^4.0.3"
+ "@smithy/node-http-handler" "^4.0.2"
"@smithy/protocol-http" "^5.0.1"
- "@smithy/smithy-client" "^4.1.6"
+ "@smithy/smithy-client" "^4.1.2"
"@smithy/types" "^4.1.0"
"@smithy/url-parser" "^4.0.1"
"@smithy/util-base64" "^4.0.0"
"@smithy/util-body-length-browser" "^4.0.0"
"@smithy/util-body-length-node" "^4.0.0"
- "@smithy/util-defaults-mode-browser" "^4.0.7"
- "@smithy/util-defaults-mode-node" "^4.0.7"
+ "@smithy/util-defaults-mode-browser" "^4.0.3"
+ "@smithy/util-defaults-mode-node" "^4.0.3"
"@smithy/util-endpoints" "^3.0.1"
"@smithy/util-middleware" "^4.0.1"
"@smithy/util-retry" "^4.0.1"
"@smithy/util-utf8" "^4.0.0"
tslib "^2.6.2"
-"@aws-sdk/core@3.758.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.758.0.tgz#d13a4bb95de0460d5269cd5a40503c85b344b0b4"
- integrity sha512-0RswbdR9jt/XKemaLNuxi2gGr4xGlHyGxkTdhSQzCyUe9A9OPCoLl3rIESRguQEech+oJnbHk/wuiwHqTuP9sg==
+"@aws-sdk/core@3.734.0":
+ version "3.734.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.734.0.tgz#fa2289750efd75f4fb8c45719a4a4ea7e7755160"
+ integrity sha512-SxnDqf3vobdm50OLyAKfqZetv6zzwnSqwIwd3jrbopxxHKqNIM/I0xcYjD6Tn+mPig+u7iRKb9q3QnEooFTlmg==
dependencies:
"@aws-sdk/types" "3.734.0"
- "@smithy/core" "^3.1.5"
+ "@smithy/core" "^3.1.1"
"@smithy/node-config-provider" "^4.0.1"
"@smithy/property-provider" "^4.0.1"
"@smithy/protocol-http" "^5.0.1"
"@smithy/signature-v4" "^5.0.1"
- "@smithy/smithy-client" "^4.1.6"
+ "@smithy/smithy-client" "^4.1.2"
"@smithy/types" "^4.1.0"
"@smithy/util-middleware" "^4.0.1"
fast-xml-parser "4.4.1"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-env@3.758.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.758.0.tgz#6193d1607eedd0929640ff64013f7787f29ff6a1"
- integrity sha512-N27eFoRrO6MeUNumtNHDW9WOiwfd59LPXPqDrIa3kWL/s+fOKFHb9xIcF++bAwtcZnAxKkgpDCUP+INNZskE+w==
+"@aws-sdk/credential-provider-env@3.734.0":
+ version "3.734.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.734.0.tgz#6c0b1734764a7fb1616455836b1c3dacd99e50a3"
+ integrity sha512-gtRkzYTGafnm1FPpiNO8VBmJrYMoxhDlGPYDVcijzx3DlF8dhWnowuSBCxLSi+MJMx5hvwrX2A+e/q0QAeHqmw==
dependencies:
- "@aws-sdk/core" "3.758.0"
+ "@aws-sdk/core" "3.734.0"
"@aws-sdk/types" "3.734.0"
"@smithy/property-provider" "^4.0.1"
"@smithy/types" "^4.1.0"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-http@3.758.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.758.0.tgz#f7b28d642f2ac933e81a7add08ce582b398c1635"
- integrity sha512-Xt9/U8qUCiw1hihztWkNeIR+arg6P+yda10OuCHX6kFVx3auTlU7+hCqs3UxqniGU4dguHuftf3mRpi5/GJ33Q==
+"@aws-sdk/credential-provider-http@3.734.0":
+ version "3.734.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.734.0.tgz#21c5fbb380d1dd503491897b346e1e0b1d06ae41"
+ integrity sha512-JFSL6xhONsq+hKM8xroIPhM5/FOhiQ1cov0lZxhzZWj6Ai3UAjucy3zyIFDr9MgP1KfCYNdvyaUq9/o+HWvEDg==
dependencies:
- "@aws-sdk/core" "3.758.0"
+ "@aws-sdk/core" "3.734.0"
"@aws-sdk/types" "3.734.0"
"@smithy/fetch-http-handler" "^5.0.1"
- "@smithy/node-http-handler" "^4.0.3"
+ "@smithy/node-http-handler" "^4.0.2"
"@smithy/property-provider" "^4.0.1"
"@smithy/protocol-http" "^5.0.1"
- "@smithy/smithy-client" "^4.1.6"
+ "@smithy/smithy-client" "^4.1.2"
"@smithy/types" "^4.1.0"
- "@smithy/util-stream" "^4.1.2"
+ "@smithy/util-stream" "^4.0.2"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-ini@3.758.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.758.0.tgz#66457e71d8f5013e18111b25629c2367ed8ef116"
- integrity sha512-cymSKMcP5d+OsgetoIZ5QCe1wnp2Q/tq+uIxVdh9MbfdBBEnl9Ecq6dH6VlYS89sp4QKuxHxkWXVnbXU3Q19Aw==
- dependencies:
- "@aws-sdk/core" "3.758.0"
- "@aws-sdk/credential-provider-env" "3.758.0"
- "@aws-sdk/credential-provider-http" "3.758.0"
- "@aws-sdk/credential-provider-process" "3.758.0"
- "@aws-sdk/credential-provider-sso" "3.758.0"
- "@aws-sdk/credential-provider-web-identity" "3.758.0"
- "@aws-sdk/nested-clients" "3.758.0"
+"@aws-sdk/credential-provider-ini@3.734.0":
+ version "3.734.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.734.0.tgz#5769ae28cd255d4fc946799c0273b4af6f2f12bb"
+ integrity sha512-HEyaM/hWI7dNmb4NhdlcDLcgJvrilk8G4DQX6qz0i4pBZGC2l4iffuqP8K6ZQjUfz5/6894PzeFuhTORAMd+cg==
+ dependencies:
+ "@aws-sdk/core" "3.734.0"
+ "@aws-sdk/credential-provider-env" "3.734.0"
+ "@aws-sdk/credential-provider-http" "3.734.0"
+ "@aws-sdk/credential-provider-process" "3.734.0"
+ "@aws-sdk/credential-provider-sso" "3.734.0"
+ "@aws-sdk/credential-provider-web-identity" "3.734.0"
+ "@aws-sdk/nested-clients" "3.734.0"
"@aws-sdk/types" "3.734.0"
"@smithy/credential-provider-imds" "^4.0.1"
"@smithy/property-provider" "^4.0.1"
@@ -1018,17 +1112,17 @@
"@smithy/types" "^4.1.0"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-node@3.758.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.758.0.tgz#b0a5d18e5d7f1b091fd891e2e8088578c0246cef"
- integrity sha512-+DaMv63wiq7pJrhIQzZYMn4hSarKiizDoJRvyR7WGhnn0oQ/getX9Z0VNCV3i7lIFoLNTb7WMmQ9k7+z/uD5EQ==
- dependencies:
- "@aws-sdk/credential-provider-env" "3.758.0"
- "@aws-sdk/credential-provider-http" "3.758.0"
- "@aws-sdk/credential-provider-ini" "3.758.0"
- "@aws-sdk/credential-provider-process" "3.758.0"
- "@aws-sdk/credential-provider-sso" "3.758.0"
- "@aws-sdk/credential-provider-web-identity" "3.758.0"
+"@aws-sdk/credential-provider-node@3.738.0":
+ version "3.738.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.738.0.tgz#0a470fc4d2e791c26da57261b8b14f07de43cd74"
+ integrity sha512-3MuREsazwBxghKb2sQQHvie+uuK4dX4/ckFYiSoffzJQd0YHxaGxf8cr4NOSCQCUesWu8D3Y0SzlnHGboVSkpA==
+ dependencies:
+ "@aws-sdk/credential-provider-env" "3.734.0"
+ "@aws-sdk/credential-provider-http" "3.734.0"
+ "@aws-sdk/credential-provider-ini" "3.734.0"
+ "@aws-sdk/credential-provider-process" "3.734.0"
+ "@aws-sdk/credential-provider-sso" "3.734.0"
+ "@aws-sdk/credential-provider-web-identity" "3.734.0"
"@aws-sdk/types" "3.734.0"
"@smithy/credential-provider-imds" "^4.0.1"
"@smithy/property-provider" "^4.0.1"
@@ -1036,39 +1130,39 @@
"@smithy/types" "^4.1.0"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-process@3.758.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.758.0.tgz#563bfae58049afd9968ca60f61672753834ff506"
- integrity sha512-AzcY74QTPqcbXWVgjpPZ3HOmxQZYPROIBz2YINF0OQk0MhezDWV/O7Xec+K1+MPGQO3qS6EDrUUlnPLjsqieHA==
+"@aws-sdk/credential-provider-process@3.734.0":
+ version "3.734.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.734.0.tgz#eb1de678a9c3d2d7b382e74a670fa283327f9c45"
+ integrity sha512-zvjsUo+bkYn2vjT+EtLWu3eD6me+uun+Hws1IyWej/fKFAqiBPwyeyCgU7qjkiPQSXqk1U9+/HG9IQ6Iiz+eBw==
dependencies:
- "@aws-sdk/core" "3.758.0"
+ "@aws-sdk/core" "3.734.0"
"@aws-sdk/types" "3.734.0"
"@smithy/property-provider" "^4.0.1"
"@smithy/shared-ini-file-loader" "^4.0.1"
"@smithy/types" "^4.1.0"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-sso@3.758.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.758.0.tgz#5098c196a2dd38ba467aca052fc5193476b8a404"
- integrity sha512-x0FYJqcOLUCv8GLLFDYMXRAQKGjoM+L0BG4BiHYZRDf24yQWFCAZsCQAYKo6XZYh2qznbsW6f//qpyJ5b0QVKQ==
+"@aws-sdk/credential-provider-sso@3.734.0":
+ version "3.734.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.734.0.tgz#68a9d678319e9743d65cf59e2d29c0c440d8975c"
+ integrity sha512-cCwwcgUBJOsV/ddyh1OGb4gKYWEaTeTsqaAK19hiNINfYV/DO9r4RMlnWAo84sSBfJuj9shUNsxzyoe6K7R92Q==
dependencies:
- "@aws-sdk/client-sso" "3.758.0"
- "@aws-sdk/core" "3.758.0"
- "@aws-sdk/token-providers" "3.758.0"
+ "@aws-sdk/client-sso" "3.734.0"
+ "@aws-sdk/core" "3.734.0"
+ "@aws-sdk/token-providers" "3.734.0"
"@aws-sdk/types" "3.734.0"
"@smithy/property-provider" "^4.0.1"
"@smithy/shared-ini-file-loader" "^4.0.1"
"@smithy/types" "^4.1.0"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-web-identity@3.758.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.758.0.tgz#ea88729ee0e5de0bf5f31929d60dfd148934b6a5"
- integrity sha512-XGguXhBqiCXMXRxcfCAVPlMbm3VyJTou79r/3mxWddHWF0XbhaQiBIbUz6vobVTD25YQRbWSmSch7VA8kI5Lrw==
+"@aws-sdk/credential-provider-web-identity@3.734.0":
+ version "3.734.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.734.0.tgz#666b61cc9f498a3aaecd8e38c9ae34aef37e2e64"
+ integrity sha512-t4OSOerc+ppK541/Iyn1AS40+2vT/qE+MFMotFkhCgCJbApeRF2ozEdnDN6tGmnl4ybcUuxnp9JWLjwDVlR/4g==
dependencies:
- "@aws-sdk/core" "3.758.0"
- "@aws-sdk/nested-clients" "3.758.0"
+ "@aws-sdk/core" "3.734.0"
+ "@aws-sdk/nested-clients" "3.734.0"
"@aws-sdk/types" "3.734.0"
"@smithy/property-provider" "^4.0.1"
"@smithy/types" "^4.1.0"
@@ -1083,13 +1177,13 @@
tslib "^2.6.2"
"@aws-sdk/lib-storage@^3.46.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/lib-storage/-/lib-storage-3.758.0.tgz#6fe6a128e6a1bc062cc3e4bd920774545ce94933"
- integrity sha512-g07y7rA505zaTJNPTmvW4zYJA3gThFDE1be7kBUKhTKAdwv8jVSbOiAy2AhClXs2evSUoQiFFtD1xWxLRXPPRQ==
+ version "3.738.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/lib-storage/-/lib-storage-3.738.0.tgz#6b5f7d4e3fc2b918ab2e7f5017445f43f342e1d9"
+ integrity sha512-YUBGp3k5Dg8RqHrllS89PjRiqpyIR3eKcQsCTM0bLzf3uRCjiCeSzlnl/co5W7Kxgc+eCnq0IitGYXR/mYFKeA==
dependencies:
"@smithy/abort-controller" "^4.0.1"
- "@smithy/middleware-endpoint" "^4.0.6"
- "@smithy/smithy-client" "^4.1.6"
+ "@smithy/middleware-endpoint" "^4.0.2"
+ "@smithy/smithy-client" "^4.1.2"
buffer "5.6.0"
events "3.3.0"
stream-browserify "3.0.0"
@@ -1130,22 +1224,22 @@
"@smithy/types" "^4.1.0"
tslib "^2.6.2"
-"@aws-sdk/middleware-flexible-checksums@3.758.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.758.0.tgz#50b753e5c83f4fe2ec3578a1768a68336ec86e3c"
- integrity sha512-o8Rk71S08YTKLoSobucjnbj97OCGaXgpEDNKXpXaavUM5xLNoHCLSUPRCiEN86Ivqxg1n17Y2nSRhfbsveOXXA==
+"@aws-sdk/middleware-flexible-checksums@3.735.0":
+ version "3.735.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.735.0.tgz#e83850711d6750df764d7cf3a1a8434fe91f1fb9"
+ integrity sha512-Tx7lYTPwQFRe/wQEHMR6Drh/S+X0ToAEq1Ava9QyxV1riwtepzRLojpNDELFb3YQVVYbX7FEiBMCJLMkmIIY+A==
dependencies:
"@aws-crypto/crc32" "5.2.0"
"@aws-crypto/crc32c" "5.2.0"
"@aws-crypto/util" "5.2.0"
- "@aws-sdk/core" "3.758.0"
+ "@aws-sdk/core" "3.734.0"
"@aws-sdk/types" "3.734.0"
"@smithy/is-array-buffer" "^4.0.0"
"@smithy/node-config-provider" "^4.0.1"
"@smithy/protocol-http" "^5.0.1"
"@smithy/types" "^4.1.0"
"@smithy/util-middleware" "^4.0.1"
- "@smithy/util-stream" "^4.1.2"
+ "@smithy/util-stream" "^4.0.2"
"@smithy/util-utf8" "^4.0.0"
tslib "^2.6.2"
@@ -1187,23 +1281,23 @@
"@smithy/types" "^4.1.0"
tslib "^2.6.2"
-"@aws-sdk/middleware-sdk-s3@3.758.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.758.0.tgz#75c224a49e47111df880b683debbd8f49f30ca24"
- integrity sha512-6mJ2zyyHPYSV6bAcaFpsdoXZJeQlR1QgBnZZ6juY/+dcYiuyWCdyLUbGzSZSE7GTfx6i+9+QWFeoIMlWKgU63A==
+"@aws-sdk/middleware-sdk-s3@3.734.0":
+ version "3.734.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.734.0.tgz#eaeec56fef54713a2a8baa1fbc8be74e8f49fb09"
+ integrity sha512-zeZPenDhkP/RXYMFG3exhNOe2Qukg2l2KpIjxq9o66meELiTULoIXjCmgPoWcM8zzrue06SBdTsaJDHfDl2vdA==
dependencies:
- "@aws-sdk/core" "3.758.0"
+ "@aws-sdk/core" "3.734.0"
"@aws-sdk/types" "3.734.0"
"@aws-sdk/util-arn-parser" "3.723.0"
- "@smithy/core" "^3.1.5"
+ "@smithy/core" "^3.1.1"
"@smithy/node-config-provider" "^4.0.1"
"@smithy/protocol-http" "^5.0.1"
"@smithy/signature-v4" "^5.0.1"
- "@smithy/smithy-client" "^4.1.6"
+ "@smithy/smithy-client" "^4.1.2"
"@smithy/types" "^4.1.0"
"@smithy/util-config-provider" "^4.0.0"
"@smithy/util-middleware" "^4.0.1"
- "@smithy/util-stream" "^4.1.2"
+ "@smithy/util-stream" "^4.0.2"
"@smithy/util-utf8" "^4.0.0"
tslib "^2.6.2"
@@ -1216,57 +1310,57 @@
"@smithy/types" "^4.1.0"
tslib "^2.6.2"
-"@aws-sdk/middleware-user-agent@3.758.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.758.0.tgz#f3c9d2025aa55fd400acb1d699c1fbd6b4f68f34"
- integrity sha512-iNyehQXtQlj69JCgfaOssgZD4HeYGOwxcaKeG6F+40cwBjTAi0+Ph1yfDwqk2qiBPIRWJ/9l2LodZbxiBqgrwg==
+"@aws-sdk/middleware-user-agent@3.734.0":
+ version "3.734.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.734.0.tgz#12d400ccb98593f2b02e4fb08239cb9835d41d3a"
+ integrity sha512-MFVzLWRkfFz02GqGPjqSOteLe5kPfElUrXZft1eElnqulqs6RJfVSpOV7mO90gu293tNAeggMWAVSGRPKIYVMg==
dependencies:
- "@aws-sdk/core" "3.758.0"
+ "@aws-sdk/core" "3.734.0"
"@aws-sdk/types" "3.734.0"
- "@aws-sdk/util-endpoints" "3.743.0"
- "@smithy/core" "^3.1.5"
+ "@aws-sdk/util-endpoints" "3.734.0"
+ "@smithy/core" "^3.1.1"
"@smithy/protocol-http" "^5.0.1"
"@smithy/types" "^4.1.0"
tslib "^2.6.2"
-"@aws-sdk/nested-clients@3.758.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/nested-clients/-/nested-clients-3.758.0.tgz#571c853602d38f5e8faa10178347e711e4f0e444"
- integrity sha512-YZ5s7PSvyF3Mt2h1EQulCG93uybprNGbBkPmVuy/HMMfbFTt4iL3SbKjxqvOZelm86epFfj7pvK7FliI2WOEcg==
+"@aws-sdk/nested-clients@3.734.0":
+ version "3.734.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/nested-clients/-/nested-clients-3.734.0.tgz#10a116d141522341c446b11783551ef863aabd27"
+ integrity sha512-iph2XUy8UzIfdJFWo1r0Zng9uWj3253yvW9gljhtu+y/LNmNvSnJxQk1f3D2BC5WmcoPZqTS3UsycT3mLPSzWA==
dependencies:
"@aws-crypto/sha256-browser" "5.2.0"
"@aws-crypto/sha256-js" "5.2.0"
- "@aws-sdk/core" "3.758.0"
+ "@aws-sdk/core" "3.734.0"
"@aws-sdk/middleware-host-header" "3.734.0"
"@aws-sdk/middleware-logger" "3.734.0"
"@aws-sdk/middleware-recursion-detection" "3.734.0"
- "@aws-sdk/middleware-user-agent" "3.758.0"
+ "@aws-sdk/middleware-user-agent" "3.734.0"
"@aws-sdk/region-config-resolver" "3.734.0"
"@aws-sdk/types" "3.734.0"
- "@aws-sdk/util-endpoints" "3.743.0"
+ "@aws-sdk/util-endpoints" "3.734.0"
"@aws-sdk/util-user-agent-browser" "3.734.0"
- "@aws-sdk/util-user-agent-node" "3.758.0"
+ "@aws-sdk/util-user-agent-node" "3.734.0"
"@smithy/config-resolver" "^4.0.1"
- "@smithy/core" "^3.1.5"
+ "@smithy/core" "^3.1.1"
"@smithy/fetch-http-handler" "^5.0.1"
"@smithy/hash-node" "^4.0.1"
"@smithy/invalid-dependency" "^4.0.1"
"@smithy/middleware-content-length" "^4.0.1"
- "@smithy/middleware-endpoint" "^4.0.6"
- "@smithy/middleware-retry" "^4.0.7"
- "@smithy/middleware-serde" "^4.0.2"
+ "@smithy/middleware-endpoint" "^4.0.2"
+ "@smithy/middleware-retry" "^4.0.3"
+ "@smithy/middleware-serde" "^4.0.1"
"@smithy/middleware-stack" "^4.0.1"
"@smithy/node-config-provider" "^4.0.1"
- "@smithy/node-http-handler" "^4.0.3"
+ "@smithy/node-http-handler" "^4.0.2"
"@smithy/protocol-http" "^5.0.1"
- "@smithy/smithy-client" "^4.1.6"
+ "@smithy/smithy-client" "^4.1.2"
"@smithy/types" "^4.1.0"
"@smithy/url-parser" "^4.0.1"
"@smithy/util-base64" "^4.0.0"
"@smithy/util-body-length-browser" "^4.0.0"
"@smithy/util-body-length-node" "^4.0.0"
- "@smithy/util-defaults-mode-browser" "^4.0.7"
- "@smithy/util-defaults-mode-node" "^4.0.7"
+ "@smithy/util-defaults-mode-browser" "^4.0.3"
+ "@smithy/util-defaults-mode-node" "^4.0.3"
"@smithy/util-endpoints" "^3.0.1"
"@smithy/util-middleware" "^4.0.1"
"@smithy/util-retry" "^4.0.1"
@@ -1286,37 +1380,37 @@
tslib "^2.6.2"
"@aws-sdk/s3-request-presigner@^3.717.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.758.0.tgz#e7bbf9251927952584739b5e45464a9f4bdf0739"
- integrity sha512-dVyItwu/J1InfJBbCPpHRV9jrsBfI7L0RlDGyS3x/xqBwnm5qpvgNZQasQiyqIl+WJB4f5rZRZHgHuwftqINbA==
+ version "3.738.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.738.0.tgz#1771713ac8e30a228a8da74a7300eac2e510d9c7"
+ integrity sha512-cGENzkOxfAqrLfUdwYETDFiMOGjvicXV2EJe8sSH9Tw3wlm74WrIjZdw6ObHzm7AFnduHRNLVgX3KOtU7MlfCw==
dependencies:
- "@aws-sdk/signature-v4-multi-region" "3.758.0"
+ "@aws-sdk/signature-v4-multi-region" "3.734.0"
"@aws-sdk/types" "3.734.0"
"@aws-sdk/util-format-url" "3.734.0"
- "@smithy/middleware-endpoint" "^4.0.6"
+ "@smithy/middleware-endpoint" "^4.0.2"
"@smithy/protocol-http" "^5.0.1"
- "@smithy/smithy-client" "^4.1.6"
+ "@smithy/smithy-client" "^4.1.2"
"@smithy/types" "^4.1.0"
tslib "^2.6.2"
-"@aws-sdk/signature-v4-multi-region@3.758.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.758.0.tgz#2ccd34e90120dbf6f29e4f621574efd02e463b79"
- integrity sha512-0RPCo8fYJcrenJ6bRtiUbFOSgQ1CX/GpvwtLU2Fam1tS9h2klKK8d74caeV6A1mIUvBU7bhyQ0wMGlwMtn3EYw==
+"@aws-sdk/signature-v4-multi-region@3.734.0":
+ version "3.734.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.734.0.tgz#218d254d85b5e97409266725fdd6e9c28c3fbcab"
+ integrity sha512-GSRP8UH30RIYkcpPILV4pWrKFjRmmNjtUd41HTKWde5GbjJvNYpxqFXw2aIJHjKTw/js3XEtGSNeTaQMVVt3CQ==
dependencies:
- "@aws-sdk/middleware-sdk-s3" "3.758.0"
+ "@aws-sdk/middleware-sdk-s3" "3.734.0"
"@aws-sdk/types" "3.734.0"
"@smithy/protocol-http" "^5.0.1"
"@smithy/signature-v4" "^5.0.1"
"@smithy/types" "^4.1.0"
tslib "^2.6.2"
-"@aws-sdk/token-providers@3.758.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.758.0.tgz#fcab3885ba2b222ff8bb7817448d3c786dc2ddf9"
- integrity sha512-ckptN1tNrIfQUaGWm/ayW1ddG+imbKN7HHhjFdS4VfItsP0QQOB0+Ov+tpgb4MoNR4JaUghMIVStjIeHN2ks1w==
+"@aws-sdk/token-providers@3.734.0":
+ version "3.734.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.734.0.tgz#8880e94f21457fe5dd7074ecc52fdd43180cbb2c"
+ integrity sha512-2U6yWKrjWjZO8Y5SHQxkFvMVWHQWbS0ufqfAIBROqmIZNubOL7jXCiVdEFekz6MZ9LF2tvYGnOW4jX8OKDGfIw==
dependencies:
- "@aws-sdk/nested-clients" "3.758.0"
+ "@aws-sdk/nested-clients" "3.734.0"
"@aws-sdk/types" "3.734.0"
"@smithy/property-provider" "^4.0.1"
"@smithy/shared-ini-file-loader" "^4.0.1"
@@ -1338,10 +1432,10 @@
dependencies:
tslib "^2.6.2"
-"@aws-sdk/util-endpoints@3.743.0":
- version "3.743.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.743.0.tgz#fba654e0c5f1c8ba2b3e175dfee8e3ba4df2394a"
- integrity sha512-sN1l559zrixeh5x+pttrnd0A3+r34r0tmPkJ/eaaMaAzXqsmKU/xYre9K3FNnsSS1J1k4PEfk/nHDTVUgFYjnw==
+"@aws-sdk/util-endpoints@3.734.0":
+ version "3.734.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.734.0.tgz#43bac42a21a45477a386ccf398028e7f793bc217"
+ integrity sha512-w2+/E88NUbqql6uCVAsmMxDQKu7vsKV0KqhlQb0lL+RCq4zy07yXYptVNs13qrnuTfyX7uPXkXrlugvK9R1Ucg==
dependencies:
"@aws-sdk/types" "3.734.0"
"@smithy/types" "^4.1.0"
@@ -1375,12 +1469,12 @@
bowser "^2.11.0"
tslib "^2.6.2"
-"@aws-sdk/util-user-agent-node@3.758.0":
- version "3.758.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.758.0.tgz#604ccb02a5d11c9cedaea0bea279641ea9d4194d"
- integrity sha512-A5EZw85V6WhoKMV2hbuFRvb9NPlxEErb4HPO6/SPXYY4QrjprIzScHxikqcWv1w4J3apB1wto9LPU3IMsYtfrw==
+"@aws-sdk/util-user-agent-node@3.734.0":
+ version "3.734.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.734.0.tgz#d5c6ee192cea9d53a871178a2669b8b4dea39a68"
+ integrity sha512-c6Iinh+RVQKs6jYUFQ64htOU2HUXFQ3TVx+8Tu3EDF19+9vzWi9UukhIMH9rqyyEXIAkk9XL7avt8y2Uyw2dGA==
dependencies:
- "@aws-sdk/middleware-user-agent" "3.758.0"
+ "@aws-sdk/middleware-user-agent" "3.734.0"
"@aws-sdk/types" "3.734.0"
"@smithy/node-config-provider" "^4.0.1"
"@smithy/types" "^4.1.0"
@@ -1394,7 +1488,16 @@
"@smithy/types" "^4.1.0"
tslib "^2.6.2"
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.24.7", "@babel/code-frame@^7.25.7", "@babel/code-frame@^7.26.2", "@babel/code-frame@^7.8.3":
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.25.7", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.8.3":
+ version "7.26.0"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.0.tgz#9374b5cd068d128dac0b94ff482594273b1c2815"
+ integrity sha512-INCKxTtbXtcNbUZ3YXutwMpEleqttcswhAdee7dhuoVrD2cnuc3PqtERBtxkX5nziX9vnBL8WXmSGwv8CuPV6g==
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.25.9"
+ js-tokens "^4.0.0"
+ picocolors "^1.0.0"
+
+"@babel/code-frame@^7.26.0", "@babel/code-frame@^7.26.2":
version "7.26.2"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85"
integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==
@@ -1403,32 +1506,16 @@
js-tokens "^4.0.0"
picocolors "^1.0.0"
-"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.25.2", "@babel/compat-data@^7.25.8", "@babel/compat-data@^7.26.5", "@babel/compat-data@^7.26.8":
+"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.25.8":
+ version "7.26.0"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.0.tgz#f02ba6d34e88fadd5e8861e8b38902f43cc1c819"
+ integrity sha512-qETICbZSLe7uXv9VE8T/RWOdIE5qqyTucOt4zLYMafj2MRO271VGgLd4RACJMeBO37UPWhXiKMBk7YlJ0fOzQA==
+
+"@babel/compat-data@^7.26.0", "@babel/compat-data@^7.26.5", "@babel/compat-data@^7.26.8":
version "7.26.8"
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.8.tgz#821c1d35641c355284d4a870b8a4a7b0c141e367"
integrity sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==
-"@babel/core@7.25.2":
- version "7.25.2"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.25.2.tgz#ed8eec275118d7613e77a352894cd12ded8eba77"
- integrity sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==
- dependencies:
- "@ampproject/remapping" "^2.2.0"
- "@babel/code-frame" "^7.24.7"
- "@babel/generator" "^7.25.0"
- "@babel/helper-compilation-targets" "^7.25.2"
- "@babel/helper-module-transforms" "^7.25.2"
- "@babel/helpers" "^7.25.0"
- "@babel/parser" "^7.25.0"
- "@babel/template" "^7.25.0"
- "@babel/traverse" "^7.25.2"
- "@babel/types" "^7.25.2"
- convert-source-map "^2.0.0"
- debug "^4.1.0"
- gensync "^1.0.0-beta.2"
- json5 "^2.2.3"
- semver "^6.3.1"
-
"@babel/core@7.25.8":
version "7.25.8"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.25.8.tgz#a57137d2a51bbcffcfaeba43cb4dd33ae3e0e1c6"
@@ -1450,7 +1537,28 @@
json5 "^2.2.3"
semver "^6.3.1"
-"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.16.0", "@babel/core@^7.23.2", "@babel/core@^7.23.9":
+"@babel/core@7.26.10", "@babel/core@^7.24.7":
+ version "7.26.10"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.10.tgz#5c876f83c8c4dcb233ee4b670c0606f2ac3000f9"
+ integrity sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==
+ dependencies:
+ "@ampproject/remapping" "^2.2.0"
+ "@babel/code-frame" "^7.26.2"
+ "@babel/generator" "^7.26.10"
+ "@babel/helper-compilation-targets" "^7.26.5"
+ "@babel/helper-module-transforms" "^7.26.0"
+ "@babel/helpers" "^7.26.10"
+ "@babel/parser" "^7.26.10"
+ "@babel/template" "^7.26.9"
+ "@babel/traverse" "^7.26.10"
+ "@babel/types" "^7.26.10"
+ convert-source-map "^2.0.0"
+ debug "^4.1.0"
+ gensync "^1.0.0-beta.2"
+ json5 "^2.2.3"
+ semver "^6.3.1"
+
+"@babel/core@7.26.9":
version "7.26.9"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.9.tgz#71838542a4b1e49dfed353d7acbc6eb89f4a76f2"
integrity sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==
@@ -1471,21 +1579,21 @@
json5 "^2.2.3"
semver "^6.3.1"
-"@babel/core@^7.24.7":
- version "7.26.10"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.10.tgz#5c876f83c8c4dcb233ee4b670c0606f2ac3000f9"
- integrity sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==
+"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.16.0", "@babel/core@^7.23.2", "@babel/core@^7.23.9":
+ version "7.26.0"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.0.tgz#d78b6023cc8f3114ccf049eb219613f74a747b40"
+ integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==
dependencies:
"@ampproject/remapping" "^2.2.0"
- "@babel/code-frame" "^7.26.2"
- "@babel/generator" "^7.26.10"
- "@babel/helper-compilation-targets" "^7.26.5"
+ "@babel/code-frame" "^7.26.0"
+ "@babel/generator" "^7.26.0"
+ "@babel/helper-compilation-targets" "^7.25.9"
"@babel/helper-module-transforms" "^7.26.0"
- "@babel/helpers" "^7.26.10"
- "@babel/parser" "^7.26.10"
- "@babel/template" "^7.26.9"
- "@babel/traverse" "^7.26.10"
- "@babel/types" "^7.26.10"
+ "@babel/helpers" "^7.26.0"
+ "@babel/parser" "^7.26.0"
+ "@babel/template" "^7.25.9"
+ "@babel/traverse" "^7.25.9"
+ "@babel/types" "^7.26.0"
convert-source-map "^2.0.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
@@ -1501,17 +1609,29 @@
"@jridgewell/gen-mapping" "^0.3.0"
jsesc "^2.5.1"
-"@babel/generator@7.25.0":
- version "7.25.0"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.25.0.tgz#f858ddfa984350bc3d3b7f125073c9af6988f18e"
- integrity sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==
+"@babel/generator@7.26.10":
+ version "7.26.10"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.10.tgz#a60d9de49caca16744e6340c3658dfef6138c3f7"
+ integrity sha512-rRHT8siFIXQrAYOYqZQVsAr8vJ+cBNqcVAY6m5V8/4QqzaPl+zDBe6cLEPRDuNOUf3ww8RfJVlOyQMoSI+5Ang==
+ dependencies:
+ "@babel/parser" "^7.26.10"
+ "@babel/types" "^7.26.10"
+ "@jridgewell/gen-mapping" "^0.3.5"
+ "@jridgewell/trace-mapping" "^0.3.25"
+ jsesc "^3.0.2"
+
+"@babel/generator@^7.25.7", "@babel/generator@^7.7.2":
+ version "7.26.0"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.0.tgz#505cc7c90d92513f458a477e5ef0703e7c91b8d7"
+ integrity sha512-/AIkAmInnWwgEAJGQr9vY0c66Mj6kjkE2ZPB1PurTRaRAh3U+J45sAQMjQDJdh4WbR3l0x5xkimXBKyBXXAu2w==
dependencies:
- "@babel/types" "^7.25.0"
+ "@babel/parser" "^7.26.0"
+ "@babel/types" "^7.26.0"
"@jridgewell/gen-mapping" "^0.3.5"
"@jridgewell/trace-mapping" "^0.3.25"
- jsesc "^2.5.1"
+ jsesc "^3.0.2"
-"@babel/generator@^7.25.0", "@babel/generator@^7.25.7", "@babel/generator@^7.26.9", "@babel/generator@^7.7.2":
+"@babel/generator@^7.25.9", "@babel/generator@^7.26.0", "@babel/generator@^7.26.9":
version "7.26.9"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.9.tgz#75a9482ad3d0cc7188a537aa4910bc59db67cbca"
integrity sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==
@@ -1533,21 +1653,22 @@
"@jridgewell/trace-mapping" "^0.3.25"
jsesc "^3.0.2"
-"@babel/helper-annotate-as-pure@7.24.7":
- version "7.24.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz#5373c7bc8366b12a033b4be1ac13a206c6656aab"
- integrity sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==
- dependencies:
- "@babel/types" "^7.24.7"
-
-"@babel/helper-annotate-as-pure@^7.25.9":
+"@babel/helper-annotate-as-pure@7.25.9", "@babel/helper-annotate-as-pure@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz#d8eac4d2dc0d7b6e11fa6e535332e0d3184f06b4"
integrity sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==
dependencies:
"@babel/types" "^7.25.9"
-"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.25.2", "@babel/helper-compilation-targets@^7.25.7", "@babel/helper-compilation-targets@^7.25.9", "@babel/helper-compilation-targets@^7.26.5":
+"@babel/helper-builder-binary-assignment-operator-visitor@^7.25.9":
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.25.9.tgz#f41752fe772a578e67286e6779a68a5a92de1ee9"
+ integrity sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==
+ dependencies:
+ "@babel/traverse" "^7.25.9"
+ "@babel/types" "^7.25.9"
+
+"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.25.7", "@babel/helper-compilation-targets@^7.25.9":
version "7.26.5"
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz#75d92bb8d8d51301c0d49e52a65c9a7fe94514d8"
integrity sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==
@@ -1558,17 +1679,28 @@
lru-cache "^5.1.1"
semver "^6.3.1"
+"@babel/helper-compilation-targets@^7.26.5":
+ version "7.27.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.0.tgz#de0c753b1cd1d9ab55d473c5a5cf7170f0a81880"
+ integrity sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==
+ dependencies:
+ "@babel/compat-data" "^7.26.8"
+ "@babel/helper-validator-option" "^7.25.9"
+ browserslist "^4.24.0"
+ lru-cache "^5.1.1"
+ semver "^6.3.1"
+
"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.25.7", "@babel/helper-create-class-features-plugin@^7.25.9":
- version "7.26.9"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.26.9.tgz#d6f83e3039547fbb39967e78043cd3c8b7820c71"
- integrity sha512-ubbUqCofvxPRurw5L8WTsCLSkQiVpov4Qx0WMA+jUN+nXBK8ADPlJO1grkFw5CWKC5+sZSOfuGMdX1aI1iT9Sg==
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz#7644147706bb90ff613297d49ed5266bde729f83"
+ integrity sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==
dependencies:
"@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.26.5"
+ "@babel/helper-replace-supers" "^7.25.9"
"@babel/helper-skip-transparent-expression-wrappers" "^7.25.9"
- "@babel/traverse" "^7.26.9"
+ "@babel/traverse" "^7.25.9"
semver "^6.3.1"
"@babel/helper-create-class-features-plugin@^7.27.0":
@@ -1612,7 +1744,7 @@
"@babel/traverse" "^7.25.9"
"@babel/types" "^7.25.9"
-"@babel/helper-module-imports@^7.24.7", "@babel/helper-module-imports@^7.25.9":
+"@babel/helper-module-imports@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715"
integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==
@@ -1620,7 +1752,7 @@
"@babel/traverse" "^7.25.9"
"@babel/types" "^7.25.9"
-"@babel/helper-module-transforms@^7.25.2", "@babel/helper-module-transforms@^7.25.7", "@babel/helper-module-transforms@^7.25.9", "@babel/helper-module-transforms@^7.26.0":
+"@babel/helper-module-transforms@^7.25.7", "@babel/helper-module-transforms@^7.25.9", "@babel/helper-module-transforms@^7.26.0":
version "7.26.0"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae"
integrity sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==
@@ -1636,12 +1768,12 @@
dependencies:
"@babel/types" "^7.25.9"
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.7", "@babel/helper-plugin-utils@^7.24.8", "@babel/helper-plugin-utils@^7.25.7", "@babel/helper-plugin-utils@^7.25.9", "@babel/helper-plugin-utils@^7.26.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.25.7", "@babel/helper-plugin-utils@^7.25.9", "@babel/helper-plugin-utils@^7.26.5", "@babel/helper-plugin-utils@^7.8.0":
version "7.26.5"
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz#18580d00c9934117ad719392c4f6585c9333cc35"
integrity sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==
-"@babel/helper-remap-async-to-generator@^7.24.7", "@babel/helper-remap-async-to-generator@^7.25.0", "@babel/helper-remap-async-to-generator@^7.25.9":
+"@babel/helper-remap-async-to-generator@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz#e53956ab3d5b9fb88be04b3e2f31b523afd34b92"
integrity sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==
@@ -1659,6 +1791,14 @@
"@babel/helper-optimise-call-expression" "^7.25.9"
"@babel/traverse" "^7.26.5"
+"@babel/helper-simple-access@^7.25.9":
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.25.9.tgz#6d51783299884a2c74618d6ef0f86820ec2e7739"
+ integrity sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==
+ dependencies:
+ "@babel/traverse" "^7.25.9"
+ "@babel/types" "^7.25.9"
+
"@babel/helper-skip-transparent-expression-wrappers@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz#0b2e1b62d560d6b1954893fd2b705dc17c91f0c9"
@@ -1684,7 +1824,7 @@
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7"
integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==
-"@babel/helper-validator-option@^7.24.8", "@babel/helper-validator-option@^7.25.7", "@babel/helper-validator-option@^7.25.9":
+"@babel/helper-validator-option@^7.25.7", "@babel/helper-validator-option@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz#86e45bd8a49ab7e03f276577f96179653d41da72"
integrity sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==
@@ -1698,7 +1838,15 @@
"@babel/traverse" "^7.25.9"
"@babel/types" "^7.25.9"
-"@babel/helpers@^7.25.0", "@babel/helpers@^7.25.7", "@babel/helpers@^7.26.9":
+"@babel/helpers@^7.25.7":
+ version "7.26.7"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.7.tgz#fd1d2a7c431b6e39290277aacfd8367857c576a4"
+ integrity sha512-8NHiL98vsi0mbPQmYAGWwfcFaOy4j2HY49fXJCfuDcdE7fMIsH9a7GdaeXpIBsbT7307WU8KCMp5pUVDNL4f9A==
+ dependencies:
+ "@babel/template" "^7.25.9"
+ "@babel/types" "^7.26.7"
+
+"@babel/helpers@^7.26.0":
version "7.26.9"
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.9.tgz#28f3fb45252fc88ef2dc547c8a911c255fc9fef6"
integrity sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==
@@ -1706,7 +1854,7 @@
"@babel/template" "^7.26.9"
"@babel/types" "^7.26.9"
-"@babel/helpers@^7.26.10":
+"@babel/helpers@^7.26.10", "@babel/helpers@^7.26.9":
version "7.27.0"
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.27.0.tgz#53d156098defa8243eab0f32fa17589075a1b808"
integrity sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==
@@ -1719,12 +1867,12 @@
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.4.tgz#6774231779dd700e0af29f6ad8d479582d7ce5ef"
integrity sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==
-"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.25.0", "@babel/parser@^7.25.8", "@babel/parser@^7.26.9", "@babel/parser@^7.6.0", "@babel/parser@^7.9.6":
- version "7.26.9"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.9.tgz#d9e78bee6dc80f9efd8f2349dcfbbcdace280fd5"
- integrity sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==
+"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.25.8", "@babel/parser@^7.25.9", "@babel/parser@^7.6.0", "@babel/parser@^7.9.6":
+ version "7.26.7"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.7.tgz#e114cd099e5f7d17b05368678da0fb9f69b3385c"
+ integrity sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w==
dependencies:
- "@babel/types" "^7.26.9"
+ "@babel/types" "^7.26.7"
"@babel/parser@^7.24.7", "@babel/parser@^7.26.10", "@babel/parser@^7.27.0":
version "7.27.0"
@@ -1733,7 +1881,14 @@
dependencies:
"@babel/types" "^7.27.0"
-"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.25.3", "@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.25.7", "@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.25.9":
+"@babel/parser@^7.26.0", "@babel/parser@^7.26.9":
+ version "7.26.9"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.9.tgz#d9e78bee6dc80f9efd8f2349dcfbbcdace280fd5"
+ integrity sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==
+ dependencies:
+ "@babel/types" "^7.26.9"
+
+"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.25.7", "@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz#cc2e53ebf0a0340777fff5ed521943e253b4d8fe"
integrity sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==
@@ -1741,21 +1896,21 @@
"@babel/helper-plugin-utils" "^7.25.9"
"@babel/traverse" "^7.25.9"
-"@babel/plugin-bugfix-safari-class-field-initializer-scope@^7.25.0", "@babel/plugin-bugfix-safari-class-field-initializer-scope@^7.25.7", "@babel/plugin-bugfix-safari-class-field-initializer-scope@^7.25.9":
+"@babel/plugin-bugfix-safari-class-field-initializer-scope@^7.25.7", "@babel/plugin-bugfix-safari-class-field-initializer-scope@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz#af9e4fb63ccb8abcb92375b2fcfe36b60c774d30"
integrity sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.25.0", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.25.7", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.25.9":
+"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.25.7", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz#e8dc26fcd616e6c5bf2bd0d5a2c151d4f92a9137"
integrity sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.24.7", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.25.7", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.25.9":
+"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.25.7", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz#807a667f9158acac6f6164b4beb85ad9ebc9e1d1"
integrity sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==
@@ -1764,7 +1919,7 @@
"@babel/helper-skip-transparent-expression-wrappers" "^7.25.9"
"@babel/plugin-transform-optional-chaining" "^7.25.9"
-"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.25.0", "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.25.7", "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.25.9":
+"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.25.7", "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz#de7093f1e7deaf68eadd7cc6b07f2ab82543269e"
integrity sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==
@@ -1840,20 +1995,6 @@
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-syntax-dynamic-import@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
- integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-export-namespace-from@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
- integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
"@babel/plugin-syntax-flow@^7.26.0":
version "7.26.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.26.0.tgz#96507595c21b45fccfc2bc758d5c45452e6164fa"
@@ -1861,21 +2002,14 @@
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-syntax-import-assertions@^7.24.7", "@babel/plugin-syntax-import-assertions@^7.25.7", "@babel/plugin-syntax-import-assertions@^7.26.0":
+"@babel/plugin-syntax-import-assertions@^7.25.7", "@babel/plugin-syntax-import-assertions@^7.26.0":
version "7.26.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz#620412405058efa56e4a564903b79355020f445f"
integrity sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-syntax-import-attributes@7.24.7":
- version "7.24.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz#b4f9ea95a79e6912480c4b626739f86a076624ca"
- integrity sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==
- dependencies:
- "@babel/helper-plugin-utils" "^7.24.7"
-
-"@babel/plugin-syntax-import-attributes@^7.24.7", "@babel/plugin-syntax-import-attributes@^7.25.7", "@babel/plugin-syntax-import-attributes@^7.26.0":
+"@babel/plugin-syntax-import-attributes@7.26.0", "@babel/plugin-syntax-import-attributes@^7.24.7", "@babel/plugin-syntax-import-attributes@^7.25.7", "@babel/plugin-syntax-import-attributes@^7.26.0":
version "7.26.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz#3b1412847699eea739b4f2602c74ce36f6b0b0f7"
integrity sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==
@@ -1974,24 +2108,14 @@
"@babel/helper-create-regexp-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-transform-arrow-functions@^7.24.7", "@babel/plugin-transform-arrow-functions@^7.25.7", "@babel/plugin-transform-arrow-functions@^7.25.9":
+"@babel/plugin-transform-arrow-functions@^7.25.7", "@babel/plugin-transform-arrow-functions@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz#7821d4410bee5daaadbb4cdd9a6649704e176845"
integrity sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-async-generator-functions@7.25.0":
- version "7.25.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.0.tgz#b785cf35d73437f6276b1e30439a57a50747bddf"
- integrity sha512-uaIi2FdqzjpAMvVqvB51S42oC2JEVgh0LDsGfZVDysWE8LrJtQC2jvKmOqEYThKyB7bDEb7BP1GYWDm7tABA0Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.24.8"
- "@babel/helper-remap-async-to-generator" "^7.25.0"
- "@babel/plugin-syntax-async-generators" "^7.8.4"
- "@babel/traverse" "^7.25.0"
-
-"@babel/plugin-transform-async-generator-functions@^7.25.0", "@babel/plugin-transform-async-generator-functions@^7.25.8", "@babel/plugin-transform-async-generator-functions@^7.26.8":
+"@babel/plugin-transform-async-generator-functions@7.26.8", "@babel/plugin-transform-async-generator-functions@^7.26.8":
version "7.26.8"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.26.8.tgz#5e3991135e3b9c6eaaf5eff56d1ae5a11df45ff8"
integrity sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==
@@ -2000,16 +2124,16 @@
"@babel/helper-remap-async-to-generator" "^7.25.9"
"@babel/traverse" "^7.26.8"
-"@babel/plugin-transform-async-to-generator@7.24.7":
- version "7.24.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz#72a3af6c451d575842a7e9b5a02863414355bdcc"
- integrity sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==
+"@babel/plugin-transform-async-generator-functions@^7.25.8", "@babel/plugin-transform-async-generator-functions@^7.25.9":
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.9.tgz#1b18530b077d18a407c494eb3d1d72da505283a2"
+ integrity sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==
dependencies:
- "@babel/helper-module-imports" "^7.24.7"
- "@babel/helper-plugin-utils" "^7.24.7"
- "@babel/helper-remap-async-to-generator" "^7.24.7"
+ "@babel/helper-plugin-utils" "^7.25.9"
+ "@babel/helper-remap-async-to-generator" "^7.25.9"
+ "@babel/traverse" "^7.25.9"
-"@babel/plugin-transform-async-to-generator@^7.24.7", "@babel/plugin-transform-async-to-generator@^7.25.7", "@babel/plugin-transform-async-to-generator@^7.25.9":
+"@babel/plugin-transform-async-to-generator@7.25.9", "@babel/plugin-transform-async-to-generator@^7.25.7", "@babel/plugin-transform-async-to-generator@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz#c80008dacae51482793e5a9c08b39a5be7e12d71"
integrity sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==
@@ -2018,14 +2142,14 @@
"@babel/helper-plugin-utils" "^7.25.9"
"@babel/helper-remap-async-to-generator" "^7.25.9"
-"@babel/plugin-transform-block-scoped-functions@^7.24.7", "@babel/plugin-transform-block-scoped-functions@^7.25.7", "@babel/plugin-transform-block-scoped-functions@^7.26.5":
+"@babel/plugin-transform-block-scoped-functions@^7.25.7", "@babel/plugin-transform-block-scoped-functions@^7.25.9", "@babel/plugin-transform-block-scoped-functions@^7.26.5":
version "7.26.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.26.5.tgz#3dc4405d31ad1cbe45293aa57205a6e3b009d53e"
integrity sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==
dependencies:
"@babel/helper-plugin-utils" "^7.26.5"
-"@babel/plugin-transform-block-scoping@^7.25.0", "@babel/plugin-transform-block-scoping@^7.25.7", "@babel/plugin-transform-block-scoping@^7.25.9":
+"@babel/plugin-transform-block-scoping@^7.25.7", "@babel/plugin-transform-block-scoping@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz#c33665e46b06759c93687ca0f84395b80c0473a1"
integrity sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==
@@ -2040,7 +2164,7 @@
"@babel/helper-create-class-features-plugin" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-class-static-block@^7.24.7", "@babel/plugin-transform-class-static-block@^7.25.8", "@babel/plugin-transform-class-static-block@^7.26.0":
+"@babel/plugin-transform-class-static-block@^7.25.8", "@babel/plugin-transform-class-static-block@^7.26.0":
version "7.26.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz#6c8da219f4eb15cae9834ec4348ff8e9e09664a0"
integrity sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==
@@ -2048,7 +2172,7 @@
"@babel/helper-create-class-features-plugin" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-classes@^7.25.0", "@babel/plugin-transform-classes@^7.25.7", "@babel/plugin-transform-classes@^7.25.9":
+"@babel/plugin-transform-classes@^7.25.7", "@babel/plugin-transform-classes@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz#7152457f7880b593a63ade8a861e6e26a4469f52"
integrity sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==
@@ -2060,7 +2184,7 @@
"@babel/traverse" "^7.25.9"
globals "^11.1.0"
-"@babel/plugin-transform-computed-properties@^7.24.7", "@babel/plugin-transform-computed-properties@^7.25.7", "@babel/plugin-transform-computed-properties@^7.25.9":
+"@babel/plugin-transform-computed-properties@^7.25.7", "@babel/plugin-transform-computed-properties@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz#db36492c78460e534b8852b1d5befe3c923ef10b"
integrity sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==
@@ -2068,14 +2192,14 @@
"@babel/helper-plugin-utils" "^7.25.9"
"@babel/template" "^7.25.9"
-"@babel/plugin-transform-destructuring@^7.24.8", "@babel/plugin-transform-destructuring@^7.25.7", "@babel/plugin-transform-destructuring@^7.25.9":
+"@babel/plugin-transform-destructuring@^7.25.7", "@babel/plugin-transform-destructuring@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz#966ea2595c498224340883602d3cfd7a0c79cea1"
integrity sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-dotall-regex@^7.24.7", "@babel/plugin-transform-dotall-regex@^7.25.7", "@babel/plugin-transform-dotall-regex@^7.25.9":
+"@babel/plugin-transform-dotall-regex@^7.25.7", "@babel/plugin-transform-dotall-regex@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz#bad7945dd07734ca52fe3ad4e872b40ed09bb09a"
integrity sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==
@@ -2083,14 +2207,14 @@
"@babel/helper-create-regexp-features-plugin" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-duplicate-keys@^7.24.7", "@babel/plugin-transform-duplicate-keys@^7.25.7", "@babel/plugin-transform-duplicate-keys@^7.25.9":
+"@babel/plugin-transform-duplicate-keys@^7.25.7", "@babel/plugin-transform-duplicate-keys@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz#8850ddf57dce2aebb4394bb434a7598031059e6d"
integrity sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-duplicate-named-capturing-groups-regex@^7.25.0", "@babel/plugin-transform-duplicate-named-capturing-groups-regex@^7.25.7", "@babel/plugin-transform-duplicate-named-capturing-groups-regex@^7.25.9":
+"@babel/plugin-transform-duplicate-named-capturing-groups-regex@^7.25.7", "@babel/plugin-transform-duplicate-named-capturing-groups-regex@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz#6f7259b4de127721a08f1e5165b852fcaa696d31"
integrity sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==
@@ -2098,19 +2222,27 @@
"@babel/helper-create-regexp-features-plugin" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-dynamic-import@^7.24.7", "@babel/plugin-transform-dynamic-import@^7.25.8", "@babel/plugin-transform-dynamic-import@^7.25.9":
+"@babel/plugin-transform-dynamic-import@^7.25.8", "@babel/plugin-transform-dynamic-import@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz#23e917de63ed23c6600c5dd06d94669dce79f7b8"
integrity sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-exponentiation-operator@^7.24.7", "@babel/plugin-transform-exponentiation-operator@^7.25.7", "@babel/plugin-transform-exponentiation-operator@^7.26.3":
+"@babel/plugin-transform-exponentiation-operator@^7.25.7":
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.25.9.tgz#ece47b70d236c1d99c263a1e22b62dc20a4c8b0f"
+ integrity sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA==
+ dependencies:
+ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.25.9"
+ "@babel/helper-plugin-utils" "^7.25.9"
+
+"@babel/plugin-transform-exponentiation-operator@^7.25.9", "@babel/plugin-transform-exponentiation-operator@^7.26.3":
version "7.26.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz#e29f01b6de302c7c2c794277a48f04a9ca7f03bc"
integrity sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==
-"@babel/plugin-transform-export-namespace-from@^7.24.7", "@babel/plugin-transform-export-namespace-from@^7.25.8", "@babel/plugin-transform-export-namespace-from@^7.25.9":
+"@babel/plugin-transform-export-namespace-from@^7.25.8", "@babel/plugin-transform-export-namespace-from@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz#90745fe55053394f554e40584cda81f2c8a402a2"
integrity sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==
@@ -2125,7 +2257,15 @@
"@babel/helper-plugin-utils" "^7.26.5"
"@babel/plugin-syntax-flow" "^7.26.0"
-"@babel/plugin-transform-for-of@^7.24.7", "@babel/plugin-transform-for-of@^7.25.7", "@babel/plugin-transform-for-of@^7.26.9":
+"@babel/plugin-transform-for-of@^7.25.7", "@babel/plugin-transform-for-of@^7.25.9":
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz#4bdc7d42a213397905d89f02350c5267866d5755"
+ integrity sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.25.9"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9"
+
+"@babel/plugin-transform-for-of@^7.26.9":
version "7.26.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.26.9.tgz#27231f79d5170ef33b5111f07fe5cafeb2c96a56"
integrity sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==
@@ -2133,7 +2273,7 @@
"@babel/helper-plugin-utils" "^7.26.5"
"@babel/helper-skip-transparent-expression-wrappers" "^7.25.9"
-"@babel/plugin-transform-function-name@^7.25.1", "@babel/plugin-transform-function-name@^7.25.7", "@babel/plugin-transform-function-name@^7.25.9":
+"@babel/plugin-transform-function-name@^7.25.7", "@babel/plugin-transform-function-name@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz#939d956e68a606661005bfd550c4fc2ef95f7b97"
integrity sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==
@@ -2142,35 +2282,35 @@
"@babel/helper-plugin-utils" "^7.25.9"
"@babel/traverse" "^7.25.9"
-"@babel/plugin-transform-json-strings@^7.24.7", "@babel/plugin-transform-json-strings@^7.25.8", "@babel/plugin-transform-json-strings@^7.25.9":
+"@babel/plugin-transform-json-strings@^7.25.8", "@babel/plugin-transform-json-strings@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz#c86db407cb827cded902a90c707d2781aaa89660"
integrity sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-literals@^7.25.2", "@babel/plugin-transform-literals@^7.25.7", "@babel/plugin-transform-literals@^7.25.9":
+"@babel/plugin-transform-literals@^7.25.7", "@babel/plugin-transform-literals@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz#1a1c6b4d4aa59bc4cad5b6b3a223a0abd685c9de"
integrity sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-logical-assignment-operators@^7.24.7", "@babel/plugin-transform-logical-assignment-operators@^7.25.8", "@babel/plugin-transform-logical-assignment-operators@^7.25.9":
+"@babel/plugin-transform-logical-assignment-operators@^7.25.8", "@babel/plugin-transform-logical-assignment-operators@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz#b19441a8c39a2fda0902900b306ea05ae1055db7"
integrity sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-member-expression-literals@^7.24.7", "@babel/plugin-transform-member-expression-literals@^7.25.7", "@babel/plugin-transform-member-expression-literals@^7.25.9":
+"@babel/plugin-transform-member-expression-literals@^7.25.7", "@babel/plugin-transform-member-expression-literals@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz#63dff19763ea64a31f5e6c20957e6a25e41ed5de"
integrity sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-modules-amd@^7.24.7", "@babel/plugin-transform-modules-amd@^7.25.7", "@babel/plugin-transform-modules-amd@^7.25.9":
+"@babel/plugin-transform-modules-amd@^7.25.7", "@babel/plugin-transform-modules-amd@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz#49ba478f2295101544abd794486cd3088dddb6c5"
integrity sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==
@@ -2178,7 +2318,7 @@
"@babel/helper-module-transforms" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-modules-commonjs@^7.24.7", "@babel/plugin-transform-modules-commonjs@^7.24.8", "@babel/plugin-transform-modules-commonjs@^7.25.7", "@babel/plugin-transform-modules-commonjs@^7.25.9", "@babel/plugin-transform-modules-commonjs@^7.26.3":
+"@babel/plugin-transform-modules-commonjs@^7.24.7", "@babel/plugin-transform-modules-commonjs@^7.26.3":
version "7.26.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz#8f011d44b20d02c3de44d8850d971d8497f981fb"
integrity sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==
@@ -2186,7 +2326,16 @@
"@babel/helper-module-transforms" "^7.26.0"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-modules-systemjs@^7.25.0", "@babel/plugin-transform-modules-systemjs@^7.25.7", "@babel/plugin-transform-modules-systemjs@^7.25.9":
+"@babel/plugin-transform-modules-commonjs@^7.25.7", "@babel/plugin-transform-modules-commonjs@^7.25.9":
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.25.9.tgz#d165c8c569a080baf5467bda88df6425fc060686"
+ integrity sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==
+ dependencies:
+ "@babel/helper-module-transforms" "^7.25.9"
+ "@babel/helper-plugin-utils" "^7.25.9"
+ "@babel/helper-simple-access" "^7.25.9"
+
+"@babel/plugin-transform-modules-systemjs@^7.25.7", "@babel/plugin-transform-modules-systemjs@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz#8bd1b43836269e3d33307151a114bcf3ba6793f8"
integrity sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==
@@ -2196,7 +2345,7 @@
"@babel/helper-validator-identifier" "^7.25.9"
"@babel/traverse" "^7.25.9"
-"@babel/plugin-transform-modules-umd@^7.24.7", "@babel/plugin-transform-modules-umd@^7.25.7", "@babel/plugin-transform-modules-umd@^7.25.9":
+"@babel/plugin-transform-modules-umd@^7.25.7", "@babel/plugin-transform-modules-umd@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz#6710079cdd7c694db36529a1e8411e49fcbf14c9"
integrity sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==
@@ -2204,7 +2353,7 @@
"@babel/helper-module-transforms" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-named-capturing-groups-regex@^7.24.7", "@babel/plugin-transform-named-capturing-groups-regex@^7.25.7", "@babel/plugin-transform-named-capturing-groups-regex@^7.25.9":
+"@babel/plugin-transform-named-capturing-groups-regex@^7.25.7", "@babel/plugin-transform-named-capturing-groups-regex@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz#454990ae6cc22fd2a0fa60b3a2c6f63a38064e6a"
integrity sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==
@@ -2212,28 +2361,28 @@
"@babel/helper-create-regexp-features-plugin" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-new-target@^7.24.7", "@babel/plugin-transform-new-target@^7.25.7", "@babel/plugin-transform-new-target@^7.25.9":
+"@babel/plugin-transform-new-target@^7.25.7", "@babel/plugin-transform-new-target@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz#42e61711294b105c248336dcb04b77054ea8becd"
integrity sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-nullish-coalescing-operator@^7.24.7", "@babel/plugin-transform-nullish-coalescing-operator@^7.25.8", "@babel/plugin-transform-nullish-coalescing-operator@^7.26.6":
+"@babel/plugin-transform-nullish-coalescing-operator@^7.24.7", "@babel/plugin-transform-nullish-coalescing-operator@^7.25.8", "@babel/plugin-transform-nullish-coalescing-operator@^7.25.9", "@babel/plugin-transform-nullish-coalescing-operator@^7.26.6":
version "7.26.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.26.6.tgz#fbf6b3c92cb509e7b319ee46e3da89c5bedd31fe"
integrity sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==
dependencies:
"@babel/helper-plugin-utils" "^7.26.5"
-"@babel/plugin-transform-numeric-separator@^7.24.7", "@babel/plugin-transform-numeric-separator@^7.25.8", "@babel/plugin-transform-numeric-separator@^7.25.9":
+"@babel/plugin-transform-numeric-separator@^7.25.8", "@babel/plugin-transform-numeric-separator@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz#bfed75866261a8b643468b0ccfd275f2033214a1"
integrity sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-object-rest-spread@^7.24.7", "@babel/plugin-transform-object-rest-spread@^7.25.8", "@babel/plugin-transform-object-rest-spread@^7.25.9":
+"@babel/plugin-transform-object-rest-spread@^7.25.8", "@babel/plugin-transform-object-rest-spread@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz#0203725025074164808bcf1a2cfa90c652c99f18"
integrity sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==
@@ -2242,7 +2391,7 @@
"@babel/helper-plugin-utils" "^7.25.9"
"@babel/plugin-transform-parameters" "^7.25.9"
-"@babel/plugin-transform-object-super@^7.24.7", "@babel/plugin-transform-object-super@^7.25.7", "@babel/plugin-transform-object-super@^7.25.9":
+"@babel/plugin-transform-object-super@^7.25.7", "@babel/plugin-transform-object-super@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz#385d5de135162933beb4a3d227a2b7e52bb4cf03"
integrity sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==
@@ -2250,14 +2399,14 @@
"@babel/helper-plugin-utils" "^7.25.9"
"@babel/helper-replace-supers" "^7.25.9"
-"@babel/plugin-transform-optional-catch-binding@^7.24.7", "@babel/plugin-transform-optional-catch-binding@^7.25.8", "@babel/plugin-transform-optional-catch-binding@^7.25.9":
+"@babel/plugin-transform-optional-catch-binding@^7.25.8", "@babel/plugin-transform-optional-catch-binding@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz#10e70d96d52bb1f10c5caaac59ac545ea2ba7ff3"
integrity sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-optional-chaining@^7.24.7", "@babel/plugin-transform-optional-chaining@^7.24.8", "@babel/plugin-transform-optional-chaining@^7.25.8", "@babel/plugin-transform-optional-chaining@^7.25.9":
+"@babel/plugin-transform-optional-chaining@^7.24.7", "@babel/plugin-transform-optional-chaining@^7.25.8", "@babel/plugin-transform-optional-chaining@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz#e142eb899d26ef715435f201ab6e139541eee7dd"
integrity sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==
@@ -2265,7 +2414,7 @@
"@babel/helper-plugin-utils" "^7.25.9"
"@babel/helper-skip-transparent-expression-wrappers" "^7.25.9"
-"@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.24.7", "@babel/plugin-transform-parameters@^7.25.7", "@babel/plugin-transform-parameters@^7.25.9":
+"@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.25.7", "@babel/plugin-transform-parameters@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz#b856842205b3e77e18b7a7a1b94958069c7ba257"
integrity sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==
@@ -2288,7 +2437,7 @@
"@babel/helper-create-class-features-plugin" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-private-property-in-object@^7.24.7", "@babel/plugin-transform-private-property-in-object@^7.25.8", "@babel/plugin-transform-private-property-in-object@^7.25.9":
+"@babel/plugin-transform-private-property-in-object@^7.25.8", "@babel/plugin-transform-private-property-in-object@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz#9c8b73e64e6cc3cbb2743633885a7dd2c385fe33"
integrity sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==
@@ -2297,7 +2446,7 @@
"@babel/helper-create-class-features-plugin" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-property-literals@^7.24.7", "@babel/plugin-transform-property-literals@^7.25.7", "@babel/plugin-transform-property-literals@^7.25.9":
+"@babel/plugin-transform-property-literals@^7.25.7", "@babel/plugin-transform-property-literals@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz#d72d588bd88b0dec8b62e36f6fda91cedfe28e3f"
integrity sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==
@@ -2337,7 +2486,7 @@
"@babel/helper-annotate-as-pure" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-regenerator@^7.24.7", "@babel/plugin-transform-regenerator@^7.25.7", "@babel/plugin-transform-regenerator@^7.25.9":
+"@babel/plugin-transform-regenerator@^7.25.7", "@babel/plugin-transform-regenerator@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz#03a8a4670d6cebae95305ac6defac81ece77740b"
integrity sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==
@@ -2353,45 +2502,45 @@
"@babel/helper-create-regexp-features-plugin" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-reserved-words@^7.24.7", "@babel/plugin-transform-reserved-words@^7.25.7", "@babel/plugin-transform-reserved-words@^7.25.9":
+"@babel/plugin-transform-reserved-words@^7.25.7", "@babel/plugin-transform-reserved-words@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz#0398aed2f1f10ba3f78a93db219b27ef417fb9ce"
integrity sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-runtime@7.24.7":
- version "7.24.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.7.tgz#00a5bfaf8c43cf5c8703a8a6e82b59d9c58f38ca"
- integrity sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==
+"@babel/plugin-transform-runtime@7.26.10":
+ version "7.26.10"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.26.10.tgz#6b4504233de8238e7d666c15cde681dc62adff87"
+ integrity sha512-NWaL2qG6HRpONTnj4JvDU6th4jYeZOJgu3QhmFTCihib0ermtOJqktA5BduGm3suhhVe9EMP9c9+mfJ/I9slqw==
dependencies:
- "@babel/helper-module-imports" "^7.24.7"
- "@babel/helper-plugin-utils" "^7.24.7"
+ "@babel/helper-module-imports" "^7.25.9"
+ "@babel/helper-plugin-utils" "^7.26.5"
babel-plugin-polyfill-corejs2 "^0.4.10"
- babel-plugin-polyfill-corejs3 "^0.10.1"
+ babel-plugin-polyfill-corejs3 "^0.11.0"
babel-plugin-polyfill-regenerator "^0.6.1"
semver "^6.3.1"
"@babel/plugin-transform-runtime@^7.16.0", "@babel/plugin-transform-runtime@^7.23.2":
- version "7.26.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.26.9.tgz#ea8be19ef134668e98f7b54daf7c4f853859dc44"
- integrity sha512-Jf+8y9wXQbbxvVYTM8gO5oEF2POdNji0NMltEkG7FtmzD9PVz7/lxpqSdTvwsjTMU5HIHuDVNf2SOxLkWi+wPQ==
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.9.tgz#62723ea3f5b31ffbe676da9d6dae17138ae580ea"
+ integrity sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==
dependencies:
"@babel/helper-module-imports" "^7.25.9"
- "@babel/helper-plugin-utils" "^7.26.5"
+ "@babel/helper-plugin-utils" "^7.25.9"
babel-plugin-polyfill-corejs2 "^0.4.10"
babel-plugin-polyfill-corejs3 "^0.10.6"
babel-plugin-polyfill-regenerator "^0.6.1"
semver "^6.3.1"
-"@babel/plugin-transform-shorthand-properties@^7.24.7", "@babel/plugin-transform-shorthand-properties@^7.25.7", "@babel/plugin-transform-shorthand-properties@^7.25.9":
+"@babel/plugin-transform-shorthand-properties@^7.25.7", "@babel/plugin-transform-shorthand-properties@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz#bb785e6091f99f826a95f9894fc16fde61c163f2"
integrity sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-spread@^7.24.7", "@babel/plugin-transform-spread@^7.25.7", "@babel/plugin-transform-spread@^7.25.9":
+"@babel/plugin-transform-spread@^7.25.7", "@babel/plugin-transform-spread@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz#24a35153931b4ba3d13cec4a7748c21ab5514ef9"
integrity sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==
@@ -2399,31 +2548,45 @@
"@babel/helper-plugin-utils" "^7.25.9"
"@babel/helper-skip-transparent-expression-wrappers" "^7.25.9"
-"@babel/plugin-transform-sticky-regex@^7.24.7", "@babel/plugin-transform-sticky-regex@^7.25.7", "@babel/plugin-transform-sticky-regex@^7.25.9":
+"@babel/plugin-transform-sticky-regex@^7.25.7", "@babel/plugin-transform-sticky-regex@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz#c7f02b944e986a417817b20ba2c504dfc1453d32"
integrity sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-template-literals@^7.24.7", "@babel/plugin-transform-template-literals@^7.25.7", "@babel/plugin-transform-template-literals@^7.26.8":
+"@babel/plugin-transform-template-literals@^7.25.7", "@babel/plugin-transform-template-literals@^7.25.9":
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz#6dbd4a24e8fad024df76d1fac6a03cf413f60fe1"
+ integrity sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.25.9"
+
+"@babel/plugin-transform-template-literals@^7.26.8":
version "7.26.8"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.26.8.tgz#966b15d153a991172a540a69ad5e1845ced990b5"
integrity sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==
dependencies:
"@babel/helper-plugin-utils" "^7.26.5"
-"@babel/plugin-transform-typeof-symbol@^7.24.8", "@babel/plugin-transform-typeof-symbol@^7.25.7", "@babel/plugin-transform-typeof-symbol@^7.26.7":
+"@babel/plugin-transform-typeof-symbol@^7.25.7", "@babel/plugin-transform-typeof-symbol@^7.25.9":
version "7.26.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.26.7.tgz#d0e33acd9223744c1e857dbd6fa17bd0a3786937"
integrity sha512-jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw==
dependencies:
"@babel/helper-plugin-utils" "^7.26.5"
+"@babel/plugin-transform-typeof-symbol@^7.26.7":
+ version "7.27.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.0.tgz#044a0890f3ca694207c7826d0c7a65e5ac008aae"
+ integrity sha512-+LLkxA9rKJpNoGsbLnAgOCdESl73vwYn+V6b+5wHbrE7OGKVDPHIQvbFSzqE6rwqaCw2RE+zdJrlLkcf8YOA0w==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.26.5"
+
"@babel/plugin-transform-typescript@^7.25.9":
- version "7.26.8"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.8.tgz#2e9caa870aa102f50d7125240d9dbf91334b0950"
- integrity sha512-bME5J9AC8ChwA7aEPJ6zym3w7aObZULHhbNLU0bKUhKsAkylkzUdq+0kdymh9rzi8nlNFl2bmldFBCKNJBUpuw==
+ version "7.26.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.7.tgz#64339515ea3eff610160f62499c3ef437d0ac83d"
+ integrity sha512-5cJurntg+AT+cgelGP9Bt788DKiAw9gIMSMU2NJrLAilnj0m8WZWUNZPSLOmadYsujHutpgElO+50foX+ib/Wg==
dependencies:
"@babel/helper-annotate-as-pure" "^7.25.9"
"@babel/helper-create-class-features-plugin" "^7.25.9"
@@ -2442,14 +2605,14 @@
"@babel/helper-skip-transparent-expression-wrappers" "^7.25.9"
"@babel/plugin-syntax-typescript" "^7.25.9"
-"@babel/plugin-transform-unicode-escapes@^7.24.7", "@babel/plugin-transform-unicode-escapes@^7.25.7", "@babel/plugin-transform-unicode-escapes@^7.25.9":
+"@babel/plugin-transform-unicode-escapes@^7.25.7", "@babel/plugin-transform-unicode-escapes@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz#a75ef3947ce15363fccaa38e2dd9bc70b2788b82"
integrity sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==
dependencies:
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-unicode-property-regex@^7.24.7", "@babel/plugin-transform-unicode-property-regex@^7.25.7", "@babel/plugin-transform-unicode-property-regex@^7.25.9":
+"@babel/plugin-transform-unicode-property-regex@^7.25.7", "@babel/plugin-transform-unicode-property-regex@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz#a901e96f2c1d071b0d1bb5dc0d3c880ce8f53dd3"
integrity sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==
@@ -2457,7 +2620,7 @@
"@babel/helper-create-regexp-features-plugin" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-unicode-regex@^7.24.7", "@babel/plugin-transform-unicode-regex@^7.25.7", "@babel/plugin-transform-unicode-regex@^7.25.9":
+"@babel/plugin-transform-unicode-regex@^7.25.7", "@babel/plugin-transform-unicode-regex@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz#5eae747fe39eacf13a8bd006a4fb0b5d1fa5e9b1"
integrity sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==
@@ -2465,7 +2628,7 @@
"@babel/helper-create-regexp-features-plugin" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/plugin-transform-unicode-sets-regex@^7.24.7", "@babel/plugin-transform-unicode-sets-regex@^7.25.7", "@babel/plugin-transform-unicode-sets-regex@^7.25.9":
+"@babel/plugin-transform-unicode-sets-regex@^7.25.7", "@babel/plugin-transform-unicode-sets-regex@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz#65114c17b4ffc20fa5b163c63c70c0d25621fabe"
integrity sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==
@@ -2473,95 +2636,6 @@
"@babel/helper-create-regexp-features-plugin" "^7.25.9"
"@babel/helper-plugin-utils" "^7.25.9"
-"@babel/preset-env@7.25.3":
- version "7.25.3"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.25.3.tgz#0bf4769d84ac51d1073ab4a86f00f30a3a83c67c"
- integrity sha512-QsYW7UeAaXvLPX9tdVliMJE7MD7M6MLYVTovRTIwhoYQVFHR1rM4wO8wqAezYi3/BpSD+NzVCZ69R6smWiIi8g==
- dependencies:
- "@babel/compat-data" "^7.25.2"
- "@babel/helper-compilation-targets" "^7.25.2"
- "@babel/helper-plugin-utils" "^7.24.8"
- "@babel/helper-validator-option" "^7.24.8"
- "@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.25.3"
- "@babel/plugin-bugfix-safari-class-field-initializer-scope" "^7.25.0"
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.25.0"
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.24.7"
- "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.25.0"
- "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2"
- "@babel/plugin-syntax-async-generators" "^7.8.4"
- "@babel/plugin-syntax-class-properties" "^7.12.13"
- "@babel/plugin-syntax-class-static-block" "^7.14.5"
- "@babel/plugin-syntax-dynamic-import" "^7.8.3"
- "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
- "@babel/plugin-syntax-import-assertions" "^7.24.7"
- "@babel/plugin-syntax-import-attributes" "^7.24.7"
- "@babel/plugin-syntax-import-meta" "^7.10.4"
- "@babel/plugin-syntax-json-strings" "^7.8.3"
- "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
- "@babel/plugin-syntax-numeric-separator" "^7.10.4"
- "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
- "@babel/plugin-syntax-optional-chaining" "^7.8.3"
- "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
- "@babel/plugin-syntax-top-level-await" "^7.14.5"
- "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6"
- "@babel/plugin-transform-arrow-functions" "^7.24.7"
- "@babel/plugin-transform-async-generator-functions" "^7.25.0"
- "@babel/plugin-transform-async-to-generator" "^7.24.7"
- "@babel/plugin-transform-block-scoped-functions" "^7.24.7"
- "@babel/plugin-transform-block-scoping" "^7.25.0"
- "@babel/plugin-transform-class-properties" "^7.24.7"
- "@babel/plugin-transform-class-static-block" "^7.24.7"
- "@babel/plugin-transform-classes" "^7.25.0"
- "@babel/plugin-transform-computed-properties" "^7.24.7"
- "@babel/plugin-transform-destructuring" "^7.24.8"
- "@babel/plugin-transform-dotall-regex" "^7.24.7"
- "@babel/plugin-transform-duplicate-keys" "^7.24.7"
- "@babel/plugin-transform-duplicate-named-capturing-groups-regex" "^7.25.0"
- "@babel/plugin-transform-dynamic-import" "^7.24.7"
- "@babel/plugin-transform-exponentiation-operator" "^7.24.7"
- "@babel/plugin-transform-export-namespace-from" "^7.24.7"
- "@babel/plugin-transform-for-of" "^7.24.7"
- "@babel/plugin-transform-function-name" "^7.25.1"
- "@babel/plugin-transform-json-strings" "^7.24.7"
- "@babel/plugin-transform-literals" "^7.25.2"
- "@babel/plugin-transform-logical-assignment-operators" "^7.24.7"
- "@babel/plugin-transform-member-expression-literals" "^7.24.7"
- "@babel/plugin-transform-modules-amd" "^7.24.7"
- "@babel/plugin-transform-modules-commonjs" "^7.24.8"
- "@babel/plugin-transform-modules-systemjs" "^7.25.0"
- "@babel/plugin-transform-modules-umd" "^7.24.7"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.24.7"
- "@babel/plugin-transform-new-target" "^7.24.7"
- "@babel/plugin-transform-nullish-coalescing-operator" "^7.24.7"
- "@babel/plugin-transform-numeric-separator" "^7.24.7"
- "@babel/plugin-transform-object-rest-spread" "^7.24.7"
- "@babel/plugin-transform-object-super" "^7.24.7"
- "@babel/plugin-transform-optional-catch-binding" "^7.24.7"
- "@babel/plugin-transform-optional-chaining" "^7.24.8"
- "@babel/plugin-transform-parameters" "^7.24.7"
- "@babel/plugin-transform-private-methods" "^7.24.7"
- "@babel/plugin-transform-private-property-in-object" "^7.24.7"
- "@babel/plugin-transform-property-literals" "^7.24.7"
- "@babel/plugin-transform-regenerator" "^7.24.7"
- "@babel/plugin-transform-reserved-words" "^7.24.7"
- "@babel/plugin-transform-shorthand-properties" "^7.24.7"
- "@babel/plugin-transform-spread" "^7.24.7"
- "@babel/plugin-transform-sticky-regex" "^7.24.7"
- "@babel/plugin-transform-template-literals" "^7.24.7"
- "@babel/plugin-transform-typeof-symbol" "^7.24.8"
- "@babel/plugin-transform-unicode-escapes" "^7.24.7"
- "@babel/plugin-transform-unicode-property-regex" "^7.24.7"
- "@babel/plugin-transform-unicode-regex" "^7.24.7"
- "@babel/plugin-transform-unicode-sets-regex" "^7.24.7"
- "@babel/preset-modules" "0.1.6-no-external-plugins"
- babel-plugin-polyfill-corejs2 "^0.4.10"
- babel-plugin-polyfill-corejs3 "^0.10.4"
- babel-plugin-polyfill-regenerator "^0.6.1"
- core-js-compat "^3.37.1"
- semver "^6.3.1"
-
"@babel/preset-env@7.25.8":
version "7.25.8"
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.25.8.tgz#dc6b719627fb29cd9cccbbbe041802fd575b524c"
@@ -2636,7 +2710,7 @@
core-js-compat "^3.38.1"
semver "^6.3.1"
-"@babel/preset-env@^7.16.0", "@babel/preset-env@^7.23.2":
+"@babel/preset-env@7.26.9":
version "7.26.9"
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.26.9.tgz#2ec64e903d0efe743699f77a10bdf7955c2123c3"
integrity sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==
@@ -2711,6 +2785,81 @@
core-js-compat "^3.40.0"
semver "^6.3.1"
+"@babel/preset-env@^7.16.0", "@babel/preset-env@^7.23.2":
+ version "7.26.0"
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.26.0.tgz#30e5c6bc1bcc54865bff0c5a30f6d4ccdc7fa8b1"
+ integrity sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==
+ dependencies:
+ "@babel/compat-data" "^7.26.0"
+ "@babel/helper-compilation-targets" "^7.25.9"
+ "@babel/helper-plugin-utils" "^7.25.9"
+ "@babel/helper-validator-option" "^7.25.9"
+ "@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.25.9"
+ "@babel/plugin-bugfix-safari-class-field-initializer-scope" "^7.25.9"
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.25.9"
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.25.9"
+ "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.25.9"
+ "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2"
+ "@babel/plugin-syntax-import-assertions" "^7.26.0"
+ "@babel/plugin-syntax-import-attributes" "^7.26.0"
+ "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6"
+ "@babel/plugin-transform-arrow-functions" "^7.25.9"
+ "@babel/plugin-transform-async-generator-functions" "^7.25.9"
+ "@babel/plugin-transform-async-to-generator" "^7.25.9"
+ "@babel/plugin-transform-block-scoped-functions" "^7.25.9"
+ "@babel/plugin-transform-block-scoping" "^7.25.9"
+ "@babel/plugin-transform-class-properties" "^7.25.9"
+ "@babel/plugin-transform-class-static-block" "^7.26.0"
+ "@babel/plugin-transform-classes" "^7.25.9"
+ "@babel/plugin-transform-computed-properties" "^7.25.9"
+ "@babel/plugin-transform-destructuring" "^7.25.9"
+ "@babel/plugin-transform-dotall-regex" "^7.25.9"
+ "@babel/plugin-transform-duplicate-keys" "^7.25.9"
+ "@babel/plugin-transform-duplicate-named-capturing-groups-regex" "^7.25.9"
+ "@babel/plugin-transform-dynamic-import" "^7.25.9"
+ "@babel/plugin-transform-exponentiation-operator" "^7.25.9"
+ "@babel/plugin-transform-export-namespace-from" "^7.25.9"
+ "@babel/plugin-transform-for-of" "^7.25.9"
+ "@babel/plugin-transform-function-name" "^7.25.9"
+ "@babel/plugin-transform-json-strings" "^7.25.9"
+ "@babel/plugin-transform-literals" "^7.25.9"
+ "@babel/plugin-transform-logical-assignment-operators" "^7.25.9"
+ "@babel/plugin-transform-member-expression-literals" "^7.25.9"
+ "@babel/plugin-transform-modules-amd" "^7.25.9"
+ "@babel/plugin-transform-modules-commonjs" "^7.25.9"
+ "@babel/plugin-transform-modules-systemjs" "^7.25.9"
+ "@babel/plugin-transform-modules-umd" "^7.25.9"
+ "@babel/plugin-transform-named-capturing-groups-regex" "^7.25.9"
+ "@babel/plugin-transform-new-target" "^7.25.9"
+ "@babel/plugin-transform-nullish-coalescing-operator" "^7.25.9"
+ "@babel/plugin-transform-numeric-separator" "^7.25.9"
+ "@babel/plugin-transform-object-rest-spread" "^7.25.9"
+ "@babel/plugin-transform-object-super" "^7.25.9"
+ "@babel/plugin-transform-optional-catch-binding" "^7.25.9"
+ "@babel/plugin-transform-optional-chaining" "^7.25.9"
+ "@babel/plugin-transform-parameters" "^7.25.9"
+ "@babel/plugin-transform-private-methods" "^7.25.9"
+ "@babel/plugin-transform-private-property-in-object" "^7.25.9"
+ "@babel/plugin-transform-property-literals" "^7.25.9"
+ "@babel/plugin-transform-regenerator" "^7.25.9"
+ "@babel/plugin-transform-regexp-modifiers" "^7.26.0"
+ "@babel/plugin-transform-reserved-words" "^7.25.9"
+ "@babel/plugin-transform-shorthand-properties" "^7.25.9"
+ "@babel/plugin-transform-spread" "^7.25.9"
+ "@babel/plugin-transform-sticky-regex" "^7.25.9"
+ "@babel/plugin-transform-template-literals" "^7.25.9"
+ "@babel/plugin-transform-typeof-symbol" "^7.25.9"
+ "@babel/plugin-transform-unicode-escapes" "^7.25.9"
+ "@babel/plugin-transform-unicode-property-regex" "^7.25.9"
+ "@babel/plugin-transform-unicode-regex" "^7.25.9"
+ "@babel/plugin-transform-unicode-sets-regex" "^7.25.9"
+ "@babel/preset-modules" "0.1.6-no-external-plugins"
+ babel-plugin-polyfill-corejs2 "^0.4.10"
+ babel-plugin-polyfill-corejs3 "^0.10.6"
+ babel-plugin-polyfill-regenerator "^0.6.1"
+ core-js-compat "^3.38.1"
+ semver "^6.3.1"
+
"@babel/preset-flow@^7.24.7":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.25.9.tgz#ef8b5e7e3f24a42b3711e77fb14919b87dffed0a"
@@ -2774,21 +2923,37 @@
pirates "^4.0.6"
source-map-support "^0.5.16"
-"@babel/runtime@7.25.0":
- version "7.25.0"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.0.tgz#3af9a91c1b739c569d5d80cc917280919c544ecb"
- integrity sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==
+"@babel/runtime@7.26.10":
+ version "7.26.10"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.26.10.tgz#a07b4d8fa27af131a633d7b3524db803eb4764c2"
+ integrity sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==
+ dependencies:
+ regenerator-runtime "^0.14.0"
+
+"@babel/runtime@^7.12.5":
+ version "7.26.7"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.26.7.tgz#f4e7fe527cd710f8dc0618610b61b4b060c3c341"
+ integrity sha512-AOPI3D+a8dXnja+iwsUqGRjr1BbZIe771sXdapOtYI531gSqpi92vXivKcq2asu/DFpdl1ceFAKZyRzK2PCVcQ==
dependencies:
regenerator-runtime "^0.14.0"
-"@babel/runtime@^7.12.5", "@babel/runtime@^7.16.0", "@babel/runtime@^7.21.0", "@babel/runtime@^7.22.6", "@babel/runtime@^7.23.2", "@babel/runtime@^7.23.9", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4":
- version "7.26.9"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.26.9.tgz#aa4c6facc65b9cb3f87d75125ffd47781b475433"
- integrity sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==
+"@babel/runtime@^7.16.0", "@babel/runtime@^7.21.0", "@babel/runtime@^7.22.6", "@babel/runtime@^7.23.2", "@babel/runtime@^7.23.9", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4":
+ version "7.26.0"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.26.0.tgz#8600c2f595f277c60815256418b85356a65173c1"
+ integrity sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==
dependencies:
regenerator-runtime "^0.14.0"
-"@babel/template@^7.25.0", "@babel/template@^7.25.7", "@babel/template@^7.25.9", "@babel/template@^7.26.9", "@babel/template@^7.3.3":
+"@babel/template@^7.25.7", "@babel/template@^7.25.9", "@babel/template@^7.3.3":
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016"
+ integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==
+ dependencies:
+ "@babel/code-frame" "^7.25.9"
+ "@babel/parser" "^7.25.9"
+ "@babel/types" "^7.25.9"
+
+"@babel/template@^7.26.9":
version "7.26.9"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.26.9.tgz#4577ad3ddf43d194528cff4e1fa6b232fa609bb2"
integrity sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==
@@ -2806,20 +2971,20 @@
"@babel/parser" "^7.27.0"
"@babel/types" "^7.27.0"
-"@babel/traverse@^7.16.0", "@babel/traverse@^7.25.0", "@babel/traverse@^7.25.2", "@babel/traverse@^7.25.7", "@babel/traverse@^7.25.9", "@babel/traverse@^7.26.5", "@babel/traverse@^7.26.8", "@babel/traverse@^7.26.9":
- version "7.26.9"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.26.9.tgz#4398f2394ba66d05d988b2ad13c219a2c857461a"
- integrity sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==
+"@babel/traverse@^7.16.0", "@babel/traverse@^7.25.7", "@babel/traverse@^7.25.9":
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.9.tgz#a50f8fe49e7f69f53de5bea7e413cd35c5e13c84"
+ integrity sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==
dependencies:
- "@babel/code-frame" "^7.26.2"
- "@babel/generator" "^7.26.9"
- "@babel/parser" "^7.26.9"
- "@babel/template" "^7.26.9"
- "@babel/types" "^7.26.9"
+ "@babel/code-frame" "^7.25.9"
+ "@babel/generator" "^7.25.9"
+ "@babel/parser" "^7.25.9"
+ "@babel/template" "^7.25.9"
+ "@babel/types" "^7.25.9"
debug "^4.3.1"
globals "^11.1.0"
-"@babel/traverse@^7.26.10", "@babel/traverse@^7.27.0":
+"@babel/traverse@^7.26.10", "@babel/traverse@^7.26.8", "@babel/traverse@^7.26.9", "@babel/traverse@^7.27.0":
version "7.27.0"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.27.0.tgz#11d7e644779e166c0442f9a07274d02cd91d4a70"
integrity sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==
@@ -2832,6 +2997,19 @@
debug "^4.3.1"
globals "^11.1.0"
+"@babel/traverse@^7.26.5":
+ version "7.26.9"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.26.9.tgz#4398f2394ba66d05d988b2ad13c219a2c857461a"
+ integrity sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==
+ dependencies:
+ "@babel/code-frame" "^7.26.2"
+ "@babel/generator" "^7.26.9"
+ "@babel/parser" "^7.26.9"
+ "@babel/template" "^7.26.9"
+ "@babel/types" "^7.26.9"
+ debug "^4.3.1"
+ globals "^11.1.0"
+
"@babel/types@7.19.0":
version "7.19.0"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.19.0.tgz#75f21d73d73dc0351f3368d28db73465f4814600"
@@ -2841,10 +3019,10 @@
"@babel/helper-validator-identifier" "^7.18.6"
to-fast-properties "^2.0.0"
-"@babel/types@^7.0.0", "@babel/types@^7.18.2", "@babel/types@^7.20.7", "@babel/types@^7.24.7", "@babel/types@^7.25.0", "@babel/types@^7.25.2", "@babel/types@^7.25.8", "@babel/types@^7.25.9", "@babel/types@^7.26.9", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.6.1", "@babel/types@^7.9.6":
- version "7.26.9"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.9.tgz#08b43dec79ee8e682c2ac631c010bdcac54a21ce"
- integrity sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==
+"@babel/types@^7.0.0", "@babel/types@^7.18.2", "@babel/types@^7.20.7", "@babel/types@^7.24.7", "@babel/types@^7.25.8", "@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.6.1", "@babel/types@^7.9.6":
+ version "7.26.0"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.0.tgz#deabd08d6b753bc8e0f198f8709fb575e31774ff"
+ integrity sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==
dependencies:
"@babel/helper-string-parser" "^7.25.9"
"@babel/helper-validator-identifier" "^7.25.9"
@@ -2857,40 +3035,55 @@
"@babel/helper-string-parser" "^7.25.9"
"@babel/helper-validator-identifier" "^7.25.9"
+"@babel/types@^7.26.7", "@babel/types@^7.26.9":
+ version "7.26.9"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.9.tgz#08b43dec79ee8e682c2ac631c010bdcac54a21ce"
+ integrity sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==
+ dependencies:
+ "@babel/helper-string-parser" "^7.25.9"
+ "@babel/helper-validator-identifier" "^7.25.9"
+
"@bcoe/v8-coverage@^0.2.3":
version "0.2.3"
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
+"@bluehalo/ngx-leaflet@^19.0.0":
+ version "19.0.0"
+ resolved "https://registry.yarnpkg.com/@bluehalo/ngx-leaflet/-/ngx-leaflet-19.0.0.tgz#53125e8c96c144c7ee6b5cd751e0bf3967f8d893"
+ integrity sha512-c1BUyDcS5QB3bwG9QUCNJLB/G3hdYQmaj37TaeCNnKUo9TViOCEhPihCXDTRAFkobbtNGXN8lGg8uD5GXv6/Zw==
+ dependencies:
+ tslib "^2.3.0"
+
"@bufbuild/protobuf@^2.0.0":
- version "2.2.3"
- resolved "https://registry.yarnpkg.com/@bufbuild/protobuf/-/protobuf-2.2.3.tgz#9cd136f6b687e63e9b517b3a54211ece942897ee"
- integrity sha512-tFQoXHJdkEOSwj5tRIZSPNUuXK3RaR7T1nUrPgbYX1pUbvqqaaZAsfo+NXBPsz5rZMSKVFrgK1WL8Q/MSLvprg==
+ version "2.2.5"
+ resolved "https://registry.yarnpkg.com/@bufbuild/protobuf/-/protobuf-2.2.5.tgz#8e82c0af292113b4a89f8b658c71c4636c8d2e36"
+ integrity sha512-/g5EzJifw5GF8aren8wZ/G5oMuPoGeS6MQD3ca8ddcvdXR5UELUfdTZITCGNhNXynY/AYl3Z4plmxdj/tRl/hQ==
"@colors/colors@1.5.0":
version "1.5.0"
resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9"
integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==
-"@commitlint/cli@^19.6.1", "@commitlint/cli@^19.8.0":
- version "19.8.0"
- resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-19.8.0.tgz#e66e5a5268437e42b7c6f2a447e94ea83b8a3272"
- integrity sha512-t/fCrLVu+Ru01h0DtlgHZXbHV2Y8gKocTR5elDOqIRUzQd0/6hpt2VIWOj9b3NDo7y4/gfxeR2zRtXq/qO6iUg==
+"@commitlint/cli@^19.6.1":
+ version "19.6.1"
+ resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-19.6.1.tgz#24edd26595d911cc6b680cdfbb1fb083bfd5f73d"
+ integrity sha512-8hcyA6ZoHwWXC76BoC8qVOSr8xHy00LZhZpauiD0iO0VYbVhMnED0da85lTfIULxl7Lj4c6vZgF0Wu/ed1+jlQ==
dependencies:
- "@commitlint/format" "^19.8.0"
- "@commitlint/lint" "^19.8.0"
- "@commitlint/load" "^19.8.0"
- "@commitlint/read" "^19.8.0"
- "@commitlint/types" "^19.8.0"
+ "@commitlint/format" "^19.5.0"
+ "@commitlint/lint" "^19.6.0"
+ "@commitlint/load" "^19.6.1"
+ "@commitlint/read" "^19.5.0"
+ "@commitlint/types" "^19.5.0"
tinyexec "^0.3.0"
yargs "^17.0.0"
"@commitlint/config-conventional@^19.6.0":
- version "19.8.0"
- resolved "https://registry.yarnpkg.com/@commitlint/config-conventional/-/config-conventional-19.8.0.tgz#4a1470a0156f5d1f560426c05cfc3a6a796c2b9c"
- integrity sha512-9I2kKJwcAPwMoAj38hwqFXG0CzS2Kj+SAByPUQ0SlHTfb7VUhYVmo7G2w2tBrqmOf7PFd6MpZ/a1GQJo8na8kw==
+ version "19.6.0"
+ resolved "https://registry.yarnpkg.com/@commitlint/config-conventional/-/config-conventional-19.6.0.tgz#badba72c8639ea79291e2941001bd7ea7fad3a2c"
+ integrity sha512-DJT40iMnTYtBtUfw9ApbsLZFke1zKh6llITVJ+x9mtpHD08gsNXaIRqHTmwTZL3dNX5+WoyK7pCN/5zswvkBCQ==
dependencies:
- "@commitlint/types" "^19.8.0"
+ "@commitlint/types" "^19.5.0"
conventional-changelog-conventionalcommits "^7.0.2"
"@commitlint/config-lerna-scopes@^19.5.0":
@@ -2903,66 +3096,66 @@
import-from "^4.0.0"
semver "^7.6.0"
-"@commitlint/config-validator@^19.8.0":
- version "19.8.0"
- resolved "https://registry.yarnpkg.com/@commitlint/config-validator/-/config-validator-19.8.0.tgz#0b30c274e4427d3942fd62ecf53c19d99f43ac4a"
- integrity sha512-+r5ZvD/0hQC3w5VOHJhGcCooiAVdynFlCe2d6I9dU+PvXdV3O+fU4vipVg+6hyLbQUuCH82mz3HnT/cBQTYYuA==
+"@commitlint/config-validator@^19.5.0":
+ version "19.5.0"
+ resolved "https://registry.yarnpkg.com/@commitlint/config-validator/-/config-validator-19.5.0.tgz#f0a4eda2109fc716ef01bb8831af9b02e3a1e568"
+ integrity sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==
dependencies:
- "@commitlint/types" "^19.8.0"
+ "@commitlint/types" "^19.5.0"
ajv "^8.11.0"
-"@commitlint/ensure@^19.8.0":
- version "19.8.0"
- resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-19.8.0.tgz#481c30706dc4aa4a8e85e7d1f1877c30e5201a0d"
- integrity sha512-kNiNU4/bhEQ/wutI1tp1pVW1mQ0QbAjfPRo5v8SaxoVV+ARhkB8Wjg3BSseNYECPzWWfg/WDqQGIfV1RaBFQZg==
+"@commitlint/ensure@^19.5.0":
+ version "19.5.0"
+ resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-19.5.0.tgz#b087374a6a0a0140e5925a82901d234885d9f6dd"
+ integrity sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg==
dependencies:
- "@commitlint/types" "^19.8.0"
+ "@commitlint/types" "^19.5.0"
lodash.camelcase "^4.3.0"
lodash.kebabcase "^4.1.1"
lodash.snakecase "^4.1.1"
lodash.startcase "^4.4.0"
lodash.upperfirst "^4.3.1"
-"@commitlint/execute-rule@^19.8.0":
- version "19.8.0"
- resolved "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-19.8.0.tgz#ebcac26dc75d481e223b0c37d59e5bdd7a164d4a"
- integrity sha512-fuLeI+EZ9x2v/+TXKAjplBJWI9CNrHnyi5nvUQGQt4WRkww/d95oVRsc9ajpt4xFrFmqMZkd/xBQHZDvALIY7A==
+"@commitlint/execute-rule@^19.5.0":
+ version "19.5.0"
+ resolved "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-19.5.0.tgz#c13da8c03ea0379f30856111e27d57518e25b8a2"
+ integrity sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==
-"@commitlint/format@^19.8.0":
- version "19.8.0"
- resolved "https://registry.yarnpkg.com/@commitlint/format/-/format-19.8.0.tgz#b06084fb3b807f2142c19c94572127d4a3af5da1"
- integrity sha512-EOpA8IERpQstxwp/WGnDArA7S+wlZDeTeKi98WMOvaDLKbjptuHWdOYYr790iO7kTCif/z971PKPI2PkWMfOxg==
+"@commitlint/format@^19.5.0":
+ version "19.5.0"
+ resolved "https://registry.yarnpkg.com/@commitlint/format/-/format-19.5.0.tgz#d879db2d97d70ae622397839fb8603d56e85a250"
+ integrity sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A==
dependencies:
- "@commitlint/types" "^19.8.0"
+ "@commitlint/types" "^19.5.0"
chalk "^5.3.0"
-"@commitlint/is-ignored@^19.8.0":
- version "19.8.0"
- resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-19.8.0.tgz#3e413168b1222e62798dd1a36c64d2454e7bb291"
- integrity sha512-L2Jv9yUg/I+jF3zikOV0rdiHUul9X3a/oU5HIXhAJLE2+TXTnEBfqYP9G5yMw/Yb40SnR764g4fyDK6WR2xtpw==
+"@commitlint/is-ignored@^19.6.0":
+ version "19.6.0"
+ resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-19.6.0.tgz#6adb9097d36b68e00b9c06a73d7a08e9f54c54dc"
+ integrity sha512-Ov6iBgxJQFR9koOupDPHvcHU9keFupDgtB3lObdEZDroiG4jj1rzky60fbQozFKVYRTUdrBGICHG0YVmRuAJmw==
dependencies:
- "@commitlint/types" "^19.8.0"
+ "@commitlint/types" "^19.5.0"
semver "^7.6.0"
-"@commitlint/lint@^19.8.0":
- version "19.8.0"
- resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-19.8.0.tgz#c2bf85de6d2e86e13c972cf19a2d425e62e9b057"
- integrity sha512-+/NZKyWKSf39FeNpqhfMebmaLa1P90i1Nrb1SrA7oSU5GNN/lksA4z6+ZTnsft01YfhRZSYMbgGsARXvkr/VLQ==
- dependencies:
- "@commitlint/is-ignored" "^19.8.0"
- "@commitlint/parse" "^19.8.0"
- "@commitlint/rules" "^19.8.0"
- "@commitlint/types" "^19.8.0"
-
-"@commitlint/load@>6.1.1", "@commitlint/load@^19.8.0":
- version "19.8.0"
- resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-19.8.0.tgz#7c7078fbdc9c4e3a14fa5a8684c3cb854353551e"
- integrity sha512-4rvmm3ff81Sfb+mcWT5WKlyOa+Hd33WSbirTVUer0wjS1Hv/Hzr07Uv1ULIV9DkimZKNyOwXn593c+h8lsDQPQ==
- dependencies:
- "@commitlint/config-validator" "^19.8.0"
- "@commitlint/execute-rule" "^19.8.0"
- "@commitlint/resolve-extends" "^19.8.0"
- "@commitlint/types" "^19.8.0"
+"@commitlint/lint@^19.6.0":
+ version "19.6.0"
+ resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-19.6.0.tgz#f9fc9b11b808c96bd3f85e882e056daabac40c36"
+ integrity sha512-LRo7zDkXtcIrpco9RnfhOKeg8PAnE3oDDoalnrVU/EVaKHYBWYL1DlRR7+3AWn0JiBqD8yKOfetVxJGdEtZ0tg==
+ dependencies:
+ "@commitlint/is-ignored" "^19.6.0"
+ "@commitlint/parse" "^19.5.0"
+ "@commitlint/rules" "^19.6.0"
+ "@commitlint/types" "^19.5.0"
+
+"@commitlint/load@>6.1.1", "@commitlint/load@^19.6.1":
+ version "19.6.1"
+ resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-19.6.1.tgz#5fae8843a6048a2d3d1cc16da0af8ee532fa9db4"
+ integrity sha512-kE4mRKWWNju2QpsCWt428XBvUH55OET2N4QKQ0bF85qS/XbsRGG1MiTByDNlEVpEPceMkDr46LNH95DtRwcsfA==
+ dependencies:
+ "@commitlint/config-validator" "^19.5.0"
+ "@commitlint/execute-rule" "^19.5.0"
+ "@commitlint/resolve-extends" "^19.5.0"
+ "@commitlint/types" "^19.5.0"
chalk "^5.3.0"
cosmiconfig "^9.0.0"
cosmiconfig-typescript-loader "^6.1.0"
@@ -2970,77 +3163,77 @@
lodash.merge "^4.6.2"
lodash.uniq "^4.5.0"
-"@commitlint/message@^19.8.0":
- version "19.8.0"
- resolved "https://registry.yarnpkg.com/@commitlint/message/-/message-19.8.0.tgz#1ac1c527a601b329373ba50ffd70a713acb0b8ca"
- integrity sha512-qs/5Vi9bYjf+ZV40bvdCyBn5DvbuelhR6qewLE8Bh476F7KnNyLfdM/ETJ4cp96WgeeHo6tesA2TMXS0sh5X4A==
+"@commitlint/message@^19.5.0":
+ version "19.5.0"
+ resolved "https://registry.yarnpkg.com/@commitlint/message/-/message-19.5.0.tgz#c062d9a1d2b3302c3a8cac25d6d1125ea9c019b2"
+ integrity sha512-R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ==
-"@commitlint/parse@^19.8.0":
- version "19.8.0"
- resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-19.8.0.tgz#bce415dda60e115239cd337b15262e459cab8eba"
- integrity sha512-YNIKAc4EXvNeAvyeEnzgvm1VyAe0/b3Wax7pjJSwXuhqIQ1/t2hD3OYRXb6D5/GffIvaX82RbjD+nWtMZCLL7Q==
+"@commitlint/parse@^19.5.0":
+ version "19.5.0"
+ resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-19.5.0.tgz#b450dad9b5a95ac5ba472d6d0fdab822dce946fc"
+ integrity sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw==
dependencies:
- "@commitlint/types" "^19.8.0"
+ "@commitlint/types" "^19.5.0"
conventional-changelog-angular "^7.0.0"
conventional-commits-parser "^5.0.0"
-"@commitlint/read@^19.8.0":
- version "19.8.0"
- resolved "https://registry.yarnpkg.com/@commitlint/read/-/read-19.8.0.tgz#d16bea846619100e23c4d56bcf191c397da7542f"
- integrity sha512-6ywxOGYajcxK1y1MfzrOnwsXO6nnErna88gRWEl3qqOOP8MDu/DTeRkGLXBFIZuRZ7mm5yyxU5BmeUvMpNte5w==
+"@commitlint/read@^19.5.0":
+ version "19.5.0"
+ resolved "https://registry.yarnpkg.com/@commitlint/read/-/read-19.5.0.tgz#601f9f1afe69852b0f28aa81cd455b40979fad6b"
+ integrity sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ==
dependencies:
- "@commitlint/top-level" "^19.8.0"
- "@commitlint/types" "^19.8.0"
+ "@commitlint/top-level" "^19.5.0"
+ "@commitlint/types" "^19.5.0"
git-raw-commits "^4.0.0"
minimist "^1.2.8"
tinyexec "^0.3.0"
-"@commitlint/resolve-extends@^19.8.0":
- version "19.8.0"
- resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-19.8.0.tgz#2ef6c448ed7f925840cca282e3ce37bea8e9b726"
- integrity sha512-CLanRQwuG2LPfFVvrkTrBR/L/DMy3+ETsgBqW1OvRxmzp/bbVJW0Xw23LnnExgYcsaFtos967lul1CsbsnJlzQ==
+"@commitlint/resolve-extends@^19.5.0":
+ version "19.5.0"
+ resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-19.5.0.tgz#f3ec33e12d10df90cae0bfad8e593431fb61b18e"
+ integrity sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==
dependencies:
- "@commitlint/config-validator" "^19.8.0"
- "@commitlint/types" "^19.8.0"
+ "@commitlint/config-validator" "^19.5.0"
+ "@commitlint/types" "^19.5.0"
global-directory "^4.0.1"
import-meta-resolve "^4.0.0"
lodash.mergewith "^4.6.2"
resolve-from "^5.0.0"
-"@commitlint/rules@^19.8.0":
- version "19.8.0"
- resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-19.8.0.tgz#0ca2b7bd9dc22409173963f15061d8cac671bdaa"
- integrity sha512-IZ5IE90h6DSWNuNK/cwjABLAKdy8tP8OgGVGbXe1noBEX5hSsu00uRlLu6JuruiXjWJz2dZc+YSw3H0UZyl/mA==
+"@commitlint/rules@^19.6.0":
+ version "19.6.0"
+ resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-19.6.0.tgz#2436da7974c3cf2a7236257f3ef5dd40c4d91312"
+ integrity sha512-1f2reW7lbrI0X0ozZMesS/WZxgPa4/wi56vFuJENBmed6mWq5KsheN/nxqnl/C23ioxpPO/PL6tXpiiFy5Bhjw==
dependencies:
- "@commitlint/ensure" "^19.8.0"
- "@commitlint/message" "^19.8.0"
- "@commitlint/to-lines" "^19.8.0"
- "@commitlint/types" "^19.8.0"
+ "@commitlint/ensure" "^19.5.0"
+ "@commitlint/message" "^19.5.0"
+ "@commitlint/to-lines" "^19.5.0"
+ "@commitlint/types" "^19.5.0"
-"@commitlint/to-lines@^19.8.0":
- version "19.8.0"
- resolved "https://registry.yarnpkg.com/@commitlint/to-lines/-/to-lines-19.8.0.tgz#f7bdf7878999c0620f3a2f46f829fcc1f1f1d118"
- integrity sha512-3CKLUw41Cur8VMjh16y8LcsOaKbmQjAKCWlXx6B0vOUREplp6em9uIVhI8Cv934qiwkbi2+uv+mVZPnXJi1o9A==
+"@commitlint/to-lines@^19.5.0":
+ version "19.5.0"
+ resolved "https://registry.yarnpkg.com/@commitlint/to-lines/-/to-lines-19.5.0.tgz#e4b7f34f09064568c96a74de4f1fc9f466c4d472"
+ integrity sha512-R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ==
-"@commitlint/top-level@^19.8.0":
- version "19.8.0"
- resolved "https://registry.yarnpkg.com/@commitlint/top-level/-/top-level-19.8.0.tgz#5ff4d9b8be44501edd2c94b93602a7104d63d92d"
- integrity sha512-Rphgoc/omYZisoNkcfaBRPQr4myZEHhLPx2/vTXNLjiCw4RgfPR1wEgUpJ9OOmDCiv5ZyIExhprNLhteqH4FuQ==
+"@commitlint/top-level@^19.5.0":
+ version "19.5.0"
+ resolved "https://registry.yarnpkg.com/@commitlint/top-level/-/top-level-19.5.0.tgz#0017ffe39b5ba3611a1debd62efe28803601a14f"
+ integrity sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng==
dependencies:
find-up "^7.0.0"
"@commitlint/travis-cli@^19.6.1":
- version "19.8.0"
- resolved "https://registry.yarnpkg.com/@commitlint/travis-cli/-/travis-cli-19.8.0.tgz#ef01fde891400e73d679e8f75c215ec73a2a9d7f"
- integrity sha512-hYGdePwRsQ010v9faRnhqVsDaVNFChh5Nmeww8NU53bB6hbxn6q6rmztzcT/VY+gFdYVDbX9JgyfjHPZW6R91A==
+ version "19.6.1"
+ resolved "https://registry.yarnpkg.com/@commitlint/travis-cli/-/travis-cli-19.6.1.tgz#607d0afeb2a7cf35c66fc81d09ff56595af5806e"
+ integrity sha512-5zMOryRonkgMiU5D0EpWKlNe5OsaIx0azSuSVBZiMXXgO5SKT4KhAtYtW/yhnGxKED/R1eLZLhvSyky2kqsL/A==
dependencies:
- "@commitlint/cli" "^19.8.0"
+ "@commitlint/cli" "^19.6.1"
tinyexec "^0.3.0"
-"@commitlint/types@^19.8.0":
- version "19.8.0"
- resolved "https://registry.yarnpkg.com/@commitlint/types/-/types-19.8.0.tgz#5a77c7a723a714995a51917edd0ecfcf29495d3c"
- integrity sha512-LRjP623jPyf3Poyfb0ohMj8I3ORyBDOwXAgxxVPbSD0unJuW2mJWeiRfaQinjtccMqC5Wy1HOMfa4btKjbNxbg==
+"@commitlint/types@^19.5.0":
+ version "19.5.0"
+ resolved "https://registry.yarnpkg.com/@commitlint/types/-/types-19.5.0.tgz#c5084d1231d4dd50e40bdb656ee7601f691400b3"
+ integrity sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==
dependencies:
"@types/conventional-commits-parser" "^5.0.0"
chalk "^5.3.0"
@@ -3221,9 +3414,9 @@
"@cspell/dict-shell" "1.1.0"
"@cspell/dict-companies@^3.0.9":
- version "3.1.14"
- resolved "https://registry.yarnpkg.com/@cspell/dict-companies/-/dict-companies-3.1.14.tgz#3021973b6f6cbe82b9819669095f2094d0f3ed7f"
- integrity sha512-iqo1Ce4L7h0l0GFSicm2wCLtfuymwkvgFGhmu9UHyuIcTbdFkDErH+m6lH3Ed+QuskJlpQ9dM7puMIGqUlVERw==
+ version "3.1.13"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-companies/-/dict-companies-3.1.13.tgz#dd99c462076cdad9a62918a9c4a53865a32f2c6f"
+ integrity sha512-EAaFMxnSG4eQKup9D81EnWAYIzorLWG7b7Zzf+Suu0bVeFBpCYESss/EWtnmb5ZZNfKAGxtoMqfL3vRfyJERIQ==
"@cspell/dict-cpp@^5.0.2":
version "5.1.23"
@@ -3286,14 +3479,14 @@
integrity sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==
"@cspell/dict-en_us@^4.3.2":
- version "4.3.34"
- resolved "https://registry.yarnpkg.com/@cspell/dict-en_us/-/dict-en_us-4.3.34.tgz#4b562b238df86c482187ec7f65c892c822e6f9f2"
- integrity sha512-ewJXNV7Nk5vxbGvHvxYLDGoXN0Lq5sfSgX8SAlcYL+2bZ7r25nNOLHou5hdFlNgvviGTx/SFPlVKjdjVJlblgA==
+ version "4.3.30"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-en_us/-/dict-en_us-4.3.30.tgz#6256eb7835369a295d2f7ac96867a18db5c17d72"
+ integrity sha512-p0G5fByj5fUnMyFUlkN3kaqE3nuQkqpYV47Gn9n8k2TszsdLY55xj9UoFE4YIcjOiyU1bR/YDJ5daiPMYXTJ/A==
"@cspell/dict-filetypes@^3.0.0":
- version "3.0.11"
- resolved "https://registry.yarnpkg.com/@cspell/dict-filetypes/-/dict-filetypes-3.0.11.tgz#2c1066833c7490108b7ed1e6193750b547a4ccb0"
- integrity sha512-bBtCHZLo7MiSRUqx5KEiPdGOmXIlDGY+L7SJEtRWZENpAKE+96rT7hj+TUUYWBbCzheqHr0OXZJFEKDgsG/uZg==
+ version "3.0.10"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-filetypes/-/dict-filetypes-3.0.10.tgz#1d8a22da3320e507d2c33496e5194b090320f89b"
+ integrity sha512-JEN3627joBVtpa1yfkdN9vz1Z129PoKGHBKjXCEziJvf2Zt1LeULWYYYg/O6pzRR4yzRa5YbXDTuyrN7vX7DFg==
"@cspell/dict-fonts@^3.0.2":
version "3.0.2"
@@ -3301,9 +3494,9 @@
integrity sha512-Z5QdbgEI7DV+KPXrAeDA6dDm/vTzyaW53SGlKqz6PI5VhkOjgkBXv3YtZjnxMZ4dY2ZIqq+RUK6qa9Pi8rQdGQ==
"@cspell/dict-fullstack@^3.1.5":
- version "3.2.6"
- resolved "https://registry.yarnpkg.com/@cspell/dict-fullstack/-/dict-fullstack-3.2.6.tgz#a5916de25a0acc9cedef2fd97760e1656017280e"
- integrity sha512-cSaq9rz5RIU9j+0jcF2vnKPTQjxGXclntmoNp4XB7yFX2621PxJcekGjwf/lN5heJwVxGLL9toR0CBlGKwQBgA==
+ version "3.2.3"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-fullstack/-/dict-fullstack-3.2.3.tgz#f6fff74eff00c6759cba510168acada0619004cc"
+ integrity sha512-62PbndIyQPH11mAv0PyiyT0vbwD0AXEocPpHlCHzfb5v9SspzCCbzQ/LIBiFmyRa+q5LMW35CnSVu6OXdT+LKg==
"@cspell/dict-gaming-terms@^1.0.4":
version "1.1.0"
@@ -3366,9 +3559,9 @@
integrity sha512-sFlUNI5kOogy49KtPg8SMQYirDGIAoKBO3+cDLIwD4MLdsWy1q0upc7pzGht3mrjuyMiPRUV14Bb0rkVLrxOhg==
"@cspell/dict-npm@^5.0.5":
- version "5.1.29"
- resolved "https://registry.yarnpkg.com/@cspell/dict-npm/-/dict-npm-5.1.29.tgz#578d0353373a84c109f84f0bd58c4cb90a4357cb"
- integrity sha512-FPCE9MpO42WGc9u/lx3J6CZSfPVO5kMUaOQkTVqXo3sTDX6+o5ulb+9W/MD33kiA0AvXr1Lk8knhA6koW9t/Yw==
+ version "5.1.24"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-npm/-/dict-npm-5.1.24.tgz#a34f292472980eab9af4e93dcdd6791d8632eab2"
+ integrity sha512-yAyyHetElLR236sqWQkBtiLbzCGexV5zzLMHyQPptKQQK88BTQR5f9wXW2EtSgJw/4gUchpSWQWxMlkIfK/iQQ==
"@cspell/dict-php@^4.0.1":
version "4.0.14"
@@ -3466,23 +3659,23 @@
dependencies:
"@jridgewell/trace-mapping" "0.3.9"
-"@csstools/color-helpers@^5.0.2":
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/@csstools/color-helpers/-/color-helpers-5.0.2.tgz#82592c9a7c2b83c293d9161894e2a6471feb97b8"
- integrity sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==
+"@csstools/color-helpers@^5.0.1":
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/@csstools/color-helpers/-/color-helpers-5.0.1.tgz#829f1c76f5800b79c51c709e2f36821b728e0e10"
+ integrity sha512-MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA==
-"@csstools/css-calc@^2.1.2":
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/@csstools/css-calc/-/css-calc-2.1.2.tgz#bffd55f002dab119b76d4023f95cd943e6c8c11e"
- integrity sha512-TklMyb3uBB28b5uQdxjReG4L80NxAqgrECqLZFQbyLekwwlcDDS8r3f07DKqeo8C4926Br0gf/ZDe17Zv4wIuw==
+"@csstools/css-calc@^2.1.1":
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/@csstools/css-calc/-/css-calc-2.1.1.tgz#a7dbc66627f5cf458d42aed14bda0d3860562383"
+ integrity sha512-rL7kaUnTkL9K+Cvo2pnCieqNpTKgQzy5f+N+5Iuko9HAoasP+xgprVh7KN/MaJVvVL1l0EzQq2MoqBHKSrDrag==
-"@csstools/css-color-parser@^3.0.8":
- version "3.0.8"
- resolved "https://registry.yarnpkg.com/@csstools/css-color-parser/-/css-color-parser-3.0.8.tgz#5fe9322920851450bf5e065c2b0e731b9e165394"
- integrity sha512-pdwotQjCCnRPuNi06jFuP68cykU1f3ZWExLe/8MQ1LOs8Xq+fTkYgd+2V8mWUWMrOn9iS2HftPVaMZDaXzGbhQ==
+"@csstools/css-color-parser@^3.0.7":
+ version "3.0.7"
+ resolved "https://registry.yarnpkg.com/@csstools/css-color-parser/-/css-color-parser-3.0.7.tgz#442d61d58e54ad258d52c309a787fceb33906484"
+ integrity sha512-nkMp2mTICw32uE5NN+EsJ4f5N+IGFeCFu4bGpiKgb2Pq/7J/MpyLBeQ5ry4KKtRFZaYs6sTmcMYrSRIyj5DFKA==
dependencies:
- "@csstools/color-helpers" "^5.0.2"
- "@csstools/css-calc" "^2.1.2"
+ "@csstools/color-helpers" "^5.0.1"
+ "@csstools/css-calc" "^2.1.1"
"@csstools/css-parser-algorithms@^2.3.1":
version "2.7.1"
@@ -3696,15 +3889,15 @@
resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70"
integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==
-"@discoveryjs/json-ext@0.6.1":
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.6.1.tgz#593da7a17a31a72a874e313677183334a49b01c9"
- integrity sha512-boghen8F0Q8D+0/Q1/1r6DUEieUJ8w2a1gIknExMSHBsJFOr2+0KUfHiVYBvucPwl3+RU5PFBK833FjFCh3BhA==
+"@discoveryjs/json-ext@0.6.3":
+ version "0.6.3"
+ resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.6.3.tgz#f13c7c205915eb91ae54c557f5e92bddd8be0e83"
+ integrity sha512-4B4OijXeVNOPZlYA2oEwWOTkzyltLao+xbotHQeqN++Rv27Y6s818+n2Qkp8q+Fxhn0t/5lA5X1Mxktud8eayQ==
"@electron/asar@^3.2.1":
- version "3.3.1"
- resolved "https://registry.yarnpkg.com/@electron/asar/-/asar-3.3.1.tgz#cd14e897770d9844673dd7c1dc8944e086e1e0ea"
- integrity sha512-WtpC/+34p0skWZiarRjLAyqaAX78DofhDxnREy/V5XHfu1XEXbFCSSMcDQ6hNCPJFaPy8/NnUgYuf9uiCkvKPg==
+ version "3.2.18"
+ resolved "https://registry.yarnpkg.com/@electron/asar/-/asar-3.2.18.tgz#fa607f829209bab8b9e0ce6658d3fe81b2cba517"
+ integrity sha512-2XyvMe3N3Nrs8cV39IKELRHTYUWFKrmqqSY1U+GMlc0jvqjIVnoxhNd2H4JolWQncbJi1DCvb5TNxZuI2fEjWg==
dependencies:
commander "^5.0.0"
glob "^7.1.6"
@@ -3779,9 +3972,9 @@
plist "^3.0.5"
"@electron/osx-sign@^1.0.5":
- version "1.3.3"
- resolved "https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.3.3.tgz#af751510488318d9f7663694af85819690d75583"
- integrity sha512-KZ8mhXvWv2rIEgMbWZ4y33bDHyUKMXnx4M0sTyPNK/vcB81ImdeY9Ggdqy0SWbMDgmbqyQ+phgejh6V3R2QuSg==
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.3.2.tgz#4cfa491f524bbd59dae2339db60fe478684cee32"
+ integrity sha512-KqVlm9WMWq19lBpCXQoThC/Koaiji2zotUDYwZDaZlZZym+FXY9mQW8wN6sUQ93nkVc42f3TQ1S/XN9S1kjM5Q==
dependencies:
compare-version "^0.1.2"
debug "^4.3.4"
@@ -3850,611 +4043,486 @@
dependencies:
tslib "^2.4.0"
-"@esbuild/aix-ppc64@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f"
- integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==
-
-"@esbuild/aix-ppc64@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.23.0.tgz#145b74d5e4a5223489cabdc238d8dad902df5259"
- integrity sha512-3sG8Zwa5fMcA9bgqB8AfWPQ+HFke6uD3h1s3RIwUNK8EG7a4buxvuFTs3j1IMs2NXAk9F30C/FF4vxRgQCcmoQ==
-
-"@esbuild/aix-ppc64@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.23.1.tgz#51299374de171dbd80bb7d838e1cfce9af36f353"
- integrity sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==
-
-"@esbuild/aix-ppc64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.0.tgz#499600c5e1757a524990d5d92601f0ac3ce87f64"
- integrity sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==
+"@esbuild/aix-ppc64@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.24.0.tgz#b57697945b50e99007b4c2521507dc613d4a648c"
+ integrity sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==
"@esbuild/aix-ppc64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.1.tgz#c33cf6bbee34975626b01b80451cbb72b4c6c91d"
integrity sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==
-"@esbuild/android-arm64@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052"
- integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==
+"@esbuild/aix-ppc64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.2.tgz#b87036f644f572efb2b3c75746c97d1d2d87ace8"
+ integrity sha512-wCIboOL2yXZym2cgm6mlA742s9QeJ8DjGVaL39dLN4rRwrOgOyYSnOaFPhKZGLb2ngj4EyfAFjsNJwPXZvseag==
-"@esbuild/android-arm64@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.23.0.tgz#453bbe079fc8d364d4c5545069e8260228559832"
- integrity sha512-EuHFUYkAVfU4qBdyivULuu03FhJO4IJN9PGuABGrFy4vUuzk91P2d+npxHcFdpUnfYKy0PuV+n6bKIpHOB3prQ==
+"@esbuild/android-arm64@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz#bafb75234a5d3d1b690e7c2956a599345e84a2fd"
+ integrity sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==
-"@esbuild/android-arm64@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.23.1.tgz#58565291a1fe548638adb9c584237449e5e14018"
- integrity sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==
-
-"@esbuild/android-arm64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.0.tgz#b9b8231561a1dfb94eb31f4ee056b92a985c324f"
- integrity sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==
+"@esbuild/android-arm64@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.24.0.tgz#1add7e0af67acefd556e407f8497e81fddad79c0"
+ integrity sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==
"@esbuild/android-arm64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.1.tgz#ea766015c7d2655164f22100d33d7f0308a28d6d"
integrity sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==
-"@esbuild/android-arm@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28"
- integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==
+"@esbuild/android-arm64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.2.tgz#5ca7dc20a18f18960ad8d5e6ef5cf7b0a256e196"
+ integrity sha512-5ZAX5xOmTligeBaeNEPnPaeEuah53Id2tX4c2CVP3JaROTH+j4fnfHCkr1PjXMd78hMst+TlkfKcW/DlTq0i4w==
-"@esbuild/android-arm@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.23.0.tgz#26c806853aa4a4f7e683e519cd9d68e201ebcf99"
- integrity sha512-+KuOHTKKyIKgEEqKbGTK8W7mPp+hKinbMBeEnNzjJGyFcWsfrXjSTNluJHCY1RqhxFurdD8uNXQDei7qDlR6+g==
+"@esbuild/android-arm@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.19.tgz#5898f7832c2298bc7d0ab53701c57beb74d78b4d"
+ integrity sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==
-"@esbuild/android-arm@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.23.1.tgz#5eb8c652d4c82a2421e3395b808e6d9c42c862ee"
- integrity sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==
-
-"@esbuild/android-arm@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.0.tgz#ca6e7888942505f13e88ac9f5f7d2a72f9facd2b"
- integrity sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==
+"@esbuild/android-arm@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.24.0.tgz#ab7263045fa8e090833a8e3c393b60d59a789810"
+ integrity sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==
"@esbuild/android-arm@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.1.tgz#e84d2bf2fe2e6177a0facda3a575b2139fd3cb9c"
integrity sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==
-"@esbuild/android-x64@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e"
- integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==
+"@esbuild/android-arm@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.2.tgz#3c49f607b7082cde70c6ce0c011c362c57a194ee"
+ integrity sha512-NQhH7jFstVY5x8CKbcfa166GoV0EFkaPkCKBQkdPJFvo5u+nGXLEH/ooniLb3QI8Fk58YAx7nsPLozUWfCBOJA==
-"@esbuild/android-x64@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.23.0.tgz#1e51af9a6ac1f7143769f7ee58df5b274ed202e6"
- integrity sha512-WRrmKidLoKDl56LsbBMhzTTBxrsVwTKdNbKDalbEZr0tcsBgCLbEtoNthOW6PX942YiYq8HzEnb4yWQMLQuipQ==
+"@esbuild/android-x64@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.19.tgz#658368ef92067866d95fb268719f98f363d13ae1"
+ integrity sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==
-"@esbuild/android-x64@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.23.1.tgz#ae19d665d2f06f0f48a6ac9a224b3f672e65d517"
- integrity sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==
-
-"@esbuild/android-x64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.0.tgz#e765ea753bac442dfc9cb53652ce8bd39d33e163"
- integrity sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==
+"@esbuild/android-x64@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.24.0.tgz#e8f8b196cfdfdd5aeaebbdb0110983460440e705"
+ integrity sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==
"@esbuild/android-x64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.1.tgz#58337bee3bc6d78d10425e5500bd11370cfdfbed"
integrity sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==
-"@esbuild/darwin-arm64@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a"
- integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==
+"@esbuild/android-x64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.2.tgz#8a00147780016aff59e04f1036e7cb1b683859e2"
+ integrity sha512-Ffcx+nnma8Sge4jzddPHCZVRvIfQ0kMsUsCMcJRHkGJ1cDmhe4SsrYIjLUKn1xpHZybmOqCWwB0zQvsjdEHtkg==
-"@esbuild/darwin-arm64@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.23.0.tgz#d996187a606c9534173ebd78c58098a44dd7ef9e"
- integrity sha512-YLntie/IdS31H54Ogdn+v50NuoWF5BDkEUFpiOChVa9UnKpftgwzZRrI4J132ETIi+D8n6xh9IviFV3eXdxfow==
+"@esbuild/darwin-arm64@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz#584c34c5991b95d4d48d333300b1a4e2ff7be276"
+ integrity sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==
-"@esbuild/darwin-arm64@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.23.1.tgz#05b17f91a87e557b468a9c75e9d85ab10c121b16"
- integrity sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==
-
-"@esbuild/darwin-arm64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.0.tgz#fa394164b0d89d4fdc3a8a21989af70ef579fa2c"
- integrity sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==
+"@esbuild/darwin-arm64@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.24.0.tgz#2d0d9414f2acbffd2d86e98253914fca603a53dd"
+ integrity sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==
"@esbuild/darwin-arm64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.1.tgz#a46805c1c585d451aa83be72500bd6e8495dd591"
integrity sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==
-"@esbuild/darwin-x64@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22"
- integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==
+"@esbuild/darwin-arm64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.2.tgz#486efe7599a8d90a27780f2bb0318d9a85c6c423"
+ integrity sha512-MpM6LUVTXAzOvN4KbjzU/q5smzryuoNjlriAIx+06RpecwCkL9JpenNzpKd2YMzLJFOdPqBpuub6eVRP5IgiSA==
-"@esbuild/darwin-x64@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.23.0.tgz#30c8f28a7ef4e32fe46501434ebe6b0912e9e86c"
- integrity sha512-IMQ6eme4AfznElesHUPDZ+teuGwoRmVuuixu7sv92ZkdQcPbsNHzutd+rAfaBKo8YK3IrBEi9SLLKWJdEvJniQ==
+"@esbuild/darwin-x64@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz#7751d236dfe6ce136cce343dce69f52d76b7f6cb"
+ integrity sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==
-"@esbuild/darwin-x64@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.23.1.tgz#c58353b982f4e04f0d022284b8ba2733f5ff0931"
- integrity sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==
-
-"@esbuild/darwin-x64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.0.tgz#91979d98d30ba6e7d69b22c617cc82bdad60e47a"
- integrity sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==
+"@esbuild/darwin-x64@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.24.0.tgz#33087aab31a1eb64c89daf3d2cf8ce1775656107"
+ integrity sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==
"@esbuild/darwin-x64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.1.tgz#0643e003bb238c63fc93ddbee7d26a003be3cd98"
integrity sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==
-"@esbuild/freebsd-arm64@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e"
- integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==
-
-"@esbuild/freebsd-arm64@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.0.tgz#30f4fcec8167c08a6e8af9fc14b66152232e7fb4"
- integrity sha512-0muYWCng5vqaxobq6LB3YNtevDFSAZGlgtLoAc81PjUfiFz36n4KMpwhtAd4he8ToSI3TGyuhyx5xmiWNYZFyw==
+"@esbuild/darwin-x64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.2.tgz#95ee222aacf668c7a4f3d7ee87b3240a51baf374"
+ integrity sha512-5eRPrTX7wFyuWe8FqEFPG2cU0+butQQVNcT4sVipqjLYQjjh8a8+vUTfgBKM88ObB85ahsnTwF7PSIt6PG+QkA==
-"@esbuild/freebsd-arm64@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.1.tgz#f9220dc65f80f03635e1ef96cfad5da1f446f3bc"
- integrity sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==
+"@esbuild/freebsd-arm64@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz#cacd171665dd1d500f45c167d50c6b7e539d5fd2"
+ integrity sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==
-"@esbuild/freebsd-arm64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.0.tgz#b97e97073310736b430a07b099d837084b85e9ce"
- integrity sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==
+"@esbuild/freebsd-arm64@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.0.tgz#bb76e5ea9e97fa3c753472f19421075d3a33e8a7"
+ integrity sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==
"@esbuild/freebsd-arm64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.1.tgz#cff18da5469c09986b93e87979de5d6872fe8f8e"
integrity sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==
-"@esbuild/freebsd-x64@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261"
- integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==
+"@esbuild/freebsd-arm64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.2.tgz#67efceda8554b6fc6a43476feba068fb37fa2ef6"
+ integrity sha512-mLwm4vXKiQ2UTSX4+ImyiPdiHjiZhIaE9QvC7sw0tZ6HoNMjYAqQpGyui5VRIi5sGd+uWq940gdCbY3VLvsO1w==
-"@esbuild/freebsd-x64@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.23.0.tgz#1003a6668fe1f5d4439e6813e5b09a92981bc79d"
- integrity sha512-XKDVu8IsD0/q3foBzsXGt/KjD/yTKBCIwOHE1XwiXmrRwrX6Hbnd5Eqn/WvDekddK21tfszBSrE/WMaZh+1buQ==
+"@esbuild/freebsd-x64@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz#0769456eee2a08b8d925d7c00b79e861cb3162e4"
+ integrity sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==
-"@esbuild/freebsd-x64@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.23.1.tgz#69bd8511fa013b59f0226d1609ac43f7ce489730"
- integrity sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==
-
-"@esbuild/freebsd-x64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.0.tgz#f3b694d0da61d9910ec7deff794d444cfbf3b6e7"
- integrity sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==
+"@esbuild/freebsd-x64@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.24.0.tgz#e0e2ce9249fdf6ee29e5dc3d420c7007fa579b93"
+ integrity sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==
"@esbuild/freebsd-x64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.1.tgz#362fc09c2de14987621c1878af19203c46365dde"
integrity sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==
-"@esbuild/linux-arm64@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b"
- integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==
-
-"@esbuild/linux-arm64@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.23.0.tgz#3b9a56abfb1410bb6c9138790f062587df3e6e3a"
- integrity sha512-j1t5iG8jE7BhonbsEg5d9qOYcVZv/Rv6tghaXM/Ug9xahM0nX/H2gfu6X6z11QRTMT6+aywOMA8TDkhPo8aCGw==
+"@esbuild/freebsd-x64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.2.tgz#88a9d7ecdd3adadbfe5227c2122d24816959b809"
+ integrity sha512-6qyyn6TjayJSwGpm8J9QYYGQcRgc90nmfdUb0O7pp1s4lTY+9D0H9O02v5JqGApUyiHOtkz6+1hZNvNtEhbwRQ==
-"@esbuild/linux-arm64@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.23.1.tgz#8050af6d51ddb388c75653ef9871f5ccd8f12383"
- integrity sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==
+"@esbuild/linux-arm64@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz#38e162ecb723862c6be1c27d6389f48960b68edb"
+ integrity sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==
-"@esbuild/linux-arm64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.0.tgz#f921f699f162f332036d5657cad9036f7a993f73"
- integrity sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==
+"@esbuild/linux-arm64@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.24.0.tgz#d1b2aa58085f73ecf45533c07c82d81235388e75"
+ integrity sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==
"@esbuild/linux-arm64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.1.tgz#aa90d5b02efc97a271e124e6d1cea490634f7498"
integrity sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==
-"@esbuild/linux-arm@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9"
- integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==
+"@esbuild/linux-arm64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.2.tgz#87be1099b2bbe61282333b084737d46bc8308058"
+ integrity sha512-gq/sjLsOyMT19I8obBISvhoYiZIAaGF8JpeXu1u8yPv8BE5HlWYobmlsfijFIZ9hIVGYkbdFhEqC0NvM4kNO0g==
-"@esbuild/linux-arm@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.23.0.tgz#237a8548e3da2c48cd79ae339a588f03d1889aad"
- integrity sha512-SEELSTEtOFu5LPykzA395Mc+54RMg1EUgXP+iw2SJ72+ooMwVsgfuwXo5Fn0wXNgWZsTVHwY2cg4Vi/bOD88qw==
+"@esbuild/linux-arm@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz#1a2cd399c50040184a805174a6d89097d9d1559a"
+ integrity sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==
-"@esbuild/linux-arm@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.23.1.tgz#ecaabd1c23b701070484990db9a82f382f99e771"
- integrity sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==
-
-"@esbuild/linux-arm@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.0.tgz#cc49305b3c6da317c900688995a4050e6cc91ca3"
- integrity sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==
+"@esbuild/linux-arm@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.24.0.tgz#8e4915df8ea3e12b690a057e77a47b1d5935ef6d"
+ integrity sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==
"@esbuild/linux-arm@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.1.tgz#dfcefcbac60a20918b19569b4b657844d39db35a"
integrity sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==
-"@esbuild/linux-ia32@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2"
- integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==
+"@esbuild/linux-arm@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.2.tgz#72a285b0fe64496e191fcad222185d7bf9f816f6"
+ integrity sha512-UHBRgJcmjJv5oeQF8EpTRZs/1knq6loLxTsjc3nxO9eXAPDLcWW55flrMVc97qFPbmZP31ta1AZVUKQzKTzb0g==
-"@esbuild/linux-ia32@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.23.0.tgz#4269cd19cb2de5de03a7ccfc8855dde3d284a238"
- integrity sha512-P7O5Tkh2NbgIm2R6x1zGJJsnacDzTFcRWZyTTMgFdVit6E98LTxO+v8LCCLWRvPrjdzXHx9FEOA8oAZPyApWUA==
+"@esbuild/linux-ia32@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz#e28c25266b036ce1cabca3c30155222841dc035a"
+ integrity sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==
-"@esbuild/linux-ia32@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.23.1.tgz#3ed2273214178109741c09bd0687098a0243b333"
- integrity sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==
-
-"@esbuild/linux-ia32@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.0.tgz#3e0736fcfab16cff042dec806247e2c76e109e19"
- integrity sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==
+"@esbuild/linux-ia32@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.24.0.tgz#8200b1110666c39ab316572324b7af63d82013fb"
+ integrity sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==
"@esbuild/linux-ia32@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.1.tgz#6f9527077ccb7953ed2af02e013d4bac69f13754"
integrity sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==
-"@esbuild/linux-loong64@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df"
- integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==
+"@esbuild/linux-ia32@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.2.tgz#337a87a4c4dd48a832baed5cbb022be20809d737"
+ integrity sha512-bBYCv9obgW2cBP+2ZWfjYTU+f5cxRoGGQ5SeDbYdFCAZpYWrfjjfYwvUpP8MlKbP0nwZ5gyOU/0aUzZ5HWPuvQ==
-"@esbuild/linux-loong64@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.23.0.tgz#82b568f5658a52580827cc891cb69d2cb4f86280"
- integrity sha512-InQwepswq6urikQiIC/kkx412fqUZudBO4SYKu0N+tGhXRWUqAx+Q+341tFV6QdBifpjYgUndV1hhMq3WeJi7A==
+"@esbuild/linux-loong64@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz#0f887b8bb3f90658d1a0117283e55dbd4c9dcf72"
+ integrity sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==
-"@esbuild/linux-loong64@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.23.1.tgz#a0fdf440b5485c81b0fbb316b08933d217f5d3ac"
- integrity sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==
-
-"@esbuild/linux-loong64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.0.tgz#ea2bf730883cddb9dfb85124232b5a875b8020c7"
- integrity sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==
+"@esbuild/linux-loong64@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.24.0.tgz#6ff0c99cf647504df321d0640f0d32e557da745c"
+ integrity sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==
"@esbuild/linux-loong64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.1.tgz#287d2412a5456e5860c2839d42a4b51284d1697c"
integrity sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==
-"@esbuild/linux-mips64el@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe"
- integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==
+"@esbuild/linux-loong64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.2.tgz#1b81aa77103d6b8a8cfa7c094ed3d25c7579ba2a"
+ integrity sha512-SHNGiKtvnU2dBlM5D8CXRFdd+6etgZ9dXfaPCeJtz+37PIUlixvlIhI23L5khKXs3DIzAn9V8v+qb1TRKrgT5w==
-"@esbuild/linux-mips64el@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.23.0.tgz#9a57386c926262ae9861c929a6023ed9d43f73e5"
- integrity sha512-J9rflLtqdYrxHv2FqXE2i1ELgNjT+JFURt/uDMoPQLcjWQA5wDKgQA4t/dTqGa88ZVECKaD0TctwsUfHbVoi4w==
+"@esbuild/linux-mips64el@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz#f5d2a0b8047ea9a5d9f592a178ea054053a70289"
+ integrity sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==
-"@esbuild/linux-mips64el@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.23.1.tgz#e11a2806346db8375b18f5e104c5a9d4e81807f6"
- integrity sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==
-
-"@esbuild/linux-mips64el@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.0.tgz#4cababb14eede09248980a2d2d8b966464294ff1"
- integrity sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==
+"@esbuild/linux-mips64el@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.24.0.tgz#3f720ccd4d59bfeb4c2ce276a46b77ad380fa1f3"
+ integrity sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==
"@esbuild/linux-mips64el@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.1.tgz#530574b9e1bc5d20f7a4f44c5f045e26f3783d57"
integrity sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==
-"@esbuild/linux-ppc64@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4"
- integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==
+"@esbuild/linux-mips64el@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.2.tgz#afbe380b6992e7459bf7c2c3b9556633b2e47f30"
+ integrity sha512-hDDRlzE6rPeoj+5fsADqdUZl1OzqDYow4TB4Y/3PlKBD0ph1e6uPHzIQcv2Z65u2K0kpeByIyAjCmjn1hJgG0Q==
-"@esbuild/linux-ppc64@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.23.0.tgz#f3a79fd636ba0c82285d227eb20ed8e31b4444f6"
- integrity sha512-cShCXtEOVc5GxU0fM+dsFD10qZ5UpcQ8AM22bYj0u/yaAykWnqXJDpd77ublcX6vdDsWLuweeuSNZk4yUxZwtw==
+"@esbuild/linux-ppc64@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz#876590e3acbd9fa7f57a2c7d86f83717dbbac8c7"
+ integrity sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==
-"@esbuild/linux-ppc64@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.23.1.tgz#06a2744c5eaf562b1a90937855b4d6cf7c75ec96"
- integrity sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==
-
-"@esbuild/linux-ppc64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.0.tgz#8860a4609914c065373a77242e985179658e1951"
- integrity sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==
+"@esbuild/linux-ppc64@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.24.0.tgz#9d6b188b15c25afd2e213474bf5f31e42e3aa09e"
+ integrity sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==
"@esbuild/linux-ppc64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.1.tgz#5d7e6b283a0b321ea42c6bc0abeb9eb99c1f5589"
integrity sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==
-"@esbuild/linux-riscv64@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc"
- integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==
+"@esbuild/linux-ppc64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.2.tgz#6bf8695cab8a2b135cca1aa555226dc932d52067"
+ integrity sha512-tsHu2RRSWzipmUi9UBDEzc0nLc4HtpZEI5Ba+Omms5456x5WaNuiG3u7xh5AO6sipnJ9r4cRWQB2tUjPyIkc6g==
-"@esbuild/linux-riscv64@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.23.0.tgz#f9d2ef8356ce6ce140f76029680558126b74c780"
- integrity sha512-HEtaN7Y5UB4tZPeQmgz/UhzoEyYftbMXrBCUjINGjh3uil+rB/QzzpMshz3cNUxqXN7Vr93zzVtpIDL99t9aRw==
+"@esbuild/linux-riscv64@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz#7f49373df463cd9f41dc34f9b2262d771688bf09"
+ integrity sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==
-"@esbuild/linux-riscv64@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.23.1.tgz#65b46a2892fc0d1af4ba342af3fe0fa4a8fe08e7"
- integrity sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==
-
-"@esbuild/linux-riscv64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.0.tgz#baf26e20bb2d38cfb86ee282dff840c04f4ed987"
- integrity sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==
+"@esbuild/linux-riscv64@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.24.0.tgz#f989fdc9752dfda286c9cd87c46248e4dfecbc25"
+ integrity sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==
"@esbuild/linux-riscv64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.1.tgz#14fa0cd073c26b4ee2465d18cd1e18eea7859fa8"
integrity sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==
-"@esbuild/linux-s390x@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de"
- integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==
+"@esbuild/linux-riscv64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.2.tgz#43c2d67a1a39199fb06ba978aebb44992d7becc3"
+ integrity sha512-k4LtpgV7NJQOml/10uPU0s4SAXGnowi5qBSjaLWMojNCUICNu7TshqHLAEbkBdAszL5TabfvQ48kK84hyFzjnw==
-"@esbuild/linux-s390x@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.23.0.tgz#45390f12e802201f38a0229e216a6aed4351dfe8"
- integrity sha512-WDi3+NVAuyjg/Wxi+o5KPqRbZY0QhI9TjrEEm+8dmpY9Xir8+HE/HNx2JoLckhKbFopW0RdO2D72w8trZOV+Wg==
+"@esbuild/linux-s390x@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz#e2afd1afcaf63afe2c7d9ceacd28ec57c77f8829"
+ integrity sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==
-"@esbuild/linux-s390x@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.23.1.tgz#e71ea18c70c3f604e241d16e4e5ab193a9785d6f"
- integrity sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==
-
-"@esbuild/linux-s390x@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.0.tgz#8323afc0d6cb1b6dc6e9fd21efd9e1542c3640a4"
- integrity sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==
+"@esbuild/linux-s390x@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.24.0.tgz#29ebf87e4132ea659c1489fce63cd8509d1c7319"
+ integrity sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==
"@esbuild/linux-s390x@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.1.tgz#e677b4b9d1b384098752266ccaa0d52a420dc1aa"
integrity sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==
-"@esbuild/linux-x64@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0"
- integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==
+"@esbuild/linux-s390x@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.2.tgz#419e25737ec815c6dce2cd20d026e347cbb7a602"
+ integrity sha512-GRa4IshOdvKY7M/rDpRR3gkiTNp34M0eLTaC1a08gNrh4u488aPhuZOCpkF6+2wl3zAN7L7XIpOFBhnaE3/Q8Q==
-"@esbuild/linux-x64@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.23.0.tgz#c8409761996e3f6db29abcf9b05bee8d7d80e910"
- integrity sha512-a3pMQhUEJkITgAw6e0bWA+F+vFtCciMjW/LPtoj99MhVt+Mfb6bbL9hu2wmTZgNd994qTAEw+U/r6k3qHWWaOQ==
+"@esbuild/linux-x64@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz#8a0e9738b1635f0c53389e515ae83826dec22aa4"
+ integrity sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==
-"@esbuild/linux-x64@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.23.1.tgz#d47f97391e80690d4dfe811a2e7d6927ad9eed24"
- integrity sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==
-
-"@esbuild/linux-x64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.0.tgz#08fcf60cb400ed2382e9f8e0f5590bac8810469a"
- integrity sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==
+"@esbuild/linux-x64@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.24.0.tgz#4af48c5c0479569b1f359ffbce22d15f261c0cef"
+ integrity sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==
"@esbuild/linux-x64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.1.tgz#f1c796b78fff5ce393658313e8c58613198d9954"
integrity sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==
-"@esbuild/netbsd-arm64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.0.tgz#935c6c74e20f7224918fbe2e6c6fe865b6c6ea5b"
- integrity sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==
+"@esbuild/linux-x64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.2.tgz#22451f6edbba84abe754a8cbd8528ff6e28d9bcb"
+ integrity sha512-QInHERlqpTTZ4FRB0fROQWXcYRD64lAoiegezDunLpalZMjcUcld3YzZmVJ2H/Cp0wJRZ8Xtjtj0cEHhYc/uUg==
"@esbuild/netbsd-arm64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.1.tgz#0d280b7dfe3973f111b02d5fe9f3063b92796d29"
integrity sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==
-"@esbuild/netbsd-x64@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047"
- integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==
+"@esbuild/netbsd-arm64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.2.tgz#744affd3b8d8236b08c5210d828b0698a62c58ac"
+ integrity sha512-talAIBoY5M8vHc6EeI2WW9d/CkiO9MQJ0IOWX8hrLhxGbro/vBXJvaQXefW2cP0z0nQVTdQ/eNyGFV1GSKrxfw==
-"@esbuild/netbsd-x64@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.23.0.tgz#ba70db0114380d5f6cfb9003f1d378ce989cd65c"
- integrity sha512-cRK+YDem7lFTs2Q5nEv/HHc4LnrfBCbH5+JHu6wm2eP+d8OZNoSMYgPZJq78vqQ9g+9+nMuIsAO7skzphRXHyw==
+"@esbuild/netbsd-x64@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz#c29fb2453c6b7ddef9a35e2c18b37bda1ae5c462"
+ integrity sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==
-"@esbuild/netbsd-x64@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.23.1.tgz#44e743c9778d57a8ace4b72f3c6b839a3b74a653"
- integrity sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==
-
-"@esbuild/netbsd-x64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.0.tgz#414677cef66d16c5a4d210751eb2881bb9c1b62b"
- integrity sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==
+"@esbuild/netbsd-x64@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.24.0.tgz#1ae73d23cc044a0ebd4f198334416fb26c31366c"
+ integrity sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==
"@esbuild/netbsd-x64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.1.tgz#be663893931a4bb3f3a009c5cc24fa9681cc71c0"
integrity sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==
-"@esbuild/openbsd-arm64@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.0.tgz#72fc55f0b189f7a882e3cf23f332370d69dfd5db"
- integrity sha512-suXjq53gERueVWu0OKxzWqk7NxiUWSUlrxoZK7usiF50C6ipColGR5qie2496iKGYNLhDZkPxBI3erbnYkU0rQ==
+"@esbuild/netbsd-x64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.2.tgz#dbbe7521fd6d7352f34328d676af923fc0f8a78f"
+ integrity sha512-voZT9Z+tpOxrvfKFyfDYPc4DO4rk06qamv1a/fkuzHpiVBMOhpjK+vBmWM8J1eiB3OLSMFYNaOaBNLXGChf5tg==
-"@esbuild/openbsd-arm64@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.1.tgz#05c5a1faf67b9881834758c69f3e51b7dee015d7"
- integrity sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==
-
-"@esbuild/openbsd-arm64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.0.tgz#8fd55a4d08d25cdc572844f13c88d678c84d13f7"
- integrity sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==
+"@esbuild/openbsd-arm64@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.0.tgz#5d904a4f5158c89859fd902c427f96d6a9e632e2"
+ integrity sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==
"@esbuild/openbsd-arm64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.1.tgz#d9021b884233673a05dc1cc26de0bf325d824217"
integrity sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==
-"@esbuild/openbsd-x64@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70"
- integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==
+"@esbuild/openbsd-arm64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.2.tgz#f9caf987e3e0570500832b487ce3039ca648ce9f"
+ integrity sha512-dcXYOC6NXOqcykeDlwId9kB6OkPUxOEqU+rkrYVqJbK2hagWOMrsTGsMr8+rW02M+d5Op5NNlgMmjzecaRf7Tg==
-"@esbuild/openbsd-x64@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.23.0.tgz#b6ae7a0911c18fe30da3db1d6d17a497a550e5d8"
- integrity sha512-6p3nHpby0DM/v15IFKMjAaayFhqnXV52aEmv1whZHX56pdkK+MEaLoQWj+H42ssFarP1PcomVhbsR4pkz09qBg==
+"@esbuild/openbsd-x64@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz#95e75a391403cb10297280d524d66ce04c920691"
+ integrity sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==
-"@esbuild/openbsd-x64@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.23.1.tgz#2e58ae511bacf67d19f9f2dcd9e8c5a93f00c273"
- integrity sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==
-
-"@esbuild/openbsd-x64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.0.tgz#0c48ddb1494bbc2d6bcbaa1429a7f465fa1dedde"
- integrity sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==
+"@esbuild/openbsd-x64@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.24.0.tgz#4c8aa88c49187c601bae2971e71c6dc5e0ad1cdf"
+ integrity sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==
"@esbuild/openbsd-x64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.1.tgz#9f1dc1786ed2e2938c404b06bcc48be9a13250de"
integrity sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==
-"@esbuild/sunos-x64@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b"
- integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==
+"@esbuild/openbsd-x64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.2.tgz#d2bb6a0f8ffea7b394bb43dfccbb07cabd89f768"
+ integrity sha512-t/TkWwahkH0Tsgoq1Ju7QfgGhArkGLkF1uYz8nQS/PPFlXbP5YgRpqQR3ARRiC2iXoLTWFxc6DJMSK10dVXluw==
-"@esbuild/sunos-x64@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.23.0.tgz#58f0d5e55b9b21a086bfafaa29f62a3eb3470ad8"
- integrity sha512-BFelBGfrBwk6LVrmFzCq1u1dZbG4zy/Kp93w2+y83Q5UGYF1d8sCzeLI9NXjKyujjBBniQa8R8PzLFAUrSM9OA==
+"@esbuild/sunos-x64@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz#722eaf057b83c2575937d3ffe5aeb16540da7273"
+ integrity sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==
-"@esbuild/sunos-x64@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.23.1.tgz#adb022b959d18d3389ac70769cef5a03d3abd403"
- integrity sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==
-
-"@esbuild/sunos-x64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.0.tgz#86ff9075d77962b60dd26203d7352f92684c8c92"
- integrity sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==
+"@esbuild/sunos-x64@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.24.0.tgz#8ddc35a0ea38575fa44eda30a5ee01ae2fa54dd4"
+ integrity sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==
"@esbuild/sunos-x64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.1.tgz#89aac24a4b4115959b3f790192cf130396696c27"
integrity sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==
-"@esbuild/win32-arm64@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d"
- integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==
+"@esbuild/sunos-x64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.2.tgz#49b437ed63fe333b92137b7a0c65a65852031afb"
+ integrity sha512-cfZH1co2+imVdWCjd+D1gf9NjkchVhhdpgb1q5y6Hcv9TP6Zi9ZG/beI3ig8TvwT9lH9dlxLq5MQBBgwuj4xvA==
-"@esbuild/win32-arm64@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.23.0.tgz#b858b2432edfad62e945d5c7c9e5ddd0f528ca6d"
- integrity sha512-lY6AC8p4Cnb7xYHuIxQ6iYPe6MfO2CC43XXKo9nBXDb35krYt7KGhQnOkRGar5psxYkircpCqfbNDB4uJbS2jQ==
+"@esbuild/win32-arm64@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz#9aa9dc074399288bdcdd283443e9aeb6b9552b6f"
+ integrity sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==
-"@esbuild/win32-arm64@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.23.1.tgz#84906f50c212b72ec360f48461d43202f4c8b9a2"
- integrity sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==
-
-"@esbuild/win32-arm64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.0.tgz#849c62327c3229467f5b5cd681bf50588442e96c"
- integrity sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==
+"@esbuild/win32-arm64@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.24.0.tgz#6e79c8543f282c4539db684a207ae0e174a9007b"
+ integrity sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==
"@esbuild/win32-arm64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.1.tgz#354358647a6ea98ea6d243bf48bdd7a434999582"
integrity sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==
-"@esbuild/win32-ia32@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b"
- integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==
+"@esbuild/win32-arm64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.2.tgz#081424168463c7d6c7fb78f631aede0c104373cf"
+ integrity sha512-7Loyjh+D/Nx/sOTzV8vfbB3GJuHdOQyrOryFdZvPHLf42Tk9ivBU5Aedi7iyX+x6rbn2Mh68T4qq1SDqJBQO5Q==
-"@esbuild/win32-ia32@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.23.0.tgz#167ef6ca22a476c6c0c014a58b4f43ae4b80dec7"
- integrity sha512-7L1bHlOTcO4ByvI7OXVI5pNN6HSu6pUQq9yodga8izeuB1KcT2UkHaH6118QJwopExPn0rMHIseCTx1CRo/uNA==
+"@esbuild/win32-ia32@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz#95ad43c62ad62485e210f6299c7b2571e48d2b03"
+ integrity sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==
-"@esbuild/win32-ia32@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.23.1.tgz#5e3eacc515820ff729e90d0cb463183128e82fac"
- integrity sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==
-
-"@esbuild/win32-ia32@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.0.tgz#f62eb480cd7cca088cb65bb46a6db25b725dc079"
- integrity sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==
+"@esbuild/win32-ia32@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.24.0.tgz#057af345da256b7192d18b676a02e95d0fa39103"
+ integrity sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==
"@esbuild/win32-ia32@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.1.tgz#8cea7340f2647eba951a041dc95651e3908cd4cb"
integrity sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==
-"@esbuild/win32-x64@0.21.5":
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c"
- integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==
-
-"@esbuild/win32-x64@0.23.0":
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.23.0.tgz#db44a6a08520b5f25bbe409f34a59f2d4bcc7ced"
- integrity sha512-Arm+WgUFLUATuoxCJcahGuk6Yj9Pzxd6l11Zb/2aAuv5kWWvvfhLFo2fni4uSK5vzlUdCGZ/BdV5tH8klj8p8g==
+"@esbuild/win32-ia32@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.2.tgz#3f9e87143ddd003133d21384944a6c6cadf9693f"
+ integrity sha512-WRJgsz9un0nqZJ4MfhabxaD9Ft8KioqU3JMinOTvobbX6MOSUigSBlogP8QB3uxpJDsFS6yN+3FDBdqE5lg9kg==
-"@esbuild/win32-x64@0.23.1":
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.23.1.tgz#81fd50d11e2c32b2d6241470e3185b70c7b30699"
- integrity sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==
+"@esbuild/win32-x64@0.17.19":
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz#8cfaf2ff603e9aabb910e9c0558c26cf32744061"
+ integrity sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==
-"@esbuild/win32-x64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.0.tgz#c8e119a30a7c8d60b9d2e22d2073722dde3b710b"
- integrity sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==
+"@esbuild/win32-x64@0.24.0":
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.24.0.tgz#168ab1c7e1c318b922637fad8f339d48b01e1244"
+ integrity sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==
"@esbuild/win32-x64@0.25.1":
version "0.25.1"
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.1.tgz#7d79922cb2d88f9048f06393dbf62d2e4accb584"
integrity sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==
+"@esbuild/win32-x64@0.25.2":
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.2.tgz#839f72c2decd378f86b8f525e1979a97b920c67d"
+ integrity sha512-kM3HKb16VIXZyIeVrM1ygYmZBKybX8N4p754bw390wGO3Tf2j4L2/WYL+4suWujpgf6GBYs3jv7TyUivdd05JA==
+
"@eslint-community/eslint-utils@^4.4.0":
version "4.4.1"
resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz#d1145bf2c20132d6400495d6df4bf59362fd9d56"
@@ -4463,9 +4531,9 @@
eslint-visitor-keys "^3.4.3"
"@faker-js/faker@^9.3.0":
- version "9.6.0"
- resolved "https://registry.yarnpkg.com/@faker-js/faker/-/faker-9.6.0.tgz#64235d20330b142eef3d1d1638ba56c083b4bf1d"
- integrity sha512-3vm4by+B5lvsFPSyep3ELWmZfE3kicDtmemVpuwl1yH7tqtnHdsA6hG8fbXedMVdkzgtvzWoRgjSB4Q+FHnZiw==
+ version "9.4.0"
+ resolved "https://registry.yarnpkg.com/@faker-js/faker/-/faker-9.4.0.tgz#3e85604df3a318729436677565e9433d964276d2"
+ integrity sha512-85+k0AxaZSTowL0gXp8zYWDIrWclTbRPg/pm/V0dSFZ6W6D4lhcG3uuZl4zLsEKfEvs69xDbLN2cHQudwp95JA==
"@fastify/swagger@^9.4.0":
version "9.4.2"
@@ -4516,13 +4584,13 @@
resolved "https://registry.yarnpkg.com/@foliojs-fork/restructure/-/restructure-2.0.2.tgz#73759aba2aff1da87b7c4554e6839c70d43c92b4"
integrity sha512-59SgoZ3EXbkfSX7b63tsou/SDGzwUEK6MuB5sKqgVK1/XE0fxmpsOb9DQI8LXW3KfGnAjImCGhhEb7uPPAUVNA==
-"@fortawesome/angular-fontawesome@^0.15.0":
- version "0.15.0"
- resolved "https://registry.yarnpkg.com/@fortawesome/angular-fontawesome/-/angular-fontawesome-0.15.0.tgz#e1677da6e5ff0a567dcfb75b282ccd3083df3ad7"
- integrity sha512-oxmJDYGNSym5ycFR0LX4ZOPAU+wWmMAznYpkm5DNAtWWkhMLcrZl15eZQmVIEE+qruQ7JiVrg3tpo8bEkFlDgw==
+"@fortawesome/angular-fontawesome@^1.0.0":
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/@fortawesome/angular-fontawesome/-/angular-fontawesome-1.0.0.tgz#bfb03a45aca22d446f1cc0d4be85490257eecc05"
+ integrity sha512-EC2fYuXIuw2ld1kzJi+zysWus6OeGGfLQtbh0hW9zyyq5aBo8ZJkcJKBsVQ8E6Mg7nHyTWaXn+sdcXTPDWz+UQ==
dependencies:
- "@fortawesome/fontawesome-svg-core" "^6.5.2"
- tslib "^2.6.2"
+ "@fortawesome/fontawesome-svg-core" "^6.7.1"
+ tslib "^2.8.1"
"@fortawesome/fontawesome-common-types@6.7.2":
version "6.7.2"
@@ -4534,7 +4602,7 @@
resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-6.7.2.tgz#8249de9b7e22fcb3ceb5e66090c30a1d5492b81a"
integrity sha512-JUOtgFW6k9u4Y+xeIaEiLr3+cjoUPiAuLXoyKOJSia6Duzb7pq+A76P9ZdPDoAoxHdHzq6gE9/jKBGXlZT8FbA==
-"@fortawesome/fontawesome-svg-core@^6.5.2", "@fortawesome/fontawesome-svg-core@^6.7.2":
+"@fortawesome/fontawesome-svg-core@^6.7.1", "@fortawesome/fontawesome-svg-core@^6.7.2":
version "6.7.2"
resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.7.2.tgz#0ac6013724d5cc327c1eb81335b91300a4fce2f2"
integrity sha512-yxtOBWDrdi5DD5o1pmVdq3WMCvnobT0LU6R8RyyVXPvFRd2o79/0NCuQoCjNTeZz9EzA9xS3JxNWfv54RIHFEA==
@@ -4562,31 +4630,48 @@
dependencies:
"@fortawesome/fontawesome-common-types" "6.7.2"
-"@fullcalendar/angular@^6.1.15":
- version "6.1.16"
- resolved "https://registry.yarnpkg.com/@fullcalendar/angular/-/angular-6.1.16.tgz#2850e5a4fcd67d05ca3dea7a078d8c283f6776ed"
- integrity sha512-Qqs0MZPlIDretmWgtOr0H+uiLO6DKeqxqH1Y2oeWufwEbQTaAxhH7mivdTmxL596JkiuJ/1dhCm+v4tVbFb40w==
+"@fullcalendar/angular@^6.1.17":
+ version "6.1.17"
+ resolved "https://registry.yarnpkg.com/@fullcalendar/angular/-/angular-6.1.17.tgz#6e4e961aa05961ad9415545462c1198c7fad2541"
+ integrity sha512-1XSiT62/KItFZCtecuqcxd0mxctQQcJuJbXfLFPjGG9Ycz6+af+bC0Ch89W+uYSPkGrmk7tczELouckJLSJm2Q==
dependencies:
tslib "^2.3.0"
-"@fullcalendar/bootstrap@^6.1.15":
- version "6.1.15"
- resolved "https://registry.yarnpkg.com/@fullcalendar/bootstrap/-/bootstrap-6.1.15.tgz#798219a0e01f97c1a361b7c3ec32ffb0e0239186"
- integrity sha512-mlUmwtatxtMwWRrpDJgurBBE0L8aD3DFk24LqugSI5zhQIGp0fTm0QI7oiVczbyQKQCCi/nxl1aDNOCKES0xxw==
+"@fullcalendar/bootstrap@^6.1.17":
+ version "6.1.17"
+ resolved "https://registry.yarnpkg.com/@fullcalendar/bootstrap/-/bootstrap-6.1.17.tgz#dc7fc0ce15387ce36d4fc20ef2ffb409e7408fb4"
+ integrity sha512-8oGlepD17TEx+D7HqCKCoH1P19yDDbMaLBjuV3fW3XsYCqVZ3uGHcXSVHr7Jw/GzWB05vKiU/+CVXFmApltrsQ==
+
+"@fullcalendar/core@^6.1.17":
+ version "6.1.17"
+ resolved "https://registry.yarnpkg.com/@fullcalendar/core/-/core-6.1.17.tgz#faaffa100f020636a9b4c900462bdc6d652b58ef"
+ integrity sha512-0W7lnIrv18ruJ5zeWBeNZXO8qCWlzxDdp9COFEsZnyNjiEhUVnrW/dPbjRKYpL0edGG0/Lhs0ghp1z/5ekt8ZA==
+ dependencies:
+ preact "~10.12.1"
-"@fullcalendar/core@^6.1.15", "@fullcalendar/core@~6.1.15":
+"@fullcalendar/core@~6.1.15":
version "6.1.15"
resolved "https://registry.yarnpkg.com/@fullcalendar/core/-/core-6.1.15.tgz#6c3f5259fc4589870228853072131219bb533f6e"
integrity sha512-BuX7o6ALpLb84cMw1FCB9/cSgF4JbVO894cjJZ6kP74jzbUZNjtwffwRdA+Id8rrLjT30d/7TrkW90k4zbXB5Q==
dependencies:
preact "~10.12.1"
-"@fullcalendar/daygrid@^6.1.15", "@fullcalendar/daygrid@~6.1.15":
+"@fullcalendar/daygrid@^6.1.17", "@fullcalendar/daygrid@~6.1.17":
+ version "6.1.17"
+ resolved "https://registry.yarnpkg.com/@fullcalendar/daygrid/-/daygrid-6.1.17.tgz#3ff9d8d99da872631b661bf9ca5a47ed849421cf"
+ integrity sha512-K7m+pd7oVJ9fW4h7CLDdDGJbc9szJ1xDU1DZ2ag+7oOo1aCNLv44CehzkkknM6r8EYlOOhgaelxQpKAI4glj7A==
+
+"@fullcalendar/daygrid@~6.1.15":
version "6.1.15"
resolved "https://registry.yarnpkg.com/@fullcalendar/daygrid/-/daygrid-6.1.15.tgz#91208b0955ba805ddad285a53ee6f53855146963"
integrity sha512-j8tL0HhfiVsdtOCLfzK2J0RtSkiad3BYYemwQKq512cx6btz6ZZ2RNc/hVnIxluuWFyvx5sXZwoeTJsFSFTEFA==
-"@fullcalendar/interaction@^6.1.15", "@fullcalendar/interaction@~6.1.15":
+"@fullcalendar/interaction@^6.1.17":
+ version "6.1.17"
+ resolved "https://registry.yarnpkg.com/@fullcalendar/interaction/-/interaction-6.1.17.tgz#f0d14cb6f6c3cb7e2b20299dfb39a866232e2976"
+ integrity sha512-AudvQvgmJP2FU89wpSulUUjeWv24SuyCx8FzH2WIPVaYg+vDGGYarI7K6PcM3TH7B/CyaBjm5Rqw9lXgnwt5YA==
+
+"@fullcalendar/interaction@~6.1.15":
version "6.1.15"
resolved "https://registry.yarnpkg.com/@fullcalendar/interaction/-/interaction-6.1.15.tgz#1c685d5c269388d4877b75ab2185e97d7c386cc7"
integrity sha512-DOTSkofizM7QItjgu7W68TvKKvN9PSEEvDJceyMbQDvlXHa7pm/WAVtAc6xSDZ9xmB1QramYoWGLHkCYbTW1rQ==
@@ -4596,10 +4681,10 @@
resolved "https://registry.yarnpkg.com/@fullcalendar/list/-/list-6.1.15.tgz#d9b7ff0a50d7efa0d31234ed6caea06db6090c29"
integrity sha512-U1bce04tYDwkFnuVImJSy2XalYIIQr6YusOWRPM/5ivHcJh67Gm8CIMSWpi3KdRSNKFkqBxLPkfZGBMaOcJYug==
-"@fullcalendar/moment-timezone@^6.1.15":
- version "6.1.15"
- resolved "https://registry.yarnpkg.com/@fullcalendar/moment-timezone/-/moment-timezone-6.1.15.tgz#3dd21fc07030dc0f6d92159b403928cdff79085d"
- integrity sha512-hXPhI/HeSF1dXWD4WUJ2+2B0b4aNuw6/jCRoUQ2k58ye8rNVBlUglLTKQa+SZLw0q6Fpk0lUCu9q0RcxbbbfEA==
+"@fullcalendar/moment-timezone@^6.1.17":
+ version "6.1.17"
+ resolved "https://registry.yarnpkg.com/@fullcalendar/moment-timezone/-/moment-timezone-6.1.17.tgz#4bbdd6b64a64f94a781283c7dc6cfd0b6f9b94d4"
+ integrity sha512-MEtuZSkXDuPRc5xpr8TmNxp+vB/rZROm82miGkA1MyzUQT+HrIA9iFvuIUi6XXGgUGb4Av2kxRfk6tgOKjTm0g==
"@fullcalendar/multimonth@~6.1.15":
version "6.1.15"
@@ -4608,7 +4693,14 @@
dependencies:
"@fullcalendar/daygrid" "~6.1.15"
-"@fullcalendar/timegrid@^6.1.15", "@fullcalendar/timegrid@~6.1.15":
+"@fullcalendar/timegrid@^6.1.17":
+ version "6.1.17"
+ resolved "https://registry.yarnpkg.com/@fullcalendar/timegrid/-/timegrid-6.1.17.tgz#c88f19a1417ca314545d28a2fe23b33330e086dd"
+ integrity sha512-K4PlA3L3lclLOs3IX8cvddeiJI9ZVMD7RA9IqaWwbvac771971foc9tFze9YY+Pqesf6S+vhS2dWtEVlERaGlQ==
+ dependencies:
+ "@fullcalendar/daygrid" "~6.1.17"
+
+"@fullcalendar/timegrid@~6.1.15":
version "6.1.15"
resolved "https://registry.yarnpkg.com/@fullcalendar/timegrid/-/timegrid-6.1.15.tgz#c4630b7c03c813065154c6e3981f8d51d9d692e5"
integrity sha512-61ORr3A148RtxQ2FNG7JKvacyA/TEVZ7z6I+3E9Oeu3dqTf6M928bFcpehRTIK6zIA6Yifs7BeWHgOE9dFnpbw==
@@ -4643,12 +4735,12 @@
"@graphql-tools/utils" "^9.2.1"
tslib "^2.4.0"
-"@graphql-tools/merge@^9.0.11", "@graphql-tools/merge@^9.0.22":
- version "9.0.22"
- resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-9.0.22.tgz#f8d316604360021c71d8a9397784f4eb178741fe"
- integrity sha512-bjOs9DlTbo1Yz2UzQcJ78Dn9/pKyY2zNaoqNLfRTTSkO56QFkvqhfjQuqJcqu+V3rtaB2o0VMpWaY6JT8ZTvQA==
+"@graphql-tools/merge@^9.0.11", "@graphql-tools/merge@^9.0.17":
+ version "9.0.17"
+ resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-9.0.17.tgz#57c98b74d6553fb0c053d4a121405d6088e119b6"
+ integrity sha512-3K4g8KKbIqfdmK0L5+VtZsqwAeElPkvT5ejiH+KEhn2wyKNCi4HYHxpQk8xbu+dSwLlm9Lhet1hylpo/mWCkuQ==
dependencies:
- "@graphql-tools/utils" "^10.8.4"
+ "@graphql-tools/utils" "^10.7.2"
tslib "^2.4.0"
"@graphql-tools/schema@10.0.10":
@@ -4661,14 +4753,15 @@
tslib "^2.4.0"
value-or-promise "^1.0.12"
-"@graphql-tools/schema@^10.0.21":
- version "10.0.21"
- resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-10.0.21.tgz#197584222c2fba507dfacf26dce96b0b1f67b746"
- integrity sha512-AECSlNnD0WNxICwfJs93gYn2oHxPmztn1MYBETIQXrJJcymfD6BoUrDlYPa6F27RzRc+gbPZPHMWL26uujfKBg==
+"@graphql-tools/schema@^10.0.16":
+ version "10.0.16"
+ resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-10.0.16.tgz#82b82f9193e708fc0d34f9f3ba80ccc7a057aefa"
+ integrity sha512-G2zgb8hNg9Sx6Z2FSXm57ToNcwMls9A9cUm+EsCrnGGDsryzN5cONYePUpSGj5NCFivVp3o1FT5dg19P/1qeqQ==
dependencies:
- "@graphql-tools/merge" "^9.0.22"
- "@graphql-tools/utils" "^10.8.4"
+ "@graphql-tools/merge" "^9.0.17"
+ "@graphql-tools/utils" "^10.7.2"
tslib "^2.4.0"
+ value-or-promise "^1.0.12"
"@graphql-tools/schema@^9.0.0":
version "9.0.19"
@@ -4690,13 +4783,12 @@
dset "^3.1.2"
tslib "^2.4.0"
-"@graphql-tools/utils@^10.6.1", "@graphql-tools/utils@^10.8.4":
- version "10.8.4"
- resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-10.8.4.tgz#59dc5ea949e26c6bae28b91ad9f5c00e992de072"
- integrity sha512-HpHBgcmLIE79jWk1v5Bm0Eb8MaPiwSJT/Iy5xIJ+GMe7yAKpCYrbjf7wb+UMDMkLkfEryvo3syCx8k+TMAZ9bA==
+"@graphql-tools/utils@^10.6.1", "@graphql-tools/utils@^10.7.2":
+ version "10.7.2"
+ resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-10.7.2.tgz#feafb7be9211570037288f5a3cadab76de41a097"
+ integrity sha512-Wn85S+hfkzfVFpXVrQ0hjnePa3p28aB6IdAGCiD1SqBCSMDRzL+OFEtyAyb30nV9Mqflqs9lCqjqlR2puG857Q==
dependencies:
"@graphql-typed-document-node/core" "^3.1.1"
- "@whatwg-node/promise-helpers" "^1.0.0"
cross-inspect "1.0.1"
dset "^3.1.4"
tslib "^2.4.0"
@@ -4715,9 +4807,9 @@
integrity sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==
"@grpc/grpc-js@^1.6.7", "@grpc/grpc-js@^1.7.1", "@grpc/grpc-js@^1.7.3":
- version "1.12.6"
- resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.12.6.tgz#a3586ffdfb6a1f5cd5b4866dec9074c4a1e65472"
- integrity sha512-JXUj6PI0oqqzTGvKtzOkxtpsyPRNsrmhh41TtIz/zEB6J+AUiZZ0dxWzcMwO9Ns5rmSPuMdghlTbUuqIM48d3Q==
+ version "1.12.5"
+ resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.12.5.tgz#0064a28fe9b1ec54ac27e1c9bf70720aa01285e8"
+ integrity sha512-d3iiHxdpg5+ZcJ6jnDSOT8Z0O0VMVGy34jAnYLUX8yd36b1qn8f1TwOA/Lc7TsOh03IkPJ38eGI5qD2EjNkoEA==
dependencies:
"@grpc/proto-loader" "^0.7.13"
"@js-sdsl/ordered-map" "^4.4.2"
@@ -4923,18 +5015,7 @@
resolved "https://registry.yarnpkg.com/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz#56f00962ff0c4e0eb93d34a047d29fa995e3e342"
integrity sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==
-"@inquirer/checkbox@^2.4.7":
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/@inquirer/checkbox/-/checkbox-2.5.0.tgz#41c5c9dd332c0a8fa159be23982ce080d0b199d4"
- integrity sha512-sMgdETOfi2dUHT8r7TT1BTKOwNvdDGFDXYWtQ2J69SvlYNntk9I/gJe7r5yvMwwsuKnYbuRs3pNhx4tgNck5aA==
- dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/figures" "^1.0.5"
- "@inquirer/type" "^1.5.3"
- ansi-escapes "^4.3.2"
- yoctocolors-cjs "^2.1.2"
-
-"@inquirer/checkbox@^4.1.5":
+"@inquirer/checkbox@^4.1.2", "@inquirer/checkbox@^4.1.5":
version "4.1.5"
resolved "https://registry.yarnpkg.com/@inquirer/checkbox/-/checkbox-4.1.5.tgz#891bb32ca98eb6ee2889f71d79722705e2241161"
integrity sha512-swPczVU+at65xa5uPfNP9u3qx/alNwiaykiI/ExpsmMSQW55trmZcwhYWzw/7fj+n6Q8z1eENvR7vFfq9oPSAQ==
@@ -4945,23 +5026,15 @@
ansi-escapes "^4.3.2"
yoctocolors-cjs "^2.1.2"
-"@inquirer/confirm@3.1.22":
- version "3.1.22"
- resolved "https://registry.yarnpkg.com/@inquirer/confirm/-/confirm-3.1.22.tgz#23990624c11f60c6f7a5b0558c7505c35076a037"
- integrity sha512-gsAKIOWBm2Q87CDfs9fEo7wJT3fwWIJfnDGMn9Qy74gBnNFOACDNfhUzovubbJjWnKLGBln7/NcSmZwj5DuEXg==
- dependencies:
- "@inquirer/core" "^9.0.10"
- "@inquirer/type" "^1.5.2"
-
-"@inquirer/confirm@^3.1.22":
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/@inquirer/confirm/-/confirm-3.2.0.tgz#6af1284670ea7c7d95e3f1253684cfbd7228ad6a"
- integrity sha512-oOIwPs0Dvq5220Z8lGL/6LHRTEr9TgLHmiI99Rj1PJ1p1czTys+olrgBqZk4E2qC0YTzeHprxSQmoHioVdJ7Lw==
+"@inquirer/confirm@5.1.6":
+ version "5.1.6"
+ resolved "https://registry.yarnpkg.com/@inquirer/confirm/-/confirm-5.1.6.tgz#e5a959676716860c26560b33997b38bd65bf96ad"
+ integrity sha512-6ZXYK3M1XmaVBZX6FCfChgtponnL0R6I7k8Nu+kaoNkT828FVZTcca1MqmWQipaW2oNREQl5AaPCUOOCVNdRMw==
dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/type" "^1.5.3"
+ "@inquirer/core" "^10.1.7"
+ "@inquirer/type" "^3.0.4"
-"@inquirer/confirm@^5.1.9":
+"@inquirer/confirm@^5.1.6", "@inquirer/confirm@^5.1.9":
version "5.1.9"
resolved "https://registry.yarnpkg.com/@inquirer/confirm/-/confirm-5.1.9.tgz#c858b6a3decb458241ec36ca9a9117477338076a"
integrity sha512-NgQCnHqFTjF7Ys2fsqK2WtnA8X1kHyInyG+nMIuHowVTIgIuS10T4AznI/PvbqSpJqjCUqNBlKGh1v3bwLFL4w==
@@ -4969,7 +5042,7 @@
"@inquirer/core" "^10.1.10"
"@inquirer/type" "^3.0.6"
-"@inquirer/core@^10.1.10":
+"@inquirer/core@^10.1.10", "@inquirer/core@^10.1.7":
version "10.1.10"
resolved "https://registry.yarnpkg.com/@inquirer/core/-/core-10.1.10.tgz#222a374e3768536a1eb0adf7516c436d5f4a291d"
integrity sha512-roDaKeY1PYY0aCqhRmXihrHjoSW2A00pV3Ke5fTpMCkzcGF64R8e0lw3dK+eLEHwS4vB5RnW1wuQmvzoRul8Mw==
@@ -4983,34 +5056,7 @@
wrap-ansi "^6.2.0"
yoctocolors-cjs "^2.1.2"
-"@inquirer/core@^9.0.10", "@inquirer/core@^9.1.0":
- version "9.2.1"
- resolved "https://registry.yarnpkg.com/@inquirer/core/-/core-9.2.1.tgz#677c49dee399c9063f31e0c93f0f37bddc67add1"
- integrity sha512-F2VBt7W/mwqEU4bL0RnHNZmC/OxzNx9cOYxHqnXX3MP6ruYvZUZAW9imgN9+h/uBT/oP8Gh888J2OZSbjSeWcg==
- dependencies:
- "@inquirer/figures" "^1.0.6"
- "@inquirer/type" "^2.0.0"
- "@types/mute-stream" "^0.0.4"
- "@types/node" "^22.5.5"
- "@types/wrap-ansi" "^3.0.0"
- ansi-escapes "^4.3.2"
- cli-width "^4.1.0"
- mute-stream "^1.0.0"
- signal-exit "^4.1.0"
- strip-ansi "^6.0.1"
- wrap-ansi "^6.2.0"
- yoctocolors-cjs "^2.1.2"
-
-"@inquirer/editor@^2.1.22":
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/@inquirer/editor/-/editor-2.2.0.tgz#a41eb7b151bd9a6bc3c0b69219d02d82547bc387"
- integrity sha512-9KHOpJ+dIL5SZli8lJ6xdaYLPPzB8xB9GZItg39MBybzhxA16vxmszmQFrRwbOA918WA2rvu8xhDEg/p6LXKbw==
- dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/type" "^1.5.3"
- external-editor "^3.1.0"
-
-"@inquirer/editor@^4.2.10":
+"@inquirer/editor@^4.2.10", "@inquirer/editor@^4.2.7":
version "4.2.10"
resolved "https://registry.yarnpkg.com/@inquirer/editor/-/editor-4.2.10.tgz#45e399313ee857857248bd539b8e832aa0fb60b3"
integrity sha512-5GVWJ+qeI6BzR6TIInLP9SXhWCEcvgFQYmcRG6d6RIlhFjM5TyG18paTGBgRYyEouvCmzeco47x9zX9tQEofkw==
@@ -5019,16 +5065,7 @@
"@inquirer/type" "^3.0.6"
external-editor "^3.1.0"
-"@inquirer/expand@^2.1.22":
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/@inquirer/expand/-/expand-2.3.0.tgz#afc44aee303315a85563e9d0275e658f0ee0e701"
- integrity sha512-qnJsUcOGCSG1e5DTOErmv2BPQqrtT6uzqn1vI/aYGiPKq+FgslGZmtdnXbhuI7IlT7OByDoEEqdnhUnVR2hhLw==
- dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/type" "^1.5.3"
- yoctocolors-cjs "^2.1.2"
-
-"@inquirer/expand@^4.0.12":
+"@inquirer/expand@^4.0.12", "@inquirer/expand@^4.0.9":
version "4.0.12"
resolved "https://registry.yarnpkg.com/@inquirer/expand/-/expand-4.0.12.tgz#1e4554f509a435f966e2b91395a503d77df35c17"
integrity sha512-jV8QoZE1fC0vPe6TnsOfig+qwu7Iza1pkXoUJ3SroRagrt2hxiL+RbM432YAihNR7m7XnU0HWl/WQ35RIGmXHw==
@@ -5037,20 +5074,12 @@
"@inquirer/type" "^3.0.6"
yoctocolors-cjs "^2.1.2"
-"@inquirer/figures@^1.0.11", "@inquirer/figures@^1.0.5", "@inquirer/figures@^1.0.6":
+"@inquirer/figures@^1.0.11":
version "1.0.11"
resolved "https://registry.yarnpkg.com/@inquirer/figures/-/figures-1.0.11.tgz#4744e6db95288fea1dead779554859710a959a21"
integrity sha512-eOg92lvrn/aRUqbxRyvpEWnrvRuTYRifixHkYVpJiygTgVSBIHDqLh0SrMQXkafvULg3ck11V7xvR+zcgvpHFw==
-"@inquirer/input@^2.2.9":
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/@inquirer/input/-/input-2.3.0.tgz#9b99022f53780fecc842908f3f319b52a5a16865"
- integrity sha512-XfnpCStx2xgh1LIRqPXrTNEEByqQWoxsWYzNRSEUxJ5c6EQlhMogJ3vHKu8aXuTacebtaZzMAHwEL0kAflKOBw==
- dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/type" "^1.5.3"
-
-"@inquirer/input@^4.1.9":
+"@inquirer/input@^4.1.6", "@inquirer/input@^4.1.9":
version "4.1.9"
resolved "https://registry.yarnpkg.com/@inquirer/input/-/input-4.1.9.tgz#e93888d48c89bdb7f8e10bdd94572b636375749a"
integrity sha512-mshNG24Ij5KqsQtOZMgj5TwEjIf+F2HOESk6bjMwGWgcH5UBe8UoljwzNFHqdMbGYbgAf6v2wU/X9CAdKJzgOA==
@@ -5058,15 +5087,7 @@
"@inquirer/core" "^10.1.10"
"@inquirer/type" "^3.0.6"
-"@inquirer/number@^1.0.10":
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/@inquirer/number/-/number-1.1.0.tgz#4dac004021ea67c89552a261564f103a494cac96"
- integrity sha512-ilUnia/GZUtfSZy3YEErXLJ2Sljo/mf9fiKc08n18DdwdmDbOzRcTv65H1jjDvlsAuvdFXf4Sa/aL7iw/NanVA==
- dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/type" "^1.5.3"
-
-"@inquirer/number@^3.0.12":
+"@inquirer/number@^3.0.12", "@inquirer/number@^3.0.9":
version "3.0.12"
resolved "https://registry.yarnpkg.com/@inquirer/number/-/number-3.0.12.tgz#e027d27425ee2a81a7ccb9fdc750129edd291067"
integrity sha512-7HRFHxbPCA4e4jMxTQglHJwP+v/kpFsCf2szzfBHy98Wlc3L08HL76UDiA87TOdX5fwj2HMOLWqRWv9Pnn+Z5Q==
@@ -5074,16 +5095,7 @@
"@inquirer/core" "^10.1.10"
"@inquirer/type" "^3.0.6"
-"@inquirer/password@^2.1.22":
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/@inquirer/password/-/password-2.2.0.tgz#0b6f26336c259c8a9e5f5a3f2e1a761564f764ba"
- integrity sha512-5otqIpgsPYIshqhgtEwSspBQE40etouR8VIxzpJkv9i0dVHIpyhiivbkH9/dGiMLdyamT54YRdGJLfl8TFnLHg==
- dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/type" "^1.5.3"
- ansi-escapes "^4.3.2"
-
-"@inquirer/password@^4.0.12":
+"@inquirer/password@^4.0.12", "@inquirer/password@^4.0.9":
version "4.0.12"
resolved "https://registry.yarnpkg.com/@inquirer/password/-/password-4.0.12.tgz#f1a663bc5cf88699643cf6c83626a1ae77e580b5"
integrity sha512-FlOB0zvuELPEbnBYiPaOdJIaDzb2PmJ7ghi/SVwIHDDSQ2K4opGBkF+5kXOg6ucrtSUQdLhVVY5tycH0j0l+0g==
@@ -5092,21 +5104,21 @@
"@inquirer/type" "^3.0.6"
ansi-escapes "^4.3.2"
-"@inquirer/prompts@5.3.8":
- version "5.3.8"
- resolved "https://registry.yarnpkg.com/@inquirer/prompts/-/prompts-5.3.8.tgz#f394050d95076c2f1b046be324f06f619b257c3e"
- integrity sha512-b2BudQY/Si4Y2a0PdZZL6BeJtl8llgeZa7U2j47aaJSCeAl1e4UI7y8a9bSkO3o/ZbZrgT5muy/34JbsjfIWxA==
- dependencies:
- "@inquirer/checkbox" "^2.4.7"
- "@inquirer/confirm" "^3.1.22"
- "@inquirer/editor" "^2.1.22"
- "@inquirer/expand" "^2.1.22"
- "@inquirer/input" "^2.2.9"
- "@inquirer/number" "^1.0.10"
- "@inquirer/password" "^2.1.22"
- "@inquirer/rawlist" "^2.2.4"
- "@inquirer/search" "^1.0.7"
- "@inquirer/select" "^2.4.7"
+"@inquirer/prompts@7.3.2":
+ version "7.3.2"
+ resolved "https://registry.yarnpkg.com/@inquirer/prompts/-/prompts-7.3.2.tgz#ad0879eb3bc783c19b78c420e5eeb18a09fc9b47"
+ integrity sha512-G1ytyOoHh5BphmEBxSwALin3n1KGNYB6yImbICcRQdzXfOGbuJ9Jske/Of5Sebk339NSGGNfUshnzK8YWkTPsQ==
+ dependencies:
+ "@inquirer/checkbox" "^4.1.2"
+ "@inquirer/confirm" "^5.1.6"
+ "@inquirer/editor" "^4.2.7"
+ "@inquirer/expand" "^4.0.9"
+ "@inquirer/input" "^4.1.6"
+ "@inquirer/number" "^3.0.9"
+ "@inquirer/password" "^4.0.9"
+ "@inquirer/rawlist" "^4.0.9"
+ "@inquirer/search" "^3.0.9"
+ "@inquirer/select" "^4.0.9"
"@inquirer/prompts@^7.1.0":
version "7.4.1"
@@ -5124,16 +5136,7 @@
"@inquirer/search" "^3.0.12"
"@inquirer/select" "^4.1.1"
-"@inquirer/rawlist@^2.2.4":
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/@inquirer/rawlist/-/rawlist-2.3.0.tgz#6b2c0da39c1cd855af5608b2d627681cdac7277d"
- integrity sha512-zzfNuINhFF7OLAtGHfhwOW2TlYJyli7lOUoJUXw/uyklcwalV6WRXBXtFIicN8rTRK1XTiPWB4UY+YuW8dsnLQ==
- dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/type" "^1.5.3"
- yoctocolors-cjs "^2.1.2"
-
-"@inquirer/rawlist@^4.0.12":
+"@inquirer/rawlist@^4.0.12", "@inquirer/rawlist@^4.0.9":
version "4.0.12"
resolved "https://registry.yarnpkg.com/@inquirer/rawlist/-/rawlist-4.0.12.tgz#97b9540199590d2b197836ba3a5658addd406479"
integrity sha512-wNPJZy8Oc7RyGISPxp9/MpTOqX8lr0r+lCCWm7hQra+MDtYRgINv1hxw7R+vKP71Bu/3LszabxOodfV/uTfsaA==
@@ -5142,17 +5145,7 @@
"@inquirer/type" "^3.0.6"
yoctocolors-cjs "^2.1.2"
-"@inquirer/search@^1.0.7":
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/@inquirer/search/-/search-1.1.0.tgz#665928cac2326b9501ddafbb8606ce4823b3106b"
- integrity sha512-h+/5LSj51dx7hp5xOn4QFnUaKeARwUCLs6mIhtkJ0JYPBLmEYjdHSYh7I6GrLg9LwpJ3xeX0FZgAG1q0QdCpVQ==
- dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/figures" "^1.0.5"
- "@inquirer/type" "^1.5.3"
- yoctocolors-cjs "^2.1.2"
-
-"@inquirer/search@^3.0.12":
+"@inquirer/search@^3.0.12", "@inquirer/search@^3.0.9":
version "3.0.12"
resolved "https://registry.yarnpkg.com/@inquirer/search/-/search-3.0.12.tgz#e86f91ea598ccb39caf9a17762b839a9b950e16d"
integrity sha512-H/kDJA3kNlnNIjB8YsaXoQI0Qccgf0Na14K1h8ExWhNmUg2E941dyFPrZeugihEa9AZNW5NdsD/NcvUME83OPQ==
@@ -5162,18 +5155,7 @@
"@inquirer/type" "^3.0.6"
yoctocolors-cjs "^2.1.2"
-"@inquirer/select@^2.4.7":
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/@inquirer/select/-/select-2.5.0.tgz#345c6908ecfaeef3d84ddd2f9feb2f487c558efb"
- integrity sha512-YmDobTItPP3WcEI86GvPo+T2sRHkxxOq/kXmsBjHS5BVXUgvgZ5AfJjkvQvZr03T81NnI3KrrRuMzeuYUQRFOA==
- dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/figures" "^1.0.5"
- "@inquirer/type" "^1.5.3"
- ansi-escapes "^4.3.2"
- yoctocolors-cjs "^2.1.2"
-
-"@inquirer/select@^4.1.1":
+"@inquirer/select@^4.0.9", "@inquirer/select@^4.1.1":
version "4.1.1"
resolved "https://registry.yarnpkg.com/@inquirer/select/-/select-4.1.1.tgz#0496b913514149171cf6351f0acb6d4243a39fdf"
integrity sha512-IUXzzTKVdiVNMA+2yUvPxWsSgOG4kfX93jOM4Zb5FgujeInotv5SPIJVeXQ+fO4xu7tW8VowFhdG5JRmmCyQ1Q==
@@ -5184,30 +5166,23 @@
ansi-escapes "^4.3.2"
yoctocolors-cjs "^2.1.2"
-"@inquirer/type@^1.5.1", "@inquirer/type@^1.5.2", "@inquirer/type@^1.5.3":
+"@inquirer/type@^1.5.5":
version "1.5.5"
resolved "https://registry.yarnpkg.com/@inquirer/type/-/type-1.5.5.tgz#303ea04ce7ad2e585b921b662b3be36ef7b4f09b"
integrity sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==
dependencies:
mute-stream "^1.0.0"
-"@inquirer/type@^2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/@inquirer/type/-/type-2.0.0.tgz#08fa513dca2cb6264fe1b0a2fabade051444e3f6"
- integrity sha512-XvJRx+2KR3YXyYtPUUy+qd9i7p+GO9Ko6VIIpWlBrpWwXDv8WLFeHTxz35CfQFUiBMLXlGHhGzys7lqit9gWag==
- dependencies:
- mute-stream "^1.0.0"
+"@inquirer/type@^3.0.4":
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/@inquirer/type/-/type-3.0.4.tgz#fa5f9e91a0abf3c9e93d3e1990ecb891d8195cf2"
+ integrity sha512-2MNFrDY8jkFYc9Il9DgLsHhMzuHnOYM1+CUYVWbzu9oT0hC7V7EcYvdCKeoll/Fcci04A+ERZ9wcc7cQ8lTkIA==
"@inquirer/type@^3.0.6":
version "3.0.6"
resolved "https://registry.yarnpkg.com/@inquirer/type/-/type-3.0.6.tgz#2500e435fc2014c5250eec3279f42b70b64089bd"
integrity sha512-/mKVCtVpyBu3IDarv0G+59KC4stsD5mDsGpYh+GKs1NZT88Jh52+cuoA1AtLk2Q0r/quNl+1cSUyLRHBFeD0XA==
-"@ioredis/commands@^1.0.2":
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/@ioredis/commands/-/commands-1.2.0.tgz#6d61b3097470af1fdbbe622795b8921d42018e11"
- integrity sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==
-
"@isaacs/cliui@^8.0.2":
version "8.0.2"
resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550"
@@ -5697,10 +5672,10 @@
dependencies:
regenerator-runtime "^0.13.3"
-"@jitsu/js@^1.9.12":
- version "1.9.14"
- resolved "https://registry.yarnpkg.com/@jitsu/js/-/js-1.9.14.tgz#a63716426ac66c115aeb624dadf35672e0bdd8a1"
- integrity sha512-d+4NmEfUfk6SSspCJKzdE9fZOPBaFBD+RZnzNgqczKeiFTwZXTs2/XK6ozgZUR1tbxVS6103hMT+VZPutWa0PQ==
+"@jitsu/js@^1.10.0":
+ version "1.10.0"
+ resolved "https://registry.yarnpkg.com/@jitsu/js/-/js-1.10.0.tgz#a8eb33ef39399aad49e79f0a94033c630c52fc82"
+ integrity sha512-a/6He4oyjEc8HNLY5hJa7W08F1Vp0i3l2Dsem6v4GRIsBqNmHYzmnv2cmxlgtFIrm5N5wdTMMUIIVG3BrZYghA==
dependencies:
analytics "0.8.9"
@@ -5763,9 +5738,9 @@
integrity sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==
"@jsonjoy.com/json-pack@^1.0.3":
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/@jsonjoy.com/json-pack/-/json-pack-1.2.0.tgz#e658900e81d194903171c42546e1aa27f446846a"
- integrity sha512-io1zEbbYcElht3tdlqEOFxZ0dMTYrHz9iMf0gqn1pPjZFTCgM5R4R5IMA20Chb2UPYYsxjzs8CgZ7Nb5n2K2rA==
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/@jsonjoy.com/json-pack/-/json-pack-1.1.1.tgz#1f2db19ab1fd3304ccac259a1ef1dc6aff6df0ba"
+ integrity sha512-osjeBqMJ2lb/j/M8NCPjs1ylqWIcTRTycIhVB5pt6LgzgeRSb0YRZ7j9RfA8wIUrsr/medIuhVyonXRZWLyfdw==
dependencies:
"@jsonjoy.com/base64" "^1.1.1"
"@jsonjoy.com/util" "^1.1.2"
@@ -5825,17 +5800,17 @@
resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz#4fc56c15c580b9adb7dc3c333a134e540b44bfb1"
integrity sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==
-"@lerna/create@8.2.1":
- version "8.2.1"
- resolved "https://registry.yarnpkg.com/@lerna/create/-/create-8.2.1.tgz#b9c34b9fbd75035418244e33cf197523a2e10a6e"
- integrity sha512-Cz2u/fwc03D1EE6VFZCLMmI8FIUtGmxHQ3ECeNblsxv9i0YSKWe4Xm18sjO1xltG/K5ByiH8/HMeY9dlyAv22A==
+"@lerna/create@8.1.9":
+ version "8.1.9"
+ resolved "https://registry.yarnpkg.com/@lerna/create/-/create-8.1.9.tgz#6ab7b8514a9a200a4bacb7fa6cf6f01d82d3a154"
+ integrity sha512-DPnl5lPX4v49eVxEbJnAizrpMdMTBz1qykZrAbBul9rfgk531v8oAt+Pm6O/rpAleRombNM7FJb5rYGzBJatOQ==
dependencies:
"@npmcli/arborist" "7.5.4"
"@npmcli/package-json" "5.2.0"
"@npmcli/run-script" "8.1.0"
"@nx/devkit" ">=17.1.2 < 21"
"@octokit/plugin-enterprise-rest" "6.0.1"
- "@octokit/rest" "20.1.2"
+ "@octokit/rest" "19.0.11"
aproba "2.0.0"
byte-size "8.1.1"
chalk "4.1.0"
@@ -5888,6 +5863,7 @@
slash "^3.0.0"
ssri "^10.0.6"
string-width "^4.2.3"
+ strip-ansi "^6.0.1"
strong-log-transformer "2.1.0"
tar "6.2.1"
temp-dir "1.0.0"
@@ -5971,49 +5947,49 @@
resolved "https://registry.yarnpkg.com/@libsql/win32-x64-msvc/-/win32-x64-msvc-0.3.19.tgz#643461f816043e9184e5230d84af9150cc0913c1"
integrity sha512-ay1X9AobE4BpzG0XPw1gplyLZPGHIgJOovvW23gUrukRegiUP62uzhpRbKNogLlUOynyXeq//prHgPXiebUfWg==
-"@listr2/prompt-adapter-inquirer@2.0.15":
- version "2.0.15"
- resolved "https://registry.yarnpkg.com/@listr2/prompt-adapter-inquirer/-/prompt-adapter-inquirer-2.0.15.tgz#45f13178b13327a28a220057a34a886cab18218e"
- integrity sha512-MZrGem/Ujjd4cPTLYDfCZK2iKKeiO/8OX13S6jqxldLs0Prf2aGqVlJ77nMBqMv7fzqgXEgjrNHLXcKR8l9lOg==
+"@listr2/prompt-adapter-inquirer@2.0.18":
+ version "2.0.18"
+ resolved "https://registry.yarnpkg.com/@listr2/prompt-adapter-inquirer/-/prompt-adapter-inquirer-2.0.18.tgz#f1bff90f201269914023b17cb383c8febd6287f2"
+ integrity sha512-0hz44rAcrphyXcA8IS7EJ2SCoaBZD2u5goE8S/e+q/DL+dOGpqpcLidVOFeLG3VgML62SXmfRLAhWt0zL1oW4Q==
dependencies:
- "@inquirer/type" "^1.5.1"
+ "@inquirer/type" "^1.5.5"
"@ljharb/through@^2.3.12":
- version "2.3.14"
- resolved "https://registry.yarnpkg.com/@ljharb/through/-/through-2.3.14.tgz#a5df44295f44dc23bfe106af59426dd0677760b1"
- integrity sha512-ajBvlKpWucBB17FuQYUShqpqy8GRgYEpJW0vWJbUu1CV9lWyrDCapy0lScU8T8Z6qn49sSwJB3+M+evYIdGg+A==
+ version "2.3.13"
+ resolved "https://registry.yarnpkg.com/@ljharb/through/-/through-2.3.13.tgz#b7e4766e0b65aa82e529be945ab078de79874edc"
+ integrity sha512-/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ==
dependencies:
- call-bind "^1.0.8"
+ call-bind "^1.0.7"
-"@lmdb/lmdb-darwin-arm64@3.0.13":
- version "3.0.13"
- resolved "https://registry.yarnpkg.com/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-3.0.13.tgz#b09af72bde5a9933abfab34dc5c10e5b6c16d4a5"
- integrity sha512-uiKPB0Fv6WEEOZjruu9a6wnW/8jrjzlZbxXscMB8kuCJ1k6kHpcBnuvaAWcqhbI7rqX5GKziwWEdD+wi2gNLfA==
+"@lmdb/lmdb-darwin-arm64@3.2.6":
+ version "3.2.6"
+ resolved "https://registry.yarnpkg.com/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-3.2.6.tgz#5de419e9b95ba7aa5a0305a451e202be41dd76c0"
+ integrity sha512-yF/ih9EJJZc72psFQbwnn8mExIWfTnzWJg+N02hnpXtDPETYLmQswIMBn7+V88lfCaFrMozJsUvcEQIkEPU0Gg==
-"@lmdb/lmdb-darwin-x64@3.0.13":
- version "3.0.13"
- resolved "https://registry.yarnpkg.com/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-3.0.13.tgz#bc27aadf475954254b787ef609a9f598adc8ac6b"
- integrity sha512-bEVIIfK5mSQoG1R19qA+fJOvCB+0wVGGnXHT3smchBVahYBdlPn2OsZZKzlHWfb1E+PhLBmYfqB5zQXFP7hJig==
+"@lmdb/lmdb-darwin-x64@3.2.6":
+ version "3.2.6"
+ resolved "https://registry.yarnpkg.com/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-3.2.6.tgz#1e2a066f49b454411ed778a589ee57a6051851df"
+ integrity sha512-5BbCumsFLbCi586Bb1lTWQFkekdQUw8/t8cy++Uq251cl3hbDIGEwD9HAwh8H6IS2F6QA9KdKmO136LmipRNkg==
-"@lmdb/lmdb-linux-arm64@3.0.13":
- version "3.0.13"
- resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-3.0.13.tgz#fd49c447e1e8304fc4101bb7e6b641f08d69ac28"
- integrity sha512-afbVrsMgZ9dUTNUchFpj5VkmJRxvht/u335jUJ7o23YTbNbnpmXif3VKQGCtnjSh+CZaqm6N3CPG8KO3zwyZ1Q==
+"@lmdb/lmdb-linux-arm64@3.2.6":
+ version "3.2.6"
+ resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-3.2.6.tgz#42c4c67dd67da62860f8fb7dd57e9171f407c1d2"
+ integrity sha512-l5VmJamJ3nyMmeD1ANBQCQqy7do1ESaJQfKPSm2IG9/ADZryptTyCj8N6QaYgIWewqNUrcbdMkJajRQAt5Qjfg==
-"@lmdb/lmdb-linux-arm@3.0.13":
- version "3.0.13"
- resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-3.0.13.tgz#14ebce383cbc9d51cbe12581dfec3ef8ffc6b685"
- integrity sha512-Yml1KlMzOnXj/tnW7yX8U78iAzTk39aILYvCPbqeewAq1kSzl+w59k/fiVkTBfvDi/oW/5YRxL+Fq+Y1Fr1r2Q==
+"@lmdb/lmdb-linux-arm@3.2.6":
+ version "3.2.6"
+ resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-3.2.6.tgz#a4aabc336dfbb2efdad6c91e39a95bece96fa7bd"
+ integrity sha512-+6XgLpMb7HBoWxXj+bLbiiB4s0mRRcDPElnRS3LpWRzdYSe+gFk5MT/4RrVNqd2MESUDmb53NUXw1+BP69bjiQ==
-"@lmdb/lmdb-linux-x64@3.0.13":
- version "3.0.13"
- resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-3.0.13.tgz#49b9bfcd52df55ccc9e466cf27c0651e5434b320"
- integrity sha512-vOtxu0xC0SLdQ2WRXg8Qgd8T32ak4SPqk5zjItRszrJk2BdeXqfGxBJbP7o4aOvSPSmSSv46Lr1EP4HXU8v7Kg==
+"@lmdb/lmdb-linux-x64@3.2.6":
+ version "3.2.6"
+ resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-3.2.6.tgz#83fb669606ebe6275915a06f2ca2e34d2ce1664e"
+ integrity sha512-nDYT8qN9si5+onHYYaI4DiauDMx24OAiuZAUsEqrDy+ja/3EbpXPX/VAkMV8AEaQhy3xc4dRC+KcYIvOFefJ4Q==
-"@lmdb/lmdb-win32-x64@3.0.13":
- version "3.0.13"
- resolved "https://registry.yarnpkg.com/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-3.0.13.tgz#93bcd6dc24afd1cc60dd88a65b9e4fab32dcf397"
- integrity sha512-UCrMJQY/gJnOl3XgbWRZZUvGGBuKy6i0YNSptgMzHBjs+QYDYR1Mt/RLTOPy4fzzves65O1EDmlL//OzEqoLlA==
+"@lmdb/lmdb-win32-x64@3.2.6":
+ version "3.2.6"
+ resolved "https://registry.yarnpkg.com/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-3.2.6.tgz#729f2035ddef1975279b3329532f5c1f86c91918"
+ integrity sha512-XlqVtILonQnG+9fH2N3Aytria7P/1fwDgDhl29rde96uH2sLB8CHORIf2PfuLVzFQJ7Uqp8py9AYwr3ZUCFfWg==
"@lukeed/csprng@^1.0.0":
version "1.1.0"
@@ -6149,9 +6125,9 @@
mysql2 "3.12.0"
"@mikro-orm/nestjs@^6.0.2":
- version "6.1.1"
- resolved "https://registry.yarnpkg.com/@mikro-orm/nestjs/-/nestjs-6.1.1.tgz#eb997289985c0a25769e59261e5e7dda776d4c8a"
- integrity sha512-aluD3eTeuCvIePDk5UBanHIhu1zAJQXqWAg47MZdHJmFkNuXn62DCXbD2c4X5TCpKW/m0zjba22ilyZ/AFG9qg==
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/@mikro-orm/nestjs/-/nestjs-6.1.0.tgz#b377bf810c2c1d5e1ea61c4b607f008a576c45ff"
+ integrity sha512-nuCjYSzEfcvFRjXAdVoKoCLw2TeZi1Ig3j1thTo1bo7Yjvko3lGchOBlYjx/vnC4HDQaAdAhRuAa6ceGZVMR8w==
"@mikro-orm/postgresql@6.4.5":
version "6.4.5"
@@ -6164,12 +6140,31 @@
postgres-date "2.1.0"
postgres-interval "4.0.2"
-"@module-federation/bridge-react-webpack-plugin@0.10.0":
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/@module-federation/bridge-react-webpack-plugin/-/bridge-react-webpack-plugin-0.10.0.tgz#c9990c02ae6d60c29defb1f6a3974be16fb3eac3"
- integrity sha512-wvqsjqqVXNI36Q98zFFK4saBFH3M+kJC9c/UZfGIWC86kBVRgWDOKphP4nF+cpjJsFEexoGCNefUswqsx14Y1Q==
+"@modern-js/node-bundle-require@2.65.1":
+ version "2.65.1"
+ resolved "https://registry.yarnpkg.com/@modern-js/node-bundle-require/-/node-bundle-require-2.65.1.tgz#e4c34a6ea87c5082119b2b9fc48ebca82bac1411"
+ integrity sha512-XpEkciVEfDbkkLUI662ZFlI9tXsUQtLXk4NRJDBGosNnk9uL2XszmC8sKsdCSLK8AYuPW2w6MTVWuJsOR0EU8A==
+ dependencies:
+ "@modern-js/utils" "2.65.1"
+ "@swc/helpers" "0.5.13"
+ esbuild "0.17.19"
+
+"@modern-js/utils@2.65.1":
+ version "2.65.1"
+ resolved "https://registry.yarnpkg.com/@modern-js/utils/-/utils-2.65.1.tgz#dcf2a74dc1c401d60bd8b2b9938c601aa764d42f"
+ integrity sha512-HrChf19F+6nALo5XPra8ycjhXGQfGi23+S7Y2FLfTKe8vaNnky8duT/XvRWpbS4pp3SQj8ryO8m/qWSsJ1Rogw==
dependencies:
- "@module-federation/sdk" "0.10.0"
+ "@swc/helpers" "0.5.13"
+ caniuse-lite "^1.0.30001520"
+ lodash "^4.17.21"
+ rslog "^1.1.0"
+
+"@module-federation/bridge-react-webpack-plugin@0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@module-federation/bridge-react-webpack-plugin/-/bridge-react-webpack-plugin-0.13.0.tgz#c7d5dcb10927c8829a2933a5ba371567ac9d26de"
+ integrity sha512-5p+LKEq0fwuPGIIzt/dsPlz0atgwv/G2ijeqtzh1K/1tEhtasfr6LNjjnOsjZNA8YR3v0agQAijabIpT6B7PYQ==
+ dependencies:
+ "@module-federation/sdk" "0.13.0"
"@types/semver" "7.5.8"
semver "7.6.3"
@@ -6200,13 +6195,24 @@
"@types/semver" "7.5.8"
semver "7.6.3"
-"@module-federation/data-prefetch@0.10.0":
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/@module-federation/data-prefetch/-/data-prefetch-0.10.0.tgz#60f09dcf34ae6af3189dcb0000067a46723f64b5"
- integrity sha512-aXomkuNNTNhJmU9TQALvvRbf8NlDkPd3Q3iGJ817qAwnHIXAQ3x9nRtWqhAIovQra3R7i3u3KI1hIe0ivTIrNg==
+"@module-federation/cli@0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@module-federation/cli/-/cli-0.13.0.tgz#3f9a68e771895d1a9f445fdd4ca63de69d894b6d"
+ integrity sha512-5n7fjeTNq0O+0M4j1Behp/kfNqTpmib0CwcETNov3Bw7J4ohiyrGS76CRB0OrkE7WlE6psFlyCPAiPI9YsDldg==
dependencies:
- "@module-federation/runtime" "0.10.0"
- "@module-federation/sdk" "0.10.0"
+ "@modern-js/node-bundle-require" "2.65.1"
+ "@module-federation/dts-plugin" "0.13.0"
+ "@module-federation/sdk" "0.13.0"
+ chalk "3.0.0"
+ commander "11.1.0"
+
+"@module-federation/data-prefetch@0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@module-federation/data-prefetch/-/data-prefetch-0.13.0.tgz#84d90e2b7026e50bb8342722ec866cecf87c13ff"
+ integrity sha512-mimi7eqKySOmKrXDCo3Lk4KZq1i0PZDwSmP9Es5RWK8senaCRu10WwFLhAVJ/yIH2Wt7HFy23ZyYNukrLikedQ==
+ dependencies:
+ "@module-federation/runtime" "0.13.0"
+ "@module-federation/sdk" "0.13.0"
fs-extra "9.1.0"
"@module-federation/data-prefetch@0.6.16":
@@ -6236,22 +6242,22 @@
"@module-federation/sdk" "0.9.1"
fs-extra "9.1.0"
-"@module-federation/dts-plugin@0.10.0":
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/@module-federation/dts-plugin/-/dts-plugin-0.10.0.tgz#6c6b2bf4e29cc5aa215072864bcca4ae71b028ce"
- integrity sha512-RP5Rv0dhU2OovcMKjnMIoi6ybcS2vftT/v5Ia5qCHIyl3YtvbqS1Eo4C59sKEfnYUkGYMFZxjPhKNZjKVfrATg==
+"@module-federation/dts-plugin@0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@module-federation/dts-plugin/-/dts-plugin-0.13.0.tgz#139ac7b9f06909823749de27192f7412dfb06f69"
+ integrity sha512-+I3kaf1BHZLTv37dxQTQ/WErAePAnVWKs1cdkea1PA/oRo4IJRVkMya53mKRlawR/Tam9GldphrR1ylOJxMl4w==
dependencies:
- "@module-federation/error-codes" "0.10.0"
- "@module-federation/managers" "0.10.0"
- "@module-federation/sdk" "0.10.0"
- "@module-federation/third-party-dts-extractor" "0.10.0"
+ "@module-federation/error-codes" "0.13.0"
+ "@module-federation/managers" "0.13.0"
+ "@module-federation/sdk" "0.13.0"
+ "@module-federation/third-party-dts-extractor" "0.13.0"
adm-zip "^0.5.10"
ansi-colors "^4.1.3"
- axios "^1.7.4"
+ axios "^1.8.2"
chalk "3.0.0"
fs-extra "9.1.0"
isomorphic-ws "5.0.0"
- koa "2.15.4"
+ koa "2.16.1"
lodash.clonedeepwith "4.5.0"
log4js "6.9.1"
node-schedule "2.1.1"
@@ -6323,22 +6329,24 @@
rambda "^9.1.0"
ws "8.18.0"
-"@module-federation/enhanced@0.10.0":
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/@module-federation/enhanced/-/enhanced-0.10.0.tgz#9cd302f4c1991d221c03e225b2471de94c0eeaf4"
- integrity sha512-JN6LXGM2mu17JaXJMRZVSwbsxnBDO+6vz2VcQAwnlAQkBn2dvTwBBj0YyCYaO6BzNWjiYtGF8TEu5NAVhAxxLQ==
- dependencies:
- "@module-federation/bridge-react-webpack-plugin" "0.10.0"
- "@module-federation/data-prefetch" "0.10.0"
- "@module-federation/dts-plugin" "0.10.0"
- "@module-federation/error-codes" "0.10.0"
- "@module-federation/inject-external-runtime-core-plugin" "0.10.0"
- "@module-federation/managers" "0.10.0"
- "@module-federation/manifest" "0.10.0"
- "@module-federation/rspack" "0.10.0"
- "@module-federation/runtime-tools" "0.10.0"
- "@module-federation/sdk" "0.10.0"
+"@module-federation/enhanced@0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@module-federation/enhanced/-/enhanced-0.13.0.tgz#de68e001350137ef01b70302a8da34edd5647199"
+ integrity sha512-G9R5U6sQVkHAKW+VYlT8DprkJJasV0H9vPyt8CLrNxL1myzz3YVObr1RG3JciF+RsBC3zdmSNftXkUz15nUZ/Q==
+ dependencies:
+ "@module-federation/bridge-react-webpack-plugin" "0.13.0"
+ "@module-federation/cli" "0.13.0"
+ "@module-federation/data-prefetch" "0.13.0"
+ "@module-federation/dts-plugin" "0.13.0"
+ "@module-federation/error-codes" "0.13.0"
+ "@module-federation/inject-external-runtime-core-plugin" "0.13.0"
+ "@module-federation/managers" "0.13.0"
+ "@module-federation/manifest" "0.13.0"
+ "@module-federation/rspack" "0.13.0"
+ "@module-federation/runtime-tools" "0.13.0"
+ "@module-federation/sdk" "0.13.0"
btoa "^1.2.1"
+ schema-utils "^4.3.0"
upath "2.0.1"
"@module-federation/enhanced@0.6.9":
@@ -6391,10 +6399,10 @@
btoa "^1.2.1"
upath "2.0.1"
-"@module-federation/error-codes@0.10.0":
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/@module-federation/error-codes/-/error-codes-0.10.0.tgz#07841b7c89b028581c3a6ff9c0a7f640395c8f31"
- integrity sha512-DfLcssfcCG0gXW2GY8v1ZCa7u0oSwtRnrk1gCjL+SfQxvpCL4S9RgYdl6me3vKOjirttCp289MVa1IHF7wu8qg==
+"@module-federation/error-codes@0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@module-federation/error-codes/-/error-codes-0.13.0.tgz#56f9a5de0777ce64b722c5a20a8b4e4ea66c7551"
+ integrity sha512-4soAMLr7qcVWuvCsyRmBbiBfuhxmnDeyl+qzjMx8VurQgL+XQDQJapM9RXngNGT4g8FoCq9o7rM5YWNgFFNUiw==
"@module-federation/error-codes@0.6.14":
version "0.6.14"
@@ -6406,22 +6414,22 @@
resolved "https://registry.yarnpkg.com/@module-federation/error-codes/-/error-codes-0.9.1.tgz#0bcc4baea3b4086cfcf4d9dd7c1d78b0b344c139"
integrity sha512-q8spCvlwUzW42iX1irnlBTcwcZftRNHyGdlaoFO1z/fW4iphnBIfijzkigWQzOMhdPgzqN/up7XN+g5hjBGBtw==
-"@module-federation/inject-external-runtime-core-plugin@0.10.0":
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/@module-federation/inject-external-runtime-core-plugin/-/inject-external-runtime-core-plugin-0.10.0.tgz#9747a1c55a046ae7690980fec017153f6ddaa2b3"
- integrity sha512-+Da+uvnexREenBDISIuwEj0dC9ZjLFkMM06xxUBJ7ahvq0rk0/11XVBO2G4oo2ceqQQpUex0BzRWKSZ7ys8IFQ==
+"@module-federation/inject-external-runtime-core-plugin@0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@module-federation/inject-external-runtime-core-plugin/-/inject-external-runtime-core-plugin-0.13.0.tgz#4e893a8a65f6971ffd68dbf4af6f0bb3f4ded164"
+ integrity sha512-+V6Dhpqg8N9nqGHqOKDYebaHdJYqaTEFlF2VcrTmNlIcIYuiSLZngEQliebOkMRwUmO2T3eVS5IzzTlL/jfrJw==
"@module-federation/inject-external-runtime-core-plugin@0.9.1":
version "0.9.1"
resolved "https://registry.yarnpkg.com/@module-federation/inject-external-runtime-core-plugin/-/inject-external-runtime-core-plugin-0.9.1.tgz#189a7800f32c07aaac85ba130c3e1bbcfdb0ac71"
integrity sha512-BPfzu1cqDU5BhM493enVF1VfxJWmruen0ktlHrWdJJlcddhZzyFBGaLAGoGc+83fS75aEllvJTEthw4kMViMQQ==
-"@module-federation/managers@0.10.0":
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/@module-federation/managers/-/managers-0.10.0.tgz#c1764945b5bb67bb05e1b2184446a46f3e3e964d"
- integrity sha512-k+AM7Cg9mwlfSo4KPK04oSxXWwv9EHWOMgOJnrb77r5ZBGQoBE6cwrICJGfppiIZGyY7z2k1RvYuy/1DK1PXDA==
+"@module-federation/managers@0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@module-federation/managers/-/managers-0.13.0.tgz#aeaa6da55ff5f71f0f5520ad7002b6dc06cceea9"
+ integrity sha512-dpfRjIE4UR4QRP20rENQJs9HfnuWzzsA9W6Eu+r+G+obZnzNIxbONUzg5bCMmhbDsR3krxU6LRrwU1zXnA6bxw==
dependencies:
- "@module-federation/sdk" "0.10.0"
+ "@module-federation/sdk" "0.13.0"
find-pkg "2.0.0"
fs-extra "9.1.0"
@@ -6452,14 +6460,14 @@
find-pkg "2.0.0"
fs-extra "9.1.0"
-"@module-federation/manifest@0.10.0":
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/@module-federation/manifest/-/manifest-0.10.0.tgz#70dd9e243c587712ba74005300b11c73522c8cca"
- integrity sha512-XdZqYb5hQCzZhJPbgfXM9VDgDKLqZmHKpQrsYFeK5MTOJX6EmpHSCCZs8vcnf9DXUy9flxtjwBzDeHgASQnpJQ==
+"@module-federation/manifest@0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@module-federation/manifest/-/manifest-0.13.0.tgz#35f6ff7cd66c100b7879392b90e9c4f4f0fe6bd1"
+ integrity sha512-YHJW4qavvfqfpUusz+BlT9snPmbXmiiS5bO5nReFPjfWXT3/9xFA1TvcwpRc+EXNDNKnf5bPF5E/rsaGxSlp7A==
dependencies:
- "@module-federation/dts-plugin" "0.10.0"
- "@module-federation/managers" "0.10.0"
- "@module-federation/sdk" "0.10.0"
+ "@module-federation/dts-plugin" "0.13.0"
+ "@module-federation/managers" "0.13.0"
+ "@module-federation/sdk" "0.13.0"
chalk "3.0.0"
find-pkg "2.0.0"
@@ -6497,30 +6505,31 @@
find-pkg "2.0.0"
"@module-federation/node@^2.6.26":
- version "2.6.28"
- resolved "https://registry.yarnpkg.com/@module-federation/node/-/node-2.6.28.tgz#1a001eaac22b6649d40ee8a76ab84a0fb57ca0bf"
- integrity sha512-0N0vb4wRRvbKXWQUIWcurvBYHXzkzV8M1yzhhQzeYAVGyfGMmx/WRXPLTld6rEk1iymRuhyC7gYNcA1TnXDb6w==
- dependencies:
- "@module-federation/enhanced" "0.10.0"
- "@module-federation/runtime" "0.10.0"
- "@module-federation/sdk" "0.10.0"
- "@module-federation/utilities" "3.1.46"
+ version "2.7.1"
+ resolved "https://registry.yarnpkg.com/@module-federation/node/-/node-2.7.1.tgz#62b14cdb81c4852f9cd937ce496a42500dec4d3d"
+ integrity sha512-CKFoCq0R6k01Wt+qfWqWnF7XSHNDdIq4reVGvx1/TtAcv3U1opfI1Fgn2zWci9b8E0xQKteCVD5lI3Ws3dJt6w==
+ dependencies:
+ "@module-federation/enhanced" "0.13.0"
+ "@module-federation/runtime" "0.13.0"
+ "@module-federation/sdk" "0.13.0"
+ "@module-federation/utilities" "3.1.53"
btoa "1.2.1"
encoding "^0.1.13"
node-fetch "2.7.0"
-"@module-federation/rspack@0.10.0":
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/@module-federation/rspack/-/rspack-0.10.0.tgz#19bcf7f5324352699d54187a77fe037911730c53"
- integrity sha512-qLbQbPVVOhpmehfGjsnJBdSQqqsLhbEcCMnKG+/e5FZma0I+J716wo70WaXyGk2GsCLe4O0yJOm3kvKygKwR+A==
- dependencies:
- "@module-federation/bridge-react-webpack-plugin" "0.10.0"
- "@module-federation/dts-plugin" "0.10.0"
- "@module-federation/inject-external-runtime-core-plugin" "0.10.0"
- "@module-federation/managers" "0.10.0"
- "@module-federation/manifest" "0.10.0"
- "@module-federation/runtime-tools" "0.10.0"
- "@module-federation/sdk" "0.10.0"
+"@module-federation/rspack@0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@module-federation/rspack/-/rspack-0.13.0.tgz#4bb0b4c35210ed698ed1235e49b9164b6d540bcb"
+ integrity sha512-hb60x8EdiOXfzJGQLlbv1MDJVjEpQ3ppH0ONIra8CAkGRPGjB+eTwg9nLB6wkcI3xdMjgax509DwbSG+BDmCqw==
+ dependencies:
+ "@module-federation/bridge-react-webpack-plugin" "0.13.0"
+ "@module-federation/dts-plugin" "0.13.0"
+ "@module-federation/inject-external-runtime-core-plugin" "0.13.0"
+ "@module-federation/managers" "0.13.0"
+ "@module-federation/manifest" "0.13.0"
+ "@module-federation/runtime-tools" "0.13.0"
+ "@module-federation/sdk" "0.13.0"
+ btoa "1.2.1"
"@module-federation/rspack@0.6.16":
version "0.6.16"
@@ -6559,13 +6568,13 @@
"@module-federation/runtime-tools" "0.9.1"
"@module-federation/sdk" "0.9.1"
-"@module-federation/runtime-core@0.10.0":
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/@module-federation/runtime-core/-/runtime-core-0.10.0.tgz#4956be62d19a7785973da20dd44b9e149f7451e7"
- integrity sha512-eIQoJ302ZNVcz3B5OfRCg2+CykK6+tKtLzyyN1hRaK8rzhuEj9UpNugshPeGWw+G+n0mtYmE7oydKGKWnkqgFA==
+"@module-federation/runtime-core@0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@module-federation/runtime-core/-/runtime-core-0.13.0.tgz#8d36145a269b44bbd133cb42f36689bd755afc0f"
+ integrity sha512-Oj/1p0mfxZ+8EbU7ND4gMvRmikFpIvPCbblOgat9N8ZIVAKYpTimCgMhzg4yRqAwzlGCVwnnW7XZ8UlA+Zqrvg==
dependencies:
- "@module-federation/error-codes" "0.10.0"
- "@module-federation/sdk" "0.10.0"
+ "@module-federation/error-codes" "0.13.0"
+ "@module-federation/sdk" "0.13.0"
"@module-federation/runtime-core@0.9.1":
version "0.9.1"
@@ -6575,13 +6584,21 @@
"@module-federation/error-codes" "0.9.1"
"@module-federation/sdk" "0.9.1"
-"@module-federation/runtime-tools@0.10.0":
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/@module-federation/runtime-tools/-/runtime-tools-0.10.0.tgz#09a4db56a2ce9852e3feb1f073191bcea6897045"
- integrity sha512-RB0lfWFlhgjnAeGD+Mn1xrg7X91QSAtsC39cR/nwhb0InNB/ZSK8naP3/O/V6lz6Za9GPNpoXa06NOexdn0tOg==
+"@module-federation/runtime-tools@0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@module-federation/runtime-tools/-/runtime-tools-0.13.0.tgz#599e3026814fe30ad7e5cbaef20eddd3d829c81b"
+ integrity sha512-6ECWX18yGrQKcmkrQoNPd5VEpxZP1SMaB/Bp55xlpEhsrpn4zHnriQluxDw6xldjSOLl1qbokfxwCwjS2OaEbg==
dependencies:
- "@module-federation/runtime" "0.10.0"
- "@module-federation/webpack-bundler-runtime" "0.10.0"
+ "@module-federation/runtime" "0.13.0"
+ "@module-federation/webpack-bundler-runtime" "0.13.0"
+
+"@module-federation/runtime-tools@0.5.1":
+ version "0.5.1"
+ resolved "https://registry.yarnpkg.com/@module-federation/runtime-tools/-/runtime-tools-0.5.1.tgz#1b1f93837159a6bf0c0ba78730d589a5a8f74aa3"
+ integrity sha512-nfBedkoZ3/SWyO0hnmaxuz0R0iGPSikHZOAZ0N/dVSQaIzlffUo35B5nlC2wgWIc0JdMZfkwkjZRrnuuDIJbzg==
+ dependencies:
+ "@module-federation/runtime" "0.5.1"
+ "@module-federation/webpack-bundler-runtime" "0.5.1"
"@module-federation/runtime-tools@0.6.16":
version "0.6.16"
@@ -6607,14 +6624,21 @@
"@module-federation/runtime" "0.9.1"
"@module-federation/webpack-bundler-runtime" "0.9.1"
-"@module-federation/runtime@0.10.0":
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/@module-federation/runtime/-/runtime-0.10.0.tgz#5ef753e95bf238254a9671b51b23285affcc57f9"
- integrity sha512-qO09AAuiVhYzHXeZiNd04oPb/I6O2/voW/GrSHvQQ2/CterakKHXq27xfFcmlKMY0TnxQNpIV0dQq2vWUEjeRw==
+"@module-federation/runtime@0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@module-federation/runtime/-/runtime-0.13.0.tgz#23cf1a6e0beb81db5cc88fbd07cc135ada78936b"
+ integrity sha512-Ne/3AEVWz6LL6G/i41O5MC6YYlg0SatNNqG/0XbuMAfyGM+llRmB6VKt0o2+JR4isxWuPNp97TbUkkfORit6Eg==
dependencies:
- "@module-federation/error-codes" "0.10.0"
- "@module-federation/runtime-core" "0.10.0"
- "@module-federation/sdk" "0.10.0"
+ "@module-federation/error-codes" "0.13.0"
+ "@module-federation/runtime-core" "0.13.0"
+ "@module-federation/sdk" "0.13.0"
+
+"@module-federation/runtime@0.5.1":
+ version "0.5.1"
+ resolved "https://registry.yarnpkg.com/@module-federation/runtime/-/runtime-0.5.1.tgz#b548a75e2068952ff66ad717cbf73fc921edd5d7"
+ integrity sha512-xgiMUWwGLWDrvZc9JibuEbXIbhXg6z2oUkemogSvQ4LKvrl/n0kbqP1Blk669mXzyWbqtSp6PpvNdwaE1aN5xQ==
+ dependencies:
+ "@module-federation/sdk" "0.5.1"
"@module-federation/runtime@0.6.16":
version "0.6.16"
@@ -6640,10 +6664,15 @@
"@module-federation/runtime-core" "0.9.1"
"@module-federation/sdk" "0.9.1"
-"@module-federation/sdk@0.10.0":
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/@module-federation/sdk/-/sdk-0.10.0.tgz#087efb375e55716133af2a45479c8282e4cf2243"
- integrity sha512-enS4rKLSsoLCB6RxmRgcIdPRiRLgk94qtT2x0CKYhsqz3OJmHVkD0c6Pt5dMgSyLd+1Uo83d9rI492YqzuxO6Q==
+"@module-federation/sdk@0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@module-federation/sdk/-/sdk-0.13.0.tgz#d13aa09471911f665a87524dd45cd4d24e26b2b1"
+ integrity sha512-JdMZaPD+EQvMJYS+/8/8QjaAHQ3qljogvioXBsAuedcStu/msn5e1Fswc0G34kXY9ixs2hUPZU2cAllfSKWIBQ==
+
+"@module-federation/sdk@0.5.1":
+ version "0.5.1"
+ resolved "https://registry.yarnpkg.com/@module-federation/sdk/-/sdk-0.5.1.tgz#6c0a4053c23fa84db7aae7e4736496c541de7191"
+ integrity sha512-exvchtjNURJJkpqjQ3/opdbfeT2wPKvrbnGnyRkrwW5o3FH1LaST1tkiNviT6OXTexGaVc2DahbdniQHVtQ7pA==
"@module-federation/sdk@0.6.16", "@module-federation/sdk@^0.6.0":
version "0.6.16"
@@ -6662,10 +6691,10 @@
resolved "https://registry.yarnpkg.com/@module-federation/sdk/-/sdk-0.9.1.tgz#0e0ab3aca38a6f29c9b0de7e5931f8f63498c9e0"
integrity sha512-YQonPTImgnCqZjE/A+3N2g3J5ypR6kx1tbBzc9toUANKr/dw/S63qlh/zHKzWQzxjjNNVMdXRtTMp07g3kgEWg==
-"@module-federation/third-party-dts-extractor@0.10.0":
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/@module-federation/third-party-dts-extractor/-/third-party-dts-extractor-0.10.0.tgz#7c35d80b1f9fbbbaf37608a22d41a2c8e2857dc7"
- integrity sha512-QEsCm24F3M6rWwoD0IYB/15DzQvqfbdwzGxAc0BsZ2iD/t//Pz8MQ4w+U0nizFto94i8T1gQBYP4nfPcfWUpjg==
+"@module-federation/third-party-dts-extractor@0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@module-federation/third-party-dts-extractor/-/third-party-dts-extractor-0.13.0.tgz#07e98896e01a60cf6b920ef935c42ad82e239473"
+ integrity sha512-0sBgo917+AksBjFXrdWOhX58D+wjHR/vXtiCbwFdAGDwLuMs7crMMc4Aay2FJRwPCm1fMGy/4kYvLh5MRhUHRA==
dependencies:
find-pkg "2.0.0"
fs-extra "9.1.0"
@@ -6698,20 +6727,28 @@
fs-extra "9.1.0"
resolve "1.22.8"
-"@module-federation/utilities@3.1.46":
- version "3.1.46"
- resolved "https://registry.yarnpkg.com/@module-federation/utilities/-/utilities-3.1.46.tgz#86a52469f63905e6e8da4ed7f9c23e296481cb50"
- integrity sha512-m0J5TirDzJfOjiDnn5YrcTLEPjOwc7MI2q4DNxc41YOXoSyochwSJLy6PBMkdbCwlUHE2aNhFn6zgHtvGYpsmQ==
+"@module-federation/utilities@3.1.53":
+ version "3.1.53"
+ resolved "https://registry.yarnpkg.com/@module-federation/utilities/-/utilities-3.1.53.tgz#0150ca0ef9b19699486c49e82d420ba0ae4f59bb"
+ integrity sha512-6pM6wf9wJ+qebFSAdz7Mqn+k8XRubdcORp3866fMQhBUGLvNhOJuN2Vfd4/0HsPyKx2snCo2IamQyr9OqG7NRQ==
dependencies:
- "@module-federation/sdk" "0.10.0"
+ "@module-federation/sdk" "0.13.0"
-"@module-federation/webpack-bundler-runtime@0.10.0":
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/@module-federation/webpack-bundler-runtime/-/webpack-bundler-runtime-0.10.0.tgz#c0698c0396f6ada25fc89a3f98adece6611a8dc7"
- integrity sha512-ArgG3qaB99JkfJ6+EfH/Omgq01FB/tnJZrkw//rFfXpPMCXO7vo9ZURrbT2YPZGGrjDsT9PCdPKfPmUPKnTaqw==
+"@module-federation/webpack-bundler-runtime@0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@module-federation/webpack-bundler-runtime/-/webpack-bundler-runtime-0.13.0.tgz#7ffb220abcc9a53b0066fe48bc23c08e7e149cc7"
+ integrity sha512-ycgAsFeCTo+3GR8JxkhCyg2UZm6Au98ISdLTdVXYphO4UDcO/KjqyJen1LXEslkpCEohDj68Prei2fUHRruK6g==
dependencies:
- "@module-federation/runtime" "0.10.0"
- "@module-federation/sdk" "0.10.0"
+ "@module-federation/runtime" "0.13.0"
+ "@module-federation/sdk" "0.13.0"
+
+"@module-federation/webpack-bundler-runtime@0.5.1":
+ version "0.5.1"
+ resolved "https://registry.yarnpkg.com/@module-federation/webpack-bundler-runtime/-/webpack-bundler-runtime-0.5.1.tgz#ef626af0d57e3568c474d66d7d3797366e09cafd"
+ integrity sha512-mMhRFH0k2VjwHt3Jol9JkUsmI/4XlrAoBG3E0o7HoyoPYv1UFOWyqAflfANcUPgbYpvqmyLzDcO+3IT36LXnrA==
+ dependencies:
+ "@module-federation/runtime" "0.5.1"
+ "@module-federation/sdk" "0.5.1"
"@module-federation/webpack-bundler-runtime@0.6.16":
version "0.6.16"
@@ -6738,9 +6775,9 @@
"@module-federation/sdk" "0.9.1"
"@mongodb-js/saslprep@^1.1.0", "@mongodb-js/saslprep@^1.1.9":
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/@mongodb-js/saslprep/-/saslprep-1.2.0.tgz#4373d7a87660ea44a0a7a461ff6d8bc832733a4b"
- integrity sha512-+ywrb0AqkfaYuhHs6LxKWgqbh3I72EpEgESCw37o+9qPx9WTCkgDm2B+eMrwehGtHBWHFU4GXvnSCNiFhhausg==
+ version "1.1.9"
+ resolved "https://registry.yarnpkg.com/@mongodb-js/saslprep/-/saslprep-1.1.9.tgz#e974bab8eca9faa88677d4ea4da8d09a52069004"
+ integrity sha512-tVkljjeEaAhCqTzajSdgbQ6gE6f3oneVwa3iXR6csiEwXXOFsiC6Uh9iAjAhXPtqa/XMDHWjjeNH/77m/Yq2dw==
dependencies:
sparse-bitfield "^3.0.3"
@@ -6893,10 +6930,10 @@
"@emnapi/runtime" "^1.1.0"
"@tybys/wasm-util" "^0.9.0"
-"@nebular/auth@^14.0.2":
- version "14.0.2"
- resolved "https://registry.yarnpkg.com/@nebular/auth/-/auth-14.0.2.tgz#2724de0e06079cba880741a3328c56a245cb247f"
- integrity sha512-Rt++kQ5vLTwRlSQxKtVSBtUPtUZKL4qSI8fRwTqoB4NpHTU78iMG2j6buUk0lmmFyceToFCI5pC5WZTrVfRAQQ==
+"@nebular/auth@^15.0.0":
+ version "15.0.0"
+ resolved "https://registry.yarnpkg.com/@nebular/auth/-/auth-15.0.0.tgz#d31a87fc733cbb306758652c90592af0bdafd4bc"
+ integrity sha512-2NjWZWQ9njwZR4U712FDIYZ9zlGzG7eOFhtRBTbu+XwUHHxc0WkUSDBsBORMXubzvDGHIPYK5eg8eqWbbs73zA==
dependencies:
tslib "^2.3.0"
@@ -6905,24 +6942,24 @@
resolved "https://registry.yarnpkg.com/@nebular/bootstrap/-/bootstrap-9.1.0-rc.6.tgz#526996ff2029427f9a3c116d50398120df8291af"
integrity sha512-xVb6fztyO8NVFVXV2EOPe2vuwbQ97s2DOve5se0DjaiyZjy5ExSigkKjImNCa+CCMROWNp6UxhjmPlYlsdAIEA==
-"@nebular/eva-icons@^14.0.2":
- version "14.0.2"
- resolved "https://registry.yarnpkg.com/@nebular/eva-icons/-/eva-icons-14.0.2.tgz#ada822792415a5083298fe561ce41e2e554a8f00"
- integrity sha512-fGA3yMqPe1LjRMcJ6J5RwL+PCn90+q6sHyBziPkvU505Vjs3CQvTQWuj0GtBnOyUonLbrHzp90ha6IqG6HFdCQ==
+"@nebular/eva-icons@^15.0.0":
+ version "15.0.0"
+ resolved "https://registry.yarnpkg.com/@nebular/eva-icons/-/eva-icons-15.0.0.tgz#3d02212dd0cfad7ef60f88089faa0fde5f06d150"
+ integrity sha512-A7RqycolulQqvQWAnPFqENifeqdU0Qr6fmsgn52/c0fDswAu9lfKStu3yj/sVzl+1qftlqxRYzGFNyB0tDXhsw==
dependencies:
tslib "^2.3.0"
-"@nebular/security@^14.0.2":
- version "14.0.2"
- resolved "https://registry.yarnpkg.com/@nebular/security/-/security-14.0.2.tgz#8ffc05515fae4e5e861b448f0656401450e8a88a"
- integrity sha512-8wKPxwDZmrpvhRqaMzMmlq3L+6KPNmbbaJq+1uKjDi3MD0fubWUMkO6AswFRfF8vrCSl58FR4V7/MVLk/B2tew==
+"@nebular/security@^15.0.0":
+ version "15.0.0"
+ resolved "https://registry.yarnpkg.com/@nebular/security/-/security-15.0.0.tgz#8cc40072e29cca1af46067b7d35e7adf3e59aac2"
+ integrity sha512-GYuol7jmqRZ64cGiVAlOztTWgfwBUiSxegePsdZESb+7uaZ19fhWFXepnvVHk6Lc3aD1M5Lhf6fbb481TZLcWw==
dependencies:
tslib "^2.3.0"
-"@nebular/theme@^14.0.2":
- version "14.0.2"
- resolved "https://registry.yarnpkg.com/@nebular/theme/-/theme-14.0.2.tgz#dacf0f69d78aa9cf2bcca95a7dbde005136dcc20"
- integrity sha512-w+W8g5T4uds8qdNV8JxgEsw/2VboQzi4DmInppeNA2IJfWyWqCG67bMGBOFVQJiIqUCQVRkMXkMqNfyv/LqgcA==
+"@nebular/theme@^15.0.0":
+ version "15.0.0"
+ resolved "https://registry.yarnpkg.com/@nebular/theme/-/theme-15.0.0.tgz#32acce5aca9490fa9839cc1baf722d65dea5730d"
+ integrity sha512-OcjiBOr/L8bcDr9HuzeYJ0TG51wMo8Dila7XbsyD5yqDPLv2IzRIFjte7Fnpw7Woom91x72muPzX9jNniy0CCA==
dependencies:
tslib "^2.3.0"
@@ -6977,9 +7014,9 @@
webpack-node-externals "3.0.0"
"@nestjs/common@^10.4.15":
- version "10.4.16"
- resolved "https://registry.yarnpkg.com/@nestjs/common/-/common-10.4.16.tgz#d53ac2d4b9e8e1723a10265ab337ac51d77b432b"
- integrity sha512-40jE0Na48HJ0xDcvmejzOQzaZttqwc0wkMyfDveG70L4hKBohL1FV1nEHoPicqbifkxOQAI+vrWaVwtRwm5g5g==
+ version "10.4.15"
+ resolved "https://registry.yarnpkg.com/@nestjs/common/-/common-10.4.15.tgz#27c291466d9100eb86fdbe6f7bbb4d1a6ad55f70"
+ integrity sha512-vaLg1ZgwhG29BuLDxPA9OAcIlgqzp9/N8iG0wGapyUNTf4IY4O6zAHgN6QalwLhFxq7nOI021vdRojR1oF3bqg==
dependencies:
uid "2.0.2"
iterare "1.2.1"
@@ -7189,24 +7226,24 @@
resolved "https://registry.yarnpkg.com/@nestjsx/util/-/util-5.0.0-alpha.3.tgz#d1182280e9254f0d335efa369da17fa25d260135"
integrity sha512-UTYIxtyx80M42gOZ0VIInSiOLn78P6k1BCziiN8gE3FglzivQ1RGvPpmsRwioYEWG27gOgnMwOQnXv8Zbq8dzQ==
-"@ng-maps/core@^7.0.0":
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/@ng-maps/core/-/core-7.0.0.tgz#c11cf163e6d6537681c4749f02bdf0f1d5956c86"
- integrity sha512-l6jKb6m7r9I7iZsR7hwPffRKSYw1V9FEOF/SD2kAoH/ltJJRibUSkDG81rOFifZUmp3dlyZr3Z3tLivHZIdqTw==
+"@ng-maps/core@^8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@ng-maps/core/-/core-8.0.0.tgz#74195ea652a6e0f02ae45ee16142591c2dab666a"
+ integrity sha512-NEXQZhvmSZObM4qoKpF5MGxQSqKJ/B2hlbdQnfNNRz8OlfZujFUESyRE4VT5DTOdNXlzlovZlEinWfqhWBCCTQ==
dependencies:
tslib "^2.0.0"
-"@ng-maps/google@^7.0.0":
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/@ng-maps/google/-/google-7.0.0.tgz#c95ea3122cc0261a15f663bb6032f0980096f002"
- integrity sha512-f2r69I2NkDeom6fagfuSw0EO4GiCarnlvdDxbq5q+OKydjMP/VUfklNj5a4RzfuFUM/mxlLKRcDHenCl49dBUg==
+"@ng-maps/google@^8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@ng-maps/google/-/google-8.0.0.tgz#f95d6754a278a22b2a0f7b7cd390e39f5ee515dd"
+ integrity sha512-TUm69c2TsNIbVF1wRIID6DhNA8nsIJgN6UI0mlzwvGBv/rjmXipSmMBTrHE7SvtQJcSOTk+sROARlqndi4R3OA==
dependencies:
tslib "^2.0.0"
-"@ng-select/ng-select@^13.9.0":
- version "13.9.1"
- resolved "https://registry.yarnpkg.com/@ng-select/ng-select/-/ng-select-13.9.1.tgz#0456eef5e4a7dae0b336db02b15542b0d8f4e95f"
- integrity sha512-+DzQkQp8coGWZREflJM/qx7BXipV6HEVpZCXoa6fJJRHJfmUMsxa5uV6kUVmClUE98Rkffk9CPHt6kZcj8PuqQ==
+"@ng-select/ng-select@^14.2.2":
+ version "14.2.2"
+ resolved "https://registry.yarnpkg.com/@ng-select/ng-select/-/ng-select-14.2.2.tgz#31a8c6adea192388ab0a8cb0a33be5dd046e13e9"
+ integrity sha512-K7AAeaVpWiwkkWXQFb4+ywoSRDMazCcqptAtpVnJ5+A1W/RJsYOZwf0xLR2Lqe/8PykbQg5+fw6pVve+FFv6eg==
dependencies:
tslib "^2.3.1"
@@ -7237,19 +7274,24 @@
dependencies:
tslib "^2.3.0"
-"@ngtools/webpack@18.2.14":
- version "18.2.14"
- resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-18.2.14.tgz#e21499098acabd36b75d9ae14e057a8947e2997a"
- integrity sha512-rT+Y4WR8QTVsijtb+YRqHcPTpd1ZiwRbklQXRTxU0YGFHpxpi+bhjmY8FjpPoAtdPO1Lg3l3KIZPZa0thG0FNg==
+"@ngtools/webpack@19.2.8":
+ version "19.2.8"
+ resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-19.2.8.tgz#13470efeae8142e669d5c744a3d1f96499b548e8"
+ integrity sha512-PBuEadA1bM3BYqo49FdXIgehgEGMSnPmbfmeMC5xRtOXNw8Ear2ogjqPoOj45L98grcS2XyJPlctC7C8kQpA+g==
-"@ngx-translate/core@^16.0.3":
+"@ngtools/webpack@19.2.9":
+ version "19.2.9"
+ resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-19.2.9.tgz#4988ce24d5822618cafb1bf270d14ac4a545b0b6"
+ integrity sha512-CLfUauqi2Xp/jKGxp5wUwjqfVQWcBE09GMd51ovcCRLkgB2Kh26+CiVnGw5/lkBpISUCNdgN6nGiS+nfqMfFeQ==
+
+"@ngx-translate/core@^16.0.4":
version "16.0.4"
resolved "https://registry.yarnpkg.com/@ngx-translate/core/-/core-16.0.4.tgz#8e17d6ed6b306803ed2eb19ab72a0fdb697f1d76"
integrity sha512-s8llTL2SJvROhqttxvEs7Cg+6qSf4kvZPFYO+cTOY1d8DWTjlutRkWAleZcPPoeX927Dm7ALfL07G7oYDJ7z6w==
dependencies:
tslib "^2.3.0"
-"@ngx-translate/http-loader@^16.0.0":
+"@ngx-translate/http-loader@^16.0.1":
version "16.0.1"
resolved "https://registry.yarnpkg.com/@ngx-translate/http-loader/-/http-loader-16.0.1.tgz#01219d623ea810fd36ba2911d1452975cd32a041"
integrity sha512-xJEOUpvs6Zfc8G4cmQmegFOEpfYSoplTHHoisPNrATXjRBjpaKsBaPOXlZsuFUW2XV00s16gIyI4+9z1XkO5bw==
@@ -7512,15 +7554,16 @@
which "^4.0.0"
"@npmcli/git@^6.0.0", "@npmcli/git@^6.0.1":
- version "6.0.3"
- resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-6.0.3.tgz#966cbb228514372877de5244db285b199836f3aa"
- integrity sha512-GUYESQlxZRAdhs3UhbB6pVRNUELQOHXwK9ruDkwmCv2aZ5y0SApQzUJCg02p3A7Ue2J5hxvlk1YI53c00NmRyQ==
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-6.0.1.tgz#9ee894a35c2082d0b41883e267ff140aece457d5"
+ integrity sha512-BBWMMxeQzalmKadyimwb2/VVQyJB01PH0HhVSNLHNBDZN/M/h/02P6f8fxedIiFhpMj11SO9Ep5tKTBE7zL2nw==
dependencies:
"@npmcli/promise-spawn" "^8.0.0"
ini "^5.0.0"
lru-cache "^10.0.1"
npm-pick-manifest "^10.0.0"
proc-log "^5.0.0"
+ promise-inflight "^1.0.1"
promise-retry "^2.0.1"
semver "^7.3.5"
which "^5.0.0"
@@ -7789,9 +7832,9 @@
which "^3.0.0"
"@npmcli/run-script@^9.0.0", "@npmcli/run-script@^9.0.1":
- version "9.1.0"
- resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-9.1.0.tgz#6168c2be4703fe5ed31acb08a2151cb620ed30a4"
- integrity sha512-aoNSbxtkePXUlbZB+anS1LqsJdctG5n3UVhfU47+CDdwMi6uNTBMF9gPcQRnqghQd2FGzcwwIFBruFMxjhBewg==
+ version "9.0.2"
+ resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-9.0.2.tgz#621f993d59bae770104a5b655a38c6579d5ce6be"
+ integrity sha512-cJXiUlycdizQwvqE1iaAb4VRUM3RX09/8q46zjvy+ct9GhfZRWd7jXYVc1tn/CfRlGPVkX/u4sstRlepsm7hfw==
dependencies:
"@npmcli/node-gyp" "^4.0.0"
"@npmcli/package-json" "^6.0.0"
@@ -7800,6 +7843,20 @@
proc-log "^5.0.0"
which "^5.0.0"
+"@nrwl/devkit@16.0.0-beta.1":
+ version "16.0.0-beta.1"
+ resolved "https://registry.yarnpkg.com/@nrwl/devkit/-/devkit-16.0.0-beta.1.tgz#59ce871dccf27e5217538fc1978a9f62e1396b36"
+ integrity sha512-OoQumfP//G822yy2QLi8RB9a0oEwIda7cp56mc7tyik2Hbw31fB6h5XGgXMHp9aJGhPQQCX9a/uqzoYbYmQwyA==
+ dependencies:
+ "@nx/devkit" "16.0.0-beta.1"
+
+"@nrwl/eslint-plugin-nx@16.0.0-beta.1":
+ version "16.0.0-beta.1"
+ resolved "https://registry.yarnpkg.com/@nrwl/eslint-plugin-nx/-/eslint-plugin-nx-16.0.0-beta.1.tgz#2f6dd2b41112f576928f55bbc4f79a5f5c065feb"
+ integrity sha512-aPZKHBzdq8MwQ35y9BuuLgzdVJ3Ic6LoHJnGyrh2LAQHyX/xxUoDAaXG75aEAXQY65ZU0sTQBKgAk7a6Ghi+Aw==
+ dependencies:
+ "@nx/eslint-plugin-nx" "16.0.0-beta.1"
+
"@nstudio/angular@20.0.3", "@nstudio/angular@^20.0.3":
version "20.0.3"
resolved "https://registry.yarnpkg.com/@nstudio/angular/-/angular-20.0.3.tgz#f93078ba1cc03b66e1716a4f7b13e5ce7b0026f6"
@@ -7871,7 +7928,31 @@
consola "^2.15.0"
node-fetch "^2.6.1"
-"@nx/angular@20.1.3":
+"@nx/angular@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/angular/-/angular-20.8.0.tgz#22b7c463eaf2f376b4157d81b471739f3f7aacaf"
+ integrity sha512-v69G+3v+ZdwN/d0cBNqwx+QTa0WH+2hvLL7QAfE1g3gpUjVFCzwuvPmsrMq67OC5MGhaWknNUL0jN+pCKekhIA==
+ dependencies:
+ "@nx/devkit" "20.8.0"
+ "@nx/eslint" "20.8.0"
+ "@nx/js" "20.8.0"
+ "@nx/module-federation" "20.8.0"
+ "@nx/rspack" "20.8.0"
+ "@nx/web" "20.8.0"
+ "@nx/webpack" "20.8.0"
+ "@nx/workspace" "20.8.0"
+ "@phenomnomnominal/tsquery" "~5.0.1"
+ "@typescript-eslint/type-utils" "^8.0.0"
+ enquirer "~2.3.6"
+ magic-string "~0.30.2"
+ picocolors "^1.1.0"
+ picomatch "4.0.2"
+ piscina "^4.4.0"
+ semver "^7.5.3"
+ tslib "^2.3.0"
+ webpack-merge "^5.8.0"
+
+"@nx/angular@^20.0.0":
version "20.1.3"
resolved "https://registry.yarnpkg.com/@nx/angular/-/angular-20.1.3.tgz#2ee1350d2e9c8959df82b802a6fc4d6ef593a497"
integrity sha512-A+AJc0FNwlPb9jafpXVAHI+Z+xlpxN3ROfYFpb3g6/SJ8NHMDybphR6DxlNi0UJMKV5+96p0v4MJ2UIk7NMoaQ==
@@ -7895,38 +7976,29 @@
webpack "^5.88.0"
webpack-merge "^5.8.0"
-"@nx/angular@^20.0.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@nx/angular/-/angular-20.5.0.tgz#c19bbeddc505a03c96f3bd2dc5747195cfecd0c4"
- integrity sha512-xAImgqAe0tosatUPuTB5dM5vjdIhlvMqmLzVpqcszlAdNK0sud0AuDo783axKCEkVnZplD79rtv7EytltK1NjQ==
- dependencies:
- "@nx/devkit" "20.5.0"
- "@nx/eslint" "20.5.0"
- "@nx/js" "20.5.0"
- "@nx/module-federation" "20.5.0"
- "@nx/web" "20.5.0"
- "@nx/webpack" "20.5.0"
- "@nx/workspace" "20.5.0"
+"@nx/cypress@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/cypress/-/cypress-20.8.0.tgz#82298ca5ce92da0c013d00a179126effa7e3d295"
+ integrity sha512-tiS9R3X//9ZVeNU9d5uV5voDmrp0Sh+B25EuZoeFtah7RNgQcnNXqc488dmCYhCK5Tl58K44eDNyyXvIwOlyCw==
+ dependencies:
+ "@nx/devkit" "20.8.0"
+ "@nx/eslint" "20.8.0"
+ "@nx/js" "20.8.0"
"@phenomnomnominal/tsquery" "~5.0.1"
- "@typescript-eslint/type-utils" "^8.0.0"
- magic-string "~0.30.2"
- minimatch "9.0.3"
- picocolors "^1.1.0"
- piscina "^4.4.0"
- semver "^7.5.3"
+ detect-port "^1.5.1"
+ semver "^7.6.3"
tslib "^2.3.0"
- webpack-merge "^5.8.0"
-"@nx/cypress@20.1.3":
- version "20.1.3"
- resolved "https://registry.yarnpkg.com/@nx/cypress/-/cypress-20.1.3.tgz#2796c14dc08e6ee0124b394d80b35f5205ec1249"
- integrity sha512-cKqB44QfaZjghkDd9L4vDMMp61enrU2Vp6MHzyyEvf3qlj308gWnfJSkfKkilo3HuhhEnTIEN6bylT6mIxsQRQ==
+"@nx/devkit@16.0.0-beta.1":
+ version "16.0.0-beta.1"
+ resolved "https://registry.yarnpkg.com/@nx/devkit/-/devkit-16.0.0-beta.1.tgz#8f0e896f6ef33c69af5e2ea9b0bf5d9e1076557c"
+ integrity sha512-qeOWZ8TK9EG2dE78KysFx8a3uB/JNsnPslfBxBYBBkxIGzpo/gj5Wgf2I+4WBcUNQn58TxiKTT2vA6vAFyssvQ==
dependencies:
- "@nx/devkit" "20.1.3"
- "@nx/eslint" "20.1.3"
- "@nx/js" "20.1.3"
- "@phenomnomnominal/tsquery" "~5.0.1"
- detect-port "^1.5.1"
+ "@nrwl/devkit" "16.0.0-beta.1"
+ ejs "^3.1.7"
+ ignore "^5.0.4"
+ semver "7.3.4"
+ tmp "~0.2.1"
tslib "^2.3.0"
"@nx/devkit@20.1.3":
@@ -7943,10 +8015,10 @@
tslib "^2.3.0"
yargs-parser "21.1.1"
-"@nx/devkit@20.5.0", "@nx/devkit@>=17.1.2 < 21", "@nx/devkit@^20.0.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@nx/devkit/-/devkit-20.5.0.tgz#e62378f3348ce9353f51d7d659240e59fffce337"
- integrity sha512-FLHjNRb6VImdlnDsp3ioIdM600y2xPvN88LFV9zPrG2hDXSaD9Np9YBZvvfCr4x46MrPCTTMoAVwWsCXIBgchg==
+"@nx/devkit@20.4.4", "@nx/devkit@^20.0.0":
+ version "20.4.4"
+ resolved "https://registry.yarnpkg.com/@nx/devkit/-/devkit-20.4.4.tgz#7f353c53784e26d6e4824c433b037ab64a1a43e9"
+ integrity sha512-gwTsgHIIVKjLDPAC32/cWMJRMabT7g64guyQdu9Rp+xbIJfSI+NSYVGftMHljxY1eWbYpN392y9UEVkYjQfzvg==
dependencies:
ejs "^3.1.7"
enquirer "~2.3.6"
@@ -7957,13 +8029,53 @@
tslib "^2.3.0"
yargs-parser "21.1.1"
-"@nx/eslint-plugin@20.1.3":
- version "20.1.3"
- resolved "https://registry.yarnpkg.com/@nx/eslint-plugin/-/eslint-plugin-20.1.3.tgz#9a39282b444b5a0f43fc8734e0c3cc1b57fdf08e"
- integrity sha512-EnYr8HxFZDVckugKMvb7DDkYeyZ4zMJDckPiqCJZAEnUgr97usk2kUDAc5LYyBfTohQPKC84t81ztcIRZ9jMbw==
+"@nx/devkit@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/devkit/-/devkit-20.8.0.tgz#1d967b85d2130097bd6cd4f2da1f1827923609fe"
+ integrity sha512-0616zW0Krwb5frNZ7C0HUItonCDiAHY9UYSTyJm6hnal0Xc6XkJuEAFNjbx2sEOopO85CEAMNeYEHkRyWsSxCQ==
dependencies:
- "@nx/devkit" "20.1.3"
- "@nx/js" "20.1.3"
+ ejs "^3.1.7"
+ enquirer "~2.3.6"
+ ignore "^5.0.4"
+ minimatch "9.0.3"
+ semver "^7.5.3"
+ tmp "~0.2.1"
+ tslib "^2.3.0"
+ yargs-parser "21.1.1"
+
+"@nx/devkit@>=17.1.2 < 21":
+ version "20.3.0"
+ resolved "https://registry.yarnpkg.com/@nx/devkit/-/devkit-20.3.0.tgz#f855c678e362506dad176b4f69fb117a8dde8deb"
+ integrity sha512-u9oRd2F33DLNWPbzpYGW7xuMEYUAOwO9DLP9nGYpxbZXy6Z4AdoKeqhN+KBTyg8+DyQGuKUSEXcWriDyLLgcHw==
+ dependencies:
+ ejs "^3.1.7"
+ enquirer "~2.3.6"
+ ignore "^5.0.4"
+ minimatch "9.0.3"
+ semver "^7.5.3"
+ tmp "~0.2.1"
+ tslib "^2.3.0"
+ yargs-parser "21.1.1"
+
+"@nx/eslint-plugin-nx@16.0.0-beta.1", "@nx/eslint-plugin-nx@^16.0.0-beta.1":
+ version "16.0.0-beta.1"
+ resolved "https://registry.yarnpkg.com/@nx/eslint-plugin-nx/-/eslint-plugin-nx-16.0.0-beta.1.tgz#7d768e958df0ff48c3cfa11a6f8d5db7ed51e2a7"
+ integrity sha512-jg6ROzsvMOhXaReibmFDpvGHsiOKBWvPHYOcmFxh8BRA02WoFIDnqiDJWupoVoLKF4Vx2A4igkP5bjMlSmVX/A==
+ dependencies:
+ "@nrwl/eslint-plugin-nx" "16.0.0-beta.1"
+ "@nx/devkit" "16.0.0-beta.1"
+ "@typescript-eslint/utils" "^5.58.0"
+ chalk "^4.1.0"
+ confusing-browser-globals "^1.0.9"
+ semver "7.3.4"
+
+"@nx/eslint-plugin@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/eslint-plugin/-/eslint-plugin-20.8.0.tgz#de9a92540892ff249dfa182f840eb674c9251e8f"
+ integrity sha512-qcwvSI8MKdEinJ0XX01SIlVkTo2+Vi2ZvDbGccIdrej287hjaipphTvfesPnvnb7TSGZf0JG64P/yukmSFLxEw==
+ dependencies:
+ "@nx/devkit" "20.8.0"
+ "@nx/js" "20.8.0"
"@typescript-eslint/type-utils" "^8.0.0"
"@typescript-eslint/utils" "^8.0.0"
chalk "^4.1.0"
@@ -7984,34 +8096,45 @@
tslib "^2.3.0"
typescript "~5.4.2"
-"@nx/eslint@20.5.0", "@nx/eslint@^20.0.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@nx/eslint/-/eslint-20.5.0.tgz#b268fa7d3ef1ffdf2860d07be113b5093f355868"
- integrity sha512-9rMnlkSJ+Be+rXICDXaBoDfE5PbSV4TBnG0BM2V9dB1iRWpVtgv49ZreDUFYW0AAJ/RrlGHtlbYl6vupxL9EGg==
+"@nx/eslint@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/eslint/-/eslint-20.8.0.tgz#a215f64deaee961af2b5349dc4bee48dc55185bc"
+ integrity sha512-FPpw/RHgg08gkhntf/d7xh8GtNKOjTzLrwh7/YUO5UTi26lCjglM0nsFJJEQS988STElgjBEeDh78wcMuXeQ7g==
dependencies:
- "@nx/devkit" "20.5.0"
- "@nx/js" "20.5.0"
+ "@nx/devkit" "20.8.0"
+ "@nx/js" "20.8.0"
semver "^7.5.3"
tslib "^2.3.0"
typescript "~5.7.2"
-"@nx/jest@20.1.3":
- version "20.1.3"
- resolved "https://registry.yarnpkg.com/@nx/jest/-/jest-20.1.3.tgz#6eaf89156619c316c54c23239a72e8b6cdc1cecd"
- integrity sha512-OGP7iCrpfuVscVeMtQRvC/dvCkyNKSuoqcEnP9bs79agKknxhpvhFmFNwELh9Ovcf6MJber13QeSZCE+p9rxOw==
+"@nx/eslint@^20.0.0":
+ version "20.4.4"
+ resolved "https://registry.yarnpkg.com/@nx/eslint/-/eslint-20.4.4.tgz#05e56a46add2da95452f0586a8f6a587b2e358bc"
+ integrity sha512-qMSLHBLZ44XiiuMc4RPuPJX+y6IE2LQdsW171MVjCoDBi5D12pRSImmmb4QQef+gIuK8Woqc9OHKNz/vSUdTXQ==
+ dependencies:
+ "@nx/devkit" "20.4.4"
+ "@nx/js" "20.4.4"
+ semver "^7.5.3"
+ tslib "^2.3.0"
+ typescript "~5.7.2"
+
+"@nx/jest@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/jest/-/jest-20.8.0.tgz#9d2df8de9d2572b686f6c0789c816e10ca7235b0"
+ integrity sha512-Nrch28OhUnofnIrT+V5+uHWdNVFDHc0G9yF83dPLMipne8NJ9731xxAglL9H7lw73AMTeHaxin2I4UE0Vf1/HA==
dependencies:
"@jest/reporters" "^29.4.1"
"@jest/test-result" "^29.4.1"
- "@nx/devkit" "20.1.3"
- "@nx/js" "20.1.3"
+ "@nx/devkit" "20.8.0"
+ "@nx/js" "20.8.0"
"@phenomnomnominal/tsquery" "~5.0.1"
- chalk "^4.1.0"
identity-obj-proxy "3.0.0"
jest-config "^29.4.1"
jest-resolve "^29.4.1"
jest-util "^29.4.1"
minimatch "9.0.3"
- resolve.exports "1.1.0"
+ picocolors "^1.1.0"
+ resolve.exports "2.0.3"
semver "^7.5.3"
tslib "^2.3.0"
yargs-parser "21.1.1"
@@ -8052,10 +8175,10 @@
tsconfig-paths "^4.1.2"
tslib "^2.3.0"
-"@nx/js@20.5.0", "@nx/js@^20.0.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@nx/js/-/js-20.5.0.tgz#b5c4f6413d4e4df5d1c019bf12f3e663fa145b30"
- integrity sha512-TFdmmSARDNYiwxXUsVowHgMYhjuGzYG4wWExCXkb8m4g6ER1zT9oUzGRf9eC7CHFTGonvAQ8hgBt90xt2EUdQA==
+"@nx/js@20.4.4", "@nx/js@^20.0.0":
+ version "20.4.4"
+ resolved "https://registry.yarnpkg.com/@nx/js/-/js-20.4.4.tgz#a5e5c05a2e3338cb13a1db7701683e9c73d6b7aa"
+ integrity sha512-ZFiQBhL7ajmXVKe9u4iypwh1WKYXpxG2U6ta925h+OuvHSk2YcVNm815stmddAdAI/MzOMBGlCdJdjKf/wwAmA==
dependencies:
"@babel/core" "^7.23.2"
"@babel/plugin-proposal-decorators" "^7.22.7"
@@ -8064,8 +8187,8 @@
"@babel/preset-env" "^7.23.2"
"@babel/preset-typescript" "^7.22.5"
"@babel/runtime" "^7.22.6"
- "@nx/devkit" "20.5.0"
- "@nx/workspace" "20.5.0"
+ "@nx/devkit" "20.4.4"
+ "@nx/workspace" "20.4.4"
"@zkochan/js-yaml" "0.0.7"
babel-plugin-const-enum "^1.0.1"
babel-plugin-macros "^3.1.0"
@@ -8077,11 +8200,10 @@
ignore "^5.0.4"
js-tokens "^4.0.0"
jsonc-parser "3.2.0"
+ minimatch "9.0.3"
npm-package-arg "11.0.1"
npm-run-path "^4.0.1"
ora "5.3.0"
- picocolors "^1.1.0"
- picomatch "4.0.2"
semver "^7.5.3"
source-map-support "0.5.19"
tinyglobby "^0.2.10"
@@ -8089,44 +8211,80 @@
tsconfig-paths "^4.1.2"
tslib "^2.3.0"
-"@nx/module-federation@20.5.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@nx/module-federation/-/module-federation-20.5.0.tgz#32c619d9febb0013fa9fcfc84a7d69c74060da96"
- integrity sha512-dQG3QSsWpdbammmPBP1E4sCkcUCxL5OIwwIDVyYrf2Rdw4f8s6VAGq+BlVFOfP28sVi5xB0wOgDomohVrUXoig==
+"@nx/js@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/js/-/js-20.8.0.tgz#4cb7abfbd0796aac8b761c2e36b932335803445a"
+ integrity sha512-JqQ94l0njkoCCIeqRzFsajMoSV5WodfGGG3giipBe9+cmqsMCZJxh7DiSTGCZ2vnUo3zoX8hodumlk8r+HtMZQ==
+ dependencies:
+ "@babel/core" "^7.23.2"
+ "@babel/plugin-proposal-decorators" "^7.22.7"
+ "@babel/plugin-transform-class-properties" "^7.22.5"
+ "@babel/plugin-transform-runtime" "^7.23.2"
+ "@babel/preset-env" "^7.23.2"
+ "@babel/preset-typescript" "^7.22.5"
+ "@babel/runtime" "^7.22.6"
+ "@nx/devkit" "20.8.0"
+ "@nx/workspace" "20.8.0"
+ "@zkochan/js-yaml" "0.0.7"
+ babel-plugin-const-enum "^1.0.1"
+ babel-plugin-macros "^3.1.0"
+ babel-plugin-transform-typescript-metadata "^0.3.1"
+ chalk "^4.1.0"
+ columnify "^1.6.0"
+ detect-port "^1.5.1"
+ enquirer "~2.3.6"
+ ignore "^5.0.4"
+ js-tokens "^4.0.0"
+ jsonc-parser "3.2.0"
+ npm-package-arg "11.0.1"
+ npm-run-path "^4.0.1"
+ ora "5.3.0"
+ picocolors "^1.1.0"
+ picomatch "4.0.2"
+ semver "^7.5.3"
+ source-map-support "0.5.19"
+ tinyglobby "^0.2.12"
+ tslib "^2.3.0"
+
+"@nx/module-federation@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/module-federation/-/module-federation-20.8.0.tgz#6c329ab8f8f6df616f9eafc7c0c24dc7c96f6d72"
+ integrity sha512-dybk1+2svR+mV3V/d4F9ZUMHhE0q7t1Go8qHC98sRVrRX0xQMDt51s5WETJlBbN230euKfcYBkPNL+l5AdIlLg==
dependencies:
"@module-federation/enhanced" "^0.9.0"
"@module-federation/node" "^2.6.26"
"@module-federation/sdk" "^0.9.0"
- "@nx/devkit" "20.5.0"
- "@nx/js" "20.5.0"
- "@nx/web" "20.5.0"
+ "@nx/devkit" "20.8.0"
+ "@nx/js" "20.8.0"
+ "@nx/web" "20.8.0"
+ "@rspack/core" "^1.1.5"
express "^4.21.2"
http-proxy-middleware "^3.0.3"
picocolors "^1.1.0"
tslib "^2.3.0"
webpack "^5.88.0"
-"@nx/nest@20.1.3":
- version "20.1.3"
- resolved "https://registry.yarnpkg.com/@nx/nest/-/nest-20.1.3.tgz#417b197c6439e174b5bdefc5afa6bb0b8d494385"
- integrity sha512-fbbLkqHPqqIj0osOfaSNzhmshaJdBQoo1GTeJ3uL8ukchYMGQ4NPVDtIusKsiDc/C54bPgy2eDvSVXQ+OIy1tg==
+"@nx/nest@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/nest/-/nest-20.8.0.tgz#9a82c01d73af95ef21168d3928f38dcdce46e883"
+ integrity sha512-24XTwHlb/Ur+AHRAabsUHgC0cjOIQrz4Ec4IArv0y66nq+8MjTTJYWMmUMHCiYojyoL+W7EshTyViBedFPOJCg==
dependencies:
"@nestjs/schematics" "^9.1.0"
- "@nx/devkit" "20.1.3"
- "@nx/eslint" "20.1.3"
- "@nx/js" "20.1.3"
- "@nx/node" "20.1.3"
+ "@nx/devkit" "20.8.0"
+ "@nx/eslint" "20.8.0"
+ "@nx/js" "20.8.0"
+ "@nx/node" "20.8.0"
tslib "^2.3.0"
-"@nx/node@20.1.3":
- version "20.1.3"
- resolved "https://registry.yarnpkg.com/@nx/node/-/node-20.1.3.tgz#55701cb6fd736ca2c43f17acfd73abba95e18010"
- integrity sha512-w2njtw+bcRDe7YRTY4QxG6B4/K755yH+GYewQlA6MvK1kNaRdC7a/bnD6wEjRfGRwq3xBsY9NGW3vAc7c1yGAw==
+"@nx/node@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/node/-/node-20.8.0.tgz#568a9318794cc7ca521ee76006668842fd2c316c"
+ integrity sha512-lvywGoWAx2yV7Y4QHzl1petGumUrGvpk9pZYW+xaXPi3Arv5thMeycZCC2Oj28kws5Kf9wbaq90jyu4JSI3xgA==
dependencies:
- "@nx/devkit" "20.1.3"
- "@nx/eslint" "20.1.3"
- "@nx/jest" "20.1.3"
- "@nx/js" "20.1.3"
+ "@nx/devkit" "20.8.0"
+ "@nx/eslint" "20.8.0"
+ "@nx/jest" "20.8.0"
+ "@nx/js" "20.8.0"
tslib "^2.3.0"
"@nx/nx-darwin-arm64@20.1.3":
@@ -8134,100 +8292,236 @@
resolved "https://registry.yarnpkg.com/@nx/nx-darwin-arm64/-/nx-darwin-arm64-20.1.3.tgz#4b81ee39c847d4d41304a34feaacbbc08e6de002"
integrity sha512-m0Rwawht7Jwq6u2QPmAtsv+khFsTUIZUfiO1kXGcKOX3nQdJ7i82zLRd5yGbrDTAyRbAsgWO3v8zWQyhC1oGjw==
-"@nx/nx-darwin-arm64@20.5.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@nx/nx-darwin-arm64/-/nx-darwin-arm64-20.5.0.tgz#0343dd42f9601db48b5a5bbbd5853a3dc4bb580d"
- integrity sha512-HlMMC4d253kk/yrafiepk8bhXMl+v4BIugftwUzRl7AOznyNgaj5WDaIVXZLZzt+WwYw6CTb+zYxfY4LuPFvOg==
+"@nx/nx-darwin-arm64@20.3.0":
+ version "20.3.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-darwin-arm64/-/nx-darwin-arm64-20.3.0.tgz#3c454846eadc591f967da6a86ea84165005e7d91"
+ integrity sha512-9PqSe1Sh7qNqA4GL0cZH0t3S0EZzb2Xn14XY9au7yf0+eoxyag1oETjjULrxLeUmSoXW2hDxzNtoqKFE9zF07Q==
+
+"@nx/nx-darwin-arm64@20.4.4":
+ version "20.4.4"
+ resolved "https://registry.yarnpkg.com/@nx/nx-darwin-arm64/-/nx-darwin-arm64-20.4.4.tgz#4acc9f3b1ab88fea96a1e3b57445b5b6cd97a9dd"
+ integrity sha512-dlNrC7yYGVOeS6YZLJfRZLioZQF6aAPNYHHBexU1XnJq/1QS1pJEKdW582KsQGw+ZQqWiIr1XmexIjewMpx0Xg==
+
+"@nx/nx-darwin-arm64@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-darwin-arm64/-/nx-darwin-arm64-20.8.0.tgz#527b2ea49dfb7f089b3e994534698337336ccb61"
+ integrity sha512-A6Te2KlINtcOo/depXJzPyjbk9E0cmgbom/sm/49XdQ8G94aDfyIIY1RIdwmDCK5NVd74KFG3JIByTk5+VnAhA==
"@nx/nx-darwin-x64@20.1.3":
version "20.1.3"
resolved "https://registry.yarnpkg.com/@nx/nx-darwin-x64/-/nx-darwin-x64-20.1.3.tgz#e538453e27217d65dafbe678aef8e25196540167"
integrity sha512-WsQK1sxOJFzD0vOtFqSHpLzWuFO4vG7G1PUyJ1Y5mPo4vbRslqoAUTqF7n42bBRPY/lE2aT7BqAAj8hm4PgcnQ==
-"@nx/nx-darwin-x64@20.5.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@nx/nx-darwin-x64/-/nx-darwin-x64-20.5.0.tgz#9f30e393ef144221f747c7f2265ab339da721f8c"
- integrity sha512-+LO8YC5Iy1168saPeItNePChToP2TuRCj3MuxEtTTJXoRlab38rNaOjWaV1itvtcgrzkQi/IohINWMI8WC5b7g==
+"@nx/nx-darwin-x64@20.3.0":
+ version "20.3.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-darwin-x64/-/nx-darwin-x64-20.3.0.tgz#7f044e184f1174803311f6aeff8e8a08ea47eac3"
+ integrity sha512-gsGGhJVvi5QZVVTZie5sNMo1zOAU+A2edm6DGegObdFRLV41Ju/Yrm/gTaSp4yUtywd3UU4S/30C/nI2c55adA==
+
+"@nx/nx-darwin-x64@20.4.4":
+ version "20.4.4"
+ resolved "https://registry.yarnpkg.com/@nx/nx-darwin-x64/-/nx-darwin-x64-20.4.4.tgz#cb7413253c7df0bbb7c9968e63104e2ee85b584e"
+ integrity sha512-CLQ5mjAmjCnKuTGybaVBYQo+Me9ZXRiWXZOm8Vu7hbUtPgKob0ldnk0pIy8wqlNnfBV+YHPQ0lpHUUQ80iG8IQ==
+
+"@nx/nx-darwin-x64@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-darwin-x64/-/nx-darwin-x64-20.8.0.tgz#548304ea0a99c7b6a366e64f58b5af6322e3ea42"
+ integrity sha512-UpqayUjgalArXaDvOoshqSelTrEp42cGDsZGy0sqpxwBpm3oPQ8wE1d7oBAmRo208rAxOuFP0LZRFUqRrwGvLA==
"@nx/nx-freebsd-x64@20.1.3":
version "20.1.3"
resolved "https://registry.yarnpkg.com/@nx/nx-freebsd-x64/-/nx-freebsd-x64-20.1.3.tgz#5a2dbbbe01db1abaac76c4b3fd6eac1b183b64a7"
integrity sha512-HV57XMtCVPy/0LZtifcEHbOpVNKLTOBFUoUXkmGYBmAKfw7lccfF600/tunTCZ4aijsD6+opEeGHzlDUK0Ir1w==
-"@nx/nx-freebsd-x64@20.5.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@nx/nx-freebsd-x64/-/nx-freebsd-x64-20.5.0.tgz#677a8a0376aa95b543c870e598255da0b4c0ddd4"
- integrity sha512-he3VOuj35XDAAmO3s6LqiWx00CsCMgHceNOHziCELQL0tfQlvvyI0Agmhesw68BAbabt+mKH9g+miENiaMknbg==
+"@nx/nx-freebsd-x64@20.3.0":
+ version "20.3.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-freebsd-x64/-/nx-freebsd-x64-20.3.0.tgz#cebad83e0b25bcd856cf17b511004a100e167e55"
+ integrity sha512-DiymYZBBu0upbiskdfn9KRyoXdyvKohezJiV3j4VkeRE8KR2p04NgwRQviDFbeD1cjWrDy9wk8y+G5PabLlqAA==
+
+"@nx/nx-freebsd-x64@20.4.4":
+ version "20.4.4"
+ resolved "https://registry.yarnpkg.com/@nx/nx-freebsd-x64/-/nx-freebsd-x64-20.4.4.tgz#33cd1bdd7298ea994da6d1ffbadfdd9121f40797"
+ integrity sha512-coIZJq/fCkSxzVS/i9HQzPSPVPiONFlJ2Rw/OsGbNB/PD+3vGktYPnoFg7l8QxiH9b2hFuHUKK8TXBBd16z/Nw==
+
+"@nx/nx-freebsd-x64@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-freebsd-x64/-/nx-freebsd-x64-20.8.0.tgz#36222d5483c878c134a86c2f379222fe5b551d37"
+ integrity sha512-dUR2fsLyKZYMHByvjy2zvmdMbsdXAiP+6uTlIAuu8eHMZ2FPQCAtt7lPYLwOFUxUXChbek2AJ+uCI0gRAgK/eg==
"@nx/nx-linux-arm-gnueabihf@20.1.3":
version "20.1.3"
resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-20.1.3.tgz#a242df34e82686024fa48bdc153c63ce20082d5f"
integrity sha512-RzP0vc4yhXktKxz7iiwVYFkgpyb5TN/lLGcKLMM4kjuyYJ0IUX58Kk5FDoqCy+HMKiMfGyTOT4fP+/UEsgW6qQ==
-"@nx/nx-linux-arm-gnueabihf@20.5.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-20.5.0.tgz#90ad8f7fc97edd49ef389adba87d74f970489e62"
- integrity sha512-xeysjXvm4xZa/ED7XlbzuS28sCOGZ0AlS7DKWRxEMv60iprxewj0WKPdH7RveiNNauzgHWOW/wxvTWXRu+i36Q==
+"@nx/nx-linux-arm-gnueabihf@20.3.0":
+ version "20.3.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-20.3.0.tgz#f456d0597c8201b516f1ec4fe40137869036ac2b"
+ integrity sha512-Aksx66e8jmt/4rGJ/5z34SWXbPcYr9Ht52UonEeuCdQdoEvAOs7yBUbllYOjIcUsfZikEyZgvqfiQslsggSJdQ==
+
+"@nx/nx-linux-arm-gnueabihf@20.4.4":
+ version "20.4.4"
+ resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-20.4.4.tgz#fbbeed460ebf6a5a2cfb87cd771d3ddf29431b10"
+ integrity sha512-YKY9WOn66AyQcNV4QrZIfHu67ip1+BTblRVRUF4ekMzOxHzmHbuyIqdF0GuDy5a8etFi2cKqZ+ZD5Rrr6xY78w==
+
+"@nx/nx-linux-arm-gnueabihf@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-20.8.0.tgz#f2fdeb1b55008de49584d7e8637bfa0a58431ba1"
+ integrity sha512-GuZ7t0SzSX5ksLYva7koKZovQ5h/Kr1pFbOsQcBf3VLREBqFPSz6t7CVYpsIsMhiu/I3EKq6FZI3wDOJbee5uw==
"@nx/nx-linux-arm64-gnu@20.1.3":
version "20.1.3"
resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-20.1.3.tgz#6a3459871a6f25ce5a5a8991708349f052139e71"
integrity sha512-WCaU5AiGx21C3t3v4+d7nrA1r5Xc5Wk7yVxZFWh+mKHdcqk1JebDIr1qj/7yoKHD2R9k2Vp5x5Kd0pzAGS8AyA==
-"@nx/nx-linux-arm64-gnu@20.5.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-20.5.0.tgz#115b8f8e36671c206492de2503e5aeb59b41177f"
- integrity sha512-pj+6OA7d1ltkW/ZYFooi3bDtqVFPxi8YYiZlQx7enEuOxbrTvpjEPvBjVyf+oYpCe9rfKlx9ghzufqsI4uGM0w==
+"@nx/nx-linux-arm64-gnu@20.3.0":
+ version "20.3.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-20.3.0.tgz#64dc627bfda5b1fafbc6772858f14d7343b22d35"
+ integrity sha512-Y5wmYEwF1bl014Ps8QjagI911VbViQSFHSTVOCNSObdAzig9E5o6NOkoWe+doT1UZLrrInnlkrggQUsbtdKjOg==
+
+"@nx/nx-linux-arm64-gnu@20.4.4":
+ version "20.4.4"
+ resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-20.4.4.tgz#46fd26569715c84dc101b89eafdef627e60dda47"
+ integrity sha512-HbZyjKQVm4T0FX2rjFedLqCcdLx3JjQmYDNLga/hG3f5CnhMWb2z35PWJbPVuCN/vC3r8FZeqqyB5csx8/hu5w==
+
+"@nx/nx-linux-arm64-gnu@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-20.8.0.tgz#1f259ca919af1292deaec9135abf08b5bda8074d"
+ integrity sha512-CiI955Q+XZmBBZ7cQqQg0MhGEFwZIgSpJnjPfWBt3iOYP8aE6nZpNOkmD7O8XcN/nEwwyeCOF8euXqEStwsk8w==
"@nx/nx-linux-arm64-musl@20.1.3":
version "20.1.3"
resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-20.1.3.tgz#d829cc050fc08cdb055611bce6de2c9b50bff7aa"
integrity sha512-lKAvR9jNyx/qvk3UZGYNJAoK5mkZc+rDD4gA23tOGYPjNrWHJEgbWycCk5A9tQ4QX4CskCNmkgQx0lOMdLeXsw==
-"@nx/nx-linux-arm64-musl@20.5.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-20.5.0.tgz#0b6639d4c1222d3b96f2ac05f6c6bc8874843953"
- integrity sha512-gCIJEb/VYv6pxiAcSeizX0jpOmTnPmgYVi2EZLSWus0Pg6FIwMHE4MX5kuqehyvnDt9xInb7Rh8vgz/JBOOsbA==
+"@nx/nx-linux-arm64-musl@20.3.0":
+ version "20.3.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-20.3.0.tgz#f1a7f75bcbfb54fa94068e1d542a8b96ee2046fd"
+ integrity sha512-yGcIkmImyOMfPkQSYH2EVjPmFE0VkLcO71Bbkpr3RlJ1N/vjYxsGbdnqPiBb8Wshib/hmwpiMHf/yzQtKH0SQw==
+
+"@nx/nx-linux-arm64-musl@20.4.4":
+ version "20.4.4"
+ resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-20.4.4.tgz#7a40eb1c8a0bce394a65af128168aaef8e951c4a"
+ integrity sha512-7rrvV85kM4FCc9ui3hfG7dc3leUxVTZSjN4QaaAqHG3vMJFey52Ao/C82GaO73e6C+zQjN6rhxGMwx/m3BQwpA==
+
+"@nx/nx-linux-arm64-musl@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-20.8.0.tgz#154e800f750a223c2c3599d404ed5826b574c049"
+ integrity sha512-Iy9DpvVisxsfNh4gOinmMQ4cLWdBlgvt1wmry1UwvcXg479p1oJQ1Kp1wksUZoWYqrAG8VPZUmkE0f7gjyHTGg==
"@nx/nx-linux-x64-gnu@20.1.3":
version "20.1.3"
resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-20.1.3.tgz#85c14044c145a28618c9ba11262ee13ac59b602d"
integrity sha512-RKNm7RnTgCSl2HstDb/qMKO9r8o81EUe+UZB5fgjNR89PB757iHUX30kM0xbkiRZui1vIkMAvWcNsidxBnGGfg==
-"@nx/nx-linux-x64-gnu@20.5.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-20.5.0.tgz#65453486ca18e1fe9e63908bed5d91d3c2950c62"
- integrity sha512-hfCDmfy7TBQJdgBwNvOh55e8Y00Cxcddw2QeKguvy6vsnVa7fesXDWCw2t3m/VPPQDKQGd8cY1lS1JqX3N+wCA==
+"@nx/nx-linux-x64-gnu@20.3.0":
+ version "20.3.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-20.3.0.tgz#0972f21aebcbcab98d29c13954e54b0d0f7f05c0"
+ integrity sha512-nkA2DLI+rpmiuiy7dyXP4l9s7dgHkQWDX7lG1XltiT41RzAReJF1h8qBE6XrsAYE1CtI76DRWVphnc93+iZr+A==
+
+"@nx/nx-linux-x64-gnu@20.4.4":
+ version "20.4.4"
+ resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-20.4.4.tgz#13f2e6d14c8e911a84772b88c0c2f1e1d230d683"
+ integrity sha512-ZMtRbzdwjt3e9snnUa8sTyNY3vZlVtU4gQLb9CC9re23j1ZdUrJsqPVHlCQWCwpbZ8UN67ptCe40Wr590OHA1w==
+
+"@nx/nx-linux-x64-gnu@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-20.8.0.tgz#3e5651040537c8bf3444276082383e9cf068b477"
+ integrity sha512-kZrrXXzVSbqwmdTmQ9xL4Jhi0/FSLrePSxYCL9oOM3Rsj0lmo/aC9kz4NBv1ZzuqT7fumpBOnhqiL1QyhOWOeQ==
"@nx/nx-linux-x64-musl@20.1.3":
version "20.1.3"
resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-20.1.3.tgz#cbbfe982d633eef93c2c2f8818688e604e4ec179"
integrity sha512-aCXEWt1WQDPLzgp5I+NfqaP0y4ZKi2aauZMnSO6KE54MnZmvB+B4HQMZvqHM3dfU0jluvLRBmVIPLeTHiCccrw==
-"@nx/nx-linux-x64-musl@20.5.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-20.5.0.tgz#4dc759063f88ac66d6e7b3ce979355a6af869e40"
- integrity sha512-RTTCPjZNSDFE5mUdavDFimDw/aXNBY0w+iuRM5q17rDHxwa//DghCY0GEkBdfuxD7wpw+sRwE18mWsNDek5lXA==
+"@nx/nx-linux-x64-musl@20.3.0":
+ version "20.3.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-20.3.0.tgz#d0b6a21451922dcb9f1cfe455eb42686648b8147"
+ integrity sha512-sPMtTt9iTrCmFEIp9Qv27UX9PeL1aqKck2dz2TAFbXKVtF6+djOdTcNnTYw45KIP6izcUcOXXAq4G0QSQE7CLg==
+
+"@nx/nx-linux-x64-musl@20.4.4":
+ version "20.4.4"
+ resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-20.4.4.tgz#2cbd4de69ecf5cd0295040b393b06b9783bdf7b0"
+ integrity sha512-Ff8lJLrsJgfywp7cmr+ERHJ1pesEortJx4s0P5GugSioqqQx0pNi40YCWKRUKy5aZ1+HCysSAjGLtxmx+fSv+g==
+
+"@nx/nx-linux-x64-musl@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-20.8.0.tgz#f8586e5cfb88d668d147ce9090ef4f29a0971a8b"
+ integrity sha512-0l9jEMN8NhULKYCFiDF7QVpMMNG40duya+OF8dH0OzFj52N0zTsvsgLY72TIhslCB/cC74oAzsmWEIiFslscnA==
"@nx/nx-win32-arm64-msvc@20.1.3":
version "20.1.3"
resolved "https://registry.yarnpkg.com/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-20.1.3.tgz#e06ce386354934bf3000d0989e734bf975de5864"
integrity sha512-625rRYFfoCTu73bjDZ+jOLU0lvEN2heiiUGlErc6GchfcWuIcZy16oyYQzZX69UQqryGkkZVTaoyMXhGS5p7Tg==
-"@nx/nx-win32-arm64-msvc@20.5.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-20.5.0.tgz#72ff36cb6322bdaa4ef3f4f13bd4119e01289eba"
- integrity sha512-nT9WlG0QA8D74UJhEP1feGrV00/bas1nnqS+zkwnpJs0vcPmMuIktdETh3lEnqrGD04R7GtwbKtoGIGiZh5m9w==
+"@nx/nx-win32-arm64-msvc@20.3.0":
+ version "20.3.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-20.3.0.tgz#c3a34b32cc1499fed27e38d9a92aed830df54fbf"
+ integrity sha512-ppfNa/8OfpWA9o26Pz3vArN4ulAC+Hx70/ghPRCP7ed1Mb3Z6yR2Ry9KfBRImbqajvuAExM0TePKMGq9LCdXmg==
+
+"@nx/nx-win32-arm64-msvc@20.4.4":
+ version "20.4.4"
+ resolved "https://registry.yarnpkg.com/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-20.4.4.tgz#cb1d4c8b39772d691b57c56b60534bd09d40784b"
+ integrity sha512-ayJ4tOyr2YjlYNFpbYUeSVAksupQea82bTuB9q4Scvzh35PU3UvMF9TYNt3ficBv2jedW/yD6dzHBbZJDHS1/A==
+
+"@nx/nx-win32-arm64-msvc@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-20.8.0.tgz#69e15fc1baa351d55e950f867f9c003c301601f2"
+ integrity sha512-5miZJmRSwx1jybBsiB3NGocXL9TxGdT2D+dOqR2fsLklpGz0ItEWm8+i8lhDjgOdAr2nFcuQUfQMY57f9FOHrA==
"@nx/nx-win32-x64-msvc@20.1.3":
version "20.1.3"
resolved "https://registry.yarnpkg.com/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-20.1.3.tgz#a19e3916f2bc3400fafb292bf09eb17808bb2f63"
integrity sha512-XUbxSB6vUWoixNyCXkaXGkeUy/syqFOBXVh5Wbi6bqwTJ5o6EFUxCnzK/JsK55dfOz+I/jMXJzDWYEDAsikTSA==
-"@nx/nx-win32-x64-msvc@20.5.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-20.5.0.tgz#e8653e81b671755ae19efb4c3fb921d2432a9df7"
- integrity sha512-KQVqFSYfc8ToSBgzhVNV8WcFEvLdy1zp58qwewa0xnE7DDncMbA+6YoVizUcQ/6GZRlMJ9sdVn3kwm5B8eD5mg==
+"@nx/nx-win32-x64-msvc@20.3.0":
+ version "20.3.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-20.3.0.tgz#878b9d95386489feda17eb87ab22e85970f56620"
+ integrity sha512-8FOejZ4emtLSVn3pYWs4PIc3n4//qMbwMDPVxmPE8us3ir91Qh0bzr5zRj7Q8sEdSgvneXRXqtBp2grY2KMJsw==
+
+"@nx/nx-win32-x64-msvc@20.4.4":
+ version "20.4.4"
+ resolved "https://registry.yarnpkg.com/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-20.4.4.tgz#d7e2c29955cd0551e3e225536b69dcbcfff7f8e1"
+ integrity sha512-c4z4eRmkGGgH9WCFEI8wK1eyXyk2rREhhjuuEmxeJYBQB/SiWjRDBIUyIiJe2ItsWJdEHPKdPQJL52xgTICSVA==
+
+"@nx/nx-win32-x64-msvc@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-20.8.0.tgz#59cc6da4731a5dfa3e67aa89b91a6cbaa7a4e189"
+ integrity sha512-0P5r+bDuSNvoWys+6C1/KqGpYlqwSHpigCcyRzR62iZpT3OooZv+nWO06RlURkxMR8LNvYXTSSLvoLkjxqM8uQ==
+
+"@nx/rspack@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/rspack/-/rspack-20.8.0.tgz#524595bf584cc7ad51081845bf4849638a6eb7c1"
+ integrity sha512-lxascsF4XygCICchwcGWP1RQkKxEZAPqiLGLYJMxTj6ewXv9RsjJMIJftd3PO4UVhRU+BhvDZD5W9OX+NX23jQ==
+ dependencies:
+ "@nx/devkit" "20.8.0"
+ "@nx/js" "20.8.0"
+ "@nx/module-federation" "20.8.0"
+ "@nx/web" "20.8.0"
+ "@phenomnomnominal/tsquery" "~5.0.1"
+ "@rspack/core" "^1.1.5"
+ "@rspack/dev-server" "^1.0.9"
+ "@rspack/plugin-react-refresh" "^1.0.0"
+ autoprefixer "^10.4.9"
+ browserslist "^4.21.4"
+ css-loader "^6.4.0"
+ enquirer "~2.3.6"
+ express "^4.21.2"
+ http-proxy-middleware "^3.0.3"
+ less-loader "11.1.0"
+ license-webpack-plugin "^4.0.2"
+ loader-utils "^2.0.3"
+ picocolors "^1.1.0"
+ postcss "^8.4.38"
+ postcss-import "~14.1.0"
+ postcss-loader "^8.1.1"
+ sass "^1.85.0"
+ sass-embedded "^1.83.4"
+ sass-loader "^16.0.4"
+ source-map-loader "^5.0.0"
+ style-loader "^3.3.0"
+ ts-checker-rspack-plugin "^1.1.1"
+ tslib "^2.3.0"
+ webpack "^5.80.0"
+ webpack-node-externals "^3.0.0"
"@nx/web@20.1.3":
version "20.1.3"
@@ -8241,13 +8535,25 @@
picocolors "^1.1.0"
tslib "^2.3.0"
-"@nx/web@20.5.0", "@nx/web@^20.0.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@nx/web/-/web-20.5.0.tgz#3f1350556e9158954d5f6d2eca5d3a1928f253fb"
- integrity sha512-hxM9CKedYC8uE4e6Wo2/5xt2wCzJPHiJLq/6AK3liwK/o7bAJfkvwM/b9gwPAIVYy5R0DDgfA4N6vYO231eflA==
+"@nx/web@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/web/-/web-20.8.0.tgz#6e298d0a94d953d43e938e896a54c190dfbb76a8"
+ integrity sha512-jbK3+ZrVygYHMGCbp7NO1/G+ejH6Z74PcWwEKSZDPm7io6fxieO9j+GSzucvUWrY4cfJNC+S//X4tENwVj0g2w==
+ dependencies:
+ "@nx/devkit" "20.8.0"
+ "@nx/js" "20.8.0"
+ detect-port "^1.5.1"
+ http-server "^14.1.0"
+ picocolors "^1.1.0"
+ tslib "^2.3.0"
+
+"@nx/web@^20.0.0":
+ version "20.4.4"
+ resolved "https://registry.yarnpkg.com/@nx/web/-/web-20.4.4.tgz#449a3ac4cf7c6fe2c4d50e3a5725f4db4f72ec55"
+ integrity sha512-A7AIjphL2v9EzBNYURlyK5awL2nM46oLqfp6wIJt5Un6z4to0nBLfY6Fg9gaZa/X4xnoQy/qgZfEzsVurFYrpQ==
dependencies:
- "@nx/devkit" "20.5.0"
- "@nx/js" "20.5.0"
+ "@nx/devkit" "20.4.4"
+ "@nx/js" "20.4.4"
detect-port "^1.5.1"
http-server "^14.1.0"
picocolors "^1.1.0"
@@ -8300,14 +8606,14 @@
webpack-node-externals "^3.0.0"
webpack-subresource-integrity "^5.1.0"
-"@nx/webpack@20.5.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@nx/webpack/-/webpack-20.5.0.tgz#197f92559d8ccfe0014e0909d6e290dfc1bdb79f"
- integrity sha512-sA02FviLw8D/hWm/u4l13onwNTl1lJX2nJaC0dOIJ1RfZZauD7Ca5tYjqwPC8uXh4/9h+0Kpewm66aJYML+WnA==
+"@nx/webpack@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/webpack/-/webpack-20.8.0.tgz#69807d1f7a1ee090e0cbb81527da5e879a431425"
+ integrity sha512-zqboigPhlPNMzOIFECkLzkCOfpvOR1BnE7zu2Vyzok18s3dhb1UErar6MuSb6Dh5Mwfe2HELa8iD60bM8PBSQg==
dependencies:
"@babel/core" "^7.23.2"
- "@nx/devkit" "20.5.0"
- "@nx/js" "20.5.0"
+ "@nx/devkit" "20.8.0"
+ "@nx/js" "20.8.0"
"@phenomnomnominal/tsquery" "~5.0.1"
ajv "^8.12.0"
autoprefixer "^10.4.9"
@@ -8339,8 +8645,8 @@
ts-loader "^9.3.1"
tsconfig-paths-webpack-plugin "4.0.0"
tslib "^2.3.0"
- webpack "^5.80.0"
- webpack-dev-server "^5.0.4"
+ webpack "5.98.0"
+ webpack-dev-server "^5.2.1"
webpack-node-externals "^3.0.0"
webpack-subresource-integrity "^5.1.0"
@@ -8356,53 +8662,31 @@
tslib "^2.3.0"
yargs-parser "21.1.1"
-"@nx/workspace@20.5.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@nx/workspace/-/workspace-20.5.0.tgz#a7fa11b790867603d094fa9b6d4541a8f98381d1"
- integrity sha512-Oe5p7rcgF/o4G2XDHYOxQxa/eDEfvmQV+kFCs8DBQwlzUwREAP4/pHFI0AIdWSfYkq55C5PE/PNKUGHrk2/xTA==
+"@nx/workspace@20.4.4":
+ version "20.4.4"
+ resolved "https://registry.yarnpkg.com/@nx/workspace/-/workspace-20.4.4.tgz#6b920270c57948311f9bdc3b2c6914e870885dd8"
+ integrity sha512-4iIN9GWLHCycCUTAaVeR7TAk2t9wSgxQN/znvSmG5eWSS2ri9XjeN6/8kpoTDBpmQ1/4gAKSMGo9BNMlbvqD2g==
dependencies:
- "@nx/devkit" "20.5.0"
+ "@nx/devkit" "20.4.4"
chalk "^4.1.0"
enquirer "~2.3.6"
- nx "20.5.0"
+ nx "20.4.4"
tslib "^2.3.0"
yargs-parser "21.1.1"
-"@oclif/command@^1.8.15":
- version "1.8.36"
- resolved "https://registry.yarnpkg.com/@oclif/command/-/command-1.8.36.tgz#9739b9c268580d064a50887c4597d1b4e86ca8b5"
- integrity sha512-/zACSgaYGtAQRzc7HjzrlIs14FuEYAZrMOEwicRoUnZVyRunG4+t5iSEeQu0Xy2bgbCD0U1SP/EdeNZSTXRwjQ==
+"@nx/workspace@20.8.0":
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/@nx/workspace/-/workspace-20.8.0.tgz#271f119c978a3915a0a706063832508d23c5ce49"
+ integrity sha512-FdaHA5ISHSN+RyHswAAx+2A9HC77kWeFgeucdX2NSBs2QK2Lzg2Et639RzR1sYk2gYTP6tOkQXHHGKcg3jmiYQ==
dependencies:
- "@oclif/config" "^1.18.2"
- "@oclif/errors" "^1.3.6"
- "@oclif/help" "^1.0.1"
- "@oclif/parser" "^3.8.17"
- debug "^4.1.1"
- semver "^7.5.4"
-
-"@oclif/config@1.18.16":
- version "1.18.16"
- resolved "https://registry.yarnpkg.com/@oclif/config/-/config-1.18.16.tgz#3235d260ab1eb8388ebb6255bca3dd956249d796"
- integrity sha512-VskIxVcN22qJzxRUq+raalq6Q3HUde7sokB7/xk5TqRZGEKRVbFeqdQBxDWwQeudiJEgcNiMvIFbMQ43dY37FA==
- dependencies:
- "@oclif/errors" "^1.3.6"
- "@oclif/parser" "^3.8.16"
- debug "^4.3.4"
- globby "^11.1.0"
- is-wsl "^2.1.1"
- tslib "^2.6.1"
-
-"@oclif/config@^1.18.2":
- version "1.18.17"
- resolved "https://registry.yarnpkg.com/@oclif/config/-/config-1.18.17.tgz#00aa4049da27edca8f06fc106832d9f0f38786a5"
- integrity sha512-k77qyeUvjU8qAJ3XK3fr/QVAqsZO8QOBuESnfeM5HHtPNLSyfVcwiMM2zveSW5xRdLSG3MfV8QnLVkuyCL2ENg==
- dependencies:
- "@oclif/errors" "^1.3.6"
- "@oclif/parser" "^3.8.17"
- debug "^4.3.4"
- globby "^11.1.0"
- is-wsl "^2.1.1"
- tslib "^2.6.1"
+ "@nx/devkit" "20.8.0"
+ "@zkochan/js-yaml" "0.0.7"
+ chalk "^4.1.0"
+ enquirer "~2.3.6"
+ nx "20.8.0"
+ picomatch "4.0.2"
+ tslib "^2.3.0"
+ yargs-parser "21.1.1"
"@oclif/core@4.0.34":
version "4.0.34"
@@ -8452,47 +8736,6 @@
wordwrap "^1.0.0"
wrap-ansi "^7.0.0"
-"@oclif/errors@1.3.6", "@oclif/errors@^1.3.5", "@oclif/errors@^1.3.6":
- version "1.3.6"
- resolved "https://registry.yarnpkg.com/@oclif/errors/-/errors-1.3.6.tgz#e8fe1fc12346cb77c4f274e26891964f5175f75d"
- integrity sha512-fYaU4aDceETd89KXP+3cLyg9EHZsLD3RxF2IU9yxahhBpspWjkWi3Dy3bTgcwZ3V47BgxQaGapzJWDM33XIVDQ==
- dependencies:
- clean-stack "^3.0.0"
- fs-extra "^8.1"
- indent-string "^4.0.0"
- strip-ansi "^6.0.1"
- wrap-ansi "^7.0.0"
-
-"@oclif/help@^1.0.1":
- version "1.0.15"
- resolved "https://registry.yarnpkg.com/@oclif/help/-/help-1.0.15.tgz#5e36e576b8132a4906d2662204ad9de7ece87e8f"
- integrity sha512-Yt8UHoetk/XqohYX76DfdrUYLsPKMc5pgkzsZVHDyBSkLiGRzujVaGZdjr32ckVZU9q3a47IjhWxhip7Dz5W/g==
- dependencies:
- "@oclif/config" "1.18.16"
- "@oclif/errors" "1.3.6"
- chalk "^4.1.2"
- indent-string "^4.0.0"
- lodash "^4.17.21"
- string-width "^4.2.0"
- strip-ansi "^6.0.0"
- widest-line "^3.1.0"
- wrap-ansi "^6.2.0"
-
-"@oclif/linewrap@^1.0.0":
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/@oclif/linewrap/-/linewrap-1.0.0.tgz#aedcb64b479d4db7be24196384897b5000901d91"
- integrity sha512-Ups2dShK52xXa8w6iBWLgcjPJWjais6KPJQq3gQ/88AY6BXoTX+MIGFPrWQO1KLMiQfoTpcLnUwloN4brrVUHw==
-
-"@oclif/parser@^3.8.16", "@oclif/parser@^3.8.17":
- version "3.8.17"
- resolved "https://registry.yarnpkg.com/@oclif/parser/-/parser-3.8.17.tgz#e1ce0f29b22762d752d9da1c7abd57ad81c56188"
- integrity sha512-l04iSd0xoh/16TGVpXb81Gg3z7tlQGrEup16BrVLsZBK6SEYpYHRJZnM32BwZrHI97ZSFfuSwVlzoo6HdsaK8A==
- dependencies:
- "@oclif/errors" "^1.3.6"
- "@oclif/linewrap" "^1.0.0"
- chalk "^4.1.0"
- tslib "^2.6.2"
-
"@oclif/plugin-autocomplete@3.2.11":
version "3.2.11"
resolved "https://registry.yarnpkg.com/@oclif/plugin-autocomplete/-/plugin-autocomplete-3.2.11.tgz#7737142ad5205e5391f4438deb05a603e3e5db1b"
@@ -8528,11 +8771,6 @@
"@oclif/core" "^4"
ansis "^3.3.1"
-"@oclif/screen@^1.0.4":
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/@oclif/screen/-/screen-1.0.4.tgz#b740f68609dfae8aa71c3a6cab15d816407ba493"
- integrity sha512-60CHpq+eqnTxLZQ4PGHYNwUX572hgpMHGPtTWMjdTMsAvlm69lZV/4ly6O3sAYkomo4NggGcomrDpBe34rxUqw==
-
"@octokit/app@^14.0.2":
version "14.1.0"
resolved "https://registry.yarnpkg.com/@octokit/app/-/app-14.1.0.tgz#2d491dc70746773b83f61edf5c56817dd7d3854b"
@@ -8692,6 +8930,19 @@
before-after-hook "^2.2.0"
universal-user-agent "^6.0.0"
+"@octokit/core@^4.2.1":
+ version "4.2.4"
+ resolved "https://registry.yarnpkg.com/@octokit/core/-/core-4.2.4.tgz#d8769ec2b43ff37cc3ea89ec4681a20ba58ef907"
+ integrity sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==
+ dependencies:
+ "@octokit/auth-token" "^3.0.0"
+ "@octokit/graphql" "^5.0.0"
+ "@octokit/request" "^6.0.0"
+ "@octokit/request-error" "^3.0.0"
+ "@octokit/types" "^9.0.0"
+ before-after-hook "^2.2.0"
+ universal-user-agent "^6.0.0"
+
"@octokit/core@^5.0.0", "@octokit/core@^5.0.2":
version "5.2.0"
resolved "https://registry.yarnpkg.com/@octokit/core/-/core-5.2.0.tgz#ddbeaefc6b44a39834e1bb2e58a49a117672a7ea"
@@ -8723,10 +8974,10 @@
is-plain-object "^5.0.0"
universal-user-agent "^6.0.0"
-"@octokit/endpoint@^9.0.6":
- version "9.0.6"
- resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-9.0.6.tgz#114d912108fe692d8b139cfe7fc0846dfd11b6c0"
- integrity sha512-H1fNTMA57HbkFESSt3Y9+FBICv+0jFceJFPWDePYlR/iMGrwM5ph+Dd4XRQs+8X+PUFURLQgX9ChPfhJ/1uNQw==
+"@octokit/endpoint@^9.0.1":
+ version "9.0.5"
+ resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-9.0.5.tgz#e6c0ee684e307614c02fc6ac12274c50da465c44"
+ integrity sha512-ekqR4/+PCLkEBF6qgj8WqJfvDq65RH85OAgrtnVp1mSxaXF03u2xW/hUdweGS5654IlC0wkNYC18Z50tSYTAFw==
dependencies:
"@octokit/types" "^13.1.0"
universal-user-agent "^6.0.0"
@@ -8740,12 +8991,21 @@
"@octokit/types" "^6.0.3"
universal-user-agent "^6.0.0"
+"@octokit/graphql@^5.0.0":
+ version "5.0.6"
+ resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-5.0.6.tgz#9eac411ac4353ccc5d3fca7d76736e6888c5d248"
+ integrity sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==
+ dependencies:
+ "@octokit/request" "^6.0.0"
+ "@octokit/types" "^9.0.0"
+ universal-user-agent "^6.0.0"
+
"@octokit/graphql@^7.1.0":
- version "7.1.1"
- resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-7.1.1.tgz#79d9f3d0c96a8fd13d64186fe5c33606d48b79cc"
- integrity sha512-3mkDltSfcDUoa176nlGoA32RGjeWjl3K7F/BwHwRMJUW/IteSa4bnSV8p2ThNkcIcZU2umkZWxwETSSCJf2Q7g==
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-7.1.0.tgz#9bc1c5de92f026648131f04101cab949eeffe4e0"
+ integrity sha512-r+oZUH7aMFui1ypZnAvZmn0KSqAUgE1/tUXIWaqUCa1758ts/Jio84GZuzsvUkme98kv0WFY8//n0J1Z+vsIsQ==
dependencies:
- "@octokit/request" "^8.4.1"
+ "@octokit/request" "^8.3.0"
"@octokit/types" "^13.0.0"
universal-user-agent "^6.0.0"
@@ -8845,13 +9105,6 @@
dependencies:
"@octokit/types" "^13.5.0"
-"@octokit/plugin-paginate-rest@11.4.4-cjs.2":
- version "11.4.4-cjs.2"
- resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-11.4.4-cjs.2.tgz#979a10d577bce7a393e8e65953887e42b0a05000"
- integrity sha512-2dK6z8fhs8lla5PaOTgqfCGBxgAv/le+EhPs27KklPhm1bKObpu6lXzwfUEQ16ajXzqNrKMujsFyo9K2eaoISw==
- dependencies:
- "@octokit/types" "^13.7.0"
-
"@octokit/plugin-paginate-rest@^2.16.8", "@octokit/plugin-paginate-rest@^2.6.2":
version "2.21.3"
resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.21.3.tgz#7f12532797775640dbb8224da577da7dc210c87e"
@@ -8859,10 +9112,18 @@
dependencies:
"@octokit/types" "^6.40.0"
+"@octokit/plugin-paginate-rest@^6.1.2":
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz#f86456a7a1fe9e58fec6385a85cf1b34072341f8"
+ integrity sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==
+ dependencies:
+ "@octokit/tsconfig" "^1.0.2"
+ "@octokit/types" "^9.2.3"
+
"@octokit/plugin-paginate-rest@^9.0.0":
- version "9.2.2"
- resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.2.2.tgz#c516bc498736bcdaa9095b9a1d10d9d0501ae831"
- integrity sha512-u3KYkGF7GcZnSD/3UP0S7K5XUFT2FkOQdcfXZGZQPGv3lm4F2Xbf71lvjldr8c1H3nNbF+33cLEkWYbokGWqiQ==
+ version "9.2.1"
+ resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.2.1.tgz#2e2a2f0f52c9a4b1da1a3aa17dabe3c459b9e401"
+ integrity sha512-wfGhE/TAkXZRLjksFXuDZdmGnJQHvtU/joFQdweXUgzo1XwvBCD4o4+75NtFfjfLK5IwLf9vHTfSiU3sLRYpRw==
dependencies:
"@octokit/types" "^12.6.0"
@@ -8883,13 +9144,6 @@
dependencies:
"@octokit/types" "^13.5.0"
-"@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1":
- version "13.3.2-cjs.1"
- resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-13.3.2-cjs.1.tgz#d0a142ff41d8f7892b6ccef45979049f51ecaa8d"
- integrity sha512-VUjIjOOvF2oELQmiFpWA1aOPdawpyaCUqcEBc/UOUnj3Xp6DJGrJ1+bjUIIDzdHjnFNO6q57ODMfdEZnoBkCwQ==
- dependencies:
- "@octokit/types" "^13.8.0"
-
"@octokit/plugin-rest-endpoint-methods@^5.0.1", "@octokit/plugin-rest-endpoint-methods@^5.12.0":
version "5.16.2"
resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.16.2.tgz#7ee8bf586df97dd6868cf68f641354e908c25342"
@@ -8898,6 +9152,13 @@
"@octokit/types" "^6.39.0"
deprecation "^2.3.1"
+"@octokit/plugin-rest-endpoint-methods@^7.1.2":
+ version "7.2.3"
+ resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.2.3.tgz#37a84b171a6cb6658816c82c4082ac3512021797"
+ integrity sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==
+ dependencies:
+ "@octokit/types" "^10.0.0"
+
"@octokit/plugin-retry@^3.0.6":
version "3.0.9"
resolved "https://registry.yarnpkg.com/@octokit/plugin-retry/-/plugin-retry-3.0.9.tgz#ae625cca1e42b0253049102acd71c1d5134788fe"
@@ -8949,10 +9210,10 @@
deprecation "^2.0.0"
once "^1.4.0"
-"@octokit/request-error@^5.0.0", "@octokit/request-error@^5.1.0", "@octokit/request-error@^5.1.1":
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-5.1.1.tgz#b9218f9c1166e68bb4d0c89b638edc62c9334805"
- integrity sha512-v9iyEQJH6ZntoENr9/yXxjuezh4My67CBSu9r6Ve/05Iu5gNgnisNWOsoJHTP6k0Rr0+HQIpnH+kyammu90q/g==
+"@octokit/request-error@^5.0.0", "@octokit/request-error@^5.1.0":
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-5.1.0.tgz#ee4138538d08c81a60be3f320cd71063064a3b30"
+ integrity sha512-GETXfE05J0+7H2STzekpKObFe765O5dlAKUTLNGeH+x47z7JjXHfsHKo5z21D/o/IOZTUEI6nyWyR+bZVP/n5Q==
dependencies:
"@octokit/types" "^13.1.0"
deprecation "^2.0.0"
@@ -8982,25 +9243,25 @@
node-fetch "^2.6.7"
universal-user-agent "^6.0.0"
-"@octokit/request@^8.3.1", "@octokit/request@^8.4.1":
- version "8.4.1"
- resolved "https://registry.yarnpkg.com/@octokit/request/-/request-8.4.1.tgz#715a015ccf993087977ea4365c44791fc4572486"
- integrity sha512-qnB2+SY3hkCmBxZsR/MPCybNmbJe4KAlfWErXq+rBKkQJlbjdJeS85VI9r8UqeLYLvnAenU8Q1okM/0MBsAGXw==
+"@octokit/request@^8.3.0", "@octokit/request@^8.3.1":
+ version "8.4.0"
+ resolved "https://registry.yarnpkg.com/@octokit/request/-/request-8.4.0.tgz#7f4b7b1daa3d1f48c0977ad8fffa2c18adef8974"
+ integrity sha512-9Bb014e+m2TgBeEJGEbdplMVWwPmL1FPtggHQRkV+WVsMggPtEkLKPlcVYm/o8xKLkpJ7B+6N8WfQMtDLX2Dpw==
dependencies:
- "@octokit/endpoint" "^9.0.6"
- "@octokit/request-error" "^5.1.1"
+ "@octokit/endpoint" "^9.0.1"
+ "@octokit/request-error" "^5.1.0"
"@octokit/types" "^13.1.0"
universal-user-agent "^6.0.0"
-"@octokit/rest@20.1.2", "@octokit/rest@^20.0.2":
- version "20.1.2"
- resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-20.1.2.tgz#1d74d0c72ade0d64f7c5416448d5c885f5e3ccc4"
- integrity sha512-GmYiltypkHHtihFwPRxlaorG5R9VAHuk/vbszVoRTGXnAsY60wYLkh/E2XiFmdZmqrisw+9FaazS1i5SbdWYgA==
+"@octokit/rest@19.0.11":
+ version "19.0.11"
+ resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-19.0.11.tgz#2ae01634fed4bd1fca5b642767205ed3fd36177c"
+ integrity sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==
dependencies:
- "@octokit/core" "^5.0.2"
- "@octokit/plugin-paginate-rest" "11.4.4-cjs.2"
- "@octokit/plugin-request-log" "^4.0.0"
- "@octokit/plugin-rest-endpoint-methods" "13.3.2-cjs.1"
+ "@octokit/core" "^4.2.1"
+ "@octokit/plugin-paginate-rest" "^6.1.2"
+ "@octokit/plugin-request-log" "^1.0.4"
+ "@octokit/plugin-rest-endpoint-methods" "^7.1.2"
"@octokit/rest@^18.0.6":
version "18.12.0"
@@ -9012,6 +9273,28 @@
"@octokit/plugin-request-log" "^1.0.4"
"@octokit/plugin-rest-endpoint-methods" "^5.12.0"
+"@octokit/rest@^20.0.2":
+ version "20.1.1"
+ resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-20.1.1.tgz#ec775864f53fb42037a954b9a40d4f5275b3dc95"
+ integrity sha512-MB4AYDsM5jhIHro/dq4ix1iWTLGToIGk6cWF5L6vanFaMble5jTX/UBQyiv05HsWnwUtY8JrfHy2LWfKwihqMw==
+ dependencies:
+ "@octokit/core" "^5.0.2"
+ "@octokit/plugin-paginate-rest" "11.3.1"
+ "@octokit/plugin-request-log" "^4.0.0"
+ "@octokit/plugin-rest-endpoint-methods" "13.2.2"
+
+"@octokit/tsconfig@^1.0.2":
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/@octokit/tsconfig/-/tsconfig-1.0.2.tgz#59b024d6f3c0ed82f00d08ead5b3750469125af7"
+ integrity sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==
+
+"@octokit/types@^10.0.0":
+ version "10.0.0"
+ resolved "https://registry.yarnpkg.com/@octokit/types/-/types-10.0.0.tgz#7ee19c464ea4ada306c43f1a45d444000f419a4a"
+ integrity sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==
+ dependencies:
+ "@octokit/openapi-types" "^18.0.0"
+
"@octokit/types@^12.0.0", "@octokit/types@^12.2.0", "@octokit/types@^12.6.0":
version "12.6.0"
resolved "https://registry.yarnpkg.com/@octokit/types/-/types-12.6.0.tgz#8100fb9eeedfe083aae66473bd97b15b62aedcb2"
@@ -9019,10 +9302,10 @@
dependencies:
"@octokit/openapi-types" "^20.0.0"
-"@octokit/types@^13.0.0", "@octokit/types@^13.1.0", "@octokit/types@^13.5.0", "@octokit/types@^13.7.0", "@octokit/types@^13.8.0":
- version "13.8.0"
- resolved "https://registry.yarnpkg.com/@octokit/types/-/types-13.8.0.tgz#3815885e5abd16ed9ffeea3dced31d37ce3f8a0a"
- integrity sha512-x7DjTIbEpEWXK99DMd01QfWy0hd5h4EN+Q7shkdKds3otGQP+oWE/y0A76i1OvH9fygo4ddvNf7ZvF0t78P98A==
+"@octokit/types@^13.0.0", "@octokit/types@^13.1.0", "@octokit/types@^13.5.0":
+ version "13.7.0"
+ resolved "https://registry.yarnpkg.com/@octokit/types/-/types-13.7.0.tgz#22d0e26a8c9f53599bfb907213d8ccde547f36aa"
+ integrity sha512-BXfRP+3P3IN6fd4uF3SniaHKOO4UXWBfkdR3vA8mIvaoO/wLjGN5qivUtW0QRitBHHMcfC41SLhNVYIZZE+wkA==
dependencies:
"@octokit/openapi-types" "^23.0.1"
@@ -9040,7 +9323,7 @@
dependencies:
"@octokit/openapi-types" "^14.0.0"
-"@octokit/types@^9.0.0":
+"@octokit/types@^9.0.0", "@octokit/types@^9.2.3":
version "9.3.2"
resolved "https://registry.yarnpkg.com/@octokit/types/-/types-9.3.2.tgz#3f5f89903b69f6a2d196d78ec35f888c0013cac5"
integrity sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==
@@ -10066,15 +10349,15 @@
resolved "https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.19.0.tgz#0c17f80b45de1c8778dfdf17acb1e9d4c4aa4ba8"
integrity sha512-14jRpC8f5c0gPSwoZ7SbEJni1PqI+AhAE8m1bMz6v+RPM4OlP1PT2UHBJj5Qh/ALLPjhVU/aZUK3YyjTUqqQVg==
-"@opentelemetry/semantic-conventions@1.28.0":
+"@opentelemetry/semantic-conventions@1.28.0", "@opentelemetry/semantic-conventions@^1.17.1", "@opentelemetry/semantic-conventions@^1.27.0":
version "1.28.0"
resolved "https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.28.0.tgz#337fb2bca0453d0726696e745f50064411f646d6"
integrity sha512-lp4qAiMTD4sNWW4DbKLBkfiMZ4jbAboJIGOQr5DvciMRI494OapieI9qiODpOt0XBr1LjIDy1xAGAnVs5supTA==
-"@opentelemetry/semantic-conventions@^1.17.1", "@opentelemetry/semantic-conventions@^1.27.0", "@opentelemetry/semantic-conventions@^1.30.0":
- version "1.30.0"
- resolved "https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.30.0.tgz#3a42c4c475482f2ec87c12aad98832dc0087dc9a"
- integrity sha512-4VlGgo32k2EQ2wcCY3vEU28A0O13aOtHz3Xt2/2U5FAh9EfhD6t6DqL5Z6yAnRCntbTFDU4YfbpyzSlHNWycPw==
+"@opentelemetry/semantic-conventions@^1.30.0":
+ version "1.32.0"
+ resolved "https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.32.0.tgz#a15e8f78f32388a7e4655e7f539570e40958ca3f"
+ integrity sha512-s0OpmpQFSfMrmedAn9Lhg4KWJELHCU6uU9dtIJ28N8UGhf9Y55im5X8fEzwhwDwiSqN+ZPSNrDJF7ivf/AuRPQ==
"@opentelemetry/sql-common@^0.40.1":
version "0.40.1"
@@ -10328,18 +10611,7 @@
dependencies:
"@rollup/pluginutils" "^5.1.0"
-"@rollup/plugin-node-resolve@^15.2.3":
- version "15.3.1"
- resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.3.1.tgz#66008953c2524be786aa319d49e32f2128296a78"
- integrity sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==
- dependencies:
- "@rollup/pluginutils" "^5.0.1"
- "@types/resolve" "1.20.2"
- deepmerge "^4.2.2"
- is-module "^1.0.0"
- resolve "^1.22.1"
-
-"@rollup/pluginutils@^5.0.1", "@rollup/pluginutils@^5.1.0":
+"@rollup/pluginutils@^5.1.0":
version "5.1.4"
resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.1.4.tgz#bb94f1f9eaaac944da237767cdfee6c5b2262d4a"
integrity sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==
@@ -10348,211 +10620,414 @@
estree-walker "^2.0.2"
picomatch "^4.0.2"
-"@rollup/rollup-android-arm-eabi@4.22.4":
- version "4.22.4"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.4.tgz#8b613b9725e8f9479d142970b106b6ae878610d5"
- integrity sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w==
-
-"@rollup/rollup-android-arm-eabi@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.35.0.tgz#e1d7700735f7e8de561ef7d1fa0362082a180c43"
- integrity sha512-uYQ2WfPaqz5QtVgMxfN6NpLD+no0MYHDBywl7itPYd3K5TjjSghNKmX8ic9S8NU8w81NVhJv/XojcHptRly7qQ==
-
-"@rollup/rollup-android-arm64@4.22.4":
- version "4.22.4"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.4.tgz#654ca1049189132ff602bfcf8df14c18da1f15fb"
- integrity sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA==
-
-"@rollup/rollup-android-arm64@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.35.0.tgz#fa6cdfb1fc9e2c8e227a7f35d524d8f7f90cf4db"
- integrity sha512-FtKddj9XZudurLhdJnBl9fl6BwCJ3ky8riCXjEw3/UIbjmIY58ppWwPEvU3fNu+W7FUsAsB1CdH+7EQE6CXAPA==
-
-"@rollup/rollup-darwin-arm64@4.22.4":
- version "4.22.4"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.4.tgz#6d241d099d1518ef0c2205d96b3fa52e0fe1954b"
- integrity sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q==
-
-"@rollup/rollup-darwin-arm64@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.35.0.tgz#6da5a1ddc4f11d4a7ae85ab443824cb6bf614e30"
- integrity sha512-Uk+GjOJR6CY844/q6r5DR/6lkPFOw0hjfOIzVx22THJXMxktXG6CbejseJFznU8vHcEBLpiXKY3/6xc+cBm65Q==
-
-"@rollup/rollup-darwin-x64@4.22.4":
- version "4.22.4"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.4.tgz#42bd19d292a57ee11734c980c4650de26b457791"
- integrity sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw==
-
-"@rollup/rollup-darwin-x64@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.35.0.tgz#25b74ce2d8d3f9ea8e119b01384d44a1c0a0d3ae"
- integrity sha512-3IrHjfAS6Vkp+5bISNQnPogRAW5GAV1n+bNCrDwXmfMHbPl5EhTmWtfmwlJxFRUCBZ+tZ/OxDyU08aF6NI/N5Q==
-
-"@rollup/rollup-freebsd-arm64@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.35.0.tgz#be3d39e3441df5d6e187c83d158c60656c82e203"
- integrity sha512-sxjoD/6F9cDLSELuLNnY0fOrM9WA0KrM0vWm57XhrIMf5FGiN8D0l7fn+bpUeBSU7dCgPV2oX4zHAsAXyHFGcQ==
-
-"@rollup/rollup-freebsd-x64@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.35.0.tgz#cd932d3ec679711efd65ca25821fb318e25b7ce4"
- integrity sha512-2mpHCeRuD1u/2kruUiHSsnjWtHjqVbzhBkNVQ1aVD63CcexKVcQGwJ2g5VphOd84GvxfSvnnlEyBtQCE5hxVVw==
-
-"@rollup/rollup-linux-arm-gnueabihf@4.22.4":
- version "4.22.4"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.4.tgz#f23555ee3d8fe941c5c5fd458cd22b65eb1c2232"
- integrity sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ==
-
-"@rollup/rollup-linux-arm-gnueabihf@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.35.0.tgz#d300b74c6f805474225632f185daaeae760ac2bb"
- integrity sha512-mrA0v3QMy6ZSvEuLs0dMxcO2LnaCONs1Z73GUDBHWbY8tFFocM6yl7YyMu7rz4zS81NDSqhrUuolyZXGi8TEqg==
-
-"@rollup/rollup-linux-arm-musleabihf@4.22.4":
- version "4.22.4"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.4.tgz#f3bbd1ae2420f5539d40ac1fde2b38da67779baa"
- integrity sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg==
-
-"@rollup/rollup-linux-arm-musleabihf@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.35.0.tgz#2caac622380f314c41934ed1e68ceaf6cc380cc3"
- integrity sha512-DnYhhzcvTAKNexIql8pFajr0PiDGrIsBYPRvCKlA5ixSS3uwo/CWNZxB09jhIapEIg945KOzcYEAGGSmTSpk7A==
-
-"@rollup/rollup-linux-arm64-gnu@4.22.4":
- version "4.22.4"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.4.tgz#7abe900120113e08a1f90afb84c7c28774054d15"
- integrity sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw==
-
-"@rollup/rollup-linux-arm64-gnu@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.35.0.tgz#1ec841650b038cc15c194c26326483fd7ebff3e3"
- integrity sha512-uagpnH2M2g2b5iLsCTZ35CL1FgyuzzJQ8L9VtlJ+FckBXroTwNOaD0z0/UF+k5K3aNQjbm8LIVpxykUOQt1m/A==
-
-"@rollup/rollup-linux-arm64-musl@4.22.4":
- version "4.22.4"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.4.tgz#9e655285c8175cd44f57d6a1e8e5dedfbba1d820"
- integrity sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA==
-
-"@rollup/rollup-linux-arm64-musl@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.35.0.tgz#2fc70a446d986e27f6101ea74e81746987f69150"
- integrity sha512-XQxVOCd6VJeHQA/7YcqyV0/88N6ysSVzRjJ9I9UA/xXpEsjvAgDTgH3wQYz5bmr7SPtVK2TsP2fQ2N9L4ukoUg==
-
-"@rollup/rollup-linux-loongarch64-gnu@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.35.0.tgz#561bd045cd9ce9e08c95f42e7a8688af8c93d764"
- integrity sha512-5pMT5PzfgwcXEwOaSrqVsz/LvjDZt+vQ8RT/70yhPU06PTuq8WaHhfT1LW+cdD7mW6i/J5/XIkX/1tCAkh1W6g==
-
-"@rollup/rollup-linux-powerpc64le-gnu@4.22.4":
- version "4.22.4"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.4.tgz#9a79ae6c9e9d8fe83d49e2712ecf4302db5bef5e"
- integrity sha512-3aVCK9xfWW1oGQpTsYJJPF6bfpWfhbRnhdlyhak2ZiyFLDaayz0EP5j9V1RVLAAxlmWKTDfS9wyRyY3hvhPoOg==
-
-"@rollup/rollup-linux-powerpc64le-gnu@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.35.0.tgz#45d849a0b33813f33fe5eba9f99e0ff15ab5caad"
- integrity sha512-c+zkcvbhbXF98f4CtEIP1EBA/lCic5xB0lToneZYvMeKu5Kamq3O8gqrxiYYLzlZH6E3Aq+TSW86E4ay8iD8EA==
-
-"@rollup/rollup-linux-riscv64-gnu@4.22.4":
- version "4.22.4"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.4.tgz#67ac70eca4ace8e2942fabca95164e8874ab8128"
- integrity sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA==
-
-"@rollup/rollup-linux-riscv64-gnu@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.35.0.tgz#78dde3e6fcf5b5733a97d0a67482d768aa1e83a5"
- integrity sha512-s91fuAHdOwH/Tad2tzTtPX7UZyytHIRR6V4+2IGlV0Cej5rkG0R61SX4l4y9sh0JBibMiploZx3oHKPnQBKe4g==
-
-"@rollup/rollup-linux-s390x-gnu@4.22.4":
- version "4.22.4"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.4.tgz#9f883a7440f51a22ed7f99e1d070bd84ea5005fc"
- integrity sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q==
-
-"@rollup/rollup-linux-s390x-gnu@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.35.0.tgz#2e34835020f9e03dfb411473a5c2a0e8a9c5037b"
- integrity sha512-hQRkPQPLYJZYGP+Hj4fR9dDBMIM7zrzJDWFEMPdTnTy95Ljnv0/4w/ixFw3pTBMEuuEuoqtBINYND4M7ujcuQw==
-
-"@rollup/rollup-linux-x64-gnu@4.22.4":
- version "4.22.4"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.4.tgz#70116ae6c577fe367f58559e2cffb5641a1dd9d0"
- integrity sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg==
-
-"@rollup/rollup-linux-x64-gnu@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.35.0.tgz#4f9774beddc6f4274df57ac99862eb23040de461"
- integrity sha512-Pim1T8rXOri+0HmV4CdKSGrqcBWX0d1HoPnQ0uw0bdp1aP5SdQVNBy8LjYncvnLgu3fnnCt17xjWGd4cqh8/hA==
-
-"@rollup/rollup-linux-x64-musl@4.22.4":
- version "4.22.4"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.4.tgz#f473f88219feb07b0b98b53a7923be716d1d182f"
- integrity sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g==
-
-"@rollup/rollup-linux-x64-musl@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.35.0.tgz#dfcff2c1aed518b3d23ccffb49afb349d74fb608"
- integrity sha512-QysqXzYiDvQWfUiTm8XmJNO2zm9yC9P/2Gkrwg2dH9cxotQzunBHYr6jk4SujCTqnfGxduOmQcI7c2ryuW8XVg==
-
-"@rollup/rollup-win32-arm64-msvc@4.22.4":
- version "4.22.4"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.4.tgz#4349482d17f5d1c58604d1c8900540d676f420e0"
- integrity sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw==
-
-"@rollup/rollup-win32-arm64-msvc@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.35.0.tgz#b0b37e2d77041e3aa772f519291309abf4c03a84"
- integrity sha512-OUOlGqPkVJCdJETKOCEf1mw848ZyJ5w50/rZ/3IBQVdLfR5jk/6Sr5m3iO2tdPgwo0x7VcncYuOvMhBWZq8ayg==
-
-"@rollup/rollup-win32-ia32-msvc@4.22.4":
- version "4.22.4"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.4.tgz#a6fc39a15db618040ec3c2a24c1e26cb5f4d7422"
- integrity sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g==
-
-"@rollup/rollup-win32-ia32-msvc@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.35.0.tgz#5b5a40e44a743ddc0e06b8e1b3982f856dc9ce0a"
- integrity sha512-2/lsgejMrtwQe44glq7AFFHLfJBPafpsTa6JvP2NGef/ifOa4KBoglVf7AKN7EV9o32evBPRqfg96fEHzWo5kw==
-
-"@rollup/rollup-win32-x64-msvc@4.22.4":
- version "4.22.4"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.4.tgz#3dd5d53e900df2a40841882c02e56f866c04d202"
- integrity sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q==
-
-"@rollup/rollup-win32-x64-msvc@4.35.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.35.0.tgz#05f25dbc9981bee1ae6e713daab10397044a46ca"
- integrity sha512-PIQeY5XDkrOysbQblSW7v3l1MDZzkTEzAfTPkj5VAu3FW8fS4ynyLg2sINp0fp3SjZ8xkRYpLqoKcYqAkhU1dw==
-
-"@rollup/wasm-node@^4.18.0":
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/@rollup/wasm-node/-/wasm-node-4.35.0.tgz#c2ba110149041f13e40448750ce2b24943cc12fb"
- integrity sha512-mVs1GGfgeDCcMCFN5FystW0B5XjwhARAnomDBm2wTITTAioNr+YrUJ4UPjV33iXiLH1xAKWuUo30Od5HzrfQyA==
+"@rollup/rollup-android-arm-eabi@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.29.1.tgz#9bd38df6a29afb7f0336d988bc8112af0c8816c0"
+ integrity sha512-ssKhA8RNltTZLpG6/QNkCSge+7mBQGUqJRisZ2MDQcEGaK93QESEgWK2iOpIDZ7k9zPVkG5AS3ksvD5ZWxmItw==
+
+"@rollup/rollup-android-arm-eabi@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.34.8.tgz#731df27dfdb77189547bcef96ada7bf166bbb2fb"
+ integrity sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==
+
+"@rollup/rollup-android-arm-eabi@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.40.0.tgz#d964ee8ce4d18acf9358f96adc408689b6e27fe3"
+ integrity sha512-+Fbls/diZ0RDerhE8kyC6hjADCXA1K4yVNlH0EYfd2XjyH0UGgzaQ8MlT0pCXAThfxv3QUAczHaL+qSv1E4/Cg==
+
+"@rollup/rollup-android-arm64@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.29.1.tgz#bd1a98390e15b76eeef907175a37c5f0f9e4d214"
+ integrity sha512-CaRfrV0cd+NIIcVVN/jx+hVLN+VRqnuzLRmfmlzpOzB87ajixsN/+9L5xNmkaUUvEbI5BmIKS+XTwXsHEb65Ew==
+
+"@rollup/rollup-android-arm64@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.34.8.tgz#4bea6db78e1f6927405df7fe0faf2f5095e01343"
+ integrity sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==
+
+"@rollup/rollup-android-arm64@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.40.0.tgz#9b5e130ecc32a5fc1e96c09ff371743ee71a62d3"
+ integrity sha512-PPA6aEEsTPRz+/4xxAmaoWDqh67N7wFbgFUJGMnanCFs0TV99M0M8QhhaSCks+n6EbQoFvLQgYOGXxlMGQe/6w==
+
+"@rollup/rollup-darwin-arm64@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.29.1.tgz#bc6fa8a2cc77b5f367424e5e994e3537524e6879"
+ integrity sha512-2ORr7T31Y0Mnk6qNuwtyNmy14MunTAMx06VAPI6/Ju52W10zk1i7i5U3vlDRWjhOI5quBcrvhkCHyF76bI7kEw==
+
+"@rollup/rollup-darwin-arm64@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.34.8.tgz#a7aab77d44be3c44a20f946e10160f84e5450e7f"
+ integrity sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==
+
+"@rollup/rollup-darwin-arm64@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.40.0.tgz#ef439182c739b20b3c4398cfc03e3c1249ac8903"
+ integrity sha512-GwYOcOakYHdfnjjKwqpTGgn5a6cUX7+Ra2HeNj/GdXvO2VJOOXCiYYlRFU4CubFM67EhbmzLOmACKEfvp3J1kQ==
+
+"@rollup/rollup-darwin-x64@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.29.1.tgz#76059c91f06b17406347b127df10f065283b2e61"
+ integrity sha512-j/Ej1oanzPjmN0tirRd5K2/nncAhS9W6ICzgxV+9Y5ZsP0hiGhHJXZ2JQ53iSSjj8m6cRY6oB1GMzNn2EUt6Ng==
+
+"@rollup/rollup-darwin-x64@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.34.8.tgz#c572c024b57ee8ddd1b0851703ace9eb6cc0dd82"
+ integrity sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==
+
+"@rollup/rollup-darwin-x64@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.40.0.tgz#d7380c1531ab0420ca3be16f17018ef72dd3d504"
+ integrity sha512-CoLEGJ+2eheqD9KBSxmma6ld01czS52Iw0e2qMZNpPDlf7Z9mj8xmMemxEucinev4LgHalDPczMyxzbq+Q+EtA==
+
+"@rollup/rollup-freebsd-arm64@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.29.1.tgz#83178315c0be4b4c8c1fd835e1952d2dc1eb4e6e"
+ integrity sha512-91C//G6Dm/cv724tpt7nTyP+JdN12iqeXGFM1SqnljCmi5yTXriH7B1r8AD9dAZByHpKAumqP1Qy2vVNIdLZqw==
+
+"@rollup/rollup-freebsd-arm64@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.34.8.tgz#cf74f8113b5a83098a5c026c165742277cbfb88b"
+ integrity sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==
+
+"@rollup/rollup-freebsd-arm64@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.40.0.tgz#cbcbd7248823c6b430ce543c59906dd3c6df0936"
+ integrity sha512-r7yGiS4HN/kibvESzmrOB/PxKMhPTlz+FcGvoUIKYoTyGd5toHp48g1uZy1o1xQvybwwpqpe010JrcGG2s5nkg==
+
+"@rollup/rollup-freebsd-x64@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.29.1.tgz#1ef24fa0576bf7899a0a0a649156606dbd7a0d46"
+ integrity sha512-hEioiEQ9Dec2nIRoeHUP6hr1PSkXzQaCUyqBDQ9I9ik4gCXQZjJMIVzoNLBRGet+hIUb3CISMh9KXuCcWVW/8w==
+
+"@rollup/rollup-freebsd-x64@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.34.8.tgz#39561f3a2f201a4ad6a01425b1ff5928154ecd7c"
+ integrity sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==
+
+"@rollup/rollup-freebsd-x64@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.40.0.tgz#96bf6ff875bab5219c3472c95fa6eb992586a93b"
+ integrity sha512-mVDxzlf0oLzV3oZOr0SMJ0lSDd3xC4CmnWJ8Val8isp9jRGl5Dq//LLDSPFrasS7pSm6m5xAcKaw3sHXhBjoRw==
+
+"@rollup/rollup-linux-arm-gnueabihf@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.29.1.tgz#443a6f5681bf4611caae42988994a6d8ee676216"
+ integrity sha512-Py5vFd5HWYN9zxBv3WMrLAXY3yYJ6Q/aVERoeUFwiDGiMOWsMs7FokXihSOaT/PMWUty/Pj60XDQndK3eAfE6A==
+
+"@rollup/rollup-linux-arm-gnueabihf@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.34.8.tgz#980d6061e373bfdaeb67925c46d2f8f9b3de537f"
+ integrity sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==
+
+"@rollup/rollup-linux-arm-gnueabihf@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.40.0.tgz#d80cd62ce6d40f8e611008d8dbf03b5e6bbf009c"
+ integrity sha512-y/qUMOpJxBMy8xCXD++jeu8t7kzjlOCkoxxajL58G62PJGBZVl/Gwpm7JK9+YvlB701rcQTzjUZ1JgUoPTnoQA==
+
+"@rollup/rollup-linux-arm-musleabihf@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.29.1.tgz#9738b27184102228637a683e5f35b22ea352394f"
+ integrity sha512-RiWpGgbayf7LUcuSNIbahr0ys2YnEERD4gYdISA06wa0i8RALrnzflh9Wxii7zQJEB2/Eh74dX4y/sHKLWp5uQ==
+
+"@rollup/rollup-linux-arm-musleabihf@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.34.8.tgz#f91a90f30dc00d5a64ac2d9bbedc829cd3cfaa78"
+ integrity sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==
+
+"@rollup/rollup-linux-arm-musleabihf@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.40.0.tgz#75440cfc1e8d0f87a239b4c31dfeaf4719b656b7"
+ integrity sha512-GoCsPibtVdJFPv/BOIvBKO/XmwZLwaNWdyD8TKlXuqp0veo2sHE+A/vpMQ5iSArRUz/uaoj4h5S6Pn0+PdhRjg==
+
+"@rollup/rollup-linux-arm64-gnu@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.29.1.tgz#b5e9d5e30ff36a19bedd29c715ba18a1889ff269"
+ integrity sha512-Z80O+taYxTQITWMjm/YqNoe9d10OX6kDh8X5/rFCMuPqsKsSyDilvfg+vd3iXIqtfmp+cnfL1UrYirkaF8SBZA==
+
+"@rollup/rollup-linux-arm64-gnu@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.34.8.tgz#fac700fa5c38bc13a0d5d34463133093da4c92a0"
+ integrity sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==
+
+"@rollup/rollup-linux-arm64-gnu@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.40.0.tgz#ac527485ecbb619247fb08253ec8c551a0712e7c"
+ integrity sha512-L5ZLphTjjAD9leJzSLI7rr8fNqJMlGDKlazW2tX4IUF9P7R5TMQPElpH82Q7eNIDQnQlAyiNVfRPfP2vM5Avvg==
+
+"@rollup/rollup-linux-arm64-musl@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.29.1.tgz#1d8f68f0829b57f746ec03432ad046f1af014a98"
+ integrity sha512-fOHRtF9gahwJk3QVp01a/GqS4hBEZCV1oKglVVq13kcK3NeVlS4BwIFzOHDbmKzt3i0OuHG4zfRP0YoG5OF/rA==
+
+"@rollup/rollup-linux-arm64-musl@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.34.8.tgz#f50ecccf8c78841ff6df1706bc4782d7f62bf9c3"
+ integrity sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==
+
+"@rollup/rollup-linux-arm64-musl@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.40.0.tgz#74d2b5cb11cf714cd7d1682e7c8b39140e908552"
+ integrity sha512-ATZvCRGCDtv1Y4gpDIXsS+wfFeFuLwVxyUBSLawjgXK2tRE6fnsQEkE4csQQYWlBlsFztRzCnBvWVfcae/1qxQ==
+
+"@rollup/rollup-linux-loongarch64-gnu@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.29.1.tgz#07027feb883408e74a3002c8e50caaedd288ae38"
+ integrity sha512-5a7q3tnlbcg0OodyxcAdrrCxFi0DgXJSoOuidFUzHZ2GixZXQs6Tc3CHmlvqKAmOs5eRde+JJxeIf9DonkmYkw==
+
+"@rollup/rollup-linux-loongarch64-gnu@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.34.8.tgz#5869dc0b28242da6553e2b52af41374f4038cd6e"
+ integrity sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==
+
+"@rollup/rollup-linux-loongarch64-gnu@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.40.0.tgz#a0a310e51da0b5fea0e944b0abd4be899819aef6"
+ integrity sha512-wG9e2XtIhd++QugU5MD9i7OnpaVb08ji3P1y/hNbxrQ3sYEelKJOq1UJ5dXczeo6Hj2rfDEL5GdtkMSVLa/AOg==
+
+"@rollup/rollup-linux-powerpc64le-gnu@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.29.1.tgz#544ce1b0847a9c1240425e86f33daceac7ec4e12"
+ integrity sha512-9b4Mg5Yfz6mRnlSPIdROcfw1BU22FQxmfjlp/CShWwO3LilKQuMISMTtAu/bxmmrE6A902W2cZJuzx8+gJ8e9w==
+
+"@rollup/rollup-linux-powerpc64le-gnu@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.34.8.tgz#5cdd9f851ce1bea33d6844a69f9574de335f20b1"
+ integrity sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==
+
+"@rollup/rollup-linux-powerpc64le-gnu@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.40.0.tgz#4077e2862b0ac9f61916d6b474d988171bd43b83"
+ integrity sha512-vgXfWmj0f3jAUvC7TZSU/m/cOE558ILWDzS7jBhiCAFpY2WEBn5jqgbqvmzlMjtp8KlLcBlXVD2mkTSEQE6Ixw==
+
+"@rollup/rollup-linux-riscv64-gnu@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.29.1.tgz#64be13d51852ec1e2dfbd25d997ed5f42f35ea6d"
+ integrity sha512-G5pn0NChlbRM8OJWpJFMX4/i8OEU538uiSv0P6roZcbpe/WfhEO+AT8SHVKfp8qhDQzaz7Q+1/ixMy7hBRidnQ==
+
+"@rollup/rollup-linux-riscv64-gnu@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.34.8.tgz#ef5dc37f4388f5253f0def43e1440ec012af204d"
+ integrity sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==
+
+"@rollup/rollup-linux-riscv64-gnu@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.40.0.tgz#5812a1a7a2f9581cbe12597307cc7ba3321cf2f3"
+ integrity sha512-uJkYTugqtPZBS3Z136arevt/FsKTF/J9dEMTX/cwR7lsAW4bShzI2R0pJVw+hcBTWF4dxVckYh72Hk3/hWNKvA==
+
+"@rollup/rollup-linux-riscv64-musl@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.40.0.tgz#973aaaf4adef4531375c36616de4e01647f90039"
+ integrity sha512-rKmSj6EXQRnhSkE22+WvrqOqRtk733x3p5sWpZilhmjnkHkpeCgWsFFo0dGnUGeA+OZjRl3+VYq+HyCOEuwcxQ==
+
+"@rollup/rollup-linux-s390x-gnu@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.29.1.tgz#31f51e1e05c6264552d03875d9e2e673f0fd86e3"
+ integrity sha512-WM9lIkNdkhVwiArmLxFXpWndFGuOka4oJOZh8EP3Vb8q5lzdSCBuhjavJsw68Q9AKDGeOOIHYzYm4ZFvmWez5g==
+
+"@rollup/rollup-linux-s390x-gnu@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.34.8.tgz#7dbc3ccbcbcfb3e65be74538dfb6e8dd16178fde"
+ integrity sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==
+
+"@rollup/rollup-linux-s390x-gnu@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.40.0.tgz#9bad59e907ba5bfcf3e9dbd0247dfe583112f70b"
+ integrity sha512-SpnYlAfKPOoVsQqmTFJ0usx0z84bzGOS9anAC0AZ3rdSo3snecihbhFTlJZ8XMwzqAcodjFU4+/SM311dqE5Sw==
+
+"@rollup/rollup-linux-x64-gnu@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.29.1.tgz#f4c95b26f4ad69ebdb64b42f0ae4da2a0f617958"
+ integrity sha512-87xYCwb0cPGZFoGiErT1eDcssByaLX4fc0z2nRM6eMtV9njAfEE6OW3UniAoDhX4Iq5xQVpE6qO9aJbCFumKYQ==
+
+"@rollup/rollup-linux-x64-gnu@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.34.8.tgz#5783fc0adcab7dc069692056e8ca8d83709855ce"
+ integrity sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==
+
+"@rollup/rollup-linux-x64-gnu@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.40.0.tgz#68b045a720bd9b4d905f462b997590c2190a6de0"
+ integrity sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==
+
+"@rollup/rollup-linux-x64-musl@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.29.1.tgz#ab7be89192f72beb9ea6e2386186fefde4f69d82"
+ integrity sha512-xufkSNppNOdVRCEC4WKvlR1FBDyqCSCpQeMMgv9ZyXqqtKBfkw1yfGMTUTs9Qsl6WQbJnsGboWCp7pJGkeMhKA==
+
+"@rollup/rollup-linux-x64-musl@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.34.8.tgz#00b6c29b298197a384e3c659910b47943003a678"
+ integrity sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==
+
+"@rollup/rollup-linux-x64-musl@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.40.0.tgz#8e703e2c2ad19ba7b2cb3d8c3a4ad11d4ee3a282"
+ integrity sha512-HZvjpiUmSNx5zFgwtQAV1GaGazT2RWvqeDi0hV+AtC8unqqDSsaFjPxfsO6qPtKRRg25SisACWnJ37Yio8ttaw==
+
+"@rollup/rollup-win32-arm64-msvc@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.29.1.tgz#7f12efb8240b238346951559998802722944421e"
+ integrity sha512-F2OiJ42m77lSkizZQLuC+jiZ2cgueWQL5YC9tjo3AgaEw+KJmVxHGSyQfDUoYR9cci0lAywv2Clmckzulcq6ig==
+
+"@rollup/rollup-win32-arm64-msvc@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.34.8.tgz#cbfee01f1fe73791c35191a05397838520ca3cdd"
+ integrity sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==
+
+"@rollup/rollup-win32-arm64-msvc@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.40.0.tgz#c5bee19fa670ff5da5f066be6a58b4568e9c650b"
+ integrity sha512-UtZQQI5k/b8d7d3i9AZmA/t+Q4tk3hOC0tMOMSq2GlMYOfxbesxG4mJSeDp0EHs30N9bsfwUvs3zF4v/RzOeTQ==
+
+"@rollup/rollup-win32-ia32-msvc@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.29.1.tgz#353d14d6eee943004d129796e4feddd3aa260921"
+ integrity sha512-rYRe5S0FcjlOBZQHgbTKNrqxCBUmgDJem/VQTCcTnA2KCabYSWQDrytOzX7avb79cAAweNmMUb/Zw18RNd4mng==
+
+"@rollup/rollup-win32-ia32-msvc@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.34.8.tgz#95cdbdff48fe6c948abcf6a1d500b2bd5ce33f62"
+ integrity sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==
+
+"@rollup/rollup-win32-ia32-msvc@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.40.0.tgz#846e02c17044bd922f6f483a3b4d36aac6e2b921"
+ integrity sha512-+m03kvI2f5syIqHXCZLPVYplP8pQch9JHyXKZ3AGMKlg8dCyr2PKHjwRLiW53LTrN/Nc3EqHOKxUxzoSPdKddA==
+
+"@rollup/rollup-win32-x64-msvc@4.29.1":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.29.1.tgz#c82f04a09ba481e13857d6f2516e072aaa51b7f4"
+ integrity sha512-+10CMg9vt1MoHj6x1pxyjPSMjHTIlqs8/tBztXvPAx24SKs9jwVnKqHJumlH/IzhaPUaj3T6T6wfZr8okdXaIg==
+
+"@rollup/rollup-win32-x64-msvc@4.34.8":
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.34.8.tgz#4cdb2cfae69cdb7b1a3cc58778e820408075e928"
+ integrity sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==
+
+"@rollup/rollup-win32-x64-msvc@4.40.0":
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.40.0.tgz#fd92d31a2931483c25677b9c6698106490cbbc76"
+ integrity sha512-lpPE1cLfP5oPzVjKMx10pgBmKELQnFJXHgvtHCtuJWOv8MxqdEIMNtgHgBFf7Ea2/7EuVwa9fodWUfXAlXZLZQ==
+
+"@rollup/wasm-node@^4.24.0":
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/@rollup/wasm-node/-/wasm-node-4.29.1.tgz#02b68b34777a5a015fdb0943c00e4785fb8b42ae"
+ integrity sha512-AOtO2Y+XzElJfmJgAECOgbutmKAK5XcKH7CipGDQDBMfLY04ezEoCHWEpmoX5L7/WH3k17rXMCClNiwDbWW+mw==
dependencies:
"@types/estree" "1.0.6"
optionalDependencies:
fsevents "~2.3.2"
+"@rspack/binding-darwin-arm64@1.1.8":
+ version "1.1.8"
+ resolved "https://registry.yarnpkg.com/@rspack/binding-darwin-arm64/-/binding-darwin-arm64-1.1.8.tgz#aedce2a27148a2454c0a931030467415c0df042d"
+ integrity sha512-I7avr471ghQ3LAqKm2fuXuJPLgQ9gffn5Q4nHi8rsukuZUtiLDPfYzK1QuupEp2JXRWM1gG5lIbSUOht3cD6Ug==
+
+"@rspack/binding-darwin-x64@1.1.8":
+ version "1.1.8"
+ resolved "https://registry.yarnpkg.com/@rspack/binding-darwin-x64/-/binding-darwin-x64-1.1.8.tgz#42bc8578bdfa00105487186ae8f45b3f7872820b"
+ integrity sha512-vfqf/c+mcx8rr1M8LnqKmzDdnrgguflZnjGerBLjNerAc+dcUp3lCvNxRIvZ2TkSZZBW8BpCMgjj3n70CZ4VLQ==
+
+"@rspack/binding-linux-arm64-gnu@1.1.8":
+ version "1.1.8"
+ resolved "https://registry.yarnpkg.com/@rspack/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.1.8.tgz#1012dccfb20653c977d3ead4666357937d068f9d"
+ integrity sha512-lZlO/rAJSeozi+qtVLkGSXfe+riPawCwM4FsrflELfNlvvEXpANwtrdJ+LsaNVXcgvhh50ZX2KicTdmx9G2b6Q==
+
+"@rspack/binding-linux-arm64-musl@1.1.8":
+ version "1.1.8"
+ resolved "https://registry.yarnpkg.com/@rspack/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.1.8.tgz#ff8a1cbe532bbf9a4ae8cf73bd949e773f16a9a9"
+ integrity sha512-bX7exULSZwy8xtDh6Z65b6sRC4uSxGuyvSLCEKyhmG6AnJkg0gQMxk3hoO0hWnyGEZgdJEn+jEhk0fjl+6ZRAQ==
+
+"@rspack/binding-linux-x64-gnu@1.1.8":
+ version "1.1.8"
+ resolved "https://registry.yarnpkg.com/@rspack/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.1.8.tgz#bdec8ba27e764a926a7f27b90d2da6507558bc68"
+ integrity sha512-2Prw2USgTJ3aLdLExfik8pAwAHbX4MZrACBGEmR7Vbb56kLjC+++fXkciRc50pUDK4JFr1VQ7eNZrJuDR6GG6Q==
+
+"@rspack/binding-linux-x64-musl@1.1.8":
+ version "1.1.8"
+ resolved "https://registry.yarnpkg.com/@rspack/binding-linux-x64-musl/-/binding-linux-x64-musl-1.1.8.tgz#3abaf3e513ed7e3481225293d235f41f4ab0ae8d"
+ integrity sha512-bnVGB/mQBKEdzOU/CPmcOE3qEXxGOGGW7/i6iLl2MamVOykJq8fYjL9j86yi6L0r009ja16OgWckykQGc4UqGw==
+
+"@rspack/binding-win32-arm64-msvc@1.1.8":
+ version "1.1.8"
+ resolved "https://registry.yarnpkg.com/@rspack/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.1.8.tgz#5c63ffb726ac2d5ea87c36da11f30fd42c7601bc"
+ integrity sha512-u+na3gxhzeksm4xZyAzn1+XWo5a5j7hgWA/KcFPDQ8qQNkRknx4jnQMxVtcZ9pLskAYV4AcOV/AIximx7zvv8A==
+
+"@rspack/binding-win32-ia32-msvc@1.1.8":
+ version "1.1.8"
+ resolved "https://registry.yarnpkg.com/@rspack/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-1.1.8.tgz#25d41f41a68c84c74f8cd862c53c3110b2c034f3"
+ integrity sha512-FijUxym1INd5fFHwVCLuVP8XEAb4Sk1sMwEEQUlugiDra9ZsLaPw4OgPGxbxkD6SB0DeUz9Zq46Xbcf6d3OgfA==
+
+"@rspack/binding-win32-x64-msvc@1.1.8":
+ version "1.1.8"
+ resolved "https://registry.yarnpkg.com/@rspack/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.1.8.tgz#a5881beeedb1058ec39559dc1f4bcfea731ea232"
+ integrity sha512-SBzIcND4qpDt71jlu1MCDxt335tqInT3YID9V4DoQ4t8wgM/uad7EgKOWKTK6vc2RRaOIShfS2XzqjNUxPXh4w==
+
+"@rspack/binding@1.1.8":
+ version "1.1.8"
+ resolved "https://registry.yarnpkg.com/@rspack/binding/-/binding-1.1.8.tgz#4f99f2add813210d58f3d8142ed98bbf60e51078"
+ integrity sha512-+/JzXx1HctfgPj+XtsCTbRkxiaOfAXGZZLEvs7jgp04WgWRSZ5u97WRCePNPvy+sCfOEH/2zw2ZK36Z7oQRGhQ==
+ optionalDependencies:
+ "@rspack/binding-darwin-arm64" "1.1.8"
+ "@rspack/binding-darwin-x64" "1.1.8"
+ "@rspack/binding-linux-arm64-gnu" "1.1.8"
+ "@rspack/binding-linux-arm64-musl" "1.1.8"
+ "@rspack/binding-linux-x64-gnu" "1.1.8"
+ "@rspack/binding-linux-x64-musl" "1.1.8"
+ "@rspack/binding-win32-arm64-msvc" "1.1.8"
+ "@rspack/binding-win32-ia32-msvc" "1.1.8"
+ "@rspack/binding-win32-x64-msvc" "1.1.8"
+
+"@rspack/core@^1.1.5":
+ version "1.1.8"
+ resolved "https://registry.yarnpkg.com/@rspack/core/-/core-1.1.8.tgz#46079db6cb01b8e0028ffd2ac54c7a9678674e74"
+ integrity sha512-pcZtcj5iXLCuw9oElTYC47bp/RQADm/MMEb3djHdwJuSlFWfWPQi5QFgJ/lJAxIW9UNHnTFrYtytycfjpuoEcA==
+ dependencies:
+ "@module-federation/runtime-tools" "0.5.1"
+ "@rspack/binding" "1.1.8"
+ "@rspack/lite-tapable" "1.0.1"
+ caniuse-lite "^1.0.30001616"
+
+"@rspack/dev-server@^1.0.9":
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/@rspack/dev-server/-/dev-server-1.1.1.tgz#96d4f17ca715b793efb5a7df41f3dab9dbc89da4"
+ integrity sha512-9r7vOml2SrFA8cvbcJdSan9wHEo1TPXezF22+s5jvdyAAywg8w7HqDol6TPVv64NUonP1DOdyLxZ+6UW6WZiwg==
+ dependencies:
+ chokidar "^3.6.0"
+ express "^4.21.2"
+ http-proxy-middleware "^2.0.7"
+ mime-types "^2.1.35"
+ p-retry "^6.2.0"
+ webpack-dev-middleware "^7.4.2"
+ webpack-dev-server "5.2.0"
+ ws "^8.18.0"
+
+"@rspack/lite-tapable@1.0.1", "@rspack/lite-tapable@^1.0.0":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@rspack/lite-tapable/-/lite-tapable-1.0.1.tgz#d4540a5d28bd6177164bc0ba0bee4bdec0458591"
+ integrity sha512-VynGOEsVw2s8TAlLf/uESfrgfrq2+rcXB1muPJYBWbsm1Oa6r5qVQhjA5ggM6z/coYPrsVMgovl3Ff7Q7OCp1w==
+
+"@rspack/plugin-react-refresh@^1.0.0":
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/@rspack/plugin-react-refresh/-/plugin-react-refresh-1.2.2.tgz#1b205212d21d89479183947087031c6071eaf6e7"
+ integrity sha512-3/PzqthI0/r2Dn+aM5UBGW74q6s0e3ee8b0eKt/7xc9iK0M6ri3PXUdcq/y8XWi5tcmYxBlg8ryS4IeYrkySCw==
+ dependencies:
+ error-stack-parser "^2.1.4"
+ html-entities "^2.6.0"
+
"@scarf/scarf@=1.4.0":
version "1.4.0"
resolved "https://registry.yarnpkg.com/@scarf/scarf/-/scarf-1.4.0.tgz#3bbb984085dbd6d982494538b523be1ce6562972"
integrity sha512-xxeapPiUXdZAE3che6f3xogoJPeZgig6omHEy1rIY5WVsB3H2BHNnZH+gHG6x91SCWyQCzWGsuL2Hh3ClO5/qQ==
-"@schematics/angular@18.2.14":
- version "18.2.14"
- resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-18.2.14.tgz#6bab715fbf49a01c64e95b70deea5f25d0f61f22"
- integrity sha512-CHh6ew2Az71UlvVcnYeuMEwjwkZqR7y/9ebLzFRvczC71ZL8qPVBpBTVGbCpGBd54VEbCZVWRxBQoZZ5LP/aBw==
- dependencies:
- "@angular-devkit/core" "18.2.14"
- "@angular-devkit/schematics" "18.2.14"
- jsonc-parser "3.3.1"
-
-"@schematics/angular@18.2.9":
- version "18.2.9"
- resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-18.2.9.tgz#e24b0d801903c2f3e30f3c63ec179153372cffee"
- integrity sha512-LlMHZQ6f8zrqSK24OBXi4u2MTNHNu9ZN6JXpbElq0bz/9QkUR2zy+Kk2wLpPxCwXYTZby7/xgHiTzXvG+zTdhw==
+"@schematics/angular@19.2.8":
+ version "19.2.8"
+ resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-19.2.8.tgz#51efccfcb990ce4c8d87a8906d271461b1708889"
+ integrity sha512-oE/RzC9a0kS6+T72zX08Qkh42tbHlPZxFx1lm3saIzU9mifxlQRT9Od4PK+yksDBvxvtr+TcM2KVOqxCujpHXg==
dependencies:
- "@angular-devkit/core" "18.2.9"
- "@angular-devkit/schematics" "18.2.9"
+ "@angular-devkit/core" "19.2.8"
+ "@angular-devkit/schematics" "19.2.8"
jsonc-parser "3.3.1"
"@selderee/plugin-htmlparser2@^0.11.0":
@@ -10979,12 +11454,12 @@
dependencies:
"@sigstore/protobuf-specs" "^0.3.2"
-"@sigstore/bundle@^3.1.0":
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-3.1.0.tgz#74f8f3787148400ddd364be8a9a9212174c66646"
- integrity sha512-Mm1E3/CmDDCz3nDhFKTuYdB47EdRFRQMOE/EAbiG1MJW77/w1b3P7Qx7JSrVJs8PfwOLOVcKQCHErIwCTyPbag==
+"@sigstore/bundle@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-3.0.0.tgz#ffffc750436c6eb8330ead1ca65bc892f893a7c5"
+ integrity sha512-XDUYX56iMPAn/cdgh/DTJxz5RWmqKV4pwvUAEKEWJl+HzKdCd/24wUa9JYNMlDSCb7SUHAdtksxYX779Nne/Zg==
dependencies:
- "@sigstore/protobuf-specs" "^0.4.0"
+ "@sigstore/protobuf-specs" "^0.3.2"
"@sigstore/core@^1.0.0", "@sigstore/core@^1.1.0":
version "1.1.0"
@@ -11006,11 +11481,6 @@
resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.3.3.tgz#7dd46d68b76c322873a2ef7581ed955af6f4dcde"
integrity sha512-RpacQhBlwpBWd7KEJsRKcBQalbV28fvkxwTOJIqhIuDysMMaJW47V4OqW30iJB9uRpqOSxxEAQFdr8tTattReQ==
-"@sigstore/protobuf-specs@^0.4.0":
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.4.0.tgz#7524509d93efcb14e77d0bc34c43a1ae85f851c5"
- integrity sha512-o09cLSIq9EKyRXwryWDOJagkml9XgQCoCSRjHOnHLnvsivaW7Qznzz6yjfV7PHJHhIvyp8OH7OX8w0Dc5bQK7A==
-
"@sigstore/sign@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@sigstore/sign/-/sign-1.0.0.tgz#6b08ebc2f6c92aa5acb07a49784cb6738796f7b4"
@@ -11032,15 +11502,15 @@
proc-log "^4.2.0"
promise-retry "^2.0.1"
-"@sigstore/sign@^3.1.0":
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/@sigstore/sign/-/sign-3.1.0.tgz#5d098d4d2b59a279e9ac9b51c794104cda0c649e"
- integrity sha512-knzjmaOHOov1Ur7N/z4B1oPqZ0QX5geUfhrVaqVlu+hl0EAoL4o+l0MSULINcD5GCWe3Z0+YJO8ues6vFlW0Yw==
+"@sigstore/sign@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@sigstore/sign/-/sign-3.0.0.tgz#70752aaa54dfeafa0b0fbe1f58ebe9fe3d621f8f"
+ integrity sha512-UjhDMQOkyDoktpXoc5YPJpJK6IooF2gayAr5LvXI4EL7O0vd58okgfRcxuaH+YTdhvb5aa1Q9f+WJ0c2sVuYIw==
dependencies:
- "@sigstore/bundle" "^3.1.0"
+ "@sigstore/bundle" "^3.0.0"
"@sigstore/core" "^2.0.0"
- "@sigstore/protobuf-specs" "^0.4.0"
- make-fetch-happen "^14.0.2"
+ "@sigstore/protobuf-specs" "^0.3.2"
+ make-fetch-happen "^14.0.1"
proc-log "^5.0.0"
promise-retry "^2.0.1"
@@ -11060,12 +11530,12 @@
"@sigstore/protobuf-specs" "^0.3.2"
tuf-js "^2.2.1"
-"@sigstore/tuf@^3.0.0", "@sigstore/tuf@^3.1.0":
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-3.1.0.tgz#f533ac8ac572c9f7e36f5e08f1effa6b2244f55a"
- integrity sha512-suVMQEA+sKdOz5hwP9qNcEjX6B45R+hFFr4LAWzbRc5O+U2IInwvay/bpG5a4s+qR35P/JK/PiKiRGjfuLy1IA==
+"@sigstore/tuf@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-3.0.0.tgz#5f657e3052e93cb09e1735ee7f52b7938351278d"
+ integrity sha512-9Xxy/8U5OFJu7s+OsHzI96IX/OzjF/zj0BSSaWhgJgTqtlBhQIV2xdrQI5qxLD7+CWWDepadnXAxzaZ3u9cvRw==
dependencies:
- "@sigstore/protobuf-specs" "^0.4.0"
+ "@sigstore/protobuf-specs" "^0.3.2"
tuf-js "^3.0.1"
"@sigstore/verify@^1.2.1":
@@ -11077,14 +11547,14 @@
"@sigstore/core" "^1.1.0"
"@sigstore/protobuf-specs" "^0.3.2"
-"@sigstore/verify@^2.1.0":
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/@sigstore/verify/-/verify-2.1.0.tgz#63e31dd69b678ed6d98cbfdc6d6c104b82d0905c"
- integrity sha512-kAAM06ca4CzhvjIZdONAL9+MLppW3K48wOFy1TbuaWFW/OMfl8JuTgW0Bm02JB1WJGT/ET2eqav0KTEKmxqkIA==
+"@sigstore/verify@^2.0.0":
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/@sigstore/verify/-/verify-2.0.0.tgz#4ad96e9234b71b57622c3c446b63bad805351030"
+ integrity sha512-Ggtq2GsJuxFNUvQzLoXqRwS4ceRfLAJnrIHUDrzAD0GgnOhwujJkKkxM/s5Bako07c3WtAs/sZo5PJq7VHjeDg==
dependencies:
- "@sigstore/bundle" "^3.1.0"
+ "@sigstore/bundle" "^3.0.0"
"@sigstore/core" "^2.0.0"
- "@sigstore/protobuf-specs" "^0.4.0"
+ "@sigstore/protobuf-specs" "^0.3.2"
"@sinclair/typebox@^0.27.8":
version "0.27.8"
@@ -11154,17 +11624,17 @@
"@smithy/util-middleware" "^4.0.1"
tslib "^2.6.2"
-"@smithy/core@^3.1.5":
- version "3.1.5"
- resolved "https://registry.yarnpkg.com/@smithy/core/-/core-3.1.5.tgz#cc260229e45964d8354a3737bf3dedb56e373616"
- integrity sha512-HLclGWPkCsekQgsyzxLhCQLa8THWXtB5PxyYN+2O6nkyLt550KQKTlbV2D1/j5dNIQapAZM1+qFnpBFxZQkgCA==
+"@smithy/core@^3.1.1", "@smithy/core@^3.1.2":
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/@smithy/core/-/core-3.1.2.tgz#f5b4c89bf054b717781d71c66b4fb594e06cbb62"
+ integrity sha512-htwQXkbdF13uwwDevz9BEzL5ABK+1sJpVQXywwGSH973AVOvisHNfpcB8A8761G6XgHoS2kHPqc9DqHJ2gp+/Q==
dependencies:
"@smithy/middleware-serde" "^4.0.2"
"@smithy/protocol-http" "^5.0.1"
"@smithy/types" "^4.1.0"
"@smithy/util-body-length-browser" "^4.0.0"
"@smithy/util-middleware" "^4.0.1"
- "@smithy/util-stream" "^4.1.2"
+ "@smithy/util-stream" "^4.0.2"
"@smithy/util-utf8" "^4.0.0"
tslib "^2.6.2"
@@ -11304,12 +11774,12 @@
"@smithy/types" "^4.1.0"
tslib "^2.6.2"
-"@smithy/middleware-endpoint@^4.0.6":
- version "4.0.6"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-4.0.6.tgz#7ead08fcfda92ee470786a7f458e9b59048407eb"
- integrity sha512-ftpmkTHIFqgaFugcjzLZv3kzPEFsBFSnq1JsIkr2mwFzCraZVhQk2gqN51OOeRxqhbPTkRFj39Qd2V91E/mQxg==
+"@smithy/middleware-endpoint@^4.0.2", "@smithy/middleware-endpoint@^4.0.3":
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-4.0.3.tgz#74b64fb2473ae35649a8d22d41708bc5d8d99df2"
+ integrity sha512-YdbmWhQF5kIxZjWqPIgboVfi8i5XgiYMM7GGKFMTvBei4XjNQfNv8sukT50ITvgnWKKKpOtp0C0h7qixLgb77Q==
dependencies:
- "@smithy/core" "^3.1.5"
+ "@smithy/core" "^3.1.2"
"@smithy/middleware-serde" "^4.0.2"
"@smithy/node-config-provider" "^4.0.1"
"@smithy/shared-ini-file-loader" "^4.0.1"
@@ -11318,22 +11788,22 @@
"@smithy/util-middleware" "^4.0.1"
tslib "^2.6.2"
-"@smithy/middleware-retry@^4.0.7":
- version "4.0.7"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-4.0.7.tgz#8bb2014842a6144f230967db502f5fe6adcd6529"
- integrity sha512-58j9XbUPLkqAcV1kHzVX/kAR16GT+j7DUZJqwzsxh1jtz7G82caZiGyyFgUvogVfNTg3TeAOIJepGc8TXF4AVQ==
+"@smithy/middleware-retry@^4.0.3":
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-4.0.4.tgz#95e55a1b163ff06264f20b4dbbcbd915c8028f60"
+ integrity sha512-wmxyUBGHaYUqul0wZiset4M39SMtDBOtUr2KpDuftKNN74Do9Y36Go6Eqzj9tL0mIPpr31ulB5UUtxcsCeGXsQ==
dependencies:
"@smithy/node-config-provider" "^4.0.1"
"@smithy/protocol-http" "^5.0.1"
"@smithy/service-error-classification" "^4.0.1"
- "@smithy/smithy-client" "^4.1.6"
+ "@smithy/smithy-client" "^4.1.3"
"@smithy/types" "^4.1.0"
"@smithy/util-middleware" "^4.0.1"
"@smithy/util-retry" "^4.0.1"
tslib "^2.6.2"
uuid "^9.0.1"
-"@smithy/middleware-serde@^4.0.2":
+"@smithy/middleware-serde@^4.0.1", "@smithy/middleware-serde@^4.0.2":
version "4.0.2"
resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-4.0.2.tgz#f792d72f6ad8fa6b172e3f19c6fe1932a856a56d"
integrity sha512-Sdr5lOagCn5tt+zKsaW+U2/iwr6bI9p08wOkCp6/eL6iMbgdtc2R5Ety66rf87PeohR0ExI84Txz9GYv5ou3iQ==
@@ -11359,10 +11829,10 @@
"@smithy/types" "^4.1.0"
tslib "^2.6.2"
-"@smithy/node-http-handler@^4.0.3":
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-4.0.3.tgz#363e1d453168b4e37e8dd456d0a368a4e413bc98"
- integrity sha512-dYCLeINNbYdvmMLtW0VdhW1biXt+PPCGazzT5ZjKw46mOtdgToQEwjqZSS9/EN8+tNs/RO0cEWG044+YZs97aA==
+"@smithy/node-http-handler@^4.0.2":
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-4.0.2.tgz#48d47a046cf900ab86bfbe7f5fd078b52c82fab6"
+ integrity sha512-X66H9aah9hisLLSnGuzRYba6vckuFtGE+a5DcHLliI/YlqKrGoxhisD5XbX44KyoeRzoNlGr94eTsMVHFAzPOw==
dependencies:
"@smithy/abort-controller" "^4.0.1"
"@smithy/protocol-http" "^5.0.1"
@@ -11432,17 +11902,17 @@
"@smithy/util-utf8" "^4.0.0"
tslib "^2.6.2"
-"@smithy/smithy-client@^4.1.6":
- version "4.1.6"
- resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-4.1.6.tgz#2183c922d086d33252012232be891f29a008d932"
- integrity sha512-UYDolNg6h2O0L+cJjtgSyKKvEKCOa/8FHYJnBobyeoeWDmNpXjwOAtw16ezyeu1ETuuLEOZbrynK0ZY1Lx9Jbw==
+"@smithy/smithy-client@^4.1.2", "@smithy/smithy-client@^4.1.3":
+ version "4.1.3"
+ resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-4.1.3.tgz#2c8f9aff3377e7655cebe84239da6be277ba8554"
+ integrity sha512-A2Hz85pu8BJJaYFdX8yb1yocqigyqBzn+OVaVgm+Kwi/DkN8vhN2kbDVEfADo6jXf5hPKquMLGA3UINA64UZ7A==
dependencies:
- "@smithy/core" "^3.1.5"
- "@smithy/middleware-endpoint" "^4.0.6"
+ "@smithy/core" "^3.1.2"
+ "@smithy/middleware-endpoint" "^4.0.3"
"@smithy/middleware-stack" "^4.0.1"
"@smithy/protocol-http" "^5.0.1"
"@smithy/types" "^4.1.0"
- "@smithy/util-stream" "^4.1.2"
+ "@smithy/util-stream" "^4.0.2"
tslib "^2.6.2"
"@smithy/types@^4.1.0":
@@ -11507,27 +11977,27 @@
dependencies:
tslib "^2.6.2"
-"@smithy/util-defaults-mode-browser@^4.0.7":
- version "4.0.7"
- resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.0.7.tgz#54595ab3da6765bfb388e8e8b594276e0f485710"
- integrity sha512-CZgDDrYHLv0RUElOsmZtAnp1pIjwDVCSuZWOPhIOBvG36RDfX1Q9+6lS61xBf+qqvHoqRjHxgINeQz47cYFC2Q==
+"@smithy/util-defaults-mode-browser@^4.0.3":
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.0.4.tgz#6fa7ba64a80a77f27b9b5c6972918904578b8d5b"
+ integrity sha512-Ej1bV5sbrIfH++KnWxjjzFNq9nyP3RIUq2c9Iqq7SmMO/idUR24sqvKH2LUQFTSPy/K7G4sB2m8n7YYlEAfZaw==
dependencies:
"@smithy/property-provider" "^4.0.1"
- "@smithy/smithy-client" "^4.1.6"
+ "@smithy/smithy-client" "^4.1.3"
"@smithy/types" "^4.1.0"
bowser "^2.11.0"
tslib "^2.6.2"
-"@smithy/util-defaults-mode-node@^4.0.7":
- version "4.0.7"
- resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.0.7.tgz#0dea136de9096a36d84416f6af5843d866621491"
- integrity sha512-79fQW3hnfCdrfIi1soPbK3zmooRFnLpSx3Vxi6nUlqaaQeC5dm8plt4OTNDNqEEEDkvKghZSaoti684dQFVrGQ==
+"@smithy/util-defaults-mode-node@^4.0.3":
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.0.4.tgz#5470fdc96672cee5199620b576d7025de3b17333"
+ integrity sha512-HE1I7gxa6yP7ZgXPCFfZSDmVmMtY7SHqzFF55gM/GPegzZKaQWZZ+nYn9C2Cc3JltCMyWe63VPR3tSFDEvuGjw==
dependencies:
"@smithy/config-resolver" "^4.0.1"
"@smithy/credential-provider-imds" "^4.0.1"
"@smithy/node-config-provider" "^4.0.1"
"@smithy/property-provider" "^4.0.1"
- "@smithy/smithy-client" "^4.1.6"
+ "@smithy/smithy-client" "^4.1.3"
"@smithy/types" "^4.1.0"
tslib "^2.6.2"
@@ -11564,13 +12034,13 @@
"@smithy/types" "^4.1.0"
tslib "^2.6.2"
-"@smithy/util-stream@^4.1.2":
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-4.1.2.tgz#b867f25bc8b016de0582810a2f4092a71c5e3244"
- integrity sha512-44PKEqQ303d3rlQuiDpcCcu//hV8sn+u2JBo84dWCE0rvgeiVl0IlLMagbU++o0jCWhYCsHaAt9wZuZqNe05Hw==
+"@smithy/util-stream@^4.0.2":
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-4.0.2.tgz#63495d3f7fba9d78748d540921136dc4a8d4c067"
+ integrity sha512-0eZ4G5fRzIoewtHtwaYyl8g2C+osYOT4KClXgfdNEDAgkbe2TYPqcnw4GAWabqkZCax2ihRGPe9LZnsPdIUIHA==
dependencies:
"@smithy/fetch-http-handler" "^5.0.1"
- "@smithy/node-http-handler" "^4.0.3"
+ "@smithy/node-http-handler" "^4.0.2"
"@smithy/types" "^4.1.0"
"@smithy/util-base64" "^4.0.0"
"@smithy/util-buffer-from" "^4.0.0"
@@ -11719,6 +12189,13 @@
resolved "https://registry.yarnpkg.com/@swc/counter/-/counter-0.1.3.tgz#cc7463bd02949611c6329596fccd2b0ec782b0e9"
integrity sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==
+"@swc/helpers@0.5.13":
+ version "0.5.13"
+ resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.13.tgz#33e63ff3cd0cade557672bd7888a39ce7d115a8c"
+ integrity sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==
+ dependencies:
+ tslib "^2.4.0"
+
"@swc/helpers@~0.5.11":
version "0.5.15"
resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.15.tgz#79efab344c5819ecf83a43f3f9f811fc84b516d7"
@@ -11727,32 +12204,32 @@
tslib "^2.8.0"
"@swc/types@^0.1.8":
- version "0.1.19"
- resolved "https://registry.yarnpkg.com/@swc/types/-/types-0.1.19.tgz#65d9fe81e0a1dc7e861ad698dd581abe3703a2d2"
- integrity sha512-WkAZaAfj44kh/UFdAQcrMP1I0nwRqpt27u+08LMBYMqmQfwwMofYoMh/48NGkMMRfC4ynpfwRbJuu8ErfNloeA==
+ version "0.1.17"
+ resolved "https://registry.yarnpkg.com/@swc/types/-/types-0.1.17.tgz#bd1d94e73497f27341bf141abdf4c85230d41e7c"
+ integrity sha512-V5gRru+aD8YVyCOMAjMpWR1Ui577DD5KSJsHP8RAxopAH22jFz6GZd/qxqjO6MJHQhcsjvjOFXyDhyLQUnMveQ==
dependencies:
"@swc/counter" "^0.1.3"
-"@swimlane/ngx-charts@20.5.0", "@swimlane/ngx-charts@^20.1.0":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/@swimlane/ngx-charts/-/ngx-charts-20.5.0.tgz#802a3893347e34eb4b4e447225dca9b38c40160d"
- integrity sha512-PNBIHdu/R3ceD7jnw1uCBVOj4k3T6IxfdW6xsDsglGkZyoWMEEq4tLoEurjLEKzmDtRv9c35kVNOXy0lkOuXeA==
+"@swimlane/ngx-charts@^22.0.0-alpha.1":
+ version "22.0.0-alpha.1"
+ resolved "https://registry.yarnpkg.com/@swimlane/ngx-charts/-/ngx-charts-22.0.0-alpha.1.tgz#949f9f98bdb7967ebac281a21aae17cf751a3b59"
+ integrity sha512-eSpCCuAVaMv/yjtVTLHP472YElelPwk3i7Dk7N/JHJBYQm2yXP/7JfyLonr06EtiuEGSKZ6DnOzAOD4bVlKw8w==
dependencies:
- d3-array "^3.1.1"
+ d3-array "^3.2.0"
d3-brush "^3.0.0"
d3-color "^3.1.0"
d3-ease "^3.0.1"
d3-format "^3.1.0"
- d3-hierarchy "^3.1.0"
+ d3-hierarchy "^3.1.2"
d3-interpolate "^3.0.1"
d3-sankey "^0.12.3"
d3-scale "^4.0.2"
d3-selection "^3.0.0"
d3-shape "^3.2.0"
- d3-time-format "^3.0.0"
+ d3-time-format "^4.1.0"
d3-transition "^3.0.1"
- rfdc "^1.3.0"
- tslib "^2.0.0"
+ gradient-path "^2.3.0"
+ tslib "^2.3.1"
"@szmarczak/http-timer@^1.1.2":
version "1.1.2"
@@ -12056,10 +12533,10 @@
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50"
integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==
-"@types/estree@1.0.5":
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4"
- integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==
+"@types/estree@1.0.7":
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.7.tgz#4158d3105276773d5b7695cd4834b1722e4f37a8"
+ integrity sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==
"@types/expect@^1.20.4":
version "1.20.4"
@@ -12076,7 +12553,7 @@
"@types/range-parser" "*"
"@types/send" "*"
-"@types/express-serve-static-core@^4.17.30", "@types/express-serve-static-core@^4.17.33":
+"@types/express-serve-static-core@^4.17.21", "@types/express-serve-static-core@^4.17.30", "@types/express-serve-static-core@^4.17.33":
version "4.19.6"
resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz#e01324c2a024ff367d92c66f48553ced0ab50267"
integrity sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==
@@ -12086,7 +12563,7 @@
"@types/range-parser" "*"
"@types/send" "*"
-"@types/express@*", "@types/express@^5.0.0":
+"@types/express@*":
version "5.0.0"
resolved "https://registry.yarnpkg.com/@types/express/-/express-5.0.0.tgz#13a7d1f75295e90d19ed6e74cab3678488eaa96c"
integrity sha512-DvZriSMehGHL1ZNLzi6MidnsDhUZM/x2pRdDIKdwbUNqqwHxMlRdkxtn6/EPKyqKpHqTl/4nRZsRNLpZxZRpPQ==
@@ -12106,6 +12583,15 @@
"@types/qs" "*"
"@types/serve-static" "*"
+"@types/express@^5.0.0":
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/@types/express/-/express-5.0.1.tgz#138d741c6e5db8cc273bec5285cd6e9d0779fc9f"
+ integrity sha512-UZUw8vjpWFXuDnjFTh7/5c2TWDlQqeXHi6hcN7F2XSVT5P+WmUnnbFS3KA6Jnc6IsEqI2qCVu2bK0R0J4A8ZQQ==
+ dependencies:
+ "@types/body-parser" "*"
+ "@types/express-serve-static-core" "^5.0.0"
+ "@types/serve-static" "*"
+
"@types/file-saver@^2.0.7":
version "2.0.7"
resolved "https://registry.yarnpkg.com/@types/file-saver/-/file-saver-2.0.7.tgz#8dbb2f24bdc7486c54aa854eb414940bbd056f7d"
@@ -12175,9 +12661,9 @@
integrity sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==
"@types/http-proxy@^1.17.15", "@types/http-proxy@^1.17.8":
- version "1.17.16"
- resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.16.tgz#dee360707b35b3cc85afcde89ffeebff7d7f9240"
- integrity sha512-sdWoUajOB1cd0A8cRRQ1cfyWNbmFKLAqBB89Y8x5iYyG/mkJHc0YUH8pdWBy2omi9qtCpiIgGjuwO0dQST2l5w==
+ version "1.17.15"
+ resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.15.tgz#12118141ce9775a6499ecb4c01d02f90fc839d36"
+ integrity sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==
dependencies:
"@types/node" "*"
@@ -12249,9 +12735,9 @@
integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
"@types/jsonwebtoken@*", "@types/jsonwebtoken@^9.0.0":
- version "9.0.9"
- resolved "https://registry.yarnpkg.com/@types/jsonwebtoken/-/jsonwebtoken-9.0.9.tgz#a4c3a446c0ebaaf467a58398382616f416345fb3"
- integrity sha512-uoe+GxEuHbvy12OUQct2X9JenKM3qAscquYymuQN4fMWG9DBQtykrQEFcAbVACF7qaLw9BePSodUL0kquqBJpQ==
+ version "9.0.8"
+ resolved "https://registry.yarnpkg.com/@types/jsonwebtoken/-/jsonwebtoken-9.0.8.tgz#313490052801edfb031bb32b6bbd77cc9f230852"
+ integrity sha512-7fx54m60nLFUVYlxAB1xpe9CBWX2vSrk50Y6ogRJ1v5xxtba7qXTg5BgYDN5dq+yuQQ9HaVlHJyAAt1/mxryFg==
dependencies:
"@types/ms" "*"
"@types/node" "*"
@@ -12337,13 +12823,6 @@
dependencies:
"@types/express" "*"
-"@types/mute-stream@^0.0.4":
- version "0.0.4"
- resolved "https://registry.yarnpkg.com/@types/mute-stream/-/mute-stream-0.0.4.tgz#77208e56a08767af6c5e1237be8888e2f255c478"
- integrity sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==
- dependencies:
- "@types/node" "*"
-
"@types/mysql@2.15.26":
version "2.15.26"
resolved "https://registry.yarnpkg.com/@types/mysql/-/mysql-2.15.26.tgz#f0de1484b9e2354d587e7d2bd17a873cc8300836"
@@ -12366,10 +12845,10 @@
dependencies:
"@types/node" "*"
-"@types/node@*", "@types/node@>=10.0.0", "@types/node@>=13.7.0", "@types/node@^22.5.5":
- version "22.13.10"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-22.13.10.tgz#df9ea358c5ed991266becc3109dc2dc9125d77e4"
- integrity sha512-I6LPUvlRH+O6VRUqYOcMudhaIdUVWfsjnZavnsraHvpBwaEyMN29ry+0UVJhImYL16xsscu0aske3yA+uPOWfw==
+"@types/node@*", "@types/node@>=10.0.0", "@types/node@>=13.7.0":
+ version "22.12.0"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-22.12.0.tgz#bf8af3b2af0837b5a62a368756ff2b705ae0048c"
+ integrity sha512-Fll2FZ1riMjNmlmJOdAyY5pUbkftXslB5DgEzlIuNaiWhXd00FhWxVC/r4yV/4wBb9JfImTu+jiSvXTkJ7F/gA==
dependencies:
undici-types "~6.20.0"
@@ -12398,10 +12877,10 @@
resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190"
integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==
-"@types/node@^20.14.9", "@types/node@^20.9.0":
- version "20.17.24"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-20.17.24.tgz#2325476954e6fc8c2f11b9c61e26ba6eb7d3f5b6"
- integrity sha512-d7fGCyB96w9BnWQrOsJtpyiSaBcAYYr75bnK6ZRjDbql2cGLj/3GsL5OYmLPNq76l7Gf2q4Rv9J2o6h5CrD9sA==
+"@types/node@^20.14.9":
+ version "20.17.16"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-20.17.16.tgz#b33b0edc1bf925b27349e494b871ca4451fabab4"
+ integrity sha512-vOTpLduLkZXePLxHiHsBLp98mHGnl8RptV4YAO3HfKO5UHjDvySGbxKtpYfy8Sx5+WKcgc45qNreJJRVM3L6mw==
dependencies:
undici-types "~6.19.2"
@@ -12412,6 +12891,13 @@
dependencies:
undici-types "~6.19.2"
+"@types/node@^20.9.0":
+ version "20.17.1"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-20.17.1.tgz#2b968e060dfb04b7f9550fe3db5f552721c14566"
+ integrity sha512-j2VlPv1NnwPJbaCNv69FO/1z4lId0QmGvpT41YxitRtWlg96g/j8qcv2RKsLKe2F6OJgyXhupN1Xo17b2m139Q==
+ dependencies:
+ undici-types "~6.19.2"
+
"@types/nodemailer@*", "@types/nodemailer@^6.4.0":
version "6.4.17"
resolved "https://registry.yarnpkg.com/@types/nodemailer/-/nodemailer-6.4.17.tgz#5c82a42aee16a3dd6ea31446a1bd6a447f1ac1a4"
@@ -12574,11 +13060,6 @@
resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.7.tgz#50ae4353eaaddc04044279812f52c8c65857dbcb"
integrity sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==
-"@types/resolve@1.20.2":
- version "1.20.2"
- resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.20.2.tgz#97d26e00cd4a0423b4af620abecf3e6f442b7975"
- integrity sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==
-
"@types/responselike@^1.0.0":
version "1.0.3"
resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.3.tgz#cc29706f0a397cfe6df89debfe4bf5cea159db50"
@@ -12692,6 +13173,11 @@
dependencies:
"@types/node" "*"
+"@types/tinycolor2@^1.4.0":
+ version "1.4.6"
+ resolved "https://registry.yarnpkg.com/@types/tinycolor2/-/tinycolor2-1.4.6.tgz#670cbc0caf4e58dd61d1e3a6f26386e473087f06"
+ integrity sha512-iEN8J0BoMnsWBqjVbWH/c0G0Hh7O21lpR2/+PrvAVgWdzL7eexIFm4JN/Wn10PTcmNdtS6U67r499mlWMXOxNw==
+
"@types/tough-cookie@*":
version "4.0.5"
resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.5.tgz#cb6e2a691b70cb177c6e3ae9c1d2e8b2ea8cd304"
@@ -12710,9 +13196,9 @@
integrity sha512-L6LBgy1f0EFQZ+7uSA57+n2g/s4Qs5r06Vwrwn0/nuK1de+adz00NWaztRQ30aEqw5qOaWbPI8u2cGQ52lj6VA==
"@types/unzipper@^0.10.9":
- version "0.10.11"
- resolved "https://registry.yarnpkg.com/@types/unzipper/-/unzipper-0.10.11.tgz#2a605ae639fc20ee6886be0f7d28dc61c1e6d3d3"
- integrity sha512-D25im2zjyMCcgL9ag6N46+wbtJBnXIr7SI4zHf9eJD2Dw2tEB5e+p5MYkrxKIVRscs5QV0EhtU9rgXSPx90oJg==
+ version "0.10.10"
+ resolved "https://registry.yarnpkg.com/@types/unzipper/-/unzipper-0.10.10.tgz#4407f7f633db0c5cf20f05257352cb8197fb9e5a"
+ integrity sha512-jKJdNxhmCHTZsaKW5x0qjn6rB+gHk0w5VFbEKsw84i+RJqXZyfTmGnpjDcKqzMpjz7VVLsUBMtO5T3mVidpt0g==
dependencies:
"@types/node" "*"
@@ -12737,9 +13223,9 @@
integrity sha512-6SlHBzUW8Jhf3liqrGGXyTJSIFe4nqlJ5A5KaMZ2l/vbM3Wh3KSybots/wfWVzNLK4D1NZluDlSQIbIEPx6oyA==
"@types/verror@^1.10.3":
- version "1.10.11"
- resolved "https://registry.yarnpkg.com/@types/verror/-/verror-1.10.11.tgz#d3d6b418978c8aa202d41e5bb3483227b6ecc1bb"
- integrity sha512-RlDm9K7+o5stv0Co8i8ZRGxDbrTxhJtgjqjFyVh/tXQyl/rYtTKlnTvZ88oSTeYREWurwx20Js4kTuKCsFkUtg==
+ version "1.10.10"
+ resolved "https://registry.yarnpkg.com/@types/verror/-/verror-1.10.10.tgz#d5a4b56abac169bfbc8b23d291363a682e6fa087"
+ integrity sha512-l4MM0Jppn18hb9xmM6wwD1uTdShpf9Pn80aXTStnK1C94gtPvJcV2FrDmbOQUAQfJ1cKZHktkQUDwEqaAKXMMg==
"@types/vinyl@^2.0.4":
version "2.0.12"
@@ -12785,15 +13271,10 @@
"@types/node" "*"
"@types/webidl-conversions" "*"
-"@types/wrap-ansi@^3.0.0":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz#18b97a972f94f60a679fd5c796d96421b9abb9fd"
- integrity sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==
-
"@types/ws@^8.5.10":
- version "8.18.0"
- resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.18.0.tgz#8a2ec491d6f0685ceaab9a9b7ff44146236993b5"
- integrity sha512-8svvI3hMyvN0kKCJMvTJP/x6Y/EoQbepff882wL+Sn5QsXb3etnamgrJq4isrBxSJj5L2AuXcI0+bgkoAXGUJw==
+ version "8.5.14"
+ resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.14.tgz#93d44b268c9127d96026cf44353725dd9b6c3c21"
+ integrity sha512-bd/YFLW+URhBzMXurx7lWByOu+xzU9+kb3RboOteXYDfW+tr+JZa99OyNmPINEGB/ahzKrEuc8rcv4gnpJmxTw==
dependencies:
"@types/node" "*"
@@ -12823,36 +13304,55 @@
dependencies:
"@types/node" "*"
-"@typescript-eslint/scope-manager@8.26.0", "@typescript-eslint/scope-manager@^8.18.2":
- version "8.26.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.26.0.tgz#b06623fad54a3a77fadab5f652ef75ed3780b545"
- integrity sha512-E0ntLvsfPqnPwng8b8y4OGuzh/iIOm2z8U3S9zic2TeMLW61u5IH2Q1wu0oSTkfrSzwbDJIB/Lm8O3//8BWMPA==
+"@typescript-eslint/scope-manager@8.31.0", "@typescript-eslint/scope-manager@^8.31.0":
+ version "8.31.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.31.0.tgz#48c7f7d729ea038e36cae0ff511e48c2412fb11c"
+ integrity sha512-knO8UyF78Nt8O/B64i7TlGXod69ko7z6vJD9uhSlm0qkAbGeRUSudcm0+K/4CrRjrpiHfBCjMWlc08Vav1xwcw==
dependencies:
- "@typescript-eslint/types" "8.26.0"
- "@typescript-eslint/visitor-keys" "8.26.0"
+ "@typescript-eslint/types" "8.31.0"
+ "@typescript-eslint/visitor-keys" "8.31.0"
"@typescript-eslint/type-utils@^8.0.0":
- version "8.26.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.26.0.tgz#9ee8cc98184b5f66326578de9c097edc89da6f68"
- integrity sha512-ruk0RNChLKz3zKGn2LwXuVoeBcUMh+jaqzN461uMMdxy5H9epZqIBtYj7UiPXRuOpaALXGbmRuZQhmwHhaS04Q==
+ version "8.22.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.22.0.tgz#cd9f23c23f021357ef0baa3490d4d96edcc97509"
+ integrity sha512-NzE3aB62fDEaGjaAYZE4LH7I1MUwHooQ98Byq0G0y3kkibPJQIXVUspzlFOmOfHhiDLwKzMlWxaNv+/qcZurJA==
dependencies:
- "@typescript-eslint/typescript-estree" "8.26.0"
- "@typescript-eslint/utils" "8.26.0"
+ "@typescript-eslint/typescript-estree" "8.22.0"
+ "@typescript-eslint/utils" "8.22.0"
debug "^4.3.4"
- ts-api-utils "^2.0.1"
+ ts-api-utils "^2.0.0"
-"@typescript-eslint/types@8.26.0", "@typescript-eslint/types@^8.0.0":
- version "8.26.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.26.0.tgz#c4e93a8faf3a38a8d8adb007dc7834f1c89ee7bf"
- integrity sha512-89B1eP3tnpr9A8L6PZlSjBvnJhWXtYfZhECqlBl1D9Lme9mHO6iWlsprBtVenQvY1HMhax1mWOjhtL3fh/u+pA==
+"@typescript-eslint/types@8.22.0":
+ version "8.22.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.22.0.tgz#d9dec7116479ad03aeb6c8ac9c5223c4c79cf360"
+ integrity sha512-0S4M4baNzp612zwpD4YOieP3VowOARgK2EkN/GBn95hpyF8E2fbMT55sRHWBq+Huaqk3b3XK+rxxlM8sPgGM6A==
+
+"@typescript-eslint/types@8.31.0", "@typescript-eslint/types@^8.0.0":
+ version "8.31.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.31.0.tgz#c48e20ec47a43b72747714f49ea9f7b38a4fa6c1"
+ integrity sha512-Ch8oSjVyYyJxPQk8pMiP2FFGYatqXQfQIaMp+TpuuLlDachRWpUAeEu1u9B/v/8LToehUIWyiKcA/w5hUFRKuQ==
+
+"@typescript-eslint/typescript-estree@8.22.0":
+ version "8.22.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.22.0.tgz#c188c3e19529d5b3145577c0bd967e2683b114df"
+ integrity sha512-SJX99NAS2ugGOzpyhMza/tX+zDwjvwAtQFLsBo3GQxiGcvaKlqGBkmZ+Y1IdiSi9h4Q0Lr5ey+Cp9CGWNY/F/w==
+ dependencies:
+ "@typescript-eslint/types" "8.22.0"
+ "@typescript-eslint/visitor-keys" "8.22.0"
+ debug "^4.3.4"
+ fast-glob "^3.3.2"
+ is-glob "^4.0.3"
+ minimatch "^9.0.4"
+ semver "^7.6.0"
+ ts-api-utils "^2.0.0"
-"@typescript-eslint/typescript-estree@8.26.0":
- version "8.26.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.26.0.tgz#128972172005a7376e34ed2ecba4e29363b0cad1"
- integrity sha512-tiJ1Hvy/V/oMVRTbEOIeemA2XoylimlDQ03CgPPNaHYZbpsc78Hmngnt+WXZfJX1pjQ711V7g0H7cSJThGYfPQ==
+"@typescript-eslint/typescript-estree@8.31.0":
+ version "8.31.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.31.0.tgz#9c7f84eff6ad23d63cf086c6e93af571cd561270"
+ integrity sha512-xLmgn4Yl46xi6aDSZ9KkyfhhtnYI15/CvHbpOy/eR5NWhK/BK8wc709KKwhAR0m4ZKRP7h07bm4BWUYOCuRpQQ==
dependencies:
- "@typescript-eslint/types" "8.26.0"
- "@typescript-eslint/visitor-keys" "8.26.0"
+ "@typescript-eslint/types" "8.31.0"
+ "@typescript-eslint/visitor-keys" "8.31.0"
debug "^4.3.4"
fast-glob "^3.3.2"
is-glob "^4.0.3"
@@ -12860,22 +13360,22 @@
semver "^7.6.0"
ts-api-utils "^2.0.1"
-"@typescript-eslint/utils@8.26.0", "@typescript-eslint/utils@^8.0.0", "@typescript-eslint/utils@^8.18.2":
- version "8.26.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.26.0.tgz#845d20ed8378a5594e6445f54e53b972aee7b3e6"
- integrity sha512-2L2tU3FVwhvU14LndnQCA2frYC8JnPDVKyQtWFPf8IYFMt/ykEN1bPolNhNbCVgOmdzTlWdusCTKA/9nKrf8Ig==
+"@typescript-eslint/utils@8.22.0", "@typescript-eslint/utils@^5.58.0", "@typescript-eslint/utils@^8.0.0", "@typescript-eslint/utils@^8.31.0":
+ version "8.31.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.31.0.tgz#6fb52471a29fdd16fc253d568c5ad4b048f78ba4"
+ integrity sha512-qi6uPLt9cjTFxAb1zGNgTob4x9ur7xC6mHQJ8GwEzGMGE9tYniublmJaowOJ9V2jUzxrltTPfdG2nKlWsq0+Ww==
dependencies:
"@eslint-community/eslint-utils" "^4.4.0"
- "@typescript-eslint/scope-manager" "8.26.0"
- "@typescript-eslint/types" "8.26.0"
- "@typescript-eslint/typescript-estree" "8.26.0"
+ "@typescript-eslint/scope-manager" "8.31.0"
+ "@typescript-eslint/types" "8.31.0"
+ "@typescript-eslint/typescript-estree" "8.31.0"
-"@typescript-eslint/visitor-keys@8.26.0", "@typescript-eslint/visitor-keys@^8.18.2":
- version "8.26.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.26.0.tgz#a4876216756c69130ea958df3b77222c2ad95290"
- integrity sha512-2z8JQJWAzPdDd51dRQ/oqIJxe99/hoLIqmf8RMCAJQtYDc535W/Jt2+RTP4bP0aKeBG1F65yjIZuczOXCmbWwg==
+"@typescript-eslint/visitor-keys@8.22.0", "@typescript-eslint/visitor-keys@8.31.0", "@typescript-eslint/visitor-keys@^8.31.0":
+ version "8.31.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.31.0.tgz#9a1a97ed16c60d4d1e7399b41c11a6d94ebc1ce5"
+ integrity sha512-QcGHmlRHWOl93o64ZUMNewCdwKGU6WItOU52H0djgNmn1EOrhVudrDzXz4OycCRSCPwFCDrE2iIt5vmuUdHxuQ==
dependencies:
- "@typescript-eslint/types" "8.26.0"
+ "@typescript-eslint/types" "8.31.0"
eslint-visitor-keys "^4.2.0"
"@upwork/node-upwork-oauth2@^2.0.3":
@@ -13080,12 +13580,12 @@
minimatch "7.4.6"
semver "7.6.3"
-"@vitejs/plugin-basic-ssl@1.1.0":
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.1.0.tgz#8b840305a6b48e8764803435ec0c716fa27d3802"
- integrity sha512-wO4Dk/rm8u7RNhOf95ZzcEmC9rYOncYgvq4z3duaJrCgjN8BxAnDVyndanfcJZ0O6XZzHz6Q0hTimxTg8Y9g/A==
+"@vitejs/plugin-basic-ssl@1.2.0":
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.2.0.tgz#9490fe15b8833351982fbe0963987f69f40f5019"
+ integrity sha512-mkQnxTkcldAzIsomk1UuLfAu9n+kpQ3JbHcpCp7d2Oo6ITtji8pHS3QToOWjhPFvNQSnhlkAjmGbhv2QvwO/7Q==
-"@webassemblyjs/ast@1.14.1", "@webassemblyjs/ast@^1.12.1", "@webassemblyjs/ast@^1.14.1":
+"@webassemblyjs/ast@1.14.1", "@webassemblyjs/ast@^1.14.1":
version "1.14.1"
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.14.1.tgz#a9f6a07f2b03c95c8d38c4536a1fdfb521ff55b6"
integrity sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==
@@ -13093,11 +13593,29 @@
"@webassemblyjs/helper-numbers" "1.13.2"
"@webassemblyjs/helper-wasm-bytecode" "1.13.2"
+"@webassemblyjs/ast@^1.12.1":
+ version "1.12.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.12.1.tgz#bb16a0e8b1914f979f45864c23819cc3e3f0d4bb"
+ integrity sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==
+ dependencies:
+ "@webassemblyjs/helper-numbers" "1.11.6"
+ "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
+
+"@webassemblyjs/floating-point-hex-parser@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz#dacbcb95aff135c8260f77fa3b4c5fea600a6431"
+ integrity sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==
+
"@webassemblyjs/floating-point-hex-parser@1.13.2":
version "1.13.2"
resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz#fcca1eeddb1cc4e7b6eed4fc7956d6813b21b9fb"
integrity sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==
+"@webassemblyjs/helper-api-error@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz#6132f68c4acd59dcd141c44b18cbebbd9f2fa768"
+ integrity sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==
+
"@webassemblyjs/helper-api-error@1.13.2":
version "1.13.2"
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz#e0a16152248bc38daee76dd7e21f15c5ef3ab1e7"
@@ -13108,6 +13626,15 @@
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz#822a9bc603166531f7d5df84e67b5bf99b72b96b"
integrity sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==
+"@webassemblyjs/helper-numbers@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz#cbce5e7e0c1bd32cf4905ae444ef64cea919f1b5"
+ integrity sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==
+ dependencies:
+ "@webassemblyjs/floating-point-hex-parser" "1.11.6"
+ "@webassemblyjs/helper-api-error" "1.11.6"
+ "@xtuc/long" "4.2.2"
+
"@webassemblyjs/helper-numbers@1.13.2":
version "1.13.2"
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz#dbd932548e7119f4b8a7877fd5a8d20e63490b2d"
@@ -13117,6 +13644,11 @@
"@webassemblyjs/helper-api-error" "1.13.2"
"@xtuc/long" "4.2.2"
+"@webassemblyjs/helper-wasm-bytecode@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz#bb2ebdb3b83aa26d9baad4c46d4315283acd51e9"
+ integrity sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==
+
"@webassemblyjs/helper-wasm-bytecode@1.13.2":
version "1.13.2"
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz#e556108758f448aae84c850e593ce18a0eb31e0b"
@@ -13223,13 +13755,6 @@
resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-1.7.0.tgz#e1993689ac42d2b16e9194376cfb6753f6254db1"
integrity sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==
-"@whatwg-node/promise-helpers@^1.0.0":
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/@whatwg-node/promise-helpers/-/promise-helpers-1.2.4.tgz#4f62d48e27059e8e655add21faa82d177abf5a0c"
- integrity sha512-daEUfaHbaMuAcor+FPAVK+pOCSzsAYhK6LN1y81EcakdqQEPQvjm74PTmfwfv8POg8pw4RyCv9LXB1e+mQDwqg==
- dependencies:
- tslib "^2.6.3"
-
"@wry/caches@^1.0.0":
version "1.0.1"
resolved "https://registry.yarnpkg.com/@wry/caches/-/caches-1.0.1.tgz#8641fd3b6e09230b86ce8b93558d44cf1ece7e52"
@@ -13409,9 +13934,9 @@ acorn@^7.0.0, acorn@^7.1.1:
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
acorn@^8.0.4, acorn@^8.1.0, acorn@^8.11.0, acorn@^8.14.0, acorn@^8.4.1, acorn@^8.5.0, acorn@^8.7.1, acorn@^8.8.1, acorn@^8.8.2, acorn@^8.9.0:
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.1.tgz#721d5dc10f7d5b5609a891773d47731796935dfb"
- integrity sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==
+ version "8.14.0"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0"
+ integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==
active-win@^8.1.0:
version "8.2.1"
@@ -13464,7 +13989,7 @@ agent-base@^4.3.0:
dependencies:
es6-promisify "^5.0.0"
-agent-base@^7.0.2, agent-base@^7.1.0, agent-base@^7.1.2:
+agent-base@^7.1.0, agent-base@^7.1.2:
version "7.1.3"
resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.3.tgz#29435eb821bc4194633a5b89e5bc4703bafc25a1"
integrity sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==
@@ -13518,7 +14043,7 @@ ajv-keywords@^5.1.0:
dependencies:
fast-deep-equal "^3.1.3"
-ajv@8.17.1, ajv@^8.0.0, ajv@^8.0.1, ajv@^8.11.0, ajv@^8.12.0, ajv@^8.6.3, ajv@^8.9.0:
+ajv@8.17.1, ajv@^8.0.0, ajv@^8.0.1, ajv@^8.11.0, ajv@^8.12.0, ajv@^8.17.1, ajv@^8.6.3, ajv@^8.9.0:
version "8.17.1"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6"
integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==
@@ -13562,22 +14087,22 @@ analytics@0.8.9:
"@analytics/core" "^0.12.7"
"@analytics/storage-utils" "^0.4.2"
-angular-eslint@^18.3.0:
- version "18.4.3"
- resolved "https://registry.yarnpkg.com/angular-eslint/-/angular-eslint-18.4.3.tgz#d149df075304af9d4f57661c6886b0e1135c2f2b"
- integrity sha512-0ZjLzzADGRLUhZC8ZpwSo6CE/m6QhQB/oljMJ0mEfP+lB1sy1v8PBKNsJboIcfEEgGW669Z/efVQ3df88yJLYg==
- dependencies:
- "@angular-devkit/core" ">= 18.0.0 < 19.0.0"
- "@angular-devkit/schematics" ">= 18.0.0 < 19.0.0"
- "@angular-eslint/builder" "18.4.3"
- "@angular-eslint/eslint-plugin" "18.4.3"
- "@angular-eslint/eslint-plugin-template" "18.4.3"
- "@angular-eslint/schematics" "18.4.3"
- "@angular-eslint/template-parser" "18.4.3"
+angular-eslint@^19.3.0:
+ version "19.3.0"
+ resolved "https://registry.yarnpkg.com/angular-eslint/-/angular-eslint-19.3.0.tgz#3096a104800c0457003f5bfe3f7bec6eb7f045b4"
+ integrity sha512-19hkkH3z/2wGhKk3LfttEBkl6CtQP/tFK6/mJoO/MbIkXV0SSJWtbPbOpEaxICLlfCw0oR6W9OoQqByWkwXjkQ==
+ dependencies:
+ "@angular-devkit/core" ">= 19.0.0 < 20.0.0"
+ "@angular-devkit/schematics" ">= 19.0.0 < 20.0.0"
+ "@angular-eslint/builder" "19.3.0"
+ "@angular-eslint/eslint-plugin" "19.3.0"
+ "@angular-eslint/eslint-plugin-template" "19.3.0"
+ "@angular-eslint/schematics" "19.3.0"
+ "@angular-eslint/template-parser" "19.3.0"
"@typescript-eslint/types" "^8.0.0"
"@typescript-eslint/utils" "^8.0.0"
-angular2-smart-table@^3.4.0:
+angular2-smart-table@^3.6.1:
version "3.6.1"
resolved "https://registry.yarnpkg.com/angular2-smart-table/-/angular2-smart-table-3.6.1.tgz#90e08717ca6176a79331971dec07bee0417fcb50"
integrity sha512-qAc4+obs+vSacO48g20NBsNZNfDRHlCPX8Pib9EA4zc4//eSqc3aVrJAjgiBtKGvDhe/cNan6ZIzxlSPxS3wag==
@@ -13667,9 +14192,9 @@ ansi-regex@^6.0.1, ansi-regex@^6.1.0:
integrity sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==
ansi-sequence-parser@^1.1.0:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/ansi-sequence-parser/-/ansi-sequence-parser-1.1.3.tgz#f2cefb8b681aeb72b7cd50aebc00d509eba64d4c"
- integrity sha512-+fksAx9eG3Ab6LDnLs3ZqZa8KVJ/jYnX+D4Qe1azX+LFGFAXqynCQLOdLpNYN/l9e7l6hMWwZbrnctqr6eSQSw==
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/ansi-sequence-parser/-/ansi-sequence-parser-1.1.1.tgz#e0aa1cdcbc8f8bb0b5bca625aac41f5f056973cf"
+ integrity sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==
ansi-styles@^2.2.1:
version "2.2.1"
@@ -13683,7 +14208,7 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1:
dependencies:
color-convert "^1.9.0"
-ansi-styles@^4.0.0, ansi-styles@^4.1.0, ansi-styles@^4.2.0:
+ansi-styles@^4.0.0, ansi-styles@^4.1.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
@@ -13705,12 +14230,7 @@ ansi-wrap@0.1.0, ansi-wrap@^0.1.0:
resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf"
integrity sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==
-ansicolors@~0.3.2:
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979"
- integrity sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==
-
-ansis@^3.17.0, ansis@^3.3.1, ansis@^3.3.2, ansis@^3.9.0:
+ansis@^3.17.0, ansis@^3.3.1, ansis@^3.3.2:
version "3.17.0"
resolved "https://registry.yarnpkg.com/ansis/-/ansis-3.17.0.tgz#fa8d9c2a93fe7d1177e0c17f9eeb562a58a832d7"
integrity sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg==
@@ -14305,15 +14825,15 @@ auto-launch@5.0.5:
winreg "1.2.4"
autoprefixer@10.4.20, autoprefixer@^10.4.20, autoprefixer@^10.4.6, autoprefixer@^10.4.9:
- version "10.4.21"
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.21.tgz#77189468e7a8ad1d9a37fbc08efc9f480cf0a95d"
- integrity sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==
+ version "10.4.20"
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.20.tgz#5caec14d43976ef42e32dcb4bd62878e96be5b3b"
+ integrity sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==
dependencies:
- browserslist "^4.24.4"
- caniuse-lite "^1.0.30001702"
+ browserslist "^4.23.3"
+ caniuse-lite "^1.0.30001646"
fraction.js "^4.3.7"
normalize-range "^0.1.2"
- picocolors "^1.1.1"
+ picocolors "^1.0.1"
postcss-value-parser "^4.2.0"
available-typed-arrays@^1.0.7:
@@ -14348,10 +14868,19 @@ axe-core@3.5.5:
resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-3.5.5.tgz#84315073b53fa3c0c51676c588d59da09a192227"
integrity sha512-5P0QZ6J5xGikH780pghEdbEKijCTrruK9KxtPZCFWUpef0f6GipO+xEZ5GKCb020mmqgbiNO6TcA55CriL784Q==
-axios@^1.1.3, axios@^1.6.0, axios@^1.7.4, axios@^1.8.2:
- version "1.8.2"
- resolved "https://registry.yarnpkg.com/axios/-/axios-1.8.2.tgz#fabe06e241dfe83071d4edfbcaa7b1c3a40f7979"
- integrity sha512-ls4GYBm5aig9vWx8AWDSGLpnpDQRtWAfrjU+EuytuODrFBkqesN2RkOQCBzrA1RQNHw1SmRMSDDDSwzNAYQ6Rg==
+axios@^1.1.3, axios@^1.6.0, axios@^1.7.4:
+ version "1.7.9"
+ resolved "https://registry.yarnpkg.com/axios/-/axios-1.7.9.tgz#d7d071380c132a24accda1b2cfc1535b79ec650a"
+ integrity sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==
+ dependencies:
+ follow-redirects "^1.15.6"
+ form-data "^4.0.0"
+ proxy-from-env "^1.1.0"
+
+axios@^1.8.2, axios@^1.8.3:
+ version "1.8.4"
+ resolved "https://registry.yarnpkg.com/axios/-/axios-1.8.4.tgz#78990bb4bc63d2cae072952d374835950a82f447"
+ integrity sha512-eBSYY4Y68NNlHbHBMdeDmKNtDgXWhQsJcGqzO3iLUM0GraQFSS9cVgPX5I9b3lbdFKyYoAEGAZF1DwhTaljNAw==
dependencies:
follow-redirects "^1.15.6"
form-data "^4.0.0"
@@ -14380,15 +14909,7 @@ babel-jest@^29.7.0:
graceful-fs "^4.2.9"
slash "^3.0.0"
-babel-loader@9.1.3:
- version "9.1.3"
- resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.3.tgz#3d0e01b4e69760cc694ee306fe16d358aa1c6f9a"
- integrity sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==
- dependencies:
- find-cache-dir "^4.0.0"
- schema-utils "^4.0.0"
-
-babel-loader@^9.1.2:
+babel-loader@9.2.1, babel-loader@^9.1.2:
version "9.2.1"
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.2.1.tgz#04c7835db16c246dd19ba0914418f3937797587b"
integrity sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==
@@ -14458,7 +14979,7 @@ babel-plugin-polyfill-corejs2@^0.4.10:
"@babel/helper-define-polyfill-provider" "^0.6.3"
semver "^6.3.1"
-babel-plugin-polyfill-corejs3@^0.10.1, babel-plugin-polyfill-corejs3@^0.10.4, babel-plugin-polyfill-corejs3@^0.10.6:
+babel-plugin-polyfill-corejs3@^0.10.6:
version "0.10.6"
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz#2deda57caef50f59c525aeb4964d3b2f867710c7"
integrity sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==
@@ -14639,6 +15160,20 @@ bcryptjs@2.4.3, bcryptjs@^2.4.3:
resolved "https://registry.yarnpkg.com/bcryptjs/-/bcryptjs-2.4.3.tgz#9ab5627b93e60621ff7cdac5da9733027df1d0cb"
integrity sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==
+beasties@0.3.2:
+ version "0.3.2"
+ resolved "https://registry.yarnpkg.com/beasties/-/beasties-0.3.2.tgz#c0f7ed1362dff0ee8f9c448bcd1b1d6fe16cc609"
+ integrity sha512-p4AF8uYzm9Fwu8m/hSVTCPXrRBPmB34hQpHsec2KOaR9CZmgoU8IOv4Cvwq4hgz2p4hLMNbsdNl5XeA6XbAQwA==
+ dependencies:
+ css-select "^5.1.0"
+ css-what "^6.1.0"
+ dom-serializer "^2.0.0"
+ domhandler "^5.0.3"
+ htmlparser2 "^10.0.0"
+ picocolors "^1.1.1"
+ postcss "^8.4.49"
+ postcss-media-query-parser "^0.2.3"
+
becke-ch--regex--s0-0-v1--base--pl--lib@^1.2.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/becke-ch--regex--s0-0-v1--base--pl--lib/-/becke-ch--regex--s0-0-v1--base--pl--lib-1.4.0.tgz#429ceebbfa5f7e936e78d73fbdc7da7162b20e20"
@@ -15157,7 +15692,17 @@ browserify@^16.2.3:
vm-browserify "^1.0.0"
xtend "^4.0.0"
-browserslist@^4.0.0, browserslist@^4.20.3, browserslist@^4.21.10, browserslist@^4.21.4, browserslist@^4.21.5, browserslist@^4.22.1, browserslist@^4.23.0, browserslist@^4.24.0, browserslist@^4.24.4:
+browserslist@^4.0.0, browserslist@^4.20.3, browserslist@^4.21.10, browserslist@^4.21.4, browserslist@^4.21.5, browserslist@^4.22.1, browserslist@^4.23.0, browserslist@^4.23.3, browserslist@^4.24.0:
+ version "4.24.2"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.2.tgz#f5845bc91069dbd55ee89faf9822e1d885d16580"
+ integrity sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==
+ dependencies:
+ caniuse-lite "^1.0.30001669"
+ electron-to-chromium "^1.5.41"
+ node-releases "^2.0.18"
+ update-browserslist-db "^1.1.1"
+
+browserslist@^4.24.3, browserslist@^4.24.4:
version "4.24.4"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.4.tgz#c6b2865a3f08bcb860a0e827389003b9fe686e4b"
integrity sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==
@@ -15194,9 +15739,9 @@ bson@^5.5.0:
integrity sha512-ix0EwukN2EpC0SRWIj/7B5+A6uQMQy6KMREI9qQqvgpkV2frH63T0UDVd1SYedL6dNCmDBYB3QtXi4ISk9YT+g==
bson@^6.10.1:
- version "6.10.3"
- resolved "https://registry.yarnpkg.com/bson/-/bson-6.10.3.tgz#5f9a463af6b83e264bedd08b236d1356a30eda47"
- integrity sha512-MTxGsqgYTwfshYWTRdmZRC+M7FnG1b4y7RO7p2k3X24Wq0yv1m77Wsj0BzlPzd/IowgESfsruQCUToa7vbOpPQ==
+ version "6.10.2"
+ resolved "https://registry.yarnpkg.com/bson/-/bson-6.10.2.tgz#092ba1d2abee7e126320003f88d6883c3b1897df"
+ integrity sha512-5afhLTjqDSA3akH56E+/2J6kTDuSIlBxyXPdQslj9hcIgOUE378xdOfZvC/9q3LifJNI6KR/juZ+d0NRNYBwXg==
btoa-lite@^1.0.0:
version "1.0.0"
@@ -15569,7 +16114,15 @@ caldate@^1.1.0:
dependencies:
moment-timezone "^0.5.31"
-call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2:
+call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz#32e5892e6361b29b0b545ba6f7763378daca2840"
+ integrity sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==
+ dependencies:
+ es-errors "^1.3.0"
+ function-bind "^1.1.2"
+
+call-bind-apply-helpers@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz#4b5428c222be985d79c3d82657479dbe0b59b2d6"
integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==
@@ -15587,7 +16140,15 @@ call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.7, call-bind@^1.0.8:
get-intrinsic "^1.2.4"
set-function-length "^1.2.2"
-call-bound@^1.0.2, call-bound@^1.0.3, call-bound@^1.0.4:
+call-bound@^1.0.2, call-bound@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.3.tgz#41cfd032b593e39176a71533ab4f384aa04fd681"
+ integrity sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==
+ dependencies:
+ call-bind-apply-helpers "^1.0.1"
+ get-intrinsic "^1.2.6"
+
+call-bound@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz#238de935d2a2a692928c538c7ccfa91067fd062a"
integrity sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==
@@ -15659,10 +16220,30 @@ caniuse-api@^3.0.0:
lodash.memoize "^4.1.2"
lodash.uniq "^4.5.0"
-caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001688, caniuse-lite@^1.0.30001702:
- version "1.0.30001703"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001703.tgz#977cb4920598c158f491ecf4f4f2cfed9e354718"
- integrity sha512-kRlAGTRWgPsOj7oARC9m1okJEXdL/8fekFVcxA8Hl7GH4r/sN4OJn/i6Flde373T50KS7Y37oFbMwlE8+F42kQ==
+caniuse-lite@^1.0.0:
+ version "1.0.30001672"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001672.tgz#02ac296ad4765c6c4f93031525f60cf8bdf4a44f"
+ integrity sha512-XhW1vRo1ob6aeK2w3rTohwTPBLse/rvjq+s3RTSBwnlZqoFFjx9cHsShJjAIbLsLjyoacaTxpLZy9v3gg6zypw==
+
+caniuse-lite@^1.0.30001520:
+ version "1.0.30001715"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001715.tgz#bd325a37ad366e3fe90827d74062807a34fbaeb2"
+ integrity sha512-7ptkFGMm2OAOgvZpwgA4yjQ5SQbrNVGdRjzH0pBdy1Fasvcr+KAeECmbCAECzTuDuoX0FCY8KzUxjf9+9kfZEw==
+
+caniuse-lite@^1.0.30001616:
+ version "1.0.30001690"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001690.tgz#f2d15e3aaf8e18f76b2b8c1481abde063b8104c8"
+ integrity sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==
+
+caniuse-lite@^1.0.30001646:
+ version "1.0.30001684"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001684.tgz#0eca437bab7d5f03452ff0ef9de8299be6b08e16"
+ integrity sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==
+
+caniuse-lite@^1.0.30001669, caniuse-lite@^1.0.30001688:
+ version "1.0.30001700"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001700.tgz#26cd429cf09b4fd4e745daf4916039c794d720f6"
+ integrity sha512-2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ==
canonicalize@^1.0.1:
version "1.0.8"
@@ -15674,14 +16255,6 @@ capitalize@^1.0.0:
resolved "https://registry.yarnpkg.com/capitalize/-/capitalize-1.0.0.tgz#dc802c580aee101929020d2ca14b4ca8a0ae44be"
integrity sha512-ZvPF27zRh4ZiRbWYfSktO+t7xi4RPfqL9w6gfPAWGT5pT9TjB0rlP8cKHmKWHYYCR8QHKDDebX3HVHcfw6K3GQ==
-cardinal@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-2.1.1.tgz#7cc1055d822d212954d07b085dea251cc7bc5505"
- integrity sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==
- dependencies:
- ansicolors "~0.3.2"
- redeyed "~2.1.0"
-
caseless@~0.12.0:
version "0.12.0"
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
@@ -15793,10 +16366,10 @@ chart.js@^2.1.5:
chartjs-color "^2.1.0"
moment "^2.10.2"
-chart.js@^4.4.1:
- version "4.4.8"
- resolved "https://registry.yarnpkg.com/chart.js/-/chart.js-4.4.8.tgz#54645b638e9d585099bc16b892947b5e6cd2a552"
- integrity sha512-IkGZlVpXP+83QpMm4uxEiGqSI7jFizwVtF3+n5Pc3k7sMO+tkd0qxh2OzLhenM0K80xtmAONWGBn082EiBQSDA==
+chart.js@^4.4.9:
+ version "4.4.9"
+ resolved "https://registry.yarnpkg.com/chart.js/-/chart.js-4.4.9.tgz#602e2fc2462f0f7bb7b255eaa1b51f56a43a1362"
+ integrity sha512-EyZ9wWKgpAU0fLJ43YAEIF8sr5F2W3LqbS40ZJyHIner2lY14ufqv2VMp69MAiZ2rpwxEUxEhIH/0U3xyRynxg==
dependencies:
"@kurkle/color" "^0.3.0"
@@ -15901,7 +16474,7 @@ chokidar@3.5.2:
optionalDependencies:
fsevents "~2.3.2"
-chokidar@3.6.0, "chokidar@>=3.0.0 <4.0.0", chokidar@^3.0.0, chokidar@^3.0.2, chokidar@^3.4.0, chokidar@^3.4.2, chokidar@^3.5.2, chokidar@^3.5.3, chokidar@^3.6.0:
+chokidar@3.6.0, chokidar@^3.0.0, chokidar@^3.0.2, chokidar@^3.4.0, chokidar@^3.4.2, chokidar@^3.5.2, chokidar@^3.5.3, chokidar@^3.6.0:
version "3.6.0"
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b"
integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==
@@ -15985,14 +16558,14 @@ ci-info@^3.2.0, ci-info@^3.8.0:
integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==
ci-info@^4.0.0, ci-info@^4.1.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.2.0.tgz#cbd21386152ebfe1d56f280a3b5feccbd96764c7"
- integrity sha512-cYY9mypksY8NRqgDB1XD1RiJL338v/551niynFTGkZOO2LHuB2OmOYxDIe/ttN9AHwrqdum1360G3ald0W9kCg==
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.1.0.tgz#92319d2fa29d2620180ea5afed31f589bc98cf83"
+ integrity sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==
cidr-regex@^4.1.1:
- version "4.1.3"
- resolved "https://registry.yarnpkg.com/cidr-regex/-/cidr-regex-4.1.3.tgz#df94af8ac16fc2e0791e2824693b957ff1ac4d3e"
- integrity sha512-86M1y3ZeQvpZkZejQCcS+IaSWjlDUC+ORP0peScQ4uEUFCZ8bEQVz7NlJHqysoUb6w3zCjx4Mq/8/2RHhMwHYw==
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/cidr-regex/-/cidr-regex-4.1.1.tgz#acbe7ba9f10d658710bddd25baa900509e90125a"
+ integrity sha512-ekKcVp+iRB9zlKFXyx7io7nINgb0oRjgRdXNEodp1OuxRui8FXr/CA40Tz1voWUp9DPPrMyQKy01vJhDo4N1lw==
dependencies:
ip-regex "^5.0.0"
@@ -16063,7 +16636,7 @@ clean-stack@^2.0.0:
resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
-clean-stack@^3.0.0, clean-stack@^3.0.1:
+clean-stack@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-3.0.1.tgz#155bf0b2221bf5f4fba89528d24c5953f17fe3a8"
integrity sha512-lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg==
@@ -16124,13 +16697,6 @@ cli-highlight@^2.1.11:
parse5-htmlparser2-tree-adapter "^6.0.0"
yargs "^16.0.0"
-cli-progress@^3.4.0:
- version "3.12.0"
- resolved "https://registry.yarnpkg.com/cli-progress/-/cli-progress-3.12.0.tgz#807ee14b66bcc086258e444ad0f19e7d42577942"
- integrity sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==
- dependencies:
- string-width "^4.2.3"
-
cli-spinners@2.6.1:
version "2.6.1"
resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.1.tgz#adc954ebe281c37a6319bfa401e6dd2488ffb70d"
@@ -16173,38 +16739,6 @@ cli-truncate@^4.0.0:
slice-ansi "^5.0.0"
string-width "^7.0.0"
-cli-ux@^5.5.0:
- version "5.6.7"
- resolved "https://registry.yarnpkg.com/cli-ux/-/cli-ux-5.6.7.tgz#32ef9e6cb2b457be834280cc799028a11c8235a8"
- integrity sha512-dsKAurMNyFDnO6X1TiiRNiVbL90XReLKcvIq4H777NMqXGBxBws23ag8ubCJE97vVZEgWG2eSUhsyLf63Jv8+g==
- dependencies:
- "@oclif/command" "^1.8.15"
- "@oclif/errors" "^1.3.5"
- "@oclif/linewrap" "^1.0.0"
- "@oclif/screen" "^1.0.4"
- ansi-escapes "^4.3.0"
- ansi-styles "^4.2.0"
- cardinal "^2.1.1"
- chalk "^4.1.0"
- clean-stack "^3.0.0"
- cli-progress "^3.4.0"
- extract-stack "^2.0.0"
- fs-extra "^8.1"
- hyperlinker "^1.0.0"
- indent-string "^4.0.0"
- is-wsl "^2.2.0"
- js-yaml "^3.13.1"
- lodash "^4.17.21"
- natural-orderby "^2.0.1"
- object-treeify "^1.1.4"
- password-prompt "^1.1.2"
- semver "^7.3.2"
- string-width "^4.2.0"
- strip-ansi "^6.0.0"
- supports-color "^8.1.0"
- supports-hyperlinks "^2.1.0"
- tslib "^2.0.0"
-
cli-width@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6"
@@ -16525,6 +17059,11 @@ combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6:
dependencies:
delayed-stream "~1.0.0"
+commander@11.1.0:
+ version "11.1.0"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-11.1.0.tgz#62fdce76006a68e5c1ab3314dc92e800eb83d906"
+ integrity sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==
+
commander@4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
@@ -16545,11 +17084,16 @@ commander@^10.0.0:
resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06"
integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==
-commander@^12.0.0, commander@^12.1.0:
+commander@^12.1.0:
version "12.1.0"
resolved "https://registry.yarnpkg.com/commander/-/commander-12.1.0.tgz#01423b36f501259fdaac4d0e4d60c96c991585d3"
integrity sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==
+commander@^13.0.0:
+ version "13.1.0"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-13.1.0.tgz#776167db68c78f38dcce1f9b8d7b8b9a488abf46"
+ integrity sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==
+
commander@^2.12.1, commander@^2.19.0, commander@^2.20.0, commander@^2.20.3, commander@^2.9.0:
version "2.20.3"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
@@ -16690,7 +17234,7 @@ compressible@~2.0.18:
dependencies:
mime-db ">= 1.43.0 < 2"
-compression@1.7.5:
+compression@1.7.5, compression@^1.7.4:
version "1.7.5"
resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.5.tgz#fdd256c0a642e39e314c478f6c2cd654edd74c93"
integrity sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==
@@ -16703,19 +17247,6 @@ compression@1.7.5:
safe-buffer "5.2.1"
vary "~1.1.2"
-compression@^1.7.4:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/compression/-/compression-1.8.0.tgz#09420efc96e11a0f44f3a558de59e321364180f7"
- integrity sha512-k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA==
- dependencies:
- bytes "3.1.2"
- compressible "~2.0.18"
- debug "2.6.9"
- negotiator "~0.6.4"
- on-headers "~1.0.2"
- safe-buffer "5.2.1"
- vary "~1.1.2"
-
concat-map@0.0.1:
version "0.0.1"
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
@@ -17261,7 +17792,14 @@ copyfiles@^2.4.1:
untildify "^4.0.0"
yargs "^16.1.0"
-core-js-compat@^3.37.1, core-js-compat@^3.38.0, core-js-compat@^3.38.1, core-js-compat@^3.40.0:
+core-js-compat@^3.38.0, core-js-compat@^3.38.1:
+ version "3.40.0"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.40.0.tgz#7485912a5a4a4315c2fdb2cbdc623e6881c88b38"
+ integrity sha512-0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ==
+ dependencies:
+ browserslist "^4.24.3"
+
+core-js-compat@^3.40.0:
version "3.41.0"
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.41.0.tgz#4cdfce95f39a8f27759b667cf693d96e5dda3d17"
integrity sha512-RFsU9LySVue9RTwdDVX/T0e2Y6jRYWXERKElIjpuEOEnxaXffI0X7RUwVzfYLfzuLXSNJDYoRYUAmRUcyln20A==
@@ -17279,9 +17817,9 @@ core-js@^2.4.0:
integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==
core-js@^3.30.1, core-js@^3.6.4, core-js@^3.8.3:
- version "3.41.0"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.41.0.tgz#57714dafb8c751a6095d028a7428f1fb5834a776"
- integrity sha512-SJ4/EHwS36QMJd6h/Rg+GyR4A5xE0FSI3eZ+iBVpfqf1x0eTSg1smWLHrA+2jQThZSh97fmSgFSU8B61nxosxA==
+ version "3.40.0"
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.40.0.tgz#2773f6b06877d8eda102fc42f828176437062476"
+ integrity sha512-7vsMc/Lty6AGnn7uFpYT56QesI5D2Y/UkgKounk87OP9Z2H9Z8kj6jzcSGAxFmUtDOS0ntK6lbQz+Nsa0Jj6mQ==
core-util-is@1.0.2:
version "1.0.2"
@@ -17452,19 +17990,6 @@ create-require@^1.1.0:
resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333"
integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==
-critters@0.0.24:
- version "0.0.24"
- resolved "https://registry.yarnpkg.com/critters/-/critters-0.0.24.tgz#d20b16c28908d2dae4b9cd4851d4d2c93de98a0b"
- integrity sha512-Oyqew0FGM0wYUSNqR0L6AteO5MpMoUU0rhKRieXeiKs+PmRTxiJMyaunYB2KF6fQ3dzChXKCpbFOEJx3OQ1v/Q==
- dependencies:
- chalk "^4.1.0"
- css-select "^5.1.0"
- dom-serializer "^2.0.0"
- domhandler "^5.0.2"
- htmlparser2 "^8.0.2"
- postcss "^8.4.23"
- postcss-media-query-parser "^0.2.3"
-
cron-parser@^4.2.0:
version "4.9.0"
resolved "https://registry.yarnpkg.com/cron-parser/-/cron-parser-4.9.0.tgz#0340694af3e46a0894978c6f52a6dbb5c0f11ad5"
@@ -17513,7 +18038,7 @@ cross-spawn@^6.0.0, cross-spawn@^6.0.5:
shebang-command "^1.2.0"
which "^1.2.9"
-cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.3, cross-spawn@^7.0.6:
+cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.3:
version "7.0.6"
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f"
integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==
@@ -17877,11 +18402,11 @@ cssstyle@^2.3.0:
cssom "~0.3.6"
cssstyle@^4.0.1:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-4.3.0.tgz#83db22d1aec8eb7e5ecd812b4d14a17fb3dd243d"
- integrity sha512-6r0NiY0xizYqfBvWp1G7WXJ06/bZyrk7Dc6PHql82C/pKGUTKu4yAX4Y8JPamb1ob9nBKuxWzCGTRuGwU3yxJQ==
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-4.2.1.tgz#5142782410fea95db66fb68147714a652a7c2381"
+ integrity sha512-9+vem03dMXG7gDmZ62uqmRiMRNtinIZ9ZyuF6BdxzfOD+FdN5hretzynkn0ReS2DO2GSw76RWHs0UmJPI2zUjw==
dependencies:
- "@asamuzakjp/css-color" "^3.1.1"
+ "@asamuzakjp/css-color" "^2.8.2"
rrweb-cssom "^0.8.0"
csurf@^1.11.0:
@@ -18067,14 +18592,14 @@ cz-conventional-changelog@3.3.0, cz-conventional-changelog@^3.3.0:
optionalDependencies:
"@commitlint/load" ">6.1.1"
-"d3-array@1 - 2", d3-array@2:
+"d3-array@1 - 2":
version "2.12.1"
resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-2.12.1.tgz#e20b41aafcdffdf5d50928004ececf815a465e81"
integrity sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==
dependencies:
internmap "^1.0.0"
-"d3-array@2 - 3", "d3-array@2.10.0 - 3", "d3-array@2.5.0 - 3", d3-array@3, d3-array@^3.1.1, d3-array@^3.2.0:
+"d3-array@2 - 3", "d3-array@2.10.0 - 3", "d3-array@2.5.0 - 3", d3-array@3, d3-array@^3.2.0:
version "3.2.4"
resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.2.4.tgz#15fec33b237f97ac5d7c986dc77da273a8ed0bb5"
integrity sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==
@@ -18193,7 +18718,7 @@ d3-geo@3:
dependencies:
d3-array "2.5.0 - 3"
-d3-hierarchy@3, d3-hierarchy@^3.1.0:
+d3-hierarchy@3, d3-hierarchy@^3.1.2:
version "3.1.2"
resolved "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz#b01cd42c1eed3d46db77a5966cf726f8c09160c6"
integrity sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==
@@ -18296,27 +18821,13 @@ d3-shape@^1.2.0:
dependencies:
d3-path "1"
-"d3-time-format@2 - 4", d3-time-format@4:
+"d3-time-format@2 - 4", d3-time-format@4, d3-time-format@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-4.1.0.tgz#7ab5257a5041d11ecb4fe70a5c7d16a195bb408a"
integrity sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==
dependencies:
d3-time "1 - 3"
-d3-time-format@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-3.0.0.tgz#df8056c83659e01f20ac5da5fdeae7c08d5f1bb6"
- integrity sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag==
- dependencies:
- d3-time "1 - 2"
-
-"d3-time@1 - 2":
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-2.1.1.tgz#e9d8a8a88691f4548e68ca085e5ff956724a6682"
- integrity sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ==
- dependencies:
- d3-array "2"
-
"d3-time@1 - 3", "d3-time@2.1.1 - 3", d3-time@3:
version "3.1.0"
resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-3.1.0.tgz#9310db56e992e3c0175e1ef385e545e48a9bb5c7"
@@ -18733,13 +19244,6 @@ default-browser@^5.2.1:
bundle-name "^4.1.0"
default-browser-id "^5.0.0"
-default-gateway@^6.0.3:
- version "6.0.3"
- resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-6.0.3.tgz#819494c888053bdb743edbf343d6cdf7f2943a71"
- integrity sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==
- dependencies:
- execa "^5.0.0"
-
defaults@^1.0.3:
version "1.0.4"
resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a"
@@ -19194,7 +19698,7 @@ domutils@^2.0.0, domutils@^2.4.2, domutils@^2.5.2:
domelementtype "^2.2.0"
domhandler "^4.2.0"
-domutils@^3.0.1, domutils@^3.1.0:
+domutils@^3.0.1, domutils@^3.1.0, domutils@^3.2.1:
version "3.2.2"
resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.2.2.tgz#edbfe2b668b0c1d97c24baf0f1062b132221bc78"
integrity sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==
@@ -19477,10 +19981,15 @@ electron-store@^8.1.0:
conf "^10.2.0"
type-fest "^2.17.0"
+electron-to-chromium@^1.5.41:
+ version "1.5.102"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.102.tgz#81a452ace8e2c3fa7fba904ea4fed25052c53d3f"
+ integrity sha512-eHhqaja8tE/FNpIiBrvBjFV/SSKpyWHLvxuR9dPTdo+3V9ppdLmFB7ZZQ98qNovcngPLYIz0oOBF9P0FfZef5Q==
+
electron-to-chromium@^1.5.73:
- version "1.5.114"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.114.tgz#f2bb4fda80a7db4ea273565e75b0ebbe19af0ac3"
- integrity sha512-DFptFef3iktoKlFQK/afbo274/XNWD00Am0xa7M8FZUepHlHT8PEuiNBoRfFHbH1okqN58AlhbJ4QTkcnXorjA==
+ version "1.5.90"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.90.tgz#4717e5a5413f95bbb12d0af14c35057e9c65e0b6"
+ integrity sha512-C3PN4aydfW91Natdyd449Kw+BzhLmof6tzy5W1pFC5SpQxVXT+oyiyOG9AgYYSN9OdA/ik3YkCrpwqI8ug5Tug==
electron-updater@^6.1.7:
version "6.3.9"
@@ -19712,9 +20221,9 @@ enhanced-resolve@^4.0.0:
tapable "^1.0.0"
enhanced-resolve@^5.0.0, enhanced-resolve@^5.17.1, enhanced-resolve@^5.7.0:
- version "5.18.1"
- resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz#728ab082f8b7b6836de51f1637aab5d3b9568faf"
- integrity sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==
+ version "5.18.0"
+ resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.18.0.tgz#91eb1db193896b9801251eeff1c6980278b1e404"
+ integrity sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==
dependencies:
graceful-fs "^4.2.4"
tapable "^2.2.0"
@@ -19754,6 +20263,11 @@ entities@^4.2.0, entities@^4.3.0, entities@^4.4.0, entities@^4.5.0:
resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
+entities@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/entities/-/entities-6.0.0.tgz#09c9e29cb79b0a6459a9b9db9efb418ac5bb8e51"
+ integrity sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==
+
env-ci@^10.0.0:
version "10.0.0"
resolved "https://registry.yarnpkg.com/env-ci/-/env-ci-10.0.0.tgz#38f0c33a0d14df1303cba708339fb5e38535b00c"
@@ -19811,7 +20325,7 @@ error-ex@^1.2.0, error-ex@^1.3.1:
dependencies:
is-arrayish "^0.2.1"
-error-stack-parser@^2.0.6:
+error-stack-parser@^2.0.6, error-stack-parser@^2.1.4:
version "2.1.4"
resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.1.4.tgz#229cb01cdbfa84440bfa91876285b94680188286"
integrity sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==
@@ -19970,78 +20484,75 @@ es6-symbol@^3.1.0, es6-symbol@^3.1.1, es6-symbol@^3.1.3:
d "^1.0.2"
ext "^1.7.0"
-esbuild-wasm@0.23.0:
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/esbuild-wasm/-/esbuild-wasm-0.23.0.tgz#7b09c7bc669b702b440aeb3d5c9210f96766e1b2"
- integrity sha512-6jP8UmWy6R6TUUV8bMuC3ZyZ6lZKI56x0tkxyCIqWwRRJ/DgeQKneh/Oid5EoGoPFLrGNkz47ZEtWAYuiY/u9g==
-
-esbuild-wasm@>=0.15.13:
+esbuild-wasm@0.25.1:
version "0.25.1"
resolved "https://registry.yarnpkg.com/esbuild-wasm/-/esbuild-wasm-0.25.1.tgz#fbe9ca6d7afbfe351389cad02c0fcd584cf40bcc"
integrity sha512-dZxPeDHcDIQ6ilml/NzYxnPbNkoVsHSFH3JGLSobttc5qYYgExMo8lh2XcB+w+AfiqykVDGK5PWanGB0gWaAWw==
-esbuild@0.23.0:
- version "0.23.0"
- resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.23.0.tgz#de06002d48424d9fdb7eb52dbe8e95927f852599"
- integrity sha512-1lvV17H2bMYda/WaFb2jLPeHU3zml2k4/yagNMG8Q/YtfMjCwEUZa2eXXMgZTVSL5q1n4H7sQ0X6CdJDqqeCFA==
+esbuild-wasm@>=0.15.13:
+ version "0.24.2"
+ resolved "https://registry.yarnpkg.com/esbuild-wasm/-/esbuild-wasm-0.24.2.tgz#1ab3b4b858ecf226a3c1a63455358ecea704c500"
+ integrity sha512-03/7Z1gD+ohDnScFztvI4XddTAbKVmMEzCvvkBpQdWKEXJ+73dTyeNrmdxP1Q0zpDMFjzUJwtK4rLjqwiHbzkw==
+
+esbuild@0.17.19:
+ version "0.17.19"
+ resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.19.tgz#087a727e98299f0462a3d0bcdd9cd7ff100bd955"
+ integrity sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==
optionalDependencies:
- "@esbuild/aix-ppc64" "0.23.0"
- "@esbuild/android-arm" "0.23.0"
- "@esbuild/android-arm64" "0.23.0"
- "@esbuild/android-x64" "0.23.0"
- "@esbuild/darwin-arm64" "0.23.0"
- "@esbuild/darwin-x64" "0.23.0"
- "@esbuild/freebsd-arm64" "0.23.0"
- "@esbuild/freebsd-x64" "0.23.0"
- "@esbuild/linux-arm" "0.23.0"
- "@esbuild/linux-arm64" "0.23.0"
- "@esbuild/linux-ia32" "0.23.0"
- "@esbuild/linux-loong64" "0.23.0"
- "@esbuild/linux-mips64el" "0.23.0"
- "@esbuild/linux-ppc64" "0.23.0"
- "@esbuild/linux-riscv64" "0.23.0"
- "@esbuild/linux-s390x" "0.23.0"
- "@esbuild/linux-x64" "0.23.0"
- "@esbuild/netbsd-x64" "0.23.0"
- "@esbuild/openbsd-arm64" "0.23.0"
- "@esbuild/openbsd-x64" "0.23.0"
- "@esbuild/sunos-x64" "0.23.0"
- "@esbuild/win32-arm64" "0.23.0"
- "@esbuild/win32-ia32" "0.23.0"
- "@esbuild/win32-x64" "0.23.0"
-
-esbuild@0.25.0:
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.0.tgz#0de1787a77206c5a79eeb634a623d39b5006ce92"
- integrity sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==
+ "@esbuild/android-arm" "0.17.19"
+ "@esbuild/android-arm64" "0.17.19"
+ "@esbuild/android-x64" "0.17.19"
+ "@esbuild/darwin-arm64" "0.17.19"
+ "@esbuild/darwin-x64" "0.17.19"
+ "@esbuild/freebsd-arm64" "0.17.19"
+ "@esbuild/freebsd-x64" "0.17.19"
+ "@esbuild/linux-arm" "0.17.19"
+ "@esbuild/linux-arm64" "0.17.19"
+ "@esbuild/linux-ia32" "0.17.19"
+ "@esbuild/linux-loong64" "0.17.19"
+ "@esbuild/linux-mips64el" "0.17.19"
+ "@esbuild/linux-ppc64" "0.17.19"
+ "@esbuild/linux-riscv64" "0.17.19"
+ "@esbuild/linux-s390x" "0.17.19"
+ "@esbuild/linux-x64" "0.17.19"
+ "@esbuild/netbsd-x64" "0.17.19"
+ "@esbuild/openbsd-x64" "0.17.19"
+ "@esbuild/sunos-x64" "0.17.19"
+ "@esbuild/win32-arm64" "0.17.19"
+ "@esbuild/win32-ia32" "0.17.19"
+ "@esbuild/win32-x64" "0.17.19"
+
+esbuild@0.24.0, esbuild@>=0.15.13:
+ version "0.24.0"
+ resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.24.0.tgz#f2d470596885fcb2e91c21eb3da3b3c89c0b55e7"
+ integrity sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==
optionalDependencies:
- "@esbuild/aix-ppc64" "0.25.0"
- "@esbuild/android-arm" "0.25.0"
- "@esbuild/android-arm64" "0.25.0"
- "@esbuild/android-x64" "0.25.0"
- "@esbuild/darwin-arm64" "0.25.0"
- "@esbuild/darwin-x64" "0.25.0"
- "@esbuild/freebsd-arm64" "0.25.0"
- "@esbuild/freebsd-x64" "0.25.0"
- "@esbuild/linux-arm" "0.25.0"
- "@esbuild/linux-arm64" "0.25.0"
- "@esbuild/linux-ia32" "0.25.0"
- "@esbuild/linux-loong64" "0.25.0"
- "@esbuild/linux-mips64el" "0.25.0"
- "@esbuild/linux-ppc64" "0.25.0"
- "@esbuild/linux-riscv64" "0.25.0"
- "@esbuild/linux-s390x" "0.25.0"
- "@esbuild/linux-x64" "0.25.0"
- "@esbuild/netbsd-arm64" "0.25.0"
- "@esbuild/netbsd-x64" "0.25.0"
- "@esbuild/openbsd-arm64" "0.25.0"
- "@esbuild/openbsd-x64" "0.25.0"
- "@esbuild/sunos-x64" "0.25.0"
- "@esbuild/win32-arm64" "0.25.0"
- "@esbuild/win32-ia32" "0.25.0"
- "@esbuild/win32-x64" "0.25.0"
-
-esbuild@>=0.15.13:
+ "@esbuild/aix-ppc64" "0.24.0"
+ "@esbuild/android-arm" "0.24.0"
+ "@esbuild/android-arm64" "0.24.0"
+ "@esbuild/android-x64" "0.24.0"
+ "@esbuild/darwin-arm64" "0.24.0"
+ "@esbuild/darwin-x64" "0.24.0"
+ "@esbuild/freebsd-arm64" "0.24.0"
+ "@esbuild/freebsd-x64" "0.24.0"
+ "@esbuild/linux-arm" "0.24.0"
+ "@esbuild/linux-arm64" "0.24.0"
+ "@esbuild/linux-ia32" "0.24.0"
+ "@esbuild/linux-loong64" "0.24.0"
+ "@esbuild/linux-mips64el" "0.24.0"
+ "@esbuild/linux-ppc64" "0.24.0"
+ "@esbuild/linux-riscv64" "0.24.0"
+ "@esbuild/linux-s390x" "0.24.0"
+ "@esbuild/linux-x64" "0.24.0"
+ "@esbuild/netbsd-x64" "0.24.0"
+ "@esbuild/openbsd-arm64" "0.24.0"
+ "@esbuild/openbsd-x64" "0.24.0"
+ "@esbuild/sunos-x64" "0.24.0"
+ "@esbuild/win32-arm64" "0.24.0"
+ "@esbuild/win32-ia32" "0.24.0"
+ "@esbuild/win32-x64" "0.24.0"
+
+esbuild@0.25.1:
version "0.25.1"
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.1.tgz#a16b8d070b6ad4871935277bda6ccfe852e3fa2f"
integrity sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ==
@@ -20072,64 +20583,36 @@ esbuild@>=0.15.13:
"@esbuild/win32-ia32" "0.25.1"
"@esbuild/win32-x64" "0.25.1"
-esbuild@^0.21.3:
- version "0.21.5"
- resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d"
- integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==
+esbuild@^0.25.0:
+ version "0.25.2"
+ resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.2.tgz#55a1d9ebcb3aa2f95e8bba9e900c1a5061bc168b"
+ integrity sha512-16854zccKPnC+toMywC+uKNeYSv+/eXkevRAfwRD/G9Cleq66m8XFIrigkbvauLLlCfDL45Q2cWegSg53gGBnQ==
optionalDependencies:
- "@esbuild/aix-ppc64" "0.21.5"
- "@esbuild/android-arm" "0.21.5"
- "@esbuild/android-arm64" "0.21.5"
- "@esbuild/android-x64" "0.21.5"
- "@esbuild/darwin-arm64" "0.21.5"
- "@esbuild/darwin-x64" "0.21.5"
- "@esbuild/freebsd-arm64" "0.21.5"
- "@esbuild/freebsd-x64" "0.21.5"
- "@esbuild/linux-arm" "0.21.5"
- "@esbuild/linux-arm64" "0.21.5"
- "@esbuild/linux-ia32" "0.21.5"
- "@esbuild/linux-loong64" "0.21.5"
- "@esbuild/linux-mips64el" "0.21.5"
- "@esbuild/linux-ppc64" "0.21.5"
- "@esbuild/linux-riscv64" "0.21.5"
- "@esbuild/linux-s390x" "0.21.5"
- "@esbuild/linux-x64" "0.21.5"
- "@esbuild/netbsd-x64" "0.21.5"
- "@esbuild/openbsd-x64" "0.21.5"
- "@esbuild/sunos-x64" "0.21.5"
- "@esbuild/win32-arm64" "0.21.5"
- "@esbuild/win32-ia32" "0.21.5"
- "@esbuild/win32-x64" "0.21.5"
-
-esbuild@^0.23.0:
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.23.1.tgz#40fdc3f9265ec0beae6f59824ade1bd3d3d2dab8"
- integrity sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==
- optionalDependencies:
- "@esbuild/aix-ppc64" "0.23.1"
- "@esbuild/android-arm" "0.23.1"
- "@esbuild/android-arm64" "0.23.1"
- "@esbuild/android-x64" "0.23.1"
- "@esbuild/darwin-arm64" "0.23.1"
- "@esbuild/darwin-x64" "0.23.1"
- "@esbuild/freebsd-arm64" "0.23.1"
- "@esbuild/freebsd-x64" "0.23.1"
- "@esbuild/linux-arm" "0.23.1"
- "@esbuild/linux-arm64" "0.23.1"
- "@esbuild/linux-ia32" "0.23.1"
- "@esbuild/linux-loong64" "0.23.1"
- "@esbuild/linux-mips64el" "0.23.1"
- "@esbuild/linux-ppc64" "0.23.1"
- "@esbuild/linux-riscv64" "0.23.1"
- "@esbuild/linux-s390x" "0.23.1"
- "@esbuild/linux-x64" "0.23.1"
- "@esbuild/netbsd-x64" "0.23.1"
- "@esbuild/openbsd-arm64" "0.23.1"
- "@esbuild/openbsd-x64" "0.23.1"
- "@esbuild/sunos-x64" "0.23.1"
- "@esbuild/win32-arm64" "0.23.1"
- "@esbuild/win32-ia32" "0.23.1"
- "@esbuild/win32-x64" "0.23.1"
+ "@esbuild/aix-ppc64" "0.25.2"
+ "@esbuild/android-arm" "0.25.2"
+ "@esbuild/android-arm64" "0.25.2"
+ "@esbuild/android-x64" "0.25.2"
+ "@esbuild/darwin-arm64" "0.25.2"
+ "@esbuild/darwin-x64" "0.25.2"
+ "@esbuild/freebsd-arm64" "0.25.2"
+ "@esbuild/freebsd-x64" "0.25.2"
+ "@esbuild/linux-arm" "0.25.2"
+ "@esbuild/linux-arm64" "0.25.2"
+ "@esbuild/linux-ia32" "0.25.2"
+ "@esbuild/linux-loong64" "0.25.2"
+ "@esbuild/linux-mips64el" "0.25.2"
+ "@esbuild/linux-ppc64" "0.25.2"
+ "@esbuild/linux-riscv64" "0.25.2"
+ "@esbuild/linux-s390x" "0.25.2"
+ "@esbuild/linux-x64" "0.25.2"
+ "@esbuild/netbsd-arm64" "0.25.2"
+ "@esbuild/netbsd-x64" "0.25.2"
+ "@esbuild/openbsd-arm64" "0.25.2"
+ "@esbuild/openbsd-x64" "0.25.2"
+ "@esbuild/sunos-x64" "0.25.2"
+ "@esbuild/win32-arm64" "0.25.2"
+ "@esbuild/win32-ia32" "0.25.2"
+ "@esbuild/win32-x64" "0.25.2"
escalade@^3.1.1, escalade@^3.2.0:
version "3.2.0"
@@ -20203,9 +20686,9 @@ eslint-scope@5.1.1:
estraverse "^4.1.1"
eslint-scope@^8.0.2:
- version "8.3.0"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-8.3.0.tgz#10cd3a918ffdd722f5f3f7b5b83db9b23c87340d"
- integrity sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==
+ version "8.2.0"
+ resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-8.2.0.tgz#377aa6f1cb5dc7592cfd0b7f892fd0cf352ce442"
+ integrity sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==
dependencies:
esrecurse "^4.3.0"
estraverse "^5.2.0"
@@ -20517,9 +21000,9 @@ expect@^29.0.0, expect@^29.7.0:
jest-util "^29.7.0"
exponential-backoff@^3.1.1:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.2.tgz#a8f26adb96bf78e8cd8ad1037928d5e5c0679d91"
- integrity sha512-8QxYTVXUkuy7fIIoitQkPwGonB8F3Zj8eEO8Sqg9Zv/bkI7RJAzowee4gr81Hak/dUTpA2Z7VfQgoijjPNlUZA==
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.1.tgz#64ac7526fe341ab18a39016cd22c787d01e00bf6"
+ integrity sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==
express-handlebars@^3.0.0:
version "3.1.0"
@@ -20634,7 +21117,7 @@ express@4.21.1:
utils-merge "1.0.1"
vary "~1.1.2"
-express@4.21.2, express@^4.17.1, express@^4.17.3, express@^4.19.2, express@^4.21.1, express@^4.21.2:
+express@4.21.2, express@^4.17.1, express@^4.19.2, express@^4.21.1, express@^4.21.2:
version "4.21.2"
resolved "https://registry.yarnpkg.com/express/-/express-4.21.2.tgz#cf250e48362174ead6cea4a566abef0162c1ec32"
integrity sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==
@@ -20726,11 +21209,6 @@ extglob@^2.0.4:
snapdragon "^0.8.1"
to-regex "^3.0.1"
-extract-stack@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/extract-stack/-/extract-stack-2.0.0.tgz#11367bc865bfcd9bc0db3123e5edb57786f11f9b"
- integrity sha512-AEo4zm+TenK7zQorGK1f9mJ8L14hnTDi2ZQPR+Mub1NX8zimka1mXpV5LpH8x9HoUmFSHZCfLHqWvp0Y4FxxzQ==
-
extract-zip@2.0.1, extract-zip@^2.0.0, extract-zip@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz#663dca56fe46df890d5f131ef4a06d22bb8ba13a"
@@ -20811,6 +21289,17 @@ fast-glob@3.3.2:
merge2 "^1.3.0"
micromatch "^4.0.4"
+fast-glob@3.3.3, fast-glob@^3.2.12, fast-glob@^3.2.7, fast-glob@^3.2.9, fast-glob@^3.3.1, fast-glob@^3.3.2:
+ version "3.3.3"
+ resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz#d06d585ce8dba90a16b0505c543c3ccfb3aeb818"
+ integrity sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==
+ dependencies:
+ "@nodelib/fs.stat" "^2.0.2"
+ "@nodelib/fs.walk" "^1.2.3"
+ glob-parent "^5.1.2"
+ merge2 "^1.3.0"
+ micromatch "^4.0.8"
+
fast-glob@^2.0.2:
version "2.2.7"
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d"
@@ -20823,17 +21312,6 @@ fast-glob@^2.0.2:
merge2 "^1.2.3"
micromatch "^3.1.10"
-fast-glob@^3.2.12, fast-glob@^3.2.7, fast-glob@^3.2.9, fast-glob@^3.3.1, fast-glob@^3.3.2, fast-glob@^3.3.3:
- version "3.3.3"
- resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz#d06d585ce8dba90a16b0505c543c3ccfb3aeb818"
- integrity sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==
- dependencies:
- "@nodelib/fs.stat" "^2.0.2"
- "@nodelib/fs.walk" "^1.2.3"
- glob-parent "^5.1.2"
- merge2 "^1.3.0"
- micromatch "^4.0.8"
-
fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
@@ -20901,9 +21379,9 @@ fastify-plugin@^5.0.0:
integrity sha512-HCxs+YnRaWzCl+cWRYFnHmeRFyR5GVnJTAaCJQiYzQSDwK9MgJdyAsuL3nh0EWRCYMgQ5MeziymvmAhUHYHDUQ==
fastq@^1.6.0:
- version "1.19.1"
- resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.19.1.tgz#d50eaba803c8846a883c16492821ebcd2cda55f5"
- integrity sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==
+ version "1.19.0"
+ resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.19.0.tgz#a82c6b7c2bb4e44766d865f07997785fecfdcb89"
+ integrity sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==
dependencies:
reusify "^1.0.4"
@@ -20928,11 +21406,16 @@ fd-slicer@~1.1.0:
dependencies:
pend "~1.2.0"
-fdir@^6.4.3:
+fdir@^6.4.2:
version "6.4.3"
resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.4.3.tgz#011cdacf837eca9b811c89dbb902df714273db72"
integrity sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==
+fdir@^6.4.4:
+ version "6.4.4"
+ resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.4.4.tgz#1cfcf86f875a883e19a8fab53622cfe992e8d2f9"
+ integrity sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==
+
feature-toggle-service@^6.0.0:
version "6.1.0"
resolved "https://registry.yarnpkg.com/feature-toggle-service/-/feature-toggle-service-6.1.0.tgz#67ac8dc5a3c26f19be5725ace602cefc8d67605f"
@@ -21167,9 +21650,9 @@ find-root@1.1.0:
integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==
find-up-simple@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/find-up-simple/-/find-up-simple-1.0.1.tgz#18fb90ad49e45252c4d7fca56baade04fa3fca1e"
- integrity sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/find-up-simple/-/find-up-simple-1.0.0.tgz#21d035fde9fdbd56c8f4d2f63f32fd93a1cfc368"
+ integrity sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==
find-up@^2.0.0, find-up@^2.1.0:
version "2.1.0"
@@ -21282,9 +21765,9 @@ flatstr@^1.0.12:
integrity sha512-4zPxDyhCyiN2wIAtSLI6gc82/EjqZc1onI4Mz/l0pWrAlsSfYH/2ZIcU+e3oA2wDwbzIWNKwa23F8rh6+DRWkw==
flatted@^3.2.7, flatted@^3.2.9:
- version "3.3.3"
- resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.3.tgz#67c8fad95454a7c7abebf74bb78ee74a44023358"
- integrity sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==
+ version "3.3.2"
+ resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.2.tgz#adba1448a9841bec72b42c532ea23dbbedef1a27"
+ integrity sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==
flora-colossus@^2.0.0:
version "2.0.0"
@@ -21295,9 +21778,9 @@ flora-colossus@^2.0.0:
fs-extra "^10.1.0"
flow-parser@0.*:
- version "0.266.1"
- resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.266.1.tgz#c90444e12475d388bc2cf80d45c37c6076a67dcd"
- integrity sha512-dON6h+yO7FGa/FO5NQCZuZHN0o3I23Ev6VYOJf9d8LpdrArHPt39wE++LLmueNV/hNY5hgWGIIrgnrDkRcXkPg==
+ version "0.268.0"
+ resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.268.0.tgz#e21c5e68a2d700d268f1f05a90fb084cae8c6bd6"
+ integrity sha512-URZmPy/jKDDIJUHUfC+5KNwaPcfONTL3R8xltQWVEoCKLWowVebEBg89nbAnYHNo6ev8KzKWFpOROfHZdaCoxA==
fmix@^0.1.0:
version "0.1.0"
@@ -21311,7 +21794,14 @@ follow-redirects@^1.0.0, follow-redirects@^1.15.6:
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.9.tgz#a604fa10e443bf98ca94228d9eebcc2e8a2c8ee1"
integrity sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==
-for-each@^0.3.3, for-each@^0.3.5:
+for-each@^0.3.3:
+ version "0.3.4"
+ resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.4.tgz#814517ffc303d1399b2564d8165318e735d0341c"
+ integrity sha512-kKaIINnFpzW6ffJNDjjyjrk21BkDx38c0xa/klsT8VzLCaMEefv4ZTacrcVR4DmgTeBra++jMDAfS/tS799YDw==
+ dependencies:
+ is-callable "^1.2.7"
+
+for-each@^0.3.5:
version "0.3.5"
resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.5.tgz#d650688027826920feeb0af747ee7b9421a41d47"
integrity sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==
@@ -21324,11 +21814,11 @@ for-in@^1.0.2:
integrity sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==
foreground-child@^3.1.0:
- version "3.3.1"
- resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.1.tgz#32e8e9ed1b68a3497befb9ac2b6adf92a638576f"
- integrity sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.0.tgz#0ac8644c06e431439f8561db8ecf29a7b5519c77"
+ integrity sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==
dependencies:
- cross-spawn "^7.0.6"
+ cross-spawn "^7.0.0"
signal-exit "^4.0.1"
forever-agent@~0.6.1:
@@ -21389,7 +21879,7 @@ fork-ts-checker-webpack-plugin@^5.2.0:
semver "^7.3.2"
tapable "^1.0.0"
-form-data@4.0.1:
+form-data@4.0.1, form-data@^4.0.0, form-data@^4.0.1, form-data@~4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.1.tgz#ba1076daaaa5bfd7e99c1a6cb02aa0a5cff90d48"
integrity sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==
@@ -21398,16 +21888,6 @@ form-data@4.0.1:
combined-stream "^1.0.8"
mime-types "^2.1.12"
-form-data@^4.0.0, form-data@^4.0.1, form-data@~4.0.0:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.2.tgz#35cabbdd30c3ce73deb2c42d3c8d3ed9ca51794c"
- integrity sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==
- dependencies:
- asynckit "^0.4.0"
- combined-stream "^1.0.8"
- es-set-tostringtag "^2.1.0"
- mime-types "^2.1.12"
-
form-data@~2.3.2:
version "2.3.3"
resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6"
@@ -21534,7 +22014,7 @@ fs-extra@^5.0.0:
jsonfile "^4.0.0"
universalify "^0.1.0"
-fs-extra@^8.1, fs-extra@^8.1.0:
+fs-extra@^8.1.0:
version "8.1.0"
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0"
integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==
@@ -21745,7 +22225,23 @@ get-func-name@^2.0.1, get-func-name@^2.0.2:
resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.2.tgz#0d7cf20cd13fda808669ffa88f4ffc7a3943fc41"
integrity sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==
-get-intrinsic@^1.2.4, get-intrinsic@^1.2.5, get-intrinsic@^1.2.6, get-intrinsic@^1.2.7, get-intrinsic@^1.3.0:
+get-intrinsic@^1.2.4, get-intrinsic@^1.2.5, get-intrinsic@^1.2.6, get-intrinsic@^1.2.7:
+ version "1.2.7"
+ resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.7.tgz#dcfcb33d3272e15f445d15124bc0a216189b9044"
+ integrity sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==
+ dependencies:
+ call-bind-apply-helpers "^1.0.1"
+ es-define-property "^1.0.1"
+ es-errors "^1.3.0"
+ es-object-atoms "^1.0.0"
+ function-bind "^1.1.2"
+ get-proto "^1.0.0"
+ gopd "^1.2.0"
+ has-symbols "^1.1.0"
+ hasown "^2.0.2"
+ math-intrinsics "^1.1.0"
+
+get-intrinsic@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz#743f0e3b6964a93a5491ed1bffaae054d7f98d01"
integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==
@@ -22032,7 +22528,7 @@ glob-to-regexp@^0.4.1:
resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
-glob@10.4.5, glob@^10.0.0, glob@^10.2.2, glob@^10.3.10, glob@^10.3.7, glob@^10.4.2, glob@^10.4.5:
+glob@10.4.5, glob@^10.0.0, glob@^10.2.2, glob@^10.3.10, glob@^10.3.3, glob@^10.4.5:
version "10.4.5"
resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz#f4d9f0b90ffdbab09c9d77f5f29b4262517b0956"
integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==
@@ -22197,9 +22693,9 @@ globals@^13.20.0:
type-fest "^0.20.2"
globals@^15.9.0:
- version "15.15.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-15.15.0.tgz#7c4761299d41c32b075715a4ce1ede7897ff72a8"
- integrity sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==
+ version "15.14.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-15.14.0.tgz#b8fd3a8941ff3b4d38f3319d433b61bbb482e73f"
+ integrity sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==
globalthis@^1.0.1, globalthis@^1.0.4:
version "1.0.4"
@@ -22234,16 +22730,16 @@ globby@^12.0.2:
slash "^4.0.0"
globby@^14.0.0:
- version "14.1.0"
- resolved "https://registry.yarnpkg.com/globby/-/globby-14.1.0.tgz#138b78e77cf5a8d794e327b15dce80bf1fb0a73e"
- integrity sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==
+ version "14.0.2"
+ resolved "https://registry.yarnpkg.com/globby/-/globby-14.0.2.tgz#06554a54ccfe9264e5a9ff8eded46aa1e306482f"
+ integrity sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==
dependencies:
"@sindresorhus/merge-streams" "^2.1.0"
- fast-glob "^3.3.3"
- ignore "^7.0.3"
- path-type "^6.0.0"
+ fast-glob "^3.3.2"
+ ignore "^5.2.4"
+ path-type "^5.0.0"
slash "^5.1.0"
- unicorn-magic "^0.3.0"
+ unicorn-magic "^0.1.0"
globby@^5.0.0:
version "5.0.0"
@@ -22329,6 +22825,13 @@ graceful-fs@4.2.11, graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
+gradient-path@^2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/gradient-path/-/gradient-path-2.3.0.tgz#e70b8b962983ab944b9abbe030c2ce242ee811b9"
+ integrity sha512-vZdF/Z0EpqUztzWXFjFC16lqcialHacYoRonslk/bC6CuujkuIrqx7etlzdYHY4SnUU94LRWESamZKfkGh7yYQ==
+ dependencies:
+ tinygradient "^1.0.0"
+
graphql-playground-html@^1.6.30:
version "1.6.30"
resolved "https://registry.yarnpkg.com/graphql-playground-html/-/graphql-playground-html-1.6.30.tgz#14c2a8eb7fc17bfeb1a746bbb28a11e34bf0b391"
@@ -22356,14 +22859,14 @@ graphql-tag@2.12.6, graphql-tag@^2.12.6:
tslib "^2.1.0"
graphql-tools@^9.0.10:
- version "9.0.16"
- resolved "https://registry.yarnpkg.com/graphql-tools/-/graphql-tools-9.0.16.tgz#b5b28780f85f0d0419627c609565f53f8651333b"
- integrity sha512-atbH0zsd8+RR0FC/qGtERLNE3m8wdwgCALn7gILeQ2Mzoqe1V3b2BoGuoT9gaf8kN516a+I7E1e2HAbNbizhLA==
+ version "9.0.11"
+ resolved "https://registry.yarnpkg.com/graphql-tools/-/graphql-tools-9.0.11.tgz#540d992f5520ae2a76089450bc6bac734fefccef"
+ integrity sha512-Xr5jqbThpbVObsFsJjOpiOTm7FJuaFughHVqMcgx8eV3wuIxgFEyOyQ7SYeZYAi+l+UAitkyxnDuZTXSE9JLIg==
dependencies:
- "@graphql-tools/schema" "^10.0.21"
+ "@graphql-tools/schema" "^10.0.16"
tslib "^2.4.0"
optionalDependencies:
- "@apollo/client" "~3.2.5 || ~3.3.0 || ~3.4.0 || ~3.5.0 || ~3.6.0 || ~3.7.0 || ~3.8.0 || ~3.9.0 || ~3.10.0 || ~3.11.0 || ~3.12.0 || ~3.13.0"
+ "@apollo/client" "~3.2.5 || ~3.3.0 || ~3.4.0 || ~3.5.0 || ~3.6.0 || ~3.7.0 || ~3.8.0 || ~3.9.0 || ~3.10.0 || ~3.11.0 || ~3.12.0"
graphql-ws@5.16.0:
version "5.16.0"
@@ -22779,11 +23282,16 @@ html-encoding-sniffer@^4.0.0:
dependencies:
whatwg-encoding "^3.1.1"
-html-entities@^2.4.0, html-entities@^2.5.2:
+html-entities@^2.5.2:
version "2.5.2"
resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.5.2.tgz#201a3cf95d3a15be7099521620d19dfb4f65359f"
integrity sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==
+html-entities@^2.6.0:
+ version "2.6.0"
+ resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.6.0.tgz#7c64f1ea3b36818ccae3d3fb48b6974208e984f8"
+ integrity sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==
+
html-escaper@^2.0.0, html-escaper@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453"
@@ -22843,6 +23351,16 @@ htmlescape@^1.1.0:
resolved "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351"
integrity sha512-eVcrzgbR4tim7c7soKQKtxa/kQM4TzjnlU83rcZ9bHU6t31ehfV7SktN6McWgwPWg+JYMA/O3qpGxBvFq1z2Jg==
+htmlparser2@^10.0.0:
+ version "10.0.0"
+ resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-10.0.0.tgz#77ad249037b66bf8cc99c6e286ef73b83aeb621d"
+ integrity sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==
+ dependencies:
+ domelementtype "^2.3.0"
+ domhandler "^5.0.3"
+ domutils "^3.2.1"
+ entities "^6.0.0"
+
htmlparser2@^4.0.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-4.1.0.tgz#9a4ef161f2e4625ebf7dfbe6c0a2f52d18a59e78"
@@ -23022,7 +23540,19 @@ http-proxy-middleware@3.0.3, http-proxy-middleware@^3.0.3:
is-plain-object "^5.0.0"
micromatch "^4.0.8"
-http-proxy-middleware@^2.0.3, http-proxy-middleware@^2.0.7:
+http-proxy-middleware@3.0.5:
+ version "3.0.5"
+ resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-3.0.5.tgz#9dcde663edc44079bc5a9c63e03fe5e5d6037fab"
+ integrity sha512-GLZZm1X38BPY4lkXA01jhwxvDoOkkXqjgVyUzVxiEK4iuRu03PZoYHhHRwxnfhQMDuaxi3vVri0YgSro/1oWqg==
+ dependencies:
+ "@types/http-proxy" "^1.17.15"
+ debug "^4.3.6"
+ http-proxy "^1.18.1"
+ is-glob "^4.0.3"
+ is-plain-object "^5.0.0"
+ micromatch "^4.0.8"
+
+http-proxy-middleware@^2.0.7:
version "2.0.7"
resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.7.tgz#915f236d92ae98ef48278a95dedf17e991936ec6"
integrity sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==
@@ -23124,12 +23654,12 @@ https-proxy-agent@5.0.1, https-proxy-agent@^5.0.0, https-proxy-agent@^5.0.1:
agent-base "6"
debug "4"
-https-proxy-agent@7.0.5:
- version "7.0.5"
- resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz#9e8b5013873299e11fab6fd548405da2d6c602b2"
- integrity sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==
+https-proxy-agent@7.0.6, https-proxy-agent@^7.0.0, https-proxy-agent@^7.0.1, https-proxy-agent@^7.0.2:
+ version "7.0.6"
+ resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz#da8dfeac7da130b05c2ba4b59c9b6cd66611a6b9"
+ integrity sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==
dependencies:
- agent-base "^7.0.2"
+ agent-base "^7.1.2"
debug "4"
https-proxy-agent@^2.2.1:
@@ -23140,14 +23670,6 @@ https-proxy-agent@^2.2.1:
agent-base "^4.3.0"
debug "^3.1.0"
-https-proxy-agent@^7.0.0, https-proxy-agent@^7.0.1, https-proxy-agent@^7.0.2:
- version "7.0.6"
- resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz#da8dfeac7da130b05c2ba4b59c9b6cd66611a6b9"
- integrity sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==
- dependencies:
- agent-base "^7.1.2"
- debug "4"
-
human-signals@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3"
@@ -23180,11 +23702,6 @@ hyperdyperid@^1.2.0:
resolved "https://registry.yarnpkg.com/hyperdyperid/-/hyperdyperid-1.2.0.tgz#59668d323ada92228d2a869d3e474d5a33b69e6b"
integrity sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==
-hyperlinker@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/hyperlinker/-/hyperlinker-1.0.0.tgz#23dc9e38a206b208ee49bc2d6c8ef47027df0c0e"
- integrity sha512-Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ==
-
i18n-locales@^0.0.5:
version "0.0.5"
resolved "https://registry.yarnpkg.com/i18n-locales/-/i18n-locales-0.0.5.tgz#8f587e598ab982511d7c7db910cb45b8d93cd96a"
@@ -23288,10 +23805,10 @@ ignore@5.2.4:
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
-ignore@6.0.2:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-6.0.2.tgz#77cccb72a55796af1b6d2f9eb14fa326d24f4283"
- integrity sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==
+ignore@7.0.3:
+ version "7.0.3"
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-7.0.3.tgz#397ef9315dfe0595671eefe8b633fec6943ab733"
+ integrity sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==
ignore@^3.3.5, ignore@^3.3.7:
version "3.3.10"
@@ -23303,11 +23820,6 @@ ignore@^5.0.4, ignore@^5.1.9, ignore@^5.2.0, ignore@^5.2.4, ignore@^5.3.0:
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5"
integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==
-ignore@^7.0.3:
- version "7.0.3"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-7.0.3.tgz#397ef9315dfe0595671eefe8b633fec6943ab733"
- integrity sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==
-
image-q@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/image-q/-/image-q-4.0.0.tgz#31e075be7bae3c1f42a85c469b4732c358981776"
@@ -23351,9 +23863,9 @@ immutable@^5.0.2:
integrity sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==
import-fresh@^3.1.0, import-fresh@^3.2.1, import-fresh@^3.3.0:
- version "3.3.1"
- resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.1.tgz#9cecb56503c0ada1f2741dbbd6546e4b13b57ccf"
- integrity sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
+ integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
dependencies:
parent-module "^1.0.0"
resolve-from "^4.0.0"
@@ -23522,20 +24034,20 @@ ini@4.1.1:
resolved "https://registry.yarnpkg.com/ini/-/ini-4.1.1.tgz#d95b3d843b1e906e56d6747d5447904ff50ce7a1"
integrity sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==
-ini@4.1.3, ini@^4.1.3:
- version "4.1.3"
- resolved "https://registry.yarnpkg.com/ini/-/ini-4.1.3.tgz#4c359675a6071a46985eb39b14e4a2c0ec98a795"
- integrity sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==
+ini@5.0.0, ini@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/ini/-/ini-5.0.0.tgz#a7a4615339843d9a8ccc2d85c9d81cf93ffbc638"
+ integrity sha512-+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw==
ini@^1.3.2, ini@^1.3.4, ini@^1.3.5, ini@^1.3.8, ini@~1.3.0:
version "1.3.8"
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
-ini@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/ini/-/ini-5.0.0.tgz#a7a4615339843d9a8ccc2d85c9d81cf93ffbc638"
- integrity sha512-+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw==
+ini@^4.1.3:
+ version "4.1.3"
+ resolved "https://registry.yarnpkg.com/ini/-/ini-4.1.3.tgz#4c359675a6071a46985eb39b14e4a2c0ec98a795"
+ integrity sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==
init-package-json@6.0.3:
version "6.0.3"
@@ -23758,11 +24270,10 @@ ionicons@^4.6.3:
integrity sha512-cgP+VIr2cTJpMfFyVHTerq6n2jeoiGboVoe3GlaAo5zoSBDAEXORwUZhv6m+lCyxlsHCS3nqPUE+MKyZU71t8Q==
ioredis@^4.27.8:
- version "4.29.1"
- resolved "https://registry.yarnpkg.com/ioredis/-/ioredis-4.29.1.tgz#cc20ad67539e0d9c7df2d63d6aea54813aec7380"
- integrity sha512-iq4u3AC9h9/P/gBXH1cUR7Ln0exKexqMaYDwUaoZJzkvvgJs9W5+CLQFS0APyG8uyvJJjn6q6Vx7LwmZQu3h5A==
+ version "4.28.5"
+ resolved "https://registry.yarnpkg.com/ioredis/-/ioredis-4.28.5.tgz#5c149e6a8d76a7f8fa8a504ffc85b7d5b6797f9f"
+ integrity sha512-3GYo0GJtLqgNXj4YhrisLaNNvWSNwSS2wS4OELGfGxH8I69+XfNdnmV1AyN+ZqMh0i7eX+SWjrwFKDBDgfBC1A==
dependencies:
- "@ioredis/commands" "^1.0.2"
cluster-key-slot "^1.1.0"
debug "^4.3.1"
denque "^1.1.0"
@@ -23770,6 +24281,7 @@ ioredis@^4.27.8:
lodash.flatten "^4.4.0"
lodash.isarguments "^3.1.0"
p-map "^2.1.0"
+ redis-commands "1.7.0"
redis-errors "^1.2.0"
redis-parser "^3.0.0"
standard-as-callback "^2.1.0"
@@ -23870,11 +24382,11 @@ is-binary-path@~2.1.0:
binary-extensions "^2.0.0"
is-boolean-object@^1.2.1:
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.2.2.tgz#7067f47709809a393c71ff5bb3e135d8a9215d9e"
- integrity sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.2.1.tgz#c20d0c654be05da4fbc23c562635c019e93daf89"
+ integrity sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==
dependencies:
- call-bound "^1.0.3"
+ call-bound "^1.0.2"
has-tostringtag "^1.0.2"
is-buffer@^1.1.0, is-buffer@^1.1.5, is-buffer@~1.1.6:
@@ -23902,9 +24414,9 @@ is-ci@^2.0.0:
ci-info "^2.0.0"
is-cidr@^5.1.0:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/is-cidr/-/is-cidr-5.1.1.tgz#83ec462922c2b9209bc64794c4e3b2a890d23994"
- integrity sha512-AwzRMjtJNTPOgm7xuYZ71715z99t+4yRnSnSzgK5err5+heYi4zMuvmpUadaJ28+KCXCQo8CjUrKQZRWSPmqTQ==
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/is-cidr/-/is-cidr-5.1.0.tgz#36f2d059f43f9b14f132745a2eec18c996df2f35"
+ integrity sha512-OkVS+Ht2ssF27d48gZdB+ho1yND1VbkJRKKS6Pc1/Cw7uqkd9IOJg8/bTwBDQL6tfBhSdguPRnlGiE8pU/X5NQ==
dependencies:
cidr-regex "^4.1.1"
@@ -24125,11 +24637,6 @@ is-map@^2.0.3:
resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz#ede96b7fe1e270b3c4465e3a465658764926d62e"
integrity sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==
-is-module@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
- integrity sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==
-
is-my-ip-valid@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/is-my-ip-valid/-/is-my-ip-valid-1.0.1.tgz#f7220d1146257c98672e6fba097a9f3f2d348442"
@@ -24317,9 +24824,9 @@ is-shared-array-buffer@^1.0.4:
call-bound "^1.0.3"
is-ssh@^1.4.0:
- version "1.4.1"
- resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.4.1.tgz#76de1cdbe8f92a8b905d1a172b6bc09704c20396"
- integrity sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.4.0.tgz#4f8220601d2839d8fa624b3106f8e8884f01b8b2"
+ integrity sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==
dependencies:
protocols "^2.0.1"
@@ -24414,11 +24921,11 @@ is-weakmap@^2.0.2:
integrity sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==
is-weakref@^1.0.2, is-weakref@^1.1.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.1.1.tgz#eea430182be8d64174bd96bffbc46f21bf3f9293"
- integrity sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.1.0.tgz#47e3472ae95a63fa9cf25660bcf0c181c39770ef"
+ integrity sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==
dependencies:
- call-bound "^1.0.3"
+ call-bound "^1.0.2"
is-weakset@^2.0.3:
version "2.0.4"
@@ -24637,9 +25144,9 @@ jackspeak@^3.1.2:
"@pkgjs/parseargs" "^0.11.0"
jackspeak@^4.0.1:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-4.1.0.tgz#c489c079f2b636dc4cbe9b0312a13ff1282e561b"
- integrity sha512-9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw==
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-4.0.2.tgz#11f9468a3730c6ff6f56823a820d7e3be9bef015"
+ integrity sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==
dependencies:
"@isaacs/cliui" "^8.0.2"
@@ -24917,10 +25424,10 @@ jest-pnp-resolver@^1.2.2:
resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e"
integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==
-jest-preset-angular@14.1.1:
- version "14.1.1"
- resolved "https://registry.yarnpkg.com/jest-preset-angular/-/jest-preset-angular-14.1.1.tgz#7019d9fb5675fd093f1b08cdb2207316001effdf"
- integrity sha512-mWW2WlndHetTp4PQov05v7JE6HZQB5uTzGd+oW2RPH1OOTCLUKI8mSIU4DXCBJ4LDg5gIMMfqHsxT/Qmpu2dQQ==
+jest-preset-angular@14.4.2:
+ version "14.4.2"
+ resolved "https://registry.yarnpkg.com/jest-preset-angular/-/jest-preset-angular-14.4.2.tgz#c2c0e1581cebed863b86efa52a14b1cb8b3cae30"
+ integrity sha512-BYYv0FaTDfBNh8WyA9mpOV3krfw20kurBGK8INZUnv7KZDAWZuQtCET4TwTWxSNQ9jS1OX1+a5weCm/bTDDM1A==
dependencies:
bs-logger "^0.2.6"
esbuild-wasm ">=0.15.13"
@@ -25144,9 +25651,9 @@ joi@^17.6.4:
"@sideway/pinpoint" "^2.0.0"
jose@^5.0.0:
- version "5.10.0"
- resolved "https://registry.yarnpkg.com/jose/-/jose-5.10.0.tgz#c37346a099d6467c401351a9a0c2161e0f52c4be"
- integrity sha512-s+3Al/p9g32Iq+oqXxkW//7jk2Vig6FF1CFqzVXoTUXt2qz89YWbL+OwS17NFYEvxC35n0FKeGO2LGYSxeM2Gg==
+ version "5.9.6"
+ resolved "https://registry.yarnpkg.com/jose/-/jose-5.9.6.tgz#77f1f901d88ebdc405e57cce08d2a91f47521883"
+ integrity sha512-AMlnetc9+CV9asI19zHmrgS/WYsWUwCn2R7RzlbJWD7F9eWYUTGyBmU9o6PxngtLGOiDGPRu+Uc4fhKzbpteZQ==
joycon@^3.0.0, joycon@^3.1.1:
version "3.1.1"
@@ -25164,15 +25671,15 @@ jpeg-js@^0.4.1, jpeg-js@^0.4.4:
integrity sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==
js-beautify@^1.6.14:
- version "1.15.4"
- resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.15.4.tgz#f579f977ed4c930cef73af8f98f3f0a608acd51e"
- integrity sha512-9/KXeZUKKJwqCXUdBxFJ3vPh467OCckSBmYDwSK/EtV090K+iMJ7zx2S3HLVDIWFQdqMIsZWbnaGiba18aWhaA==
+ version "1.15.1"
+ resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.15.1.tgz#4695afb508c324e1084ee0b952a102023fc65b64"
+ integrity sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==
dependencies:
config-chain "^1.1.13"
editorconfig "^1.0.4"
- glob "^10.4.2"
+ glob "^10.3.3"
js-cookie "^3.0.5"
- nopt "^7.2.1"
+ nopt "^7.2.0"
js-cookie@^3.0.5:
version "3.0.5"
@@ -25445,7 +25952,7 @@ jsonc-parser@3.2.1:
resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.1.tgz#031904571ccf929d7670ee8c547545081cb37f1a"
integrity sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==
-jsonc-parser@3.3.1, jsonc-parser@^3.2.0:
+jsonc-parser@3.3.1, jsonc-parser@^3.2.0, jsonc-parser@^3.3.1:
version "3.3.1"
resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.3.1.tgz#f2a524b4f7fd11e3d791e559977ad60b98b798b4"
integrity sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==
@@ -25900,6 +26407,35 @@ koa@2.15.4:
type-is "^1.6.16"
vary "^1.1.2"
+koa@2.16.1:
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/koa/-/koa-2.16.1.tgz#ba1aae04d8319d7dac4a17a0d289d7482501e194"
+ integrity sha512-umfX9d3iuSxTQP4pnzLOz0HKnPg0FaUUIKcye2lOiz3KPu1Y3M3xlz76dISdFPQs37P9eJz1wUpcTS6KDPn9fA==
+ dependencies:
+ accepts "^1.3.5"
+ cache-content-type "^1.0.0"
+ content-disposition "~0.5.2"
+ content-type "^1.0.4"
+ cookies "~0.9.0"
+ debug "^4.3.2"
+ delegates "^1.0.0"
+ depd "^2.0.0"
+ destroy "^1.0.4"
+ encodeurl "^1.0.2"
+ escape-html "^1.0.3"
+ fresh "~0.5.2"
+ http-assert "^1.3.0"
+ http-errors "^1.6.3"
+ is-generator-function "^1.0.7"
+ koa-compose "^4.1.0"
+ koa-convert "^2.0.0"
+ on-finished "^2.3.0"
+ only "~0.0.2"
+ parseurl "^1.3.2"
+ statuses "^1.5.0"
+ type-is "^1.6.16"
+ vary "^1.1.2"
+
labeled-stream-splicer@^2.0.0:
version "2.0.2"
resolved "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.2.tgz#42a41a16abcd46fd046306cf4f2c3576fffb1c21"
@@ -25916,9 +26452,9 @@ latest-version@^5.0.0, latest-version@^5.1.0:
package-json "^6.3.0"
launch-editor@^2.6.1:
- version "2.10.0"
- resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.10.0.tgz#5ca3edfcb9667df1e8721310f3a40f1127d4bc42"
- integrity sha512-D7dBRJo/qcGX9xlvt/6wUYzQxjh5G1RvZPgPv8vi4KRU99DVQL/oW7tnVOCCTm2HGeo3C5HvGE5Yrh6UBoZ0vA==
+ version "2.9.1"
+ resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.9.1.tgz#253f173bd441e342d4344b4dae58291abb425047"
+ integrity sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==
dependencies:
picocolors "^1.0.0"
shell-quote "^1.8.1"
@@ -25979,17 +26515,17 @@ lerna-changelog@^2.2.0:
yargs "^17.1.0"
lerna@^8.1.9:
- version "8.2.1"
- resolved "https://registry.yarnpkg.com/lerna/-/lerna-8.2.1.tgz#30ddc192130dc50cff68951c1e63a74a391c178d"
- integrity sha512-Xwjv9/4ixp7fpBWhtvp7dz4NoQT8DEf7hzibHKCgu/8kmZUHeXsTn+TKspHqhI+p4YDmdkDnkg8xmymz73kVOg==
+ version "8.1.9"
+ resolved "https://registry.yarnpkg.com/lerna/-/lerna-8.1.9.tgz#1233c3cfacca3b85b23c292235e246d79de3de32"
+ integrity sha512-ZRFlRUBB2obm+GkbTR7EbgTMuAdni6iwtTQTMy7LIrQ4UInG44LyfRepljtgUxh4HA0ltzsvWfPkd5J1DKGCeQ==
dependencies:
- "@lerna/create" "8.2.1"
+ "@lerna/create" "8.1.9"
"@npmcli/arborist" "7.5.4"
"@npmcli/package-json" "5.2.0"
"@npmcli/run-script" "8.1.0"
"@nx/devkit" ">=17.1.2 < 21"
"@octokit/plugin-enterprise-rest" "6.0.1"
- "@octokit/rest" "20.1.2"
+ "@octokit/rest" "19.0.11"
aproba "2.0.0"
byte-size "8.1.1"
chalk "4.1.0"
@@ -26050,6 +26586,7 @@ lerna@^8.1.9:
slash "3.0.0"
ssri "^10.0.6"
string-width "^4.2.3"
+ strip-ansi "^6.0.1"
strong-log-transformer "2.1.0"
tar "6.2.1"
temp-dir "1.0.0"
@@ -26093,24 +26630,7 @@ less@4.1.3:
needle "^3.1.0"
source-map "~0.6.0"
-less@4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/less/-/less-4.2.0.tgz#cbefbfaa14a4cd388e2099b2b51f956e1465c450"
- integrity sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==
- dependencies:
- copy-anything "^2.0.1"
- parse-node-version "^1.0.1"
- tslib "^2.3.0"
- optionalDependencies:
- errno "^0.1.1"
- graceful-fs "^4.1.2"
- image-size "~0.5.0"
- make-dir "^2.1.0"
- mime "^1.4.1"
- needle "^3.1.0"
- source-map "~0.6.0"
-
-less@^4.2.0:
+less@4.2.2, less@^4.2.0:
version "4.2.2"
resolved "https://registry.yarnpkg.com/less/-/less-4.2.2.tgz#4b59ede113933b58ab152190edf9180fc36846d8"
integrity sha512-tkuLHQlvWUTeQ3doAqnHbNn8T6WX1KA8yvbKG9x4VtKtIjHsVKQZCH11zRgAfbDAXC2UNIg/K9BYAAcEzUIrNg==
@@ -26291,9 +26811,9 @@ libnpmversion@^7.0.0:
semver "^7.3.7"
libphonenumber-js@^1.10.53:
- version "1.12.5"
- resolved "https://registry.yarnpkg.com/libphonenumber-js/-/libphonenumber-js-1.12.5.tgz#8e6043a67112d4beedb8627b359a613f04d88fba"
- integrity sha512-DOjiaVjjSmap12ztyb4QgoFmUe/GbgnEXHu+R7iowk0lzDIjScvPAm8cK9RYTEobbRb0OPlwlZUGTTJPJg13Kw==
+ version "1.11.19"
+ resolved "https://registry.yarnpkg.com/libphonenumber-js/-/libphonenumber-js-1.11.19.tgz#de6437b15d23d9e3b16e5b14c6f2d6d65f58c9b7"
+ integrity sha512-bW/Yp/9dod6fmyR+XqSUL1N5JE7QRxQ3KrBIbYS1FTv32e5i3SEtQVX+71CYNv8maWNSOgnlCoNp9X78f/cKiA==
libqp@2.1.1:
version "2.1.1"
@@ -26439,10 +26959,10 @@ listenercount@~1.0.1:
resolved "https://registry.yarnpkg.com/listenercount/-/listenercount-1.0.1.tgz#84c8a72ab59c4725321480c975e6508342e70937"
integrity sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==
-listr2@8.2.4:
- version "8.2.4"
- resolved "https://registry.yarnpkg.com/listr2/-/listr2-8.2.4.tgz#486b51cbdb41889108cb7e2c90eeb44519f5a77f"
- integrity sha512-opevsywziHd3zHCVQGAj8zu+Z3yHNkkoYhWIGnq54RrCVwLz0MozotJEDnKsIBLvkfLGN6BLOyAeRrYI0pKA4g==
+listr2@8.2.5:
+ version "8.2.5"
+ resolved "https://registry.yarnpkg.com/listr2/-/listr2-8.2.5.tgz#5c9db996e1afeb05db0448196d3d5f64fec2593d"
+ integrity sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==
dependencies:
cli-truncate "^4.0.0"
colorette "^2.0.20"
@@ -26465,23 +26985,23 @@ listr2@^3.2.2, listr2@^3.8.3:
through "^2.3.8"
wrap-ansi "^7.0.0"
-lmdb@3.0.13:
- version "3.0.13"
- resolved "https://registry.yarnpkg.com/lmdb/-/lmdb-3.0.13.tgz#5f326ac13cd60c239c481c42b601ebae39935026"
- integrity sha512-UGe+BbaSUQtAMZobTb4nHvFMrmvuAQKSeaqAX2meTEQjfsbpl5sxdHD8T72OnwD4GU9uwNhYXIVe4QGs8N9Zyw==
+lmdb@3.2.6:
+ version "3.2.6"
+ resolved "https://registry.yarnpkg.com/lmdb/-/lmdb-3.2.6.tgz#dd18bae6323679f99bc3cb57df81dc507f50f505"
+ integrity sha512-SuHqzPl7mYStna8WRotY8XX/EUZBjjv3QyKIByeCLFfC9uXT/OIHByEcA07PzbMfQAM0KYJtLgtpMRlIe5dErQ==
dependencies:
- msgpackr "^1.10.2"
+ msgpackr "^1.11.2"
node-addon-api "^6.1.0"
node-gyp-build-optional-packages "5.2.2"
- ordered-binary "^1.4.1"
+ ordered-binary "^1.5.3"
weak-lru-cache "^1.2.2"
optionalDependencies:
- "@lmdb/lmdb-darwin-arm64" "3.0.13"
- "@lmdb/lmdb-darwin-x64" "3.0.13"
- "@lmdb/lmdb-linux-arm" "3.0.13"
- "@lmdb/lmdb-linux-arm64" "3.0.13"
- "@lmdb/lmdb-linux-x64" "3.0.13"
- "@lmdb/lmdb-win32-x64" "3.0.13"
+ "@lmdb/lmdb-darwin-arm64" "3.2.6"
+ "@lmdb/lmdb-darwin-x64" "3.2.6"
+ "@lmdb/lmdb-linux-arm" "3.2.6"
+ "@lmdb/lmdb-linux-arm64" "3.2.6"
+ "@lmdb/lmdb-linux-x64" "3.2.6"
+ "@lmdb/lmdb-win32-x64" "3.2.6"
load-bmfont@^1.4.1:
version "1.4.2"
@@ -26879,9 +27399,9 @@ long@^4.0.0:
integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==
long@^5.0.0, long@^5.2.1:
- version "5.3.1"
- resolved "https://registry.yarnpkg.com/long/-/long-5.3.1.tgz#9d4222d3213f38a5ec809674834e0f0ab21abe96"
- integrity sha512-ka87Jz3gcx/I7Hal94xaN2tZEOPoUOEVftkQqZx2EeQRN7LGdfLlI3FvZ+7WDplm+vK2Urx9ULrvSowtdCieng==
+ version "5.2.4"
+ resolved "https://registry.yarnpkg.com/long/-/long-5.2.4.tgz#ee651d5c7c25901cfca5e67220ae9911695e99b2"
+ integrity sha512-qtzLbJE8hq7VabR3mISmVGtoXP8KGc2Z/AT8OuqlYD7JTR3oqrgwdjnk07wpj1twXxYmgDXgoKVWUG/fReSzHg==
longest@^2.0.1:
version "2.0.1"
@@ -26973,9 +27493,9 @@ lru-cache@^9.0.0:
integrity sha512-BgYZfL2ADCXKOw2wJtkM3slhHotawWkgIRRxq4wEybnZQPjvAp71SPX35xepMykTw8gXlzWcWPTY31hlbnRsDA==
lru.min@^1.0.0:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/lru.min/-/lru.min-1.1.2.tgz#01ce1d72cc50c7faf8bd1f809ebf05d4331021eb"
- integrity sha512-Nv9KddBcQSlQopmBHXSsZVY5xsdlZkdH/Iey0BlcBYggMd4two7cZnKOK9vmy3nY0O5RGH99z1PCeTpPqszUYg==
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/lru.min/-/lru.min-1.1.1.tgz#146e01e3a183fa7ba51049175de04667d5701f0e"
+ integrity sha512-FbAj6lXil6t8z4z3j0E5mfRlPzxkySotzUHwRXjlpRh10vc6AI6WN62ehZj82VG7M20rqogJ0GLwar2Xa05a8Q==
lunr@^2.3.9:
version "2.3.9"
@@ -27018,6 +27538,13 @@ magic-string@0.30.11:
dependencies:
"@jridgewell/sourcemap-codec" "^1.5.0"
+magic-string@0.30.17:
+ version "0.30.17"
+ resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.17.tgz#450a449673d2460e5bbcfba9a61916a1714c7453"
+ integrity sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==
+ dependencies:
+ "@jridgewell/sourcemap-codec" "^1.5.0"
+
magic-string@0.30.8:
version "0.30.8"
resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.8.tgz#14e8624246d2bedba70d5462aa99ac9681844613"
@@ -27026,9 +27553,9 @@ magic-string@0.30.8:
"@jridgewell/sourcemap-codec" "^1.4.15"
magic-string@~0.30.2:
- version "0.30.17"
- resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.17.tgz#450a449673d2460e5bbcfba9a61916a1714c7453"
- integrity sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==
+ version "0.30.12"
+ resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.12.tgz#9eb11c9d072b9bcb4940a5b2c2e1a217e4ee1a60"
+ integrity sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==
dependencies:
"@jridgewell/sourcemap-codec" "^1.5.0"
@@ -27145,7 +27672,7 @@ make-fetch-happen@^13.0.0, make-fetch-happen@^13.0.1:
promise-retry "^2.0.1"
ssri "^10.0.0"
-make-fetch-happen@^14.0.0, make-fetch-happen@^14.0.1, make-fetch-happen@^14.0.2, make-fetch-happen@^14.0.3:
+make-fetch-happen@^14.0.0, make-fetch-happen@^14.0.1, make-fetch-happen@^14.0.3:
version "14.0.3"
resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz#d74c3ecb0028f08ab604011e0bc6baed483fcdcd"
integrity sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==
@@ -27387,7 +27914,7 @@ memfs@^3.1.2, memfs@^3.4.1:
dependencies:
fs-monkey "^1.0.4"
-memfs@^4.6.0:
+memfs@^4.14.0, memfs@^4.6.0:
version "4.17.0"
resolved "https://registry.yarnpkg.com/memfs/-/memfs-4.17.0.tgz#a3c4b5490b9b1e7df5d433adc163e08208ce7ca2"
integrity sha512-4eirfZ7thblFmqFjywlTmuWVSvccHAJbn1r8qQLzmTO11qcqpohOjmY2mFce6x7x7WtskzRqApPD0hv+Oa74jg==
@@ -27619,10 +28146,10 @@ min-indent@^1.0.0, min-indent@^1.0.1:
resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869"
integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==
-mini-css-extract-plugin@2.9.0:
- version "2.9.0"
- resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.0.tgz#c73a1327ccf466f69026ac22a8e8fd707b78a235"
- integrity sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==
+mini-css-extract-plugin@2.9.2:
+ version "2.9.2"
+ resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.2.tgz#966031b468917a5446f4c24a80854b2947503c5b"
+ integrity sha512-GJuACcS//jtq4kCtd5ii/M0SZf7OZRH+BxdqXZHaJfb8TJiVl+NgQRPwiYt2EuqeSkNydn/7vP+bcE27C5mb9w==
dependencies:
schema-utils "^4.0.0"
tapable "^2.2.1"
@@ -27786,9 +28313,9 @@ minipass-fetch@^3.0.0:
encoding "^0.1.13"
minipass-fetch@^4.0.0:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-4.0.1.tgz#f2d717d5a418ad0b1a7274f9b913515d3e78f9e5"
- integrity sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ==
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-4.0.0.tgz#b8ea716464747aeafb7edf2e110114c38089a09c"
+ integrity sha512-2v6aXUXwLP1Epd/gc32HAMIWoczx+fZwEPRHm/VwtrJzRGwR1qGZXEYV3Zp8ZjjbwaZhMrM6uHV4KVkk+XCc2w==
dependencies:
minipass "^7.0.3"
minipass-sized "^1.0.3"
@@ -28222,6 +28749,11 @@ mkdirp@1.0.4, mkdirp@^1.0.3, mkdirp@^1.0.4:
dependencies:
minimist "^1.2.6"
+mkdirp@^2.1.3:
+ version "2.1.6"
+ resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-2.1.6.tgz#964fbcb12b2d8c5d6fbc62a963ac95a273e2cc19"
+ integrity sha512-+hEnITedc8LAtIP9u3HJDFIdcLV2vXP33sqLLIzkv1Db1zO/1OxbvYf0Y1OC/S/Qo5dxHXepofhmxL02PsKe+A==
+
mkdirp@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-3.0.1.tgz#e44e4c5607fb279c168241713cc6e0fea9adcb50"
@@ -28395,16 +28927,16 @@ mri@^1.2.0:
resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b"
integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==
-mrmime@2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/mrmime/-/mrmime-2.0.0.tgz#151082a6e06e59a9a39b46b3e14d5cfe92b3abb4"
- integrity sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==
-
-mrmime@^2.0.0:
+mrmime@2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/mrmime/-/mrmime-2.0.1.tgz#bc3e87f7987853a54c9850eeb1f1078cd44adddc"
integrity sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==
+mrmime@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/mrmime/-/mrmime-2.0.0.tgz#151082a6e06e59a9a39b46b3e14d5cfe92b3abb4"
+ integrity sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==
+
ms@2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
@@ -28434,7 +28966,7 @@ msgpackr-extract@^3.0.2:
"@msgpackr-extract/msgpackr-extract-linux-x64" "3.0.3"
"@msgpackr-extract/msgpackr-extract-win32-x64" "3.0.3"
-msgpackr@^1.10.2:
+msgpackr@^1.11.2:
version "1.11.2"
resolved "https://registry.yarnpkg.com/msgpackr/-/msgpackr-1.11.2.tgz#4463b7f7d68f2e24865c395664973562ad24473d"
integrity sha512-F9UngXRlPyWCDEASDpTf6c9uNhGPTqnTeLVt7bN+bU1eajoR/8V9ys2BRaV5C/e5ihE6sJ9uPIKaYt6bFuO32g==
@@ -28557,7 +29089,7 @@ mv@2.1.1:
ncp "~2.0.0"
rimraf "~2.4.0"
-mysql2@3.12.0:
+mysql2@3.12.0, mysql2@^3.12.0:
version "3.12.0"
resolved "https://registry.yarnpkg.com/mysql2/-/mysql2-3.12.0.tgz#db8fc770f8b76ebaba49dc4bbfe2a1754057d882"
integrity sha512-C8fWhVysZoH63tJbX8d10IAoYCyXy4fdRFz2Ihrt9jtPILYynFEKUUzpp1U7qxzDc3tMbotvaBH+sl6bFnGZiw==
@@ -28572,21 +29104,6 @@ mysql2@3.12.0:
seq-queue "^0.0.5"
sqlstring "^2.3.2"
-mysql2@^3.12.0:
- version "3.13.0"
- resolved "https://registry.yarnpkg.com/mysql2/-/mysql2-3.13.0.tgz#97c83f65548d436fc2544536f03e4b1292de7869"
- integrity sha512-M6DIQjTqKeqXH5HLbLMxwcK5XfXHw30u5ap6EZmu7QVmcF/gnh2wS/EOiQ4MTbXz/vQeoXrmycPlVRM00WSslg==
- dependencies:
- aws-ssl-profiles "^1.1.1"
- denque "^2.1.0"
- generate-function "^2.3.1"
- iconv-lite "^0.6.3"
- long "^5.2.1"
- lru.min "^1.0.0"
- named-placeholders "^1.1.3"
- seq-queue "^0.0.5"
- sqlstring "^2.3.2"
-
mz@^2.4.0:
version "2.7.0"
resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32"
@@ -28604,14 +29121,14 @@ named-placeholders@^1.1.3:
lru-cache "^7.14.1"
nan@^2.4.0:
- version "2.22.2"
- resolved "https://registry.yarnpkg.com/nan/-/nan-2.22.2.tgz#6b504fd029fb8f38c0990e52ad5c26772fdacfbb"
- integrity sha512-DANghxFkS1plDdRsX0X9pm0Z6SJNN6gBdtXfanwoZ8hooC5gosGFSBGRYHUVPz1asKA/kMRqDRdHrluZ61SpBQ==
+ version "2.22.0"
+ resolved "https://registry.yarnpkg.com/nan/-/nan-2.22.0.tgz#31bc433fc33213c97bad36404bb68063de604de3"
+ integrity sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw==
nanoid@^3.3.7, nanoid@^3.3.8:
- version "3.3.9"
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.9.tgz#e0097d8e026b3343ff053e9ccd407360a03f503a"
- integrity sha512-SppoicMGpZvbF1l3z4x7No3OlIjP7QJvC9XR7AhZr1kL133KHnKPztkKDc+Ir4aJ/1VhTySrtKhrsycmrMQfvg==
+ version "3.3.8"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf"
+ integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==
nanomatch@^1.2.9:
version "1.2.13"
@@ -28641,9 +29158,9 @@ napi-build-utils@^2.0.0:
integrity sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==
nats@^2.6.1:
- version "2.29.2"
- resolved "https://registry.yarnpkg.com/nats/-/nats-2.29.2.tgz#dd6f968fde177cbd472d8609de93848d897ef2d3"
- integrity sha512-HfzEZa/67fAmRXchLv/sFGeZFF27TRf6kuNbuze2+Md+0M4xADoiUf7YColV9CMjlf2nIkFPnlXcpOTdtlhbPg==
+ version "2.29.1"
+ resolved "https://registry.yarnpkg.com/nats/-/nats-2.29.1.tgz#0612053e030dfb31107987d6083d17e50fb295c7"
+ integrity sha512-OHVsxrQCITTdMKG3So0jhtnBd5jS2u1xpS91UCws7VklsaCbctwg5vT/8lYpVldPW0x3aHGF8uuAoMfCoJy7Sg==
dependencies:
nkeys.js "1.1.0"
@@ -28652,11 +29169,6 @@ natural-compare@^1.4.0:
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
-natural-orderby@^2.0.1:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/natural-orderby/-/natural-orderby-2.0.3.tgz#8623bc518ba162f8ff1cdb8941d74deb0fdcc016"
- integrity sha512-p7KTHxU0CUrcOXe62Zfrb5Z13nLvPhSWR/so3kFulUQU0sgUll2Z0LwpsLN351eOOD+hRGu/F1g+6xDfPeD++Q==
-
ncp@~2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/ncp/-/ncp-2.0.0.tgz#195a21d6c46e361d2fb1281ba38b91e9df7bdbb3"
@@ -28749,44 +29261,42 @@ nestjs-i18n@^10.5.0:
string-format "^2.0.0"
new-github-issue-url@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/new-github-issue-url/-/new-github-issue-url-1.1.0.tgz#317333435991ae46e98831db5a237deffe4c8d33"
- integrity sha512-R4r7f3Q/SzlI4Q/J/0KPRf+bwxYk7BiaYEy0zTVqpikA5F1CwCHgwVReKhpYRlG1besvLdtABQGQRhFy8CyT3g==
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/new-github-issue-url/-/new-github-issue-url-1.0.0.tgz#c9e84057c2609b7cbd686d1d8baa53e291292e79"
+ integrity sha512-wa9jlUFg3v6S3ddijQiB18SY4u9eJYcUe5sHa+6SB8m1UUbtX+H/bBglxOLnhhF1zIHuhWXnKBAa8kBeKRIozQ==
next-tick@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb"
integrity sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==
-ng-packagr@18.2.1:
- version "18.2.1"
- resolved "https://registry.yarnpkg.com/ng-packagr/-/ng-packagr-18.2.1.tgz#ea45f888c5ce1252a3a39cc83431aece18429eb7"
- integrity sha512-dy9ZDpZb3QpAz+Y/m8VAu7ctr2VrnRU3gmQwJagnNybVJtCsKn3lZA3IW7Z7GTLoG5IALSPouiCgiB/C8ozv7w==
+ng-packagr@19.2.2:
+ version "19.2.2"
+ resolved "https://registry.yarnpkg.com/ng-packagr/-/ng-packagr-19.2.2.tgz#4c7403fff3cd2f0c7ae4089c2dbceabec363ce4a"
+ integrity sha512-dFuwFsDJMBSd1YtmLLcX5bNNUCQUlRqgf34aXA+79PmkOP+0eF8GP2949wq3+jMjmFTNm80Oo8IUYiSLwklKCQ==
dependencies:
"@rollup/plugin-json" "^6.1.0"
- "@rollup/plugin-node-resolve" "^15.2.3"
- "@rollup/wasm-node" "^4.18.0"
- ajv "^8.12.0"
+ "@rollup/wasm-node" "^4.24.0"
+ ajv "^8.17.1"
ansi-colors "^4.1.3"
browserslist "^4.22.1"
- cacache "^18.0.0"
- chokidar "^3.5.3"
- commander "^12.0.0"
+ chokidar "^4.0.1"
+ commander "^13.0.0"
convert-source-map "^2.0.0"
dependency-graph "^1.0.0"
- esbuild "^0.23.0"
- fast-glob "^3.3.1"
+ esbuild "^0.25.0"
+ fast-glob "^3.3.2"
find-cache-dir "^3.3.2"
injection-js "^2.4.0"
- jsonc-parser "^3.2.0"
+ jsonc-parser "^3.3.1"
less "^4.2.0"
ora "^5.1.0"
- piscina "^4.4.0"
- postcss "^8.4.31"
+ piscina "^4.7.0"
+ postcss "^8.4.47"
rxjs "^7.8.1"
- sass "^1.69.5"
+ sass "^1.81.0"
optionalDependencies:
- rollup "^4.18.0"
+ rollup "^4.24.0"
ng2-charts@^5.0.4:
version "5.0.4"
@@ -28796,10 +29306,10 @@ ng2-charts@^5.0.4:
lodash-es "^4.17.15"
tslib "^2.3.0"
-ng2-file-upload@^7.0.1:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/ng2-file-upload/-/ng2-file-upload-7.0.1.tgz#5f9f39c1fe245d969284cfd63a479b44bf48fa97"
- integrity sha512-qqJRzdRehYn6IQyr49qzW4Z3FYYr2ehq/vcn2K933Xf4kxJwhkzWObzJMEDYzhORoTndt+BYfVBNKmN4wjZkyw==
+ng2-file-upload@^8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/ng2-file-upload/-/ng2-file-upload-8.0.0.tgz#23415db82208dd6461a227ba2a3e1e9680882a0e"
+ integrity sha512-uforjhx9zHxVJvstOwILWnn7qIpFD+V7x9xtsBIczVxI4KYwGtek2GyEohgZTemv979nZtcQBZrFGqH981OroA==
dependencies:
tslib "^2.3.0"
@@ -28825,17 +29335,17 @@ ngx-color-picker@^17.0.0:
dependencies:
tslib "^2.3.0"
-ngx-cookie-service@^18.0.0:
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/ngx-cookie-service/-/ngx-cookie-service-18.0.0.tgz#f21e3fa261aeb56d73628e324edc7dfc4fdff746"
- integrity sha512-hkkUckzZTXXWtFgvVkT2hg6mwYMLXioXDZWBsVCOy9gYkADjsj0N5VViO7eo2izQ0VcMPd/Etog1trf/T4oZMQ==
+ngx-cookie-service@^19.0.0:
+ version "19.0.0"
+ resolved "https://registry.yarnpkg.com/ngx-cookie-service/-/ngx-cookie-service-19.0.0.tgz#fbea6896819610e83dcb136a064a4c76e368dadc"
+ integrity sha512-itxGY1BlIRoEjEtDsSsRKnJuiQteTMLKPNHrykiH06tjUQ1bi3orE7YKU1D210VBqVy1jNrB7hKuGOOIQtQJDA==
dependencies:
- tslib "^2.6.2"
+ tslib "^2.8.0"
-ngx-countdown@^17.1.1:
- version "17.1.1"
- resolved "https://registry.yarnpkg.com/ngx-countdown/-/ngx-countdown-17.1.1.tgz#46a9a0d1d83b44c1dac3373f0af25f91b87ed725"
- integrity sha512-ItZokeKc3QAYxLIZ96eD2mI6IZ5oEmKzFLIx94wjrLfZER1XRxUu+agHc+CnNmWEOmPWNn4ZtA5AUSawAcWZNQ==
+ngx-countdown@^19.0.0:
+ version "19.0.0"
+ resolved "https://registry.yarnpkg.com/ngx-countdown/-/ngx-countdown-19.0.0.tgz#935620d829bbc339f048360194feb1a89c494526"
+ integrity sha512-z4TtaWBQz/eozBS65dcE5leSPoCNjzADIRGpbxigquUPB3jqDfgRrdFvecdrcD3zbIqdhz8TKdGk/bto013rSg==
dependencies:
tslib "^2.3.0"
@@ -28876,10 +29386,10 @@ ngx-filepond@^7.0.3:
dependencies:
tslib "^2.3.0"
-ngx-infinite-scroll@^18.0.0:
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/ngx-infinite-scroll/-/ngx-infinite-scroll-18.0.0.tgz#1c22b9843a95f53088f1a60381238767a77915bf"
- integrity sha512-D183TDwpsd9Zl56UmItsl3RzHdN25srAISfg6lc3A8mEKkEgOq0s7ZzRAYcx8DHsAkMgtZqjIPEvMifD3DOB/g==
+ngx-infinite-scroll@^19.0.0:
+ version "19.0.0"
+ resolved "https://registry.yarnpkg.com/ngx-infinite-scroll/-/ngx-infinite-scroll-19.0.0.tgz#7b24d148426ccf9f0524d1a14eb4952d97cee415"
+ integrity sha512-Ft4xNNDLXoDGi2hF6ylehjxbG8JIgfoL6qDWWcebGMcbh1CEfEsh0HGkDuFlX/cBBMenRh2HFbXlYq8BAtbvLw==
dependencies:
tslib "^2.3.0"
@@ -28890,17 +29400,17 @@ ngx-moment@^6.0.2:
dependencies:
tslib "^2.3.0"
-ngx-page-scroll-core@^13.0.0:
- version "13.0.0"
- resolved "https://registry.yarnpkg.com/ngx-page-scroll-core/-/ngx-page-scroll-core-13.0.0.tgz#d898bdbf4d0620998e04aa30c612a6a588b37064"
- integrity sha512-/gb1WsjkwQSidbOBVSY/qIlzxuwht22joBeNyy7ia+gf+qwUfDOCd+QWCpWZAJSU1VQjH5ePNMxALVVHpsa9dg==
+ngx-page-scroll-core@^14.0.1:
+ version "14.0.1"
+ resolved "https://registry.yarnpkg.com/ngx-page-scroll-core/-/ngx-page-scroll-core-14.0.1.tgz#a485bddccb740f14ef47018c477cfdcf6c734ee0"
+ integrity sha512-bQzKs4FBpE/QEjxsVpyJs79R0RK0F4T9SMkYf/0jXGOpJdretRVvfOMB5kVk7rK1QKwLBFAwGjG9tIFj7BEhJw==
dependencies:
tslib "^2.6.2"
-ngx-page-scroll@^13.0.0:
- version "13.0.0"
- resolved "https://registry.yarnpkg.com/ngx-page-scroll/-/ngx-page-scroll-13.0.0.tgz#db82f3a667a865d1cd25f449d322b2854dd5ff11"
- integrity sha512-eKXhvfdXLzv943gM/aHeHne02lCfghg3aQngYN6kWmMvHPmb4QPdp0DTPPm1UxE0SBXoR5dY23xsqJtQdVZUrw==
+ngx-page-scroll@^14.0.1:
+ version "14.0.1"
+ resolved "https://registry.yarnpkg.com/ngx-page-scroll/-/ngx-page-scroll-14.0.1.tgz#9269a965636be582dd4f225591e6772c33ecfa1a"
+ integrity sha512-FRQlBWRLcKa6l9yNFbjxPqTLtSR/VWMRTTDYBMpE2gWFqaV8YnPwS2XHNAZ+bfN7Qv0UqEDaxByBoj9mKmMPQA==
dependencies:
tslib "^2.6.2"
@@ -28913,10 +29423,10 @@ ngx-perfect-scrollbar@^10.1.1:
resize-observer-polyfill "^1.5.0"
tslib "^2.0.0"
-ngx-permissions@^17.1.0:
- version "17.1.0"
- resolved "https://registry.yarnpkg.com/ngx-permissions/-/ngx-permissions-17.1.0.tgz#cb441f86e1ac56f782cc31549f6297ff39b3caf3"
- integrity sha512-NWZ/HAX0NCts5n7Yt0UlawJ78Eq05U+ssEFd3ugXESOCsgPT2QJ85Ls/imsLebiIiMrB/0zx6Bc6LqVPldXA9A==
+ngx-permissions@^19.0.0:
+ version "19.0.0"
+ resolved "https://registry.yarnpkg.com/ngx-permissions/-/ngx-permissions-19.0.0.tgz#6f71e2433ee6661bfbc0a939a47f99e3a94ac4f2"
+ integrity sha512-az/A1R8C7tmZ3XwOglYsF63M/9RMMKdF8opg9or57f6V94EmKoYff/OLOYxAft5j6C/jib+7rR89XZEpGAVGEg==
dependencies:
tslib "^2.3.0"
@@ -28927,14 +29437,6 @@ ngx-window-token@>=7.0.0:
dependencies:
tslib "^2.0.0"
-nice-napi@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/nice-napi/-/nice-napi-1.0.2.tgz#dc0ab5a1eac20ce548802fc5686eaa6bc654927b"
- integrity sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==
- dependencies:
- node-addon-api "^3.0.0"
- node-gyp-build "^4.2.2"
-
nice-try@^1.0.4:
version "1.0.5"
resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
@@ -28955,9 +29457,9 @@ no-case@^2.2.0:
lower-case "^1.1.1"
node-abi@^3.3.0, node-abi@^3.45.0, node-abi@^3.61.0:
- version "3.74.0"
- resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.74.0.tgz#5bfb4424264eaeb91432d2adb9da23c63a301ed0"
- integrity sha512-c5XK0MjkGBrQPGYG24GBADZud0NCbznxNx0ZkS+ebUTrmV1qTDxPxSL8zEAPURXSbLRWVexxmP4986BziahL5w==
+ version "3.73.0"
+ resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.73.0.tgz#4459ea77e71969edba8588387eecb05e2c2cff3b"
+ integrity sha512-z8iYzQGBu35ZkTQ9mtR8RqugJZ9RCLn8fv3d7LsgDBzOijGQP3RdKTX4LA7LXw03ZhU5z0l4xfhIMgSES31+cg==
dependencies:
semver "^7.3.5"
@@ -28971,11 +29473,6 @@ node-addon-api@^1.6.3:
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz#3df30b95720b53c24e59948b49532b662444f54d"
integrity sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==
-node-addon-api@^3.0.0:
- version "3.2.1"
- resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.2.1.tgz#81325e0a2117789c0128dab65e7e38f07ceba161"
- integrity sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==
-
node-addon-api@^5.0.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-5.1.0.tgz#49da1ca055e109a23d537e9de43c09cca21eb762"
@@ -29046,7 +29543,7 @@ node-gyp-build-optional-packages@5.2.2:
dependencies:
detect-libc "^2.0.1"
-node-gyp-build@4.x.x, node-gyp-build@^4.2.2:
+node-gyp-build@4.x.x:
version "4.8.4"
resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.4.tgz#8a70ee85464ae52327772a90d66c6077a900cfc8"
integrity sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==
@@ -29068,9 +29565,9 @@ node-gyp@^10.0.0, node-gyp@^10.2.0:
which "^4.0.0"
node-gyp@^11.0.0:
- version "11.1.0"
- resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-11.1.0.tgz#212a1d9c167c50d727d42659410780b40e07bbd3"
- integrity sha512-/+7TuHKnBpnMvUQnsYEb0JOozDZqarQbfNuSGLXIjhStMT0fbw7IdSqWgopOP5xhRZE+lsbIvAHcekddruPZgQ==
+ version "11.0.0"
+ resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-11.0.0.tgz#1e029056e8c040424ba380e1d5be54ad1757ae3c"
+ integrity sha512-zQS+9MTTeCMgY0F3cWPyJyRFAkVltQ1uXm+xXu/ES6KFgC6Czo1Seb9vQW2wNxSX2OrDTiqL0ojtkFxBQ0ypIw==
dependencies:
env-paths "^2.2.0"
exponential-backoff "^3.1.1"
@@ -29184,7 +29681,7 @@ node-polyfill-webpack-plugin@^1.1.4:
util "^0.12.4"
vm-browserify "^1.1.2"
-node-releases@^2.0.19:
+node-releases@^2.0.18, node-releases@^2.0.19:
version "2.0.19"
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.19.tgz#9e445a52950951ec4d177d843af370b411caf314"
integrity sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==
@@ -29279,7 +29776,7 @@ nopt@^6.0.0:
dependencies:
abbrev "^1.0.0"
-nopt@^7.0.0, nopt@^7.2.1:
+nopt@^7.0.0, nopt@^7.2.0, nopt@^7.2.1:
version "7.2.1"
resolved "https://registry.yarnpkg.com/nopt/-/nopt-7.2.1.tgz#1cac0eab9b8e97c9093338446eddd40b2c8ca1e7"
integrity sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==
@@ -29465,15 +29962,15 @@ npm-package-arg@11.0.2:
semver "^7.3.5"
validate-npm-package-name "^5.0.0"
-npm-package-arg@11.0.3, npm-package-arg@^11.0.0, npm-package-arg@^11.0.2:
- version "11.0.3"
- resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-11.0.3.tgz#dae0c21199a99feca39ee4bfb074df3adac87e2d"
- integrity sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==
+npm-package-arg@12.0.2:
+ version "12.0.2"
+ resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-12.0.2.tgz#3b1e04ebe651cc45028e298664e8c15ce9c0ca40"
+ integrity sha512-f1NpFjNI9O4VbKMOlA5QoBq/vSQPORHcTZ2feJpFkTHJ9eQkdlmZEKSjcAhxTGInC7RlEyScT9ui67NaOsjFWA==
dependencies:
- hosted-git-info "^7.0.0"
- proc-log "^4.0.0"
+ hosted-git-info "^8.0.0"
+ proc-log "^5.0.0"
semver "^7.3.5"
- validate-npm-package-name "^5.0.0"
+ validate-npm-package-name "^6.0.0"
npm-package-arg@8.1.1:
version "8.1.1"
@@ -29494,10 +29991,20 @@ npm-package-arg@^10.0.0:
semver "^7.3.5"
validate-npm-package-name "^5.0.0"
+npm-package-arg@^11.0.0, npm-package-arg@^11.0.2:
+ version "11.0.3"
+ resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-11.0.3.tgz#dae0c21199a99feca39ee4bfb074df3adac87e2d"
+ integrity sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==
+ dependencies:
+ hosted-git-info "^7.0.0"
+ proc-log "^4.0.0"
+ semver "^7.3.5"
+ validate-npm-package-name "^5.0.0"
+
npm-package-arg@^12.0.0:
- version "12.0.2"
- resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-12.0.2.tgz#3b1e04ebe651cc45028e298664e8c15ce9c0ca40"
- integrity sha512-f1NpFjNI9O4VbKMOlA5QoBq/vSQPORHcTZ2feJpFkTHJ9eQkdlmZEKSjcAhxTGInC7RlEyScT9ui67NaOsjFWA==
+ version "12.0.1"
+ resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-12.0.1.tgz#eb05e797b2fbdf8acf7f1d15344e1e05904202d5"
+ integrity sha512-aDxjFfPV3Liw0WOBWlyZLMBqtbgbg03rmGvHDJa2Ttv7tIz+1oB5qWec4psCDFZcZi9b5XdGkPdQiJxOPzvQRQ==
dependencies:
hosted-git-info "^8.0.0"
proc-log "^5.0.0"
@@ -29544,17 +30051,7 @@ npm-packlist@^9.0.0:
dependencies:
ignore-walk "^7.0.0"
-npm-pick-manifest@9.1.0, npm-pick-manifest@^9.0.0, npm-pick-manifest@^9.0.1:
- version "9.1.0"
- resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-9.1.0.tgz#83562afde52b0b07cb6244361788d319ce7e8636"
- integrity sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==
- 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-pick-manifest@^10.0.0:
+npm-pick-manifest@10.0.0, npm-pick-manifest@^10.0.0:
version "10.0.0"
resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-10.0.0.tgz#6cc120c6473ceea56dfead500f00735b2b892851"
integrity sha512-r4fFa4FqYY8xaM7fHecQ9Z2nE9hgNfJR+EmoKv0+chvzWkBcORX3r0FpTByP+CbOVJDladMXnPQGVN8PBLGuTQ==
@@ -29584,6 +30081,16 @@ npm-pick-manifest@^8.0.0:
npm-package-arg "^10.0.0"
semver "^7.3.5"
+npm-pick-manifest@^9.0.0, npm-pick-manifest@^9.0.1:
+ version "9.1.0"
+ resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-9.1.0.tgz#83562afde52b0b07cb6244361788d319ce7e8636"
+ integrity sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==
+ 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@^11.0.1:
version "11.0.1"
resolved "https://registry.yarnpkg.com/npm-profile/-/npm-profile-11.0.1.tgz#6ffac43f3d186316d37e80986d84aef2470269a2"
@@ -29801,9 +30308,9 @@ number-is-nan@^1.0.0:
integrity sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==
nwsapi@^2.2.2:
- version "2.2.18"
- resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.18.tgz#3c4d7927e1ef4d042d319438ecfda6cd81b7ee41"
- integrity sha512-p1TRH/edngVEHVbwqWnxUViEmq5znDvyB+Sik5cmuLpGOIfDf/39zLiq3swPF8Vakqn+gvNiOQAZu8djYlQILA==
+ version "2.2.16"
+ resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.16.tgz#177760bba02c351df1d2644e220c31dfec8cdb43"
+ integrity sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==
nx@20.1.3:
version "20.1.3"
@@ -29854,10 +30361,10 @@ nx@20.1.3:
"@nx/nx-win32-arm64-msvc" "20.1.3"
"@nx/nx-win32-x64-msvc" "20.1.3"
-nx@20.5.0, "nx@>=17.1.2 < 21":
- version "20.5.0"
- resolved "https://registry.yarnpkg.com/nx/-/nx-20.5.0.tgz#b3c0eef45bb7c5b61c02cc61d73ae92d19083425"
- integrity sha512-KuAzhTj1NHu3iOVsTBrzu7cboO69UgwzUMoAb8KfszV5FwQD5dARrkR7Ew4NZzFdB+arUr2rvo1ik9f1O19keg==
+nx@20.4.4:
+ version "20.4.4"
+ resolved "https://registry.yarnpkg.com/nx/-/nx-20.4.4.tgz#6c883e0debe7483dd582bf29841ed98ead3c66df"
+ integrity sha512-gOR9YFDbDTnOQYy6oqJ60ExgCiJJnz+o1TxrmP6cRmpRVv+5RmuZWQ9fXPtaj4SA69jbNqhSVyopT8oO6I+Gaw==
dependencies:
"@napi-rs/wasm-runtime" "0.2.4"
"@yarnpkg/lockfile" "^1.1.0"
@@ -29894,16 +30401,118 @@ nx@20.5.0, "nx@>=17.1.2 < 21":
yargs "^17.6.2"
yargs-parser "21.1.1"
optionalDependencies:
- "@nx/nx-darwin-arm64" "20.5.0"
- "@nx/nx-darwin-x64" "20.5.0"
- "@nx/nx-freebsd-x64" "20.5.0"
- "@nx/nx-linux-arm-gnueabihf" "20.5.0"
- "@nx/nx-linux-arm64-gnu" "20.5.0"
- "@nx/nx-linux-arm64-musl" "20.5.0"
- "@nx/nx-linux-x64-gnu" "20.5.0"
- "@nx/nx-linux-x64-musl" "20.5.0"
- "@nx/nx-win32-arm64-msvc" "20.5.0"
- "@nx/nx-win32-x64-msvc" "20.5.0"
+ "@nx/nx-darwin-arm64" "20.4.4"
+ "@nx/nx-darwin-x64" "20.4.4"
+ "@nx/nx-freebsd-x64" "20.4.4"
+ "@nx/nx-linux-arm-gnueabihf" "20.4.4"
+ "@nx/nx-linux-arm64-gnu" "20.4.4"
+ "@nx/nx-linux-arm64-musl" "20.4.4"
+ "@nx/nx-linux-x64-gnu" "20.4.4"
+ "@nx/nx-linux-x64-musl" "20.4.4"
+ "@nx/nx-win32-arm64-msvc" "20.4.4"
+ "@nx/nx-win32-x64-msvc" "20.4.4"
+
+nx@20.8.0:
+ version "20.8.0"
+ resolved "https://registry.yarnpkg.com/nx/-/nx-20.8.0.tgz#857870f5b0e648ed6aa91e2c876d6cdaa36a5017"
+ integrity sha512-+BN5B5DFBB5WswD8flDDTnr4/bf1VTySXOv60aUAllHqR+KS6deT0p70TTMZF4/A2n/L2UCWDaDro37MGaYozA==
+ dependencies:
+ "@napi-rs/wasm-runtime" "0.2.4"
+ "@yarnpkg/lockfile" "^1.1.0"
+ "@yarnpkg/parsers" "3.0.2"
+ "@zkochan/js-yaml" "0.0.7"
+ axios "^1.8.3"
+ chalk "^4.1.0"
+ cli-cursor "3.1.0"
+ cli-spinners "2.6.1"
+ cliui "^8.0.1"
+ dotenv "~16.4.5"
+ dotenv-expand "~11.0.6"
+ enquirer "~2.3.6"
+ figures "3.2.0"
+ flat "^5.0.2"
+ front-matter "^4.0.2"
+ ignore "^5.0.4"
+ jest-diff "^29.4.1"
+ jsonc-parser "3.2.0"
+ lines-and-columns "2.0.3"
+ minimatch "9.0.3"
+ node-machine-id "1.1.12"
+ npm-run-path "^4.0.1"
+ open "^8.4.0"
+ ora "5.3.0"
+ resolve.exports "2.0.3"
+ semver "^7.5.3"
+ string-width "^4.2.3"
+ tar-stream "~2.2.0"
+ tmp "~0.2.1"
+ tsconfig-paths "^4.1.2"
+ tslib "^2.3.0"
+ yaml "^2.6.0"
+ yargs "^17.6.2"
+ yargs-parser "21.1.1"
+ optionalDependencies:
+ "@nx/nx-darwin-arm64" "20.8.0"
+ "@nx/nx-darwin-x64" "20.8.0"
+ "@nx/nx-freebsd-x64" "20.8.0"
+ "@nx/nx-linux-arm-gnueabihf" "20.8.0"
+ "@nx/nx-linux-arm64-gnu" "20.8.0"
+ "@nx/nx-linux-arm64-musl" "20.8.0"
+ "@nx/nx-linux-x64-gnu" "20.8.0"
+ "@nx/nx-linux-x64-musl" "20.8.0"
+ "@nx/nx-win32-arm64-msvc" "20.8.0"
+ "@nx/nx-win32-x64-msvc" "20.8.0"
+
+"nx@>=17.1.2 < 21":
+ version "20.3.0"
+ resolved "https://registry.yarnpkg.com/nx/-/nx-20.3.0.tgz#fbf709186895a748f5d5e6446fcc6aaa7cf13ae6"
+ integrity sha512-Nzi4k7tV22zwO2iBLk+pHxorLEWPJpPrVCACtz0SQ63j/LiAgfhoqruJO+VU+V+E9qdyPsvmqIL/Iaf/GRQlqA==
+ dependencies:
+ "@napi-rs/wasm-runtime" "0.2.4"
+ "@yarnpkg/lockfile" "^1.1.0"
+ "@yarnpkg/parsers" "3.0.2"
+ "@zkochan/js-yaml" "0.0.7"
+ axios "^1.7.4"
+ chalk "^4.1.0"
+ cli-cursor "3.1.0"
+ cli-spinners "2.6.1"
+ cliui "^8.0.1"
+ dotenv "~16.4.5"
+ dotenv-expand "~11.0.6"
+ enquirer "~2.3.6"
+ figures "3.2.0"
+ flat "^5.0.2"
+ front-matter "^4.0.2"
+ ignore "^5.0.4"
+ jest-diff "^29.4.1"
+ jsonc-parser "3.2.0"
+ lines-and-columns "2.0.3"
+ minimatch "9.0.3"
+ node-machine-id "1.1.12"
+ npm-run-path "^4.0.1"
+ open "^8.4.0"
+ ora "5.3.0"
+ resolve.exports "2.0.3"
+ semver "^7.5.3"
+ string-width "^4.2.3"
+ tar-stream "~2.2.0"
+ tmp "~0.2.1"
+ tsconfig-paths "^4.1.2"
+ tslib "^2.3.0"
+ yaml "^2.6.0"
+ yargs "^17.6.2"
+ yargs-parser "21.1.1"
+ optionalDependencies:
+ "@nx/nx-darwin-arm64" "20.3.0"
+ "@nx/nx-darwin-x64" "20.3.0"
+ "@nx/nx-freebsd-x64" "20.3.0"
+ "@nx/nx-linux-arm-gnueabihf" "20.3.0"
+ "@nx/nx-linux-arm64-gnu" "20.3.0"
+ "@nx/nx-linux-arm64-musl" "20.3.0"
+ "@nx/nx-linux-x64-gnu" "20.3.0"
+ "@nx/nx-linux-x64-musl" "20.3.0"
+ "@nx/nx-win32-arm64-msvc" "20.3.0"
+ "@nx/nx-win32-x64-msvc" "20.3.0"
oauth-sign@0.9.0, oauth-sign@~0.9.0:
version "0.9.0"
@@ -29950,9 +30559,9 @@ object-hash@^1.2.0:
integrity sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA==
object-inspect@^1.13.3:
- version "1.13.4"
- resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz#8375265e21bc20d0fa582c22e1b13485d6e00213"
- integrity sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==
+ version "1.13.3"
+ resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a"
+ integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==
object-is@^1.1.5:
version "1.1.6"
@@ -29967,11 +30576,6 @@ object-keys@^1.1.1:
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
-object-treeify@^1.1.4:
- version "1.1.33"
- resolved "https://registry.yarnpkg.com/object-treeify/-/object-treeify-1.1.33.tgz#f06fece986830a3cba78ddd32d4c11d1f76cdf40"
- integrity sha512-EFVjAYfzWqWsBMRHPMAXLCDIJnpMhdWAqR7xG6M6a2cs6PMFpl/+Z20w9zDW4vkxOFfddegBKq9Rehd0bxWE7A==
-
object-visit@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
@@ -30231,7 +30835,7 @@ ora@5.4.1, ora@^5.1.0, ora@^5.4.1:
strip-ansi "^6.0.0"
wcwidth "^1.0.1"
-ordered-binary@^1.4.1:
+ordered-binary@^1.5.3:
version "1.5.3"
resolved "https://registry.yarnpkg.com/ordered-binary/-/ordered-binary-1.5.3.tgz#8bee2aa7a82c3439caeb1e80c272fd4cf51170fb"
integrity sha512-oGFr3T+pYdTGJ+YFEILMpS3es+GiIbs9h/XQrclBXUtd44ey7XwfsMzM31f64I1SQOawDoDr/D823kNCADI8TA==
@@ -30518,27 +31122,27 @@ package-json@^6.3.0:
registry-url "^5.0.0"
semver "^6.2.0"
-pacote@18.0.6, pacote@^18.0.0, pacote@^18.0.6:
- version "18.0.6"
- resolved "https://registry.yarnpkg.com/pacote/-/pacote-18.0.6.tgz#ac28495e24f4cf802ef911d792335e378e86fac7"
- integrity sha512-+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A==
+pacote@20.0.0, pacote@^20.0.0:
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/pacote/-/pacote-20.0.0.tgz#c974373d8e0859d00e8f9158574350f8c1b168e5"
+ integrity sha512-pRjC5UFwZCgx9kUFDVM9YEahv4guZ1nSLqwmWiLUnDbGsjs+U5w7z6Uc8HNR1a6x8qnu5y9xtGE6D1uAuYz+0A==
dependencies:
- "@npmcli/git" "^5.0.0"
- "@npmcli/installed-package-contents" "^2.0.1"
- "@npmcli/package-json" "^5.1.0"
- "@npmcli/promise-spawn" "^7.0.0"
- "@npmcli/run-script" "^8.0.0"
- cacache "^18.0.0"
+ "@npmcli/git" "^6.0.0"
+ "@npmcli/installed-package-contents" "^3.0.0"
+ "@npmcli/package-json" "^6.0.0"
+ "@npmcli/promise-spawn" "^8.0.0"
+ "@npmcli/run-script" "^9.0.0"
+ cacache "^19.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 "^17.0.0"
- proc-log "^4.0.0"
+ npm-package-arg "^12.0.0"
+ npm-packlist "^9.0.0"
+ npm-pick-manifest "^10.0.0"
+ npm-registry-fetch "^18.0.0"
+ proc-log "^5.0.0"
promise-retry "^2.0.1"
- sigstore "^2.2.0"
- ssri "^10.0.0"
+ sigstore "^3.0.0"
+ ssri "^12.0.0"
tar "^6.1.11"
pacote@^12.0.0, pacote@^12.0.2:
@@ -30590,33 +31194,33 @@ pacote@^15.2.0:
ssri "^10.0.0"
tar "^6.1.11"
-pacote@^19.0.0, pacote@^19.0.1:
- version "19.0.1"
- resolved "https://registry.yarnpkg.com/pacote/-/pacote-19.0.1.tgz#66d22dbd274ed8a7c30029d70eb8030f5151e6fc"
- integrity sha512-zIpxWAsr/BvhrkSruspG8aqCQUUrWtpwx0GjiRZQhEM/pZXrigA32ElN3vTcCPUDOFmHr6SFxwYrvVUs5NTEUg==
+pacote@^18.0.0, pacote@^18.0.6:
+ version "18.0.6"
+ resolved "https://registry.yarnpkg.com/pacote/-/pacote-18.0.6.tgz#ac28495e24f4cf802ef911d792335e378e86fac7"
+ integrity sha512-+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A==
dependencies:
- "@npmcli/git" "^6.0.0"
- "@npmcli/installed-package-contents" "^3.0.0"
- "@npmcli/package-json" "^6.0.0"
- "@npmcli/promise-spawn" "^8.0.0"
- "@npmcli/run-script" "^9.0.0"
- cacache "^19.0.0"
+ "@npmcli/git" "^5.0.0"
+ "@npmcli/installed-package-contents" "^2.0.1"
+ "@npmcli/package-json" "^5.1.0"
+ "@npmcli/promise-spawn" "^7.0.0"
+ "@npmcli/run-script" "^8.0.0"
+ cacache "^18.0.0"
fs-minipass "^3.0.0"
minipass "^7.0.2"
- npm-package-arg "^12.0.0"
- npm-packlist "^9.0.0"
- npm-pick-manifest "^10.0.0"
- npm-registry-fetch "^18.0.0"
- proc-log "^5.0.0"
+ npm-package-arg "^11.0.0"
+ npm-packlist "^8.0.0"
+ npm-pick-manifest "^9.0.0"
+ npm-registry-fetch "^17.0.0"
+ proc-log "^4.0.0"
promise-retry "^2.0.1"
- sigstore "^3.0.0"
- ssri "^12.0.0"
+ sigstore "^2.2.0"
+ ssri "^10.0.0"
tar "^6.1.11"
-pacote@^20.0.0:
- version "20.0.0"
- resolved "https://registry.yarnpkg.com/pacote/-/pacote-20.0.0.tgz#c974373d8e0859d00e8f9158574350f8c1b168e5"
- integrity sha512-pRjC5UFwZCgx9kUFDVM9YEahv4guZ1nSLqwmWiLUnDbGsjs+U5w7z6Uc8HNR1a6x8qnu5y9xtGE6D1uAuYz+0A==
+pacote@^19.0.0, pacote@^19.0.1:
+ version "19.0.1"
+ resolved "https://registry.yarnpkg.com/pacote/-/pacote-19.0.1.tgz#66d22dbd274ed8a7c30029d70eb8030f5151e6fc"
+ integrity sha512-zIpxWAsr/BvhrkSruspG8aqCQUUrWtpwx0GjiRZQhEM/pZXrigA32ElN3vTcCPUDOFmHr6SFxwYrvVUs5NTEUg==
dependencies:
"@npmcli/git" "^6.0.0"
"@npmcli/installed-package-contents" "^3.0.0"
@@ -30822,9 +31426,9 @@ parse-passwd@^1.0.0:
integrity sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==
parse-path@^7.0.0:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-7.0.1.tgz#ae548cd36315fd8881a3610eae99fa08123ee0e2"
- integrity sha512-6ReLMptznuuOEzLoGEa+I1oWRSj2Zna5jLWC+l6zlfAI4dbbSaIES29ThzuPkbhNahT65dWzfoZEO6cfJw2Ksg==
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-7.0.0.tgz#605a2d58d0a749c8594405d8cc3a2bf76d16099b"
+ integrity sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==
dependencies:
protocols "^2.0.0"
@@ -31026,14 +31630,6 @@ passport@^0.6.0:
pause "0.0.1"
utils-merge "^1.0.1"
-password-prompt@^1.1.2:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/password-prompt/-/password-prompt-1.1.3.tgz#05e539f4e7ca4d6c865d479313f10eb9db63ee5f"
- integrity sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==
- dependencies:
- ansi-escapes "^4.3.2"
- cross-spawn "^7.0.3"
-
path-browserify@^1.0.0, path-browserify@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd"
@@ -31154,10 +31750,10 @@ path-type@^4.0.0:
resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
-path-type@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/path-type/-/path-type-6.0.0.tgz#2f1bb6791a91ce99194caede5d6c5920ed81eb51"
- integrity sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==
+path-type@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/path-type/-/path-type-5.0.0.tgz#14b01ed7aea7ddf9c7c3f46181d4d04f9c785bb8"
+ integrity sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==
pathval@^1.1.1:
version "1.1.1"
@@ -31246,10 +31842,10 @@ pg-connection-string@^2.6.1, pg-connection-string@^2.7.0:
resolved "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-2.7.0.tgz#f1d3489e427c62ece022dba98d5262efcb168b37"
integrity sha512-PI2W9mv53rXJQEOb8xNR8lH7Hr+EKa6oJa38zsK0S/ky2er16ios1wLKhZyxzD7jUReiWokc9WK5nxSnC7W1TA==
-pg-cursor@^2.12.3:
- version "2.12.3"
- resolved "https://registry.yarnpkg.com/pg-cursor/-/pg-cursor-2.12.3.tgz#5dc440899f63b4b0a6458d6af2f4007feeb4cac3"
- integrity sha512-2koS4+f+oCJnJ6pTdUlp3TkwOCjlPr9lmwcTDPeXZv3eiXDCxZeBC7T0+LldA9+mhqdcO8WDqbuFfdFEJm9YLw==
+pg-cursor@^2.12.1:
+ version "2.12.1"
+ resolved "https://registry.yarnpkg.com/pg-cursor/-/pg-cursor-2.12.1.tgz#3df93ccd91b52d5baab22d028b92e862c738b978"
+ integrity sha512-V13tEaA9Oq1w+V6Q3UBIB/blxJrwbbr35/dY54r/86soBJ7xkP236bXaORUTVXUPt9B6Ql2BQu+uwQiuMfRVgg==
pg-int8@1.0.1:
version "1.0.1"
@@ -31261,22 +31857,22 @@ pg-numeric@1.0.2:
resolved "https://registry.yarnpkg.com/pg-numeric/-/pg-numeric-1.0.2.tgz#816d9a44026086ae8ae74839acd6a09b0636aa3a"
integrity sha512-BM/Thnrw5jm2kKLE5uJkXqqExRUY/toLHda65XgFTBTFYZyopbKjBe29Ii3RbkvlsMoFwD+tHeGaCjjv0gHlyw==
-pg-pool@^3.7.0, pg-pool@^3.7.1:
- version "3.7.1"
- resolved "https://registry.yarnpkg.com/pg-pool/-/pg-pool-3.7.1.tgz#d1aaf618618d8f878acf185e86084928b8cd5b3c"
- integrity sha512-xIOsFoh7Vdhojas6q3596mXFsR8nwBQBXX5JiV7p9buEVAGqYL4yFzclON5P9vFrpu1u7Zwl2oriyDa89n0wbw==
+pg-pool@^3.7.0:
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/pg-pool/-/pg-pool-3.7.0.tgz#d4d3c7ad640f8c6a2245adc369bafde4ebb8cbec"
+ integrity sha512-ZOBQForurqh4zZWjrgSwwAtzJ7QiRX0ovFkZr2klsen3Nm0aoh33Ls0fzfv3imeH/nw/O27cjdz5kzYJfeGp/g==
-pg-protocol@*, pg-protocol@^1.7.0, pg-protocol@^1.7.1:
- version "1.7.1"
- resolved "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.7.1.tgz#aad61a6f927b51e89dcf721408b76c0e536d43dc"
- integrity sha512-gjTHWGYWsEgy9MsY0Gp6ZJxV24IjDqdpTW7Eh0x+WfJLFsm/TJx1MzL6T0D88mBvkpxotCQ6TwW6N+Kko7lhgQ==
+pg-protocol@*, pg-protocol@^1.7.0:
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.7.0.tgz#ec037c87c20515372692edac8b63cf4405448a93"
+ integrity sha512-hTK/mE36i8fDDhgDFjy6xNOG+LCorxLG3WO17tku+ij6sVHXh1jQUJ8hYAnRhNla4QVD2H8er/FOjc/+EgC6yQ==
pg-query-stream@^4.7.1:
- version "4.7.3"
- resolved "https://registry.yarnpkg.com/pg-query-stream/-/pg-query-stream-4.7.3.tgz#61cfaa285d03bee8b8269a60864db861a124ceb4"
- integrity sha512-WvsdwYXrvIXNZJflX/2MEQLjKs5TopZWeiyam1zcaFfhwQtL19ENOvGdzVsihGsbsNGdVRU5yiqg2G5p06UAbg==
+ version "4.7.1"
+ resolved "https://registry.yarnpkg.com/pg-query-stream/-/pg-query-stream-4.7.1.tgz#9938dac9a2dd6696ac58a429e312054201765069"
+ integrity sha512-UMgsgn/pOIYsIifRySp59vwlpTpLADMK9HWJtq5ff0Z3MxBnPMGnCQeaQl5VuL+7ov4F96mSzIRIcz+Duo6OiQ==
dependencies:
- pg-cursor "^2.12.3"
+ pg-cursor "^2.12.1"
pg-types@^2.1.0, pg-types@^2.2.0:
version "2.2.0"
@@ -31302,7 +31898,7 @@ pg-types@^4.0.1:
postgres-interval "^3.0.0"
postgres-range "^1.1.1"
-pg@8.13.1:
+pg@8.13.1, pg@^8.13.1:
version "8.13.1"
resolved "https://registry.yarnpkg.com/pg/-/pg-8.13.1.tgz#6498d8b0a87ff76c2df7a32160309d3168c0c080"
integrity sha512-OUir1A0rPNZlX//c7ksiu7crsGZTKSOXJPgtNiHGIlC9H0lO+NC6ZDYksSgBYY/thSWhnSRBv8w1lieNNGATNQ==
@@ -31315,19 +31911,6 @@ pg@8.13.1:
optionalDependencies:
pg-cloudflare "^1.1.1"
-pg@^8.13.1:
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/pg/-/pg-8.13.3.tgz#19cd021d1f9e9d26d860b80cd450f109a8652738"
- integrity sha512-P6tPt9jXbL9HVu/SSRERNYaYG++MjnscnegFh9pPHihfoBSujsrka0hyuymMzeJKFWrcG8wvCKy8rCe8e5nDUQ==
- dependencies:
- pg-connection-string "^2.7.0"
- pg-pool "^3.7.1"
- pg-protocol "^1.7.1"
- pg-types "^2.1.0"
- pgpass "1.x"
- optionalDependencies:
- pg-cloudflare "^1.1.1"
-
pgpass@1.x:
version "1.0.5"
resolved "https://registry.yarnpkg.com/pgpass/-/pgpass-1.0.5.tgz#9b873e4a564bb10fa7a7dbd55312728d422a223d"
@@ -31540,14 +32123,7 @@ pirates@^4.0.4, pirates@^4.0.6:
resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9"
integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==
-piscina@4.6.1:
- version "4.6.1"
- resolved "https://registry.yarnpkg.com/piscina/-/piscina-4.6.1.tgz#4de673b0ff84bf641b31b07b3348669383b51c9a"
- integrity sha512-z30AwWGtQE+Apr+2WBZensP2lIvwoaMcOPkQlIEmSGMJNUvaYACylPYrQM6wSdUNJlnDVMSpLv7xTMJqlVshOA==
- optionalDependencies:
- nice-napi "^1.0.2"
-
-piscina@^4.4.0:
+piscina@4.8.0, piscina@^4.4.0, piscina@^4.7.0:
version "4.8.0"
resolved "https://registry.yarnpkg.com/piscina/-/piscina-4.8.0.tgz#5f5c5b1f4f3f50f8de894239c98b7b10d41ba4a6"
integrity sha512-EZJb+ZxDrQf3dihsUL7p42pjNyrNIFJCrRHPMgxu/svsj+P3xS3fuEWp7k2+rfsavfl1N0G29b1HGs7J0m8rZA==
@@ -31700,9 +32276,9 @@ pngjs@^6.0.0:
integrity sha512-TRzzuFRRmEoSW/p1KVAmiOgPco2Irlah+bGFCeNfJXxxYGwSw7YwAOAcd7X28K/m5bjBWKsC29KyoMfHbypayg==
portfinder@^1.0.28:
- version "1.0.33"
- resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.33.tgz#03dbc51455aa8f83ad9fb86af8345e063bb51101"
- integrity sha512-+2jndHT63cL5MdQOwDm9OT2dIe11zVpjV+0GGRXdtO1wpPxv260NfVqoEXtYAi/shanmm3W4+yLduIe55ektTw==
+ version "1.0.32"
+ resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.32.tgz#2fe1b9e58389712429dc2bea5beb2146146c7f81"
+ integrity sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==
dependencies:
async "^2.6.4"
debug "^3.2.7"
@@ -31714,9 +32290,9 @@ posix-character-classes@^0.1.0:
integrity sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==
possible-typed-array-names@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz#93e3582bc0e5426586d9d07b79ee40fc841de4ae"
- integrity sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f"
+ integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==
postcss-attribute-case-insensitive@^5.0.0:
version "5.0.2"
@@ -31895,7 +32471,7 @@ postcss-lab-function@^4.2.0:
"@csstools/postcss-progressive-custom-properties" "^1.1.0"
postcss-value-parser "^4.2.0"
-postcss-loader@8.1.1:
+postcss-loader@8.1.1, postcss-loader@^8.1.1:
version "8.1.1"
resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-8.1.1.tgz#2822589e7522927344954acb55bbf26e8b195dfe"
integrity sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==
@@ -32212,9 +32788,9 @@ postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.11, postcss-select
util-deprecate "^1.0.2"
postcss-selector-parser@^7.0.0:
- version "7.1.0"
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz#4d6af97eba65d73bc4d84bcb343e865d7dd16262"
- integrity sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz#41bd8b56f177c093ca49435f65731befe25d6b9c"
+ integrity sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==
dependencies:
cssesc "^3.0.0"
util-deprecate "^1.0.2"
@@ -32249,16 +32825,43 @@ postcss-value-parser@^4.0.0, postcss-value-parser@^4.1.0, postcss-value-parser@^
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
-postcss@8.4.41:
- version "8.4.41"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.41.tgz#d6104d3ba272d882fe18fc07d15dc2da62fa2681"
- integrity sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==
+postcss@8.5.2:
+ version "8.5.2"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.2.tgz#e7b99cb9d2ec3e8dd424002e7c16517cb2b846bd"
+ integrity sha512-MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA==
+ dependencies:
+ nanoid "^3.3.8"
+ picocolors "^1.1.1"
+ source-map-js "^1.2.1"
+
+postcss@^8.2.14, postcss@^8.4.24, postcss@^8.4.28, postcss@^8.4.33, postcss@^8.4.5:
+ version "8.4.47"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365"
+ integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==
dependencies:
nanoid "^3.3.7"
- picocolors "^1.0.1"
- source-map-js "^1.2.0"
+ picocolors "^1.1.0"
+ source-map-js "^1.2.1"
+
+postcss@^8.4.38, postcss@^8.4.47:
+ version "8.4.49"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.49.tgz#4ea479048ab059ab3ae61d082190fabfd994fe19"
+ integrity sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==
+ dependencies:
+ nanoid "^3.3.7"
+ picocolors "^1.1.1"
+ source-map-js "^1.2.1"
+
+postcss@^8.4.49:
+ version "8.5.1"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.1.tgz#e2272a1f8a807fafa413218245630b5db10a3214"
+ integrity sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==
+ dependencies:
+ nanoid "^3.3.8"
+ picocolors "^1.1.1"
+ source-map-js "^1.2.1"
-postcss@^8.2.14, postcss@^8.4.23, postcss@^8.4.24, postcss@^8.4.28, postcss@^8.4.31, postcss@^8.4.33, postcss@^8.4.38, postcss@^8.4.43, postcss@^8.4.5:
+postcss@^8.5.3:
version "8.5.3"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.3.tgz#1463b6f1c7fb16fe258736cba29a2de35237eafb"
integrity sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==
@@ -32267,7 +32870,7 @@ postcss@^8.2.14, postcss@^8.4.23, postcss@^8.4.24, postcss@^8.4.28, postcss@^8.4
picocolors "^1.1.1"
source-map-js "^1.2.1"
-postgres-array@3.0.2:
+postgres-array@3.0.2, postgres-array@~3.0.1:
version "3.0.2"
resolved "https://registry.yarnpkg.com/postgres-array/-/postgres-array-3.0.2.tgz#68d6182cb0f7f152a7e60dc6a6889ed74b0a5f98"
integrity sha512-6faShkdFugNQCLwucjPcY5ARoW1SlbnrZjmGl0IrrqewpvxvhSLHimCVzqeuULCbG0fQv7Dtk1yDbG3xv7Veog==
@@ -32277,11 +32880,6 @@ postgres-array@~2.0.0:
resolved "https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz#48f8fce054fbc69671999329b8834b772652d82e"
integrity sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==
-postgres-array@~3.0.1:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/postgres-array/-/postgres-array-3.0.4.tgz#4efcaf4d2c688d8bcaa8620ed13f35f299f7528c"
- integrity sha512-nAUSGfSDGOaOAEGwqsRY27GPOea7CNipJPOA7lPbdEpx5Kg3qzdP0AaWC5MlhTWV9s4hFX39nomVZ+C4tnGOJQ==
-
postgres-bytea@~1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-1.0.0.tgz#027b533c0aa890e26d172d47cf9ccecc521acd35"
@@ -32461,9 +33059,9 @@ preview-email@^3.0.5:
uuid "^9.0.1"
prismjs@^1.29.0:
- version "1.30.0"
- resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.30.0.tgz#d9709969d9d4e16403f6f348c63553b19f0975a9"
- integrity sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==
+ version "1.29.0"
+ resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.29.0.tgz#f113555a8fa9b57c35e637bba27509dcf802dd12"
+ integrity sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==
probot@^12.3.3:
version "12.4.0"
@@ -32654,7 +33252,7 @@ proto-list@~1.2.1:
resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849"
integrity sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==
-protobufjs@^7.2.3, protobufjs@^7.2.5, protobufjs@^7.3.0:
+protobufjs@^7.2.3, protobufjs@^7.2.5:
version "7.4.0"
resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-7.4.0.tgz#7efe324ce9b3b61c82aae5de810d287bc08a248a"
integrity sha512-mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw==
@@ -32672,10 +33270,28 @@ protobufjs@^7.2.3, protobufjs@^7.2.5, protobufjs@^7.3.0:
"@types/node" ">=13.7.0"
long "^5.0.0"
+protobufjs@^7.3.0:
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-7.5.0.tgz#a317ad80713e9db43c8e55afa8636a9aa76bb630"
+ integrity sha512-Z2E/kOY1QjoMlCytmexzYfDm/w5fKAiRwpSzGtdnXW1zC88Z2yXazHHrOtwCzn+7wSxyE8PYM4rvVcMphF9sOA==
+ dependencies:
+ "@protobufjs/aspromise" "^1.1.2"
+ "@protobufjs/base64" "^1.1.2"
+ "@protobufjs/codegen" "^2.0.4"
+ "@protobufjs/eventemitter" "^1.1.0"
+ "@protobufjs/fetch" "^1.1.0"
+ "@protobufjs/float" "^1.0.2"
+ "@protobufjs/inquire" "^1.1.0"
+ "@protobufjs/path" "^1.1.2"
+ "@protobufjs/pool" "^1.1.0"
+ "@protobufjs/utf8" "^1.1.0"
+ "@types/node" ">=13.7.0"
+ long "^5.0.0"
+
protocols@^2.0.0, protocols@^2.0.1:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/protocols/-/protocols-2.0.2.tgz#822e8fcdcb3df5356538b3e91bfd890b067fd0a4"
- integrity sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/protocols/-/protocols-2.0.1.tgz#8f155da3fc0f32644e83c5782c8e8212ccf70a86"
+ integrity sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==
protractor@^7.0.0:
version "7.0.0"
@@ -33329,7 +33945,7 @@ readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable
string_decoder "~1.1.1"
util-deprecate "~1.0.1"
-readable-stream@^4.0.0, readable-stream@^4.3.0, readable-stream@^4.7.0:
+readable-stream@^4.0.0, readable-stream@^4.3.0:
version "4.7.0"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-4.7.0.tgz#cedbd8a1146c13dfff8dab14068028d58c15ac91"
integrity sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==
@@ -33351,11 +33967,11 @@ readable-stream@~1.0.31:
string_decoder "~0.10.x"
readable-web-to-node-stream@^3.0.0:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.4.tgz#392ba37707af5bf62d725c36c1b5d6ef4119eefc"
- integrity sha512-9nX56alTf5bwXQ3ZDipHJhusu9NTQJ/CVPtb/XHAJCXihZeitfJvIRS4GqQ/mfIoOE3IelHMrpayVrosdHBuLw==
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz#5d52bb5df7b54861fd48d015e93a2cb87b3ee0bb"
+ integrity sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==
dependencies:
- readable-stream "^4.7.0"
+ readable-stream "^3.6.0"
readdir-glob@^1.1.2:
version "1.1.3"
@@ -33375,9 +33991,9 @@ readdir-scoped-modules@^1.1.0:
once "^1.3.0"
readdirp@^4.0.1:
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-4.1.2.tgz#eb85801435fbf2a7ee58f19e0921b068fc69948d"
- integrity sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-4.1.1.tgz#bd115327129672dc47f87408f05df9bd9ca3ef55"
+ integrity sha512-h80JrZu/MHUZCyHu5ciuoI0+WxsCxzxJTILn6Fs8rxSnFPh+UVHYfeIxK1nVGugMqkfC4vJcBOYbkfkwYK0+gw==
readdirp@~3.6.0:
version "3.6.0"
@@ -33444,14 +34060,7 @@ redent@^4.0.0:
indent-string "^5.0.0"
strip-indent "^4.0.0"
-redeyed@~2.1.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-2.1.1.tgz#8984b5815d99cb220469c99eeeffe38913e6cc0b"
- integrity sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==
- dependencies:
- esprima "~4.0.0"
-
-redis-commands@^1.7.0:
+redis-commands@1.7.0, redis-commands@^1.7.0:
version "1.7.0"
resolved "https://registry.yarnpkg.com/redis-commands/-/redis-commands-1.7.0.tgz#15a6fea2d58281e27b1cd1acfb4b293e278c3a89"
integrity sha512-nJWqw3bTFy21hX/CPKHth6sfhZbdiHP6bTawSgQBlKOVRG7EZkfHbbHwQJnrE4vsQf0CMNE+3gJ4Fmm16vdVlQ==
@@ -33490,7 +34099,7 @@ redis@^4.6.12, redis@^4.6.13:
"@redis/search" "1.2.0"
"@redis/time-series" "1.1.0"
-reflect-metadata@0.2.2, reflect-metadata@^0.2.0, reflect-metadata@^0.2.2:
+reflect-metadata@0.2.2, reflect-metadata@^0.2.0, reflect-metadata@^0.2.1, reflect-metadata@^0.2.2:
version "0.2.2"
resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.2.2.tgz#400c845b6cba87a21f2c65c4aeb158f4fa4d9c5b"
integrity sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==
@@ -33552,9 +34161,9 @@ regex-not@^1.0.0, regex-not@^1.0.2:
safe-regex "^1.1.0"
regex-parser@^2.2.11, regex-parser@^2.2.8:
- version "2.3.1"
- resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.3.1.tgz#ee3f70e50bdd81a221d505242cb9a9c275a2ad91"
- integrity sha512-yXLRqatcCuKtVHsWrNg0JL3l1zGfdXeEvDa0bdu4tCDQw0RpMDZsqbkyRTUnKMR0tXF627V2oEWjBEaEdqTwtQ==
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.3.0.tgz#4bb61461b1a19b8b913f3960364bb57887f920ee"
+ integrity sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==
regexp.prototype.flags@^1.5.1, regexp.prototype.flags@^1.5.3:
version "1.5.4"
@@ -33588,9 +34197,9 @@ registry-auth-token@^4.0.0:
rc "1.2.8"
registry-auth-token@^5.0.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-5.1.0.tgz#3c659047ecd4caebd25bc1570a3aa979ae490eca"
- integrity sha512-GdekYuwLXLxMuFTwAPg5UKGLW/UXzQrZvH/Zj791BQif5T05T0RsaLfHc9q3ZOKi7n+BoprPD9mJ0O0k4xzUlw==
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-5.0.3.tgz#417d758c8164569de8cf5cabff16cc937902dcc6"
+ integrity sha512-1bpc9IyC+e+CNFRaWyn77tk4xGG4PPUyfakSmA6F6cvUDjrm58dfyJ3II+9yb10EDkHoy1LaPSmHaWLOH3m6HA==
dependencies:
"@pnpm/npm-conf" "^2.1.0"
@@ -33697,9 +34306,9 @@ require-from-string@^2.0.1, require-from-string@^2.0.2:
integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
require-in-the-middle@^7.1.1:
- version "7.5.2"
- resolved "https://registry.yarnpkg.com/require-in-the-middle/-/require-in-the-middle-7.5.2.tgz#dc25b148affad42e570cf0e41ba30dc00f1703ec"
- integrity sha512-gAZ+kLqBdHarXB64XpAe2VCjB7rIRv+mU8tfRWziHRJ5umKsIHN2tLLv6EtMw7WCdP19S0ERVMldNvxYCHnhSQ==
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/require-in-the-middle/-/require-in-the-middle-7.5.0.tgz#6466fa87d6297b46d3ceca99ec03f901cab35d11"
+ integrity sha512-/Tvpny/RVVicqlYTKwt/GtpZRsPG1CmJNhxVKGz+Sy/4MONfXCVNK69MFgGKdUt0/324q3ClI2dICcPgISrC8g==
dependencies:
debug "^4.3.5"
module-details-from-path "^1.0.3"
@@ -33783,26 +34392,17 @@ resolve-url@^0.2.1:
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==
-resolve.exports@1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9"
- integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==
-
-resolve.exports@2.0.3, resolve.exports@^2.0.0:
+resolve.exports@2.0.3:
version "2.0.3"
resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.3.tgz#41955e6f1b4013b7586f873749a635dea07ebe3f"
integrity sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==
-resolve@1.22.8:
- version "1.22.8"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d"
- integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==
- dependencies:
- is-core-module "^2.13.0"
- path-parse "^1.0.7"
- supports-preserve-symlinks-flag "^1.0.0"
+resolve.exports@^2.0.0:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800"
+ integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==
-resolve@^1.1.4, resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.14.2, resolve@^1.15.1, resolve@^1.17.0, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.0, resolve@^1.22.1, resolve@^1.22.8, resolve@^1.3.2, resolve@^1.3.3, resolve@^1.4.0, resolve@^1.9.0:
+resolve@1.22.10, resolve@^1.1.4, resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.14.2, resolve@^1.15.1, resolve@^1.17.0, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.0, resolve@^1.22.8, resolve@^1.3.2, resolve@^1.3.3, resolve@^1.4.0, resolve@^1.9.0:
version "1.22.10"
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.10.tgz#b663e83ffb09bbf2386944736baae803029b8b39"
integrity sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==
@@ -33811,6 +34411,15 @@ resolve@^1.1.4, resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.12.0
path-parse "^1.0.7"
supports-preserve-symlinks-flag "^1.0.0"
+resolve@1.22.8:
+ version "1.22.8"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d"
+ integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==
+ dependencies:
+ is-core-module "^2.13.0"
+ path-parse "^1.0.7"
+ supports-preserve-symlinks-flag "^1.0.0"
+
responselike@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7"
@@ -33847,9 +34456,9 @@ ret@~0.1.10:
integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
retry-as-promised@^7.0.4:
- version "7.1.1"
- resolved "https://registry.yarnpkg.com/retry-as-promised/-/retry-as-promised-7.1.1.tgz#3626246f04c1941ff10cebcfa3df0577fd8ab2d7"
- integrity sha512-hMD7odLOt3LkTjcif8aRZqi/hybjpLNgSk5oF5FCowfCjok6LukpN2bDX7R5wDmbgBQFn7YoBxSagmtXHaJYJw==
+ version "7.0.4"
+ resolved "https://registry.yarnpkg.com/retry-as-promised/-/retry-as-promised-7.0.4.tgz#9df73adaeea08cb2948b9d34990549dc13d800a2"
+ integrity sha512-XgmCoxKWkDofwH8WddD0w85ZfqYz+ZHlr5yo+3YUCfycWawU56T5ckWXsScsj5B8tqUcIG67DxXByo3VUgiAdA==
retry@0.13.1, retry@^0.13.1:
version "0.13.1"
@@ -33862,9 +34471,9 @@ retry@^0.12.0:
integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==
reusify@^1.0.4:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.1.0.tgz#0fe13b9522e1473f51b558ee796e08f11f9b489f"
- integrity sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
+ integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
rfdc@^1.1.4, rfdc@^1.2.0, rfdc@^1.3.0, rfdc@^1.3.1, rfdc@^1.4.1:
version "1.4.1"
@@ -33892,13 +34501,6 @@ rimraf@^4.4.1:
dependencies:
glob "^9.2.0"
-rimraf@^5.0.5:
- version "5.0.10"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-5.0.10.tgz#23b9843d3dc92db71f96e1a2ce92e39fd2a8221c"
- integrity sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==
- dependencies:
- glob "^10.3.7"
-
rimraf@~2.4.0:
version "2.4.5"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.4.5.tgz#ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da"
@@ -33953,57 +34555,89 @@ robust-predicates@^3.0.2:
resolved "https://registry.yarnpkg.com/robust-predicates/-/robust-predicates-3.0.2.tgz#d5b28528c4824d20fc48df1928d41d9efa1ad771"
integrity sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==
-rollup@4.22.4:
- version "4.22.4"
- resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.22.4.tgz#4135a6446671cd2a2453e1ad42a45d5973ec3a0f"
- integrity sha512-vD8HJ5raRcWOyymsR6Z3o6+RzfEPCnVLMFJ6vRslO1jt4LO6dUo5Qnpg7y4RkZFM2DMe3WUirkI5c16onjrc6A==
+rollup@4.34.8:
+ version "4.34.8"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.34.8.tgz#e859c1a51d899aba9bcf451d4eed1d11fb8e2a6e"
+ integrity sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==
dependencies:
- "@types/estree" "1.0.5"
+ "@types/estree" "1.0.6"
optionalDependencies:
- "@rollup/rollup-android-arm-eabi" "4.22.4"
- "@rollup/rollup-android-arm64" "4.22.4"
- "@rollup/rollup-darwin-arm64" "4.22.4"
- "@rollup/rollup-darwin-x64" "4.22.4"
- "@rollup/rollup-linux-arm-gnueabihf" "4.22.4"
- "@rollup/rollup-linux-arm-musleabihf" "4.22.4"
- "@rollup/rollup-linux-arm64-gnu" "4.22.4"
- "@rollup/rollup-linux-arm64-musl" "4.22.4"
- "@rollup/rollup-linux-powerpc64le-gnu" "4.22.4"
- "@rollup/rollup-linux-riscv64-gnu" "4.22.4"
- "@rollup/rollup-linux-s390x-gnu" "4.22.4"
- "@rollup/rollup-linux-x64-gnu" "4.22.4"
- "@rollup/rollup-linux-x64-musl" "4.22.4"
- "@rollup/rollup-win32-arm64-msvc" "4.22.4"
- "@rollup/rollup-win32-ia32-msvc" "4.22.4"
- "@rollup/rollup-win32-x64-msvc" "4.22.4"
+ "@rollup/rollup-android-arm-eabi" "4.34.8"
+ "@rollup/rollup-android-arm64" "4.34.8"
+ "@rollup/rollup-darwin-arm64" "4.34.8"
+ "@rollup/rollup-darwin-x64" "4.34.8"
+ "@rollup/rollup-freebsd-arm64" "4.34.8"
+ "@rollup/rollup-freebsd-x64" "4.34.8"
+ "@rollup/rollup-linux-arm-gnueabihf" "4.34.8"
+ "@rollup/rollup-linux-arm-musleabihf" "4.34.8"
+ "@rollup/rollup-linux-arm64-gnu" "4.34.8"
+ "@rollup/rollup-linux-arm64-musl" "4.34.8"
+ "@rollup/rollup-linux-loongarch64-gnu" "4.34.8"
+ "@rollup/rollup-linux-powerpc64le-gnu" "4.34.8"
+ "@rollup/rollup-linux-riscv64-gnu" "4.34.8"
+ "@rollup/rollup-linux-s390x-gnu" "4.34.8"
+ "@rollup/rollup-linux-x64-gnu" "4.34.8"
+ "@rollup/rollup-linux-x64-musl" "4.34.8"
+ "@rollup/rollup-win32-arm64-msvc" "4.34.8"
+ "@rollup/rollup-win32-ia32-msvc" "4.34.8"
+ "@rollup/rollup-win32-x64-msvc" "4.34.8"
fsevents "~2.3.2"
-rollup@^4.18.0, rollup@^4.20.0:
- version "4.35.0"
- resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.35.0.tgz#76c95dba17a579df4c00c3955aed32aa5d4dc66d"
- integrity sha512-kg6oI4g+vc41vePJyO6dHt/yl0Rz3Thv0kJeVQ3D1kS3E5XSuKbPc29G4IpT/Kv1KQwgHVcN+HtyS+HYLNSvQg==
+rollup@^4.24.0:
+ version "4.29.1"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.29.1.tgz#a9aaaece817e5f778489e5bf82e379cc8a5c05bc"
+ integrity sha512-RaJ45M/kmJUzSWDs1Nnd5DdV4eerC98idtUOVr6FfKcgxqvjwHmxc5upLF9qZU9EpsVzzhleFahrT3shLuJzIw==
dependencies:
"@types/estree" "1.0.6"
optionalDependencies:
- "@rollup/rollup-android-arm-eabi" "4.35.0"
- "@rollup/rollup-android-arm64" "4.35.0"
- "@rollup/rollup-darwin-arm64" "4.35.0"
- "@rollup/rollup-darwin-x64" "4.35.0"
- "@rollup/rollup-freebsd-arm64" "4.35.0"
- "@rollup/rollup-freebsd-x64" "4.35.0"
- "@rollup/rollup-linux-arm-gnueabihf" "4.35.0"
- "@rollup/rollup-linux-arm-musleabihf" "4.35.0"
- "@rollup/rollup-linux-arm64-gnu" "4.35.0"
- "@rollup/rollup-linux-arm64-musl" "4.35.0"
- "@rollup/rollup-linux-loongarch64-gnu" "4.35.0"
- "@rollup/rollup-linux-powerpc64le-gnu" "4.35.0"
- "@rollup/rollup-linux-riscv64-gnu" "4.35.0"
- "@rollup/rollup-linux-s390x-gnu" "4.35.0"
- "@rollup/rollup-linux-x64-gnu" "4.35.0"
- "@rollup/rollup-linux-x64-musl" "4.35.0"
- "@rollup/rollup-win32-arm64-msvc" "4.35.0"
- "@rollup/rollup-win32-ia32-msvc" "4.35.0"
- "@rollup/rollup-win32-x64-msvc" "4.35.0"
+ "@rollup/rollup-android-arm-eabi" "4.29.1"
+ "@rollup/rollup-android-arm64" "4.29.1"
+ "@rollup/rollup-darwin-arm64" "4.29.1"
+ "@rollup/rollup-darwin-x64" "4.29.1"
+ "@rollup/rollup-freebsd-arm64" "4.29.1"
+ "@rollup/rollup-freebsd-x64" "4.29.1"
+ "@rollup/rollup-linux-arm-gnueabihf" "4.29.1"
+ "@rollup/rollup-linux-arm-musleabihf" "4.29.1"
+ "@rollup/rollup-linux-arm64-gnu" "4.29.1"
+ "@rollup/rollup-linux-arm64-musl" "4.29.1"
+ "@rollup/rollup-linux-loongarch64-gnu" "4.29.1"
+ "@rollup/rollup-linux-powerpc64le-gnu" "4.29.1"
+ "@rollup/rollup-linux-riscv64-gnu" "4.29.1"
+ "@rollup/rollup-linux-s390x-gnu" "4.29.1"
+ "@rollup/rollup-linux-x64-gnu" "4.29.1"
+ "@rollup/rollup-linux-x64-musl" "4.29.1"
+ "@rollup/rollup-win32-arm64-msvc" "4.29.1"
+ "@rollup/rollup-win32-ia32-msvc" "4.29.1"
+ "@rollup/rollup-win32-x64-msvc" "4.29.1"
+ fsevents "~2.3.2"
+
+rollup@^4.30.1:
+ version "4.40.0"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.40.0.tgz#13742a615f423ccba457554f006873d5a4de1920"
+ integrity sha512-Noe455xmA96nnqH5piFtLobsGbCij7Tu+tb3c1vYjNbTkfzGqXqQXG3wJaYXkRZuQ0vEYN4bhwg7QnIrqB5B+w==
+ dependencies:
+ "@types/estree" "1.0.7"
+ optionalDependencies:
+ "@rollup/rollup-android-arm-eabi" "4.40.0"
+ "@rollup/rollup-android-arm64" "4.40.0"
+ "@rollup/rollup-darwin-arm64" "4.40.0"
+ "@rollup/rollup-darwin-x64" "4.40.0"
+ "@rollup/rollup-freebsd-arm64" "4.40.0"
+ "@rollup/rollup-freebsd-x64" "4.40.0"
+ "@rollup/rollup-linux-arm-gnueabihf" "4.40.0"
+ "@rollup/rollup-linux-arm-musleabihf" "4.40.0"
+ "@rollup/rollup-linux-arm64-gnu" "4.40.0"
+ "@rollup/rollup-linux-arm64-musl" "4.40.0"
+ "@rollup/rollup-linux-loongarch64-gnu" "4.40.0"
+ "@rollup/rollup-linux-powerpc64le-gnu" "4.40.0"
+ "@rollup/rollup-linux-riscv64-gnu" "4.40.0"
+ "@rollup/rollup-linux-riscv64-musl" "4.40.0"
+ "@rollup/rollup-linux-s390x-gnu" "4.40.0"
+ "@rollup/rollup-linux-x64-gnu" "4.40.0"
+ "@rollup/rollup-linux-x64-musl" "4.40.0"
+ "@rollup/rollup-win32-arm64-msvc" "4.40.0"
+ "@rollup/rollup-win32-ia32-msvc" "4.40.0"
+ "@rollup/rollup-win32-x64-msvc" "4.40.0"
fsevents "~2.3.2"
rrweb-cssom@^0.6.0:
@@ -34016,6 +34650,11 @@ rrweb-cssom@^0.8.0:
resolved "https://registry.yarnpkg.com/rrweb-cssom/-/rrweb-cssom-0.8.0.tgz#3021d1b4352fbf3b614aaeed0bc0d5739abe0bc2"
integrity sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==
+rslog@^1.1.0:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/rslog/-/rslog-1.2.3.tgz#9114d93056312fbe35c11b3fea3f2774a7debe56"
+ integrity sha512-antALPJaKBRPBU1X2q9t085K4htWDOOv/K1qhTUk7h0l1ePU/KbDqKJn19eKP0dk7PqMioeA0+fu3gyPXCsXxQ==
+
rsvp@^4.8.4:
version "4.8.5"
resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734"
@@ -34066,9 +34705,9 @@ rw@1:
integrity sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==
rxjs@*, rxjs@6.6.2, rxjs@7.8.1, rxjs@^6.5.2, rxjs@^6.6.0, rxjs@^7.4.0, rxjs@^7.5.1, rxjs@^7.5.5, rxjs@^7.8.0, rxjs@^7.8.1:
- version "7.8.2"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.2.tgz#955bc473ed8af11a002a2be52071bf475638607b"
- integrity sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==
+ version "7.8.1"
+ resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543"
+ integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==
dependencies:
tslib "^2.1.0"
@@ -34139,110 +34778,110 @@ sanitize-filename@^1.6.3:
dependencies:
truncate-utf8-bytes "^1.0.0"
-sass-embedded-android-arm64@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-android-arm64/-/sass-embedded-android-arm64-1.85.1.tgz#1ca9c5e06ea1a8ecf74ff7fbea671706cfe50320"
- integrity sha512-27oRheqNA3SJM2hAxpVbs7mCKUwKPWmEEhyiNFpBINb5ELVLg+Ck5RsGg+SJmo130ul5YX0vinmVB5uPWc8X5w==
-
-sass-embedded-android-arm@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-android-arm/-/sass-embedded-android-arm-1.85.1.tgz#f3bcd59fb05c2931aea1269496a0988f80b936af"
- integrity sha512-GkcgUGMZtEF9gheuE1dxCU0ZSAifuaFXi/aX7ZXvjtdwmTl9Zc/OHR9oiUJkc8IW9UI7H8TuwlTAA8+SwgwIeQ==
-
-sass-embedded-android-ia32@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-android-ia32/-/sass-embedded-android-ia32-1.85.1.tgz#0b48cf1b0a157c066d8d6c8f4c7cf5d36b6b229b"
- integrity sha512-f3x16NyRgtXFksIaO/xXKrUhttUBv8V0XsAR2Dhdb/yz4yrDrhzw9Wh8fmw7PlQqECcQvFaoDr3XIIM6lKzasw==
-
-sass-embedded-android-riscv64@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-android-riscv64/-/sass-embedded-android-riscv64-1.85.1.tgz#b2024aaeb75454011bd2a3ae8ee4cac273b5e711"
- integrity sha512-IP6OijpJ8Mqo7XqCe0LsuZVbAxEFVboa0kXqqR5K55LebEplsTIA2GnmRyMay3Yr/2FVGsZbCb6Wlgkw23eCiA==
-
-sass-embedded-android-x64@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-android-x64/-/sass-embedded-android-x64-1.85.1.tgz#c5391830cbb3c378e5177bc0e03e94a782cd1cc1"
- integrity sha512-Mh7CA53wR3ADvXAYipFc/R3vV4PVOzoKwWzPxmq+7i8UZrtsVjKONxGtqWe9JG1mna0C9CRZAx0sv/BzbOJxWg==
-
-sass-embedded-darwin-arm64@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.85.1.tgz#79acbb6867d016896f843971bdfa0ac76e101df8"
- integrity sha512-msWxzhvcP9hqGVegxVePVEfv9mVNTlUgGr6k7O7Ihji702mbtrH/lKwF4aRkkt4g1j7tv10+JtQXmTNi/pi9kA==
-
-sass-embedded-darwin-x64@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-darwin-x64/-/sass-embedded-darwin-x64-1.85.1.tgz#147ecf49bf2d182dbde6cef337a58a05b7a93ab1"
- integrity sha512-J4UFHUiyI9Z+mwYMwz11Ky9TYr3hY1fCxeQddjNGL/+ovldtb0yAIHvoVM0BGprQDm5JqhtUk8KyJ3RMJqpaAA==
-
-sass-embedded-linux-arm64@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-linux-arm64/-/sass-embedded-linux-arm64-1.85.1.tgz#5c7b5c2749532996630a5512d0e1bf6d8472acd3"
- integrity sha512-jGadetB03BMFG2rq3OXub/uvC/lGpbQOiLGEz3NLb2nRZWyauRhzDtvZqkr6BEhxgIWtMtz2020yD8ZJSw/r2w==
-
-sass-embedded-linux-arm@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-linux-arm/-/sass-embedded-linux-arm-1.85.1.tgz#899cba94b73eb119f64346889e466de31b6f5d3c"
- integrity sha512-X0fDh95nNSw1wfRlnkE4oscoEA5Au4nnk785s9jghPFkTBg+A+5uB6trCjf0fM22+Iw6kiP4YYmDdw3BqxAKLQ==
-
-sass-embedded-linux-ia32@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-linux-ia32/-/sass-embedded-linux-ia32-1.85.1.tgz#f1ba53f034389635afe9c1059bc36a77936421b8"
- integrity sha512-7HlYY90d9mitDtNi5s+S+5wYZrTVbkBH2/kf7ixrzh2BFfT0YM81UHLJRnGX93y9aOMBL6DSZAIfkt1RsV9bkQ==
-
-sass-embedded-linux-musl-arm64@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-linux-musl-arm64/-/sass-embedded-linux-musl-arm64-1.85.1.tgz#b14ce2615c7ab4626e88cba2656f91a3a748e1ce"
- integrity sha512-FLkIT0p18XOkR6wryJ13LqGBDsrYev2dRk9dtiU18NCpNXruKsdBQ1ZnWHVKB3h1dA9lFyEEisC0sooKdNfeOQ==
-
-sass-embedded-linux-musl-arm@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-linux-musl-arm/-/sass-embedded-linux-musl-arm-1.85.1.tgz#428e5e299a9ff4dfd20b57861d2440428b5fbdf6"
- integrity sha512-5vcdEqE8QZnu6i6shZo7x2N36V7YUoFotWj2rGekII5ty7Nkaj+VtZhUEOp9tAzEOlaFuDp5CyO1kUCvweT64A==
-
-sass-embedded-linux-musl-ia32@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-linux-musl-ia32/-/sass-embedded-linux-musl-ia32-1.85.1.tgz#070609afd99cd0f9eae72186c9f4a2d0cdf6944d"
- integrity sha512-N1093T84zQJor1yyIAdYScB5eAuQarGK1tKgZ4uTnxVlgA7Xi1lXV8Eh7ox9sDqKCaWkVQ3MjqU26vYRBeRWyw==
-
-sass-embedded-linux-musl-riscv64@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-linux-musl-riscv64/-/sass-embedded-linux-musl-riscv64-1.85.1.tgz#0f4264be40277d7cc18149c9e0f03af09562e6f7"
- integrity sha512-WRsZS/7qlfYXsa93FBpSruieuURIu7ySfFhzYfF1IbKrNAGwmbduutkHZh2ddm5/vQMvQ0Rdosgv+CslaQHMcw==
-
-sass-embedded-linux-musl-x64@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-linux-musl-x64/-/sass-embedded-linux-musl-x64-1.85.1.tgz#b54b5e1f646d1f0c09d9df7e0e6d4960d6ed7fa1"
- integrity sha512-+OlLIilA5TnP0YEqTQ8yZtkW+bJIQYvzoGoNLUEskeyeGuOiIyn2CwL6G4JQB4xZQFaxPHb7JD3EueFkQbH0Pw==
-
-sass-embedded-linux-riscv64@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-linux-riscv64/-/sass-embedded-linux-riscv64-1.85.1.tgz#2718773307f94feb815e4e2fbb5aa73226a8d375"
- integrity sha512-mKKlOwMGLN7yP1p0gB5yG/HX4fYLnpWaqstNuOOXH+fOzTaNg0+1hALg0H0CDIqypPO74M5MS9T6FAJZGdT6dQ==
-
-sass-embedded-linux-x64@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-linux-x64/-/sass-embedded-linux-x64-1.85.1.tgz#0664cc886b87818ac9d29bf4e9f299fe6c63f524"
- integrity sha512-uKRTv0z8NgtHV7xSren78+yoWB79sNi7TMqI7Bxd8fcRNIgHQSA8QBdF8led2ETC004hr8h71BrY60RPO+SSvA==
-
-sass-embedded-win32-arm64@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-win32-arm64/-/sass-embedded-win32-arm64-1.85.1.tgz#d07b755f8408d7dde1b8308d3a57fbfcda9d909c"
- integrity sha512-/GMiZXBOc6AEMBC3g25Rp+x8fq9Z6Ql7037l5rajBPhZ+DdFwtdHY0Ou3oIU6XuWUwD06U3ii4XufXVFhsP6PA==
-
-sass-embedded-win32-ia32@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-win32-ia32/-/sass-embedded-win32-ia32-1.85.1.tgz#5e5f16e1a30f8df31148aaf65a772298d7037d70"
- integrity sha512-L+4BWkKKBGFOKVQ2PQ5HwFfkM5FvTf1Xx2VSRvEWt9HxPXp6SPDho6zC8fqNQ3hSjoaoASEIJcSvgfdQYO0gdg==
-
-sass-embedded-win32-x64@1.85.1:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded-win32-x64/-/sass-embedded-win32-x64-1.85.1.tgz#758fb96c16e77265a4b7f2474a43962d71ef5ffd"
- integrity sha512-/FO0AGKWxVfCk4GKsC0yXWBpUZdySe3YAAbQQL0lL6xUd1OiUY8Kow6g4Kc1TB/+z0iuQKKTqI/acJMEYl4iTQ==
+sass-embedded-android-arm64@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-android-arm64/-/sass-embedded-android-arm64-1.87.0.tgz#5148386f6a09532d1c648967ebdb13cebb16a7d7"
+ integrity sha512-uqeZoBuXm3W2KhxolScAAfWOLHL21e50g7AxlLmG0he7WZsWw6e9kSnmq301iLIFp4kvmXYXbXbNKAeu9ItRYA==
+
+sass-embedded-android-arm@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-android-arm/-/sass-embedded-android-arm-1.87.0.tgz#1ac3cfbd5d98ff5e96a1727e686f2c2041766c9e"
+ integrity sha512-Z20u/Y1kFDpMbgiloR5YPLxNuMVeKQRC8e/n68oAAxf3u7rDSmNn2msi7USqgT1f2zdBBNawn/ifbFEla6JiHw==
+
+sass-embedded-android-ia32@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-android-ia32/-/sass-embedded-android-ia32-1.87.0.tgz#9e774b01d3f9e011b276a313484edeac84981659"
+ integrity sha512-hSWTqo2Igdig528cUb1W1+emw9d1J4+nqOoR4tERS04zcwRRFNDiuBT0o5meV7nkEwE982F+h57YdcRXj8gTtg==
+
+sass-embedded-android-riscv64@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-android-riscv64/-/sass-embedded-android-riscv64-1.87.0.tgz#89c84b9b438866687c0294d2db293708f6d0d057"
+ integrity sha512-kBAPSjiTBLy5ua/0LRNAJwOAARhzFU7gP35fYORJcdBuz1lkIVPVnid1lh9qQ6Ce9MOJcr7VKFtGnTuqVeig5A==
+
+sass-embedded-android-x64@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-android-x64/-/sass-embedded-android-x64-1.87.0.tgz#f49e7a212e2bae2a040b6cc77ee755c4107c0f5c"
+ integrity sha512-ZHMrNdtdMSpJUYco2MesnlPwDTZftD3pqkkOMI2pbqarPoFUKJtP5k80nwCM0sJGtqfNE+O16w9yPght0CMiJg==
+
+sass-embedded-darwin-arm64@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.87.0.tgz#fb9e2176d63d2ac8e2479ff02961b7d78815bdd7"
+ integrity sha512-7TK1JWJdCIRSdZv5CJv/HpDz/wIfwUy2FoPz9sVOEj1pDTH0N+VfJd5VutCddIdoQN9jr0ap8vwkc65FbAxV2A==
+
+sass-embedded-darwin-x64@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-darwin-x64/-/sass-embedded-darwin-x64-1.87.0.tgz#e699f15556a39cbc3c075ed5153cd9be514f1b81"
+ integrity sha512-2JiQzt7FmgUC4MYT2QvbeH/Bi3e76WEhaYoc5P3WyTW8unsHksyTdMuTuYe0Qf9usIyt6bmm5no/4BBw7c8Cig==
+
+sass-embedded-linux-arm64@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-linux-arm64/-/sass-embedded-linux-arm64-1.87.0.tgz#043275a8541bea58e5bece962e624ae1bdd5f4f8"
+ integrity sha512-5z+mwJCbGZcg+q+MwdEVSh0ogFK7OSAe175Gsozzr/Izw34Q+RGUw9O82jsV2c4YNuTAQvzEHgIO5cvNvt3Quw==
+
+sass-embedded-linux-arm@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-linux-arm/-/sass-embedded-linux-arm-1.87.0.tgz#a575afea07bd34ac14a410a9d666f79653db9b59"
+ integrity sha512-z5P6INMsGXiUcq1sRRbksyQUhalFFYjTEexuxfSYdK3U2YQMADHubQh8pGzkWvFRPOpnh83RiGuwvpaARYHnsw==
+
+sass-embedded-linux-ia32@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-linux-ia32/-/sass-embedded-linux-ia32-1.87.0.tgz#a614c857987af8b309d225e461b4601dfb7f0d44"
+ integrity sha512-Xzcp+YPp0iakGL148Jl57CO+MxLuj2jsry3M+rc1cSnDlvkjNVs6TMxaL70GFeV5HdU2V60voYcgE7adDUtJjw==
+
+sass-embedded-linux-musl-arm64@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-linux-musl-arm64/-/sass-embedded-linux-musl-arm64-1.87.0.tgz#1006177fb4746cd1c9f65005a540ffd74b66a6e5"
+ integrity sha512-HWE5eTRCoKzFZWsxOjDMTF5m4DDTQ0n7NJxSYiUXPBDydr9viPXbGOMYG7WVJLjiF7upr7DYo/mfp/SNTMlZyg==
+
+sass-embedded-linux-musl-arm@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-linux-musl-arm/-/sass-embedded-linux-musl-arm-1.87.0.tgz#7189f497fa11eada546285a18d0aa79429ced9ce"
+ integrity sha512-4PyqOWhRzyu06RRmpCCBOJdF4BOv7s446wrV6yODtEyyfSIDx3MJabo3KT0oJ1lTWSI/aU3R89bKx0JFXcIHHw==
+
+sass-embedded-linux-musl-ia32@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-linux-musl-ia32/-/sass-embedded-linux-musl-ia32-1.87.0.tgz#36cf897cb46e755e3e7bcff70296d7276a36da9b"
+ integrity sha512-aQaPvlRn3kh93PLQvl6BcFKu8Ji92+42blFEkg6nMVvmugD5ZwH2TGFrX25ibx4CYxRpMS4ssF7a0i7vy5HB1Q==
+
+sass-embedded-linux-musl-riscv64@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-linux-musl-riscv64/-/sass-embedded-linux-musl-riscv64-1.87.0.tgz#1a361727b167c165f39ae03b97e58a782589fb22"
+ integrity sha512-o5DxcqiFzET3KRWo+futHr/lhAMBP3tJGGx8YIgpHQYfvDMbsvE0hiFC+nZ/GF9dbcGd+ceIQwfvE5mcc7Gsjw==
+
+sass-embedded-linux-musl-x64@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-linux-musl-x64/-/sass-embedded-linux-musl-x64-1.87.0.tgz#3fe35fa1d3d25d408751409e8fc5b559af8db376"
+ integrity sha512-dKxWsu9Wu/CyfzQmHdeiGqrRSzJ85VUjbSx+aP1/7ttmps3SSg+YW95PuqnCOa7GSuSreC3dKKpXHTywUxMLQA==
+
+sass-embedded-linux-riscv64@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-linux-riscv64/-/sass-embedded-linux-riscv64-1.87.0.tgz#12d09346524a60383489f1063a281b8350f117dc"
+ integrity sha512-Sy3ESZ4FwBiijvmTA9n+0p0w3MNCue1AgINVPzpAY27EFi0h49eqQm9SWfOkFqmkFS2zFRYowdQOr5Bbr2gOXA==
+
+sass-embedded-linux-x64@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-linux-x64/-/sass-embedded-linux-x64-1.87.0.tgz#81319b9f38e4a303de5c440d9653eade07f5c83d"
+ integrity sha512-+UfjakOcHHKTnEqB3EZ+KqzezQOe1emvy4Rs+eQhLyfekpYuNze/qlRvYxfKTmrtvDiUrIto8MXsyZfMLzkuMA==
+
+sass-embedded-win32-arm64@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-win32-arm64/-/sass-embedded-win32-arm64-1.87.0.tgz#8134457b386900f02719967bf020a70598d096f3"
+ integrity sha512-m1DS6FYUE0/fv+vt38uQB/kxR4UjnyD+2zcSc298pFmA0aYh/XZIPWw7RxG1HL3KLE1ZrGyu3254MPoxRhs3ig==
+
+sass-embedded-win32-ia32@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-win32-ia32/-/sass-embedded-win32-ia32-1.87.0.tgz#7e8c8dc7e06a21505c666a64acb44b3fc4859fcd"
+ integrity sha512-JztXLo59GMe2E6g+kCsyiERYhtZgkcyDYx6CrXoSTE5WaE+RbxRiCCCv8/1+hf406f08pUxJ8G0Ody7M5urtBA==
+
+sass-embedded-win32-x64@1.87.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded-win32-x64/-/sass-embedded-win32-x64-1.87.0.tgz#fad04ede8a976fb03e7f30853475d0af080226a9"
+ integrity sha512-4nQErpauvhgSo+7ClumGdjdf9sGx+U9yBgvhI0+zUw+D5YvraVgvA0Lk8Wuwntx2PqnvKUk8YDr/vxHJostv4Q==
sass-embedded@^1.83.4:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass-embedded/-/sass-embedded-1.85.1.tgz#868cdf067a3b515eb72cb0039e61e72c4c56c856"
- integrity sha512-0i+3h2Df/c71afluxC1SXqyyMmJlnKWfu9ZGdzwuKRM1OftEa2XM2myt5tR36CF3PanYrMjFKtRIj8PfSf838w==
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass-embedded/-/sass-embedded-1.87.0.tgz#0e784c398bc67402b17c5ff78981a56586d00ada"
+ integrity sha512-1IA3iTJNh4BkkA/nidKiVwbmkxr9o6LsPegycHMX/JYs255zpocN5GdLF1+onohQCJxbs5ldr8osKV7qNaNBjg==
dependencies:
"@bufbuild/protobuf" "^2.0.0"
buffer-builder "^0.2.0"
@@ -34253,31 +34892,31 @@ sass-embedded@^1.83.4:
sync-child-process "^1.0.2"
varint "^6.0.0"
optionalDependencies:
- sass-embedded-android-arm "1.85.1"
- sass-embedded-android-arm64 "1.85.1"
- sass-embedded-android-ia32 "1.85.1"
- sass-embedded-android-riscv64 "1.85.1"
- sass-embedded-android-x64 "1.85.1"
- sass-embedded-darwin-arm64 "1.85.1"
- sass-embedded-darwin-x64 "1.85.1"
- sass-embedded-linux-arm "1.85.1"
- sass-embedded-linux-arm64 "1.85.1"
- sass-embedded-linux-ia32 "1.85.1"
- sass-embedded-linux-musl-arm "1.85.1"
- sass-embedded-linux-musl-arm64 "1.85.1"
- sass-embedded-linux-musl-ia32 "1.85.1"
- sass-embedded-linux-musl-riscv64 "1.85.1"
- sass-embedded-linux-musl-x64 "1.85.1"
- sass-embedded-linux-riscv64 "1.85.1"
- sass-embedded-linux-x64 "1.85.1"
- sass-embedded-win32-arm64 "1.85.1"
- sass-embedded-win32-ia32 "1.85.1"
- sass-embedded-win32-x64 "1.85.1"
-
-sass-loader@16.0.0:
- version "16.0.0"
- resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-16.0.0.tgz#9b8d497e24bc176dc368df2b5b9e90b4ad24bf4e"
- integrity sha512-n13Z+3rU9A177dk4888czcVFiC8CL9dii4qpXWUg3YIIgZEvi9TCFKjOQcbK0kJM7DJu9VucrZFddvNfYCPwtw==
+ sass-embedded-android-arm "1.87.0"
+ sass-embedded-android-arm64 "1.87.0"
+ sass-embedded-android-ia32 "1.87.0"
+ sass-embedded-android-riscv64 "1.87.0"
+ sass-embedded-android-x64 "1.87.0"
+ sass-embedded-darwin-arm64 "1.87.0"
+ sass-embedded-darwin-x64 "1.87.0"
+ sass-embedded-linux-arm "1.87.0"
+ sass-embedded-linux-arm64 "1.87.0"
+ sass-embedded-linux-ia32 "1.87.0"
+ sass-embedded-linux-musl-arm "1.87.0"
+ sass-embedded-linux-musl-arm64 "1.87.0"
+ sass-embedded-linux-musl-ia32 "1.87.0"
+ sass-embedded-linux-musl-riscv64 "1.87.0"
+ sass-embedded-linux-musl-x64 "1.87.0"
+ sass-embedded-linux-riscv64 "1.87.0"
+ sass-embedded-linux-x64 "1.87.0"
+ sass-embedded-win32-arm64 "1.87.0"
+ sass-embedded-win32-ia32 "1.87.0"
+ sass-embedded-win32-x64 "1.87.0"
+
+sass-loader@16.0.5, sass-loader@^16.0.4:
+ version "16.0.5"
+ resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-16.0.5.tgz#257bc90119ade066851cafe7f2c3f3504c7cda98"
+ integrity sha512-oL+CMBXrj6BZ/zOq4os+UECPL+bWqt6OAC6DWS8Ln8GZRcMDjlJ4JC3FBDuHJdYaFWIdKNIBYmtZtK2MaMkNIw==
dependencies:
neo-async "^2.6.2"
@@ -34289,26 +34928,42 @@ sass-loader@^12.2.0:
klona "^2.0.4"
neo-async "^2.6.2"
-sass-loader@^16.0.4:
- version "16.0.5"
- resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-16.0.5.tgz#257bc90119ade066851cafe7f2c3f3504c7cda98"
- integrity sha512-oL+CMBXrj6BZ/zOq4os+UECPL+bWqt6OAC6DWS8Ln8GZRcMDjlJ4JC3FBDuHJdYaFWIdKNIBYmtZtK2MaMkNIw==
+sass@1.85.0:
+ version "1.85.0"
+ resolved "https://registry.yarnpkg.com/sass/-/sass-1.85.0.tgz#0127ef697d83144496401553f0a0e87be83df45d"
+ integrity sha512-3ToiC1xZ1Y8aU7+CkgCI/tqyuPXEmYGJXO7H4uqp0xkLXUqp88rQQ4j1HmP37xSJLbCJPaIiv+cT1y+grssrww==
dependencies:
- neo-async "^2.6.2"
+ chokidar "^4.0.0"
+ immutable "^5.0.2"
+ source-map-js ">=0.6.2 <2.0.0"
+ optionalDependencies:
+ "@parcel/watcher" "^2.4.1"
-sass@1.77.6:
- version "1.77.6"
- resolved "https://registry.yarnpkg.com/sass/-/sass-1.77.6.tgz#898845c1348078c2e6d1b64f9ee06b3f8bd489e4"
- integrity sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==
+sass@^1.42.1:
+ version "1.80.4"
+ resolved "https://registry.yarnpkg.com/sass/-/sass-1.80.4.tgz#bc0418fd796cad2f1a1309d8b4d7fe44b7027de0"
+ integrity sha512-rhMQ2tSF5CsuuspvC94nPM9rToiAFw2h3JTrLlgmNw1MH79v8Cr3DH6KF6o6r+8oofY3iYVPUf66KzC8yuVN1w==
dependencies:
- chokidar ">=3.0.0 <4.0.0"
+ "@parcel/watcher" "^2.4.1"
+ chokidar "^4.0.0"
immutable "^4.0.0"
source-map-js ">=0.6.2 <2.0.0"
-sass@^1.42.1, sass@^1.69.5, sass@^1.85.0:
- version "1.85.1"
- resolved "https://registry.yarnpkg.com/sass/-/sass-1.85.1.tgz#18ab0bb48110ae99163778f06445b406148ca0d5"
- integrity sha512-Uk8WpxM5v+0cMR0XjX9KfRIacmSG86RH4DCCZjLU2rFh5tyutt9siAXJ7G+YfxQ99Q6wrRMbMlVl6KqUms71ag==
+sass@^1.81.0:
+ version "1.84.0"
+ resolved "https://registry.yarnpkg.com/sass/-/sass-1.84.0.tgz#da9154cbccb2d2eac7a9486091b6d9ba93ef5bad"
+ integrity sha512-XDAbhEPJRxi7H0SxrnOpiXFQoUJHwkR2u3Zc4el+fK/Tt5Hpzw5kkQ59qVDfvdaUq6gCrEZIbySFBM2T9DNKHg==
+ dependencies:
+ chokidar "^4.0.0"
+ immutable "^5.0.2"
+ source-map-js ">=0.6.2 <2.0.0"
+ optionalDependencies:
+ "@parcel/watcher" "^2.4.1"
+
+sass@^1.85.0:
+ version "1.87.0"
+ resolved "https://registry.yarnpkg.com/sass/-/sass-1.87.0.tgz#8cceb36fa63fb48a8d5d7f2f4c13b49c524b723e"
+ integrity sha512-d0NoFH4v6SjEK7BoX810Jsrhj7IQSYHAHLi/iSpgqKc7LaIDshFRlSg5LOymf9FqQhxEHs2W5ZQXlvy0KD45Uw==
dependencies:
chokidar "^4.0.0"
immutable "^5.0.2"
@@ -34496,20 +35151,32 @@ semver-regex@^4.0.5:
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8"
integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
+semver@7.3.4:
+ version "7.3.4"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97"
+ integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==
+ dependencies:
+ lru-cache "^6.0.0"
+
semver@7.6.3:
version "7.6.3"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143"
integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==
+semver@7.7.1, semver@^7.2.1:
+ version "7.7.1"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.1.tgz#abd5098d82b18c6c81f6074ff2647fd3e7220c9f"
+ integrity sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==
+
semver@^6.0.0, semver@^6.2.0, semver@^6.3.0, semver@^6.3.1:
version "6.3.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
-semver@^7.0.0, semver@^7.1.1, semver@^7.1.2, semver@^7.1.3, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.2, semver@^7.5.3, semver@^7.5.4, semver@^7.6.0, semver@^7.6.3, semver@^7.7.1:
- version "7.7.1"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.1.tgz#abd5098d82b18c6c81f6074ff2647fd3e7220c9f"
- integrity sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==
+semver@^7.0.0, semver@^7.1.1, semver@^7.1.2, semver@^7.1.3, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.2, semver@^7.5.3, semver@^7.5.4, semver@^7.6.0, semver@^7.6.3:
+ version "7.7.0"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.0.tgz#9c6fe61d0c6f9fa9e26575162ee5a9180361b09c"
+ integrity sha512-DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==
send@0.19.0:
version "0.19.0"
@@ -34559,9 +35226,9 @@ sequelize-pool@^7.1.0:
integrity sha512-G9c0qlIWQSK29pR/5U2JF5dDQeqqHRragoyahj/Nx4KOOQ3CPPfzxnfqFPCSB7x5UgjOgnZ61nSxz+fjDpRlJg==
sequelize@^6.29.0:
- version "6.37.6"
- resolved "https://registry.yarnpkg.com/sequelize/-/sequelize-6.37.6.tgz#ceb2cc4b193dd411f6846c1eb54aa61e9c6acf5e"
- integrity sha512-4Slqjqpktofs7AVqWviFOInzP9w8ZRQDhF+DnRtm4WKIdIATpyzGgedyseP3xbgpBxapvfQcJv6CeIdZe4ZL2A==
+ version "6.37.5"
+ resolved "https://registry.yarnpkg.com/sequelize/-/sequelize-6.37.5.tgz#2711ab97d0e0fe49c652368946a7312eb0f11cd7"
+ integrity sha512-10WA4poUb3XWnUROThqL2Apq9C2NhyV1xHPMZuybNMCucDsbbFuKg51jhmyvvAUyUqCiimwTZamc3AHhMoBr2Q==
dependencies:
"@types/debug" "^4.1.8"
"@types/validator" "^13.7.17"
@@ -34888,16 +35555,16 @@ sigstore@^2.2.0:
"@sigstore/verify" "^1.2.1"
sigstore@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-3.1.0.tgz#08dc6c0c425263e9fdab85ffdb6477550e2c511d"
- integrity sha512-ZpzWAFHIFqyFE56dXqgX/DkDRZdz+rRcjoIk/RQU4IX0wiCv1l8S7ZrXDHcCc+uaf+6o7w3h2l3g6GYG5TKN9Q==
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-3.0.0.tgz#d6eadcc6590185a7f1c16184078ce8a9ef6db937"
+ integrity sha512-PHMifhh3EN4loMcHCz6l3v/luzgT3za+9f8subGgeMNjbJjzH4Ij/YoX3Gvu+kaouJRIlVdTHHCREADYf+ZteA==
dependencies:
- "@sigstore/bundle" "^3.1.0"
+ "@sigstore/bundle" "^3.0.0"
"@sigstore/core" "^2.0.0"
- "@sigstore/protobuf-specs" "^0.4.0"
- "@sigstore/sign" "^3.1.0"
- "@sigstore/tuf" "^3.1.0"
- "@sigstore/verify" "^2.1.0"
+ "@sigstore/protobuf-specs" "^0.3.2"
+ "@sigstore/sign" "^3.0.0"
+ "@sigstore/tuf" "^3.0.0"
+ "@sigstore/verify" "^2.0.0"
simple-concat@^1.0.0:
version "1.0.1"
@@ -35215,9 +35882,9 @@ socks-proxy-agent@^8.0.3:
socks "^2.8.3"
socks@^2.6.2, socks@^2.7.1, socks@^2.8.3:
- version "2.8.4"
- resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.4.tgz#07109755cdd4da03269bda4725baa061ab56d5cc"
- integrity sha512-D3YaD0aRxR3mEcqnidIs7ReYJFVzWdd6fXJYUM8ixcQcJRGTka/b3saV0KflYhyVJXKhb947GndU35SxYNResQ==
+ version "2.8.3"
+ resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.3.tgz#1ebd0f09c52ba95a09750afe3f3f9f724a800cb5"
+ integrity sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==
dependencies:
ip-address "^9.0.5"
smart-buffer "^4.2.0"
@@ -35282,7 +35949,7 @@ sound-play@1.1.0:
resolved "https://registry.yarnpkg.com/sound-play/-/sound-play-1.1.0.tgz#58ffa31d1bf51822d49d91ff7865591fd9376381"
integrity sha512-Bd/L0AoCwITFeOnpNLMsfPXrV5GG5NhrC/T6odveahYbhPZkdTnrFXRia9FCC5WBWdUTw1d+yvLBvi4wnD1xOA==
-"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.1, source-map-js@^1.0.2, source-map-js@^1.2.0, source-map-js@^1.2.1:
+"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.1, source-map-js@^1.0.2, source-map-js@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46"
integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==
@@ -35488,11 +36155,6 @@ sprintf-js@~1.0.2:
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==
-sql-highlight@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/sql-highlight/-/sql-highlight-6.0.0.tgz#e62977ed5c7a1644634a1554b8588ee42611a4be"
- integrity sha512-+fLpbAbWkQ+d0JEchJT/NrRRXbYRNbG15gFpANx73EwxQB1PRjj+k/OI0GTU0J63g8ikGkJECQp9z8XEJZvPRw==
-
sql.js@^1.5.0:
version "1.12.0"
resolved "https://registry.yarnpkg.com/sql.js/-/sql.js-1.12.0.tgz#3a35cdb5ee91ef2f337ab4b21f141db507ac95b2"
@@ -36046,9 +36708,9 @@ strip-outer@^1.0.1:
escape-string-regexp "^1.0.2"
strnum@^1.0.5:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.1.2.tgz#57bca4fbaa6f271081715dbc9ed7cee5493e28e4"
- integrity sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db"
+ integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==
strong-log-transformer@2.1.0:
version "2.1.0"
@@ -36230,7 +36892,7 @@ supports-color@^7.0.0, supports-color@^7.1.0:
dependencies:
has-flag "^4.0.0"
-supports-color@^8, supports-color@^8.0.0, supports-color@^8.1.0, supports-color@^8.1.1:
+supports-color@^8, supports-color@^8.0.0, supports-color@^8.1.1:
version "8.1.1"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
@@ -36242,15 +36904,15 @@ supports-color@^9.4.0:
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-9.4.0.tgz#17bfcf686288f531db3dea3215510621ccb55954"
integrity sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==
-supports-hyperlinks@^2.1.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624"
- integrity sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==
+supports-hyperlinks@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-3.1.0.tgz#b56150ff0173baacc15f21956450b61f2b18d3ac"
+ integrity sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==
dependencies:
has-flag "^4.0.0"
supports-color "^7.0.0"
-supports-hyperlinks@^3.0.0, supports-hyperlinks@^3.1.0:
+supports-hyperlinks@^3.1.0:
version "3.2.0"
resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-3.2.0.tgz#b8e485b179681dea496a1e7abdf8985bd3145461"
integrity sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==
@@ -36294,9 +36956,9 @@ swagger-ui-dist@5.18.2:
"@scarf/scarf" "=1.4.0"
swagger-ui-dist@>=5.0.0:
- version "5.20.0"
- resolved "https://registry.yarnpkg.com/swagger-ui-dist/-/swagger-ui-dist-5.20.0.tgz#b14d5e2bd0ffab2179de221288ee366a5ec5fcf1"
- integrity sha512-V5pozVTZxivdoQq/SQWxj3A4cOu5opk9MEbcZANX3Pj8X8xCrD1QCtBT7744Pz9msOvt0nnmy9JvM/9PGonCdg==
+ version "5.18.3"
+ resolved "https://registry.yarnpkg.com/swagger-ui-dist/-/swagger-ui-dist-5.18.3.tgz#3ea990ed8b232f4c1e635e799d3da8f42c911486"
+ integrity sha512-G33HFW0iFNStfY2x6QXO2JYVMrFruc8AZRX0U/L71aA7WeWfX2E5Nm8E/tsipSZJeIZZbSjUDeynLK/wcuNWIw==
dependencies:
"@scarf/scarf" "=1.4.0"
@@ -36499,7 +37161,18 @@ term-size@^2.1.0:
resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54"
integrity sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==
-terser-webpack-plugin@^5.3.10, terser-webpack-plugin@^5.3.11, terser-webpack-plugin@^5.3.3:
+terser-webpack-plugin@^5.3.10, terser-webpack-plugin@^5.3.3:
+ version "5.3.11"
+ resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.11.tgz#93c21f44ca86634257cac176f884f942b7ba3832"
+ integrity sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==
+ dependencies:
+ "@jridgewell/trace-mapping" "^0.3.25"
+ jest-worker "^27.4.5"
+ schema-utils "^4.3.0"
+ serialize-javascript "^6.0.2"
+ terser "^5.31.1"
+
+terser-webpack-plugin@^5.3.11:
version "5.3.14"
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz#9031d48e57ab27567f02ace85c7d690db66c3e06"
integrity sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==
@@ -36510,20 +37183,20 @@ terser-webpack-plugin@^5.3.10, terser-webpack-plugin@^5.3.11, terser-webpack-plu
serialize-javascript "^6.0.2"
terser "^5.31.1"
-terser@5.31.6:
- version "5.31.6"
- resolved "https://registry.yarnpkg.com/terser/-/terser-5.31.6.tgz#c63858a0f0703988d0266a82fcbf2d7ba76422b1"
- integrity sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==
+terser@5.39.0, terser@^5.31.1:
+ version "5.39.0"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-5.39.0.tgz#0e82033ed57b3ddf1f96708d123cca717d86ca3a"
+ integrity sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==
dependencies:
"@jridgewell/source-map" "^0.3.3"
acorn "^8.8.2"
commander "^2.20.0"
source-map-support "~0.5.20"
-terser@^5.30.3, terser@^5.31.1:
- version "5.39.0"
- resolved "https://registry.yarnpkg.com/terser/-/terser-5.39.0.tgz#0e82033ed57b3ddf1f96708d123cca717d86ca3a"
- integrity sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==
+terser@^5.30.3:
+ version "5.36.0"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-5.36.0.tgz#8b0dbed459ac40ff7b4c9fd5a3a2029de105180e"
+ integrity sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==
dependencies:
"@jridgewell/source-map" "^0.3.3"
acorn "^8.8.2"
@@ -36703,7 +37376,7 @@ tiny-typed-emitter@^2.1.0:
resolved "https://registry.yarnpkg.com/tiny-typed-emitter/-/tiny-typed-emitter-2.1.0.tgz#b3b027fdd389ff81a152c8e847ee2f5be9fad7b5"
integrity sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA==
-tinycolor2@^1.6.0:
+tinycolor2@^1.0.0, tinycolor2@^1.6.0:
version "1.6.0"
resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.6.0.tgz#f98007460169b0263b97072c5ae92484ce02d09e"
integrity sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==
@@ -36714,13 +37387,29 @@ tinyexec@^0.3.0:
integrity sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==
tinyglobby@^0.2.10, tinyglobby@^0.2.9:
- version "0.2.12"
- resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.12.tgz#ac941a42e0c5773bd0b5d08f32de82e74a1a61b5"
- integrity sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==
+ version "0.2.10"
+ resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.10.tgz#e712cf2dc9b95a1f5c5bbd159720e15833977a0f"
+ integrity sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==
+ dependencies:
+ fdir "^6.4.2"
+ picomatch "^4.0.2"
+
+tinyglobby@^0.2.12:
+ version "0.2.13"
+ resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.13.tgz#a0e46515ce6cbcd65331537e57484af5a7b2ff7e"
+ integrity sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==
dependencies:
- fdir "^6.4.3"
+ fdir "^6.4.4"
picomatch "^4.0.2"
+tinygradient@^1.0.0:
+ version "1.1.5"
+ resolved "https://registry.yarnpkg.com/tinygradient/-/tinygradient-1.1.5.tgz#0fb855ceb18d96b21ba780b51a8012033b2530ef"
+ integrity sha512-8nIfc2vgQ4TeLnk2lFj4tRLvvJwEfQuabdsmvDdQPT0xlk9TaNtpGd6nNRxXoK6vQhN6RSzj+Cnp5tTQmpxmbw==
+ dependencies:
+ "@types/tinycolor2" "^1.4.0"
+ tinycolor2 "^1.0.0"
+
title-case@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/title-case/-/title-case-2.1.1.tgz#3e127216da58d2bc5becf137ab91dae3a7cd8faa"
@@ -36734,27 +37423,22 @@ titleize@2:
resolved "https://registry.yarnpkg.com/titleize/-/titleize-2.1.0.tgz#5530de07c22147a0488887172b5bd94f5b30a48f"
integrity sha512-m+apkYlfiQTKLW+sI4vqUkwMEzfgEUEYSqljx1voUE3Wz/z1ZsxyzSxvH2X8uKVrOp7QkByWt0rA6+gvhCKy6g==
-tlds@1.255.0:
+tlds@1.255.0, tlds@^1.230.0:
version "1.255.0"
resolved "https://registry.yarnpkg.com/tlds/-/tlds-1.255.0.tgz#53c2571766c10da95928c716c48dfcf141341e3f"
integrity sha512-tcwMRIioTcF/FcxLev8MJWxCp+GUALRhFEqbDoZrnowmKSGqPrl5pqS+Sut2m8BgJ6S4FExCSSpGffZ0Tks6Aw==
-tlds@^1.230.0:
- version "1.256.0"
- resolved "https://registry.yarnpkg.com/tlds/-/tlds-1.256.0.tgz#4285b41a7ed4fcc7c5eed8516c3a180e892fad36"
- integrity sha512-ZmyVB9DAw+FFTmLElGYJgdZFsKLYd/I59Bg9NHkCGPwAbVZNRilFWDMAdX8UG+bHuv7kfursd5XGqo/9wi26lA==
-
-tldts-core@^6.1.83:
- version "6.1.83"
- resolved "https://registry.yarnpkg.com/tldts-core/-/tldts-core-6.1.83.tgz#8f31172cb5763cc1128d4e18ee5095aa2f990eb8"
- integrity sha512-I2wb9OJc6rXyh9d4aInhSNWChNI+ra6qDnFEGEwe9OoA68lE4Temw29bOkf1Uvwt8VZS079t1BFZdXVBmmB4dw==
+tldts-core@^6.1.75:
+ version "6.1.75"
+ resolved "https://registry.yarnpkg.com/tldts-core/-/tldts-core-6.1.75.tgz#63c89f72d4dd7376501ba7d608e1cc2b2d1210e2"
+ integrity sha512-AOvV5YYIAFFBfransBzSTyztkc3IMfz5Eq3YluaRiEu55nn43Fzaufx70UqEKYr8BoLCach4q8g/bg6e5+/aFw==
tldts@^6.1.32:
- version "6.1.83"
- resolved "https://registry.yarnpkg.com/tldts/-/tldts-6.1.83.tgz#2ba9aa8db0cbcc2d75291f148f8acf9ac469429a"
- integrity sha512-FHxxNJJ0WNsEBPHyC1oesQb3rRoxpuho/z2g3zIIAhw1WHJeQsUzK1jYK8TI1/iClaa4fS3Z2TCA9mtxXsENSg==
+ version "6.1.75"
+ resolved "https://registry.yarnpkg.com/tldts/-/tldts-6.1.75.tgz#de8b1b7c35217c0c356bb7199e70b5a802532933"
+ integrity sha512-+lFzEXhpl7JXgWYaXcB6DqTYXbUArvrWAE/5ioq/X3CdWLbDjpPP4XTrQBmEJ91y3xbe4Fkw7Lxv4P3GWeJaNg==
dependencies:
- tldts-core "^6.1.83"
+ tldts-core "^6.1.75"
tmp-promise@^3.0.2:
version "3.0.3"
@@ -36910,9 +37594,9 @@ tough-cookie@^4.1.2, tough-cookie@^4.1.3:
url-parse "^1.5.3"
tough-cookie@^5.0.0:
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-5.1.2.tgz#66d774b4a1d9e12dc75089725af3ac75ec31bed7"
- integrity sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-5.1.0.tgz#0667b0f2fbb5901fe6f226c3e0b710a9a4292f87"
+ integrity sha512-rvZUv+7MoBYTiDmFPBrhL7Ujx9Sk+q9wwm22x8c8T5IJaR+Wsyc7TNxbVxo84kZoRJZZMazowFLqpankBEQrGg==
dependencies:
tldts "^6.1.32"
@@ -37016,11 +37700,28 @@ ts-action@11.0.0:
resolved "https://registry.yarnpkg.com/ts-action/-/ts-action-11.0.0.tgz#abb7f510b0d2e0b9534900cc22c45b8f7e795a3c"
integrity sha512-TDxvzZ5UtKsBuw0McRs/L+iASj80m60nV8EXCP680ZdIl+oRHPGnBk85sZJWXLzqQwb6yQ+CcMzPTfBr0dEaAA==
-ts-api-utils@^2.0.1:
+ts-api-utils@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.0.1.tgz#660729385b625b939aaa58054f45c058f33f10cd"
integrity sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==
+ts-api-utils@^2.0.1:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.1.0.tgz#595f7094e46eed364c13fd23e75f9513d29baf91"
+ integrity sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==
+
+ts-checker-rspack-plugin@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/ts-checker-rspack-plugin/-/ts-checker-rspack-plugin-1.1.1.tgz#0cefe8083e9d32980786d45b959e2d596bdee8a6"
+ integrity sha512-BlpPqnfAmV0TcDg58H+1qV8Zb57ilv0x+ajjnxrVQ6BWgC8HzAdc+TycqDOJ4sZZYIV+hywQGozZFGklzbCR6A==
+ dependencies:
+ "@babel/code-frame" "^7.16.7"
+ "@rspack/lite-tapable" "^1.0.0"
+ chokidar "^3.5.3"
+ memfs "^4.14.0"
+ minimatch "^9.0.5"
+ picocolors "^1.1.1"
+
ts-invariant@^0.10.3:
version "0.10.3"
resolved "https://registry.yarnpkg.com/ts-invariant/-/ts-invariant-0.10.3.tgz#3e048ff96e91459ffca01304dbc7f61c1f642f6c"
@@ -37043,9 +37744,9 @@ ts-jest@29.1.1:
yargs-parser "^21.0.1"
ts-jest@^29.0.0:
- version "29.2.6"
- resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.2.6.tgz#df53edf8b72fb89de032cfa310abf37582851d9a"
- integrity sha512-yTNZVZqc8lSixm+QGVFcPe6+yj7+TWZwIesuOWvfcn4B9bz5x4NDzVCQQjOs7Hfouu36aEqfEbo9Qpo+gq8dDg==
+ version "29.2.5"
+ resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.2.5.tgz#591a3c108e1f5ebd013d3152142cb5472b399d63"
+ integrity sha512-KD8zB2aAZrcKIdGk4OwpJggeLcH1FgrICqDSROWqlnJXGCXK4Mn6FcdK2B6670Xr73lHMG1kHw8R87A0ecZ+vA==
dependencies:
bs-logger "^0.2.6"
ejs "^3.1.10"
@@ -37054,7 +37755,7 @@ ts-jest@^29.0.0:
json5 "^2.2.3"
lodash.memoize "^4.1.2"
make-error "^1.3.6"
- semver "^7.7.1"
+ semver "^7.6.3"
yargs-parser "^21.1.1"
ts-loader@^8.0.4:
@@ -37158,12 +37859,7 @@ tslib@2.3.0:
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.0.tgz#803b8cdab3e12ba581a4ca41c8839bbb0dacb09e"
integrity sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==
-tslib@2.6.3:
- version "2.6.3"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.3.tgz#0438f810ad7a9edcde7a241c3d80db693c8cbfe0"
- integrity sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==
-
-tslib@2.8.1, tslib@^2.0.0, tslib@^2.0.1, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.4.1, tslib@^2.5.0, tslib@^2.6.1, tslib@^2.6.2, tslib@^2.6.3, tslib@^2.8.0:
+tslib@2.8.1, tslib@^2.0.0, tslib@^2.0.1, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.4.1, tslib@^2.5.0, tslib@^2.6.2, tslib@^2.6.3, tslib@^2.8.0, tslib@^2.8.1:
version "2.8.1"
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f"
integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==
@@ -37388,9 +38084,9 @@ type-fest@^2.12.2, type-fest@^2.17.0:
integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==
type-fest@^4.6.0, type-fest@^4.7.1:
- version "4.37.0"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-4.37.0.tgz#7cf008bf77b63a33f7ca014fa2a3f09fd69e8937"
- integrity sha512-S/5/0kFftkq27FPNye0XM1e2NsnoD/3FS+pBmbjmmtLT6I+i344KoOf7pvXreaFsDamWeaJX55nczA1m5PsBDg==
+ version "4.33.0"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-4.33.0.tgz#2da0c135b9afa76cf8b18ecfd4f260ecd414a432"
+ integrity sha512-s6zVrxuyKbbAsSAD5ZPTB77q4YIdRctkTbJ2/Dqlinwz+8ooH2gd+YA7VA6Pa93KML9GockVvoxjZ2vHP+mu8g==
type-is@^1.6.16, type-is@^1.6.4, type-is@~1.6.18:
version "1.6.18"
@@ -37497,49 +38193,51 @@ typeface-exo@^0.0.61:
integrity sha512-AH3bMVYnVpg2G+CJbgtogTuJpWGS0zspHJzzVR8cCgTtkbUI0pj8WBB+RFo14CHbF5MmZgYe7TVoWz+j4Yo6Jg==
typeorm@^0.3.20:
- version "0.3.21"
- resolved "https://registry.yarnpkg.com/typeorm/-/typeorm-0.3.21.tgz#8da9e0f079302a263eb05a4376239cef055886fd"
- integrity sha512-lh4rUWl1liZGjyPTWpwcK8RNI5x4ekln+/JJOox1wCd7xbucYDOXWD+1cSzTN3L0wbTGxxOtloM5JlxbOxEufA==
+ version "0.3.20"
+ resolved "https://registry.yarnpkg.com/typeorm/-/typeorm-0.3.20.tgz#4b61d737c6fed4e9f63006f88d58a5e54816b7ab"
+ integrity sha512-sJ0T08dV5eoZroaq9uPKBoNcGslHBR4E4y+EBHs//SiGbblGe7IeduP/IH4ddCcj0qp3PHwDwGnuvqEAnKlq/Q==
dependencies:
"@sqltools/formatter" "^1.2.5"
- ansis "^3.9.0"
app-root-path "^3.1.0"
buffer "^6.0.3"
+ chalk "^4.1.2"
+ cli-highlight "^2.1.11"
dayjs "^1.11.9"
debug "^4.3.4"
dotenv "^16.0.3"
- glob "^10.4.5"
+ glob "^10.3.10"
+ mkdirp "^2.1.3"
+ reflect-metadata "^0.2.1"
sha.js "^2.4.11"
- sql-highlight "^6.0.0"
tslib "^2.5.0"
- uuid "^11.0.5"
+ uuid "^9.0.0"
yargs "^17.6.2"
-typescript@5.5.4:
- version "5.5.4"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.5.4.tgz#d9852d6c82bad2d2eda4fd74a5762a8f5909e9ba"
- integrity sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==
-
typescript@5.7.2:
version "5.7.2"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.7.2.tgz#3169cf8c4c8a828cde53ba9ecb3d2b1d5dd67be6"
integrity sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==
-"typescript@>=3 < 6", typescript@^5.0.4, typescript@^5.3.3:
- version "5.8.2"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.8.2.tgz#8170b3702f74b79db2e5a96207c15e65807999e4"
- integrity sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==
+"typescript@>=3 < 6", typescript@~5.7.2:
+ version "5.7.3"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.7.3.tgz#919b44a7dbb8583a9b856d162be24a54bf80073e"
+ integrity sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==
+
+typescript@^5.0.4, typescript@^5.3.3:
+ version "5.6.3"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.6.3.tgz#5f3449e31c9d94febb17de03cc081dd56d81db5b"
+ integrity sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==
+
+typescript@^5.8.3:
+ version "5.8.3"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.8.3.tgz#92f8a3e5e3cf497356f4178c34cd65a7f5e8440e"
+ integrity sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==
typescript@~5.4.2:
version "5.4.5"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.5.tgz#42ccef2c571fdbd0f6718b1d1f5e6e5ef006f611"
integrity sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==
-typescript@~5.7.2:
- version "5.7.3"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.7.3.tgz#919b44a7dbb8583a9b856d162be24a54bf80073e"
- integrity sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==
-
ua-parser-js@0.7.22:
version "0.7.22"
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.22.tgz#960df60a5f911ea8f1c818f3747b99c6e177eae3"
@@ -37709,11 +38407,6 @@ unicorn-magic@^0.1.0:
resolved "https://registry.yarnpkg.com/unicorn-magic/-/unicorn-magic-0.1.0.tgz#1bb9a51c823aaf9d73a8bfcd3d1a23dde94b0ce4"
integrity sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==
-unicorn-magic@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/unicorn-magic/-/unicorn-magic-0.3.0.tgz#4efd45c85a69e0dd576d25532fbfa22aa5c8a104"
- integrity sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==
-
union-value@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
@@ -37912,9 +38605,9 @@ upath@2.0.1:
integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==
update-browserslist-db@^1.1.1:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz#348377dd245216f9e7060ff50b15a1b740b75420"
- integrity sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz#97e9c96ab0ae7bcac08e9ae5151d26e6bc6b5580"
+ integrity sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==
dependencies:
escalade "^3.2.0"
picocolors "^1.1.1"
@@ -38129,11 +38822,6 @@ uuid@^10.0.0:
resolved "https://registry.yarnpkg.com/uuid/-/uuid-10.0.0.tgz#5a95aa454e6e002725c79055fd42aaba30ca6294"
integrity sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==
-uuid@^11.0.5:
- version "11.1.0"
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-11.1.0.tgz#9549028be1753bb934fc96e2bca09bb4105ae912"
- integrity sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==
-
uuid@^3.3.2:
version "3.4.0"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
@@ -38324,14 +39012,14 @@ vis@^4.21.0-EOL:
moment "^2.18.1"
propagating-hammerjs "^1.4.6"
-vite@5.4.14:
- version "5.4.14"
- resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.14.tgz#ff8255edb02134df180dcfca1916c37a6abe8408"
- integrity sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA==
+vite@6.2.6:
+ version "6.2.6"
+ resolved "https://registry.yarnpkg.com/vite/-/vite-6.2.6.tgz#7f0ccf2fdc0c1eda079ce258508728e2473d3f61"
+ integrity sha512-9xpjNl3kR4rVDZgPNdTL0/c6ao4km69a/2ihNQbcANz8RuCOK3hQBmLSJf3bRKVQjVMda+YvizNE8AwvogcPbw==
dependencies:
- esbuild "^0.21.3"
- postcss "^8.4.43"
- rollup "^4.20.0"
+ esbuild "^0.25.0"
+ postcss "^8.5.3"
+ rollup "^4.30.1"
optionalDependencies:
fsevents "~2.3.3"
@@ -38366,9 +39054,9 @@ vscode-textmate@^8.0.0:
integrity sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==
vscode-uri@^3.0.7:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-3.1.0.tgz#dd09ec5a66a38b5c3fffc774015713496d14e09c"
- integrity sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==
+ version "3.0.8"
+ resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-3.0.8.tgz#1770938d3e72588659a172d0fd4642780083ff9f"
+ integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==
w3c-xmlserializer@^4.0.0:
version "4.0.0"
@@ -38424,15 +39112,7 @@ watchify@^4.0.0:
through2 "^4.0.2"
xtend "^4.0.2"
-watchpack@2.4.1:
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.1.tgz#29308f2cac150fa8e4c92f90e0ec954a9fed7fff"
- integrity sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==
- dependencies:
- glob-to-regexp "^0.4.1"
- graceful-fs "^4.1.2"
-
-watchpack@^2.4.1:
+watchpack@2.4.2, watchpack@^2.4.1:
version "2.4.2"
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.2.tgz#2feeaed67412e7c33184e5a79ca738fbd38564da"
integrity sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==
@@ -38570,7 +39250,7 @@ webpack-cli@^4.9.0, webpack-cli@^4.9.1:
rechoir "^0.7.0"
webpack-merge "^5.7.3"
-webpack-dev-middleware@7.4.2, webpack-dev-middleware@^7.1.0, webpack-dev-middleware@^7.4.2:
+webpack-dev-middleware@7.4.2, webpack-dev-middleware@^7.4.2:
version "7.4.2"
resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-7.4.2.tgz#40e265a3d3d26795585cff8207630d3a8ff05877"
integrity sha512-xOO8n6eggxnwYpy1NlzUKpvrjfJTvae5/D6WOK0S2LSo7vjmo5gCM1DbLUmFqrMTJP+W/0YZNctm7jasWvLuBA==
@@ -38582,10 +39262,10 @@ webpack-dev-middleware@7.4.2, webpack-dev-middleware@^7.1.0, webpack-dev-middlew
range-parser "^1.2.1"
schema-utils "^4.0.0"
-webpack-dev-server@5.0.4:
- version "5.0.4"
- resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-5.0.4.tgz#cb6ea47ff796b9251ec49a94f24a425e12e3c9b8"
- integrity sha512-dljXhUgx3HqKP2d8J/fUMvhxGhzjeNVarDLcbO/EWMSgRizDkxHQDZQaLFL5VJY9tRBj2Gz+rvCEYYvhbqPHNA==
+webpack-dev-server@5.2.0, webpack-dev-server@^5.0.4:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-5.2.0.tgz#68043886edaa3fd875ad20e01589990a79612f9c"
+ integrity sha512-90SqqYXA2SK36KcT6o1bvwvZfJFcmoamqeJY7+boioffX9g9C0wjjJRGUrQIuh43pb0ttX7+ssavmj/WN2RHtA==
dependencies:
"@types/bonjour" "^3.5.13"
"@types/connect-history-api-fallback" "^1.5.4"
@@ -38600,32 +39280,30 @@ webpack-dev-server@5.0.4:
colorette "^2.0.10"
compression "^1.7.4"
connect-history-api-fallback "^2.0.0"
- default-gateway "^6.0.3"
- express "^4.17.3"
+ express "^4.21.2"
graceful-fs "^4.2.6"
- html-entities "^2.4.0"
- http-proxy-middleware "^2.0.3"
+ http-proxy-middleware "^2.0.7"
ipaddr.js "^2.1.0"
launch-editor "^2.6.1"
open "^10.0.3"
p-retry "^6.2.0"
- rimraf "^5.0.5"
schema-utils "^4.2.0"
selfsigned "^2.4.1"
serve-index "^1.9.1"
sockjs "^0.3.24"
spdy "^4.0.2"
- webpack-dev-middleware "^7.1.0"
- ws "^8.16.0"
+ webpack-dev-middleware "^7.4.2"
+ ws "^8.18.0"
-webpack-dev-server@^5.0.4:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-5.2.0.tgz#68043886edaa3fd875ad20e01589990a79612f9c"
- integrity sha512-90SqqYXA2SK36KcT6o1bvwvZfJFcmoamqeJY7+boioffX9g9C0wjjJRGUrQIuh43pb0ttX7+ssavmj/WN2RHtA==
+webpack-dev-server@^5.2.1:
+ version "5.2.1"
+ resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-5.2.1.tgz#049072d6e19cbda8cf600b9e364e6662d61218ba"
+ integrity sha512-ml/0HIj9NLpVKOMq+SuBPLHcmbG+TGIjXRHsYfZwocUBIqEvws8NnS/V9AFQ5FKP+tgn5adwVwRrTEpGL33QFQ==
dependencies:
"@types/bonjour" "^3.5.13"
"@types/connect-history-api-fallback" "^1.5.4"
"@types/express" "^4.17.21"
+ "@types/express-serve-static-core" "^4.17.21"
"@types/serve-index" "^1.9.4"
"@types/serve-static" "^1.15.5"
"@types/sockjs" "^0.3.36"
@@ -38651,7 +39329,7 @@ webpack-dev-server@^5.0.4:
webpack-dev-middleware "^7.4.2"
ws "^8.18.0"
-webpack-merge@6.0.1:
+webpack-merge@6.0.1, webpack-merge@^6.0.0:
version "6.0.1"
resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-6.0.1.tgz#50c776868e080574725abc5869bd6e4ef0a16c6a"
integrity sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==
@@ -38686,18 +39364,18 @@ webpack-subresource-integrity@5.1.0, webpack-subresource-integrity@^5.1.0:
dependencies:
typed-assert "^1.0.8"
-webpack@5.94.0:
- version "5.94.0"
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.94.0.tgz#77a6089c716e7ab90c1c67574a28da518a20970f"
- integrity sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==
+webpack@5.97.1:
+ version "5.97.1"
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.97.1.tgz#972a8320a438b56ff0f1d94ade9e82eac155fa58"
+ integrity sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==
dependencies:
- "@types/estree" "^1.0.5"
- "@webassemblyjs/ast" "^1.12.1"
- "@webassemblyjs/wasm-edit" "^1.12.1"
- "@webassemblyjs/wasm-parser" "^1.12.1"
- acorn "^8.7.1"
- acorn-import-attributes "^1.9.5"
- browserslist "^4.21.10"
+ "@types/eslint-scope" "^3.7.7"
+ "@types/estree" "^1.0.6"
+ "@webassemblyjs/ast" "^1.14.1"
+ "@webassemblyjs/wasm-edit" "^1.14.1"
+ "@webassemblyjs/wasm-parser" "^1.14.1"
+ acorn "^8.14.0"
+ browserslist "^4.24.0"
chrome-trace-event "^1.0.2"
enhanced-resolve "^5.17.1"
es-module-lexer "^1.2.1"
@@ -38715,10 +39393,10 @@ webpack@5.94.0:
watchpack "^2.4.1"
webpack-sources "^3.2.3"
-webpack@5.97.1:
- version "5.97.1"
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.97.1.tgz#972a8320a438b56ff0f1d94ade9e82eac155fa58"
- integrity sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==
+webpack@5.98.0:
+ version "5.98.0"
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.98.0.tgz#44ae19a8f2ba97537978246072fb89d10d1fbd17"
+ integrity sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==
dependencies:
"@types/eslint-scope" "^3.7.7"
"@types/estree" "^1.0.6"
@@ -38738,22 +39416,51 @@ webpack@5.97.1:
loader-runner "^4.2.0"
mime-types "^2.1.27"
neo-async "^2.6.2"
+ schema-utils "^4.3.0"
+ tapable "^2.1.1"
+ terser-webpack-plugin "^5.3.11"
+ watchpack "^2.4.1"
+ webpack-sources "^3.2.3"
+
+webpack@^5, webpack@^5.80.0, webpack@^5.91.0:
+ version "5.95.0"
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.95.0.tgz#8fd8c454fa60dad186fbe36c400a55848307b4c0"
+ integrity sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==
+ dependencies:
+ "@types/estree" "^1.0.5"
+ "@webassemblyjs/ast" "^1.12.1"
+ "@webassemblyjs/wasm-edit" "^1.12.1"
+ "@webassemblyjs/wasm-parser" "^1.12.1"
+ acorn "^8.7.1"
+ acorn-import-attributes "^1.9.5"
+ browserslist "^4.21.10"
+ chrome-trace-event "^1.0.2"
+ enhanced-resolve "^5.17.1"
+ es-module-lexer "^1.2.1"
+ eslint-scope "5.1.1"
+ events "^3.2.0"
+ glob-to-regexp "^0.4.1"
+ graceful-fs "^4.2.11"
+ json-parse-even-better-errors "^2.3.1"
+ loader-runner "^4.2.0"
+ mime-types "^2.1.27"
+ neo-async "^2.6.2"
schema-utils "^3.2.0"
tapable "^2.1.1"
terser-webpack-plugin "^5.3.10"
watchpack "^2.4.1"
webpack-sources "^3.2.3"
-webpack@^5, webpack@^5.80.0, webpack@^5.88.0, webpack@^5.91.0:
- version "5.98.0"
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.98.0.tgz#44ae19a8f2ba97537978246072fb89d10d1fbd17"
- integrity sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==
+webpack@^5.88.0:
+ version "5.96.1"
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.96.1.tgz#3676d1626d8312b6b10d0c18cc049fba7ac01f0c"
+ integrity sha512-l2LlBSvVZGhL4ZrPwyr8+37AunkcYj5qh8o6u2/2rzoPc8gxFJkLj1WxNgooi9pnoc06jh0BjuXnamM4qlujZA==
dependencies:
"@types/eslint-scope" "^3.7.7"
"@types/estree" "^1.0.6"
- "@webassemblyjs/ast" "^1.14.1"
- "@webassemblyjs/wasm-edit" "^1.14.1"
- "@webassemblyjs/wasm-parser" "^1.14.1"
+ "@webassemblyjs/ast" "^1.12.1"
+ "@webassemblyjs/wasm-edit" "^1.12.1"
+ "@webassemblyjs/wasm-parser" "^1.12.1"
acorn "^8.14.0"
browserslist "^4.24.0"
chrome-trace-event "^1.0.2"
@@ -38767,9 +39474,9 @@ webpack@^5, webpack@^5.80.0, webpack@^5.88.0, webpack@^5.91.0:
loader-runner "^4.2.0"
mime-types "^2.1.27"
neo-async "^2.6.2"
- schema-utils "^4.3.0"
+ schema-utils "^3.2.0"
tapable "^2.1.1"
- terser-webpack-plugin "^5.3.11"
+ terser-webpack-plugin "^5.3.10"
watchpack "^2.4.1"
webpack-sources "^3.2.3"
@@ -38825,9 +39532,9 @@ whatwg-url@^11.0.0:
webidl-conversions "^7.0.0"
whatwg-url@^14.0.0, "whatwg-url@^14.1.0 || ^13.0.0":
- version "14.1.1"
- resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-14.1.1.tgz#ce71e240c61541315833b5cdafd139a479e47058"
- integrity sha512-mDGf9diDad/giZ/Sm9Xi2YcyzaFpbdLpJPr+E9fSkyQ7KpQD4SdFcugkRQYzhmfI4KeV4Qpnn2sKPdo+kmsgRQ==
+ version "14.1.0"
+ resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-14.1.0.tgz#fffebec86cc8e6c2a657e50dc606207b870f0ab3"
+ integrity sha512-jlf/foYIKywAt3x/XWKZ/3rz8OSJPiWktjmk891alJUEjiVxKX9LEO92qH3hv4aJ0mN3MWPvGMCy8jQi95xK4w==
dependencies:
tr46 "^5.0.0"
webidl-conversions "^7.0.0"
@@ -38893,7 +39600,7 @@ which-pm@^2.2.0:
load-yaml-file "^0.2.0"
path-exists "^4.0.0"
-which-typed-array@^1.1.15, which-typed-array@^1.1.16, which-typed-array@^1.1.18, which-typed-array@^1.1.2:
+which-typed-array@^1.1.15:
version "1.1.19"
resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.19.tgz#df03842e870b6b88e117524a4b364b6fc689f956"
integrity sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==
@@ -38906,6 +39613,18 @@ which-typed-array@^1.1.15, which-typed-array@^1.1.16, which-typed-array@^1.1.18,
gopd "^1.2.0"
has-tostringtag "^1.0.2"
+which-typed-array@^1.1.16, which-typed-array@^1.1.18, which-typed-array@^1.1.2:
+ version "1.1.18"
+ resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.18.tgz#df2389ebf3fbb246a71390e90730a9edb6ce17ad"
+ integrity sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==
+ dependencies:
+ available-typed-arrays "^1.0.7"
+ call-bind "^1.0.8"
+ call-bound "^1.0.3"
+ for-each "^0.3.3"
+ gopd "^1.2.0"
+ has-tostringtag "^1.0.2"
+
which@^1.2.1, which@^1.2.14, which@^1.2.9, which@^1.3.1:
version "1.3.1"
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
@@ -39166,7 +39885,7 @@ ws@8.17.1, ws@~8.17.1:
resolved "https://registry.yarnpkg.com/ws/-/ws-8.17.1.tgz#9293da530bb548febc95371d90f9c878727d919b"
integrity sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==
-ws@8.18.0:
+ws@8.18.0, ws@^8.11.0, ws@^8.16.0, ws@^8.18.0:
version "8.18.0"
resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc"
integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==
@@ -39176,11 +39895,6 @@ ws@8.18.0:
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.10.tgz#58b5c20dc281633f6c19113f39b349bd8bd558d9"
integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==
-ws@^8.11.0, ws@^8.16.0, ws@^8.18.0:
- version "8.18.1"
- resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.1.tgz#ea131d3784e1dfdff91adb0a4a116b127515e3cb"
- integrity sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==
-
xdg-basedir@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13"
@@ -39560,9 +40274,9 @@ yocto-queue@^0.1.0:
integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
yocto-queue@^1.0.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.2.0.tgz#4a29a93e7591328fa31768701e6ea66962401f79"
- integrity sha512-KHBC7z61OJeaMGnF3wqNZj+GGNXOyypZviiKpQeiHirG5Ib1ImwcLBH70rbMSkKfSmUNBsdf2PwaEJtKvgmkNw==
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.1.1.tgz#fef65ce3ac9f8a32ceac5a634f74e17e5b232110"
+ integrity sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==
yoctocolors-cjs@^2.1.2:
version "2.1.2"