Skip to content

Commit 193783f

Browse files
Clarify component types
1 parent 647c50f commit 193783f

File tree

1 file changed

+4
-4
lines changed
  • packages/devextreme-schematics/src/migrate-config-components

1 file changed

+4
-4
lines changed

packages/devextreme-schematics/src/migrate-config-components/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# migrate-config-components
22

3-
A schematic that migrates old DevExtreme configuration components.
3+
A schematic that migrates generic DevExtreme configuration components.
44

55
## Description
66

7-
This schematic automatically migrates old DevExtreme Angular configuration components. The migration command is available as a top-level DevExtreme CLI command that you can run from any directory.
7+
This schematic automatically migrates generic configuration components to named configuration components in your DevExtreme-powered Angular app. The migration command is available as a top-level DevExtreme CLI command that you can run from any directory.
88

99
## Usage
1010

@@ -51,15 +51,15 @@ ng g devextreme-schematics:migrate-config-components
5151

5252
## Sample results
5353

54-
**Old configuration components:**
54+
**Generic configuration components:**
5555
```html
5656
<dx-data-grid>
5757
<dxi-column field="name"></dxi-column>
5858
<dxi-column field="age"></dxi-column>
5959
</dx-data-grid>
6060
```
6161

62-
**New configuration components:**
62+
**Named configuration components:**
6363
```html
6464
<dx-data-grid>
6565
<dxi-data-grid-column field="name"></dxi-data-grid-column>

0 commit comments

Comments
 (0)