mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
rebased and fixed the wrong directive for matList'
This commit is contained in:
@@ -96,7 +96,7 @@ However, you can use a more complex template if necessary:
|
|||||||
class="adf-search-autocomplete-item"
|
class="adf-search-autocomplete-item"
|
||||||
(click)="elementClicked(item)"
|
(click)="elementClicked(item)"
|
||||||
(keyup.enter)="elementClicked(item)">
|
(keyup.enter)="elementClicked(item)">
|
||||||
<mat-icon mat-list-icon>
|
<mat-icon matListItemLine>
|
||||||
<img [src]="getMimeTypeIcon(item)" />
|
<img [src]="getMimeTypeIcon(item)" />
|
||||||
</mat-icon>
|
</mat-icon>
|
||||||
<h4 mat-line id="result_name_{{idx}}"
|
<h4 mat-line id="result_name_{{idx}}"
|
||||||
|
@@ -23,7 +23,7 @@ export class SearchBarPage {
|
|||||||
searchBar = $(`adf-search-control input`);
|
searchBar = $(`adf-search-control input`);
|
||||||
searchBarExpanded: TestElement = TestElement.byCss(`adf-search-control mat-form-field[class*="mat-focused"] input`);
|
searchBarExpanded: TestElement = TestElement.byCss(`adf-search-control mat-form-field[class*="mat-focused"] input`);
|
||||||
noResultMessage = $(`p[class*='adf-search-fixed-text']`);
|
noResultMessage = $(`p[class*='adf-search-fixed-text']`);
|
||||||
rowsAuthor = `.mat-list-text p[class*='adf-search-fixed-text']`;
|
rowsAuthor = `p[class*='adf-search-fixed-text']`;
|
||||||
completeName = `h4[class*='adf-search-fixed-text']`;
|
completeName = `h4[class*='adf-search-fixed-text']`;
|
||||||
highlightName = `.adf-highlight`;
|
highlightName = `.adf-highlight`;
|
||||||
searchBarPage = $(`mat-list[id='autocomplete-search-result-list']`);
|
searchBarPage = $(`mat-list[id='autocomplete-search-result-list']`);
|
||||||
|
@@ -157,7 +157,7 @@ describe('Search component - Search Bar', () => {
|
|||||||
|
|
||||||
it('[C260256] Should display file/folder in search suggestion when typing first characters', async () => {
|
it('[C260256] Should display file/folder in search suggestion when typing first characters', async () => {
|
||||||
await openSearchBar();
|
await openSearchBar();
|
||||||
await searchBarPage.enterTextAndPressEnter(firstFolderModel.shortName);
|
await searchBarPage.enterText(firstFolderModel.shortName);
|
||||||
|
|
||||||
await searchBarPage.resultTableContainsRow(firstFolderModel.name);
|
await searchBarPage.resultTableContainsRow(firstFolderModel.name);
|
||||||
|
|
||||||
|
@@ -30,20 +30,20 @@
|
|||||||
(keyup.enter)="elementClicked(item)"
|
(keyup.enter)="elementClicked(item)"
|
||||||
(touchend)="elementClicked(item)">
|
(touchend)="elementClicked(item)">
|
||||||
<!-- This is a comment -->
|
<!-- This is a comment -->
|
||||||
<mat-icon mat-list-icon>
|
<mat-icon matListItemLine>
|
||||||
<img [alt]="getMimeType(item)" [src]="getMimeTypeIcon(item)"/>
|
<img [alt]="getMimeType(item)" [src]="getMimeTypeIcon(item)"/>
|
||||||
</mat-icon>
|
</mat-icon>
|
||||||
<h4 mat-line id="result_name_{{idx}}"
|
<h4 matListItemTitle id="result_name_{{idx}}"
|
||||||
*ngIf="highlight; else elseBlock"
|
*ngIf="highlight; else elseBlock"
|
||||||
class="adf-search-fixed-text"
|
class="adf-search-fixed-text"
|
||||||
[innerHtml]="item.entry.name | highlight: searchTerm">
|
[innerHtml]="item.entry.name | highlight: searchTerm">
|
||||||
{{ item?.entry.name }}
|
{{ item?.entry.name }}
|
||||||
</h4>
|
</h4>
|
||||||
<ng-template #elseBlock>
|
<ng-template #elseBlock>
|
||||||
<h4 class="adf-search-fixed-text" mat-line id="result_name_{{idx}}"
|
<h4 class="adf-search-fixed-text" matListItemTitle id="result_name_{{idx}}"
|
||||||
[innerHtml]="item.entry.name"></h4>
|
[innerHtml]="item.entry.name"></h4>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
<p mat-line class="adf-search-fixed-text"> {{item?.entry.createdByUser.displayName}} </p>
|
<p matListItemLine class="adf-search-fixed-text"> {{item?.entry.createdByUser.displayName}} </p>
|
||||||
</mat-list-item>
|
</mat-list-item>
|
||||||
<mat-list-item id="search_no_result"
|
<mat-list-item id="search_no_result"
|
||||||
data-automation-id="search_no_result_found"
|
data-automation-id="search_no_result_found"
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
*ngIf="isNoSearchTemplatePresent() else defaultNoResult">
|
*ngIf="isNoSearchTemplatePresent() else defaultNoResult">
|
||||||
</ng-content>
|
</ng-content>
|
||||||
<ng-template #defaultNoResult>
|
<ng-template #defaultNoResult>
|
||||||
<p mat-line class="adf-search-fixed-text">{{ 'SEARCH.RESULTS.NONE' | translate:{searchTerm:
|
<p matListItemLine class="adf-search-fixed-text">{{ 'SEARCH.RESULTS.NONE' | translate:{searchTerm:
|
||||||
searchTerm} }}</p>
|
searchTerm} }}</p>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</mat-list-item>
|
</mat-list-item>
|
||||||
|
@@ -16,7 +16,7 @@
|
|||||||
[attr.aria-expanded]="!isDialogMinimized"
|
[attr.aria-expanded]="!isDialogMinimized"
|
||||||
(click)="toggleMinimized()">
|
(click)="toggleMinimized()">
|
||||||
<mat-icon
|
<mat-icon
|
||||||
mat-list-icon
|
matListItemLine
|
||||||
title="{{ (isDialogMinimized ? 'ADF_FILE_UPLOAD.BUTTON.MAXIMIZE': 'ADF_FILE_UPLOAD.BUTTON.MINIMIZE') | translate }}">
|
title="{{ (isDialogMinimized ? 'ADF_FILE_UPLOAD.BUTTON.MAXIMIZE': 'ADF_FILE_UPLOAD.BUTTON.MINIMIZE') | translate }}">
|
||||||
{{ isDialogMinimized ? 'keyboard_arrow_up' : 'keyboard_arrow_down' }}
|
{{ isDialogMinimized ? 'keyboard_arrow_up' : 'keyboard_arrow_down' }}
|
||||||
</mat-icon>
|
</mat-icon>
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
<div class="adf-file-uploading-row">
|
<div class="adf-file-uploading-row">
|
||||||
<mat-icon *ngIf="mimeType === 'default'" mat-list-icon class="adf-file-uploading-row__type">
|
<mat-icon *ngIf="mimeType === 'default'" matListItemLine class="adf-file-uploading-row__type">
|
||||||
insert_drive_file
|
insert_drive_file
|
||||||
</mat-icon>
|
</mat-icon>
|
||||||
|
|
||||||
@@ -63,7 +63,7 @@
|
|||||||
role="status"
|
role="status"
|
||||||
>
|
>
|
||||||
<mat-icon
|
<mat-icon
|
||||||
mat-list-icon
|
matListItemLine
|
||||||
class="adf-file-uploading-row__status--done">
|
class="adf-file-uploading-row__status--done">
|
||||||
check_circle
|
check_circle
|
||||||
</mat-icon>
|
</mat-icon>
|
||||||
@@ -97,7 +97,7 @@
|
|||||||
role="status"
|
role="status"
|
||||||
*ngIf="isUploadError()"
|
*ngIf="isUploadError()"
|
||||||
class="adf-file-uploading-row__block adf-file-uploading-row__status--error">
|
class="adf-file-uploading-row__block adf-file-uploading-row__status--error">
|
||||||
<mat-icon mat-list-icon
|
<mat-icon matListItemLine
|
||||||
[attr.aria-label]="'ADF_FILE_UPLOAD.ARIA-LABEL.UPLOAD_FILE_ERROR' | translate: { error: file.errorCode | adfFileUploadError }"
|
[attr.aria-label]="'ADF_FILE_UPLOAD.ARIA-LABEL.UPLOAD_FILE_ERROR' | translate: { error: file.errorCode | adfFileUploadError }"
|
||||||
[title]="file.errorCode | adfFileUploadError">
|
[title]="file.errorCode | adfFileUploadError">
|
||||||
report_problem
|
report_problem
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<mat-list class="adf-version-list" *ngIf="!isLoading; else loading_template">
|
<mat-list class="adf-version-list" *ngIf="!isLoading; else loading_template">
|
||||||
<mat-list-item *ngFor="let version of versions; let idx = index; let latestVersion = first">
|
<mat-list-item *ngFor="let version of versions; let idx = index; let latestVersion = first">
|
||||||
<mat-icon mat-list-icon>insert_drive_file</mat-icon>
|
<mat-icon matListItemLine>insert_drive_file</mat-icon>
|
||||||
<p mat-line class="adf-version-list-item-name" [id]="'adf-version-list-item-name-' + version.entry.id" >{{version.entry.name}}</p>
|
<p matListItemLine class="adf-version-list-item-name" [id]="'adf-version-list-item-name-' + version.entry.id" >{{version.entry.name}}</p>
|
||||||
<p mat-line>
|
<p matListItemLine>
|
||||||
<span class="adf-version-list-item-version" [id]="'adf-version-list-item-version-' + version.entry.id" >{{version.entry.id}}</span> -
|
<span class="adf-version-list-item-version" [id]="'adf-version-list-item-version-' + version.entry.id" >{{version.entry.id}}</span> -
|
||||||
<span class="adf-version-list-item-date" [id]="'adf-version-list-item-date-' + version.entry.id" >{{version.entry.modifiedAt | date}}</span>
|
<span class="adf-version-list-item-date" [id]="'adf-version-list-item-date-' + version.entry.id" >{{version.entry.modifiedAt | date}}</span>
|
||||||
</p>
|
</p>
|
||||||
<p mat-line [id]="'adf-version-list-item-comment-'+ version.entry.id" class="adf-version-list-item-comment"
|
<p matListItemLine [id]="'adf-version-list-item-comment-'+ version.entry.id" class="adf-version-list-item-comment"
|
||||||
*ngIf="showComments">{{version.entry.versionComment}}</p>
|
*ngIf="showComments">{{version.entry.versionComment}}</p>
|
||||||
|
|
||||||
<div *ngIf="showActions">
|
<div *ngIf="showActions">
|
||||||
|
@@ -42,20 +42,20 @@
|
|||||||
[outerHTML]="notification.initiator | usernameInitials:'adf-notification-initiator-pic'">
|
[outerHTML]="notification.initiator | usernameInitials:'adf-notification-initiator-pic'">
|
||||||
</div>
|
</div>
|
||||||
<ng-template #no_avatar>
|
<ng-template #no_avatar>
|
||||||
<mat-icon mat-list-icon
|
<mat-icon matListItemLine
|
||||||
class="adf-notification-history-menu-initiator">{{notification.icon}}</mat-icon>
|
class="adf-notification-history-menu-initiator">{{notification.icon}}</mat-icon>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
<p class="adf-notification-history-menu-message"
|
<p class="adf-notification-history-menu-message"
|
||||||
*ngFor="let message of notification.messages"
|
*ngFor="let message of notification.messages"
|
||||||
mat-line [matTooltip]="message" matTooltipShowDelay="1000">{{ message }}</p>
|
matListItemLine [matTooltip]="message" matTooltipShowDelay="1000">{{ message }}</p>
|
||||||
<p class="adf-notification-history-menu-date"
|
<p class="adf-notification-history-menu-date"
|
||||||
mat-line> {{notification.datetime | adfTimeAgo}} </p>
|
matListItemLine> {{notification.datetime | adfTimeAgo}} </p>
|
||||||
</mat-list-item>
|
</mat-list-item>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
<ng-template #empty_list_template>
|
<ng-template #empty_list_template>
|
||||||
<mat-list-item id="adf-notification-history-component-no-message"
|
<mat-list-item id="adf-notification-history-component-no-message"
|
||||||
class="adf-notification-history-menu-no-message">
|
class="adf-notification-history-menu-no-message">
|
||||||
<p mat-line>{{ 'NOTIFICATIONS.NO_MESSAGE' | translate }}</p>
|
<p matListItemLine>{{ 'NOTIFICATIONS.NO_MESSAGE' | translate }}</p>
|
||||||
</mat-list-item>
|
</mat-list-item>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</mat-list>
|
</mat-list>
|
||||||
|
@@ -6,7 +6,7 @@
|
|||||||
*ngFor="let report of reports; let idx = index"
|
*ngFor="let report of reports; let idx = index"
|
||||||
[class.adf-active]="currentReport === report">
|
[class.adf-active]="currentReport === report">
|
||||||
<span [attr.id]="'report-list-' + idx" class="adf-activiti-filters__label">
|
<span [attr.id]="'report-list-' + idx" class="adf-activiti-filters__label">
|
||||||
<mat-icon mat-list-icon
|
<mat-icon matListItemLine
|
||||||
[attr.data-automation-id]="report.name + '_filter'"
|
[attr.data-automation-id]="report.name + '_filter'"
|
||||||
class="adf-activiti-filters__entry-icon">assignment</mat-icon>
|
class="adf-activiti-filters__entry-icon">assignment</mat-icon>
|
||||||
<span class="adf-text">{{report.name}}</span>
|
<span class="adf-text">{{report.name}}</span>
|
||||||
|
@@ -3,11 +3,11 @@
|
|||||||
<ng-container matColumnDef="icon">
|
<ng-container matColumnDef="icon">
|
||||||
<th mat-header-cell *matHeaderCellDef></th>
|
<th mat-header-cell *matHeaderCellDef></th>
|
||||||
<td mat-cell *matCellDef="let element">
|
<td mat-cell *matCellDef="let element">
|
||||||
<mat-icon mat-list-icon class="adf-datatable-selected"
|
<mat-icon matListItemLine class="adf-datatable-selected"
|
||||||
*ngIf="selectedNode && element.id === selectedNode.id" (click)="onRowClicked(element)">
|
*ngIf="selectedNode && element.id === selectedNode.id" (click)="onRowClicked(element)">
|
||||||
check_circle
|
check_circle
|
||||||
</mat-icon>
|
</mat-icon>
|
||||||
<img mat-list-icon class="adf-attach-widget__icon"
|
<img matListItemLine class="adf-attach-widget__icon"
|
||||||
*ngIf="!selectedNode || element.id !== selectedNode.id" [id]="'file-'+element?.id+'-icon'"
|
*ngIf="!selectedNode || element.id !== selectedNode.id" [id]="'file-'+element?.id+'-icon'"
|
||||||
(click)="onRowClicked(element)"
|
(click)="onRowClicked(element)"
|
||||||
[src]="element.content ? getIcon(element.content.mimeType) : getIcon(element['mimeType'])"
|
[src]="element.content ? getIcon(element.content.mimeType) : getIcon(element['mimeType'])"
|
||||||
|
@@ -6,7 +6,7 @@
|
|||||||
<div>
|
<div>
|
||||||
<mat-list *ngIf="hasFile">
|
<mat-list *ngIf="hasFile">
|
||||||
<mat-list-item class="adf-upload-files-row" *ngFor="let file of uploadedFiles">
|
<mat-list-item class="adf-upload-files-row" *ngFor="let file of uploadedFiles">
|
||||||
<img mat-list-icon class="adf-upload-widget__icon" [id]="'file-'+file.id+'-icon'"
|
<img matListItemLine class="adf-upload-widget__icon" [id]="'file-'+file.id+'-icon'"
|
||||||
[src]="getIcon(file.content.mimeType)" [alt]="mimeTypeIcon" (click)="fileClicked(file)"
|
[src]="getIcon(file.content.mimeType)" [alt]="mimeTypeIcon" (click)="fileClicked(file)"
|
||||||
(keyup.enter)="fileClicked(file)" role="button" tabindex="0" />
|
(keyup.enter)="fileClicked(file)" role="button" tabindex="0" />
|
||||||
<span matLine id="{{'file-'+file.id}}" (click)="fileClicked(file)" (keyup.enter)="fileClicked(file)"
|
<span matLine id="{{'file-'+file.id}}" (click)="fileClicked(file)" (keyup.enter)="fileClicked(file)"
|
||||||
|
@@ -61,7 +61,7 @@
|
|||||||
<div data-automation-id="adf-attach-widget-readonly-list">
|
<div data-automation-id="adf-attach-widget-readonly-list">
|
||||||
<mat-list *ngIf="hasFile">
|
<mat-list *ngIf="hasFile">
|
||||||
<mat-list-item class="adf-attach-files-row" *ngFor="let file of field.value">
|
<mat-list-item class="adf-attach-files-row" *ngFor="let file of field.value">
|
||||||
<img mat-list-icon class="adf-attach-widget__icon"
|
<img matListItemLine class="adf-attach-widget__icon"
|
||||||
[id]="'file-'+file.id+'-icon'"
|
[id]="'file-'+file.id+'-icon'"
|
||||||
[src]="file.content ? getIcon(file.content.mimeType) : getIcon(file.mimeType)"
|
[src]="file.content ? getIcon(file.content.mimeType) : getIcon(file.mimeType)"
|
||||||
[alt]="mimeTypeIcon"
|
[alt]="mimeTypeIcon"
|
||||||
|
@@ -6,7 +6,7 @@
|
|||||||
<div>
|
<div>
|
||||||
<mat-list *ngIf="hasFile">
|
<mat-list *ngIf="hasFile">
|
||||||
<mat-list-item class="adf-upload-files-row" *ngFor="let file of field.value">
|
<mat-list-item class="adf-upload-files-row" *ngFor="let file of field.value">
|
||||||
<img mat-list-icon class="adf-upload-widget__icon"
|
<img matListItemLine class="adf-upload-widget__icon"
|
||||||
[id]="'file-'+file.id+'-icon'"
|
[id]="'file-'+file.id+'-icon'"
|
||||||
[src]="getIcon(file.mimeType)"
|
[src]="getIcon(file.mimeType)"
|
||||||
[alt]="mimeTypeIcon"
|
[alt]="mimeTypeIcon"
|
||||||
|
@@ -14,7 +14,7 @@
|
|||||||
<div class="menu-container" *ngIf="activeTasks?.length > 0" data-automation-id="active-tasks">
|
<div class="menu-container" *ngIf="activeTasks?.length > 0" data-automation-id="active-tasks">
|
||||||
<mat-list>
|
<mat-list>
|
||||||
<mat-list-item class="process-tasks__task-item" *ngFor="let task of activeTasks" (click)="clickTask(task)">
|
<mat-list-item class="process-tasks__task-item" *ngFor="let task of activeTasks" (click)="clickTask(task)">
|
||||||
<mat-icon mat-list-icon>assignment</mat-icon>
|
<mat-icon matListItemLine>assignment</mat-icon>
|
||||||
<h3 matLine>{{task.name || 'Nameless task'}}</h3>
|
<h3 matLine>{{task.name || 'Nameless task'}}</h3>
|
||||||
<span matLine>
|
<span matLine>
|
||||||
{{ 'ADF_PROCESS_LIST.DETAILS.LABELS.TASK_SUBTITLE' | translate:{user: getUserFullName(task.assignee), created: getFormatDate(task.created, 'mediumDate') } }}
|
{{ 'ADF_PROCESS_LIST.DETAILS.LABELS.TASK_SUBTITLE' | translate:{user: getUserFullName(task.assignee), created: getFormatDate(task.created, 'mediumDate') } }}
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
<div class="menu-container" data-automation-id="start-form">
|
<div class="menu-container" data-automation-id="start-form">
|
||||||
<mat-list>
|
<mat-list>
|
||||||
<mat-list-item class="process-tasks__task-item" (click)="clickStartTask()">
|
<mat-list-item class="process-tasks__task-item" (click)="clickStartTask()">
|
||||||
<mat-icon mat-list-icon>assignment</mat-icon>
|
<mat-icon matListItemLine>assignment</mat-icon>
|
||||||
<h3 matLine>{{ 'ADF_PROCESS_LIST.DETAILS.LABELS.START_FORM'|translate }}</h3>
|
<h3 matLine>{{ 'ADF_PROCESS_LIST.DETAILS.LABELS.START_FORM'|translate }}</h3>
|
||||||
<span matLine>
|
<span matLine>
|
||||||
{{ 'ADF_PROCESS_LIST.DETAILS.LABELS.TASK_SUBTITLE' | translate:{user:getUserFullName(processInstanceDetails.startedBy), created: getFormatDate(processInstanceDetails.started, 'mediumDate') } }}
|
{{ 'ADF_PROCESS_LIST.DETAILS.LABELS.TASK_SUBTITLE' | translate:{user:getUserFullName(processInstanceDetails.startedBy), created: getFormatDate(processInstanceDetails.started, 'mediumDate') } }}
|
||||||
@@ -56,7 +56,7 @@
|
|||||||
<div class="menu-container" *ngIf="completedTasks?.length > 0" data-automation-id="completed-tasks">
|
<div class="menu-container" *ngIf="completedTasks?.length > 0" data-automation-id="completed-tasks">
|
||||||
<mat-list>
|
<mat-list>
|
||||||
<mat-list-item class="process-tasks__task-item" *ngFor="let task of completedTasks" (click)="clickTask(task)">
|
<mat-list-item class="process-tasks__task-item" *ngFor="let task of completedTasks" (click)="clickTask(task)">
|
||||||
<mat-icon mat-list-icon>assignment</mat-icon>
|
<mat-icon matListItemLine>assignment</mat-icon>
|
||||||
<h3 matLine>{{task.name || 'Nameless task'}}</h3>
|
<h3 matLine>{{task.name || 'Nameless task'}}</h3>
|
||||||
<span matLine>
|
<span matLine>
|
||||||
{{ 'ADF_PROCESS_LIST.DETAILS.LABELS.TASK_SUBTITLE' | translate:{user:getUserFullName(task.assignee), created: getFormatDate(task.created, 'mediumDate') } }}
|
{{ 'ADF_PROCESS_LIST.DETAILS.LABELS.TASK_SUBTITLE' | translate:{user:getUserFullName(task.assignee), created: getFormatDate(task.created, 'mediumDate') } }}
|
||||||
|
288
package-lock.json
generated
288
package-lock.json
generated
@@ -132,7 +132,7 @@
|
|||||||
"karma-jasmine-html-reporter": "2.1.0",
|
"karma-jasmine-html-reporter": "2.1.0",
|
||||||
"karma-mocha-reporter": "2.2.5",
|
"karma-mocha-reporter": "2.2.5",
|
||||||
"license-checker": "^25.0.1",
|
"license-checker": "^25.0.1",
|
||||||
"lint-staged": "^13.2.0",
|
"lint-staged": "^15.2.0",
|
||||||
"lite-server": "^2.6.1",
|
"lite-server": "^2.6.1",
|
||||||
"mini-css-extract-plugin": "^2.7.6",
|
"mini-css-extract-plugin": "^2.7.6",
|
||||||
"mocha": "^10.2.0",
|
"mocha": "^10.2.0",
|
||||||
@@ -22720,16 +22720,16 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/cli-truncate": {
|
"node_modules/cli-truncate": {
|
||||||
"version": "3.1.0",
|
"version": "4.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-4.0.0.tgz",
|
||||||
"integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==",
|
"integrity": "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"slice-ansi": "^5.0.0",
|
"slice-ansi": "^5.0.0",
|
||||||
"string-width": "^5.0.0"
|
"string-width": "^7.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/sindresorhus"
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
@@ -22748,23 +22748,23 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/cli-truncate/node_modules/emoji-regex": {
|
"node_modules/cli-truncate/node_modules/emoji-regex": {
|
||||||
"version": "9.2.2",
|
"version": "10.3.0",
|
||||||
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
|
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz",
|
||||||
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
|
"integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/cli-truncate/node_modules/string-width": {
|
"node_modules/cli-truncate/node_modules/string-width": {
|
||||||
"version": "5.1.2",
|
"version": "7.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/string-width/-/string-width-7.0.0.tgz",
|
||||||
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
|
"integrity": "sha512-GPQHj7row82Hjo9hKZieKcHIhaAIKOJvFSIZXuCU9OASVZrMNUaZuz++SPVrBjnLsnk4k+z9f2EIypgxf2vNFw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"eastasianwidth": "^0.2.0",
|
"emoji-regex": "^10.3.0",
|
||||||
"emoji-regex": "^9.2.2",
|
"get-east-asian-width": "^1.0.0",
|
||||||
"strip-ansi": "^7.0.1"
|
"strip-ansi": "^7.1.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/sindresorhus"
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
@@ -28948,6 +28948,18 @@
|
|||||||
"node": "6.* || 8.* || >= 10.*"
|
"node": "6.* || 8.* || >= 10.*"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/get-east-asian-width": {
|
||||||
|
"version": "1.2.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.2.0.tgz",
|
||||||
|
"integrity": "sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==",
|
||||||
|
"dev": true,
|
||||||
|
"engines": {
|
||||||
|
"node": ">=18"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/get-func-name": {
|
"node_modules/get-func-name": {
|
||||||
"version": "2.0.2",
|
"version": "2.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz",
|
||||||
@@ -34340,27 +34352,27 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/lint-staged": {
|
"node_modules/lint-staged": {
|
||||||
"version": "13.3.0",
|
"version": "15.2.0",
|
||||||
"resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-15.2.0.tgz",
|
||||||
"integrity": "sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==",
|
"integrity": "sha512-TFZzUEV00f+2YLaVPWBWGAMq7So6yQx+GG8YRMDeOEIf95Zn5RyiLMsEiX4KTNl9vq/w+NqRJkLA1kPIo15ufQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"chalk": "5.3.0",
|
"chalk": "5.3.0",
|
||||||
"commander": "11.0.0",
|
"commander": "11.1.0",
|
||||||
"debug": "4.3.4",
|
"debug": "4.3.4",
|
||||||
"execa": "7.2.0",
|
"execa": "8.0.1",
|
||||||
"lilconfig": "2.1.0",
|
"lilconfig": "3.0.0",
|
||||||
"listr2": "6.6.1",
|
"listr2": "8.0.0",
|
||||||
"micromatch": "4.0.5",
|
"micromatch": "4.0.5",
|
||||||
"pidtree": "0.6.0",
|
"pidtree": "0.6.0",
|
||||||
"string-argv": "0.3.2",
|
"string-argv": "0.3.2",
|
||||||
"yaml": "2.3.1"
|
"yaml": "2.3.4"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"lint-staged": "bin/lint-staged.js"
|
"lint-staged": "bin/lint-staged.js"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^16.14.0 || >=18.0.0"
|
"node": ">=18.12.0"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://opencollective.com/lint-staged"
|
"url": "https://opencollective.com/lint-staged"
|
||||||
@@ -34379,44 +34391,56 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/lint-staged/node_modules/commander": {
|
"node_modules/lint-staged/node_modules/commander": {
|
||||||
"version": "11.0.0",
|
"version": "11.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz",
|
||||||
"integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==",
|
"integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16"
|
"node": ">=16"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/lint-staged/node_modules/execa": {
|
"node_modules/lint-staged/node_modules/execa": {
|
||||||
"version": "7.2.0",
|
"version": "8.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz",
|
"resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz",
|
||||||
"integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==",
|
"integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"cross-spawn": "^7.0.3",
|
"cross-spawn": "^7.0.3",
|
||||||
"get-stream": "^6.0.1",
|
"get-stream": "^8.0.1",
|
||||||
"human-signals": "^4.3.0",
|
"human-signals": "^5.0.0",
|
||||||
"is-stream": "^3.0.0",
|
"is-stream": "^3.0.0",
|
||||||
"merge-stream": "^2.0.0",
|
"merge-stream": "^2.0.0",
|
||||||
"npm-run-path": "^5.1.0",
|
"npm-run-path": "^5.1.0",
|
||||||
"onetime": "^6.0.0",
|
"onetime": "^6.0.0",
|
||||||
"signal-exit": "^3.0.7",
|
"signal-exit": "^4.1.0",
|
||||||
"strip-final-newline": "^3.0.0"
|
"strip-final-newline": "^3.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^14.18.0 || ^16.14.0 || >=18.0.0"
|
"node": ">=16.17"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sindresorhus/execa?sponsor=1"
|
"url": "https://github.com/sindresorhus/execa?sponsor=1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/lint-staged/node_modules/human-signals": {
|
"node_modules/lint-staged/node_modules/get-stream": {
|
||||||
"version": "4.3.1",
|
"version": "8.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz",
|
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz",
|
||||||
"integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==",
|
"integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=14.18.0"
|
"node": ">=16"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/lint-staged/node_modules/human-signals": {
|
||||||
|
"version": "5.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz",
|
||||||
|
"integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==",
|
||||||
|
"dev": true,
|
||||||
|
"engines": {
|
||||||
|
"node": ">=16.17.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/lint-staged/node_modules/is-stream": {
|
"node_modules/lint-staged/node_modules/is-stream": {
|
||||||
@@ -34431,6 +34455,15 @@
|
|||||||
"url": "https://github.com/sponsors/sindresorhus"
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/lint-staged/node_modules/lilconfig": {
|
||||||
|
"version": "3.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz",
|
||||||
|
"integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==",
|
||||||
|
"dev": true,
|
||||||
|
"engines": {
|
||||||
|
"node": ">=14"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/lint-staged/node_modules/mimic-fn": {
|
"node_modules/lint-staged/node_modules/mimic-fn": {
|
||||||
"version": "4.0.0",
|
"version": "4.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz",
|
||||||
@@ -34485,6 +34518,18 @@
|
|||||||
"url": "https://github.com/sponsors/sindresorhus"
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/lint-staged/node_modules/signal-exit": {
|
||||||
|
"version": "4.1.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
||||||
|
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
||||||
|
"dev": true,
|
||||||
|
"engines": {
|
||||||
|
"node": ">=14"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/sponsors/isaacs"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/lint-staged/node_modules/strip-final-newline": {
|
"node_modules/lint-staged/node_modules/strip-final-newline": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz",
|
||||||
@@ -34498,37 +34543,29 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/lint-staged/node_modules/yaml": {
|
"node_modules/lint-staged/node_modules/yaml": {
|
||||||
"version": "2.3.1",
|
"version": "2.3.4",
|
||||||
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz",
|
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz",
|
||||||
"integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==",
|
"integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 14"
|
"node": ">= 14"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/listr2": {
|
"node_modules/listr2": {
|
||||||
"version": "6.6.1",
|
"version": "8.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/listr2/-/listr2-6.6.1.tgz",
|
"resolved": "https://registry.npmjs.org/listr2/-/listr2-8.0.0.tgz",
|
||||||
"integrity": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==",
|
"integrity": "sha512-u8cusxAcyqAiQ2RhYvV7kRKNLgUvtObIbhOX2NCXqvp1UU32xIg5CT22ykS2TPKJXZWJwtK3IKLiqAGlGNE+Zg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"cli-truncate": "^3.1.0",
|
"cli-truncate": "^4.0.0",
|
||||||
"colorette": "^2.0.20",
|
"colorette": "^2.0.20",
|
||||||
"eventemitter3": "^5.0.1",
|
"eventemitter3": "^5.0.1",
|
||||||
"log-update": "^5.0.1",
|
"log-update": "^6.0.0",
|
||||||
"rfdc": "^1.3.0",
|
"rfdc": "^1.3.0",
|
||||||
"wrap-ansi": "^8.1.0"
|
"wrap-ansi": "^9.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16.0.0"
|
"node": ">=18.0.0"
|
||||||
},
|
|
||||||
"peerDependencies": {
|
|
||||||
"enquirer": ">= 2.3.0 < 3"
|
|
||||||
},
|
|
||||||
"peerDependenciesMeta": {
|
|
||||||
"enquirer": {
|
|
||||||
"optional": true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/listr2/node_modules/ansi-regex": {
|
"node_modules/listr2/node_modules/ansi-regex": {
|
||||||
@@ -34556,9 +34593,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/listr2/node_modules/emoji-regex": {
|
"node_modules/listr2/node_modules/emoji-regex": {
|
||||||
"version": "9.2.2",
|
"version": "10.3.0",
|
||||||
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
|
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz",
|
||||||
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
|
"integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/listr2/node_modules/eventemitter3": {
|
"node_modules/listr2/node_modules/eventemitter3": {
|
||||||
@@ -34568,17 +34605,17 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/listr2/node_modules/string-width": {
|
"node_modules/listr2/node_modules/string-width": {
|
||||||
"version": "5.1.2",
|
"version": "7.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/string-width/-/string-width-7.0.0.tgz",
|
||||||
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
|
"integrity": "sha512-GPQHj7row82Hjo9hKZieKcHIhaAIKOJvFSIZXuCU9OASVZrMNUaZuz++SPVrBjnLsnk4k+z9f2EIypgxf2vNFw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"eastasianwidth": "^0.2.0",
|
"emoji-regex": "^10.3.0",
|
||||||
"emoji-regex": "^9.2.2",
|
"get-east-asian-width": "^1.0.0",
|
||||||
"strip-ansi": "^7.0.1"
|
"strip-ansi": "^7.1.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/sindresorhus"
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
@@ -34600,17 +34637,17 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/listr2/node_modules/wrap-ansi": {
|
"node_modules/listr2/node_modules/wrap-ansi": {
|
||||||
"version": "8.1.0",
|
"version": "9.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz",
|
||||||
"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
|
"integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ansi-styles": "^6.1.0",
|
"ansi-styles": "^6.2.1",
|
||||||
"string-width": "^5.0.1",
|
"string-width": "^7.0.0",
|
||||||
"strip-ansi": "^7.0.1"
|
"strip-ansi": "^7.1.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
||||||
@@ -34833,34 +34870,34 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/log-update": {
|
"node_modules/log-update": {
|
||||||
"version": "5.0.1",
|
"version": "6.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/log-update/-/log-update-5.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/log-update/-/log-update-6.0.0.tgz",
|
||||||
"integrity": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==",
|
"integrity": "sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ansi-escapes": "^5.0.0",
|
"ansi-escapes": "^6.2.0",
|
||||||
"cli-cursor": "^4.0.0",
|
"cli-cursor": "^4.0.0",
|
||||||
"slice-ansi": "^5.0.0",
|
"slice-ansi": "^7.0.0",
|
||||||
"strip-ansi": "^7.0.1",
|
"strip-ansi": "^7.1.0",
|
||||||
"wrap-ansi": "^8.0.1"
|
"wrap-ansi": "^9.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/sindresorhus"
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/log-update/node_modules/ansi-escapes": {
|
"node_modules/log-update/node_modules/ansi-escapes": {
|
||||||
"version": "5.0.0",
|
"version": "6.2.0",
|
||||||
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-5.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.0.tgz",
|
||||||
"integrity": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==",
|
"integrity": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"type-fest": "^1.0.2"
|
"type-fest": "^3.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=14.16"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/sindresorhus"
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
@@ -34906,11 +34943,26 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/log-update/node_modules/emoji-regex": {
|
"node_modules/log-update/node_modules/emoji-regex": {
|
||||||
"version": "9.2.2",
|
"version": "10.3.0",
|
||||||
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
|
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz",
|
||||||
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
|
"integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
|
"node_modules/log-update/node_modules/is-fullwidth-code-point": {
|
||||||
|
"version": "5.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz",
|
||||||
|
"integrity": "sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==",
|
||||||
|
"dev": true,
|
||||||
|
"dependencies": {
|
||||||
|
"get-east-asian-width": "^1.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=18"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/log-update/node_modules/restore-cursor": {
|
"node_modules/log-update/node_modules/restore-cursor": {
|
||||||
"version": "4.0.0",
|
"version": "4.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz",
|
||||||
@@ -34927,18 +34979,34 @@
|
|||||||
"url": "https://github.com/sponsors/sindresorhus"
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/log-update/node_modules/string-width": {
|
"node_modules/log-update/node_modules/slice-ansi": {
|
||||||
"version": "5.1.2",
|
"version": "7.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.0.tgz",
|
||||||
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
|
"integrity": "sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"eastasianwidth": "^0.2.0",
|
"ansi-styles": "^6.2.1",
|
||||||
"emoji-regex": "^9.2.2",
|
"is-fullwidth-code-point": "^5.0.0"
|
||||||
"strip-ansi": "^7.0.1"
|
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=18"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/chalk/slice-ansi?sponsor=1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/log-update/node_modules/string-width": {
|
||||||
|
"version": "7.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/string-width/-/string-width-7.0.0.tgz",
|
||||||
|
"integrity": "sha512-GPQHj7row82Hjo9hKZieKcHIhaAIKOJvFSIZXuCU9OASVZrMNUaZuz++SPVrBjnLsnk4k+z9f2EIypgxf2vNFw==",
|
||||||
|
"dev": true,
|
||||||
|
"dependencies": {
|
||||||
|
"emoji-regex": "^10.3.0",
|
||||||
|
"get-east-asian-width": "^1.0.0",
|
||||||
|
"strip-ansi": "^7.1.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/sindresorhus"
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
@@ -34960,29 +35028,29 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/log-update/node_modules/type-fest": {
|
"node_modules/log-update/node_modules/type-fest": {
|
||||||
"version": "1.4.0",
|
"version": "3.13.1",
|
||||||
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz",
|
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz",
|
||||||
"integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==",
|
"integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=10"
|
"node": ">=14.16"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/sindresorhus"
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/log-update/node_modules/wrap-ansi": {
|
"node_modules/log-update/node_modules/wrap-ansi": {
|
||||||
"version": "8.1.0",
|
"version": "9.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz",
|
||||||
"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
|
"integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ansi-styles": "^6.1.0",
|
"ansi-styles": "^6.2.1",
|
||||||
"string-width": "^5.0.1",
|
"string-width": "^7.0.0",
|
||||||
"strip-ansi": "^7.0.1"
|
"strip-ansi": "^7.1.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
||||||
|
Reference in New Issue
Block a user