Skip to content

Commit

Permalink
fix(@schematics/angular): remove Native value from viewEncapsulation …
Browse files Browse the repository at this point in the history
…option

(cherry picked from commit ee4918d)
  • Loading branch information
mouadennaciri authored and alan-agius4 committed Mar 16, 2021
1 parent bd5c279 commit 000d47a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/schematics/angular/application/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"viewEncapsulation": {
"description": "The view encapsulation strategy to use in the new app.",
"enum": ["Emulated", "Native", "None", "ShadowDom"],
"enum": ["Emulated", "None", "ShadowDom"],
"type": "string",
"x-user-analytics": 11
},
Expand Down
2 changes: 1 addition & 1 deletion packages/schematics/angular/component/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
},
"viewEncapsulation": {
"description": "The view encapsulation strategy to use in the new component.",
"enum": ["Emulated", "Native", "None", "ShadowDom"],
"enum": ["Emulated", "None", "ShadowDom"],
"type": "string",
"alias": "v",
"x-user-analytics": 11
Expand Down
2 changes: 1 addition & 1 deletion packages/schematics/angular/ng-new/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
},
"viewEncapsulation": {
"description": "The view encapsulation strategy to use in the initial project.",
"enum": ["Emulated", "Native", "None", "ShadowDom"],
"enum": ["Emulated", "None", "ShadowDom"],
"type": "string",
"x-user-analytics": 11
},
Expand Down

0 comments on commit 000d47a

Please sign in to comment.