@angular-wave/angular.ts 0.7.0-beta.1 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +58 -14
- package/.github/workflows/gh-pages.yml +75 -0
- package/@types/animations/animate.d.ts +11 -4
- package/@types/core/compile/attributes.d.ts +5 -2
- package/@types/core/compile/compile.d.ts +6 -6
- package/@types/core/di/injector.d.ts +1 -2
- package/@types/core/di/internal-injector.d.ts +10 -7
- package/@types/core/di/ng-module.d.ts +0 -1
- package/@types/core/error-handler.d.ts +1 -1
- package/@types/core/exception-handler.d.ts +1 -1
- package/@types/core/parse/interface.d.ts +3 -3
- package/@types/core/pubsub/pubsub.d.ts +21 -0
- package/@types/core/sce/sce.d.ts +2 -5
- package/@types/core/scope/scope.d.ts +23 -36
- package/@types/core/task-tracker-factory.d.ts +10 -5
- package/@types/directive/aria/aria.d.ts +4 -1
- package/@types/directive/include/include.d.ts +4 -18
- package/@types/directive/options/options.d.ts +1 -1
- package/@types/injection-tokens.d.ts +20 -0
- package/@types/interface.d.ts +4 -4
- package/@types/loader.d.ts +1 -0
- package/@types/public.d.ts +2 -2
- package/@types/router/directives/view-directive.d.ts +0 -2
- package/@types/router/params/param.d.ts +1 -1
- package/@types/router/state/interface.d.ts +3 -3
- package/@types/router/state/state-builder.d.ts +9 -2
- package/@types/router/transition/transition-service.d.ts +1 -0
- package/@types/services/anchor-scroll.d.ts +0 -1
- package/@types/shared/utils.d.ts +4 -14
- package/README.md +7 -9
- package/dist/angular-ts.esm.js +440 -304
- package/dist/angular-ts.umd.js +444 -309
- package/dist/angular-ts.umd.min.js +1 -1
- package/docs/.cspell.yml +2 -2
- package/docs/.github/dependabot.yml +12 -12
- package/docs/README.md +10 -7
- package/docs/assets/icons/logo.svg +1 -0
- package/docs/assets/scss/_variables_project.scss +1 -0
- package/docs/content/en/_index.md +5 -64
- package/docs/content/en/docs/_index.md +3 -4
- package/docs/docker-compose.yaml +1 -0
- package/docs/go.mod +1 -1
- package/docs/go.sum +6 -6
- package/docs/hugo-disabled.toml +6 -7
- package/docs/hugo.yaml +45 -64
- package/docs/layouts/404.html +2 -8
- package/docs/layouts/_markup/render-heading.html +1 -0
- package/docs/package-lock.json +2293 -0
- package/docs/package.json +18 -7
- package/index.html +1 -1
- package/package.json +1 -1
- package/src/animations/animate-children-directive.js +2 -1
- package/src/animations/animate-css.js +2 -2
- package/src/animations/animate-runner.js +3 -3
- package/src/animations/animate-swap.js +16 -19
- package/src/animations/animate.js +3 -1
- package/src/animations/shared.js +1 -1
- package/src/core/compile/attributes.js +4 -1
- package/src/core/compile/compile.js +29 -24
- package/src/core/compile/compile.spec.js +368 -371
- package/src/core/controller/controller.spec.js +27 -20
- package/src/core/di/injector.js +2 -5
- package/src/core/di/internal-injector.js +2 -0
- package/src/core/di/ng-module.js +19 -7
- package/src/core/di/ng-module.spec.js +16 -16
- package/src/core/error-handler.ts +1 -1
- package/src/core/exception-handler.js +1 -1
- package/src/core/filter/filter.js +0 -1
- package/src/core/parse/ast/ast.spec.js +1 -9
- package/src/core/parse/interface.ts +3 -3
- package/src/core/parse/parse.js +6 -6
- package/src/core/pubsub/pubsub.js +20 -0
- package/src/core/pubsub/pubsub.spec.js +14 -1
- package/src/core/sanitize/sanitize-uri.js +1 -0
- package/src/core/sce/sce.js +7 -15
- package/src/core/scope/scope.js +114 -117
- package/src/core/scope/scope.spec.js +11 -11
- package/src/core/task-tracker-factory.js +7 -0
- package/src/directive/aria/aria.js +11 -10
- package/src/directive/attrs/attrs.js +2 -1
- package/src/directive/bind/bind.js +2 -3
- package/src/directive/channel/channel.js +0 -1
- package/src/directive/class/class.js +0 -1
- package/src/directive/cloak/cloak.js +0 -1
- package/src/directive/include/include.js +22 -11
- package/src/directive/include/include.spec.js +1 -0
- package/src/directive/input/input-example.html +15 -0
- package/src/directive/input/input.js +8 -2
- package/src/directive/input/input.spec.js +12 -14
- package/src/directive/messages/messages.js +2 -2
- package/src/directive/non-bindable/non-bindable.js +0 -1
- package/src/directive/observe/test.html +1 -1
- package/src/directive/options/options-example.html +13 -0
- package/src/directive/options/options.js +33 -21
- package/src/directive/options/options.spec.js +207 -146
- package/src/directive/repeat/repeat.js +8 -7
- package/src/directive/select/select.spec.js +1 -1
- package/src/directive/setter/setter.js +1 -1
- package/src/directive/setter/setter.spec.js +5 -4
- package/src/directive/style/style.spec.js +1 -1
- package/src/directive/switch/switch.js +1 -2
- package/src/directive/transclude/transclude.js +0 -1
- package/src/directive/validators/validators.js +5 -5
- package/src/examples/counter.html +20 -0
- package/src/filters/order-by.js +2 -1
- package/src/filters/order-by.spec.js +4 -4
- package/src/index.spec.js +11 -0
- package/src/injection-tokens.js +71 -0
- package/src/interface.ts +4 -4
- package/src/loader.js +2 -0
- package/src/public.js +10 -3
- package/src/public.spec.js +1 -0
- package/src/router/directives/state-directives.js +1 -1
- package/src/router/directives/state-directives.spec.js +0 -2
- package/src/router/directives/view-directive.js +1 -2
- package/src/router/params/param.js +1 -1
- package/src/router/state/interface.ts +3 -3
- package/src/router/state/state-builder.js +4 -0
- package/src/router/state/state-builder.spec.js +21 -15
- package/src/router/state/state-registry.js +7 -6
- package/src/router/template-factory.spec.js +15 -9
- package/src/router/transition/transition-service.js +1 -0
- package/src/router/view/view.spec.js +1 -1
- package/src/router/view-scroll.spec.js +3 -4
- package/src/services/anchor-scroll.html +1 -1
- package/src/services/anchor-scroll.js +0 -4
- package/src/services/template-request.js +11 -7
- package/src/shared/noderef.js +1 -3
- package/src/shared/utils.js +5 -22
- package/src/src.html +2 -1
- package/typedoc/assets/hierarchy.js +1 -1
- package/typedoc/assets/navigation.js +1 -1
- package/typedoc/assets/search.js +1 -1
- package/typedoc/classes/animations_animate-cache.AnimateCacheProvider.html +4 -40
- package/typedoc/classes/animations_animate-css-driver.AnimateCssDriverProvider.html +4 -58
- package/typedoc/classes/animations_animate-css.AnimateCssProvider.html +4 -40
- package/typedoc/classes/animations_animate-js-driver.AnimateJsDriverProvider.html +4 -58
- package/typedoc/classes/animations_animate-js.AnimateJsProvider.html +4 -58
- package/typedoc/classes/animations_animate-queue.AnimateQueueProvider.html +4 -69
- package/typedoc/classes/animations_animate-runner.AnimateAsyncRunFactoryProvider.html +4 -40
- package/typedoc/classes/animations_animate-runner.AnimateRunner.html +4 -263
- package/typedoc/classes/animations_animate-runner.AnimateRunnerFactoryProvider.html +4 -40
- package/typedoc/classes/animations_animate.AnimateProvider.html +42 -108
- package/typedoc/classes/animations_animation.AnimationProvider.html +4 -51
- package/typedoc/classes/animations_raf-scheduler.RafSchedulerProvider.html +4 -115
- package/typedoc/classes/core_cache_cache-factory.TemplateCacheProvider.html +4 -29
- package/typedoc/classes/core_compile_attributes.Attributes.html +19 -227
- package/typedoc/classes/core_compile_compile.CompileProvider.html +52 -137
- package/typedoc/classes/core_controller_controller.ControllerProvider.html +4 -73
- package/typedoc/classes/core_di_internal-injector.InjectorService.html +7 -141
- package/typedoc/classes/core_di_internal-injector.ProviderInjector.html +7 -119
- package/typedoc/classes/core_di_ng-module.NgModule.html +4 -256
- package/typedoc/classes/core_exception-handler.ExceptionHandlerProvider.html +4 -69
- package/typedoc/classes/core_filter_filter.FilterProvider.html +4 -69
- package/typedoc/classes/core_interpolate_interpolate.InterpolateProvider.html +4 -84
- package/typedoc/classes/core_location_location.Location.html +5 -387
- package/typedoc/classes/core_location_location.LocationHashbangUrl.html +5 -340
- package/typedoc/classes/core_location_location.LocationHtml5Url.html +5 -340
- package/typedoc/classes/core_location_location.LocationProvider.html +4 -113
- package/typedoc/classes/core_parse_ast_ast.AST.html +4 -359
- package/typedoc/classes/core_parse_interpreter.ASTInterpreter.html +4 -315
- package/typedoc/classes/core_parse_lexer_lexer.Lexer.html +4 -238
- package/typedoc/classes/core_parse_parse.ParseProvider.html +4 -51
- package/typedoc/classes/core_parse_parser_parser.Parser.html +4 -73
- package/typedoc/classes/core_pubsub_pubsub.PubSub.html +4 -146
- package/typedoc/classes/core_pubsub_pubsub.PubSubProvider.html +576 -0
- package/typedoc/classes/core_sanitize_sanitize-uri.SanitizeUriProvider.html +4 -62
- package/typedoc/classes/core_sce_sce.SceDelegateProvider.html +4 -73
- package/typedoc/classes/core_sce_sce.SceProvider.html +10 -63
- package/typedoc/classes/core_scope_scope.RootScopeProvider.html +4 -51
- package/typedoc/classes/core_scope_scope.Scope.html +49 -1280
- package/typedoc/classes/core_task-tracker-factory.TaskTracker.html +4 -84
- package/typedoc/classes/core_task-tracker-factory.TaskTrackerFactoryProvider.html +23 -128
- package/typedoc/classes/directive_aria_aria.AriaProvider.html +4 -51
- package/typedoc/classes/directive_form_form.FormController.html +4 -429
- package/typedoc/classes/directive_model_model.NgModelController.html +4 -983
- package/typedoc/classes/loader.Angular.html +46 -179
- package/typedoc/classes/router_common_glob.Glob.html +4 -84
- package/typedoc/classes/router_common_queue.Queue.html +4 -161
- package/typedoc/classes/router_common_trace.Trace.html +4 -249
- package/typedoc/classes/router_globals.RouterGlobals.html +4 -117
- package/typedoc/classes/router_params_param-factory.ParamFactory.html +4 -73
- package/typedoc/classes/router_params_param-type.ParamType.html +4 -150
- package/typedoc/classes/router_params_param-types.ParamTypes.html +4 -95
- package/typedoc/classes/router_params_param.Param.html +4 -260
- package/typedoc/classes/router_params_state-params.StateParams.html +4 -40
- package/typedoc/classes/router_path_path-node.PathNode.html +4 -174
- package/typedoc/classes/router_path_path-utils.PathUtils.html +4 -128
- package/typedoc/classes/router_resolve_resolvable.Resolvable.html +4 -256
- package/typedoc/classes/router_resolve_resolve-context.ResolveContext.html +4 -150
- package/typedoc/classes/router_state-provider.StateProvider.html +4 -84
- package/typedoc/classes/router_state_state-builder.StateBuilder.html +4 -106
- package/typedoc/classes/router_state_state-matcher.StateMatcher.html +4 -73
- package/typedoc/classes/router_state_state-object.StateObject.html +4 -230
- package/typedoc/classes/router_state_state-queue-manager.StateQueueManager.html +4 -128
- package/typedoc/classes/router_state_state-registry.StateRegistryProvider.html +5 -246
- package/typedoc/classes/router_state_state-service.StateProvider.html +4 -322
- package/typedoc/classes/router_state_target-state.TargetState.html +4 -252
- package/typedoc/classes/router_state_views.ViewConfig.html +4 -161
- package/typedoc/classes/router_template-factory.TemplateFactoryProvider.html +4 -179
- package/typedoc/classes/router_transition_hook-builder.HookBuilder.html +4 -73
- package/typedoc/classes/router_transition_hook-registry.RegisteredHook.html +4 -201
- package/typedoc/classes/router_transition_reject-factory.Rejection.html +4 -183
- package/typedoc/classes/router_transition_transition-event-type.TransitionEventType.html +4 -117
- package/typedoc/classes/router_transition_transition-hook.TransitionHook.html +4 -280
- package/typedoc/classes/router_transition_transition-service.TransitionProvider.html +5 -238
- package/typedoc/classes/router_transition_transition.Transition.html +4 -648
- package/typedoc/classes/router_url_url-config.UrlConfigProvider.html +4 -149
- package/typedoc/classes/router_url_url-matcher.UrlMatcher.html +4 -274
- package/typedoc/classes/router_url_url-rule.BaseUrlRule.html +4 -95
- package/typedoc/classes/router_url_url-rule.UrlRuleFactory.html +4 -124
- package/typedoc/classes/router_url_url-rules.UrlRules.html +4 -222
- package/typedoc/classes/router_url_url-service.UrlService.html +4 -373
- package/typedoc/classes/router_view-scroll.ViewScrollProvider.html +4 -69
- package/typedoc/classes/router_view_view.ViewService.html +4 -223
- package/typedoc/classes/services_anchor-scroll.AnchorScrollProvider.html +4 -164
- package/typedoc/classes/services_browser.Browser.html +4 -276
- package/typedoc/classes/services_browser.BrowserProvider.html +4 -29
- package/typedoc/classes/services_http-backend_http-backend.HttpBackendProvider.html +4 -40
- package/typedoc/classes/services_http_http.HttpParamSerializerProvider.html +4 -40
- package/typedoc/classes/services_http_http.HttpProvider.html +4 -84
- package/typedoc/classes/services_log.LogProvider.html +4 -91
- package/typedoc/classes/services_template-request.TemplateRequestProvider.html +4 -51
- package/typedoc/classes/shared_noderef.NodeRef.html +4 -301
- package/typedoc/enums/core_parse_ast-type.ASTType.html +4 -212
- package/typedoc/enums/router_common_trace.Category.html +4 -80
- package/typedoc/enums/router_transition_interface.TransitionHookPhase.html +4 -73
- package/typedoc/enums/router_transition_interface.TransitionHookScope.html +4 -40
- package/typedoc/enums/router_transition_reject-factory.RejectType.html +4 -80
- package/typedoc/functions/animations_animate-cache.animateCache.html +4 -84
- package/typedoc/functions/animations_animate-children-directive.__AnimateChildrenDirective.html +4 -29
- package/typedoc/functions/animations_animate-swap.ngAnimateSwapDirective.html +4 -29
- package/typedoc/functions/animations_shared.applyAnimationClassesFactory.html +4 -18
- package/typedoc/functions/animations_shared.applyAnimationFromStyles.html +4 -18
- package/typedoc/functions/animations_shared.applyAnimationStyles.html +4 -18
- package/typedoc/functions/animations_shared.applyAnimationToStyles.html +4 -18
- package/typedoc/functions/animations_shared.applyGeneratedPreparationClasses.html +4 -18
- package/typedoc/functions/animations_shared.applyInlineStyle.html +4 -18
- package/typedoc/functions/animations_shared.assertArg.html +4 -18
- package/typedoc/functions/animations_shared.blockKeyframeAnimations.html +4 -18
- package/typedoc/functions/animations_shared.clearGeneratedClasses.html +4 -18
- package/typedoc/functions/animations_shared.concatWithSpace.html +4 -18
- package/typedoc/functions/animations_shared.extractElementNode.html +4 -18
- package/typedoc/functions/animations_shared.mergeAnimationDetails.html +4 -18
- package/typedoc/functions/animations_shared.mergeClasses.html +4 -18
- package/typedoc/functions/animations_shared.packageStyles.html +4 -18
- package/typedoc/functions/animations_shared.pendClasses.html +4 -18
- package/typedoc/functions/animations_shared.prepareAnimationOptions.html +4 -18
- package/typedoc/functions/animations_shared.removeFromArray.html +4 -18
- package/typedoc/functions/animations_shared.resolveElementClasses.html +4 -18
- package/typedoc/functions/animations_shared.stripCommentsFromElement.html +4 -18
- package/typedoc/functions/core_controller_controller.identifierForController.html +4 -18
- package/typedoc/functions/core_di_injector.annotate.html +4 -18
- package/typedoc/functions/core_di_injector.createInjector.html +4 -18
- package/typedoc/functions/core_location_location.serverBase.html +4 -18
- package/typedoc/functions/core_location_location.stripBaseUrl.html +4 -18
- package/typedoc/functions/core_location_location.stripFile.html +4 -18
- package/typedoc/functions/core_location_location.stripHash.html +4 -18
- package/typedoc/functions/core_parse_interpreter.isAssignable.html +4 -18
- package/typedoc/functions/core_parse_parse.constantWatchDelegate.html +4 -18
- package/typedoc/functions/core_sce_sce.adjustMatcher.html +4 -18
- package/typedoc/functions/core_sce_sce.escapeForRegexp.html +4 -18
- package/typedoc/functions/core_scope_scope.createScope.html +4 -18
- package/typedoc/functions/core_scope_scope.nextId.html +4 -18
- package/typedoc/functions/core_url-utils_url-utils.getBaseUrl.html +4 -18
- package/typedoc/functions/core_url-utils_url-utils.urlIsAllowedOriginFactory.html +4 -18
- package/typedoc/functions/core_url-utils_url-utils.urlIsSameOrigin.html +4 -18
- package/typedoc/functions/core_url-utils_url-utils.urlIsSameOriginAsBaseUrl.html +4 -18
- package/typedoc/functions/core_url-utils_url-utils.urlResolve.html +4 -18
- package/typedoc/functions/core_url-utils_url-utils.urlsAreSameOrigin.html +4 -18
- package/typedoc/functions/directive_aria_aria.ngCheckedAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngClickAriaDirective.html +6 -31
- package/typedoc/functions/directive_aria_aria.ngDblclickAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngDisabledAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngHideAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngMessagesAriaDirective.html +4 -18
- package/typedoc/functions/directive_aria_aria.ngModelAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngReadonlyAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngRequiredAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngShowAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngValueAriaDirective.html +4 -29
- package/typedoc/functions/directive_bind_bind.ngBindDirective.html +4 -18
- package/typedoc/functions/directive_bind_bind.ngBindHtmlDirective.html +4 -29
- package/typedoc/functions/directive_bind_bind.ngBindTemplateDirective.html +4 -18
- package/typedoc/functions/directive_channel_channel.ngChannelDirective.html +4 -18
- package/typedoc/functions/directive_cloak_cloak.ngCloakDirective.html +4 -18
- package/typedoc/functions/directive_controller_controller.ngControllerDirective.html +4 -18
- package/typedoc/functions/directive_events_events.createEventDirective.html +4 -18
- package/typedoc/functions/directive_form_form.setupValidity.html +4 -18
- package/typedoc/functions/directive_if_if.ngIfDirective.html +4 -29
- package/typedoc/functions/directive_include_include.ngIncludeDirective.html +33 -178
- package/typedoc/functions/directive_include_include.ngIncludeFillContentDirective.html +4 -29
- package/typedoc/functions/directive_init_init.ngInitDirective.html +4 -18
- package/typedoc/functions/directive_input_input.badInputChecker.html +4 -18
- package/typedoc/functions/directive_input_input.countDecimals.html +4 -18
- package/typedoc/functions/directive_input_input.createDateInputType.html +4 -18
- package/typedoc/functions/directive_input_input.createDateParser.html +4 -18
- package/typedoc/functions/directive_input_input.hiddenInputBrowserCacheDirective.html +4 -18
- package/typedoc/functions/directive_input_input.inputDirective.html +4 -29
- package/typedoc/functions/directive_input_input.isNumberInteger.html +4 -18
- package/typedoc/functions/directive_input_input.isValidForStep.html +4 -18
- package/typedoc/functions/directive_input_input.ngValueDirective.html +4 -18
- package/typedoc/functions/directive_input_input.numberFormatterParser.html +4 -18
- package/typedoc/functions/directive_input_input.numberInputType.html +4 -18
- package/typedoc/functions/directive_input_input.rangeInputType.html +4 -18
- package/typedoc/functions/directive_input_input.weekParser.html +4 -18
- package/typedoc/functions/directive_messages_messages.ngMessagesDirective.html +4 -29
- package/typedoc/functions/directive_messages_messages.ngMessagesIncludeDirective.html +4 -29
- package/typedoc/functions/directive_model-options_model-options.ngModelOptionsDirective.html +4 -18
- package/typedoc/functions/directive_model_model.ngModelDirective.html +4 -18
- package/typedoc/functions/directive_non-bindable_non-bindable.ngNonBindableDirective.html +4 -18
- package/typedoc/functions/directive_observe_observe.ngObserveDirective.html +4 -18
- package/typedoc/functions/directive_ref_ref.ngRefDirective.html +4 -29
- package/typedoc/functions/directive_repeat_repeat.ngRepeatDirective.html +4 -29
- package/typedoc/functions/directive_script_script.scriptDirective.html +4 -29
- package/typedoc/functions/directive_select_select.optionDirective.html +4 -29
- package/typedoc/functions/directive_select_select.selectDirective.html +4 -18
- package/typedoc/functions/directive_setter_setter.ngSetterDirective.html +4 -29
- package/typedoc/functions/directive_show-hide_show-hide.ngHideDirective.html +4 -29
- package/typedoc/functions/directive_show-hide_show-hide.ngShowDirective.html +4 -29
- package/typedoc/functions/directive_style_style.ngStyleDirective.html +4 -18
- package/typedoc/functions/directive_switch_switch.ngSwitchDefaultDirective.html +4 -18
- package/typedoc/functions/directive_switch_switch.ngSwitchDirective.html +4 -29
- package/typedoc/functions/directive_switch_switch.ngSwitchWhenDirective.html +4 -18
- package/typedoc/functions/filters_filter.filterFilter.html +4 -18
- package/typedoc/functions/filters_filters.formatNumber.html +4 -18
- package/typedoc/functions/filters_filters.jsonFilter.html +4 -18
- package/typedoc/functions/filters_limit-to.limitToFilter.html +4 -18
- package/typedoc/functions/filters_order-by.orderByFilter.html +4 -29
- package/typedoc/functions/public.publishExternalAPI.html +6 -24
- package/typedoc/functions/router_common_glob.hasGlobs.html +4 -18
- package/typedoc/functions/router_directives_state-directives._StateRefActiveDirective.html +4 -29
- package/typedoc/functions/router_directives_state-directives._StateRefDirective.html +4 -29
- package/typedoc/functions/router_directives_state-directives._StateRefDynamicDirective.html +4 -29
- package/typedoc/functions/router_directives_view-directive._ViewDirectiveFill.html +4 -39
- package/typedoc/functions/router_hooks_core-resolvables.registerAddCoreResolvables.html +4 -18
- package/typedoc/functions/router_hooks_core-resolvables.treeChangesCleanup.html +4 -18
- package/typedoc/functions/router_hooks_ignored-transition.registerIgnoredTransitionHook.html +4 -18
- package/typedoc/functions/router_hooks_invalid-transition.registerInvalidTransitionHook.html +4 -18
- package/typedoc/functions/router_hooks_lazy-load.lazyLoadState.html +4 -18
- package/typedoc/functions/router_hooks_lazy-load.registerLazyLoadHook.html +4 -18
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnEnterHook.html +4 -18
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnExitHook.html +4 -18
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnRetainHook.html +4 -18
- package/typedoc/functions/router_hooks_redirect-to.registerRedirectToHook.html +4 -18
- package/typedoc/functions/router_hooks_resolve.registerEagerResolvePath.html +4 -18
- package/typedoc/functions/router_hooks_resolve.registerLazyResolveState.html +4 -18
- package/typedoc/functions/router_hooks_resolve.registerResolveRemaining.html +4 -18
- package/typedoc/functions/router_hooks_update-globals.registerUpdateGlobalState.html +4 -18
- package/typedoc/functions/router_hooks_url.registerUpdateUrl.html +4 -18
- package/typedoc/functions/router_hooks_views.registerActivateViews.html +4 -18
- package/typedoc/functions/router_hooks_views.registerLoadEnteringViews.html +4 -18
- package/typedoc/functions/router_path_path-utils.makeTargetState.html +4 -18
- package/typedoc/functions/router_state-filters._IncludedByStateFilter.html +4 -29
- package/typedoc/functions/router_state-filters._IsStateFilter.html +4 -29
- package/typedoc/functions/router_state_state-builder.resolvablesBuilder.html +4 -18
- package/typedoc/functions/router_state_state-registry.getLocals.html +4 -18
- package/typedoc/functions/router_state_views.getViewConfigFactory.html +4 -18
- package/typedoc/functions/router_state_views.ng1ViewsBuilder.html +4 -18
- package/typedoc/functions/router_transition_hook-registry.makeEvent.html +4 -18
- package/typedoc/functions/router_transition_hook-registry.matchState.html +4 -18
- package/typedoc/functions/services_browser.trimEmptyHash.html +4 -18
- package/typedoc/functions/services_cookie-reader.getCookies.html +4 -18
- package/typedoc/functions/services_http-backend_http-backend.createHttpBackend.html +4 -18
- package/typedoc/functions/services_http_http.defaultHttpResponseTransform.html +4 -18
- package/typedoc/functions/shared_common._removeFrom.html +4 -18
- package/typedoc/functions/shared_common.allTrueR.html +4 -18
- package/typedoc/functions/shared_common.ancestors.html +4 -18
- package/typedoc/functions/shared_common.anyTrueR.html +4 -18
- package/typedoc/functions/shared_common.applyPairs.html +4 -18
- package/typedoc/functions/shared_common.arrayTuples.html +4 -18
- package/typedoc/functions/shared_common.assertFn.html +4 -18
- package/typedoc/functions/shared_common.copy.html +4 -18
- package/typedoc/functions/shared_common.createProxyFunctions.html +4 -18
- package/typedoc/functions/shared_common.defaults.html +4 -18
- package/typedoc/functions/shared_common.deregAll.html +4 -18
- package/typedoc/functions/shared_common.equals.html +4 -18
- package/typedoc/functions/shared_common.filter.html +4 -18
- package/typedoc/functions/shared_common.find.html +4 -18
- package/typedoc/functions/shared_common.flatten.html +4 -18
- package/typedoc/functions/shared_common.flattenR.html +4 -18
- package/typedoc/functions/shared_common.inherit.html +4 -18
- package/typedoc/functions/shared_common.map.html +4 -18
- package/typedoc/functions/shared_common.omit.html +4 -18
- package/typedoc/functions/shared_common.pairs.html +4 -18
- package/typedoc/functions/shared_common.pick.html +4 -18
- package/typedoc/functions/shared_common.pushR.html +4 -18
- package/typedoc/functions/shared_common.silenceUncaughtInPromise.html +4 -18
- package/typedoc/functions/shared_common.silentRejection.html +4 -18
- package/typedoc/functions/shared_common.tail.html +4 -18
- package/typedoc/functions/shared_common.uniqR.html +4 -18
- package/typedoc/functions/shared_common.unnest.html +4 -18
- package/typedoc/functions/shared_common.unnestR.html +4 -18
- package/typedoc/functions/shared_dom.appendNodesToElement.html +4 -18
- package/typedoc/functions/shared_dom.buildFragment.html +4 -18
- package/typedoc/functions/shared_dom.cleanElementData.html +4 -18
- package/typedoc/functions/shared_dom.createElementFromHTML.html +4 -18
- package/typedoc/functions/shared_dom.createNodelistFromHTML.html +4 -18
- package/typedoc/functions/shared_dom.dealoc.html +4 -18
- package/typedoc/functions/shared_dom.deleteCacheData.html +4 -18
- package/typedoc/functions/shared_dom.domInsert.html +4 -18
- package/typedoc/functions/shared_dom.emptyElement.html +4 -18
- package/typedoc/functions/shared_dom.getBlockNodes.html +4 -18
- package/typedoc/functions/shared_dom.getBooleanAttrName.html +4 -18
- package/typedoc/functions/shared_dom.getCacheData.html +4 -18
- package/typedoc/functions/shared_dom.getController.html +4 -18
- package/typedoc/functions/shared_dom.getExpando.html +4 -18
- package/typedoc/functions/shared_dom.getInheritedData.html +4 -18
- package/typedoc/functions/shared_dom.getInjector.html +4 -18
- package/typedoc/functions/shared_dom.getIsolateScope.html +4 -18
- package/typedoc/functions/shared_dom.getOrSetCacheData.html +4 -18
- package/typedoc/functions/shared_dom.getScope.html +4 -18
- package/typedoc/functions/shared_dom.isRoot.html +4 -18
- package/typedoc/functions/shared_dom.isTextNode.html +4 -18
- package/typedoc/functions/shared_dom.kebabToCamel.html +4 -18
- package/typedoc/functions/shared_dom.parseHtml.html +4 -18
- package/typedoc/functions/shared_dom.removeElement.html +4 -18
- package/typedoc/functions/shared_dom.removeElementData.html +4 -18
- package/typedoc/functions/shared_dom.setCacheData.html +4 -18
- package/typedoc/functions/shared_dom.setInheritedData.html +4 -18
- package/typedoc/functions/shared_dom.setIsolateScope.html +4 -18
- package/typedoc/functions/shared_dom.setScope.html +4 -18
- package/typedoc/functions/shared_dom.snakeToCamel.html +4 -18
- package/typedoc/functions/shared_dom.startingTag.html +4 -18
- package/typedoc/functions/shared_hof.all.html +4 -18
- package/typedoc/functions/shared_hof.compose.html +4 -18
- package/typedoc/functions/shared_hof.curry.html +4 -18
- package/typedoc/functions/shared_hof.is.html +4 -18
- package/typedoc/functions/shared_hof.or.html +4 -18
- package/typedoc/functions/shared_hof.parse.html +4 -18
- package/typedoc/functions/shared_hof.pattern.html +4 -18
- package/typedoc/functions/shared_hof.pipe.html +4 -18
- package/typedoc/functions/shared_hof.val.html +4 -18
- package/typedoc/functions/shared_predicates.isInjectable.html +4 -18
- package/typedoc/functions/shared_predicates.isPromise.html +4 -18
- package/typedoc/functions/shared_strings.beforeAfterSubstr.html +4 -18
- package/typedoc/functions/shared_strings.fnToString.html +4 -18
- package/typedoc/functions/shared_strings.functionToString.html +4 -18
- package/typedoc/functions/shared_strings.joinNeighborsR.html +4 -18
- package/typedoc/functions/shared_strings.kebobString.html +4 -18
- package/typedoc/functions/shared_strings.maxLength.html +4 -18
- package/typedoc/functions/shared_strings.padString.html +4 -18
- package/typedoc/functions/shared_strings.splitOnDelim.html +4 -18
- package/typedoc/functions/shared_strings.stringify.html +4 -18
- package/typedoc/functions/shared_strings.stripLastPathElement.html +4 -18
- package/typedoc/functions/shared_strings.trimHashVal.html +4 -18
- package/typedoc/functions/shared_test-utils.bootstrap.html +4 -18
- package/typedoc/functions/shared_test-utils.browserTrigger.html +4 -18
- package/typedoc/functions/shared_test-utils.wait.html +4 -18
- package/typedoc/functions/shared_utils.addDateMinutes.html +4 -18
- package/typedoc/functions/shared_utils.arrayRemove.html +4 -18
- package/typedoc/functions/shared_utils.assert.html +4 -18
- package/typedoc/functions/shared_utils.assertArg.html +4 -18
- package/typedoc/functions/shared_utils.assertArgFn.html +4 -18
- package/typedoc/functions/shared_utils.assertNotHasOwnProperty.html +4 -18
- package/typedoc/functions/shared_utils.baseExtend.html +4 -18
- package/typedoc/functions/shared_utils.bind.html +4 -18
- package/typedoc/functions/shared_utils.concat.html +4 -18
- package/typedoc/functions/shared_utils.convertTimezoneToLocal.html +4 -18
- package/typedoc/functions/shared_utils.csp.html +4 -18
- package/typedoc/functions/shared_utils.directiveNormalize.html +4 -18
- package/typedoc/functions/shared_utils.encodeUriQuery.html +4 -18
- package/typedoc/functions/shared_utils.encodeUriSegment.html +4 -18
- package/typedoc/functions/shared_utils.equals.html +4 -18
- package/typedoc/functions/shared_utils.errorHandlingConfig.html +4 -18
- package/typedoc/functions/shared_utils.extend.html +4 -18
- package/typedoc/functions/shared_utils.fromJson.html +4 -18
- package/typedoc/functions/shared_utils.getNgAttribute.html +4 -18
- package/typedoc/functions/shared_utils.getNodeName.html +4 -18
- package/typedoc/functions/shared_utils.hasAnimate.html +4 -18
- package/typedoc/functions/shared_utils.hasCustomToString.html +4 -18
- package/typedoc/functions/shared_utils.hasOwn.html +4 -18
- package/typedoc/functions/shared_utils.hashKey.html +4 -18
- package/typedoc/functions/shared_utils.includes.html +4 -18
- package/typedoc/functions/shared_utils.inherit.html +4 -18
- package/typedoc/functions/shared_utils.isArrayBuffer.html +4 -18
- package/typedoc/functions/shared_utils.isArrayLike.html +7 -18
- package/typedoc/functions/shared_utils.isBlankObject.html +8 -18
- package/typedoc/functions/shared_utils.isBlob.html +4 -18
- package/typedoc/functions/shared_utils.isBoolean.html +4 -18
- package/typedoc/functions/shared_utils.isDate.html +4 -18
- package/typedoc/functions/shared_utils.isDefined.html +4 -18
- package/typedoc/functions/shared_utils.isElement.html +4 -18
- package/typedoc/functions/shared_utils.isError.html +4 -18
- package/typedoc/functions/shared_utils.isFile.html +4 -18
- package/typedoc/functions/shared_utils.isFormData.html +4 -18
- package/typedoc/functions/shared_utils.isFunction.html +4 -18
- package/typedoc/functions/shared_utils.isNull.html +4 -18
- package/typedoc/functions/shared_utils.isNullOrUndefined.html +4 -18
- package/typedoc/functions/shared_utils.isNumber.html +4 -18
- package/typedoc/functions/shared_utils.isNumberNaN.html +4 -18
- package/typedoc/functions/shared_utils.isObject.html +4 -18
- package/typedoc/functions/shared_utils.isObjectEmpty.html +4 -18
- package/typedoc/functions/shared_utils.isPromiseLike.html +4 -18
- package/typedoc/functions/shared_utils.isProxy.html +4 -18
- package/typedoc/functions/shared_utils.isRegExp.html +4 -18
- package/typedoc/functions/shared_utils.isScope.html +4 -18
- package/typedoc/functions/shared_utils.isString.html +4 -18
- package/typedoc/functions/shared_utils.isTypedArray.html +4 -18
- package/typedoc/functions/shared_utils.isUndefined.html +4 -18
- package/typedoc/functions/shared_utils.isValidObjectMaxDepth.html +4 -18
- package/typedoc/functions/shared_utils.isWindow.html +4 -18
- package/typedoc/functions/shared_utils.lowercase.html +4 -18
- package/typedoc/functions/shared_utils.mergeClasses.html +4 -18
- package/typedoc/functions/shared_utils.minErr.html +4 -18
- package/typedoc/functions/shared_utils.nextUid.html +4 -18
- package/typedoc/functions/shared_utils.parseKeyValue.html +4 -18
- package/typedoc/functions/shared_utils.setHashKey.html +4 -18
- package/typedoc/functions/shared_utils.shallowCopy.html +4 -18
- package/typedoc/functions/shared_utils.simpleCompare.html +4 -18
- package/typedoc/functions/shared_utils.sliceArgs.html +4 -18
- package/typedoc/functions/shared_utils.snakeCase.html +4 -18
- package/typedoc/functions/shared_utils.stringify.html +4 -18
- package/typedoc/functions/shared_utils.timezoneToOffset.html +4 -18
- package/typedoc/functions/shared_utils.toDebugString.html +4 -18
- package/typedoc/functions/shared_utils.toInt.html +4 -18
- package/typedoc/functions/shared_utils.toJson.html +4 -18
- package/typedoc/functions/shared_utils.toKeyValue.html +4 -18
- package/typedoc/functions/shared_utils.trim.html +4 -18
- package/typedoc/functions/shared_utils.tryDecodeURIComponent.html +9 -19
- package/typedoc/functions/shared_utils.uppercase.html +4 -18
- package/typedoc/hierarchy.html +8 -11
- package/typedoc/index.html +5 -8
- package/typedoc/interfaces/animations_animate.AnimationOptions.html +4 -62
- package/typedoc/interfaces/animations_raf-scheduler.ServiceProvider.html +5 -30
- package/typedoc/interfaces/core_cache_cache.ExpandoStore.html +4 -51
- package/typedoc/interfaces/core_compile_compile.LinkFnMapping.html +4 -51
- package/typedoc/interfaces/core_compile_compile.NodeLinkFnCtx.html +4 -84
- package/typedoc/interfaces/core_compile_compile.SimpleChange.html +4 -40
- package/typedoc/interfaces/core_location_location.DefaultPorts.html +4 -51
- package/typedoc/interfaces/core_location_location.Html5Mode.html +4 -51
- package/typedoc/interfaces/core_parse_ast_ast.Token.html +4 -84
- package/typedoc/interfaces/core_parse_interface.CompiledExpressionHandlerMap.html +4 -73
- package/typedoc/interfaces/core_parse_interface.CompiledExpressionProps.html +5 -107
- package/typedoc/interfaces/core_parse_lexer_lexer.LexerOptions.html +4 -40
- package/typedoc/interfaces/core_parse_parser_parser.ParsedAST.html +4 -29
- package/typedoc/interfaces/core_sanitize_interface.SanitizerFn.html +4 -18
- package/typedoc/interfaces/core_scope_scope.AsyncQueueTask.html +4 -51
- package/typedoc/interfaces/core_scope_scope.Listener.html +4 -106
- package/typedoc/interfaces/directive_model-options_model-options.ModelOptionsConfig.html +4 -73
- package/typedoc/interfaces/interface.ChangesObject.html +4 -40
- package/typedoc/interfaces/interface.ComponentOptions.html +4 -95
- package/typedoc/interfaces/interface.Controller.html +5 -74
- package/typedoc/interfaces/interface.Directive.html +6 -207
- package/typedoc/interfaces/interface.DirectivePrePost.html +4 -40
- package/typedoc/interfaces/interface.NgModelController.html +4 -172
- package/typedoc/interfaces/interface.NgModelOptions.html +4 -95
- package/typedoc/interfaces/interface.Provider.html +4 -84
- package/typedoc/interfaces/interface.TranscludeFunctionObject.html +4 -51
- package/typedoc/interfaces/loader.AngularBootstrapConfig.html +4 -29
- package/typedoc/interfaces/router_params_interface.ParamDeclaration.html +4 -117
- package/typedoc/interfaces/router_params_interface.ParamTypeDefinition.html +4 -106
- package/typedoc/interfaces/router_params_interface.RawParams.html +4 -18
- package/typedoc/interfaces/router_params_interface.Replace.html +4 -40
- package/typedoc/interfaces/router_resolve_interface.CustomAsyncPolicy.html +4 -18
- package/typedoc/interfaces/router_resolve_interface.ProviderLike.html +4 -84
- package/typedoc/interfaces/router_resolve_interface.ResolvableLiteral.html +4 -73
- package/typedoc/interfaces/router_resolve_interface.ResolvePolicy.html +4 -40
- package/typedoc/interfaces/router_state_interface.HrefOptions.html +4 -62
- package/typedoc/interfaces/router_state_interface.LazyLoadResult.html +4 -29
- package/typedoc/interfaces/router_state_interface.StateDeclaration.html +11 -212
- package/typedoc/interfaces/router_state_interface.TargetStateDef.html +4 -51
- package/typedoc/interfaces/router_state_interface.TransitionPromise.html +5 -54
- package/typedoc/interfaces/router_state_interface.ViewDeclaration.html +4 -183
- package/typedoc/interfaces/router_template-factory.BindingTuple.html +4 -40
- package/typedoc/interfaces/router_transition_interface.HookMatchCriteria.html +4 -73
- package/typedoc/interfaces/router_transition_interface.HookRegOptions.html +4 -51
- package/typedoc/interfaces/router_transition_interface.IHookRegistry.html +4 -128
- package/typedoc/interfaces/router_transition_interface.IMatchingNodes.html +4 -73
- package/typedoc/interfaces/router_transition_interface.PathType.html +4 -40
- package/typedoc/interfaces/router_transition_interface.PathTypes.html +4 -73
- package/typedoc/interfaces/router_transition_interface.RegisteredHooks.html +4 -18
- package/typedoc/interfaces/router_transition_interface.TransitionCreateHookFn.html +4 -18
- package/typedoc/interfaces/router_transition_interface.TransitionHookFn.html +4 -18
- package/typedoc/interfaces/router_transition_interface.TransitionHookOptions.html +4 -95
- package/typedoc/interfaces/router_transition_interface.TransitionOptions.html +4 -139
- package/typedoc/interfaces/router_transition_interface.TransitionStateHookFn.html +4 -18
- package/typedoc/interfaces/router_transition_interface.TreeChanges.html +4 -84
- package/typedoc/interfaces/router_view_interface.ActiveUIView.html +4 -84
- package/typedoc/interfaces/router_view_interface.ViewConfig.html +4 -73
- package/typedoc/interfaces/router_view_interface.ViewContext.html +4 -40
- package/typedoc/interfaces/services_anchor-scroll.AnchorScrollObject.html +4 -29
- package/typedoc/interfaces/services_log.LogService.html +4 -80
- package/typedoc/interfaces/shared_interface.TypedMap.html +4 -18
- package/typedoc/interfaces/shared_utils.ErrorHandlingConfig.html +4 -40
- package/typedoc/modules/animations_animate-cache.html +4 -7
- package/typedoc/modules/animations_animate-children-directive.html +4 -9
- package/typedoc/modules/animations_animate-css-driver.html +4 -7
- package/typedoc/modules/animations_animate-css.html +4 -7
- package/typedoc/modules/animations_animate-js-driver.html +4 -7
- package/typedoc/modules/animations_animate-js.html +4 -7
- package/typedoc/modules/animations_animate-queue.html +4 -7
- package/typedoc/modules/animations_animate-runner.html +4 -7
- package/typedoc/modules/animations_animate-swap.html +4 -7
- package/typedoc/modules/animations_animate.html +4 -7
- package/typedoc/modules/animations_animation.html +4 -7
- package/typedoc/modules/animations_interface.html +4 -7
- package/typedoc/modules/animations_raf-scheduler.html +4 -7
- package/typedoc/modules/animations_shared.html +4 -7
- package/typedoc/modules/core_cache_cache-factory.html +4 -7
- package/typedoc/modules/core_cache_cache.html +4 -7
- package/typedoc/modules/core_compile_attributes.html +4 -7
- package/typedoc/modules/core_compile_compile.html +4 -7
- package/typedoc/modules/core_controller_controller.html +4 -7
- package/typedoc/modules/core_di_injector.html +4 -65
- package/typedoc/modules/core_di_internal-injector.html +4 -7
- package/typedoc/modules/core_di_ng-module.html +4 -34
- package/typedoc/modules/core_error-handler.html +4 -7
- package/typedoc/modules/core_exception-handler.html +4 -7
- package/typedoc/modules/core_filter_filter.html +4 -7
- package/typedoc/modules/core_interpolate_interpolate.html +4 -7
- package/typedoc/modules/core_location_location.html +4 -7
- package/typedoc/modules/core_parse_ast-type.html +4 -7
- package/typedoc/modules/core_parse_ast_ast-node.html +4 -7
- package/typedoc/modules/core_parse_ast_ast.html +4 -7
- package/typedoc/modules/core_parse_interface.html +4 -7
- package/typedoc/modules/core_parse_interpreter.html +4 -7
- package/typedoc/modules/core_parse_lexer_lexer.html +4 -7
- package/typedoc/modules/core_parse_lexer_token.html +4 -7
- package/typedoc/modules/core_parse_parse.html +4 -7
- package/typedoc/modules/core_parse_parser_parser.html +4 -7
- package/typedoc/modules/core_pubsub_pubsub.html +95 -7
- package/typedoc/modules/core_sanitize_interface.html +4 -7
- package/typedoc/modules/core_sanitize_sanitize-uri.html +4 -7
- package/typedoc/modules/core_sce_sce.html +4 -7
- package/typedoc/modules/core_scope_scope.html +4 -7
- package/typedoc/modules/core_task-tracker-factory.html +134 -7
- package/typedoc/modules/core_url-utils_url-utils.html +4 -7
- package/typedoc/modules/directive_aria_aria.html +4 -7
- package/typedoc/modules/directive_attrs_attrs.html +4 -7
- package/typedoc/modules/directive_bind_bind.html +4 -7
- package/typedoc/modules/directive_channel_channel.html +4 -7
- package/typedoc/modules/directive_class_class.html +4 -7
- package/typedoc/modules/directive_cloak_cloak.html +4 -7
- package/typedoc/modules/directive_controller_controller.html +4 -7
- package/typedoc/modules/directive_events_events.html +4 -7
- package/typedoc/modules/directive_form_form.html +4 -7
- package/typedoc/modules/directive_if_if.html +4 -7
- package/typedoc/modules/directive_include_include.html +4 -7
- package/typedoc/modules/directive_init_init.html +4 -7
- package/typedoc/modules/directive_input_input.html +4 -7
- package/typedoc/modules/directive_messages_messages.html +4 -7
- package/typedoc/modules/directive_model-options_model-options.html +4 -9
- package/typedoc/modules/directive_model_model.html +4 -7
- package/typedoc/modules/directive_non-bindable_non-bindable.html +4 -9
- package/typedoc/modules/directive_observe_observe.html +4 -7
- package/typedoc/modules/directive_options_options.html +4 -7
- package/typedoc/modules/directive_ref_ref.html +4 -7
- package/typedoc/modules/directive_repeat_repeat.html +4 -7
- package/typedoc/modules/directive_script_script.html +4 -7
- package/typedoc/modules/directive_select_select.html +4 -7
- package/typedoc/modules/directive_setter_setter.html +4 -7
- package/typedoc/modules/directive_show-hide_show-hide.html +4 -7
- package/typedoc/modules/directive_style_style.html +4 -7
- package/typedoc/modules/directive_switch_switch.html +4 -7
- package/typedoc/modules/directive_transclude_transclude.html +4 -7
- package/typedoc/modules/directive_validators_validators.html +4 -7
- package/typedoc/modules/filters_filter.html +4 -7
- package/typedoc/modules/filters_filters.html +4 -7
- package/typedoc/modules/filters_limit-to.html +4 -7
- package/typedoc/modules/filters_order-by.html +4 -7
- package/typedoc/modules/index.html +4 -84
- package/typedoc/{variables/index.angular.html → modules/injection-tokens.html} +84 -30
- package/typedoc/modules/interface.html +35 -36
- package/typedoc/modules/loader.html +4 -7
- package/typedoc/modules/public.html +4 -7
- package/typedoc/modules/router_common_glob.html +4 -7
- package/typedoc/modules/router_common_queue.html +4 -7
- package/typedoc/modules/router_common_trace.html +4 -7
- package/typedoc/modules/router_directives_state-directives.html +4 -7
- package/typedoc/modules/router_directives_view-directive.html +4 -7
- package/typedoc/modules/router_globals.html +4 -7
- package/typedoc/modules/router_hooks_core-resolvables.html +4 -7
- package/typedoc/modules/router_hooks_ignored-transition.html +4 -7
- package/typedoc/modules/router_hooks_invalid-transition.html +4 -7
- package/typedoc/modules/router_hooks_lazy-load.html +4 -7
- package/typedoc/modules/router_hooks_on-enter-exit-retain.html +4 -7
- package/typedoc/modules/router_hooks_redirect-to.html +4 -7
- package/typedoc/modules/router_hooks_resolve.html +4 -7
- package/typedoc/modules/router_hooks_update-globals.html +4 -7
- package/typedoc/modules/router_hooks_url.html +4 -7
- package/typedoc/modules/router_hooks_views.html +4 -7
- package/typedoc/modules/router_params_interface.html +4 -7
- package/typedoc/modules/router_params_param-factory.html +4 -7
- package/typedoc/modules/router_params_param-type.html +4 -7
- package/typedoc/modules/router_params_param-types.html +4 -7
- package/typedoc/modules/router_params_param.html +4 -7
- package/typedoc/modules/router_params_state-params.html +4 -7
- package/typedoc/modules/router_path_path-node.html +4 -7
- package/typedoc/modules/router_path_path-utils.html +4 -7
- package/typedoc/modules/router_resolve_interface.html +4 -7
- package/typedoc/modules/router_resolve_resolvable.html +4 -7
- package/typedoc/modules/router_resolve_resolve-context.html +4 -7
- package/typedoc/modules/router_state-filters.html +4 -7
- package/typedoc/modules/router_state-provider.html +4 -7
- package/typedoc/modules/router_state_interface.html +4 -7
- package/typedoc/modules/router_state_state-builder.html +4 -7
- package/typedoc/modules/router_state_state-matcher.html +4 -7
- package/typedoc/modules/router_state_state-object.html +4 -7
- package/typedoc/modules/router_state_state-queue-manager.html +4 -7
- package/typedoc/modules/router_state_state-registry.html +4 -7
- package/typedoc/modules/router_state_state-service.html +4 -7
- package/typedoc/modules/router_state_target-state.html +4 -7
- package/typedoc/modules/router_state_views.html +4 -7
- package/typedoc/modules/router_template-factory.html +4 -7
- package/typedoc/modules/router_transition_hook-builder.html +4 -7
- package/typedoc/modules/router_transition_hook-registry.html +4 -7
- package/typedoc/modules/router_transition_interface.html +4 -7
- package/typedoc/modules/router_transition_reject-factory.html +4 -7
- package/typedoc/modules/router_transition_transition-event-type.html +4 -9
- package/typedoc/modules/router_transition_transition-hook.html +4 -7
- package/typedoc/modules/router_transition_transition-service.html +4 -9
- package/typedoc/modules/router_transition_transition.html +4 -7
- package/typedoc/modules/router_url_url-config.html +4 -7
- package/typedoc/modules/router_url_url-matcher.html +4 -7
- package/typedoc/modules/router_url_url-rule.html +4 -7
- package/typedoc/modules/router_url_url-rules.html +4 -7
- package/typedoc/modules/router_url_url-service.html +4 -7
- package/typedoc/modules/router_view-scroll.html +4 -7
- package/typedoc/modules/router_view_interface.html +4 -7
- package/typedoc/modules/router_view_view.html +4 -7
- package/typedoc/modules/services_anchor-scroll.html +4 -7
- package/typedoc/modules/services_browser.html +4 -7
- package/typedoc/modules/services_cookie-reader.html +4 -7
- package/typedoc/modules/services_http-backend_http-backend.html +4 -7
- package/typedoc/modules/services_http_http.html +4 -7
- package/typedoc/modules/services_log.html +4 -7
- package/typedoc/modules/services_template-request.html +4 -7
- package/typedoc/modules/shared_common.html +4 -7
- package/typedoc/modules/shared_constants.html +4 -7
- package/typedoc/modules/shared_dom.html +4 -7
- package/typedoc/modules/shared_hof.html +4 -7
- package/typedoc/modules/shared_interface.html +4 -7
- package/typedoc/modules/shared_noderef.html +4 -7
- package/typedoc/modules/shared_predicates.html +4 -7
- package/typedoc/modules/shared_strings.html +4 -7
- package/typedoc/modules/shared_test-utils.html +4 -7
- package/typedoc/modules/shared_utils.html +4 -34
- package/typedoc/modules.html +31 -8
- package/typedoc/types/animations_animate.AnimationMethod.html +4 -18
- package/typedoc/types/animations_interface.RafScheduler.html +4 -40
- package/typedoc/types/core_cache_cache-factory.TemplateCache.html +4 -18
- package/typedoc/types/core_compile_compile.ApplyDirectivesToNodeFn.html +4 -18
- package/typedoc/types/core_compile_compile.BoundTranscludeFn.html +4 -18
- package/typedoc/types/core_compile_compile.CompileFn.html +4 -18
- package/typedoc/types/core_compile_compile.CompileNodesFn.html +4 -18
- package/typedoc/types/core_compile_compile.CompositeLinkFn.html +4 -18
- package/typedoc/types/core_compile_compile.NodeLinkFn.html +4 -18
- package/typedoc/types/core_compile_compile.PublicLinkFn.html +4 -18
- package/typedoc/types/core_compile_compile.TranscludeFn.html +4 -18
- package/typedoc/types/core_error-handler.ErrorHandler.html +4 -18
- package/typedoc/types/core_exception-handler.LogService.html +4 -18
- package/typedoc/types/core_parse_ast_ast-node.ASTNode.html +4 -293
- package/typedoc/types/core_parse_interface.CompiledExpression.html +4 -18
- package/typedoc/types/core_parse_interface.CompiledExpressionFunction.html +7 -20
- package/typedoc/types/core_parse_interface.ParseService.html +7 -20
- package/typedoc/types/core_parse_interpreter.DecoratedASTNode.html +4 -18
- package/typedoc/types/core_scope_scope.ListenerFunction.html +4 -18
- package/typedoc/types/{interface.AnnotatedFactory.html → core_task-tracker-factory.AnnotatedFactory.html} +9 -19
- package/typedoc/types/core_url-utils_url-utils.HttpProtocol.html +4 -18
- package/typedoc/types/interface.CloneAttachFunction.html +4 -18
- package/typedoc/types/interface.ControllerConstructor.html +5 -19
- package/typedoc/types/interface.DirectiveCompileFn.html +4 -18
- package/typedoc/types/interface.DirectiveController.html +4 -18
- package/typedoc/types/interface.DirectiveFactory.html +4 -18
- package/typedoc/types/interface.DirectiveLinkFn.html +4 -18
- package/typedoc/types/interface.Expression.html +4 -18
- package/typedoc/types/interface.FilterFactory.html +4 -18
- package/typedoc/types/interface.FilterFn.html +4 -18
- package/typedoc/types/interface.Injectable.html +5 -19
- package/typedoc/types/interface.InjectableFactory.html +5 -19
- package/typedoc/types/interface.OnChangesObject.html +4 -18
- package/typedoc/types/interface.TController.html +4 -18
- package/typedoc/types/router_resolve_interface.PolicyAsync.html +4 -18
- package/typedoc/types/router_resolve_interface.PolicyWhen.html +4 -18
- package/typedoc/types/router_state_interface.RedirectToResult.html +4 -18
- package/typedoc/types/router_state_interface.ResolveTypes.html +4 -18
- package/typedoc/types/router_state_interface.StateOrName.html +4 -18
- package/typedoc/types/router_state_interface._StateDeclaration.html +4 -18
- package/typedoc/types/router_transition_interface.HookFn.html +4 -18
- package/typedoc/types/router_transition_interface.HookMatchCriterion.html +4 -18
- package/typedoc/types/router_transition_interface.HookResult.html +4 -18
- package/typedoc/types/router_transition_interface.IHookRegistration.html +4 -18
- package/typedoc/types/router_transition_interface.IStateMatch.html +4 -18
- package/typedoc/types/services_anchor-scroll.AnchorScrollFunction.html +4 -18
- package/typedoc/types/services_anchor-scroll.AnchorScrollService.html +4 -18
- package/typedoc/types/services_browser.UrlChangeListener.html +4 -18
- package/typedoc/types/services_log.LogCall.html +4 -18
- package/typedoc/types/shared_interface.Mapper.html +4 -18
- package/typedoc/types/shared_interface.Predicate.html +4 -18
- package/typedoc/types/shared_interface.PredicateBinary.html +4 -18
- package/typedoc/variables/animations_shared.ACTIVE_CLASS_SUFFIX.html +4 -18
- package/typedoc/variables/animations_shared.ADD_CLASS_SUFFIX.html +4 -18
- package/typedoc/variables/animations_shared.ANIMATIONEND_EVENT.html +4 -18
- package/typedoc/variables/animations_shared.ANIMATION_DELAY_PROP.html +4 -18
- package/typedoc/variables/animations_shared.ANIMATION_DURATION_PROP.html +4 -18
- package/typedoc/variables/animations_shared.ANIMATION_ITERATION_COUNT_KEY.html +4 -18
- package/typedoc/variables/animations_shared.ANIMATION_PLAYSTATE_KEY.html +4 -18
- package/typedoc/variables/animations_shared.ANIMATION_PROP.html +4 -18
- package/typedoc/variables/animations_shared.CSS_PREFIX.html +4 -18
- package/typedoc/variables/animations_shared.DELAY_KEY.html +4 -18
- package/typedoc/variables/animations_shared.DURATION_KEY.html +4 -18
- package/typedoc/variables/animations_shared.EVENT_CLASS_PREFIX.html +4 -18
- package/typedoc/variables/animations_shared.NG_ANIMATE_CHILDREN_DATA.html +4 -18
- package/typedoc/variables/animations_shared.NG_ANIMATE_CLASSNAME.html +4 -18
- package/typedoc/variables/animations_shared.PREPARE_CLASS_SUFFIX.html +4 -18
- package/typedoc/variables/animations_shared.PROPERTY_KEY.html +4 -18
- package/typedoc/variables/animations_shared.REMOVE_CLASS_SUFFIX.html +4 -18
- package/typedoc/variables/animations_shared.SAFE_FAST_FORWARD_DURATION_VALUE.html +4 -18
- package/typedoc/variables/animations_shared.TIMING_KEY.html +4 -18
- package/typedoc/variables/animations_shared.TRANSITIONEND_EVENT.html +4 -18
- package/typedoc/variables/animations_shared.TRANSITION_DELAY_PROP.html +4 -18
- package/typedoc/variables/animations_shared.TRANSITION_DURATION_PROP.html +4 -18
- package/typedoc/variables/animations_shared.TRANSITION_PROP.html +4 -18
- package/typedoc/variables/animations_shared.ngMinErr.html +4 -18
- package/typedoc/variables/core_cache_cache.Cache.html +4 -18
- package/typedoc/variables/core_cache_cache.EXPANDO.html +4 -18
- package/typedoc/variables/core_cache_cache.ISOLATE_SCOPE_KEY.html +4 -18
- package/typedoc/variables/core_cache_cache.SCOPE_KEY.html +4 -18
- package/typedoc/variables/core_compile_compile.DirectiveSuffix.html +4 -18
- package/typedoc/variables/core_di_ng-module.ANIMATION_LITERAL.html +4 -18
- package/typedoc/variables/core_di_ng-module.COMPILE_LITERAL.html +4 -18
- package/typedoc/variables/core_di_ng-module.CONTROLLER_LITERAL.html +4 -18
- package/typedoc/variables/core_di_ng-module.FILTER_LITERAL.html +4 -18
- package/typedoc/variables/core_di_ng-module.INJECTOR_LITERAL.html +4 -18
- package/typedoc/variables/core_parse_interpreter.PURITY_ABSOLUTE.html +4 -18
- package/typedoc/variables/core_parse_interpreter.PURITY_RELATIVE.html +4 -18
- package/typedoc/variables/core_pubsub_pubsub.EventBus.html +4 -18
- package/typedoc/variables/core_sce_sce.SCE_CONTEXTS.html +4 -18
- package/typedoc/variables/core_scope_scope.NONSCOPE.html +4 -18
- package/typedoc/variables/core_scope_scope.__applyAsyncQueue.html +4 -18
- package/typedoc/variables/core_scope_scope._postUpdateQueue.html +4 -18
- package/typedoc/variables/directive_attrs_attrs.REGEX_STRING_REGEXP.html +4 -18
- package/typedoc/variables/directive_attrs_attrs.ngAttributeAliasDirectives.html +4 -18
- package/typedoc/variables/directive_class_class.ngClassDirective.html +4 -18
- package/typedoc/variables/directive_class_class.ngClassEvenDirective.html +4 -18
- package/typedoc/variables/directive_class_class.ngClassOddDirective.html +4 -18
- package/typedoc/variables/directive_events_events.ngEventDirectives.html +4 -18
- package/typedoc/variables/directive_form_form.PENDING_CLASS.html +4 -18
- package/typedoc/variables/directive_form_form.formDirective.html +4 -18
- package/typedoc/variables/directive_form_form.ngFormDirective.html +4 -18
- package/typedoc/variables/directive_form_form.nullFormCtrl.html +4 -18
- package/typedoc/variables/directive_input_input.EMAIL_REGEXP.html +4 -18
- package/typedoc/variables/directive_input_input.ISO_DATE_REGEXP.html +4 -18
- package/typedoc/variables/directive_input_input.URL_REGEXP.html +4 -18
- package/typedoc/variables/directive_input_input.VALIDITY_STATE_PROPERTY.html +4 -18
- package/typedoc/variables/directive_messages_messages.ngMessageDefaultDirective.html +4 -18
- package/typedoc/variables/directive_messages_messages.ngMessageDirective.html +4 -18
- package/typedoc/variables/directive_messages_messages.ngMessageExpDirective.html +4 -18
- package/typedoc/variables/directive_model-options_model-options.defaultModelOptions.html +4 -18
- package/typedoc/variables/directive_model_model.ngModelMinErr.html +4 -18
- package/typedoc/variables/directive_options_options.ngOptionsDirective.html +20 -22
- package/typedoc/variables/directive_transclude_transclude.ngTranscludeDirective.html +4 -18
- package/typedoc/variables/directive_validators_validators.maxlengthDirective.html +4 -18
- package/typedoc/variables/directive_validators_validators.minlengthDirective.html +4 -18
- package/typedoc/variables/directive_validators_validators.patternDirective.html +4 -18
- package/typedoc/variables/directive_validators_validators.requiredDirective.html +4 -18
- package/typedoc/variables/{core_di_injector.path.html → injection-tokens._injectTokens.html} +28 -24
- package/typedoc/variables/public.VERSION.html +4 -18
- package/typedoc/variables/router_common_trace.trace.html +4 -18
- package/typedoc/variables/router_directives_view-directive.ngView.html +4 -23
- package/typedoc/variables/router_hooks_resolve.RESOLVE_HOOK_PRIORITY.html +4 -18
- package/typedoc/variables/router_params_param.DefType.html +4 -18
- package/typedoc/variables/router_resolve_resolvable.defaultResolvePolicy.html +4 -18
- package/typedoc/variables/router_resolve_resolve-context.resolvePolicies.html +4 -18
- package/typedoc/variables/router_transition_transition-service.defaultTransOpts.html +4 -18
- package/typedoc/variables/services_log.LogService.html +4 -25
- package/typedoc/variables/shared_common.assertMap.html +4 -18
- package/typedoc/variables/shared_common.assertPredicate.html +4 -18
- package/typedoc/variables/shared_common.pushTo.html +4 -18
- package/typedoc/variables/shared_common.removeFrom.html +4 -18
- package/typedoc/variables/shared_constants.ALIASED_ATTR.html +4 -18
- package/typedoc/variables/shared_constants.DIRTY_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.EMPTY_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.INVALID_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.NOT_EMPTY_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.PREFIX_REGEXP.html +4 -18
- package/typedoc/variables/shared_constants.PRISTINE_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.SPECIAL_CHARS_REGEXP.html +4 -18
- package/typedoc/variables/shared_constants.TOUCHED_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.UNTOUCHED_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.VALID_CLASS.html +4 -18
- package/typedoc/variables/shared_dom.BOOLEAN_ATTR.html +4 -18
- package/typedoc/variables/shared_hof.propEq.html +4 -18
- package/typedoc/variables/shared_strings.hostRegex.html +4 -18
- package/typedoc/variables/shared_strings.splitEqual.html +4 -18
- package/typedoc/variables/shared_strings.splitHash.html +4 -18
- package/typedoc/variables/shared_strings.splitQuery.html +4 -18
- package/typedoc/variables/shared_utils.isProxySymbol.html +4 -18
- package/typedoc/variables/shared_utils.ngAttrPrefixes.html +4 -18
- package/typedoc.json +3 -1
- package/SECURITY.md +0 -16
- package/TODO.md +0 -13
- package/docs/content/en/about/featured-background.jpg +0 -0
- package/docs/content/en/about/index.md +0 -37
- package/docs/content/en/blog/_index.md +0 -8
- package/docs/content/en/blog/news/_index.md +0 -4
- package/docs/content/en/blog/news/first-post/featured-sunset-get.png +0 -0
- package/docs/content/en/blog/news/first-post/index.md +0 -46
- package/docs/content/en/blog/news/second-post.md +0 -238
- package/docs/content/en/blog/releases/_index.md +0 -4
- package/docs/content/en/blog/releases/in-depth-monoliths-detailed-spec.md +0 -238
- package/docs/content/en/community/_index.md +0 -6
- package/docs/content/en/docs/concepts/_index.md +0 -14
- package/docs/content/en/docs/contribution-guidelines/_index.md +0 -77
- package/docs/content/en/docs/examples/_index.md +0 -13
- package/docs/content/en/docs/getting-started/_index.md +0 -35
- package/docs/content/en/docs/getting-started/example-page.md +0 -231
- package/docs/content/en/docs/overview/_index.md +0 -34
- package/docs/content/en/docs/reference/_index.md +0 -12
- package/docs/content/en/docs/reference/parameter-reference.md +0 -207
- package/docs/content/en/docs/tasks/Ponycopters/_index.md +0 -12
- package/docs/content/en/docs/tasks/Ponycopters/configuring-ponycopters.md +0 -230
- package/docs/content/en/docs/tasks/Ponycopters/launching-ponycopters.md +0 -230
- package/docs/content/en/docs/tasks/_index.md +0 -21
- package/docs/content/en/docs/tasks/beds.md +0 -230
- package/docs/content/en/docs/tasks/porridge.md +0 -230
- package/docs/content/en/docs/tasks/task.md +0 -230
- package/docs/content/en/docs/tutorials/_index.md +0 -12
- package/docs/content/en/docs/tutorials/multi-bear.md +0 -230
- package/docs/content/en/docs/tutorials/tutorial2.md +0 -230
- package/docs/content/en/featured-background.jpg +0 -0
- package/docs/content/en/search.md +0 -4
- package/docs/layouts/_default/_markup/render-heading.html +0 -1
- package/public/public/legacy.html +0 -13203
- package/typedoc/functions/shared_utils.replaceInline.html +0 -331
- package/typedoc/variables/core_di_ng-module.PROVIDE_LITERAL.html +0 -263
|
@@ -3,11 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8" />
|
|
5
5
|
<meta http-equiv="x-ua-compatible" content="IE=edge" />
|
|
6
|
-
<title>Scope |
|
|
7
|
-
<meta
|
|
8
|
-
name="description"
|
|
9
|
-
content="Documentation for @angular-wave/angular.ts"
|
|
10
|
-
/>
|
|
6
|
+
<title>Scope | AngularTS</title>
|
|
7
|
+
<meta name="description" content="Documentation for AngularTS" />
|
|
11
8
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
12
9
|
<link rel="stylesheet" href="../assets/style.css" />
|
|
13
10
|
<link rel="stylesheet" href="../assets/highlight.css" />
|
|
@@ -36,7 +33,7 @@
|
|
|
36
33
|
</script>
|
|
37
34
|
<header class="tsd-page-toolbar">
|
|
38
35
|
<div class="tsd-toolbar-contents container">
|
|
39
|
-
<a href="../index.html" class="title"
|
|
36
|
+
<a href="../index.html" class="title">AngularTS</a>
|
|
40
37
|
<div id="tsd-toolbar-links"></div>
|
|
41
38
|
<button id="tsd-search-trigger" class="tsd-widget" aria-label="Search">
|
|
42
39
|
<svg
|
|
@@ -104,17 +101,6 @@
|
|
|
104
101
|
</div>
|
|
105
102
|
<div class="tsd-comment tsd-typography"></div>
|
|
106
103
|
</section>
|
|
107
|
-
<aside class="tsd-sources">
|
|
108
|
-
<ul>
|
|
109
|
-
<li>
|
|
110
|
-
Defined in
|
|
111
|
-
<a
|
|
112
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L147"
|
|
113
|
-
>src/core/scope/scope.js:147</a
|
|
114
|
-
>
|
|
115
|
-
</li>
|
|
116
|
-
</ul>
|
|
117
|
-
</aside>
|
|
118
104
|
<section class="tsd-panel-group tsd-index-group">
|
|
119
105
|
<section class="tsd-panel tsd-index-panel">
|
|
120
106
|
<details class="tsd-index-content tsd-accordion" open>
|
|
@@ -459,35 +445,6 @@
|
|
|
459
445
|
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
460
446
|
><span>$watch</span></a
|
|
461
447
|
>
|
|
462
|
-
<a href="#watchcollection" class="tsd-index-link"
|
|
463
|
-
><svg
|
|
464
|
-
class="tsd-kind-icon"
|
|
465
|
-
viewBox="0 0 24 24"
|
|
466
|
-
aria-label="Method"
|
|
467
|
-
>
|
|
468
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
469
|
-
><span>$watch<wbr />Collection</span></a
|
|
470
|
-
>
|
|
471
|
-
<a href="#watchgroup" class="tsd-index-link"
|
|
472
|
-
><svg
|
|
473
|
-
class="tsd-kind-icon"
|
|
474
|
-
viewBox="0 0 24 24"
|
|
475
|
-
aria-label="Method"
|
|
476
|
-
>
|
|
477
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
478
|
-
><span>$watch<wbr />Group</span></a
|
|
479
|
-
>
|
|
480
|
-
<a href="#checkelistenersforallkeys" class="tsd-index-link"
|
|
481
|
-
><svg
|
|
482
|
-
class="tsd-kind-icon"
|
|
483
|
-
viewBox="0 0 24 24"
|
|
484
|
-
aria-label="Method"
|
|
485
|
-
>
|
|
486
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
487
|
-
><span
|
|
488
|
-
>checke<wbr />Listeners<wbr />For<wbr />All<wbr />Keys</span
|
|
489
|
-
></a
|
|
490
|
-
>
|
|
491
448
|
<a href="#deleteproperty" class="tsd-index-link"
|
|
492
449
|
><svg
|
|
493
450
|
class="tsd-kind-icon"
|
|
@@ -497,24 +454,6 @@
|
|
|
497
454
|
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
498
455
|
><span>delete<wbr />Property</span></a
|
|
499
456
|
>
|
|
500
|
-
<a href="#deregisterforeignkey" class="tsd-index-link"
|
|
501
|
-
><svg
|
|
502
|
-
class="tsd-kind-icon"
|
|
503
|
-
viewBox="0 0 24 24"
|
|
504
|
-
aria-label="Method"
|
|
505
|
-
>
|
|
506
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
507
|
-
><span>deregister<wbr />Foreign<wbr />Key</span></a
|
|
508
|
-
>
|
|
509
|
-
<a href="#deregisterkey" class="tsd-index-link"
|
|
510
|
-
><svg
|
|
511
|
-
class="tsd-kind-icon"
|
|
512
|
-
viewBox="0 0 24 24"
|
|
513
|
-
aria-label="Method"
|
|
514
|
-
>
|
|
515
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
516
|
-
><span>deregister<wbr />Key</span></a
|
|
517
|
-
>
|
|
518
457
|
<a href="#get" class="tsd-index-link"
|
|
519
458
|
><svg
|
|
520
459
|
class="tsd-kind-icon"
|
|
@@ -524,33 +463,6 @@
|
|
|
524
463
|
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
525
464
|
><span>get</span></a
|
|
526
465
|
>
|
|
527
|
-
<a href="#notifylistener" class="tsd-index-link"
|
|
528
|
-
><svg
|
|
529
|
-
class="tsd-kind-icon"
|
|
530
|
-
viewBox="0 0 24 24"
|
|
531
|
-
aria-label="Method"
|
|
532
|
-
>
|
|
533
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
534
|
-
><span>notify<wbr />Listener</span></a
|
|
535
|
-
>
|
|
536
|
-
<a href="#registerforeignkey" class="tsd-index-link"
|
|
537
|
-
><svg
|
|
538
|
-
class="tsd-kind-icon"
|
|
539
|
-
viewBox="0 0 24 24"
|
|
540
|
-
aria-label="Method"
|
|
541
|
-
>
|
|
542
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
543
|
-
><span>register<wbr />Foreign<wbr />Key</span></a
|
|
544
|
-
>
|
|
545
|
-
<a href="#registerkey" class="tsd-index-link"
|
|
546
|
-
><svg
|
|
547
|
-
class="tsd-kind-icon"
|
|
548
|
-
viewBox="0 0 24 24"
|
|
549
|
-
aria-label="Method"
|
|
550
|
-
>
|
|
551
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
552
|
-
><span>register<wbr />Key</span></a
|
|
553
|
-
>
|
|
554
466
|
<a href="#set" class="tsd-index-link"
|
|
555
467
|
><svg
|
|
556
468
|
class="tsd-kind-icon"
|
|
@@ -669,17 +581,6 @@
|
|
|
669
581
|
>
|
|
670
582
|
</h4>
|
|
671
583
|
<div class="tsd-comment tsd-typography"></div>
|
|
672
|
-
<aside class="tsd-sources">
|
|
673
|
-
<ul>
|
|
674
|
-
<li>
|
|
675
|
-
Defined in
|
|
676
|
-
<a
|
|
677
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L154"
|
|
678
|
-
>src/core/scope/scope.js:154</a
|
|
679
|
-
>
|
|
680
|
-
</li>
|
|
681
|
-
</ul>
|
|
682
|
-
</aside>
|
|
683
584
|
</div>
|
|
684
585
|
</li>
|
|
685
586
|
</ul>
|
|
@@ -721,17 +622,6 @@
|
|
|
721
622
|
><span class="tsd-signature-symbol">[]</span>
|
|
722
623
|
</div>
|
|
723
624
|
<div class="tsd-comment tsd-typography"></div>
|
|
724
|
-
<aside class="tsd-sources">
|
|
725
|
-
<ul>
|
|
726
|
-
<li>
|
|
727
|
-
Defined in
|
|
728
|
-
<a
|
|
729
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L213"
|
|
730
|
-
>src/core/scope/scope.js:213</a
|
|
731
|
-
>
|
|
732
|
-
</li>
|
|
733
|
-
</ul>
|
|
734
|
-
</aside>
|
|
735
625
|
</section>
|
|
736
626
|
<section class="tsd-panel tsd-member">
|
|
737
627
|
<h3 class="tsd-anchor-link" id="destroyed">
|
|
@@ -750,24 +640,6 @@
|
|
|
750
640
|
<span class="tsd-signature-type">boolean</span>
|
|
751
641
|
</div>
|
|
752
642
|
<div class="tsd-comment tsd-typography"></div>
|
|
753
|
-
<aside class="tsd-sources">
|
|
754
|
-
<ul>
|
|
755
|
-
<li>
|
|
756
|
-
Defined in
|
|
757
|
-
<a
|
|
758
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L218"
|
|
759
|
-
>src/core/scope/scope.js:218</a
|
|
760
|
-
>
|
|
761
|
-
</li>
|
|
762
|
-
<li>
|
|
763
|
-
Defined in
|
|
764
|
-
<a
|
|
765
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L1168"
|
|
766
|
-
>src/core/scope/scope.js:1168</a
|
|
767
|
-
>
|
|
768
|
-
</li>
|
|
769
|
-
</ul>
|
|
770
|
-
</aside>
|
|
771
643
|
</section>
|
|
772
644
|
<section class="tsd-panel tsd-member">
|
|
773
645
|
<h3 class="tsd-anchor-link" id="listeners">
|
|
@@ -792,17 +664,6 @@
|
|
|
792
664
|
><span class="tsd-signature-symbol">></span>
|
|
793
665
|
</div>
|
|
794
666
|
<div class="tsd-comment tsd-typography"></div>
|
|
795
|
-
<aside class="tsd-sources">
|
|
796
|
-
<ul>
|
|
797
|
-
<li>
|
|
798
|
-
Defined in
|
|
799
|
-
<a
|
|
800
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L165"
|
|
801
|
-
>src/core/scope/scope.js:165</a
|
|
802
|
-
>
|
|
803
|
-
</li>
|
|
804
|
-
</ul>
|
|
805
|
-
</aside>
|
|
806
667
|
</section>
|
|
807
668
|
<section class="tsd-panel tsd-member">
|
|
808
669
|
<h3 class="tsd-anchor-link" id="children">
|
|
@@ -822,17 +683,6 @@
|
|
|
822
683
|
><span class="tsd-signature-symbol">[]</span>
|
|
823
684
|
</div>
|
|
824
685
|
<div class="tsd-comment tsd-typography"></div>
|
|
825
|
-
<aside class="tsd-sources">
|
|
826
|
-
<ul>
|
|
827
|
-
<li>
|
|
828
|
-
Defined in
|
|
829
|
-
<a
|
|
830
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L194"
|
|
831
|
-
>src/core/scope/scope.js:194</a
|
|
832
|
-
>
|
|
833
|
-
</li>
|
|
834
|
-
</ul>
|
|
835
|
-
</aside>
|
|
836
686
|
</section>
|
|
837
687
|
<section class="tsd-panel tsd-member">
|
|
838
688
|
<h3 class="tsd-anchor-link" id="handler">
|
|
@@ -851,17 +701,6 @@
|
|
|
851
701
|
<a href="" class="tsd-signature-type tsd-kind-class">Scope</a>
|
|
852
702
|
</div>
|
|
853
703
|
<div class="tsd-comment tsd-typography"></div>
|
|
854
|
-
<aside class="tsd-sources">
|
|
855
|
-
<ul>
|
|
856
|
-
<li>
|
|
857
|
-
Defined in
|
|
858
|
-
<a
|
|
859
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L183"
|
|
860
|
-
>src/core/scope/scope.js:183</a
|
|
861
|
-
>
|
|
862
|
-
</li>
|
|
863
|
-
</ul>
|
|
864
|
-
</aside>
|
|
865
704
|
</section>
|
|
866
705
|
<section class="tsd-panel tsd-member">
|
|
867
706
|
<h3 class="tsd-anchor-link" id="id">
|
|
@@ -877,17 +716,6 @@
|
|
|
877
716
|
<span class="tsd-signature-type">number</span>
|
|
878
717
|
</div>
|
|
879
718
|
<div class="tsd-comment tsd-typography"></div>
|
|
880
|
-
<aside class="tsd-sources">
|
|
881
|
-
<ul>
|
|
882
|
-
<li>
|
|
883
|
-
Defined in
|
|
884
|
-
<a
|
|
885
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L199"
|
|
886
|
-
>src/core/scope/scope.js:199</a
|
|
887
|
-
>
|
|
888
|
-
</li>
|
|
889
|
-
</ul>
|
|
890
|
-
</aside>
|
|
891
719
|
</section>
|
|
892
720
|
<section class="tsd-panel tsd-member">
|
|
893
721
|
<h3 class="tsd-anchor-link" id="parent">
|
|
@@ -905,17 +733,6 @@
|
|
|
905
733
|
><span class="tsd-signature-symbol">:</span>
|
|
906
734
|
<a href="" class="tsd-signature-type tsd-kind-class">Scope</a>
|
|
907
735
|
</div>
|
|
908
|
-
<aside class="tsd-sources">
|
|
909
|
-
<ul>
|
|
910
|
-
<li>
|
|
911
|
-
Defined in
|
|
912
|
-
<a
|
|
913
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L206"
|
|
914
|
-
>src/core/scope/scope.js:206</a
|
|
915
|
-
>
|
|
916
|
-
</li>
|
|
917
|
-
</ul>
|
|
918
|
-
</aside>
|
|
919
736
|
</section>
|
|
920
737
|
<section class="tsd-panel tsd-member">
|
|
921
738
|
<h3 class="tsd-anchor-link" id="proxy">
|
|
@@ -934,38 +751,6 @@
|
|
|
934
751
|
<p>Current proxy being operated on</p>
|
|
935
752
|
</div>
|
|
936
753
|
<div class="tsd-comment tsd-typography"></div>
|
|
937
|
-
<aside class="tsd-sources">
|
|
938
|
-
<ul>
|
|
939
|
-
<li>
|
|
940
|
-
Defined in
|
|
941
|
-
<a
|
|
942
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L180"
|
|
943
|
-
>src/core/scope/scope.js:180</a
|
|
944
|
-
>
|
|
945
|
-
</li>
|
|
946
|
-
<li>
|
|
947
|
-
Defined in
|
|
948
|
-
<a
|
|
949
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L248"
|
|
950
|
-
>src/core/scope/scope.js:248</a
|
|
951
|
-
>
|
|
952
|
-
</li>
|
|
953
|
-
<li>
|
|
954
|
-
Defined in
|
|
955
|
-
<a
|
|
956
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L472"
|
|
957
|
-
>src/core/scope/scope.js:472</a
|
|
958
|
-
>
|
|
959
|
-
</li>
|
|
960
|
-
<li>
|
|
961
|
-
Defined in
|
|
962
|
-
<a
|
|
963
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L474"
|
|
964
|
-
>src/core/scope/scope.js:474</a
|
|
965
|
-
>
|
|
966
|
-
</li>
|
|
967
|
-
</ul>
|
|
968
|
-
</aside>
|
|
969
754
|
</section>
|
|
970
755
|
<section class="tsd-panel tsd-member">
|
|
971
756
|
<h3 class="tsd-anchor-link" id="root">
|
|
@@ -981,17 +766,6 @@
|
|
|
981
766
|
<a href="" class="tsd-signature-type tsd-kind-class">Scope</a>
|
|
982
767
|
</div>
|
|
983
768
|
<div class="tsd-comment tsd-typography"></div>
|
|
984
|
-
<aside class="tsd-sources">
|
|
985
|
-
<ul>
|
|
986
|
-
<li>
|
|
987
|
-
Defined in
|
|
988
|
-
<a
|
|
989
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L204"
|
|
990
|
-
>src/core/scope/scope.js:204</a
|
|
991
|
-
>
|
|
992
|
-
</li>
|
|
993
|
-
</ul>
|
|
994
|
-
</aside>
|
|
995
769
|
</section>
|
|
996
770
|
<section class="tsd-panel tsd-member">
|
|
997
771
|
<h3 class="tsd-anchor-link" id="target">
|
|
@@ -1010,31 +784,6 @@
|
|
|
1010
784
|
<span class="tsd-signature-type">any</span>
|
|
1011
785
|
</div>
|
|
1012
786
|
<div class="tsd-comment tsd-typography"></div>
|
|
1013
|
-
<aside class="tsd-sources">
|
|
1014
|
-
<ul>
|
|
1015
|
-
<li>
|
|
1016
|
-
Defined in
|
|
1017
|
-
<a
|
|
1018
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L186"
|
|
1019
|
-
>src/core/scope/scope.js:186</a
|
|
1020
|
-
>
|
|
1021
|
-
</li>
|
|
1022
|
-
<li>
|
|
1023
|
-
Defined in
|
|
1024
|
-
<a
|
|
1025
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L249"
|
|
1026
|
-
>src/core/scope/scope.js:249</a
|
|
1027
|
-
>
|
|
1028
|
-
</li>
|
|
1029
|
-
<li>
|
|
1030
|
-
Defined in
|
|
1031
|
-
<a
|
|
1032
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L527"
|
|
1033
|
-
>src/core/scope/scope.js:527</a
|
|
1034
|
-
>
|
|
1035
|
-
</li>
|
|
1036
|
-
</ul>
|
|
1037
|
-
</aside>
|
|
1038
787
|
</section>
|
|
1039
788
|
<section class="tsd-panel tsd-member">
|
|
1040
789
|
<h3 class="tsd-anchor-link" id="value">
|
|
@@ -1050,17 +799,6 @@
|
|
|
1050
799
|
<span class="tsd-signature-type">any</span>
|
|
1051
800
|
</div>
|
|
1052
801
|
<div class="tsd-comment tsd-typography"></div>
|
|
1053
|
-
<aside class="tsd-sources">
|
|
1054
|
-
<ul>
|
|
1055
|
-
<li>
|
|
1056
|
-
Defined in
|
|
1057
|
-
<a
|
|
1058
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L189"
|
|
1059
|
-
>src/core/scope/scope.js:189</a
|
|
1060
|
-
>
|
|
1061
|
-
</li>
|
|
1062
|
-
</ul>
|
|
1063
|
-
</aside>
|
|
1064
802
|
</section>
|
|
1065
803
|
<section class="tsd-panel tsd-member">
|
|
1066
804
|
<h3 class="tsd-anchor-link" id="context">
|
|
@@ -1078,17 +816,6 @@
|
|
|
1078
816
|
><span class="tsd-signature-symbol">:</span>
|
|
1079
817
|
<a href="" class="tsd-signature-type tsd-kind-class">Scope</a>
|
|
1080
818
|
</div>
|
|
1081
|
-
<aside class="tsd-sources">
|
|
1082
|
-
<ul>
|
|
1083
|
-
<li>
|
|
1084
|
-
Defined in
|
|
1085
|
-
<a
|
|
1086
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L155"
|
|
1087
|
-
>src/core/scope/scope.js:155</a
|
|
1088
|
-
>
|
|
1089
|
-
</li>
|
|
1090
|
-
</ul>
|
|
1091
|
-
</aside>
|
|
1092
819
|
</section>
|
|
1093
820
|
<section class="tsd-panel tsd-member">
|
|
1094
821
|
<h3 class="tsd-anchor-link" id="filters">
|
|
@@ -1107,17 +834,6 @@
|
|
|
1107
834
|
<span class="tsd-signature-type">any</span
|
|
1108
835
|
><span class="tsd-signature-symbol">[]</span>
|
|
1109
836
|
</div>
|
|
1110
|
-
<aside class="tsd-sources">
|
|
1111
|
-
<ul>
|
|
1112
|
-
<li>
|
|
1113
|
-
Defined in
|
|
1114
|
-
<a
|
|
1115
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L215"
|
|
1116
|
-
>src/core/scope/scope.js:215</a
|
|
1117
|
-
>
|
|
1118
|
-
</li>
|
|
1119
|
-
</ul>
|
|
1120
|
-
</aside>
|
|
1121
837
|
</section>
|
|
1122
838
|
<section class="tsd-panel tsd-member">
|
|
1123
839
|
<h3 class="tsd-anchor-link" id="foreignlisteners">
|
|
@@ -1145,17 +861,6 @@
|
|
|
1145
861
|
><span class="tsd-signature-symbol">></span>
|
|
1146
862
|
</div>
|
|
1147
863
|
<div class="tsd-comment tsd-typography"></div>
|
|
1148
|
-
<aside class="tsd-sources">
|
|
1149
|
-
<ul>
|
|
1150
|
-
<li>
|
|
1151
|
-
Defined in
|
|
1152
|
-
<a
|
|
1153
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L168"
|
|
1154
|
-
>src/core/scope/scope.js:168</a
|
|
1155
|
-
>
|
|
1156
|
-
</li>
|
|
1157
|
-
</ul>
|
|
1158
|
-
</aside>
|
|
1159
864
|
</section>
|
|
1160
865
|
<section class="tsd-panel tsd-member">
|
|
1161
866
|
<h3 class="tsd-anchor-link" id="foreignproxies">
|
|
@@ -1177,17 +882,6 @@
|
|
|
1177
882
|
><span class="tsd-signature-symbol">></span>
|
|
1178
883
|
</div>
|
|
1179
884
|
<div class="tsd-comment tsd-typography"></div>
|
|
1180
|
-
<aside class="tsd-sources">
|
|
1181
|
-
<ul>
|
|
1182
|
-
<li>
|
|
1183
|
-
Defined in
|
|
1184
|
-
<a
|
|
1185
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L171"
|
|
1186
|
-
>src/core/scope/scope.js:171</a
|
|
1187
|
-
>
|
|
1188
|
-
</li>
|
|
1189
|
-
</ul>
|
|
1190
|
-
</aside>
|
|
1191
885
|
</section>
|
|
1192
886
|
<section class="tsd-panel tsd-member">
|
|
1193
887
|
<h3 class="tsd-anchor-link" id="functionlisteners">
|
|
@@ -1219,17 +913,6 @@
|
|
|
1219
913
|
><span class="tsd-signature-symbol">></span>
|
|
1220
914
|
</div>
|
|
1221
915
|
<div class="tsd-comment tsd-typography"></div>
|
|
1222
|
-
<aside class="tsd-sources">
|
|
1223
|
-
<ul>
|
|
1224
|
-
<li>
|
|
1225
|
-
Defined in
|
|
1226
|
-
<a
|
|
1227
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L177"
|
|
1228
|
-
>src/core/scope/scope.js:177</a
|
|
1229
|
-
>
|
|
1230
|
-
</li>
|
|
1231
|
-
</ul>
|
|
1232
|
-
</aside>
|
|
1233
916
|
</section>
|
|
1234
917
|
<section class="tsd-panel tsd-member">
|
|
1235
918
|
<h3 class="tsd-anchor-link" id="objectlisteners">
|
|
@@ -1254,17 +937,6 @@
|
|
|
1254
937
|
><span class="tsd-signature-symbol">></span>
|
|
1255
938
|
</div>
|
|
1256
939
|
<div class="tsd-comment tsd-typography"></div>
|
|
1257
|
-
<aside class="tsd-sources">
|
|
1258
|
-
<ul>
|
|
1259
|
-
<li>
|
|
1260
|
-
Defined in
|
|
1261
|
-
<a
|
|
1262
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L174"
|
|
1263
|
-
>src/core/scope/scope.js:174</a
|
|
1264
|
-
>
|
|
1265
|
-
</li>
|
|
1266
|
-
</ul>
|
|
1267
|
-
</aside>
|
|
1268
940
|
</section>
|
|
1269
941
|
<section class="tsd-panel tsd-member">
|
|
1270
942
|
<h3 class="tsd-anchor-link" id="propertymap">
|
|
@@ -1391,42 +1063,11 @@
|
|
|
1391
1063
|
>$watch</span
|
|
1392
1064
|
><span class="tsd-signature-symbol">:</span>
|
|
1393
1065
|
<span class="tsd-signature-type">any</span
|
|
1394
|
-
><span class="tsd-signature-symbol">;</span><br /> <span
|
|
1395
|
-
class="tsd-kind-property"
|
|
1396
|
-
>$watchCollection</span
|
|
1397
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1398
|
-
<span class="tsd-signature-type">any</span
|
|
1399
|
-
><span class="tsd-signature-symbol">;</span><br /> <span
|
|
1400
|
-
class="tsd-kind-property"
|
|
1401
|
-
>$watchGroup</span
|
|
1402
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1403
|
-
<span class="tsd-signature-type">any</span
|
|
1404
|
-
><span class="tsd-signature-symbol">;</span><br /> <span
|
|
1405
|
-
class="tsd-kind-property"
|
|
1406
|
-
>notifyListener</span
|
|
1407
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1408
|
-
<span class="tsd-signature-type">any</span
|
|
1409
|
-
><span class="tsd-signature-symbol">;</span><br /> <span
|
|
1410
|
-
class="tsd-kind-property"
|
|
1411
|
-
>registerForeignKey</span
|
|
1412
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1413
|
-
<span class="tsd-signature-type">any</span
|
|
1414
1066
|
><span class="tsd-signature-symbol">;</span><br /><span
|
|
1415
1067
|
class="tsd-signature-symbol"
|
|
1416
1068
|
>}</span
|
|
1417
1069
|
>
|
|
1418
1070
|
</div>
|
|
1419
|
-
<aside class="tsd-sources">
|
|
1420
|
-
<ul>
|
|
1421
|
-
<li>
|
|
1422
|
-
Defined in
|
|
1423
|
-
<a
|
|
1424
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L477"
|
|
1425
|
-
>src/core/scope/scope.js:477</a
|
|
1426
|
-
>
|
|
1427
|
-
</li>
|
|
1428
|
-
</ul>
|
|
1429
|
-
</aside>
|
|
1430
1071
|
</section>
|
|
1431
1072
|
<section class="tsd-panel tsd-member">
|
|
1432
1073
|
<h3 class="tsd-anchor-link" id="scheduled">
|
|
@@ -1445,31 +1086,6 @@
|
|
|
1445
1086
|
<span class="tsd-signature-type">any</span
|
|
1446
1087
|
><span class="tsd-signature-symbol">[]</span>
|
|
1447
1088
|
</div>
|
|
1448
|
-
<aside class="tsd-sources">
|
|
1449
|
-
<ul>
|
|
1450
|
-
<li>
|
|
1451
|
-
Defined in
|
|
1452
|
-
<a
|
|
1453
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L220"
|
|
1454
|
-
>src/core/scope/scope.js:220</a
|
|
1455
|
-
>
|
|
1456
|
-
</li>
|
|
1457
|
-
<li>
|
|
1458
|
-
Defined in
|
|
1459
|
-
<a
|
|
1460
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L515"
|
|
1461
|
-
>src/core/scope/scope.js:515</a
|
|
1462
|
-
>
|
|
1463
|
-
</li>
|
|
1464
|
-
<li>
|
|
1465
|
-
Defined in
|
|
1466
|
-
<a
|
|
1467
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L576"
|
|
1468
|
-
>src/core/scope/scope.js:576</a
|
|
1469
|
-
>
|
|
1470
|
-
</li>
|
|
1471
|
-
</ul>
|
|
1472
|
-
</aside>
|
|
1473
1089
|
</section>
|
|
1474
1090
|
<section class="tsd-panel tsd-member">
|
|
1475
1091
|
<h3 class="tsd-anchor-link" id="watchers">
|
|
@@ -1497,17 +1113,6 @@
|
|
|
1497
1113
|
><span class="tsd-signature-symbol">></span>
|
|
1498
1114
|
</div>
|
|
1499
1115
|
<div class="tsd-comment tsd-typography"></div>
|
|
1500
|
-
<aside class="tsd-sources">
|
|
1501
|
-
<ul>
|
|
1502
|
-
<li>
|
|
1503
|
-
Defined in
|
|
1504
|
-
<a
|
|
1505
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L162"
|
|
1506
|
-
>src/core/scope/scope.js:162</a
|
|
1507
|
-
>
|
|
1508
|
-
</li>
|
|
1509
|
-
</ul>
|
|
1510
|
-
</aside>
|
|
1511
1116
|
</section>
|
|
1512
1117
|
</section>
|
|
1513
1118
|
</details>
|
|
@@ -1540,7 +1145,7 @@
|
|
|
1540
1145
|
><span class="tsd-signature-symbol">(</span
|
|
1541
1146
|
><span class="tsd-kind-parameter">expr</span
|
|
1542
1147
|
><span class="tsd-signature-symbol">:</span>
|
|
1543
|
-
<span class="tsd-signature-type">
|
|
1148
|
+
<span class="tsd-signature-type">string</span
|
|
1544
1149
|
><span class="tsd-signature-symbol">)</span
|
|
1545
1150
|
><span class="tsd-signature-symbol">:</span>
|
|
1546
1151
|
<span class="tsd-signature-type">any</span
|
|
@@ -1559,25 +1164,16 @@
|
|
|
1559
1164
|
<li>
|
|
1560
1165
|
<span
|
|
1561
1166
|
><span class="tsd-kind-parameter">expr</span>:
|
|
1562
|
-
<span class="tsd-signature-type">
|
|
1167
|
+
<span class="tsd-signature-type">string</span></span
|
|
1563
1168
|
>
|
|
1169
|
+
<div class="tsd-comment tsd-typography"></div>
|
|
1564
1170
|
</li>
|
|
1565
1171
|
</ul>
|
|
1566
1172
|
</div>
|
|
1567
1173
|
<h4 class="tsd-returns-title">
|
|
1568
1174
|
Returns <span class="tsd-signature-type">any</span>
|
|
1569
1175
|
</h4>
|
|
1570
|
-
<
|
|
1571
|
-
<ul>
|
|
1572
|
-
<li>
|
|
1573
|
-
Defined in
|
|
1574
|
-
<a
|
|
1575
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L1003"
|
|
1576
|
-
>src/core/scope/scope.js:1003</a
|
|
1577
|
-
>
|
|
1578
|
-
</li>
|
|
1579
|
-
</ul>
|
|
1580
|
-
</aside>
|
|
1176
|
+
<div class="tsd-comment tsd-typography"></div>
|
|
1581
1177
|
</div>
|
|
1582
1178
|
</li>
|
|
1583
1179
|
</ul>
|
|
@@ -1644,17 +1240,6 @@
|
|
|
1644
1240
|
Returns <span class="tsd-signature-type">any</span>
|
|
1645
1241
|
</h4>
|
|
1646
1242
|
<div class="tsd-comment tsd-typography"></div>
|
|
1647
|
-
<aside class="tsd-sources">
|
|
1648
|
-
<ul>
|
|
1649
|
-
<li>
|
|
1650
|
-
Defined in
|
|
1651
|
-
<a
|
|
1652
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L1047"
|
|
1653
|
-
>src/core/scope/scope.js:1047</a
|
|
1654
|
-
>
|
|
1655
|
-
</li>
|
|
1656
|
-
</ul>
|
|
1657
|
-
</aside>
|
|
1658
1243
|
</div>
|
|
1659
1244
|
</li>
|
|
1660
1245
|
</ul>
|
|
@@ -1689,17 +1274,6 @@
|
|
|
1689
1274
|
<h4 class="tsd-returns-title">
|
|
1690
1275
|
Returns <span class="tsd-signature-type">void</span>
|
|
1691
1276
|
</h4>
|
|
1692
|
-
<aside class="tsd-sources">
|
|
1693
|
-
<ul>
|
|
1694
|
-
<li>
|
|
1695
|
-
Defined in
|
|
1696
|
-
<a
|
|
1697
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L1148"
|
|
1698
|
-
>src/core/scope/scope.js:1148</a
|
|
1699
|
-
>
|
|
1700
|
-
</li>
|
|
1701
|
-
</ul>
|
|
1702
|
-
</aside>
|
|
1703
1277
|
</div>
|
|
1704
1278
|
</li>
|
|
1705
1279
|
</ul>
|
|
@@ -1763,17 +1337,6 @@
|
|
|
1763
1337
|
Returns <span class="tsd-signature-type">void</span>
|
|
1764
1338
|
</h4>
|
|
1765
1339
|
<div class="tsd-comment tsd-typography"></div>
|
|
1766
|
-
<aside class="tsd-sources">
|
|
1767
|
-
<ul>
|
|
1768
|
-
<li>
|
|
1769
|
-
Defined in
|
|
1770
|
-
<a
|
|
1771
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L1035"
|
|
1772
|
-
>src/core/scope/scope.js:1035</a
|
|
1773
|
-
>
|
|
1774
|
-
</li>
|
|
1775
|
-
</ul>
|
|
1776
|
-
</aside>
|
|
1777
1340
|
</div>
|
|
1778
1341
|
</li>
|
|
1779
1342
|
</ul>
|
|
@@ -1830,17 +1393,6 @@
|
|
|
1830
1393
|
<h4 class="tsd-returns-title">
|
|
1831
1394
|
Returns <span class="tsd-signature-type">any</span>
|
|
1832
1395
|
</h4>
|
|
1833
|
-
<aside class="tsd-sources">
|
|
1834
|
-
<ul>
|
|
1835
|
-
<li>
|
|
1836
|
-
Defined in
|
|
1837
|
-
<a
|
|
1838
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L971"
|
|
1839
|
-
>src/core/scope/scope.js:971</a
|
|
1840
|
-
>
|
|
1841
|
-
</li>
|
|
1842
|
-
</ul>
|
|
1843
|
-
</aside>
|
|
1844
1396
|
</div>
|
|
1845
1397
|
</li>
|
|
1846
1398
|
</ul>
|
|
@@ -1906,17 +1458,6 @@
|
|
|
1906
1458
|
><span class="tsd-signature-type">any</span
|
|
1907
1459
|
><span class="tsd-signature-symbol">></span>
|
|
1908
1460
|
</h4>
|
|
1909
|
-
<aside class="tsd-sources">
|
|
1910
|
-
<ul>
|
|
1911
|
-
<li>
|
|
1912
|
-
Defined in
|
|
1913
|
-
<a
|
|
1914
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L993"
|
|
1915
|
-
>src/core/scope/scope.js:993</a
|
|
1916
|
-
>
|
|
1917
|
-
</li>
|
|
1918
|
-
</ul>
|
|
1919
|
-
</aside>
|
|
1920
1461
|
</div>
|
|
1921
1462
|
</li>
|
|
1922
1463
|
</ul>
|
|
@@ -1979,17 +1520,6 @@
|
|
|
1979
1520
|
>
|
|
1980
1521
|
</h4>
|
|
1981
1522
|
<div class="tsd-comment tsd-typography"></div>
|
|
1982
|
-
<aside class="tsd-sources">
|
|
1983
|
-
<ul>
|
|
1984
|
-
<li>
|
|
1985
|
-
Defined in
|
|
1986
|
-
<a
|
|
1987
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L1215"
|
|
1988
|
-
>src/core/scope/scope.js:1215</a
|
|
1989
|
-
>
|
|
1990
|
-
</li>
|
|
1991
|
-
</ul>
|
|
1992
|
-
</aside>
|
|
1993
1523
|
</div>
|
|
1994
1524
|
</li>
|
|
1995
1525
|
</ul>
|
|
@@ -2030,23 +1560,14 @@
|
|
|
2030
1560
|
><span class="tsd-kind-parameter">newTarget</span>:
|
|
2031
1561
|
<span class="tsd-signature-type">any</span></span
|
|
2032
1562
|
>
|
|
1563
|
+
<div class="tsd-comment tsd-typography"></div>
|
|
2033
1564
|
</li>
|
|
2034
1565
|
</ul>
|
|
2035
1566
|
</div>
|
|
2036
1567
|
<h4 class="tsd-returns-title">
|
|
2037
1568
|
Returns <span class="tsd-signature-type">void</span>
|
|
2038
1569
|
</h4>
|
|
2039
|
-
<
|
|
2040
|
-
<ul>
|
|
2041
|
-
<li>
|
|
2042
|
-
Defined in
|
|
2043
|
-
<a
|
|
2044
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L997"
|
|
2045
|
-
>src/core/scope/scope.js:997</a
|
|
2046
|
-
>
|
|
2047
|
-
</li>
|
|
2048
|
-
</ul>
|
|
2049
|
-
</aside>
|
|
1570
|
+
<div class="tsd-comment tsd-typography"></div>
|
|
2050
1571
|
</div>
|
|
2051
1572
|
</li>
|
|
2052
1573
|
</ul>
|
|
@@ -2094,17 +1615,6 @@
|
|
|
2094
1615
|
<h4 class="tsd-returns-title">
|
|
2095
1616
|
Returns <span class="tsd-signature-type">any</span>
|
|
2096
1617
|
</h4>
|
|
2097
|
-
<aside class="tsd-sources">
|
|
2098
|
-
<ul>
|
|
2099
|
-
<li>
|
|
2100
|
-
Defined in
|
|
2101
|
-
<a
|
|
2102
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L881"
|
|
2103
|
-
>src/core/scope/scope.js:881</a
|
|
2104
|
-
>
|
|
2105
|
-
</li>
|
|
2106
|
-
</ul>
|
|
2107
|
-
</aside>
|
|
2108
1618
|
</div>
|
|
2109
1619
|
</li>
|
|
2110
1620
|
</ul>
|
|
@@ -2154,17 +1664,6 @@
|
|
|
2154
1664
|
<h4 class="tsd-returns-title">
|
|
2155
1665
|
Returns <span class="tsd-signature-type">any</span>
|
|
2156
1666
|
</h4>
|
|
2157
|
-
<aside class="tsd-sources">
|
|
2158
|
-
<ul>
|
|
2159
|
-
<li>
|
|
2160
|
-
Defined in
|
|
2161
|
-
<a
|
|
2162
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L908"
|
|
2163
|
-
>src/core/scope/scope.js:908</a
|
|
2164
|
-
>
|
|
2165
|
-
</li>
|
|
2166
|
-
</ul>
|
|
2167
|
-
</aside>
|
|
2168
1667
|
</div>
|
|
2169
1668
|
</li>
|
|
2170
1669
|
</ul>
|
|
@@ -2184,16 +1683,14 @@
|
|
|
2184
1683
|
><span class="tsd-signature-symbol">(</span
|
|
2185
1684
|
><span class="tsd-kind-parameter">name</span
|
|
2186
1685
|
><span class="tsd-signature-symbol">:</span>
|
|
2187
|
-
<span class="tsd-signature-type">
|
|
1686
|
+
<span class="tsd-signature-type">string</span
|
|
2188
1687
|
><span class="tsd-signature-symbol">,</span>
|
|
2189
1688
|
<span class="tsd-kind-parameter">listener</span
|
|
2190
1689
|
><span class="tsd-signature-symbol">:</span>
|
|
2191
|
-
<span class="tsd-signature-type">
|
|
1690
|
+
<span class="tsd-signature-type">Function</span
|
|
2192
1691
|
><span class="tsd-signature-symbol">)</span
|
|
2193
1692
|
><span class="tsd-signature-symbol">:</span>
|
|
2194
|
-
<span class="tsd-signature-
|
|
2195
|
-
<span class="tsd-signature-symbol">=></span>
|
|
2196
|
-
<span class="tsd-signature-type">void</span
|
|
1693
|
+
<span class="tsd-signature-type">any</span
|
|
2197
1694
|
><a
|
|
2198
1695
|
href="#on-1"
|
|
2199
1696
|
aria-label="Permalink"
|
|
@@ -2209,33 +1706,25 @@
|
|
|
2209
1706
|
<li>
|
|
2210
1707
|
<span
|
|
2211
1708
|
><span class="tsd-kind-parameter">name</span>:
|
|
2212
|
-
<span class="tsd-signature-type">
|
|
1709
|
+
<span class="tsd-signature-type">string</span></span
|
|
2213
1710
|
>
|
|
1711
|
+
<div class="tsd-comment tsd-typography"></div>
|
|
2214
1712
|
</li>
|
|
2215
1713
|
<li>
|
|
2216
1714
|
<span
|
|
2217
1715
|
><span class="tsd-kind-parameter">listener</span>:
|
|
2218
|
-
<span class="tsd-signature-type"
|
|
1716
|
+
<span class="tsd-signature-type"
|
|
1717
|
+
>Function</span
|
|
1718
|
+
></span
|
|
2219
1719
|
>
|
|
1720
|
+
<div class="tsd-comment tsd-typography"></div>
|
|
2220
1721
|
</li>
|
|
2221
1722
|
</ul>
|
|
2222
1723
|
</div>
|
|
2223
1724
|
<h4 class="tsd-returns-title">
|
|
2224
|
-
Returns <span class="tsd-signature-
|
|
2225
|
-
<span class="tsd-signature-symbol">=></span>
|
|
2226
|
-
<span class="tsd-signature-type">void</span>
|
|
1725
|
+
Returns <span class="tsd-signature-type">any</span>
|
|
2227
1726
|
</h4>
|
|
2228
|
-
<
|
|
2229
|
-
<ul>
|
|
2230
|
-
<li>
|
|
2231
|
-
Defined in
|
|
2232
|
-
<a
|
|
2233
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L1011"
|
|
2234
|
-
>src/core/scope/scope.js:1011</a
|
|
2235
|
-
>
|
|
2236
|
-
</li>
|
|
2237
|
-
</ul>
|
|
2238
|
-
</aside>
|
|
1727
|
+
<div class="tsd-comment tsd-typography"></div>
|
|
2239
1728
|
</div>
|
|
2240
1729
|
</li>
|
|
2241
1730
|
</ul>
|
|
@@ -2285,17 +1774,6 @@
|
|
|
2285
1774
|
<h4 class="tsd-returns-title">
|
|
2286
1775
|
Returns <span class="tsd-signature-type">void</span>
|
|
2287
1776
|
</h4>
|
|
2288
|
-
<aside class="tsd-sources">
|
|
2289
|
-
<ul>
|
|
2290
|
-
<li>
|
|
2291
|
-
Defined in
|
|
2292
|
-
<a
|
|
2293
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L1144"
|
|
2294
|
-
>src/core/scope/scope.js:1144</a
|
|
2295
|
-
>
|
|
2296
|
-
</li>
|
|
2297
|
-
</ul>
|
|
2298
|
-
</aside>
|
|
2299
1777
|
</div>
|
|
2300
1778
|
</li>
|
|
2301
1779
|
</ul>
|
|
@@ -2346,17 +1824,6 @@
|
|
|
2346
1824
|
<h4 class="tsd-returns-title">
|
|
2347
1825
|
Returns <span class="tsd-signature-type">any</span>
|
|
2348
1826
|
</h4>
|
|
2349
|
-
<aside class="tsd-sources">
|
|
2350
|
-
<ul>
|
|
2351
|
-
<li>
|
|
2352
|
-
Defined in
|
|
2353
|
-
<a
|
|
2354
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L916"
|
|
2355
|
-
>src/core/scope/scope.js:916</a
|
|
2356
|
-
>
|
|
2357
|
-
</li>
|
|
2358
|
-
</ul>
|
|
2359
|
-
</aside>
|
|
2360
1827
|
</div>
|
|
2361
1828
|
</li>
|
|
2362
1829
|
</ul>
|
|
@@ -2473,26 +1940,15 @@
|
|
|
2473
1940
|
<span class="tsd-signature-type">void</span>
|
|
2474
1941
|
</h4>
|
|
2475
1942
|
<div class="tsd-comment tsd-typography"></div>
|
|
2476
|
-
<aside class="tsd-sources">
|
|
2477
|
-
<ul>
|
|
2478
|
-
<li>
|
|
2479
|
-
Defined in
|
|
2480
|
-
<a
|
|
2481
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L609"
|
|
2482
|
-
>src/core/scope/scope.js:609</a
|
|
2483
|
-
>
|
|
2484
|
-
</li>
|
|
2485
|
-
</ul>
|
|
2486
|
-
</aside>
|
|
2487
1943
|
</div>
|
|
2488
1944
|
</li>
|
|
2489
1945
|
</ul>
|
|
2490
1946
|
</section>
|
|
2491
1947
|
<section class="tsd-panel tsd-member">
|
|
2492
|
-
<h3 class="tsd-anchor-link" id="
|
|
2493
|
-
<span
|
|
1948
|
+
<h3 class="tsd-anchor-link" id="deleteproperty">
|
|
1949
|
+
<span>delete<wbr />Property</span
|
|
2494
1950
|
><a
|
|
2495
|
-
href="#
|
|
1951
|
+
href="#deleteproperty"
|
|
2496
1952
|
aria-label="Permalink"
|
|
2497
1953
|
class="tsd-anchor-icon"
|
|
2498
1954
|
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
@@ -2503,24 +1959,22 @@
|
|
|
2503
1959
|
<li class="">
|
|
2504
1960
|
<div
|
|
2505
1961
|
class="tsd-signature tsd-anchor-link"
|
|
2506
|
-
id="
|
|
1962
|
+
id="deleteproperty-1"
|
|
2507
1963
|
>
|
|
2508
|
-
<span class="tsd-kind-call-signature"
|
|
1964
|
+
<span class="tsd-kind-call-signature">deleteProperty</span
|
|
2509
1965
|
><span class="tsd-signature-symbol">(</span
|
|
2510
|
-
><span class="tsd-kind-parameter">
|
|
1966
|
+
><span class="tsd-kind-parameter">target</span
|
|
2511
1967
|
><span class="tsd-signature-symbol">:</span>
|
|
2512
1968
|
<span class="tsd-signature-type">any</span
|
|
2513
1969
|
><span class="tsd-signature-symbol">,</span>
|
|
2514
|
-
<span class="tsd-kind-parameter">
|
|
1970
|
+
<span class="tsd-kind-parameter">property</span
|
|
2515
1971
|
><span class="tsd-signature-symbol">:</span>
|
|
2516
1972
|
<span class="tsd-signature-type">any</span
|
|
2517
1973
|
><span class="tsd-signature-symbol">)</span
|
|
2518
1974
|
><span class="tsd-signature-symbol">:</span>
|
|
2519
|
-
<span class="tsd-signature-
|
|
2520
|
-
<span class="tsd-signature-symbol">=></span>
|
|
2521
|
-
<span class="tsd-signature-type">void</span
|
|
1975
|
+
<span class="tsd-signature-type">boolean</span
|
|
2522
1976
|
><a
|
|
2523
|
-
href="#
|
|
1977
|
+
href="#deleteproperty-1"
|
|
2524
1978
|
aria-label="Permalink"
|
|
2525
1979
|
class="tsd-anchor-icon"
|
|
2526
1980
|
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
@@ -2533,408 +1987,40 @@
|
|
|
2533
1987
|
<ul class="tsd-parameter-list">
|
|
2534
1988
|
<li>
|
|
2535
1989
|
<span
|
|
2536
|
-
><span class="tsd-kind-parameter">
|
|
1990
|
+
><span class="tsd-kind-parameter">target</span>:
|
|
2537
1991
|
<span class="tsd-signature-type">any</span></span
|
|
2538
1992
|
>
|
|
2539
1993
|
</li>
|
|
2540
1994
|
<li>
|
|
2541
1995
|
<span
|
|
2542
|
-
><span class="tsd-kind-parameter">
|
|
1996
|
+
><span class="tsd-kind-parameter">property</span>:
|
|
2543
1997
|
<span class="tsd-signature-type">any</span></span
|
|
2544
1998
|
>
|
|
2545
1999
|
</li>
|
|
2546
2000
|
</ul>
|
|
2547
2001
|
</div>
|
|
2548
2002
|
<h4 class="tsd-returns-title">
|
|
2549
|
-
Returns <span class="tsd-signature-
|
|
2550
|
-
<span class="tsd-signature-symbol">=></span>
|
|
2551
|
-
<span class="tsd-signature-type">void</span>
|
|
2003
|
+
Returns <span class="tsd-signature-type">boolean</span>
|
|
2552
2004
|
</h4>
|
|
2553
|
-
<aside class="tsd-sources">
|
|
2554
|
-
<ul>
|
|
2555
|
-
<li>
|
|
2556
|
-
Defined in
|
|
2557
|
-
<a
|
|
2558
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L877"
|
|
2559
|
-
>src/core/scope/scope.js:877</a
|
|
2560
|
-
>
|
|
2561
|
-
</li>
|
|
2562
|
-
</ul>
|
|
2563
|
-
</aside>
|
|
2564
2005
|
</div>
|
|
2565
2006
|
</li>
|
|
2566
2007
|
</ul>
|
|
2567
2008
|
</section>
|
|
2568
2009
|
<section class="tsd-panel tsd-member">
|
|
2569
|
-
<h3 class="tsd-anchor-link" id="
|
|
2570
|
-
<span
|
|
2571
|
-
><a
|
|
2572
|
-
href="#watchgroup"
|
|
2573
|
-
aria-label="Permalink"
|
|
2574
|
-
class="tsd-anchor-icon"
|
|
2010
|
+
<h3 class="tsd-anchor-link" id="get">
|
|
2011
|
+
<span>get</span
|
|
2012
|
+
><a href="#get" aria-label="Permalink" class="tsd-anchor-icon"
|
|
2575
2013
|
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2576
2014
|
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2577
2015
|
></a>
|
|
2578
2016
|
</h3>
|
|
2579
2017
|
<ul class="tsd-signatures">
|
|
2580
2018
|
<li class="">
|
|
2581
|
-
<div class="tsd-signature tsd-anchor-link" id="
|
|
2582
|
-
<span class="tsd-kind-call-signature"
|
|
2583
|
-
><span class="tsd-signature-symbol">(</span
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
<span class="tsd-signature-type">any</span
|
|
2587
|
-
><span class="tsd-signature-symbol">,</span>
|
|
2588
|
-
<span class="tsd-kind-parameter">listenerFn</span
|
|
2589
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2590
|
-
<span class="tsd-signature-type">any</span
|
|
2591
|
-
><span class="tsd-signature-symbol">)</span
|
|
2592
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2593
|
-
<span class="tsd-signature-type">void</span
|
|
2594
|
-
><a
|
|
2595
|
-
href="#watchgroup-1"
|
|
2596
|
-
aria-label="Permalink"
|
|
2597
|
-
class="tsd-anchor-icon"
|
|
2598
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2599
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2600
|
-
></a>
|
|
2601
|
-
</div>
|
|
2602
|
-
<div class="tsd-description">
|
|
2603
|
-
<div class="tsd-parameters">
|
|
2604
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2605
|
-
<ul class="tsd-parameter-list">
|
|
2606
|
-
<li>
|
|
2607
|
-
<span
|
|
2608
|
-
><span class="tsd-kind-parameter">watchArray</span>:
|
|
2609
|
-
<span class="tsd-signature-type">any</span></span
|
|
2610
|
-
>
|
|
2611
|
-
</li>
|
|
2612
|
-
<li>
|
|
2613
|
-
<span
|
|
2614
|
-
><span class="tsd-kind-parameter">listenerFn</span>:
|
|
2615
|
-
<span class="tsd-signature-type">any</span></span
|
|
2616
|
-
>
|
|
2617
|
-
</li>
|
|
2618
|
-
</ul>
|
|
2619
|
-
</div>
|
|
2620
|
-
<h4 class="tsd-returns-title">
|
|
2621
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
2622
|
-
</h4>
|
|
2623
|
-
<aside class="tsd-sources">
|
|
2624
|
-
<ul>
|
|
2625
|
-
<li>
|
|
2626
|
-
Defined in
|
|
2627
|
-
<a
|
|
2628
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L873"
|
|
2629
|
-
>src/core/scope/scope.js:873</a
|
|
2630
|
-
>
|
|
2631
|
-
</li>
|
|
2632
|
-
</ul>
|
|
2633
|
-
</aside>
|
|
2634
|
-
</div>
|
|
2635
|
-
</li>
|
|
2636
|
-
</ul>
|
|
2637
|
-
</section>
|
|
2638
|
-
<section class="tsd-panel tsd-member">
|
|
2639
|
-
<h3 class="tsd-anchor-link" id="checkelistenersforallkeys">
|
|
2640
|
-
<span
|
|
2641
|
-
>checke<wbr />Listeners<wbr />For<wbr />All<wbr />Keys</span
|
|
2642
|
-
><a
|
|
2643
|
-
href="#checkelistenersforallkeys"
|
|
2644
|
-
aria-label="Permalink"
|
|
2645
|
-
class="tsd-anchor-icon"
|
|
2646
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2647
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2648
|
-
></a>
|
|
2649
|
-
</h3>
|
|
2650
|
-
<ul class="tsd-signatures">
|
|
2651
|
-
<li class="">
|
|
2652
|
-
<div
|
|
2653
|
-
class="tsd-signature tsd-anchor-link"
|
|
2654
|
-
id="checkelistenersforallkeys-1"
|
|
2655
|
-
>
|
|
2656
|
-
<span class="tsd-kind-call-signature"
|
|
2657
|
-
>checkeListenersForAllKeys</span
|
|
2658
|
-
><span class="tsd-signature-symbol">(</span
|
|
2659
|
-
><span class="tsd-kind-parameter">value</span
|
|
2660
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2661
|
-
<span class="tsd-signature-type">any</span
|
|
2662
|
-
><span class="tsd-signature-symbol">)</span
|
|
2663
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2664
|
-
<span class="tsd-signature-type">void</span
|
|
2665
|
-
><a
|
|
2666
|
-
href="#checkelistenersforallkeys-1"
|
|
2667
|
-
aria-label="Permalink"
|
|
2668
|
-
class="tsd-anchor-icon"
|
|
2669
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2670
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2671
|
-
></a>
|
|
2672
|
-
</div>
|
|
2673
|
-
<div class="tsd-description">
|
|
2674
|
-
<div class="tsd-parameters">
|
|
2675
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2676
|
-
<ul class="tsd-parameter-list">
|
|
2677
|
-
<li>
|
|
2678
|
-
<span
|
|
2679
|
-
><span class="tsd-kind-parameter">value</span>:
|
|
2680
|
-
<span class="tsd-signature-type">any</span></span
|
|
2681
|
-
>
|
|
2682
|
-
</li>
|
|
2683
|
-
</ul>
|
|
2684
|
-
</div>
|
|
2685
|
-
<h4 class="tsd-returns-title">
|
|
2686
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
2687
|
-
</h4>
|
|
2688
|
-
<aside class="tsd-sources">
|
|
2689
|
-
<ul>
|
|
2690
|
-
<li>
|
|
2691
|
-
Defined in
|
|
2692
|
-
<a
|
|
2693
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L441"
|
|
2694
|
-
>src/core/scope/scope.js:441</a
|
|
2695
|
-
>
|
|
2696
|
-
</li>
|
|
2697
|
-
</ul>
|
|
2698
|
-
</aside>
|
|
2699
|
-
</div>
|
|
2700
|
-
</li>
|
|
2701
|
-
</ul>
|
|
2702
|
-
</section>
|
|
2703
|
-
<section class="tsd-panel tsd-member">
|
|
2704
|
-
<h3 class="tsd-anchor-link" id="deleteproperty">
|
|
2705
|
-
<span>delete<wbr />Property</span
|
|
2706
|
-
><a
|
|
2707
|
-
href="#deleteproperty"
|
|
2708
|
-
aria-label="Permalink"
|
|
2709
|
-
class="tsd-anchor-icon"
|
|
2710
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2711
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2712
|
-
></a>
|
|
2713
|
-
</h3>
|
|
2714
|
-
<ul class="tsd-signatures">
|
|
2715
|
-
<li class="">
|
|
2716
|
-
<div
|
|
2717
|
-
class="tsd-signature tsd-anchor-link"
|
|
2718
|
-
id="deleteproperty-1"
|
|
2719
|
-
>
|
|
2720
|
-
<span class="tsd-kind-call-signature">deleteProperty</span
|
|
2721
|
-
><span class="tsd-signature-symbol">(</span
|
|
2722
|
-
><span class="tsd-kind-parameter">target</span
|
|
2723
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2724
|
-
<span class="tsd-signature-type">any</span
|
|
2725
|
-
><span class="tsd-signature-symbol">,</span>
|
|
2726
|
-
<span class="tsd-kind-parameter">property</span
|
|
2727
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2728
|
-
<span class="tsd-signature-type">any</span
|
|
2729
|
-
><span class="tsd-signature-symbol">)</span
|
|
2730
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2731
|
-
<span class="tsd-signature-type">boolean</span
|
|
2732
|
-
><a
|
|
2733
|
-
href="#deleteproperty-1"
|
|
2734
|
-
aria-label="Permalink"
|
|
2735
|
-
class="tsd-anchor-icon"
|
|
2736
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2737
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2738
|
-
></a>
|
|
2739
|
-
</div>
|
|
2740
|
-
<div class="tsd-description">
|
|
2741
|
-
<div class="tsd-parameters">
|
|
2742
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2743
|
-
<ul class="tsd-parameter-list">
|
|
2744
|
-
<li>
|
|
2745
|
-
<span
|
|
2746
|
-
><span class="tsd-kind-parameter">target</span>:
|
|
2747
|
-
<span class="tsd-signature-type">any</span></span
|
|
2748
|
-
>
|
|
2749
|
-
</li>
|
|
2750
|
-
<li>
|
|
2751
|
-
<span
|
|
2752
|
-
><span class="tsd-kind-parameter">property</span>:
|
|
2753
|
-
<span class="tsd-signature-type">any</span></span
|
|
2754
|
-
>
|
|
2755
|
-
</li>
|
|
2756
|
-
</ul>
|
|
2757
|
-
</div>
|
|
2758
|
-
<h4 class="tsd-returns-title">
|
|
2759
|
-
Returns <span class="tsd-signature-type">boolean</span>
|
|
2760
|
-
</h4>
|
|
2761
|
-
<aside class="tsd-sources">
|
|
2762
|
-
<ul>
|
|
2763
|
-
<li>
|
|
2764
|
-
Defined in
|
|
2765
|
-
<a
|
|
2766
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L555"
|
|
2767
|
-
>src/core/scope/scope.js:555</a
|
|
2768
|
-
>
|
|
2769
|
-
</li>
|
|
2770
|
-
</ul>
|
|
2771
|
-
</aside>
|
|
2772
|
-
</div>
|
|
2773
|
-
</li>
|
|
2774
|
-
</ul>
|
|
2775
|
-
</section>
|
|
2776
|
-
<section class="tsd-panel tsd-member">
|
|
2777
|
-
<h3 class="tsd-anchor-link" id="deregisterforeignkey">
|
|
2778
|
-
<span>deregister<wbr />Foreign<wbr />Key</span
|
|
2779
|
-
><a
|
|
2780
|
-
href="#deregisterforeignkey"
|
|
2781
|
-
aria-label="Permalink"
|
|
2782
|
-
class="tsd-anchor-icon"
|
|
2783
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2784
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2785
|
-
></a>
|
|
2786
|
-
</h3>
|
|
2787
|
-
<ul class="tsd-signatures">
|
|
2788
|
-
<li class="">
|
|
2789
|
-
<div
|
|
2790
|
-
class="tsd-signature tsd-anchor-link"
|
|
2791
|
-
id="deregisterforeignkey-1"
|
|
2792
|
-
>
|
|
2793
|
-
<span class="tsd-kind-call-signature"
|
|
2794
|
-
>deregisterForeignKey</span
|
|
2795
|
-
><span class="tsd-signature-symbol">(</span
|
|
2796
|
-
><span class="tsd-kind-parameter">key</span
|
|
2797
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2798
|
-
<span class="tsd-signature-type">any</span
|
|
2799
|
-
><span class="tsd-signature-symbol">,</span>
|
|
2800
|
-
<span class="tsd-kind-parameter">id</span
|
|
2801
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2802
|
-
<span class="tsd-signature-type">any</span
|
|
2803
|
-
><span class="tsd-signature-symbol">)</span
|
|
2804
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2805
|
-
<span class="tsd-signature-type">boolean</span
|
|
2806
|
-
><a
|
|
2807
|
-
href="#deregisterforeignkey-1"
|
|
2808
|
-
aria-label="Permalink"
|
|
2809
|
-
class="tsd-anchor-icon"
|
|
2810
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2811
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2812
|
-
></a>
|
|
2813
|
-
</div>
|
|
2814
|
-
<div class="tsd-description">
|
|
2815
|
-
<div class="tsd-parameters">
|
|
2816
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2817
|
-
<ul class="tsd-parameter-list">
|
|
2818
|
-
<li>
|
|
2819
|
-
<span
|
|
2820
|
-
><span class="tsd-kind-parameter">key</span>:
|
|
2821
|
-
<span class="tsd-signature-type">any</span></span
|
|
2822
|
-
>
|
|
2823
|
-
</li>
|
|
2824
|
-
<li>
|
|
2825
|
-
<span
|
|
2826
|
-
><span class="tsd-kind-parameter">id</span>:
|
|
2827
|
-
<span class="tsd-signature-type">any</span></span
|
|
2828
|
-
>
|
|
2829
|
-
</li>
|
|
2830
|
-
</ul>
|
|
2831
|
-
</div>
|
|
2832
|
-
<h4 class="tsd-returns-title">
|
|
2833
|
-
Returns <span class="tsd-signature-type">boolean</span>
|
|
2834
|
-
</h4>
|
|
2835
|
-
<aside class="tsd-sources">
|
|
2836
|
-
<ul>
|
|
2837
|
-
<li>
|
|
2838
|
-
Defined in
|
|
2839
|
-
<a
|
|
2840
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L955"
|
|
2841
|
-
>src/core/scope/scope.js:955</a
|
|
2842
|
-
>
|
|
2843
|
-
</li>
|
|
2844
|
-
</ul>
|
|
2845
|
-
</aside>
|
|
2846
|
-
</div>
|
|
2847
|
-
</li>
|
|
2848
|
-
</ul>
|
|
2849
|
-
</section>
|
|
2850
|
-
<section class="tsd-panel tsd-member">
|
|
2851
|
-
<h3 class="tsd-anchor-link" id="deregisterkey">
|
|
2852
|
-
<span>deregister<wbr />Key</span
|
|
2853
|
-
><a
|
|
2854
|
-
href="#deregisterkey"
|
|
2855
|
-
aria-label="Permalink"
|
|
2856
|
-
class="tsd-anchor-icon"
|
|
2857
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2858
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2859
|
-
></a>
|
|
2860
|
-
</h3>
|
|
2861
|
-
<ul class="tsd-signatures">
|
|
2862
|
-
<li class="">
|
|
2863
|
-
<div
|
|
2864
|
-
class="tsd-signature tsd-anchor-link"
|
|
2865
|
-
id="deregisterkey-1"
|
|
2866
|
-
>
|
|
2867
|
-
<span class="tsd-kind-call-signature">deregisterKey</span
|
|
2868
|
-
><span class="tsd-signature-symbol">(</span
|
|
2869
|
-
><span class="tsd-kind-parameter">key</span
|
|
2870
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2871
|
-
<span class="tsd-signature-type">any</span
|
|
2872
|
-
><span class="tsd-signature-symbol">,</span>
|
|
2873
|
-
<span class="tsd-kind-parameter">id</span
|
|
2874
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2875
|
-
<span class="tsd-signature-type">any</span
|
|
2876
|
-
><span class="tsd-signature-symbol">)</span
|
|
2877
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2878
|
-
<span class="tsd-signature-type">boolean</span
|
|
2879
|
-
><a
|
|
2880
|
-
href="#deregisterkey-1"
|
|
2881
|
-
aria-label="Permalink"
|
|
2882
|
-
class="tsd-anchor-icon"
|
|
2883
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2884
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2885
|
-
></a>
|
|
2886
|
-
</div>
|
|
2887
|
-
<div class="tsd-description">
|
|
2888
|
-
<div class="tsd-parameters">
|
|
2889
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2890
|
-
<ul class="tsd-parameter-list">
|
|
2891
|
-
<li>
|
|
2892
|
-
<span
|
|
2893
|
-
><span class="tsd-kind-parameter">key</span>:
|
|
2894
|
-
<span class="tsd-signature-type">any</span></span
|
|
2895
|
-
>
|
|
2896
|
-
</li>
|
|
2897
|
-
<li>
|
|
2898
|
-
<span
|
|
2899
|
-
><span class="tsd-kind-parameter">id</span>:
|
|
2900
|
-
<span class="tsd-signature-type">any</span></span
|
|
2901
|
-
>
|
|
2902
|
-
</li>
|
|
2903
|
-
</ul>
|
|
2904
|
-
</div>
|
|
2905
|
-
<h4 class="tsd-returns-title">
|
|
2906
|
-
Returns <span class="tsd-signature-type">boolean</span>
|
|
2907
|
-
</h4>
|
|
2908
|
-
<aside class="tsd-sources">
|
|
2909
|
-
<ul>
|
|
2910
|
-
<li>
|
|
2911
|
-
Defined in
|
|
2912
|
-
<a
|
|
2913
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L939"
|
|
2914
|
-
>src/core/scope/scope.js:939</a
|
|
2915
|
-
>
|
|
2916
|
-
</li>
|
|
2917
|
-
</ul>
|
|
2918
|
-
</aside>
|
|
2919
|
-
</div>
|
|
2920
|
-
</li>
|
|
2921
|
-
</ul>
|
|
2922
|
-
</section>
|
|
2923
|
-
<section class="tsd-panel tsd-member">
|
|
2924
|
-
<h3 class="tsd-anchor-link" id="get">
|
|
2925
|
-
<span>get</span
|
|
2926
|
-
><a href="#get" aria-label="Permalink" class="tsd-anchor-icon"
|
|
2927
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2928
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2929
|
-
></a>
|
|
2930
|
-
</h3>
|
|
2931
|
-
<ul class="tsd-signatures">
|
|
2932
|
-
<li class="">
|
|
2933
|
-
<div class="tsd-signature tsd-anchor-link" id="get-1">
|
|
2934
|
-
<span class="tsd-kind-call-signature">get</span
|
|
2935
|
-
><span class="tsd-signature-symbol">(</span><br /> <span
|
|
2936
|
-
class="tsd-kind-parameter"
|
|
2937
|
-
>target</span
|
|
2019
|
+
<div class="tsd-signature tsd-anchor-link" id="get-1">
|
|
2020
|
+
<span class="tsd-kind-call-signature">get</span
|
|
2021
|
+
><span class="tsd-signature-symbol">(</span><br /> <span
|
|
2022
|
+
class="tsd-kind-parameter"
|
|
2023
|
+
>target</span
|
|
2938
2024
|
><span class="tsd-signature-symbol">:</span>
|
|
2939
2025
|
<span class="tsd-signature-type">any</span
|
|
2940
2026
|
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
@@ -3024,252 +2110,6 @@
|
|
|
3024
2110
|
</li>
|
|
3025
2111
|
</ul>
|
|
3026
2112
|
<div class="tsd-comment tsd-typography"></div>
|
|
3027
|
-
<aside class="tsd-sources">
|
|
3028
|
-
<ul>
|
|
3029
|
-
<li>
|
|
3030
|
-
Defined in
|
|
3031
|
-
<a
|
|
3032
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L467"
|
|
3033
|
-
>src/core/scope/scope.js:467</a
|
|
3034
|
-
>
|
|
3035
|
-
</li>
|
|
3036
|
-
</ul>
|
|
3037
|
-
</aside>
|
|
3038
|
-
</div>
|
|
3039
|
-
</li>
|
|
3040
|
-
</ul>
|
|
3041
|
-
</section>
|
|
3042
|
-
<section class="tsd-panel tsd-member">
|
|
3043
|
-
<h3 class="tsd-anchor-link" id="notifylistener">
|
|
3044
|
-
<span>notify<wbr />Listener</span
|
|
3045
|
-
><a
|
|
3046
|
-
href="#notifylistener"
|
|
3047
|
-
aria-label="Permalink"
|
|
3048
|
-
class="tsd-anchor-icon"
|
|
3049
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
3050
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
3051
|
-
></a>
|
|
3052
|
-
</h3>
|
|
3053
|
-
<ul class="tsd-signatures">
|
|
3054
|
-
<li class="">
|
|
3055
|
-
<div
|
|
3056
|
-
class="tsd-signature tsd-anchor-link"
|
|
3057
|
-
id="notifylistener-1"
|
|
3058
|
-
>
|
|
3059
|
-
<span class="tsd-kind-call-signature">notifyListener</span
|
|
3060
|
-
><span class="tsd-signature-symbol">(</span
|
|
3061
|
-
><span class="tsd-kind-parameter">listener</span
|
|
3062
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3063
|
-
<a
|
|
3064
|
-
href="../interfaces/core_scope_scope.Listener.html"
|
|
3065
|
-
class="tsd-signature-type tsd-kind-interface"
|
|
3066
|
-
>Listener</a
|
|
3067
|
-
><span class="tsd-signature-symbol">,</span>
|
|
3068
|
-
<span class="tsd-kind-parameter">target</span
|
|
3069
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3070
|
-
<span class="tsd-signature-type">any</span
|
|
3071
|
-
><span class="tsd-signature-symbol">)</span
|
|
3072
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3073
|
-
<span class="tsd-signature-type">void</span
|
|
3074
|
-
><a
|
|
3075
|
-
href="#notifylistener-1"
|
|
3076
|
-
aria-label="Permalink"
|
|
3077
|
-
class="tsd-anchor-icon"
|
|
3078
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
3079
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
3080
|
-
></a>
|
|
3081
|
-
</div>
|
|
3082
|
-
<div class="tsd-description">
|
|
3083
|
-
<div class="tsd-comment tsd-typography">
|
|
3084
|
-
<p>
|
|
3085
|
-
Invokes the registered listener function with watched
|
|
3086
|
-
property changes.
|
|
3087
|
-
</p>
|
|
3088
|
-
</div>
|
|
3089
|
-
<div class="tsd-parameters">
|
|
3090
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
3091
|
-
<ul class="tsd-parameter-list">
|
|
3092
|
-
<li>
|
|
3093
|
-
<span
|
|
3094
|
-
><span class="tsd-kind-parameter">listener</span>:
|
|
3095
|
-
<a
|
|
3096
|
-
href="../interfaces/core_scope_scope.Listener.html"
|
|
3097
|
-
class="tsd-signature-type tsd-kind-interface"
|
|
3098
|
-
>Listener</a
|
|
3099
|
-
></span
|
|
3100
|
-
>
|
|
3101
|
-
<div class="tsd-comment tsd-typography">
|
|
3102
|
-
<p>The property path that was changed.</p>
|
|
3103
|
-
</div>
|
|
3104
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
3105
|
-
</li>
|
|
3106
|
-
<li>
|
|
3107
|
-
<span
|
|
3108
|
-
><span class="tsd-kind-parameter">target</span>:
|
|
3109
|
-
<span class="tsd-signature-type">any</span></span
|
|
3110
|
-
>
|
|
3111
|
-
</li>
|
|
3112
|
-
</ul>
|
|
3113
|
-
</div>
|
|
3114
|
-
<h4 class="tsd-returns-title">
|
|
3115
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
3116
|
-
</h4>
|
|
3117
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
3118
|
-
<aside class="tsd-sources">
|
|
3119
|
-
<ul>
|
|
3120
|
-
<li>
|
|
3121
|
-
Defined in
|
|
3122
|
-
<a
|
|
3123
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L1176"
|
|
3124
|
-
>src/core/scope/scope.js:1176</a
|
|
3125
|
-
>
|
|
3126
|
-
</li>
|
|
3127
|
-
</ul>
|
|
3128
|
-
</aside>
|
|
3129
|
-
</div>
|
|
3130
|
-
</li>
|
|
3131
|
-
</ul>
|
|
3132
|
-
</section>
|
|
3133
|
-
<section class="tsd-panel tsd-member">
|
|
3134
|
-
<h3 class="tsd-anchor-link" id="registerforeignkey">
|
|
3135
|
-
<span>register<wbr />Foreign<wbr />Key</span
|
|
3136
|
-
><a
|
|
3137
|
-
href="#registerforeignkey"
|
|
3138
|
-
aria-label="Permalink"
|
|
3139
|
-
class="tsd-anchor-icon"
|
|
3140
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
3141
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
3142
|
-
></a>
|
|
3143
|
-
</h3>
|
|
3144
|
-
<ul class="tsd-signatures">
|
|
3145
|
-
<li class="">
|
|
3146
|
-
<div
|
|
3147
|
-
class="tsd-signature tsd-anchor-link"
|
|
3148
|
-
id="registerforeignkey-1"
|
|
3149
|
-
>
|
|
3150
|
-
<span class="tsd-kind-call-signature"
|
|
3151
|
-
>registerForeignKey</span
|
|
3152
|
-
><span class="tsd-signature-symbol">(</span
|
|
3153
|
-
><span class="tsd-kind-parameter">key</span
|
|
3154
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3155
|
-
<span class="tsd-signature-type">any</span
|
|
3156
|
-
><span class="tsd-signature-symbol">,</span>
|
|
3157
|
-
<span class="tsd-kind-parameter">listener</span
|
|
3158
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3159
|
-
<span class="tsd-signature-type">any</span
|
|
3160
|
-
><span class="tsd-signature-symbol">)</span
|
|
3161
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3162
|
-
<span class="tsd-signature-type">void</span
|
|
3163
|
-
><a
|
|
3164
|
-
href="#registerforeignkey-1"
|
|
3165
|
-
aria-label="Permalink"
|
|
3166
|
-
class="tsd-anchor-icon"
|
|
3167
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
3168
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
3169
|
-
></a>
|
|
3170
|
-
</div>
|
|
3171
|
-
<div class="tsd-description">
|
|
3172
|
-
<div class="tsd-parameters">
|
|
3173
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
3174
|
-
<ul class="tsd-parameter-list">
|
|
3175
|
-
<li>
|
|
3176
|
-
<span
|
|
3177
|
-
><span class="tsd-kind-parameter">key</span>:
|
|
3178
|
-
<span class="tsd-signature-type">any</span></span
|
|
3179
|
-
>
|
|
3180
|
-
</li>
|
|
3181
|
-
<li>
|
|
3182
|
-
<span
|
|
3183
|
-
><span class="tsd-kind-parameter">listener</span>:
|
|
3184
|
-
<span class="tsd-signature-type">any</span></span
|
|
3185
|
-
>
|
|
3186
|
-
</li>
|
|
3187
|
-
</ul>
|
|
3188
|
-
</div>
|
|
3189
|
-
<h4 class="tsd-returns-title">
|
|
3190
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
3191
|
-
</h4>
|
|
3192
|
-
<aside class="tsd-sources">
|
|
3193
|
-
<ul>
|
|
3194
|
-
<li>
|
|
3195
|
-
Defined in
|
|
3196
|
-
<a
|
|
3197
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L931"
|
|
3198
|
-
>src/core/scope/scope.js:931</a
|
|
3199
|
-
>
|
|
3200
|
-
</li>
|
|
3201
|
-
</ul>
|
|
3202
|
-
</aside>
|
|
3203
|
-
</div>
|
|
3204
|
-
</li>
|
|
3205
|
-
</ul>
|
|
3206
|
-
</section>
|
|
3207
|
-
<section class="tsd-panel tsd-member">
|
|
3208
|
-
<h3 class="tsd-anchor-link" id="registerkey">
|
|
3209
|
-
<span>register<wbr />Key</span
|
|
3210
|
-
><a
|
|
3211
|
-
href="#registerkey"
|
|
3212
|
-
aria-label="Permalink"
|
|
3213
|
-
class="tsd-anchor-icon"
|
|
3214
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
3215
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
3216
|
-
></a>
|
|
3217
|
-
</h3>
|
|
3218
|
-
<ul class="tsd-signatures">
|
|
3219
|
-
<li class="">
|
|
3220
|
-
<div class="tsd-signature tsd-anchor-link" id="registerkey-1">
|
|
3221
|
-
<span class="tsd-kind-call-signature">registerKey</span
|
|
3222
|
-
><span class="tsd-signature-symbol">(</span
|
|
3223
|
-
><span class="tsd-kind-parameter">key</span
|
|
3224
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3225
|
-
<span class="tsd-signature-type">any</span
|
|
3226
|
-
><span class="tsd-signature-symbol">,</span>
|
|
3227
|
-
<span class="tsd-kind-parameter">listener</span
|
|
3228
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3229
|
-
<span class="tsd-signature-type">any</span
|
|
3230
|
-
><span class="tsd-signature-symbol">)</span
|
|
3231
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3232
|
-
<span class="tsd-signature-type">void</span
|
|
3233
|
-
><a
|
|
3234
|
-
href="#registerkey-1"
|
|
3235
|
-
aria-label="Permalink"
|
|
3236
|
-
class="tsd-anchor-icon"
|
|
3237
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
3238
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
3239
|
-
></a>
|
|
3240
|
-
</div>
|
|
3241
|
-
<div class="tsd-description">
|
|
3242
|
-
<div class="tsd-parameters">
|
|
3243
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
3244
|
-
<ul class="tsd-parameter-list">
|
|
3245
|
-
<li>
|
|
3246
|
-
<span
|
|
3247
|
-
><span class="tsd-kind-parameter">key</span>:
|
|
3248
|
-
<span class="tsd-signature-type">any</span></span
|
|
3249
|
-
>
|
|
3250
|
-
</li>
|
|
3251
|
-
<li>
|
|
3252
|
-
<span
|
|
3253
|
-
><span class="tsd-kind-parameter">listener</span>:
|
|
3254
|
-
<span class="tsd-signature-type">any</span></span
|
|
3255
|
-
>
|
|
3256
|
-
</li>
|
|
3257
|
-
</ul>
|
|
3258
|
-
</div>
|
|
3259
|
-
<h4 class="tsd-returns-title">
|
|
3260
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
3261
|
-
</h4>
|
|
3262
|
-
<aside class="tsd-sources">
|
|
3263
|
-
<ul>
|
|
3264
|
-
<li>
|
|
3265
|
-
Defined in
|
|
3266
|
-
<a
|
|
3267
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L923"
|
|
3268
|
-
>src/core/scope/scope.js:923</a
|
|
3269
|
-
>
|
|
3270
|
-
</li>
|
|
3271
|
-
</ul>
|
|
3272
|
-
</aside>
|
|
3273
2113
|
</div>
|
|
3274
2114
|
</li>
|
|
3275
2115
|
</ul>
|
|
@@ -3301,7 +2141,7 @@
|
|
|
3301
2141
|
><span class="tsd-signature-symbol">,</span>
|
|
3302
2142
|
<span class="tsd-kind-parameter">proxy</span
|
|
3303
2143
|
><span class="tsd-signature-symbol">:</span>
|
|
3304
|
-
<span class="tsd-signature-type">
|
|
2144
|
+
<span class="tsd-signature-type">ProxyConstructor</span
|
|
3305
2145
|
><span class="tsd-signature-symbol">)</span
|
|
3306
2146
|
><span class="tsd-signature-symbol">:</span>
|
|
3307
2147
|
<span class="tsd-signature-type">boolean</span
|
|
@@ -3357,8 +2197,14 @@
|
|
|
3357
2197
|
<li>
|
|
3358
2198
|
<span
|
|
3359
2199
|
><span class="tsd-kind-parameter">proxy</span>:
|
|
3360
|
-
<span class="tsd-signature-type"
|
|
2200
|
+
<span class="tsd-signature-type"
|
|
2201
|
+
>ProxyConstructor</span
|
|
2202
|
+
></span
|
|
3361
2203
|
>
|
|
2204
|
+
<div class="tsd-comment tsd-typography">
|
|
2205
|
+
<p>The proxy intercepting property access</p>
|
|
2206
|
+
</div>
|
|
2207
|
+
<div class="tsd-comment tsd-typography"></div>
|
|
3362
2208
|
</li>
|
|
3363
2209
|
</ul>
|
|
3364
2210
|
</div>
|
|
@@ -3371,17 +2217,6 @@
|
|
|
3371
2217
|
</li>
|
|
3372
2218
|
</ul>
|
|
3373
2219
|
<div class="tsd-comment tsd-typography"></div>
|
|
3374
|
-
<aside class="tsd-sources">
|
|
3375
|
-
<ul>
|
|
3376
|
-
<li>
|
|
3377
|
-
Defined in
|
|
3378
|
-
<a
|
|
3379
|
-
href="https://github.com/Angular-Wave/angular.ts/blob/e14e445af22a0918c5aea3160db49b26512bc6c0/src/core/scope/scope.js#L232"
|
|
3380
|
-
>src/core/scope/scope.js:232</a
|
|
3381
|
-
>
|
|
3382
|
-
</li>
|
|
3383
|
-
</ul>
|
|
3384
|
-
</aside>
|
|
3385
2220
|
</div>
|
|
3386
2221
|
</li>
|
|
3387
2222
|
</ul>
|
|
@@ -3867,32 +2702,6 @@
|
|
|
3867
2702
|
>
|
|
3868
2703
|
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3869
2704
|
><span>$watch</span></a
|
|
3870
|
-
><a href="#watchcollection"
|
|
3871
|
-
><svg
|
|
3872
|
-
class="tsd-kind-icon"
|
|
3873
|
-
viewBox="0 0 24 24"
|
|
3874
|
-
aria-label="Method"
|
|
3875
|
-
>
|
|
3876
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3877
|
-
><span>$watch<wbr />Collection</span></a
|
|
3878
|
-
><a href="#watchgroup"
|
|
3879
|
-
><svg
|
|
3880
|
-
class="tsd-kind-icon"
|
|
3881
|
-
viewBox="0 0 24 24"
|
|
3882
|
-
aria-label="Method"
|
|
3883
|
-
>
|
|
3884
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3885
|
-
><span>$watch<wbr />Group</span></a
|
|
3886
|
-
><a href="#checkelistenersforallkeys"
|
|
3887
|
-
><svg
|
|
3888
|
-
class="tsd-kind-icon"
|
|
3889
|
-
viewBox="0 0 24 24"
|
|
3890
|
-
aria-label="Method"
|
|
3891
|
-
>
|
|
3892
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3893
|
-
><span
|
|
3894
|
-
>checke<wbr />Listeners<wbr />For<wbr />All<wbr />Keys</span
|
|
3895
|
-
></a
|
|
3896
2705
|
><a href="#deleteproperty"
|
|
3897
2706
|
><svg
|
|
3898
2707
|
class="tsd-kind-icon"
|
|
@@ -3901,22 +2710,6 @@
|
|
|
3901
2710
|
>
|
|
3902
2711
|
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3903
2712
|
><span>delete<wbr />Property</span></a
|
|
3904
|
-
><a href="#deregisterforeignkey"
|
|
3905
|
-
><svg
|
|
3906
|
-
class="tsd-kind-icon"
|
|
3907
|
-
viewBox="0 0 24 24"
|
|
3908
|
-
aria-label="Method"
|
|
3909
|
-
>
|
|
3910
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3911
|
-
><span>deregister<wbr />Foreign<wbr />Key</span></a
|
|
3912
|
-
><a href="#deregisterkey"
|
|
3913
|
-
><svg
|
|
3914
|
-
class="tsd-kind-icon"
|
|
3915
|
-
viewBox="0 0 24 24"
|
|
3916
|
-
aria-label="Method"
|
|
3917
|
-
>
|
|
3918
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3919
|
-
><span>deregister<wbr />Key</span></a
|
|
3920
2713
|
><a href="#get"
|
|
3921
2714
|
><svg
|
|
3922
2715
|
class="tsd-kind-icon"
|
|
@@ -3925,30 +2718,6 @@
|
|
|
3925
2718
|
>
|
|
3926
2719
|
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3927
2720
|
><span>get</span></a
|
|
3928
|
-
><a href="#notifylistener"
|
|
3929
|
-
><svg
|
|
3930
|
-
class="tsd-kind-icon"
|
|
3931
|
-
viewBox="0 0 24 24"
|
|
3932
|
-
aria-label="Method"
|
|
3933
|
-
>
|
|
3934
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3935
|
-
><span>notify<wbr />Listener</span></a
|
|
3936
|
-
><a href="#registerforeignkey"
|
|
3937
|
-
><svg
|
|
3938
|
-
class="tsd-kind-icon"
|
|
3939
|
-
viewBox="0 0 24 24"
|
|
3940
|
-
aria-label="Method"
|
|
3941
|
-
>
|
|
3942
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3943
|
-
><span>register<wbr />Foreign<wbr />Key</span></a
|
|
3944
|
-
><a href="#registerkey"
|
|
3945
|
-
><svg
|
|
3946
|
-
class="tsd-kind-icon"
|
|
3947
|
-
viewBox="0 0 24 24"
|
|
3948
|
-
aria-label="Method"
|
|
3949
|
-
>
|
|
3950
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3951
|
-
><span>register<wbr />Key</span></a
|
|
3952
2721
|
><a href="#set"
|
|
3953
2722
|
><svg
|
|
3954
2723
|
class="tsd-kind-icon"
|
|
@@ -3965,7 +2734,7 @@
|
|
|
3965
2734
|
</div>
|
|
3966
2735
|
<div class="site-menu">
|
|
3967
2736
|
<nav class="tsd-navigation">
|
|
3968
|
-
<a href="../modules.html"
|
|
2737
|
+
<a href="../modules.html">AngularTS</a>
|
|
3969
2738
|
<ul class="tsd-small-nested-navigation" id="tsd-nav-container">
|
|
3970
2739
|
<li>Loading...</li>
|
|
3971
2740
|
</ul>
|