Skip to content

Commit

Permalink
fix(cdk): revert TuiValueChangesException removal
Browse files Browse the repository at this point in the history
  • Loading branch information
dequubi committed Dec 3, 2024
1 parent b18a274 commit 6265d08
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions projects/cdk/exceptions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ export * from './owner-document.exception';
export * from './pure.exception';
export * from './table-sort-key.exception';
export * from './ts-parser.exception';
export * from './value-changes.exception';
export * from './value-present.exception';
export * from './xml-parsing.exception';
5 changes: 5 additions & 0 deletions projects/cdk/exceptions/value-changes.exception.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export class TuiValueChangesException extends Error {
constructor() {
super(ngDevMode ? 'Control does not have valueChanges' : '');
}
}

0 comments on commit 6265d08

Please sign in to comment.