Skip to content

Commit

Permalink
fix(cdk): add tuiControlValue to schematic
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirpotekhin committed Nov 29, 2022
1 parent 945cf2f commit 185ea8d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion projects/cdk/observables/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './control-value';
export * from './drag-and-drop-from';
export * from './focus-visible-observable';
export * from './is-alive';
Expand All @@ -7,7 +8,6 @@ export * from './mouse-drag-finish-from';
export * from './must-be-present';
export * from './pressed-observable';
export * from './prevent-default';
export * from './replay-control-value-changes';
export * from './stop-propagation';
export * from './typed-from-event';
export * from './watch';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {AbstractControl, FormControl} from '@angular/forms';
import {tuiControlValue} from '@taiga-ui/cdk';
import {skip} from 'rxjs/operators';

describe(`tuiReplayedValueChangesFrom`, () => {
describe(`tuiControlValue`, () => {
it(`takes control and starts with its value`, fakeAsync(() => {
let actual = ``;
const control = new FormControl(`hello`);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
import {TypeToRename} from './types';

export const DEPRECATED_FUNCTIONS: readonly TypeToRename[] = [
{
from: 'tuiReplayedValueChangesFrom',
to: 'tuiControlValue',
moduleSpecifier: ['@taiga-ui/cdk'],
},
{
from: 'controlPoint',
to: 'tuiControlPoint',
Expand Down

0 comments on commit 185ea8d

Please sign in to comment.