Skip to content

Commit

Permalink
0.4.1 - Change cascading value snippet for consistency.
Browse files Browse the repository at this point in the history
  • Loading branch information
scottsauber committed Nov 17, 2018
1 parent 323d945 commit 060b9f9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,7 @@
# Change Log

0.4.0 - 11/16/2018 - Changed CascadingValue component to be `bccv` for consistency with other Blazor Component snippets that start with bc + cv for cascading value.

0.4.0 - 11/16/2018 - Added support for <CascadingValue> component via `bcv`.

0.3.2 - 11/7/2018 - Added @if @else snippet via `bife`.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -21,7 +21,7 @@ Blazor Snippets for VS Code provides common snippets for writing Blazor apps in
| `bc` | Create a blank Blazor Component. |
| `bchttp` | Create a Blazor Component with an HTTP call. |
| `bcchild` | Create a Blazor Child Component that accepts a parameter. |
| `bcv` | Create a Blazor <CascadingValue> Component |
| `bccv` | Create a Blazor <CascadingValue> Component |

## Blazor Razor Snippets

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -3,7 +3,7 @@
"displayName": "Blazor Snippets",
"description": "Blazor Snippets for VS Code",
"icon": "images/logo.png",
"version": "0.4.0",
"version": "0.4.1",
"publisher": "ScottSauber",
"engines": {
"vscode": "^1.28.0"
Expand Down
2 changes: 1 addition & 1 deletion snippets/components.json
Expand Up @@ -39,7 +39,7 @@
"}"]
},
"BlazorCascadingValueComponent" :{
"prefix": "bcv",
"prefix": "bccv",
"description": "Create a Blazor CascadingValue component.",
"body": ["<CascadingValue Value=\"@$1\">",
" <${2:ChildComponent} $3/>",
Expand Down

0 comments on commit 060b9f9

Please sign in to comment.