Skip to content

Commit

Permalink
feat(cdk)!: add configuration to tuiGetClosestFocusableElement (#2436)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Aug 25, 2022
1 parent a4dce9b commit b027c87
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions projects/addon-editor/styles/editor-socket.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ body.tui-editor-socket {
font-size: 15px;
font-family: tuiText, 'Manrope', sans-serif;
line-height: 24px;
white-space: pre-wrap;
}

.tui-editor-socket ul,
Expand Down
2 changes: 1 addition & 1 deletion projects/cdk/constants/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const TUI_VERSION = `2.61.0`;
export const TUI_VERSION = `3.0.0-rc.3`;
4 changes: 2 additions & 2 deletions projects/demo/src/modules/info/testing/jest/jest.module.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {CommonModule} from '@angular/common';
import {NgModule} from '@angular/core';
import {RouterModule} from '@angular/router';
import {generateRoutes, TuiAddonDocModule} from '@taiga-ui/addon-doc';
import {TuiAddonDocModule, tuiGenerateRoutes} from '@taiga-ui/addon-doc';
import {TuiLinkModule} from '@taiga-ui/core';

import {JestComponent} from './jest.component';
Expand All @@ -12,7 +12,7 @@ import {JestComponent} from './jest.component';
CommonModule,
TuiAddonDocModule,
TuiLinkModule,
RouterModule.forChild(generateRoutes(JestComponent)),
RouterModule.forChild(tuiGenerateRoutes(JestComponent)),
],
})
export class JestModule {}

0 comments on commit b027c87

Please sign in to comment.