Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update taiga-ui dev infra to v0.220.0 #1481

Merged
merged 2 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 36 additions & 36 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,24 +91,24 @@
"@swc/core": "1.7.28",
"@swc/helpers": "0.5.13",
"@taiga-ui/addon-doc": "4.9.0",
"@taiga-ui/auto-changelog-config": "0.219.0",
"@taiga-ui/browserslist-config": "0.219.0",
"@taiga-ui/auto-changelog-config": "0.220.0",
"@taiga-ui/browserslist-config": "0.220.0",
"@taiga-ui/cdk": "4.9.0",
"@taiga-ui/commitlint-config": "0.219.0",
"@taiga-ui/commitlint-config": "0.220.0",
"@taiga-ui/core": "4.9.0",
"@taiga-ui/eslint-plugin-experience": "0.219.0",
"@taiga-ui/eslint-plugin-experience": "0.220.0",
"@taiga-ui/event-plugins": "4.2.4",
"@taiga-ui/icons": "4.9.0",
"@taiga-ui/layout": "4.9.0",
"@taiga-ui/legacy": "4.9.0",
"@taiga-ui/polymorpheus": "4.7.4",
"@taiga-ui/prettier-config": "0.219.0",
"@taiga-ui/release-it-config": "0.219.0",
"@taiga-ui/stylelint-config": "0.219.0",
"@taiga-ui/prettier-config": "0.220.0",
"@taiga-ui/release-it-config": "0.220.0",
"@taiga-ui/stylelint-config": "0.220.0",
"@taiga-ui/styles": "4.9.0",
"@taiga-ui/syncer": "0.219.0",
"@taiga-ui/syncer": "0.220.0",
"@taiga-ui/testing": "4.9.0",
"@taiga-ui/tsconfig": "0.219.0",
"@taiga-ui/tsconfig": "0.220.0",
"@types/express": "5.0.0",
"@types/jasmine": "5.1.4",
"@types/jest": "29.5.13",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {type ChangeDetectorRef, Directive} from '@angular/core';
import type {ChangeDetectorRef} from '@angular/core';
import {Directive} from '@angular/core';
import {TuiNodeViewNg} from '@taiga-ui/editor/extensions/tiptap-node-view';
import type {NodeViewProps} from '@tiptap/core';

Expand Down
15 changes: 6 additions & 9 deletions projects/editor/components/editor/editor.component.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {AsyncPipe, NgIf, NgTemplateOutlet} from '@angular/common';
import type {OnDestroy} from '@angular/core';
import {
ChangeDetectionStrategy,
Component,
Expand All @@ -9,26 +10,23 @@ import {
inject,
Input,
NgZone,
type OnDestroy,
Output,
ViewChild,
} from '@angular/core';
import {takeUntilDestroyed, toSignal} from '@angular/core/rxjs-interop';
import {WA_WINDOW} from '@ng-web-apis/common';
import {
TUI_TRUE_HANDLER,
type TuiBooleanHandler,
tuiInjectElement,
type TuiValueTransformer,
tuiWatch,
} from '@taiga-ui/cdk';
import type {TuiBooleanHandler, TuiValueTransformer} from '@taiga-ui/cdk';
import {
TUI_FALSE_HANDLER,
TUI_TRUE_HANDLER,
TuiActiveZone,
tuiAutoFocusOptionsProvider,
TuiControl,
tuiInjectElement,
tuiWatch,
tuiZonefree,
} from '@taiga-ui/cdk';
import type {TuiDropdownDirective} from '@taiga-ui/core';
import {
TUI_ANIMATIONS_DEFAULT_DURATION,
TUI_APPEARANCE_OPTIONS,
Expand All @@ -37,7 +35,6 @@ import {
tuiAppearanceMode,
tuiAppearanceState,
TuiDropdown,
type TuiDropdownDirective,
TuiScrollbar,
} from '@taiga-ui/core';
import type {AbstractTuiEditor, TuiEditorAttachedFile} from '@taiga-ui/editor/common';
Expand Down
3 changes: 2 additions & 1 deletion projects/editor/components/toolbar-tools/code/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ import {
TUI_EDITOR_TOOLBAR_TEXTS,
} from '@taiga-ui/editor/common';
import {TuiTiptapEditorService} from '@taiga-ui/editor/directives';
import {combineLatest, map, type Observable, of} from 'rxjs';
import type {Observable} from 'rxjs';
import {combineLatest, map, of} from 'rxjs';

@Component({
standalone: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import {TuiButton, TuiHint} from '@taiga-ui/core';
import type {AbstractTuiEditor} from '@taiga-ui/editor/common';
import {TUI_EDITOR_OPTIONS, TUI_EDITOR_TOOLBAR_TEXTS} from '@taiga-ui/editor/common';
import {TuiTiptapEditorService} from '@taiga-ui/editor/directives';
import {map, type Observable} from 'rxjs';
import type {Observable} from 'rxjs';
import {map} from 'rxjs';

@Component({
standalone: true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import {AsyncPipe} from '@angular/common';
import type {OnInit} from '@angular/core';
import {
ChangeDetectionStrategy,
Component,
DestroyRef,
inject,
Input,
type OnInit,
signal,
} from '@angular/core';
import {takeUntilDestroyed} from '@angular/core/rxjs-interop';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import type {AfterViewInit, OnInit} from '@angular/core';
import {
type AfterViewInit,
ChangeDetectionStrategy,
ChangeDetectorRef,
Component,
DestroyRef,
ElementRef,
inject,
type OnInit,
ViewChild,
} from '@angular/core';
import {takeUntilDestroyed} from '@angular/core/rxjs-interop';
Expand Down
Loading