ngComponentUtility icon indicating copy to clipboard operation
ngComponentUtility copied to clipboard

An extension for VS Code to support AngularJS 1.5/1.6 development

Results 18 ngComponentUtility issues
Sort by recently updated
recently updated
newest added

Snyk has created this PR to fix one or more vulnerable packages in the `npm` dependencies of this project. ![merge advice](https://app.snyk.io/badges/merge-advice/?package_manager=npm&package_name=lodash&from_version=4.17.15&to_version=4.17.17&pr_id=1a5a4009-16a7-44cc-a090-1fd639d367fd&visibility=true&has_feature_flag=false) #### Changes included in this PR - Changes to...

Snyk has created this PR to fix one or more vulnerable packages in the `npm` dependencies of this project. ![merge advice](https://app.snyk.io/badges/merge-advice/?package_manager=npm&package_name=lodash&from_version=4.17.15&to_version=4.17.20&pr_id=c68a0390-7e02-4136-a055-a749ac2a3c2d&visibility=true&has_feature_flag=false) #### Changes included in this PR - Changes to...

Snyk has created this PR to fix one or more vulnerable packages in the `npm` dependencies of this project. ![merge advice](https://app.snyk.io/badges/merge-advice/?package_manager=npm&package_name=lodash&from_version=4.17.15&to_version=4.17.16&pr_id=9344c35c-25c5-4ce4-8b31-ea3fdbeb21a8) #### Changes included in this PR - Changes to...

Bumps [angular](https://github.com/angular/angular.js) from 1.4.9 to 1.8.0. Changelog Sourced from angular's changelog. 1.8.0 nested-vaccination (2020-06-01) This release contains a breaking change to resolve a security issue which was discovered by Krzysztof...

dependencies

- Issue Type: `Performance` - Extension Name: `vscode-angular-components-intellisense` - Extension Version: `1.0.0` - OS Version: `Windows_NT x64 10.0.18363` - VSCode version: `1.45.1` :warning: Make sure to **attach** this file from...

register a component like this: ```typescript // my-input.component.ts import { IComponentOptions, IController, INgModelController } from 'angular'; export const myInput: IComponentOptions = { template: require('./my-input.component.html'), require: { ngModelCtrl: '^ngModel' }, controller:...

help wanted

ui-router supports defining templates as subviews. See [views](https://ui-router.github.io/ng1/docs/latest/interfaces/ng1.ng1statedeclaration.html#views). This supports components, inline templates and inline URLs in 2 flavors (as a config object and as a string): ```js .state('userlist', {...

Split from #16 The following configuration does not work: ```TS export abstract class BaseComponent implements ng.IComponentOptions { constructor(public controller: ng.Injectable) { } public template: string = require("./template.html"); } export class...

enhancement