-
Notifications
You must be signed in to change notification settings - Fork 472
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: drop
MyModule
in md files (#7312)
- Loading branch information
Showing
175 changed files
with
549 additions
and
379 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 4 additions & 3 deletions
7
projects/demo/src/modules/components/avatar/examples/import/import.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
```ts | ||
import {NgModule} from '@angular/core'; | ||
import {Component} from '@angular/core'; | ||
import {TuiAvatarModule} from '@taiga-ui/kit'; | ||
// ... | ||
|
||
@NgModule({ | ||
@Component({ | ||
standalone: true, | ||
imports: [ | ||
// ... | ||
TuiAvatarModule, | ||
], | ||
}) | ||
export class MyModule {} | ||
export class MyComponent {} | ||
``` |
7 changes: 4 additions & 3 deletions
7
...demo/src/modules/components/badge-notification/examples/import/import-module.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
```ts | ||
import {NgModule} from '@angular/core'; | ||
import {Component} from '@angular/core'; | ||
import {TuiBadgeNotificationComponent} from '@taiga-ui/kit'; | ||
// ... | ||
|
||
@NgModule({ | ||
@Component({ | ||
standalone: true, | ||
imports: [ | ||
// ... | ||
TuiBadgeNotificationComponent, | ||
], | ||
}) | ||
export class MyModule {} | ||
export class MyComponent {} | ||
``` |
7 changes: 4 additions & 3 deletions
7
projects/demo/src/modules/components/badge/examples/import/import-module.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
```ts | ||
import {NgModule} from '@angular/core'; | ||
import {Component} from '@angular/core'; | ||
import {TuiBadgeDirective} from '@taiga-ui/kit'; | ||
// ... | ||
|
||
@NgModule({ | ||
@Component({ | ||
standalone: true, | ||
imports: [ | ||
// ... | ||
TuiBadgeDirective, | ||
], | ||
}) | ||
export class MyModule {} | ||
export class MyComponent {} | ||
``` |
7 changes: 4 additions & 3 deletions
7
projects/demo/src/modules/components/badged-content/examples/import/import.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
```ts | ||
import {NgModule} from '@angular/core'; | ||
import {Component} from '@angular/core'; | ||
import {TuiBadgedContentComponent} from '@taiga-ui/kit'; | ||
// ... | ||
|
||
@NgModule({ | ||
@Component({ | ||
standalone: true, | ||
imports: [ | ||
// ... | ||
TuiBadgedContentComponent, | ||
], | ||
}) | ||
export class MyModule {} | ||
export class MyComponent {} | ||
``` |
2 changes: 1 addition & 1 deletion
2
...ects/demo/src/modules/components/block-details/examples/import/import-module.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 4 additions & 3 deletions
7
projects/demo/src/modules/components/button-close/examples/import/import.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
```ts | ||
import {NgModule} from '@angular/core'; | ||
import {Component} from '@angular/core'; | ||
import {TuiButtonDirective} from '@taiga-ui/core'; | ||
import {TuiButtonCloseDirective} from '@taiga-ui/kit'; | ||
// ... | ||
|
||
@NgModule({ | ||
@Component({ | ||
standalone: true, | ||
imports: [ | ||
// ... | ||
TuiButtonDirective, | ||
TuiButtonCloseDirective, | ||
], | ||
}) | ||
export class MyModule {} | ||
export class MyComponent {} | ||
``` |
Oops, something went wrong.