Skip to content

Commit ac0d777

Browse files
committed
Build for m-accordion snippet
1 parent 7e54dd2 commit ac0d777

File tree

7 files changed

+27
-7
lines changed

7 files changed

+27
-7
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## 7.0.0
44
* Material
55
* m-drag-drop-box
6+
* m-accordion
67

78
## 6.2.0
89
* Testing Snippets

README.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ Visual Studio Code TypeScript and Html snippets and code examples for Angular 2,
66

77
All code snippets are based on and follow the Angular style guide https://angular.io/docs/ts/latest/guide/style-guide.html
88

9+
The source for the snippets come from:
10+
https://angular.io/
11+
https://material.angular.io/
12+
https://github.com/angular/flex-layout
13+
https://github.com/ngrx/platform
14+
https://github.com/ngxs
15+
https://jestjs.io
16+
and most of all, none of this would exist without the help of all the contributers for fixing, enhancing, testing and making suggestions.
17+
918
# Snippet Prefixes
1019

1120
| Prefix | Description |
@@ -71,7 +80,6 @@ You don't need to type any dashes: "ngrxr" -> "ng-rx-reducer" snippet
7180

7281
| Snippet | Description |
7382
| ------- | ----------|
74-
| "": "ng-material-module | "": "App Material Module |
7583
| cli-cheatsheet | Cli Cheat Sheet |
7684
| e-atbr | ExpectAsync toBeResolved |
7785
| e-ntb | Expect Not toBe |
@@ -120,6 +128,7 @@ You don't need to type any dashes: "ngrxr" -> "ng-rx-reducer" snippet
120128
| fx-layout-gap | Flex Layout Gap Property |
121129
| fx-row | Flex Layout Row |
122130
| fx-row-reverse | Flex Layout Reverse Row |
131+
| m-accordion> | Material Accordion |
123132
| m-button | Rectangular Material button w/ no elevation. |
124133
| m-button-fab | Circular button w/ elevation. |
125134
| m-button-fab-mini | Small circular button w/ elevation. |
@@ -218,6 +227,7 @@ You don't need to type any dashes: "ngrxr" -> "ng-rx-reducer" snippet
218227
| ng-import | import module or component from path; |
219228
| ng-input | Class Input Property |
220229
| ng-interpolation | Interpolation: {{ interpolation }} |
230+
| ng-material-module | Material Module |
221231
| ng-model | ngModel directive: [(ngModel)]=\"name\" |
222232
| ng-module | Feature Module |
223233
| ng-module-root | App root module |

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "Angular-BeastCode",
33
"publisher": "Mikael",
44
"displayName": "Angular 7 Snippets - TypeScript, Html, Angular Material, ngRx, RxJS & Flex Layout",
5-
"description": "226 Angular Snippets (TypeScript, Html, Angular Material, Flex Layout, ngRx, RxJS, PWA & Testing) Updated for v7.0.0",
5+
"description": "227 Angular Snippets (TypeScript, Html, Angular Material, Flex Layout, ngRx, RxJS, PWA & Testing) Updated for v7.0.0",
66
"icon": "images/Angular4.png",
77
"license": "MIT",
88
"repository": {

snippets/html.json

+1-1
Large diffs are not rendered by default.

snippets/typescript.json

+1-1
Large diffs are not rendered by default.

src/README_top.md

+9
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ Visual Studio Code TypeScript and Html snippets and code examples for Angular 2,
66

77
All code snippets are based on and follow the Angular style guide https://angular.io/docs/ts/latest/guide/style-guide.html
88

9+
The source for the snippets come from:
10+
https://angular.io/
11+
https://material.angular.io/
12+
https://github.com/angular/flex-layout
13+
https://github.com/ngrx/platform
14+
https://github.com/ngxs
15+
https://jestjs.io
16+
and most of all, none of this would exist without the help of all the contributers for fixing, enhancing, testing and making suggestions.
17+
918
# Snippet Prefixes
1019

1120
| Prefix | Description |

src/snippets.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -250,9 +250,9 @@
250250
]
251251
},
252252
"Angular Material Module": {
253-
"prefix": "ng-material-module",
254-
"description": "App Material Module",
255-
"types": "typescript",
253+
"prefix": "ng-material-module",
254+
"description": "Material Module",
255+
"types": "typescript",
256256
"body": [
257257
"import {NgModule} from '@angular/core';",
258258
"import {",

0 commit comments

Comments
 (0)