Skip to content

Commit

Permalink
chore(deps): update taiga-ui (#650)
Browse files Browse the repository at this point in the history
Co-authored-by: Nikita Barsukov <[email protected]>
  • Loading branch information
taiga-family-bot and nsbarsukov authored Nov 9, 2023
1 parent 423cb63 commit 5006d74
Show file tree
Hide file tree
Showing 8 changed files with 1,028 additions and 1,110 deletions.
2,104 changes: 1,011 additions & 1,093 deletions package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@
"@nrwl/tao": "13.1.4",
"@nrwl/web": "13.4.2",
"@nrwl/workspace": "13.1.4",
"@taiga-ui/commitlint-config": "0.3.2",
"@taiga-ui/cspell-config": "0.18.0",
"@taiga-ui/eslint-plugin-experience": "0.12.2",
"@taiga-ui/prettier-config": "0.4.0",
"@taiga-ui/commitlint-config": "0.3.3",
"@taiga-ui/cspell-config": "0.19.0",
"@taiga-ui/eslint-plugin-experience": "0.19.1",
"@taiga-ui/prettier-config": "0.4.1",
"@taiga-ui/stylelint-config": "0.6.0",
"@tinkoff/eslint-config": "1.54.4",
"@tinkoff/eslint-config-react": "1.54.4",
Expand Down
16 changes: 8 additions & 8 deletions projects/demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
"@ng-web-apis/universal": "3.0.7",
"@nguniversal/express-engine": "12.1.3",
"@stackblitz/sdk": "1.9.0",
"@taiga-ui/addon-doc": "3.51.0",
"@taiga-ui/addon-mobile": "3.51.0",
"@taiga-ui/cdk": "3.51.0",
"@taiga-ui/core": "3.51.0",
"@taiga-ui/icons": "3.51.0",
"@taiga-ui/kit": "3.51.0",
"@taiga-ui/styles": "3.51.0",
"@taiga-ui/testing": "3.51.0",
"@taiga-ui/addon-doc": "3.53.0",
"@taiga-ui/addon-mobile": "3.53.0",
"@taiga-ui/cdk": "3.53.0",
"@taiga-ui/core": "3.53.0",
"@taiga-ui/icons": "3.53.0",
"@taiga-ui/kit": "3.53.0",
"@taiga-ui/styles": "3.53.0",
"@taiga-ui/testing": "3.53.0",
"@tinkoff/ng-dompurify": "4.0.0",
"dompurify": "3.0.6",
"ngx-markdown": "10.1.1",
Expand Down
2 changes: 1 addition & 1 deletion projects/demo/src/app/app.browser.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import {DocExamplePrimaryTabsIconsModule} from './modules/example-primary-tabs-i
import {LogoModule} from './modules/logo/logo.module';

@NgModule({
bootstrap: [AppComponent],
imports: [
BrowserModule.withServerTransition({
appId: 'demo',
Expand All @@ -35,5 +34,6 @@ import {LogoModule} from './modules/logo/logo.module';
],
declarations: [AppComponent],
providers: APP_PROVIDERS,
bootstrap: [AppComponent],
})
export class AppBrowserModule {}
2 changes: 1 addition & 1 deletion projects/demo/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import {NgDompurifySanitizer} from '@tinkoff/ng-dompurify';
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: ['./app.style.less'],
changeDetection: ChangeDetectionStrategy.OnPush,
providers: [
{
provide: TUI_SANITIZER,
useClass: NgDompurifySanitizer,
},
],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class AppComponent {
readonly stackblitzStarterPath = `/${DemoPath.Stackblitz}`;
Expand Down
2 changes: 1 addition & 1 deletion projects/demo/src/app/app.server.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {ServerErrorHandler} from './server-error-handler';

@NgModule({
imports: [AppBrowserModule, ServerModule, UniversalModule],
bootstrap: [AppComponent],
providers: [{provide: ErrorHandler, useClass: ServerErrorHandler}],
bootstrap: [AppComponent],
})
export class AppServerModule {}
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ type GeneratorOptions = Required<
@Component({
selector: 'number-mask-doc',
templateUrl: './number-mask-doc.template.html',
providers: [tuiInputCountOptionsProvider({min: Number.MIN_SAFE_INTEGER})],
changeDetection: ChangeDetectionStrategy.OnPush,
providers: [tuiInputCountOptionsProvider({min: Number.MIN_SAFE_INTEGER})],
})
export class NumberMaskDocComponent implements GeneratorOptions {
@ViewChild('apiPageInput', {read: ElementRef})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import {StackblitzService} from '../../stackblitz.service';
></tui-loader>
`,
styleUrls: ['./stackblitz-starter.style.less'],
providers: [StackblitzService],
changeDetection: ChangeDetectionStrategy.OnPush,
providers: [StackblitzService],
})
export class StackblitzStarterComponent implements OnInit {
constructor(
Expand Down

0 comments on commit 5006d74

Please sign in to comment.