├── .editorconfig ├── .gitignore ├── .npmignore ├── .npmrc ├── .travis.yml ├── .vscode └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SUMMARY.md ├── assets └── logo │ └── ngMetadata.png ├── book.json ├── common.ts ├── core.ts ├── docs ├── FAQ.md ├── api │ ├── README.md │ ├── common │ │ ├── README.md │ │ ├── directive.md │ │ └── pipe.md │ ├── core │ │ ├── README.md │ │ ├── class.md │ │ ├── decorator.md │ │ ├── enum.md │ │ ├── function.md │ │ └── interface.md │ ├── ng-1-misc │ │ └── README.md │ ├── platform-browser-dynamic │ │ ├── README.md │ │ ├── class.md │ │ └── function.md │ ├── router-deprecated │ │ ├── README.md │ │ ├── class.md │ │ └── interface.md │ ├── testing │ │ ├── README.md │ │ └── function.md │ └── upgrade │ │ ├── README.md │ │ ├── class.md │ │ └── function.md └── recipes │ ├── README.md │ ├── bootstrap.md │ ├── component.md │ ├── constant.md │ ├── deprecated-router.md │ ├── directive.md │ ├── factory.md │ ├── migration-from-ng-metadata-1.x.md │ ├── ng-upgrade.md │ ├── pipe.md │ ├── provider.md │ ├── service.md │ ├── startup-logic.md │ ├── ui-router.md │ └── value.md ├── manual_typings ├── angular-extension.d.ts ├── globals.d.ts └── overrides │ └── angular │ └── index.d.ts ├── package.json ├── platform-browser-dynamic.ts ├── playground ├── README.md ├── app │ ├── app.component.html │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ ├── async-example │ │ │ ├── async-example.component.ts │ │ │ └── async-example.module.ts │ │ ├── attribute-directive │ │ │ ├── attribute-directive-example.component.ts │ │ │ ├── attribute-directive.module.ts │ │ │ └── highlight.directive.ts │ │ ├── change-detector │ │ │ ├── change-detector.component.ts │ │ │ └── index.ts │ │ ├── lifecycle │ │ │ ├── after-content.component.ts │ │ │ ├── after-view.component.ts │ │ │ ├── do-check-parent.component.html │ │ │ ├── do-check.component.ts │ │ │ ├── index.ts │ │ │ ├── logger.service.ts │ │ │ ├── on-changes-parent.component.html │ │ │ └── on-changes.component.ts │ │ ├── tabs │ │ │ ├── contentChild.ts │ │ │ ├── index.ts │ │ │ ├── tabs.ts │ │ │ └── viewChild.ts │ │ ├── tester │ │ │ └── tester.component.ts │ │ └── title │ │ │ ├── index.ts │ │ │ └── title-handler.component.ts │ ├── directives │ │ ├── element-ready.directive.ts │ │ ├── global-listener.directive.ts │ │ ├── my-directive-tester.directive.ts │ │ ├── my-foo.directive.ts │ │ ├── my-form-bridge.directive.ts │ │ ├── my-tester.directive.ts │ │ └── my-validator.directive.ts │ ├── index.ts │ ├── main.ts │ ├── shared │ │ ├── index.ts │ │ └── services │ │ │ ├── ng-log.service.ts │ │ │ └── ng-timeout.service.ts │ └── todo │ │ ├── add-todo.component.ts │ │ ├── add-todo.html │ │ ├── remaining-todos.pipe.ts │ │ ├── todo-app.component.ts │ │ ├── todo-app.html │ │ ├── todo-item.component.ts │ │ ├── todo-item.html │ │ ├── todo-store.service.ts │ │ └── todo.module.ts ├── index.html ├── ng-metadata.legacy.d.ts ├── style.css ├── todo-app-components.png └── tsconfig.json ├── router-deprecated.ts ├── scripts └── release.sh ├── src ├── common │ ├── directives.ts │ ├── directives │ │ ├── core_directives.ts │ │ ├── ng_form.ts │ │ ├── ng_model.ts │ │ └── ng_select.ts │ ├── pipes.ts │ ├── pipes │ │ ├── async_pipe.ts │ │ └── common_pipes.ts │ └── services.ts ├── core │ ├── change_detection.ts │ ├── change_detection │ │ ├── change_detection_util.ts │ │ ├── change_detector_ref.ts │ │ ├── changes_queue.ts │ │ └── constants.ts │ ├── di.ts │ ├── di │ │ ├── decorators.ts │ │ ├── forward_ref.ts │ │ ├── key.ts │ │ ├── metadata.ts │ │ ├── opaque_token.ts │ │ ├── provider.ts │ │ ├── provider_util.ts │ │ └── reflective_provider.ts │ ├── directives.ts │ ├── directives │ │ ├── binding │ │ │ ├── binding_factory.ts │ │ │ ├── binding_parser.ts │ │ │ └── constants.ts │ │ ├── constants.ts │ │ ├── controller │ │ │ ├── constants.ts │ │ │ └── controller_factory.ts │ │ ├── decorators.ts │ │ ├── directive_provider.ts │ │ ├── directives_utils.ts │ │ ├── host │ │ │ ├── constants.ts │ │ │ ├── host_parser.ts │ │ │ └── host_resolver.ts │ │ ├── metadata_di.ts │ │ ├── metadata_directives.ts │ │ └── query │ │ │ └── children_resolver.ts │ ├── linker.ts │ ├── linker │ │ ├── directive_lifecycle_interfaces.ts │ │ ├── directive_lifecycles_reflector.ts │ │ ├── directive_resolver.ts │ │ └── pipe_resolver.ts │ ├── pipes.ts │ ├── pipes │ │ ├── decorators.ts │ │ ├── metadata.ts │ │ ├── pipe_interfaces.ts │ │ └── pipe_provider.ts │ ├── reflection.ts │ ├── reflection │ │ ├── platform_reflection_capabilities.ts │ │ ├── reflection.ts │ │ ├── reflection_capabilities.ts │ │ ├── reflector.ts │ │ ├── reflector_reader.ts │ │ └── types.ts │ ├── util.ts │ └── util │ │ ├── bundler.ts │ │ └── decorators.ts ├── facade │ ├── async.ts │ ├── collections.ts │ ├── exceptions.ts │ ├── facade.ts │ ├── lang.ts │ ├── primitives.ts │ └── type.ts ├── platform │ ├── browser.ts │ ├── browser_utils.ts │ └── title.ts ├── router-deprecated │ ├── index.ts │ ├── instructions.ts │ ├── interfaces.ts │ ├── route_definition.ts │ ├── route_registry.ts │ └── router.ts ├── testing │ └── utils.ts └── upgrade │ ├── static │ ├── downgrade_component.ts │ ├── downgrade_injectable.ts │ ├── static.ts │ └── upgrade_injectable.ts │ ├── upgrade.ts │ └── upgrade_adapter.ts ├── test ├── common │ └── pipes │ │ └── async_pipe.spec.ts ├── core │ ├── change_detection │ │ ├── change_detection_util.spec.ts │ │ └── changes_queue.spec.ts │ ├── di │ │ ├── decorators.spec.ts │ │ ├── forward_ref.spec.ts │ │ ├── key.spec.ts │ │ ├── provider.spec.ts │ │ └── reflective_provider.spec.ts │ ├── directives │ │ ├── binding │ │ │ ├── binding_factory.spec.ts │ │ │ └── binding_parser.spec.ts │ │ ├── controller │ │ │ └── controller_factory.spec.ts │ │ ├── directive_provider.spec.ts │ │ ├── directives_utils.spec.ts │ │ ├── host │ │ │ ├── host_parser.spec.ts │ │ │ └── host_resolver.spec.ts │ │ └── query │ │ │ └── children_resolver.spec.ts │ ├── linker │ │ ├── directive_lifecycles_reflector.spec.ts │ │ ├── directive_resolver.spec.ts │ │ └── pipe_resolver.spec.ts │ ├── pipes │ │ └── pipe_provider.spec.ts │ ├── reflection │ │ └── reflection.spec.ts │ └── util │ │ ├── bundler.spec.ts │ │ └── decorators.spec.ts ├── facade │ ├── async.spec.ts │ ├── collections.spec.ts │ ├── lang.spec.ts │ └── primitives.spec.ts ├── index.ts ├── upgrade │ ├── static │ │ ├── downgrade_component.spec.ts │ │ ├── downgrade_injectable.spec.ts │ │ └── upgrade_injectable.spec.ts │ └── upgrade_adapter.spec.ts └── utils.ts ├── testing.ts ├── tsconfig.json └── upgrade.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": false 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /assets/logo/ngMetadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/assets/logo/ngMetadata.png -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "ng-metadata" 3 | } 4 | -------------------------------------------------------------------------------- /common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/common.ts -------------------------------------------------------------------------------- /core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/core.ts -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/api/README.md -------------------------------------------------------------------------------- /docs/api/common/README.md: -------------------------------------------------------------------------------- 1 | # ng-metadata/common 2 | -------------------------------------------------------------------------------- /docs/api/common/directive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/api/common/directive.md -------------------------------------------------------------------------------- /docs/api/common/pipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/api/common/pipe.md -------------------------------------------------------------------------------- /docs/api/core/README.md: -------------------------------------------------------------------------------- 1 | # ng-metadata/core 2 | -------------------------------------------------------------------------------- /docs/api/core/class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/api/core/class.md -------------------------------------------------------------------------------- /docs/api/core/decorator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/api/core/decorator.md -------------------------------------------------------------------------------- /docs/api/core/enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/api/core/enum.md -------------------------------------------------------------------------------- /docs/api/core/function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/api/core/function.md -------------------------------------------------------------------------------- /docs/api/core/interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/api/core/interface.md -------------------------------------------------------------------------------- /docs/api/ng-1-misc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/api/ng-1-misc/README.md -------------------------------------------------------------------------------- /docs/api/platform-browser-dynamic/README.md: -------------------------------------------------------------------------------- 1 | # ng-metadata/platform-browser-dynamic 2 | -------------------------------------------------------------------------------- /docs/api/platform-browser-dynamic/class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/api/platform-browser-dynamic/class.md -------------------------------------------------------------------------------- /docs/api/platform-browser-dynamic/function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/api/platform-browser-dynamic/function.md -------------------------------------------------------------------------------- /docs/api/router-deprecated/README.md: -------------------------------------------------------------------------------- 1 | # ng-metadata/router-deprecated 2 | -------------------------------------------------------------------------------- /docs/api/router-deprecated/class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/api/router-deprecated/class.md -------------------------------------------------------------------------------- /docs/api/router-deprecated/interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/api/router-deprecated/interface.md -------------------------------------------------------------------------------- /docs/api/testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/api/testing/README.md -------------------------------------------------------------------------------- /docs/api/testing/function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/api/testing/function.md -------------------------------------------------------------------------------- /docs/api/upgrade/README.md: -------------------------------------------------------------------------------- 1 | # ng-metadata/upgrade 2 | -------------------------------------------------------------------------------- /docs/api/upgrade/class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/api/upgrade/class.md -------------------------------------------------------------------------------- /docs/api/upgrade/function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/api/upgrade/function.md -------------------------------------------------------------------------------- /docs/recipes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/recipes/README.md -------------------------------------------------------------------------------- /docs/recipes/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/recipes/bootstrap.md -------------------------------------------------------------------------------- /docs/recipes/component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/recipes/component.md -------------------------------------------------------------------------------- /docs/recipes/constant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/recipes/constant.md -------------------------------------------------------------------------------- /docs/recipes/deprecated-router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/recipes/deprecated-router.md -------------------------------------------------------------------------------- /docs/recipes/directive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/recipes/directive.md -------------------------------------------------------------------------------- /docs/recipes/factory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/recipes/factory.md -------------------------------------------------------------------------------- /docs/recipes/migration-from-ng-metadata-1.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/recipes/migration-from-ng-metadata-1.x.md -------------------------------------------------------------------------------- /docs/recipes/ng-upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/recipes/ng-upgrade.md -------------------------------------------------------------------------------- /docs/recipes/pipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/recipes/pipe.md -------------------------------------------------------------------------------- /docs/recipes/provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/recipes/provider.md -------------------------------------------------------------------------------- /docs/recipes/service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/recipes/service.md -------------------------------------------------------------------------------- /docs/recipes/startup-logic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/recipes/startup-logic.md -------------------------------------------------------------------------------- /docs/recipes/ui-router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/recipes/ui-router.md -------------------------------------------------------------------------------- /docs/recipes/value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/docs/recipes/value.md -------------------------------------------------------------------------------- /manual_typings/angular-extension.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/manual_typings/angular-extension.d.ts -------------------------------------------------------------------------------- /manual_typings/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/manual_typings/globals.d.ts -------------------------------------------------------------------------------- /manual_typings/overrides/angular/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/manual_typings/overrides/angular/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/package.json -------------------------------------------------------------------------------- /platform-browser-dynamic.ts: -------------------------------------------------------------------------------- 1 | export * from './src/platform/browser'; 2 | -------------------------------------------------------------------------------- /playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/README.md -------------------------------------------------------------------------------- /playground/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/app.component.html -------------------------------------------------------------------------------- /playground/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/app.component.ts -------------------------------------------------------------------------------- /playground/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/app.module.ts -------------------------------------------------------------------------------- /playground/app/components/async-example/async-example.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/async-example/async-example.component.ts -------------------------------------------------------------------------------- /playground/app/components/async-example/async-example.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/async-example/async-example.module.ts -------------------------------------------------------------------------------- /playground/app/components/attribute-directive/attribute-directive-example.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/attribute-directive/attribute-directive-example.component.ts -------------------------------------------------------------------------------- /playground/app/components/attribute-directive/attribute-directive.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/attribute-directive/attribute-directive.module.ts -------------------------------------------------------------------------------- /playground/app/components/attribute-directive/highlight.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/attribute-directive/highlight.directive.ts -------------------------------------------------------------------------------- /playground/app/components/change-detector/change-detector.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/change-detector/change-detector.component.ts -------------------------------------------------------------------------------- /playground/app/components/change-detector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/change-detector/index.ts -------------------------------------------------------------------------------- /playground/app/components/lifecycle/after-content.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/lifecycle/after-content.component.ts -------------------------------------------------------------------------------- /playground/app/components/lifecycle/after-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/lifecycle/after-view.component.ts -------------------------------------------------------------------------------- /playground/app/components/lifecycle/do-check-parent.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/lifecycle/do-check-parent.component.html -------------------------------------------------------------------------------- /playground/app/components/lifecycle/do-check.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/lifecycle/do-check.component.ts -------------------------------------------------------------------------------- /playground/app/components/lifecycle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/lifecycle/index.ts -------------------------------------------------------------------------------- /playground/app/components/lifecycle/logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/lifecycle/logger.service.ts -------------------------------------------------------------------------------- /playground/app/components/lifecycle/on-changes-parent.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/lifecycle/on-changes-parent.component.html -------------------------------------------------------------------------------- /playground/app/components/lifecycle/on-changes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/lifecycle/on-changes.component.ts -------------------------------------------------------------------------------- /playground/app/components/tabs/contentChild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/tabs/contentChild.ts -------------------------------------------------------------------------------- /playground/app/components/tabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/tabs/index.ts -------------------------------------------------------------------------------- /playground/app/components/tabs/tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/tabs/tabs.ts -------------------------------------------------------------------------------- /playground/app/components/tabs/viewChild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/tabs/viewChild.ts -------------------------------------------------------------------------------- /playground/app/components/tester/tester.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/tester/tester.component.ts -------------------------------------------------------------------------------- /playground/app/components/title/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/title/index.ts -------------------------------------------------------------------------------- /playground/app/components/title/title-handler.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/components/title/title-handler.component.ts -------------------------------------------------------------------------------- /playground/app/directives/element-ready.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/directives/element-ready.directive.ts -------------------------------------------------------------------------------- /playground/app/directives/global-listener.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/directives/global-listener.directive.ts -------------------------------------------------------------------------------- /playground/app/directives/my-directive-tester.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/directives/my-directive-tester.directive.ts -------------------------------------------------------------------------------- /playground/app/directives/my-foo.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/directives/my-foo.directive.ts -------------------------------------------------------------------------------- /playground/app/directives/my-form-bridge.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/directives/my-form-bridge.directive.ts -------------------------------------------------------------------------------- /playground/app/directives/my-tester.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/directives/my-tester.directive.ts -------------------------------------------------------------------------------- /playground/app/directives/my-validator.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/directives/my-validator.directive.ts -------------------------------------------------------------------------------- /playground/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/index.ts -------------------------------------------------------------------------------- /playground/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/main.ts -------------------------------------------------------------------------------- /playground/app/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/shared/index.ts -------------------------------------------------------------------------------- /playground/app/shared/services/ng-log.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/shared/services/ng-log.service.ts -------------------------------------------------------------------------------- /playground/app/shared/services/ng-timeout.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/shared/services/ng-timeout.service.ts -------------------------------------------------------------------------------- /playground/app/todo/add-todo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/todo/add-todo.component.ts -------------------------------------------------------------------------------- /playground/app/todo/add-todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/todo/add-todo.html -------------------------------------------------------------------------------- /playground/app/todo/remaining-todos.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/todo/remaining-todos.pipe.ts -------------------------------------------------------------------------------- /playground/app/todo/todo-app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/todo/todo-app.component.ts -------------------------------------------------------------------------------- /playground/app/todo/todo-app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/todo/todo-app.html -------------------------------------------------------------------------------- /playground/app/todo/todo-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/todo/todo-item.component.ts -------------------------------------------------------------------------------- /playground/app/todo/todo-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/todo/todo-item.html -------------------------------------------------------------------------------- /playground/app/todo/todo-store.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/todo/todo-store.service.ts -------------------------------------------------------------------------------- /playground/app/todo/todo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/app/todo/todo.module.ts -------------------------------------------------------------------------------- /playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/index.html -------------------------------------------------------------------------------- /playground/ng-metadata.legacy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/ng-metadata.legacy.d.ts -------------------------------------------------------------------------------- /playground/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/style.css -------------------------------------------------------------------------------- /playground/todo-app-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/todo-app-components.png -------------------------------------------------------------------------------- /playground/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/playground/tsconfig.json -------------------------------------------------------------------------------- /router-deprecated.ts: -------------------------------------------------------------------------------- 1 | export * from './src/router-deprecated/index'; 2 | -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /src/common/directives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/common/directives.ts -------------------------------------------------------------------------------- /src/common/directives/core_directives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/common/directives/core_directives.ts -------------------------------------------------------------------------------- /src/common/directives/ng_form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/common/directives/ng_form.ts -------------------------------------------------------------------------------- /src/common/directives/ng_model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/common/directives/ng_model.ts -------------------------------------------------------------------------------- /src/common/directives/ng_select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/common/directives/ng_select.ts -------------------------------------------------------------------------------- /src/common/pipes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/common/pipes.ts -------------------------------------------------------------------------------- /src/common/pipes/async_pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/common/pipes/async_pipe.ts -------------------------------------------------------------------------------- /src/common/pipes/common_pipes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/common/pipes/common_pipes.ts -------------------------------------------------------------------------------- /src/common/services.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/change_detection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/change_detection.ts -------------------------------------------------------------------------------- /src/core/change_detection/change_detection_util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/change_detection/change_detection_util.ts -------------------------------------------------------------------------------- /src/core/change_detection/change_detector_ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/change_detection/change_detector_ref.ts -------------------------------------------------------------------------------- /src/core/change_detection/changes_queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/change_detection/changes_queue.ts -------------------------------------------------------------------------------- /src/core/change_detection/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/change_detection/constants.ts -------------------------------------------------------------------------------- /src/core/di.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/di.ts -------------------------------------------------------------------------------- /src/core/di/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/di/decorators.ts -------------------------------------------------------------------------------- /src/core/di/forward_ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/di/forward_ref.ts -------------------------------------------------------------------------------- /src/core/di/key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/di/key.ts -------------------------------------------------------------------------------- /src/core/di/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/di/metadata.ts -------------------------------------------------------------------------------- /src/core/di/opaque_token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/di/opaque_token.ts -------------------------------------------------------------------------------- /src/core/di/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/di/provider.ts -------------------------------------------------------------------------------- /src/core/di/provider_util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/di/provider_util.ts -------------------------------------------------------------------------------- /src/core/di/reflective_provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/di/reflective_provider.ts -------------------------------------------------------------------------------- /src/core/directives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/directives.ts -------------------------------------------------------------------------------- /src/core/directives/binding/binding_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/directives/binding/binding_factory.ts -------------------------------------------------------------------------------- /src/core/directives/binding/binding_parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/directives/binding/binding_parser.ts -------------------------------------------------------------------------------- /src/core/directives/binding/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/directives/binding/constants.ts -------------------------------------------------------------------------------- /src/core/directives/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/directives/constants.ts -------------------------------------------------------------------------------- /src/core/directives/controller/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/directives/controller/constants.ts -------------------------------------------------------------------------------- /src/core/directives/controller/controller_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/directives/controller/controller_factory.ts -------------------------------------------------------------------------------- /src/core/directives/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/directives/decorators.ts -------------------------------------------------------------------------------- /src/core/directives/directive_provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/directives/directive_provider.ts -------------------------------------------------------------------------------- /src/core/directives/directives_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/directives/directives_utils.ts -------------------------------------------------------------------------------- /src/core/directives/host/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/directives/host/constants.ts -------------------------------------------------------------------------------- /src/core/directives/host/host_parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/directives/host/host_parser.ts -------------------------------------------------------------------------------- /src/core/directives/host/host_resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/directives/host/host_resolver.ts -------------------------------------------------------------------------------- /src/core/directives/metadata_di.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/directives/metadata_di.ts -------------------------------------------------------------------------------- /src/core/directives/metadata_directives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/directives/metadata_directives.ts -------------------------------------------------------------------------------- /src/core/directives/query/children_resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/directives/query/children_resolver.ts -------------------------------------------------------------------------------- /src/core/linker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/linker.ts -------------------------------------------------------------------------------- /src/core/linker/directive_lifecycle_interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/linker/directive_lifecycle_interfaces.ts -------------------------------------------------------------------------------- /src/core/linker/directive_lifecycles_reflector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/linker/directive_lifecycles_reflector.ts -------------------------------------------------------------------------------- /src/core/linker/directive_resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/linker/directive_resolver.ts -------------------------------------------------------------------------------- /src/core/linker/pipe_resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/linker/pipe_resolver.ts -------------------------------------------------------------------------------- /src/core/pipes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/pipes.ts -------------------------------------------------------------------------------- /src/core/pipes/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/pipes/decorators.ts -------------------------------------------------------------------------------- /src/core/pipes/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/pipes/metadata.ts -------------------------------------------------------------------------------- /src/core/pipes/pipe_interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/pipes/pipe_interfaces.ts -------------------------------------------------------------------------------- /src/core/pipes/pipe_provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/pipes/pipe_provider.ts -------------------------------------------------------------------------------- /src/core/reflection.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/reflection/platform_reflection_capabilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/reflection/platform_reflection_capabilities.ts -------------------------------------------------------------------------------- /src/core/reflection/reflection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/reflection/reflection.ts -------------------------------------------------------------------------------- /src/core/reflection/reflection_capabilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/reflection/reflection_capabilities.ts -------------------------------------------------------------------------------- /src/core/reflection/reflector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/reflection/reflector.ts -------------------------------------------------------------------------------- /src/core/reflection/reflector_reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/reflection/reflector_reader.ts -------------------------------------------------------------------------------- /src/core/reflection/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/reflection/types.ts -------------------------------------------------------------------------------- /src/core/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/util.ts -------------------------------------------------------------------------------- /src/core/util/bundler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/util/bundler.ts -------------------------------------------------------------------------------- /src/core/util/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/core/util/decorators.ts -------------------------------------------------------------------------------- /src/facade/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/facade/async.ts -------------------------------------------------------------------------------- /src/facade/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/facade/collections.ts -------------------------------------------------------------------------------- /src/facade/exceptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/facade/exceptions.ts -------------------------------------------------------------------------------- /src/facade/facade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/facade/facade.ts -------------------------------------------------------------------------------- /src/facade/lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/facade/lang.ts -------------------------------------------------------------------------------- /src/facade/primitives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/facade/primitives.ts -------------------------------------------------------------------------------- /src/facade/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/facade/type.ts -------------------------------------------------------------------------------- /src/platform/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/platform/browser.ts -------------------------------------------------------------------------------- /src/platform/browser_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/platform/browser_utils.ts -------------------------------------------------------------------------------- /src/platform/title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/platform/title.ts -------------------------------------------------------------------------------- /src/router-deprecated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/router-deprecated/index.ts -------------------------------------------------------------------------------- /src/router-deprecated/instructions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/router-deprecated/instructions.ts -------------------------------------------------------------------------------- /src/router-deprecated/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/router-deprecated/interfaces.ts -------------------------------------------------------------------------------- /src/router-deprecated/route_definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/router-deprecated/route_definition.ts -------------------------------------------------------------------------------- /src/router-deprecated/route_registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/router-deprecated/route_registry.ts -------------------------------------------------------------------------------- /src/router-deprecated/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/router-deprecated/router.ts -------------------------------------------------------------------------------- /src/testing/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/testing/utils.ts -------------------------------------------------------------------------------- /src/upgrade/static/downgrade_component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/upgrade/static/downgrade_component.ts -------------------------------------------------------------------------------- /src/upgrade/static/downgrade_injectable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/upgrade/static/downgrade_injectable.ts -------------------------------------------------------------------------------- /src/upgrade/static/static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/upgrade/static/static.ts -------------------------------------------------------------------------------- /src/upgrade/static/upgrade_injectable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/upgrade/static/upgrade_injectable.ts -------------------------------------------------------------------------------- /src/upgrade/upgrade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/upgrade/upgrade.ts -------------------------------------------------------------------------------- /src/upgrade/upgrade_adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/src/upgrade/upgrade_adapter.ts -------------------------------------------------------------------------------- /test/common/pipes/async_pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/common/pipes/async_pipe.spec.ts -------------------------------------------------------------------------------- /test/core/change_detection/change_detection_util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/change_detection/change_detection_util.spec.ts -------------------------------------------------------------------------------- /test/core/change_detection/changes_queue.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/change_detection/changes_queue.spec.ts -------------------------------------------------------------------------------- /test/core/di/decorators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/di/decorators.spec.ts -------------------------------------------------------------------------------- /test/core/di/forward_ref.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/di/forward_ref.spec.ts -------------------------------------------------------------------------------- /test/core/di/key.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/di/key.spec.ts -------------------------------------------------------------------------------- /test/core/di/provider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/di/provider.spec.ts -------------------------------------------------------------------------------- /test/core/di/reflective_provider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/di/reflective_provider.spec.ts -------------------------------------------------------------------------------- /test/core/directives/binding/binding_factory.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/directives/binding/binding_factory.spec.ts -------------------------------------------------------------------------------- /test/core/directives/binding/binding_parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/directives/binding/binding_parser.spec.ts -------------------------------------------------------------------------------- /test/core/directives/controller/controller_factory.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/directives/controller/controller_factory.spec.ts -------------------------------------------------------------------------------- /test/core/directives/directive_provider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/directives/directive_provider.spec.ts -------------------------------------------------------------------------------- /test/core/directives/directives_utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/directives/directives_utils.spec.ts -------------------------------------------------------------------------------- /test/core/directives/host/host_parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/directives/host/host_parser.spec.ts -------------------------------------------------------------------------------- /test/core/directives/host/host_resolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/directives/host/host_resolver.spec.ts -------------------------------------------------------------------------------- /test/core/directives/query/children_resolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/directives/query/children_resolver.spec.ts -------------------------------------------------------------------------------- /test/core/linker/directive_lifecycles_reflector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/linker/directive_lifecycles_reflector.spec.ts -------------------------------------------------------------------------------- /test/core/linker/directive_resolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/linker/directive_resolver.spec.ts -------------------------------------------------------------------------------- /test/core/linker/pipe_resolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/linker/pipe_resolver.spec.ts -------------------------------------------------------------------------------- /test/core/pipes/pipe_provider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/pipes/pipe_provider.spec.ts -------------------------------------------------------------------------------- /test/core/reflection/reflection.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/reflection/reflection.spec.ts -------------------------------------------------------------------------------- /test/core/util/bundler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/util/bundler.spec.ts -------------------------------------------------------------------------------- /test/core/util/decorators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/core/util/decorators.spec.ts -------------------------------------------------------------------------------- /test/facade/async.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/facade/async.spec.ts -------------------------------------------------------------------------------- /test/facade/collections.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/facade/collections.spec.ts -------------------------------------------------------------------------------- /test/facade/lang.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/facade/lang.spec.ts -------------------------------------------------------------------------------- /test/facade/primitives.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/facade/primitives.spec.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/index.ts -------------------------------------------------------------------------------- /test/upgrade/static/downgrade_component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/upgrade/static/downgrade_component.spec.ts -------------------------------------------------------------------------------- /test/upgrade/static/downgrade_injectable.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/upgrade/static/downgrade_injectable.spec.ts -------------------------------------------------------------------------------- /test/upgrade/static/upgrade_injectable.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/upgrade/static/upgrade_injectable.spec.ts -------------------------------------------------------------------------------- /test/upgrade/upgrade_adapter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/upgrade/upgrade_adapter.spec.ts -------------------------------------------------------------------------------- /test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/test/utils.ts -------------------------------------------------------------------------------- /testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/testing.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/tsconfig.json -------------------------------------------------------------------------------- /upgrade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng-metadata/HEAD/upgrade.ts --------------------------------------------------------------------------------