@angular-wave/angular.ts 0.7.1 → 0.7.3
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 +1 -1
- package/.prettierignore +1 -0
- package/@types/core/cache/cache.d.ts +0 -5
- package/@types/core/di/internal-injector.d.ts +2 -5
- package/@types/core/di/ng-module.d.ts +0 -7
- package/@types/core/exception-handler.d.ts +2 -2
- package/@types/core/pubsub/pubsub.d.ts +3 -3
- package/@types/directive/channel/channel.d.ts +9 -3
- package/@types/directive/http/http.d.ts +39 -0
- package/@types/directive/if/if.d.ts +0 -2
- package/@types/interface.d.ts +16 -4
- package/@types/loader.d.ts +3 -3
- package/@types/public.d.ts +1 -2
- package/@types/shared/common.d.ts +7 -8
- package/Makefile +8 -0
- package/dist/angular-ts.esm.js +291 -68
- package/dist/angular-ts.umd.js +296 -72
- package/dist/angular-ts.umd.min.js +1 -1
- package/docs/README.md +69 -39
- package/docs/assets/scss/_variables_project.scss +6 -0
- package/docs/assets/scss/_variables_project_after_bs.scss +8 -0
- package/docs/assets/scss/index.scss +14 -0
- package/docs/content/{en/_index.md → _index.md} +6 -1
- package/docs/content/{en/docs → docs}/_index.md +9 -10
- package/docs/docker-compose.yaml +2 -3
- package/docs/hugo.yaml +17 -18
- package/docs/layouts/404.html +8 -2
- package/docs/static/typedoc/assets/hierarchy.js +1 -0
- package/docs/static/typedoc/assets/highlight.css +78 -0
- package/docs/static/typedoc/assets/icons.js +18 -0
- package/docs/static/typedoc/assets/main.js +60 -0
- package/docs/static/typedoc/assets/navigation.js +1 -0
- package/docs/static/typedoc/assets/search.js +1 -0
- package/docs/static/typedoc/assets/style.css +1640 -0
- package/docs/static/typedoc/hierarchy.html +1 -0
- package/docs/static/typedoc/index.html +1 -0
- package/docs/static/typedoc/interfaces/ChangesObject.html +6 -0
- package/docs/static/typedoc/interfaces/ComponentOptions.html +16 -0
- package/docs/static/typedoc/interfaces/Controller.html +12 -0
- package/docs/static/typedoc/interfaces/Directive.html +36 -0
- package/docs/static/typedoc/interfaces/DirectivePrePost.html +4 -0
- package/docs/static/typedoc/interfaces/NgModelController.html +30 -0
- package/docs/static/typedoc/interfaces/NgModelOptions.html +16 -0
- package/docs/static/typedoc/interfaces/Provider.html +28 -0
- package/docs/static/typedoc/interfaces/ServiceProvider.html +5 -0
- package/docs/static/typedoc/interfaces/TranscludeFunctionObject.html +8 -0
- package/docs/static/typedoc/types/AnnotatedFactory.html +8 -0
- package/docs/static/typedoc/types/CloneAttachFunction.html +2 -0
- package/docs/static/typedoc/types/ControllerConstructor.html +2 -0
- package/docs/static/typedoc/types/DirectiveCompileFn.html +2 -0
- package/docs/static/typedoc/types/DirectiveController.html +2 -0
- package/docs/static/typedoc/types/DirectiveFactory.html +2 -0
- package/docs/static/typedoc/types/DirectiveLinkFn.html +2 -0
- package/docs/static/typedoc/types/Expression.html +6 -0
- package/docs/static/typedoc/types/FilterFactory.html +2 -0
- package/docs/static/typedoc/types/FilterFn.html +2 -0
- package/docs/static/typedoc/types/Injectable.html +1 -0
- package/docs/static/typedoc/types/InjectableFactory.html +4 -0
- package/docs/static/typedoc/types/OnChangesObject.html +2 -0
- package/docs/static/typedoc/types/SwapInsertPosition.html +2 -0
- package/docs/static/typedoc/types/TController.html +2 -0
- package/legacy.d.ts +2695 -0
- package/package.json +2 -2
- package/playwright.config.ts +2 -0
- package/src/animations/animate.spec.js +1 -1
- package/src/binding.spec.js +1 -1
- package/src/core/cache/cache.js +0 -3
- package/src/core/compile/compile.js +3 -1
- package/src/core/compile/compile.spec.js +9 -95
- package/src/core/di/injector.js +1 -1
- package/src/core/di/injector.spec.js +0 -30
- package/src/core/di/internal-injector.js +2 -5
- package/src/core/di/ng-module.js +1 -23
- package/src/core/di/ng-module.spec.js +0 -6
- package/src/core/exception-handler.js +1 -1
- package/src/core/pubsub/pubsub.js +6 -6
- package/src/directive/channel/channel.js +8 -6
- package/src/directive/http/delete.spec.js +24 -0
- package/src/directive/http/get.spec.js +211 -0
- package/src/directive/http/http.html +22 -0
- package/src/directive/http/http.js +245 -0
- package/src/directive/http/http.test.js +12 -0
- package/src/directive/http/post-example.html +30 -0
- package/src/directive/http/post.spec.js +24 -0
- package/src/directive/http/put.spec.js +24 -0
- package/src/directive/if/if.js +0 -2
- package/src/directive/include/include.spec.js +0 -1
- package/src/directive/model-options/model-options.spec.js +1 -5
- package/src/directive/repeat/repeat.spec.js +1 -1
- package/src/directive/setter/setter.spec.js +1 -1
- package/src/directive/style/style.js +1 -1
- package/src/interface.ts +17 -4
- package/src/loader.js +6 -7
- package/src/loader.spec.js +0 -31
- package/src/public.js +12 -6
- package/src/services/http-backend/http-backend.js +3 -1
- package/src/shared/common.js +11 -36
- package/src/shared/common.spec.js +34 -3
- package/src/shared/dom.js +3 -14
- package/typedoc.json +3 -2
- package/utils/express.js +13 -0
- package/docs/netlify.toml +0 -12
- package/typedoc/assets/hierarchy.js +0 -2
- package/typedoc/assets/highlight.css +0 -209
- package/typedoc/assets/icons.js +0 -21
- package/typedoc/assets/main.js +0 -2589
- package/typedoc/assets/navigation.js +0 -2
- package/typedoc/assets/search.js +0 -2
- package/typedoc/assets/style.css +0 -1623
- package/typedoc/classes/animations_animate-cache.AnimateCacheProvider.html +0 -543
- package/typedoc/classes/animations_animate-css-driver.AnimateCssDriverProvider.html +0 -691
- package/typedoc/classes/animations_animate-css.AnimateCssProvider.html +0 -712
- package/typedoc/classes/animations_animate-js-driver.AnimateJsDriverProvider.html +0 -536
- package/typedoc/classes/animations_animate-js.AnimateJsProvider.html +0 -795
- package/typedoc/classes/animations_animate-queue.AnimateQueueProvider.html +0 -1137
- package/typedoc/classes/animations_animate-runner.AnimateAsyncRunFactoryProvider.html +0 -473
- package/typedoc/classes/animations_animate-runner.AnimateRunner.html +0 -1589
- package/typedoc/classes/animations_animate-runner.AnimateRunnerFactoryProvider.html +0 -474
- package/typedoc/classes/animations_animate.AnimateProvider.html +0 -1278
- package/typedoc/classes/animations_animation.AnimationProvider.html +0 -749
- package/typedoc/classes/animations_raf-scheduler.RafSchedulerProvider.html +0 -699
- package/typedoc/classes/core_cache_cache-factory.TemplateCacheProvider.html +0 -525
- package/typedoc/classes/core_compile_attributes.Attributes.html +0 -1776
- package/typedoc/classes/core_compile_compile.CompileProvider.html +0 -2137
- package/typedoc/classes/core_controller_controller.ControllerProvider.html +0 -894
- package/typedoc/classes/core_di_internal-injector.InjectorService.html +0 -1336
- package/typedoc/classes/core_di_internal-injector.ProviderInjector.html +0 -1242
- package/typedoc/classes/core_di_ng-module.NgModule.html +0 -1880
- package/typedoc/classes/core_exception-handler.ExceptionHandlerProvider.html +0 -631
- package/typedoc/classes/core_filter_filter.FilterProvider.html +0 -786
- package/typedoc/classes/core_interpolate_interpolate.InterpolateProvider.html +0 -1318
- package/typedoc/classes/core_location_location.Location.html +0 -2128
- package/typedoc/classes/core_location_location.LocationHashbangUrl.html +0 -2502
- package/typedoc/classes/core_location_location.LocationHtml5Url.html +0 -2490
- package/typedoc/classes/core_location_location.LocationProvider.html +0 -1023
- package/typedoc/classes/core_parse_ast_ast.AST.html +0 -2520
- package/typedoc/classes/core_parse_interpreter.ASTInterpreter.html +0 -3314
- package/typedoc/classes/core_parse_lexer_lexer.Lexer.html +0 -1788
- package/typedoc/classes/core_parse_parse.ParseProvider.html +0 -753
- package/typedoc/classes/core_parse_parser_parser.Parser.html +0 -741
- package/typedoc/classes/core_pubsub_pubsub.PubSub.html +0 -1346
- package/typedoc/classes/core_pubsub_pubsub.PubSubProvider.html +0 -576
- package/typedoc/classes/core_sanitize_sanitize-uri.SanitizeUriProvider.html +0 -696
- package/typedoc/classes/core_sce_sce.SceDelegateProvider.html +0 -1219
- package/typedoc/classes/core_sce_sce.SceProvider.html +0 -589
- package/typedoc/classes/core_scope_scope.RootScopeProvider.html +0 -520
- package/typedoc/classes/core_scope_scope.Scope.html +0 -2753
- package/typedoc/classes/core_task-tracker-factory.TaskTracker.html +0 -882
- package/typedoc/classes/core_task-tracker-factory.TaskTrackerFactoryProvider.html +0 -478
- package/typedoc/classes/directive_aria_aria.AriaProvider.html +0 -605
- package/typedoc/classes/directive_form_form.FormController.html +0 -2320
- package/typedoc/classes/directive_model_model.NgModelController.html +0 -4214
- package/typedoc/classes/loader.Angular.html +0 -1634
- package/typedoc/classes/router_common_glob.Glob.html +0 -904
- package/typedoc/classes/router_common_queue.Queue.html +0 -1284
- package/typedoc/classes/router_common_trace.Trace.html +0 -2020
- package/typedoc/classes/router_globals.RouterGlobals.html +0 -824
- package/typedoc/classes/router_params_param-factory.ParamFactory.html +0 -797
- package/typedoc/classes/router_params_param-type.ParamType.html +0 -1168
- package/typedoc/classes/router_params_param-types.ParamTypes.html +0 -770
- package/typedoc/classes/router_params_param.Param.html +0 -1614
- package/typedoc/classes/router_params_state-params.StateParams.html +0 -558
- package/typedoc/classes/router_path_path-node.PathNode.html +0 -1046
- package/typedoc/classes/router_path_path-utils.PathUtils.html +0 -1432
- package/typedoc/classes/router_resolve_resolvable.Resolvable.html +0 -1225
- package/typedoc/classes/router_resolve_resolve-context.ResolveContext.html +0 -1315
- package/typedoc/classes/router_state-provider.StateProvider.html +0 -957
- package/typedoc/classes/router_state_state-builder.StateBuilder.html +0 -1045
- package/typedoc/classes/router_state_state-matcher.StateMatcher.html +0 -742
- package/typedoc/classes/router_state_state-object.StateObject.html +0 -1515
- package/typedoc/classes/router_state_state-queue-manager.StateQueueManager.html +0 -941
- package/typedoc/classes/router_state_state-registry.StateRegistryProvider.html +0 -1712
- package/typedoc/classes/router_state_state-service.StateProvider.html +0 -3038
- package/typedoc/classes/router_state_target-state.TargetState.html +0 -1655
- package/typedoc/classes/router_state_views.ViewConfig.html +0 -1123
- package/typedoc/classes/router_template-factory.TemplateFactoryProvider.html +0 -1689
- package/typedoc/classes/router_transition_hook-builder.HookBuilder.html +0 -823
- package/typedoc/classes/router_transition_hook-registry.RegisteredHook.html +0 -1302
- package/typedoc/classes/router_transition_reject-factory.Rejection.html +0 -1299
- package/typedoc/classes/router_transition_transition-event-type.TransitionEventType.html +0 -995
- package/typedoc/classes/router_transition_transition-hook.TransitionHook.html +0 -1739
- package/typedoc/classes/router_transition_transition-service.TransitionProvider.html +0 -1763
- package/typedoc/classes/router_transition_transition.Transition.html +0 -3942
- package/typedoc/classes/router_url_url-config.UrlConfigProvider.html +0 -1198
- package/typedoc/classes/router_url_url-matcher.UrlMatcher.html +0 -2056
- package/typedoc/classes/router_url_url-rule.BaseUrlRule.html +0 -736
- package/typedoc/classes/router_url_url-rule.UrlRuleFactory.html +0 -1461
- package/typedoc/classes/router_url_url-rules.UrlRules.html +0 -1808
- package/typedoc/classes/router_url_url-service.UrlService.html +0 -2792
- package/typedoc/classes/router_view-scroll.ViewScrollProvider.html +0 -687
- package/typedoc/classes/router_view_view.ViewService.html +0 -1691
- package/typedoc/classes/services_anchor-scroll.AnchorScrollProvider.html +0 -618
- package/typedoc/classes/services_browser.Browser.html +0 -1331
- package/typedoc/classes/services_browser.BrowserProvider.html +0 -564
- package/typedoc/classes/services_http-backend_http-backend.HttpBackendProvider.html +0 -782
- package/typedoc/classes/services_http_http.HttpParamSerializerProvider.html +0 -535
- package/typedoc/classes/services_http_http.HttpProvider.html +0 -1537
- package/typedoc/classes/services_log.LogProvider.html +0 -776
- package/typedoc/classes/services_template-request.TemplateRequestProvider.html +0 -914
- package/typedoc/classes/shared_noderef.NodeRef.html +0 -1529
- package/typedoc/enums/core_parse_ast-type.ASTType.html +0 -903
- package/typedoc/enums/router_common_trace.Category.html +0 -492
- package/typedoc/enums/router_transition_interface.TransitionHookPhase.html +0 -489
- package/typedoc/enums/router_transition_interface.TransitionHookScope.html +0 -390
- package/typedoc/enums/router_transition_reject-factory.RejectType.html +0 -546
- package/typedoc/functions/animations_animate-cache.animateCache.html +0 -818
- package/typedoc/functions/animations_animate-children-directive.__AnimateChildrenDirective.html +0 -412
- package/typedoc/functions/animations_animate-swap.ngAnimateSwapDirective.html +0 -409
- package/typedoc/functions/animations_shared.applyAnimationClassesFactory.html +0 -294
- package/typedoc/functions/animations_shared.applyAnimationFromStyles.html +0 -297
- package/typedoc/functions/animations_shared.applyAnimationStyles.html +0 -296
- package/typedoc/functions/animations_shared.applyAnimationToStyles.html +0 -297
- package/typedoc/functions/animations_shared.applyGeneratedPreparationClasses.html +0 -311
- package/typedoc/functions/animations_shared.applyInlineStyle.html +0 -293
- package/typedoc/functions/animations_shared.assertArg.html +0 -303
- package/typedoc/functions/animations_shared.blockKeyframeAnimations.html +0 -299
- package/typedoc/functions/animations_shared.clearGeneratedClasses.html +0 -297
- package/typedoc/functions/animations_shared.concatWithSpace.html +0 -293
- package/typedoc/functions/animations_shared.extractElementNode.html +0 -292
- package/typedoc/functions/animations_shared.mergeAnimationDetails.html +0 -307
- package/typedoc/functions/animations_shared.mergeClasses.html +0 -293
- package/typedoc/functions/animations_shared.packageStyles.html +0 -299
- package/typedoc/functions/animations_shared.pendClasses.html +0 -303
- package/typedoc/functions/animations_shared.prepareAnimationOptions.html +0 -287
- package/typedoc/functions/animations_shared.removeFromArray.html +0 -293
- package/typedoc/functions/animations_shared.resolveElementClasses.html +0 -328
- package/typedoc/functions/animations_shared.stripCommentsFromElement.html +0 -299
- package/typedoc/functions/core_controller_controller.identifierForController.html +0 -299
- package/typedoc/functions/core_di_injector.annotate.html +0 -311
- package/typedoc/functions/core_di_injector.createInjector.html +0 -323
- package/typedoc/functions/core_location_location.serverBase.html +0 -285
- package/typedoc/functions/core_location_location.stripBaseUrl.html +0 -303
- package/typedoc/functions/core_location_location.stripFile.html +0 -285
- package/typedoc/functions/core_location_location.stripHash.html +0 -285
- package/typedoc/functions/core_parse_interpreter.isAssignable.html +0 -294
- package/typedoc/functions/core_parse_parse.constantWatchDelegate.html +0 -323
- package/typedoc/functions/core_sce_sce.adjustMatcher.html +0 -281
- package/typedoc/functions/core_sce_sce.escapeForRegexp.html +0 -281
- package/typedoc/functions/core_scope_scope.createScope.html +0 -334
- package/typedoc/functions/core_scope_scope.nextId.html +0 -268
- package/typedoc/functions/core_url-utils_url-utils.getBaseUrl.html +0 -274
- package/typedoc/functions/core_url-utils_url-utils.urlIsAllowedOriginFactory.html +0 -314
- package/typedoc/functions/core_url-utils_url-utils.urlIsSameOrigin.html +0 -303
- package/typedoc/functions/core_url-utils_url-utils.urlIsSameOriginAsBaseUrl.html +0 -309
- package/typedoc/functions/core_url-utils_url-utils.urlResolve.html +0 -285
- package/typedoc/functions/core_url-utils_url-utils.urlsAreSameOrigin.html +0 -320
- package/typedoc/functions/directive_aria_aria.ngCheckedAriaDirective.html +0 -400
- package/typedoc/functions/directive_aria_aria.ngClickAriaDirective.html +0 -489
- package/typedoc/functions/directive_aria_aria.ngDblclickAriaDirective.html +0 -428
- package/typedoc/functions/directive_aria_aria.ngDisabledAriaDirective.html +0 -400
- package/typedoc/functions/directive_aria_aria.ngHideAriaDirective.html +0 -399
- package/typedoc/functions/directive_aria_aria.ngMessagesAriaDirective.html +0 -334
- package/typedoc/functions/directive_aria_aria.ngModelAriaDirective.html +0 -512
- package/typedoc/functions/directive_aria_aria.ngReadonlyAriaDirective.html +0 -400
- package/typedoc/functions/directive_aria_aria.ngRequiredAriaDirective.html +0 -400
- package/typedoc/functions/directive_aria_aria.ngShowAriaDirective.html +0 -399
- package/typedoc/functions/directive_aria_aria.ngValueAriaDirective.html +0 -399
- package/typedoc/functions/directive_bind_bind.ngBindDirective.html +0 -279
- package/typedoc/functions/directive_bind_bind.ngBindHtmlDirective.html +0 -408
- package/typedoc/functions/directive_bind_bind.ngBindTemplateDirective.html +0 -283
- package/typedoc/functions/directive_channel_channel.ngChannelDirective.html +0 -312
- package/typedoc/functions/directive_cloak_cloak.ngCloakDirective.html +0 -279
- package/typedoc/functions/directive_controller_controller.ngControllerDirective.html +0 -283
- package/typedoc/functions/directive_events_events.createEventDirective.html +0 -353
- package/typedoc/functions/directive_form_form.setupValidity.html +0 -285
- package/typedoc/functions/directive_if_if.ngIfDirective.html +0 -407
- package/typedoc/functions/directive_include_include.ngIncludeDirective.html +0 -464
- package/typedoc/functions/directive_include_include.ngIncludeFillContentDirective.html +0 -419
- package/typedoc/functions/directive_init_init.ngInitDirective.html +0 -279
- package/typedoc/functions/directive_input_input.badInputChecker.html +0 -332
- package/typedoc/functions/directive_input_input.countDecimals.html +0 -285
- package/typedoc/functions/directive_input_input.createDateInputType.html +0 -392
- package/typedoc/functions/directive_input_input.createDateParser.html +0 -319
- package/typedoc/functions/directive_input_input.hiddenInputBrowserCacheDirective.html +0 -287
- package/typedoc/functions/directive_input_input.inputDirective.html +0 -523
- package/typedoc/functions/directive_input_input.isNumberInteger.html +0 -285
- package/typedoc/functions/directive_input_input.isValidForStep.html +0 -305
- package/typedoc/functions/directive_input_input.ngValueDirective.html +0 -279
- package/typedoc/functions/directive_input_input.numberFormatterParser.html +0 -289
- package/typedoc/functions/directive_input_input.numberInputType.html +0 -354
- package/typedoc/functions/directive_input_input.rangeInputType.html +0 -315
- package/typedoc/functions/directive_input_input.weekParser.html +0 -295
- package/typedoc/functions/directive_messages_messages.ngMessagesDirective.html +0 -464
- package/typedoc/functions/directive_messages_messages.ngMessagesIncludeDirective.html +0 -476
- package/typedoc/functions/directive_model-options_model-options.ngModelOptionsDirective.html +0 -283
- package/typedoc/functions/directive_model_model.ngModelDirective.html +0 -449
- package/typedoc/functions/directive_non-bindable_non-bindable.ngNonBindableDirective.html +0 -283
- package/typedoc/functions/directive_observe_observe.ngObserveDirective.html +0 -317
- package/typedoc/functions/directive_ref_ref.ngRefDirective.html +0 -483
- package/typedoc/functions/directive_repeat_repeat.ngRepeatDirective.html +0 -409
- package/typedoc/functions/directive_script_script.scriptDirective.html +0 -413
- package/typedoc/functions/directive_select_select.optionDirective.html +0 -498
- package/typedoc/functions/directive_select_select.selectDirective.html +0 -279
- package/typedoc/functions/directive_setter_setter.ngSetterDirective.html +0 -431
- package/typedoc/functions/directive_show-hide_show-hide.ngHideDirective.html +0 -405
- package/typedoc/functions/directive_show-hide_show-hide.ngShowDirective.html +0 -405
- package/typedoc/functions/directive_style_style.ngStyleDirective.html +0 -279
- package/typedoc/functions/directive_switch_switch.ngSwitchDefaultDirective.html +0 -283
- package/typedoc/functions/directive_switch_switch.ngSwitchDirective.html +0 -405
- package/typedoc/functions/directive_switch_switch.ngSwitchWhenDirective.html +0 -283
- package/typedoc/functions/filters_filter.filterFilter.html +0 -275
- package/typedoc/functions/filters_filters.formatNumber.html +0 -435
- package/typedoc/functions/filters_filters.jsonFilter.html +0 -277
- package/typedoc/functions/filters_limit-to.limitToFilter.html +0 -277
- package/typedoc/functions/filters_order-by.orderByFilter.html +0 -403
- package/typedoc/functions/public.publishExternalAPI.html +0 -305
- package/typedoc/functions/router_common_glob.hasGlobs.html +0 -292
- package/typedoc/functions/router_directives_state-directives._StateRefActiveDirective.html +0 -468
- package/typedoc/functions/router_directives_state-directives._StateRefDirective.html +0 -493
- package/typedoc/functions/router_directives_state-directives._StateRefDynamicDirective.html +0 -439
- package/typedoc/functions/router_directives_view-directive._ViewDirectiveFill.html +0 -477
- package/typedoc/functions/router_hooks_core-resolvables.registerAddCoreResolvables.html +0 -292
- package/typedoc/functions/router_hooks_core-resolvables.treeChangesCleanup.html +0 -288
- package/typedoc/functions/router_hooks_ignored-transition.registerIgnoredTransitionHook.html +0 -292
- package/typedoc/functions/router_hooks_invalid-transition.registerInvalidTransitionHook.html +0 -292
- package/typedoc/functions/router_hooks_lazy-load.lazyLoadState.html +0 -318
- package/typedoc/functions/router_hooks_lazy-load.registerLazyLoadHook.html +0 -381
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnEnterHook.html +0 -289
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnExitHook.html +0 -289
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnRetainHook.html +0 -289
- package/typedoc/functions/router_hooks_redirect-to.registerRedirectToHook.html +0 -300
- package/typedoc/functions/router_hooks_resolve.registerEagerResolvePath.html +0 -290
- package/typedoc/functions/router_hooks_resolve.registerLazyResolveState.html +0 -290
- package/typedoc/functions/router_hooks_resolve.registerResolveRemaining.html +0 -290
- package/typedoc/functions/router_hooks_update-globals.registerUpdateGlobalState.html +0 -292
- package/typedoc/functions/router_hooks_url.registerUpdateUrl.html +0 -309
- package/typedoc/functions/router_hooks_views.registerActivateViews.html +0 -300
- package/typedoc/functions/router_hooks_views.registerLoadEnteringViews.html +0 -292
- package/typedoc/functions/router_path_path-utils.makeTargetState.html +0 -324
- package/typedoc/functions/router_state-filters._IncludedByStateFilter.html +0 -437
- package/typedoc/functions/router_state-filters._IsStateFilter.html +0 -433
- package/typedoc/functions/router_state_state-builder.resolvablesBuilder.html +0 -347
- package/typedoc/functions/router_state_state-registry.getLocals.html +0 -285
- package/typedoc/functions/router_state_views.getViewConfigFactory.html +0 -300
- package/typedoc/functions/router_state_views.ng1ViewsBuilder.html +0 -304
- package/typedoc/functions/router_transition_hook-registry.makeEvent.html +0 -343
- package/typedoc/functions/router_transition_hook-registry.matchState.html +0 -334
- package/typedoc/functions/services_browser.trimEmptyHash.html +0 -291
- package/typedoc/functions/services_cookie-reader.getCookies.html +0 -272
- package/typedoc/functions/services_http-backend_http-backend.createHttpBackend.html +0 -406
- package/typedoc/functions/services_http_http.defaultHttpResponseTransform.html +0 -301
- package/typedoc/functions/shared_common._removeFrom.html +0 -291
- package/typedoc/functions/shared_common.allTrueR.html +0 -314
- package/typedoc/functions/shared_common.ancestors.html +0 -309
- package/typedoc/functions/shared_common.anyTrueR.html +0 -317
- package/typedoc/functions/shared_common.applyPairs.html +0 -322
- package/typedoc/functions/shared_common.arrayTuples.html +0 -313
- package/typedoc/functions/shared_common.assertFn.html +0 -306
- package/typedoc/functions/shared_common.copy.html +0 -292
- package/typedoc/functions/shared_common.createProxyFunctions.html +0 -430
- package/typedoc/functions/shared_common.defaults.html +0 -304
- package/typedoc/functions/shared_common.deregAll.html +0 -288
- package/typedoc/functions/shared_common.equals.html +0 -291
- package/typedoc/functions/shared_common.filter.html +0 -298
- package/typedoc/functions/shared_common.find.html +0 -295
- package/typedoc/functions/shared_common.flatten.html +0 -301
- package/typedoc/functions/shared_common.flattenR.html +0 -311
- package/typedoc/functions/shared_common.inherit.html +0 -317
- package/typedoc/functions/shared_common.map.html +0 -304
- package/typedoc/functions/shared_common.omit.html +0 -322
- package/typedoc/functions/shared_common.pairs.html +0 -305
- package/typedoc/functions/shared_common.pick.html +0 -334
- package/typedoc/functions/shared_common.pushR.html +0 -296
- package/typedoc/functions/shared_common.silenceUncaughtInPromise.html +0 -285
- package/typedoc/functions/shared_common.silentRejection.html +0 -281
- package/typedoc/functions/shared_common.tail.html +0 -282
- package/typedoc/functions/shared_common.uniqR.html +0 -292
- package/typedoc/functions/shared_common.unnest.html +0 -303
- package/typedoc/functions/shared_common.unnestR.html +0 -311
- package/typedoc/functions/shared_dom.appendNodesToElement.html +0 -316
- package/typedoc/functions/shared_dom.buildFragment.html +0 -284
- package/typedoc/functions/shared_dom.cleanElementData.html +0 -302
- package/typedoc/functions/shared_dom.createElementFromHTML.html +0 -299
- package/typedoc/functions/shared_dom.createNodelistFromHTML.html +0 -296
- package/typedoc/functions/shared_dom.dealoc.html +0 -295
- package/typedoc/functions/shared_dom.deleteCacheData.html +0 -306
- package/typedoc/functions/shared_dom.domInsert.html +0 -301
- package/typedoc/functions/shared_dom.emptyElement.html +0 -289
- package/typedoc/functions/shared_dom.getBlockNodes.html +0 -298
- package/typedoc/functions/shared_dom.getBooleanAttrName.html +0 -316
- package/typedoc/functions/shared_dom.getCacheData.html +0 -313
- package/typedoc/functions/shared_dom.getController.html +0 -318
- package/typedoc/functions/shared_dom.getExpando.html +0 -333
- package/typedoc/functions/shared_dom.getInheritedData.html +0 -294
- package/typedoc/functions/shared_dom.getInjector.html +0 -294
- package/typedoc/functions/shared_dom.getIsolateScope.html +0 -295
- package/typedoc/functions/shared_dom.getOrSetCacheData.html +0 -330
- package/typedoc/functions/shared_dom.getScope.html +0 -295
- package/typedoc/functions/shared_dom.isRoot.html +0 -286
- package/typedoc/functions/shared_dom.isTextNode.html +0 -290
- package/typedoc/functions/shared_dom.kebabToCamel.html +0 -289
- package/typedoc/functions/shared_dom.parseHtml.html +0 -295
- package/typedoc/functions/shared_dom.removeElement.html +0 -297
- package/typedoc/functions/shared_dom.removeElementData.html +0 -305
- package/typedoc/functions/shared_dom.setCacheData.html +0 -328
- package/typedoc/functions/shared_dom.setInheritedData.html +0 -312
- package/typedoc/functions/shared_dom.setIsolateScope.html +0 -310
- package/typedoc/functions/shared_dom.setScope.html +0 -318
- package/typedoc/functions/shared_dom.snakeToCamel.html +0 -286
- package/typedoc/functions/shared_dom.startingTag.html +0 -301
- package/typedoc/functions/shared_hof.all.html +0 -305
- package/typedoc/functions/shared_hof.compose.html +0 -306
- package/typedoc/functions/shared_hof.curry.html +0 -319
- package/typedoc/functions/shared_hof.is.html +0 -297
- package/typedoc/functions/shared_hof.or.html +0 -312
- package/typedoc/functions/shared_hof.parse.html +0 -292
- package/typedoc/functions/shared_hof.pattern.html +0 -343
- package/typedoc/functions/shared_hof.pipe.html +0 -289
- package/typedoc/functions/shared_hof.val.html +0 -288
- package/typedoc/functions/shared_predicates.isInjectable.html +0 -294
- package/typedoc/functions/shared_predicates.isPromise.html +0 -292
- package/typedoc/functions/shared_strings.beforeAfterSubstr.html +0 -302
- package/typedoc/functions/shared_strings.fnToString.html +0 -281
- package/typedoc/functions/shared_strings.functionToString.html +0 -281
- package/typedoc/functions/shared_strings.joinNeighborsR.html +0 -327
- package/typedoc/functions/shared_strings.kebobString.html +0 -281
- package/typedoc/functions/shared_strings.maxLength.html +0 -309
- package/typedoc/functions/shared_strings.padString.html +0 -312
- package/typedoc/functions/shared_strings.splitOnDelim.html +0 -328
- package/typedoc/functions/shared_strings.stringify.html +0 -281
- package/typedoc/functions/shared_strings.stripLastPathElement.html +0 -284
- package/typedoc/functions/shared_strings.trimHashVal.html +0 -281
- package/typedoc/functions/shared_test-utils.bootstrap.html +0 -297
- package/typedoc/functions/shared_test-utils.browserTrigger.html +0 -307
- package/typedoc/functions/shared_test-utils.wait.html +0 -301
- package/typedoc/functions/shared_utils.addDateMinutes.html +0 -291
- package/typedoc/functions/shared_utils.arrayRemove.html +0 -344
- package/typedoc/functions/shared_utils.assert.html +0 -300
- package/typedoc/functions/shared_utils.assertArg.html +0 -305
- package/typedoc/functions/shared_utils.assertArgFn.html +0 -302
- package/typedoc/functions/shared_utils.assertNotHasOwnProperty.html +0 -310
- package/typedoc/functions/shared_utils.baseExtend.html +0 -301
- package/typedoc/functions/shared_utils.bind.html +0 -333
- package/typedoc/functions/shared_utils.concat.html +0 -301
- package/typedoc/functions/shared_utils.convertTimezoneToLocal.html +0 -305
- package/typedoc/functions/shared_utils.csp.html +0 -263
- package/typedoc/functions/shared_utils.directiveNormalize.html +0 -295
- package/typedoc/functions/shared_utils.encodeUriQuery.html +0 -314
- package/typedoc/functions/shared_utils.encodeUriSegment.html +0 -302
- package/typedoc/functions/shared_utils.equals.html +0 -357
- package/typedoc/functions/shared_utils.errorHandlingConfig.html +0 -313
- package/typedoc/functions/shared_utils.extend.html +0 -323
- package/typedoc/functions/shared_utils.fromJson.html +0 -290
- package/typedoc/functions/shared_utils.getNgAttribute.html +0 -291
- package/typedoc/functions/shared_utils.getNodeName.html +0 -292
- package/typedoc/functions/shared_utils.hasAnimate.html +0 -286
- package/typedoc/functions/shared_utils.hasCustomToString.html +0 -281
- package/typedoc/functions/shared_utils.hasOwn.html +0 -339
- package/typedoc/functions/shared_utils.hashKey.html +0 -296
- package/typedoc/functions/shared_utils.includes.html +0 -291
- package/typedoc/functions/shared_utils.inherit.html +0 -294
- package/typedoc/functions/shared_utils.isArrayBuffer.html +0 -283
- package/typedoc/functions/shared_utils.isArrayLike.html +0 -290
- package/typedoc/functions/shared_utils.isBlankObject.html +0 -295
- package/typedoc/functions/shared_utils.isBlob.html +0 -283
- package/typedoc/functions/shared_utils.isBoolean.html +0 -283
- package/typedoc/functions/shared_utils.isDate.html +0 -281
- package/typedoc/functions/shared_utils.isDefined.html +0 -290
- package/typedoc/functions/shared_utils.isElement.html +0 -281
- package/typedoc/functions/shared_utils.isError.html +0 -296
- package/typedoc/functions/shared_utils.isFile.html +0 -283
- package/typedoc/functions/shared_utils.isFormData.html +0 -283
- package/typedoc/functions/shared_utils.isFunction.html +0 -290
- package/typedoc/functions/shared_utils.isNull.html +0 -290
- package/typedoc/functions/shared_utils.isNullOrUndefined.html +0 -290
- package/typedoc/functions/shared_utils.isNumber.html +0 -303
- package/typedoc/functions/shared_utils.isNumberNaN.html +0 -283
- package/typedoc/functions/shared_utils.isObject.html +0 -298
- package/typedoc/functions/shared_utils.isObjectEmpty.html +0 -283
- package/typedoc/functions/shared_utils.isPromiseLike.html +0 -283
- package/typedoc/functions/shared_utils.isProxy.html +0 -283
- package/typedoc/functions/shared_utils.isRegExp.html +0 -290
- package/typedoc/functions/shared_utils.isScope.html +0 -283
- package/typedoc/functions/shared_utils.isString.html +0 -290
- package/typedoc/functions/shared_utils.isTypedArray.html +0 -283
- package/typedoc/functions/shared_utils.isUndefined.html +0 -290
- package/typedoc/functions/shared_utils.isValidObjectMaxDepth.html +0 -287
- package/typedoc/functions/shared_utils.isWindow.html +0 -290
- package/typedoc/functions/shared_utils.lowercase.html +0 -302
- package/typedoc/functions/shared_utils.mergeClasses.html +0 -291
- package/typedoc/functions/shared_utils.minErr.html +0 -341
- package/typedoc/functions/shared_utils.nextUid.html +0 -268
- package/typedoc/functions/shared_utils.parseKeyValue.html +0 -288
- package/typedoc/functions/shared_utils.setHashKey.html +0 -303
- package/typedoc/functions/shared_utils.shallowCopy.html +0 -299
- package/typedoc/functions/shared_utils.simpleCompare.html +0 -291
- package/typedoc/functions/shared_utils.sliceArgs.html +0 -291
- package/typedoc/functions/shared_utils.snakeCase.html +0 -291
- package/typedoc/functions/shared_utils.stringify.html +0 -281
- package/typedoc/functions/shared_utils.timezoneToOffset.html +0 -291
- package/typedoc/functions/shared_utils.toDebugString.html +0 -281
- package/typedoc/functions/shared_utils.toInt.html +0 -280
- package/typedoc/functions/shared_utils.toJson.html +0 -350
- package/typedoc/functions/shared_utils.toKeyValue.html +0 -281
- package/typedoc/functions/shared_utils.trim.html +0 -280
- package/typedoc/functions/shared_utils.tryDecodeURIComponent.html +0 -300
- package/typedoc/functions/shared_utils.uppercase.html +0 -302
- package/typedoc/hierarchy.html +0 -274
- package/typedoc/index.html +0 -668
- package/typedoc/interfaces/animations_animate.AnimationOptions.html +0 -506
- package/typedoc/interfaces/animations_raf-scheduler.ServiceProvider.html +0 -390
- package/typedoc/interfaces/core_cache_cache.ExpandoStore.html +0 -448
- package/typedoc/interfaces/core_compile_compile.LinkFnMapping.html +0 -466
- package/typedoc/interfaces/core_compile_compile.NodeLinkFnCtx.html +0 -596
- package/typedoc/interfaces/core_compile_compile.SimpleChange.html +0 -412
- package/typedoc/interfaces/core_location_location.DefaultPorts.html +0 -444
- package/typedoc/interfaces/core_location_location.Html5Mode.html +0 -491
- package/typedoc/interfaces/core_parse_ast_ast.Token.html +0 -598
- package/typedoc/interfaces/core_parse_interface.CompiledExpressionHandlerMap.html +0 -570
- package/typedoc/interfaces/core_parse_interface.CompiledExpressionProps.html +0 -959
- package/typedoc/interfaces/core_parse_lexer_lexer.LexerOptions.html +0 -466
- package/typedoc/interfaces/core_parse_parser_parser.ParsedAST.html +0 -378
- package/typedoc/interfaces/core_sanitize_interface.SanitizerFn.html +0 -305
- package/typedoc/interfaces/core_scope_scope.AsyncQueueTask.html +0 -455
- package/typedoc/interfaces/core_scope_scope.Listener.html +0 -688
- package/typedoc/interfaces/directive_model-options_model-options.ModelOptionsConfig.html +0 -570
- package/typedoc/interfaces/interface.ChangesObject.html +0 -445
- package/typedoc/interfaces/interface.ComponentOptions.html +0 -712
- package/typedoc/interfaces/interface.Controller.html +0 -582
- package/typedoc/interfaces/interface.Directive.html +0 -1250
- package/typedoc/interfaces/interface.DirectivePrePost.html +0 -423
- package/typedoc/interfaces/interface.NgModelController.html +0 -1362
- package/typedoc/interfaces/interface.NgModelOptions.html +0 -660
- package/typedoc/interfaces/interface.Provider.html +0 -1056
- package/typedoc/interfaces/interface.TranscludeFunctionObject.html +0 -723
- package/typedoc/interfaces/loader.AngularBootstrapConfig.html +0 -374
- package/typedoc/interfaces/router_params_interface.ParamDeclaration.html +0 -1211
- package/typedoc/interfaces/router_params_interface.ParamTypeDefinition.html +0 -1273
- package/typedoc/interfaces/router_params_interface.RawParams.html +0 -295
- package/typedoc/interfaces/router_params_interface.Replace.html +0 -429
- package/typedoc/interfaces/router_resolve_interface.CustomAsyncPolicy.html +0 -291
- package/typedoc/interfaces/router_resolve_interface.ProviderLike.html +0 -580
- package/typedoc/interfaces/router_resolve_interface.ResolvableLiteral.html +0 -601
- package/typedoc/interfaces/router_resolve_interface.ResolvePolicy.html +0 -638
- package/typedoc/interfaces/router_state_interface.HrefOptions.html +0 -530
- package/typedoc/interfaces/router_state_interface.LazyLoadResult.html +0 -390
- package/typedoc/interfaces/router_state_interface.StateDeclaration.html +0 -2461
- package/typedoc/interfaces/router_state_interface.TargetStateDef.html +0 -468
- package/typedoc/interfaces/router_state_interface.TransitionPromise.html +0 -1192
- package/typedoc/interfaces/router_state_interface.ViewDeclaration.html +0 -1499
- package/typedoc/interfaces/router_template-factory.BindingTuple.html +0 -406
- package/typedoc/interfaces/router_transition_interface.HookMatchCriteria.html +0 -719
- package/typedoc/interfaces/router_transition_interface.HookRegOptions.html +0 -482
- package/typedoc/interfaces/router_transition_interface.IHookRegistry.html +0 -2969
- package/typedoc/interfaces/router_transition_interface.IMatchingNodes.html +0 -594
- package/typedoc/interfaces/router_transition_interface.PathType.html +0 -411
- package/typedoc/interfaces/router_transition_interface.PathTypes.html +0 -588
- package/typedoc/interfaces/router_transition_interface.RegisteredHooks.html +0 -266
- package/typedoc/interfaces/router_transition_interface.TransitionCreateHookFn.html +0 -316
- package/typedoc/interfaces/router_transition_interface.TransitionHookFn.html +0 -352
- package/typedoc/interfaces/router_transition_interface.TransitionHookOptions.html +0 -627
- package/typedoc/interfaces/router_transition_interface.TransitionOptions.html +0 -1096
- package/typedoc/interfaces/router_transition_interface.TransitionStateHookFn.html +0 -374
- package/typedoc/interfaces/router_transition_interface.TreeChanges.html +0 -769
- package/typedoc/interfaces/router_view_interface.ActiveUIView.html +0 -620
- package/typedoc/interfaces/router_view_interface.ViewConfig.html +0 -651
- package/typedoc/interfaces/router_view_interface.ViewContext.html +0 -419
- package/typedoc/interfaces/services_anchor-scroll.AnchorScrollObject.html +0 -379
- package/typedoc/interfaces/services_log.LogService.html +0 -566
- package/typedoc/interfaces/shared_interface.TypedMap.html +0 -268
- package/typedoc/interfaces/shared_utils.ErrorHandlingConfig.html +0 -435
- package/typedoc/media/CONTRIBUTING.md +0 -248
- package/typedoc/media/DEVELOPERS.md +0 -500
- package/typedoc/modules/animations_animate-cache.html +0 -383
- package/typedoc/modules/animations_animate-children-directive.html +0 -326
- package/typedoc/modules/animations_animate-css-driver.html +0 -324
- package/typedoc/modules/animations_animate-css.html +0 -320
- package/typedoc/modules/animations_animate-js-driver.html +0 -324
- package/typedoc/modules/animations_animate-js.html +0 -320
- package/typedoc/modules/animations_animate-queue.html +0 -320
- package/typedoc/modules/animations_animate-runner.html +0 -382
- package/typedoc/modules/animations_animate-swap.html +0 -320
- package/typedoc/modules/animations_animate.html +0 -447
- package/typedoc/modules/animations_animation.html +0 -320
- package/typedoc/modules/animations_interface.html +0 -322
- package/typedoc/modules/animations_raf-scheduler.html +0 -446
- package/typedoc/modules/animations_shared.html +0 -1535
- package/typedoc/modules/core_cache_cache-factory.html +0 -385
- package/typedoc/modules/core_cache_cache.html +0 -457
- package/typedoc/modules/core_compile_attributes.html +0 -319
- package/typedoc/modules/core_compile_compile.html +0 -755
- package/typedoc/modules/core_controller_controller.html +0 -385
- package/typedoc/modules/core_di_injector.html +0 -346
- package/typedoc/modules/core_di_internal-injector.html +0 -350
- package/typedoc/modules/core_di_ng-module.html +0 -490
- package/typedoc/modules/core_error-handler.html +0 -322
- package/typedoc/modules/core_exception-handler.html +0 -448
- package/typedoc/modules/core_filter_filter.html +0 -319
- package/typedoc/modules/core_interpolate_interpolate.html +0 -322
- package/typedoc/modules/core_location_location.html +0 -636
- package/typedoc/modules/core_parse_ast-type.html +0 -321
- package/typedoc/modules/core_parse_ast_ast-node.html +0 -322
- package/typedoc/modules/core_parse_ast_ast.html +0 -436
- package/typedoc/modules/core_parse_interface.html +0 -470
- package/typedoc/modules/core_parse_interpreter.html +0 -537
- package/typedoc/modules/core_parse_lexer_lexer.html +0 -440
- package/typedoc/modules/core_parse_lexer_token.html +0 -319
- package/typedoc/modules/core_parse_parse.html +0 -382
- package/typedoc/modules/core_parse_parser_parser.html +0 -381
- package/typedoc/modules/core_pubsub_pubsub.html +0 -471
- package/typedoc/modules/core_sanitize_interface.html +0 -320
- package/typedoc/modules/core_sanitize_sanitize-uri.html +0 -386
- package/typedoc/modules/core_sce_sce.html +0 -560
- package/typedoc/modules/core_scope_scope.html +0 -700
- package/typedoc/modules/core_task-tracker-factory.html +0 -481
- package/typedoc/modules/core_url-utils_url-utils.html +0 -527
- package/typedoc/modules/directive_aria_aria.html +0 -672
- package/typedoc/modules/directive_attrs_attrs.html +0 -350
- package/typedoc/modules/directive_bind_bind.html +0 -377
- package/typedoc/modules/directive_channel_channel.html +0 -322
- package/typedoc/modules/directive_class_class.html +0 -376
- package/typedoc/modules/directive_cloak_cloak.html +0 -320
- package/typedoc/modules/directive_controller_controller.html +0 -322
- package/typedoc/modules/directive_events_events.html +0 -383
- package/typedoc/modules/directive_form_form.html +0 -524
- package/typedoc/modules/directive_if_if.html +0 -319
- package/typedoc/modules/directive_include_include.html +0 -352
- package/typedoc/modules/directive_init_init.html +0 -319
- package/typedoc/modules/directive_input_input.html +0 -804
- package/typedoc/modules/directive_messages_messages.html +0 -473
- package/typedoc/modules/directive_model-options_model-options.html +0 -452
- package/typedoc/modules/directive_model_model.html +0 -445
- package/typedoc/modules/directive_non-bindable_non-bindable.html +0 -324
- package/typedoc/modules/directive_observe_observe.html +0 -322
- package/typedoc/modules/directive_options_options.html +0 -322
- package/typedoc/modules/directive_ref_ref.html +0 -319
- package/typedoc/modules/directive_repeat_repeat.html +0 -320
- package/typedoc/modules/directive_script_script.html +0 -320
- package/typedoc/modules/directive_select_select.html +0 -348
- package/typedoc/modules/directive_setter_setter.html +0 -320
- package/typedoc/modules/directive_show-hide_show-hide.html +0 -350
- package/typedoc/modules/directive_style_style.html +0 -320
- package/typedoc/modules/directive_switch_switch.html +0 -378
- package/typedoc/modules/directive_transclude_transclude.html +0 -322
- package/typedoc/modules/directive_validators_validators.html +0 -406
- package/typedoc/modules/filters_filter.html +0 -319
- package/typedoc/modules/filters_filters.html +0 -346
- package/typedoc/modules/filters_limit-to.html +0 -319
- package/typedoc/modules/filters_order-by.html +0 -319
- package/typedoc/modules/index.html +0 -241
- package/typedoc/modules/injection-tokens.html +0 -319
- package/typedoc/modules/interface.html +0 -1010
- package/typedoc/modules/loader.html +0 -380
- package/typedoc/modules/public.html +0 -380
- package/typedoc/modules/router_common_glob.html +0 -377
- package/typedoc/modules/router_common_queue.html +0 -315
- package/typedoc/modules/router_common_trace.html +0 -522
- package/typedoc/modules/router_directives_state-directives.html +0 -384
- package/typedoc/modules/router_directives_view-directive.html +0 -387
- package/typedoc/modules/router_globals.html +0 -383
- package/typedoc/modules/router_hooks_core-resolvables.html +0 -352
- package/typedoc/modules/router_hooks_ignored-transition.html +0 -324
- package/typedoc/modules/router_hooks_invalid-transition.html +0 -324
- package/typedoc/modules/router_hooks_lazy-load.html +0 -348
- package/typedoc/modules/router_hooks_on-enter-exit-retain.html +0 -380
- package/typedoc/modules/router_hooks_redirect-to.html +0 -320
- package/typedoc/modules/router_hooks_resolve.html +0 -443
- package/typedoc/modules/router_hooks_update-globals.html +0 -324
- package/typedoc/modules/router_hooks_url.html +0 -319
- package/typedoc/modules/router_hooks_views.html +0 -350
- package/typedoc/modules/router_params_interface.html +0 -402
- package/typedoc/modules/router_params_param-factory.html +0 -322
- package/typedoc/modules/router_params_param-type.html +0 -319
- package/typedoc/modules/router_params_param-types.html +0 -321
- package/typedoc/modules/router_params_param.html +0 -377
- package/typedoc/modules/router_params_state-params.html +0 -322
- package/typedoc/modules/router_path_path-node.html +0 -319
- package/typedoc/modules/router_path_path-utils.html +0 -382
- package/typedoc/modules/router_resolve_interface.html +0 -521
- package/typedoc/modules/router_resolve_resolvable.html +0 -384
- package/typedoc/modules/router_resolve_resolve-context.html +0 -385
- package/typedoc/modules/router_state-filters.html +0 -349
- package/typedoc/modules/router_state-provider.html +0 -319
- package/typedoc/modules/router_state_interface.html +0 -606
- package/typedoc/modules/router_state_state-builder.html +0 -385
- package/typedoc/modules/router_state_state-matcher.html +0 -322
- package/typedoc/modules/router_state_state-object.html +0 -385
- package/typedoc/modules/router_state_state-queue-manager.html +0 -324
- package/typedoc/modules/router_state_state-registry.html +0 -449
- package/typedoc/modules/router_state_state-service.html +0 -322
- package/typedoc/modules/router_state_target-state.html +0 -321
- package/typedoc/modules/router_state_views.html +0 -409
- package/typedoc/modules/router_template-factory.html +0 -383
- package/typedoc/modules/router_transition_hook-builder.html +0 -322
- package/typedoc/modules/router_transition_hook-registry.html +0 -413
- package/typedoc/modules/router_transition_interface.html +0 -927
- package/typedoc/modules/router_transition_reject-factory.html +0 -390
- package/typedoc/modules/router_transition_transition-event-type.html +0 -324
- package/typedoc/modules/router_transition_transition-hook.html +0 -324
- package/typedoc/modules/router_transition_transition-service.html +0 -387
- package/typedoc/modules/router_transition_transition.html +0 -386
- package/typedoc/modules/router_url_url-config.html +0 -320
- package/typedoc/modules/router_url_url-matcher.html +0 -319
- package/typedoc/modules/router_url_url-rule.html +0 -346
- package/typedoc/modules/router_url_url-rules.html +0 -319
- package/typedoc/modules/router_url_url-service.html +0 -319
- package/typedoc/modules/router_view-scroll.html +0 -319
- package/typedoc/modules/router_view_interface.html +0 -373
- package/typedoc/modules/router_view_view.html +0 -319
- package/typedoc/modules/services_anchor-scroll.html +0 -477
- package/typedoc/modules/services_browser.html +0 -472
- package/typedoc/modules/services_cookie-reader.html +0 -319
- package/typedoc/modules/services_http-backend_http-backend.html +0 -387
- package/typedoc/modules/services_http_http.html +0 -414
- package/typedoc/modules/services_log.html +0 -507
- package/typedoc/modules/services_template-request.html +0 -322
- package/typedoc/modules/shared_common.html +0 -1145
- package/typedoc/modules/shared_constants.html +0 -590
- package/typedoc/modules/shared_dom.html +0 -1185
- package/typedoc/modules/shared_hof.html +0 -566
- package/typedoc/modules/shared_interface.html +0 -436
- package/typedoc/modules/shared_noderef.html +0 -318
- package/typedoc/modules/shared_predicates.html +0 -346
- package/typedoc/modules/shared_strings.html +0 -732
- package/typedoc/modules/shared_test-utils.html +0 -369
- package/typedoc/modules/shared_utils.html +0 -2343
- package/typedoc/modules.html +0 -4406
- package/typedoc/types/animations_animate.AnimationMethod.html +0 -265
- package/typedoc/types/animations_interface.RafScheduler.html +0 -602
- package/typedoc/types/core_cache_cache-factory.TemplateCache.html +0 -257
- package/typedoc/types/core_compile_compile.ApplyDirectivesToNodeFn.html +0 -251
- package/typedoc/types/core_compile_compile.BoundTranscludeFn.html +0 -279
- package/typedoc/types/core_compile_compile.CompileFn.html +0 -445
- package/typedoc/types/core_compile_compile.CompileNodesFn.html +0 -252
- package/typedoc/types/core_compile_compile.CompositeLinkFn.html +0 -358
- package/typedoc/types/core_compile_compile.NodeLinkFn.html +0 -285
- package/typedoc/types/core_compile_compile.PublicLinkFn.html +0 -381
- package/typedoc/types/core_compile_compile.TranscludeFn.html +0 -364
- package/typedoc/types/core_error-handler.ErrorHandler.html +0 -321
- package/typedoc/types/core_exception-handler.LogService.html +0 -256
- package/typedoc/types/core_parse_ast_ast-node.ASTNode.html +0 -1457
- package/typedoc/types/core_parse_interface.CompiledExpression.html +0 -268
- package/typedoc/types/core_parse_interface.CompiledExpressionFunction.html +0 -347
- package/typedoc/types/core_parse_interface.ParseService.html +0 -474
- package/typedoc/types/core_parse_interpreter.DecoratedASTNode.html +0 -279
- package/typedoc/types/core_scope_scope.ListenerFunction.html +0 -313
- package/typedoc/types/core_task-tracker-factory.AnnotatedFactory.html +0 -278
- package/typedoc/types/core_url-utils_url-utils.HttpProtocol.html +0 -254
- package/typedoc/types/interface.CloneAttachFunction.html +0 -318
- package/typedoc/types/interface.ControllerConstructor.html +0 -315
- package/typedoc/types/interface.DirectiveCompileFn.html +0 -406
- package/typedoc/types/interface.DirectiveController.html +0 -274
- package/typedoc/types/interface.DirectiveFactory.html +0 -328
- package/typedoc/types/interface.DirectiveLinkFn.html +0 -420
- package/typedoc/types/interface.Expression.html +0 -259
- package/typedoc/types/interface.FilterFactory.html +0 -310
- package/typedoc/types/interface.FilterFn.html +0 -314
- package/typedoc/types/interface.Injectable.html +0 -257
- package/typedoc/types/interface.InjectableFactory.html +0 -309
- package/typedoc/types/interface.OnChangesObject.html +0 -259
- package/typedoc/types/interface.TController.html +0 -261
- package/typedoc/types/router_resolve_interface.PolicyAsync.html +0 -259
- package/typedoc/types/router_resolve_interface.PolicyWhen.html +0 -253
- package/typedoc/types/router_state_interface.RedirectToResult.html +0 -287
- package/typedoc/types/router_state_interface.ResolveTypes.html +0 -267
- package/typedoc/types/router_state_interface.StateOrName.html +0 -263
- package/typedoc/types/router_state_interface._StateDeclaration.html +0 -274
- package/typedoc/types/router_transition_interface.HookFn.html +0 -267
- package/typedoc/types/router_transition_interface.HookMatchCriterion.html +0 -270
- package/typedoc/types/router_transition_interface.HookResult.html +0 -310
- package/typedoc/types/router_transition_interface.IHookRegistration.html +0 -362
- package/typedoc/types/router_transition_interface.IStateMatch.html +0 -272
- package/typedoc/types/services_anchor-scroll.AnchorScrollFunction.html +0 -292
- package/typedoc/types/services_anchor-scroll.AnchorScrollService.html +0 -262
- package/typedoc/types/services_browser.UrlChangeListener.html +0 -250
- package/typedoc/types/services_log.LogCall.html +0 -294
- package/typedoc/types/shared_interface.Mapper.html +0 -337
- package/typedoc/types/shared_interface.Predicate.html +0 -305
- package/typedoc/types/shared_interface.PredicateBinary.html +0 -330
- package/typedoc/variables/animations_shared.ACTIVE_CLASS_SUFFIX.html +0 -251
- package/typedoc/variables/animations_shared.ADD_CLASS_SUFFIX.html +0 -249
- package/typedoc/variables/animations_shared.ANIMATIONEND_EVENT.html +0 -249
- package/typedoc/variables/animations_shared.ANIMATION_DELAY_PROP.html +0 -252
- package/typedoc/variables/animations_shared.ANIMATION_DURATION_PROP.html +0 -252
- package/typedoc/variables/animations_shared.ANIMATION_ITERATION_COUNT_KEY.html +0 -255
- package/typedoc/variables/animations_shared.ANIMATION_PLAYSTATE_KEY.html +0 -251
- package/typedoc/variables/animations_shared.ANIMATION_PROP.html +0 -249
- package/typedoc/variables/animations_shared.CSS_PREFIX.html +0 -250
- package/typedoc/variables/animations_shared.DELAY_KEY.html +0 -249
- package/typedoc/variables/animations_shared.DURATION_KEY.html +0 -249
- package/typedoc/variables/animations_shared.EVENT_CLASS_PREFIX.html +0 -249
- package/typedoc/variables/animations_shared.NG_ANIMATE_CHILDREN_DATA.html +0 -253
- package/typedoc/variables/animations_shared.NG_ANIMATE_CLASSNAME.html +0 -251
- package/typedoc/variables/animations_shared.PREPARE_CLASS_SUFFIX.html +0 -251
- package/typedoc/variables/animations_shared.PROPERTY_KEY.html +0 -250
- package/typedoc/variables/animations_shared.REMOVE_CLASS_SUFFIX.html +0 -251
- package/typedoc/variables/animations_shared.SAFE_FAST_FORWARD_DURATION_VALUE.html +0 -257
- package/typedoc/variables/animations_shared.TIMING_KEY.html +0 -249
- package/typedoc/variables/animations_shared.TRANSITIONEND_EVENT.html +0 -249
- package/typedoc/variables/animations_shared.TRANSITION_DELAY_PROP.html +0 -252
- package/typedoc/variables/animations_shared.TRANSITION_DURATION_PROP.html +0 -252
- package/typedoc/variables/animations_shared.TRANSITION_PROP.html +0 -249
- package/typedoc/variables/animations_shared.ngMinErr.html +0 -307
- package/typedoc/variables/core_cache_cache.Cache.html +0 -267
- package/typedoc/variables/core_cache_cache.EXPANDO.html +0 -250
- package/typedoc/variables/core_cache_cache.ISOLATE_SCOPE_KEY.html +0 -253
- package/typedoc/variables/core_cache_cache.SCOPE_KEY.html +0 -253
- package/typedoc/variables/core_compile_compile.DirectiveSuffix.html +0 -251
- package/typedoc/variables/core_di_ng-module.ANIMATION_LITERAL.html +0 -249
- package/typedoc/variables/core_di_ng-module.COMPILE_LITERAL.html +0 -249
- package/typedoc/variables/core_di_ng-module.CONTROLLER_LITERAL.html +0 -251
- package/typedoc/variables/core_di_ng-module.FILTER_LITERAL.html +0 -249
- package/typedoc/variables/core_di_ng-module.INJECTOR_LITERAL.html +0 -249
- package/typedoc/variables/core_parse_interpreter.PURITY_ABSOLUTE.html +0 -251
- package/typedoc/variables/core_parse_interpreter.PURITY_RELATIVE.html +0 -251
- package/typedoc/variables/core_pubsub_pubsub.EventBus.html +0 -255
- package/typedoc/variables/core_sce_sce.SCE_CONTEXTS.html +0 -327
- package/typedoc/variables/core_scope_scope.NONSCOPE.html +0 -253
- package/typedoc/variables/core_scope_scope.__applyAsyncQueue.html +0 -252
- package/typedoc/variables/core_scope_scope._postUpdateQueue.html +0 -252
- package/typedoc/variables/directive_attrs_attrs.REGEX_STRING_REGEXP.html +0 -254
- package/typedoc/variables/directive_attrs_attrs.ngAttributeAliasDirectives.html +0 -262
- package/typedoc/variables/directive_class_class.ngClassDirective.html +0 -285
- package/typedoc/variables/directive_class_class.ngClassEvenDirective.html +0 -287
- package/typedoc/variables/directive_class_class.ngClassOddDirective.html +0 -287
- package/typedoc/variables/directive_events_events.ngEventDirectives.html +0 -256
- package/typedoc/variables/directive_form_form.PENDING_CLASS.html +0 -251
- package/typedoc/variables/directive_form_form.formDirective.html +0 -340
- package/typedoc/variables/directive_form_form.ngFormDirective.html +0 -340
- package/typedoc/variables/directive_form_form.nullFormCtrl.html +0 -424
- package/typedoc/variables/directive_input_input.EMAIL_REGEXP.html +0 -252
- package/typedoc/variables/directive_input_input.ISO_DATE_REGEXP.html +0 -252
- package/typedoc/variables/directive_input_input.URL_REGEXP.html +0 -252
- package/typedoc/variables/directive_input_input.VALIDITY_STATE_PROPERTY.html +0 -253
- package/typedoc/variables/directive_messages_messages.ngMessageDefaultDirective.html +0 -496
- package/typedoc/variables/directive_messages_messages.ngMessageDirective.html +0 -492
- package/typedoc/variables/directive_messages_messages.ngMessageExpDirective.html +0 -494
- package/typedoc/variables/directive_model-options_model-options.defaultModelOptions.html +0 -254
- package/typedoc/variables/directive_model_model.ngModelMinErr.html +0 -309
- package/typedoc/variables/directive_options_options.ngOptionsDirective.html +0 -692
- package/typedoc/variables/directive_transclude_transclude.ngTranscludeDirective.html +0 -343
- package/typedoc/variables/directive_validators_validators.maxlengthDirective.html +0 -401
- package/typedoc/variables/directive_validators_validators.minlengthDirective.html +0 -363
- package/typedoc/variables/directive_validators_validators.patternDirective.html +0 -424
- package/typedoc/variables/directive_validators_validators.requiredDirective.html +0 -388
- package/typedoc/variables/injection-tokens._injectTokens.html +0 -270
- package/typedoc/variables/public.VERSION.html +0 -247
- package/typedoc/variables/router_common_trace.trace.html +0 -287
- package/typedoc/variables/router_directives_view-directive.ngView.html +0 -499
- package/typedoc/variables/router_hooks_resolve.RESOLVE_HOOK_PRIORITY.html +0 -253
- package/typedoc/variables/router_params_param.DefType.html +0 -251
- package/typedoc/variables/router_resolve_resolvable.defaultResolvePolicy.html +0 -279
- package/typedoc/variables/router_resolve_resolve-context.resolvePolicies.html +0 -315
- package/typedoc/variables/router_transition_transition-service.defaultTransOpts.html +0 -380
- package/typedoc/variables/services_log.LogService.html +0 -252
- package/typedoc/variables/shared_common.assertMap.html +0 -344
- package/typedoc/variables/shared_common.assertPredicate.html +0 -344
- package/typedoc/variables/shared_common.pushTo.html +0 -252
- package/typedoc/variables/shared_common.removeFrom.html +0 -255
- package/typedoc/variables/shared_constants.ALIASED_ATTR.html +0 -329
- package/typedoc/variables/shared_constants.DIRTY_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.EMPTY_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.INVALID_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.NOT_EMPTY_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.PREFIX_REGEXP.html +0 -250
- package/typedoc/variables/shared_constants.PRISTINE_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.SPECIAL_CHARS_REGEXP.html +0 -252
- package/typedoc/variables/shared_constants.TOUCHED_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.UNTOUCHED_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.VALID_CLASS.html +0 -249
- package/typedoc/variables/shared_dom.BOOLEAN_ATTR.html +0 -253
- package/typedoc/variables/shared_hof.propEq.html +0 -258
- package/typedoc/variables/shared_strings.hostRegex.html +0 -248
- package/typedoc/variables/shared_strings.splitEqual.html +0 -291
- package/typedoc/variables/shared_strings.splitHash.html +0 -291
- package/typedoc/variables/shared_strings.splitQuery.html +0 -291
- package/typedoc/variables/shared_utils.isProxySymbol.html +0 -250
- package/typedoc/variables/shared_utils.ngAttrPrefixes.html +0 -249
- /package/{typedoc → docs/static/typedoc}/.nojekyll +0 -0
- /package/{typedoc → docs/static/typedoc}/assets/icons.svg +0 -0
|
@@ -1,4214 +0,0 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html class="default" lang="en" data-base="../">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8" />
|
|
5
|
-
<meta http-equiv="x-ua-compatible" content="IE=edge" />
|
|
6
|
-
<title>NgModelController | AngularTS</title>
|
|
7
|
-
<meta name="description" content="Documentation for AngularTS" />
|
|
8
|
-
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
9
|
-
<link rel="stylesheet" href="../assets/style.css" />
|
|
10
|
-
<link rel="stylesheet" href="../assets/highlight.css" />
|
|
11
|
-
<script defer src="../assets/main.js"></script>
|
|
12
|
-
<script async src="../assets/icons.js" id="tsd-icons-script"></script>
|
|
13
|
-
<script async src="../assets/search.js" id="tsd-search-script"></script>
|
|
14
|
-
<script async src="../assets/navigation.js" id="tsd-nav-script"></script>
|
|
15
|
-
<script
|
|
16
|
-
async
|
|
17
|
-
src="../assets/hierarchy.js"
|
|
18
|
-
id="tsd-hierarchy-script"
|
|
19
|
-
></script>
|
|
20
|
-
</head>
|
|
21
|
-
<body>
|
|
22
|
-
<script>
|
|
23
|
-
document.documentElement.dataset.theme =
|
|
24
|
-
localStorage.getItem("tsd-theme") || "os";
|
|
25
|
-
document.body.style.display = "none";
|
|
26
|
-
setTimeout(
|
|
27
|
-
() =>
|
|
28
|
-
window.app
|
|
29
|
-
? app.showPage()
|
|
30
|
-
: document.body.style.removeProperty("display"),
|
|
31
|
-
500,
|
|
32
|
-
);
|
|
33
|
-
</script>
|
|
34
|
-
<header class="tsd-page-toolbar">
|
|
35
|
-
<div class="tsd-toolbar-contents container">
|
|
36
|
-
<a href="../index.html" class="title">AngularTS</a>
|
|
37
|
-
<div id="tsd-toolbar-links"></div>
|
|
38
|
-
<button id="tsd-search-trigger" class="tsd-widget" aria-label="Search">
|
|
39
|
-
<svg
|
|
40
|
-
width="16"
|
|
41
|
-
height="16"
|
|
42
|
-
viewBox="0 0 16 16"
|
|
43
|
-
fill="none"
|
|
44
|
-
aria-hidden="true"
|
|
45
|
-
>
|
|
46
|
-
<use href="../assets/icons.svg#icon-search"></use>
|
|
47
|
-
</svg>
|
|
48
|
-
</button>
|
|
49
|
-
<dialog id="tsd-search" aria-label="Search">
|
|
50
|
-
<input
|
|
51
|
-
role="combobox"
|
|
52
|
-
id="tsd-search-input"
|
|
53
|
-
aria-controls="tsd-search-results"
|
|
54
|
-
aria-autocomplete="list"
|
|
55
|
-
aria-expanded="true"
|
|
56
|
-
autocapitalize="off"
|
|
57
|
-
autocomplete="off"
|
|
58
|
-
placeholder="Search the docs"
|
|
59
|
-
maxlength="100"
|
|
60
|
-
/>
|
|
61
|
-
<ul role="listbox" id="tsd-search-results"></ul>
|
|
62
|
-
<div id="tsd-search-status" aria-live="polite" aria-atomic="true">
|
|
63
|
-
<div>Preparing search index...</div>
|
|
64
|
-
</div>
|
|
65
|
-
</dialog>
|
|
66
|
-
<a
|
|
67
|
-
href="#"
|
|
68
|
-
class="tsd-widget menu"
|
|
69
|
-
id="tsd-toolbar-menu-trigger"
|
|
70
|
-
data-toggle="menu"
|
|
71
|
-
aria-label="Menu"
|
|
72
|
-
><svg
|
|
73
|
-
width="16"
|
|
74
|
-
height="16"
|
|
75
|
-
viewBox="0 0 16 16"
|
|
76
|
-
fill="none"
|
|
77
|
-
aria-hidden="true"
|
|
78
|
-
>
|
|
79
|
-
<use href="../assets/icons.svg#icon-menu"></use></svg
|
|
80
|
-
></a>
|
|
81
|
-
</div>
|
|
82
|
-
</header>
|
|
83
|
-
<div class="container container-main">
|
|
84
|
-
<div class="col-content">
|
|
85
|
-
<div class="tsd-page-title">
|
|
86
|
-
<ul class="tsd-breadcrumb" aria-label="Breadcrumb">
|
|
87
|
-
<li>
|
|
88
|
-
<a href="../modules/directive_model_model.html"
|
|
89
|
-
>directive/model/model</a
|
|
90
|
-
>
|
|
91
|
-
</li>
|
|
92
|
-
<li><a href="" aria-current="page">NgModelController</a></li>
|
|
93
|
-
</ul>
|
|
94
|
-
<h1>Class NgModelController</h1>
|
|
95
|
-
</div>
|
|
96
|
-
<section class="tsd-panel-group tsd-index-group">
|
|
97
|
-
<section class="tsd-panel tsd-index-panel">
|
|
98
|
-
<details class="tsd-index-content tsd-accordion" open>
|
|
99
|
-
<summary class="tsd-accordion-summary tsd-index-summary">
|
|
100
|
-
<svg
|
|
101
|
-
width="20"
|
|
102
|
-
height="20"
|
|
103
|
-
viewBox="0 0 24 24"
|
|
104
|
-
fill="none"
|
|
105
|
-
aria-hidden="true"
|
|
106
|
-
>
|
|
107
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
108
|
-
</svg>
|
|
109
|
-
<h5 class="tsd-index-heading uppercase">Index</h5>
|
|
110
|
-
</summary>
|
|
111
|
-
<div class="tsd-accordion-details">
|
|
112
|
-
<section class="tsd-index-section">
|
|
113
|
-
<h3 class="tsd-index-heading">Constructors</h3>
|
|
114
|
-
<div class="tsd-index-list">
|
|
115
|
-
<a href="#constructor" class="tsd-index-link"
|
|
116
|
-
><svg
|
|
117
|
-
class="tsd-kind-icon"
|
|
118
|
-
viewBox="0 0 24 24"
|
|
119
|
-
aria-label="Constructor"
|
|
120
|
-
>
|
|
121
|
-
<use href="../assets/icons.svg#icon-512"></use></svg
|
|
122
|
-
><span>constructor</span></a
|
|
123
|
-
>
|
|
124
|
-
</div>
|
|
125
|
-
</section>
|
|
126
|
-
<section class="tsd-index-section">
|
|
127
|
-
<h3 class="tsd-index-heading">Properties</h3>
|
|
128
|
-
<div class="tsd-index-list">
|
|
129
|
-
<a href="#animate" class="tsd-index-link"
|
|
130
|
-
><svg
|
|
131
|
-
class="tsd-kind-icon"
|
|
132
|
-
viewBox="0 0 24 24"
|
|
133
|
-
aria-label="Property"
|
|
134
|
-
>
|
|
135
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
136
|
-
><span>$$animate</span></a
|
|
137
|
-
>
|
|
138
|
-
<a href="#attr" class="tsd-index-link"
|
|
139
|
-
><svg
|
|
140
|
-
class="tsd-kind-icon"
|
|
141
|
-
viewBox="0 0 24 24"
|
|
142
|
-
aria-label="Property"
|
|
143
|
-
>
|
|
144
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
145
|
-
><span>$$attr</span></a
|
|
146
|
-
>
|
|
147
|
-
<a href="#classcache" class="tsd-index-link"
|
|
148
|
-
><svg
|
|
149
|
-
class="tsd-kind-icon"
|
|
150
|
-
viewBox="0 0 24 24"
|
|
151
|
-
aria-label="Property"
|
|
152
|
-
>
|
|
153
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
154
|
-
><span>$$class<wbr />Cache</span></a
|
|
155
|
-
>
|
|
156
|
-
<a href="#currentvalidationrunid" class="tsd-index-link"
|
|
157
|
-
><svg
|
|
158
|
-
class="tsd-kind-icon"
|
|
159
|
-
viewBox="0 0 24 24"
|
|
160
|
-
aria-label="Property"
|
|
161
|
-
>
|
|
162
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
163
|
-
><span
|
|
164
|
-
>$$current<wbr />Validation<wbr />Run<wbr />Id</span
|
|
165
|
-
></a
|
|
166
|
-
>
|
|
167
|
-
<a href="#element" class="tsd-index-link"
|
|
168
|
-
><svg
|
|
169
|
-
class="tsd-kind-icon"
|
|
170
|
-
viewBox="0 0 24 24"
|
|
171
|
-
aria-label="Property"
|
|
172
|
-
>
|
|
173
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
174
|
-
><span>$$element</span></a
|
|
175
|
-
>
|
|
176
|
-
<a href="#eventremovers" class="tsd-index-link"
|
|
177
|
-
><svg
|
|
178
|
-
class="tsd-kind-icon"
|
|
179
|
-
viewBox="0 0 24 24"
|
|
180
|
-
aria-label="Property"
|
|
181
|
-
>
|
|
182
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
183
|
-
><span>$$event<wbr />Removers</span></a
|
|
184
|
-
>
|
|
185
|
-
<a href="#exceptionhandler" class="tsd-index-link"
|
|
186
|
-
><svg
|
|
187
|
-
class="tsd-kind-icon"
|
|
188
|
-
viewBox="0 0 24 24"
|
|
189
|
-
aria-label="Property"
|
|
190
|
-
>
|
|
191
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
192
|
-
><span>$$exception<wbr />Handler</span></a
|
|
193
|
-
>
|
|
194
|
-
<a href="#hasnativevalidators" class="tsd-index-link"
|
|
195
|
-
><svg
|
|
196
|
-
class="tsd-kind-icon"
|
|
197
|
-
viewBox="0 0 24 24"
|
|
198
|
-
aria-label="Property"
|
|
199
|
-
>
|
|
200
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
201
|
-
><span>$$has<wbr />Native<wbr />Validators</span></a
|
|
202
|
-
>
|
|
203
|
-
<a href="#lastcommittedviewvalue" class="tsd-index-link"
|
|
204
|
-
><svg
|
|
205
|
-
class="tsd-kind-icon"
|
|
206
|
-
viewBox="0 0 24 24"
|
|
207
|
-
aria-label="Property"
|
|
208
|
-
>
|
|
209
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
210
|
-
><span
|
|
211
|
-
>$$last<wbr />Committed<wbr />View<wbr />Value</span
|
|
212
|
-
></a
|
|
213
|
-
>
|
|
214
|
-
<a href="#ngmodelget" class="tsd-index-link"
|
|
215
|
-
><svg
|
|
216
|
-
class="tsd-kind-icon"
|
|
217
|
-
viewBox="0 0 24 24"
|
|
218
|
-
aria-label="Property"
|
|
219
|
-
>
|
|
220
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
221
|
-
><span>$$ng<wbr />Model<wbr />Get</span></a
|
|
222
|
-
>
|
|
223
|
-
<a href="#ngmodelset" class="tsd-index-link"
|
|
224
|
-
><svg
|
|
225
|
-
class="tsd-kind-icon"
|
|
226
|
-
viewBox="0 0 24 24"
|
|
227
|
-
aria-label="Property"
|
|
228
|
-
>
|
|
229
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
230
|
-
><span>$$ng<wbr />Model<wbr />Set</span></a
|
|
231
|
-
>
|
|
232
|
-
<a href="#parentform" class="tsd-index-link"
|
|
233
|
-
><svg
|
|
234
|
-
class="tsd-kind-icon"
|
|
235
|
-
viewBox="0 0 24 24"
|
|
236
|
-
aria-label="Property"
|
|
237
|
-
>
|
|
238
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
239
|
-
><span>$$parent<wbr />Form</span></a
|
|
240
|
-
>
|
|
241
|
-
<a href="#parse" class="tsd-index-link"
|
|
242
|
-
><svg
|
|
243
|
-
class="tsd-kind-icon"
|
|
244
|
-
viewBox="0 0 24 24"
|
|
245
|
-
aria-label="Property"
|
|
246
|
-
>
|
|
247
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
248
|
-
><span>$$parse</span></a
|
|
249
|
-
>
|
|
250
|
-
<a href="#parsedngmodel" class="tsd-index-link"
|
|
251
|
-
><svg
|
|
252
|
-
class="tsd-kind-icon"
|
|
253
|
-
viewBox="0 0 24 24"
|
|
254
|
-
aria-label="Property"
|
|
255
|
-
>
|
|
256
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
257
|
-
><span>$$parsed<wbr />Ng<wbr />Model</span></a
|
|
258
|
-
>
|
|
259
|
-
<a href="#parsedngmodelassign" class="tsd-index-link"
|
|
260
|
-
><svg
|
|
261
|
-
class="tsd-kind-icon"
|
|
262
|
-
viewBox="0 0 24 24"
|
|
263
|
-
aria-label="Property"
|
|
264
|
-
>
|
|
265
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
266
|
-
><span
|
|
267
|
-
>$$parsed<wbr />Ng<wbr />Model<wbr />Assign</span
|
|
268
|
-
></a
|
|
269
|
-
>
|
|
270
|
-
<a href="#parsername" class="tsd-index-link"
|
|
271
|
-
><svg
|
|
272
|
-
class="tsd-kind-icon"
|
|
273
|
-
viewBox="0 0 24 24"
|
|
274
|
-
aria-label="Property"
|
|
275
|
-
>
|
|
276
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
277
|
-
><span>$$parser<wbr />Name</span></a
|
|
278
|
-
>
|
|
279
|
-
<a href="#parservalid" class="tsd-index-link"
|
|
280
|
-
><svg
|
|
281
|
-
class="tsd-kind-icon"
|
|
282
|
-
viewBox="0 0 24 24"
|
|
283
|
-
aria-label="Property"
|
|
284
|
-
>
|
|
285
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
286
|
-
><span>$$parser<wbr />Valid</span></a
|
|
287
|
-
>
|
|
288
|
-
<a href="#pendingdebounce" class="tsd-index-link"
|
|
289
|
-
><svg
|
|
290
|
-
class="tsd-kind-icon"
|
|
291
|
-
viewBox="0 0 24 24"
|
|
292
|
-
aria-label="Property"
|
|
293
|
-
>
|
|
294
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
295
|
-
><span>$$pending<wbr />Debounce</span></a
|
|
296
|
-
>
|
|
297
|
-
<a href="#rawmodelvalue" class="tsd-index-link"
|
|
298
|
-
><svg
|
|
299
|
-
class="tsd-kind-icon"
|
|
300
|
-
viewBox="0 0 24 24"
|
|
301
|
-
aria-label="Property"
|
|
302
|
-
>
|
|
303
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
304
|
-
><span>$$raw<wbr />Model<wbr />Value</span></a
|
|
305
|
-
>
|
|
306
|
-
<a href="#scope" class="tsd-index-link"
|
|
307
|
-
><svg
|
|
308
|
-
class="tsd-kind-icon"
|
|
309
|
-
viewBox="0 0 24 24"
|
|
310
|
-
aria-label="Property"
|
|
311
|
-
>
|
|
312
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
313
|
-
><span>$$scope</span></a
|
|
314
|
-
>
|
|
315
|
-
<a href="#success" class="tsd-index-link"
|
|
316
|
-
><svg
|
|
317
|
-
class="tsd-kind-icon"
|
|
318
|
-
viewBox="0 0 24 24"
|
|
319
|
-
aria-label="Property"
|
|
320
|
-
>
|
|
321
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
322
|
-
><span>$$success</span></a
|
|
323
|
-
>
|
|
324
|
-
<a href="#updateevents" class="tsd-index-link"
|
|
325
|
-
><svg
|
|
326
|
-
class="tsd-kind-icon"
|
|
327
|
-
viewBox="0 0 24 24"
|
|
328
|
-
aria-label="Property"
|
|
329
|
-
>
|
|
330
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
331
|
-
><span>$$update<wbr />Events</span></a
|
|
332
|
-
>
|
|
333
|
-
<a href="#asyncvalidators" class="tsd-index-link"
|
|
334
|
-
><svg
|
|
335
|
-
class="tsd-kind-icon"
|
|
336
|
-
viewBox="0 0 24 24"
|
|
337
|
-
aria-label="Property"
|
|
338
|
-
>
|
|
339
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
340
|
-
><span>$async<wbr />Validators</span></a
|
|
341
|
-
>
|
|
342
|
-
<a href="#dirty" class="tsd-index-link"
|
|
343
|
-
><svg
|
|
344
|
-
class="tsd-kind-icon"
|
|
345
|
-
viewBox="0 0 24 24"
|
|
346
|
-
aria-label="Property"
|
|
347
|
-
>
|
|
348
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
349
|
-
><span>$dirty</span></a
|
|
350
|
-
>
|
|
351
|
-
<a href="#error" class="tsd-index-link"
|
|
352
|
-
><svg
|
|
353
|
-
class="tsd-kind-icon"
|
|
354
|
-
viewBox="0 0 24 24"
|
|
355
|
-
aria-label="Property"
|
|
356
|
-
>
|
|
357
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
358
|
-
><span>$error</span></a
|
|
359
|
-
>
|
|
360
|
-
<a href="#formatters" class="tsd-index-link"
|
|
361
|
-
><svg
|
|
362
|
-
class="tsd-kind-icon"
|
|
363
|
-
viewBox="0 0 24 24"
|
|
364
|
-
aria-label="Property"
|
|
365
|
-
>
|
|
366
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
367
|
-
><span>$formatters</span></a
|
|
368
|
-
>
|
|
369
|
-
<a href="#invalid" class="tsd-index-link"
|
|
370
|
-
><svg
|
|
371
|
-
class="tsd-kind-icon"
|
|
372
|
-
viewBox="0 0 24 24"
|
|
373
|
-
aria-label="Property"
|
|
374
|
-
>
|
|
375
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
376
|
-
><span>$invalid</span></a
|
|
377
|
-
>
|
|
378
|
-
<a href="#modelvalue" class="tsd-index-link"
|
|
379
|
-
><svg
|
|
380
|
-
class="tsd-kind-icon"
|
|
381
|
-
viewBox="0 0 24 24"
|
|
382
|
-
aria-label="Property"
|
|
383
|
-
>
|
|
384
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
385
|
-
><span>$model<wbr />Value</span></a
|
|
386
|
-
>
|
|
387
|
-
<a href="#name" class="tsd-index-link"
|
|
388
|
-
><svg
|
|
389
|
-
class="tsd-kind-icon"
|
|
390
|
-
viewBox="0 0 24 24"
|
|
391
|
-
aria-label="Property"
|
|
392
|
-
>
|
|
393
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
394
|
-
><span>$name</span></a
|
|
395
|
-
>
|
|
396
|
-
<a href="#options" class="tsd-index-link"
|
|
397
|
-
><svg
|
|
398
|
-
class="tsd-kind-icon"
|
|
399
|
-
viewBox="0 0 24 24"
|
|
400
|
-
aria-label="Property"
|
|
401
|
-
>
|
|
402
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
403
|
-
><span>$options</span></a
|
|
404
|
-
>
|
|
405
|
-
<a href="#parsers" class="tsd-index-link"
|
|
406
|
-
><svg
|
|
407
|
-
class="tsd-kind-icon"
|
|
408
|
-
viewBox="0 0 24 24"
|
|
409
|
-
aria-label="Property"
|
|
410
|
-
>
|
|
411
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
412
|
-
><span>$parsers</span></a
|
|
413
|
-
>
|
|
414
|
-
<a href="#pending" class="tsd-index-link"
|
|
415
|
-
><svg
|
|
416
|
-
class="tsd-kind-icon"
|
|
417
|
-
viewBox="0 0 24 24"
|
|
418
|
-
aria-label="Property"
|
|
419
|
-
>
|
|
420
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
421
|
-
><span>$pending</span></a
|
|
422
|
-
>
|
|
423
|
-
<a href="#pristine" class="tsd-index-link"
|
|
424
|
-
><svg
|
|
425
|
-
class="tsd-kind-icon"
|
|
426
|
-
viewBox="0 0 24 24"
|
|
427
|
-
aria-label="Property"
|
|
428
|
-
>
|
|
429
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
430
|
-
><span>$pristine</span></a
|
|
431
|
-
>
|
|
432
|
-
<a href="#touched" class="tsd-index-link"
|
|
433
|
-
><svg
|
|
434
|
-
class="tsd-kind-icon"
|
|
435
|
-
viewBox="0 0 24 24"
|
|
436
|
-
aria-label="Property"
|
|
437
|
-
>
|
|
438
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
439
|
-
><span>$touched</span></a
|
|
440
|
-
>
|
|
441
|
-
<a href="#untouched" class="tsd-index-link"
|
|
442
|
-
><svg
|
|
443
|
-
class="tsd-kind-icon"
|
|
444
|
-
viewBox="0 0 24 24"
|
|
445
|
-
aria-label="Property"
|
|
446
|
-
>
|
|
447
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
448
|
-
><span>$untouched</span></a
|
|
449
|
-
>
|
|
450
|
-
<a href="#valid" class="tsd-index-link"
|
|
451
|
-
><svg
|
|
452
|
-
class="tsd-kind-icon"
|
|
453
|
-
viewBox="0 0 24 24"
|
|
454
|
-
aria-label="Property"
|
|
455
|
-
>
|
|
456
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
457
|
-
><span>$valid</span></a
|
|
458
|
-
>
|
|
459
|
-
<a href="#validators" class="tsd-index-link"
|
|
460
|
-
><svg
|
|
461
|
-
class="tsd-kind-icon"
|
|
462
|
-
viewBox="0 0 24 24"
|
|
463
|
-
aria-label="Property"
|
|
464
|
-
>
|
|
465
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
466
|
-
><span>$validators</span></a
|
|
467
|
-
>
|
|
468
|
-
<a href="#viewchangelisteners" class="tsd-index-link"
|
|
469
|
-
><svg
|
|
470
|
-
class="tsd-kind-icon"
|
|
471
|
-
viewBox="0 0 24 24"
|
|
472
|
-
aria-label="Property"
|
|
473
|
-
>
|
|
474
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
475
|
-
><span>$view<wbr />Change<wbr />Listeners</span></a
|
|
476
|
-
>
|
|
477
|
-
<a href="#viewvalue" class="tsd-index-link"
|
|
478
|
-
><svg
|
|
479
|
-
class="tsd-kind-icon"
|
|
480
|
-
viewBox="0 0 24 24"
|
|
481
|
-
aria-label="Property"
|
|
482
|
-
>
|
|
483
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
484
|
-
><span>$view<wbr />Value</span></a
|
|
485
|
-
>
|
|
486
|
-
<a href="#inject" class="tsd-index-link"
|
|
487
|
-
><svg
|
|
488
|
-
class="tsd-kind-icon"
|
|
489
|
-
viewBox="0 0 24 24"
|
|
490
|
-
aria-label="Property"
|
|
491
|
-
>
|
|
492
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
493
|
-
><span>$inject</span></a
|
|
494
|
-
>
|
|
495
|
-
<a href="#nonscope" class="tsd-index-link"
|
|
496
|
-
><svg
|
|
497
|
-
class="tsd-kind-icon"
|
|
498
|
-
viewBox="0 0 24 24"
|
|
499
|
-
aria-label="Property"
|
|
500
|
-
>
|
|
501
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
502
|
-
><span>$nonscope</span></a
|
|
503
|
-
>
|
|
504
|
-
</div>
|
|
505
|
-
</section>
|
|
506
|
-
<section class="tsd-index-section">
|
|
507
|
-
<h3 class="tsd-index-heading">Methods</h3>
|
|
508
|
-
<div class="tsd-index-list">
|
|
509
|
-
<a href="#debounceviewvaluecommit" 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
|
|
517
|
-
>$$debounce<wbr />View<wbr />Value<wbr />Commit</span
|
|
518
|
-
></a
|
|
519
|
-
>
|
|
520
|
-
<a href="#format" class="tsd-index-link"
|
|
521
|
-
><svg
|
|
522
|
-
class="tsd-kind-icon"
|
|
523
|
-
viewBox="0 0 24 24"
|
|
524
|
-
aria-label="Method"
|
|
525
|
-
>
|
|
526
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
527
|
-
><span>$$format</span></a
|
|
528
|
-
>
|
|
529
|
-
<a href="#initgettersetters" class="tsd-index-link"
|
|
530
|
-
><svg
|
|
531
|
-
class="tsd-kind-icon"
|
|
532
|
-
viewBox="0 0 24 24"
|
|
533
|
-
aria-label="Method"
|
|
534
|
-
>
|
|
535
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
536
|
-
><span>$$init<wbr />Getter<wbr />Setters</span></a
|
|
537
|
-
>
|
|
538
|
-
<a href="#parseandvalidate" class="tsd-index-link"
|
|
539
|
-
><svg
|
|
540
|
-
class="tsd-kind-icon"
|
|
541
|
-
viewBox="0 0 24 24"
|
|
542
|
-
aria-label="Method"
|
|
543
|
-
>
|
|
544
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
545
|
-
><span>$$parse<wbr />And<wbr />Validate</span></a
|
|
546
|
-
>
|
|
547
|
-
<a href="#removealleventlisteners" class="tsd-index-link"
|
|
548
|
-
><svg
|
|
549
|
-
class="tsd-kind-icon"
|
|
550
|
-
viewBox="0 0 24 24"
|
|
551
|
-
aria-label="Method"
|
|
552
|
-
>
|
|
553
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
554
|
-
><span
|
|
555
|
-
>$$remove<wbr />All<wbr />Event<wbr />Listeners</span
|
|
556
|
-
></a
|
|
557
|
-
>
|
|
558
|
-
<a href="#runvalidators" class="tsd-index-link"
|
|
559
|
-
><svg
|
|
560
|
-
class="tsd-kind-icon"
|
|
561
|
-
viewBox="0 0 24 24"
|
|
562
|
-
aria-label="Method"
|
|
563
|
-
>
|
|
564
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
565
|
-
><span>$$run<wbr />Validators</span></a
|
|
566
|
-
>
|
|
567
|
-
<a href="#setmodelvalue" class="tsd-index-link"
|
|
568
|
-
><svg
|
|
569
|
-
class="tsd-kind-icon"
|
|
570
|
-
viewBox="0 0 24 24"
|
|
571
|
-
aria-label="Method"
|
|
572
|
-
>
|
|
573
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
574
|
-
><span>$$set<wbr />Model<wbr />Value</span></a
|
|
575
|
-
>
|
|
576
|
-
<a href="#setupdateonevents" class="tsd-index-link"
|
|
577
|
-
><svg
|
|
578
|
-
class="tsd-kind-icon"
|
|
579
|
-
viewBox="0 0 24 24"
|
|
580
|
-
aria-label="Method"
|
|
581
|
-
>
|
|
582
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
583
|
-
><span>$$set<wbr />Update<wbr />On<wbr />Events</span></a
|
|
584
|
-
>
|
|
585
|
-
<a href="#updateemptyclasses" class="tsd-index-link"
|
|
586
|
-
><svg
|
|
587
|
-
class="tsd-kind-icon"
|
|
588
|
-
viewBox="0 0 24 24"
|
|
589
|
-
aria-label="Method"
|
|
590
|
-
>
|
|
591
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
592
|
-
><span>$$update<wbr />Empty<wbr />Classes</span></a
|
|
593
|
-
>
|
|
594
|
-
<a href="#updateeventhandler" class="tsd-index-link"
|
|
595
|
-
><svg
|
|
596
|
-
class="tsd-kind-icon"
|
|
597
|
-
viewBox="0 0 24 24"
|
|
598
|
-
aria-label="Method"
|
|
599
|
-
>
|
|
600
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
601
|
-
><span>$$update<wbr />Event<wbr />Handler</span></a
|
|
602
|
-
>
|
|
603
|
-
<a href="#writemodeltoscope" class="tsd-index-link"
|
|
604
|
-
><svg
|
|
605
|
-
class="tsd-kind-icon"
|
|
606
|
-
viewBox="0 0 24 24"
|
|
607
|
-
aria-label="Method"
|
|
608
|
-
>
|
|
609
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
610
|
-
><span>$$write<wbr />Model<wbr />To<wbr />Scope</span></a
|
|
611
|
-
>
|
|
612
|
-
<a href="#commitviewvalue" class="tsd-index-link"
|
|
613
|
-
><svg
|
|
614
|
-
class="tsd-kind-icon"
|
|
615
|
-
viewBox="0 0 24 24"
|
|
616
|
-
aria-label="Method"
|
|
617
|
-
>
|
|
618
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
619
|
-
><span>$commit<wbr />View<wbr />Value</span></a
|
|
620
|
-
>
|
|
621
|
-
<a href="#isempty" class="tsd-index-link"
|
|
622
|
-
><svg
|
|
623
|
-
class="tsd-kind-icon"
|
|
624
|
-
viewBox="0 0 24 24"
|
|
625
|
-
aria-label="Method"
|
|
626
|
-
>
|
|
627
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
628
|
-
><span>$is<wbr />Empty</span></a
|
|
629
|
-
>
|
|
630
|
-
<a href="#overridemodeloptions" class="tsd-index-link"
|
|
631
|
-
><svg
|
|
632
|
-
class="tsd-kind-icon"
|
|
633
|
-
viewBox="0 0 24 24"
|
|
634
|
-
aria-label="Method"
|
|
635
|
-
>
|
|
636
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
637
|
-
><span>$override<wbr />Model<wbr />Options</span></a
|
|
638
|
-
>
|
|
639
|
-
<a href="#processmodelvalue" class="tsd-index-link"
|
|
640
|
-
><svg
|
|
641
|
-
class="tsd-kind-icon"
|
|
642
|
-
viewBox="0 0 24 24"
|
|
643
|
-
aria-label="Method"
|
|
644
|
-
>
|
|
645
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
646
|
-
><span>$process<wbr />Model<wbr />Value</span></a
|
|
647
|
-
>
|
|
648
|
-
<a href="#render" class="tsd-index-link"
|
|
649
|
-
><svg
|
|
650
|
-
class="tsd-kind-icon"
|
|
651
|
-
viewBox="0 0 24 24"
|
|
652
|
-
aria-label="Method"
|
|
653
|
-
>
|
|
654
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
655
|
-
><span>$render</span></a
|
|
656
|
-
>
|
|
657
|
-
<a href="#rollbackviewvalue" class="tsd-index-link"
|
|
658
|
-
><svg
|
|
659
|
-
class="tsd-kind-icon"
|
|
660
|
-
viewBox="0 0 24 24"
|
|
661
|
-
aria-label="Method"
|
|
662
|
-
>
|
|
663
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
664
|
-
><span>$rollback<wbr />View<wbr />Value</span></a
|
|
665
|
-
>
|
|
666
|
-
<a href="#setdirty" class="tsd-index-link"
|
|
667
|
-
><svg
|
|
668
|
-
class="tsd-kind-icon"
|
|
669
|
-
viewBox="0 0 24 24"
|
|
670
|
-
aria-label="Method"
|
|
671
|
-
>
|
|
672
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
673
|
-
><span>$set<wbr />Dirty</span></a
|
|
674
|
-
>
|
|
675
|
-
<a href="#setpristine" class="tsd-index-link"
|
|
676
|
-
><svg
|
|
677
|
-
class="tsd-kind-icon"
|
|
678
|
-
viewBox="0 0 24 24"
|
|
679
|
-
aria-label="Method"
|
|
680
|
-
>
|
|
681
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
682
|
-
><span>$set<wbr />Pristine</span></a
|
|
683
|
-
>
|
|
684
|
-
<a href="#settouched" class="tsd-index-link"
|
|
685
|
-
><svg
|
|
686
|
-
class="tsd-kind-icon"
|
|
687
|
-
viewBox="0 0 24 24"
|
|
688
|
-
aria-label="Method"
|
|
689
|
-
>
|
|
690
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
691
|
-
><span>$set<wbr />Touched</span></a
|
|
692
|
-
>
|
|
693
|
-
<a href="#setuntouched" class="tsd-index-link"
|
|
694
|
-
><svg
|
|
695
|
-
class="tsd-kind-icon"
|
|
696
|
-
viewBox="0 0 24 24"
|
|
697
|
-
aria-label="Method"
|
|
698
|
-
>
|
|
699
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
700
|
-
><span>$set<wbr />Untouched</span></a
|
|
701
|
-
>
|
|
702
|
-
<a href="#setvalidity" class="tsd-index-link"
|
|
703
|
-
><svg
|
|
704
|
-
class="tsd-kind-icon"
|
|
705
|
-
viewBox="0 0 24 24"
|
|
706
|
-
aria-label="Method"
|
|
707
|
-
>
|
|
708
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
709
|
-
><span>$set<wbr />Validity</span></a
|
|
710
|
-
>
|
|
711
|
-
<a href="#setviewvalue" class="tsd-index-link"
|
|
712
|
-
><svg
|
|
713
|
-
class="tsd-kind-icon"
|
|
714
|
-
viewBox="0 0 24 24"
|
|
715
|
-
aria-label="Method"
|
|
716
|
-
>
|
|
717
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
718
|
-
><span>$set<wbr />View<wbr />Value</span></a
|
|
719
|
-
>
|
|
720
|
-
<a href="#validate" class="tsd-index-link"
|
|
721
|
-
><svg
|
|
722
|
-
class="tsd-kind-icon"
|
|
723
|
-
viewBox="0 0 24 24"
|
|
724
|
-
aria-label="Method"
|
|
725
|
-
>
|
|
726
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
727
|
-
><span>$validate</span></a
|
|
728
|
-
>
|
|
729
|
-
<a href="#set" class="tsd-index-link"
|
|
730
|
-
><svg
|
|
731
|
-
class="tsd-kind-icon"
|
|
732
|
-
viewBox="0 0 24 24"
|
|
733
|
-
aria-label="Method"
|
|
734
|
-
>
|
|
735
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
736
|
-
><span>set</span></a
|
|
737
|
-
>
|
|
738
|
-
<a href="#unset" class="tsd-index-link"
|
|
739
|
-
><svg
|
|
740
|
-
class="tsd-kind-icon"
|
|
741
|
-
viewBox="0 0 24 24"
|
|
742
|
-
aria-label="Method"
|
|
743
|
-
>
|
|
744
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
745
|
-
><span>unset</span></a
|
|
746
|
-
>
|
|
747
|
-
</div>
|
|
748
|
-
</section>
|
|
749
|
-
</div>
|
|
750
|
-
</details>
|
|
751
|
-
</section>
|
|
752
|
-
</section>
|
|
753
|
-
<details class="tsd-panel-group tsd-member-group tsd-accordion" open>
|
|
754
|
-
<summary
|
|
755
|
-
class="tsd-accordion-summary"
|
|
756
|
-
data-key="section-Constructors"
|
|
757
|
-
>
|
|
758
|
-
<svg
|
|
759
|
-
width="20"
|
|
760
|
-
height="20"
|
|
761
|
-
viewBox="0 0 24 24"
|
|
762
|
-
fill="none"
|
|
763
|
-
aria-hidden="true"
|
|
764
|
-
>
|
|
765
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
766
|
-
</svg>
|
|
767
|
-
<h2>Constructors</h2>
|
|
768
|
-
</summary>
|
|
769
|
-
<section>
|
|
770
|
-
<section class="tsd-panel tsd-member">
|
|
771
|
-
<h3 class="tsd-anchor-link" id="constructor">
|
|
772
|
-
<span>constructor</span
|
|
773
|
-
><a
|
|
774
|
-
href="#constructor"
|
|
775
|
-
aria-label="Permalink"
|
|
776
|
-
class="tsd-anchor-icon"
|
|
777
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
778
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
779
|
-
></a>
|
|
780
|
-
</h3>
|
|
781
|
-
<ul class="tsd-signatures">
|
|
782
|
-
<li class="">
|
|
783
|
-
<div
|
|
784
|
-
class="tsd-signature tsd-anchor-link"
|
|
785
|
-
id="constructorngmodelcontroller"
|
|
786
|
-
>
|
|
787
|
-
<span class="tsd-signature-keyword">new</span>
|
|
788
|
-
<span class="tsd-kind-constructor-signature"
|
|
789
|
-
>NgModelController</span
|
|
790
|
-
><span class="tsd-signature-symbol">(</span><br /> <span
|
|
791
|
-
class="tsd-kind-parameter"
|
|
792
|
-
>$scope</span
|
|
793
|
-
><span class="tsd-signature-symbol">:</span>
|
|
794
|
-
<a
|
|
795
|
-
href="core_scope_scope.Scope.html"
|
|
796
|
-
class="tsd-signature-type tsd-kind-class"
|
|
797
|
-
>Scope</a
|
|
798
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
799
|
-
class="tsd-kind-parameter"
|
|
800
|
-
>$exceptionHandler</span
|
|
801
|
-
><span class="tsd-signature-symbol">:</span>
|
|
802
|
-
<a
|
|
803
|
-
href="../types/core_error-handler.ErrorHandler.html"
|
|
804
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
805
|
-
>ErrorHandler</a
|
|
806
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
807
|
-
class="tsd-kind-parameter"
|
|
808
|
-
>$attr</span
|
|
809
|
-
><span class="tsd-signature-symbol">:</span>
|
|
810
|
-
<a
|
|
811
|
-
href="core_compile_attributes.Attributes.html"
|
|
812
|
-
class="tsd-signature-type tsd-kind-class"
|
|
813
|
-
>Attributes</a
|
|
814
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
815
|
-
class="tsd-kind-parameter"
|
|
816
|
-
>$element</span
|
|
817
|
-
><span class="tsd-signature-symbol">:</span>
|
|
818
|
-
<span class="tsd-signature-type">Element</span
|
|
819
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
820
|
-
class="tsd-kind-parameter"
|
|
821
|
-
>$parse</span
|
|
822
|
-
><span class="tsd-signature-symbol">:</span>
|
|
823
|
-
<a
|
|
824
|
-
href="../types/core_parse_interface.ParseService.html"
|
|
825
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
826
|
-
>ParseService</a
|
|
827
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
828
|
-
class="tsd-kind-parameter"
|
|
829
|
-
>$animate</span
|
|
830
|
-
><span class="tsd-signature-symbol">:</span>
|
|
831
|
-
<span class="tsd-signature-type">any</span
|
|
832
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
833
|
-
class="tsd-kind-parameter"
|
|
834
|
-
>$interpolate</span
|
|
835
|
-
><span class="tsd-signature-symbol">:</span>
|
|
836
|
-
<span class="tsd-signature-type">any</span
|
|
837
|
-
><span class="tsd-signature-symbol">,</span><br /><span
|
|
838
|
-
class="tsd-signature-symbol"
|
|
839
|
-
>)</span
|
|
840
|
-
><span class="tsd-signature-symbol">:</span>
|
|
841
|
-
<a href="" class="tsd-signature-type tsd-kind-class"
|
|
842
|
-
>NgModelController</a
|
|
843
|
-
><a
|
|
844
|
-
href="#constructorngmodelcontroller"
|
|
845
|
-
aria-label="Permalink"
|
|
846
|
-
class="tsd-anchor-icon"
|
|
847
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
848
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
849
|
-
></a>
|
|
850
|
-
</div>
|
|
851
|
-
<div class="tsd-description">
|
|
852
|
-
<div class="tsd-parameters">
|
|
853
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
854
|
-
<ul class="tsd-parameter-list">
|
|
855
|
-
<li>
|
|
856
|
-
<span
|
|
857
|
-
><span class="tsd-kind-parameter">$scope</span>:
|
|
858
|
-
<a
|
|
859
|
-
href="core_scope_scope.Scope.html"
|
|
860
|
-
class="tsd-signature-type tsd-kind-class"
|
|
861
|
-
>Scope</a
|
|
862
|
-
></span
|
|
863
|
-
>
|
|
864
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
865
|
-
</li>
|
|
866
|
-
<li>
|
|
867
|
-
<span
|
|
868
|
-
><span class="tsd-kind-parameter"
|
|
869
|
-
>$exceptionHandler</span
|
|
870
|
-
>:
|
|
871
|
-
<a
|
|
872
|
-
href="../types/core_error-handler.ErrorHandler.html"
|
|
873
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
874
|
-
>ErrorHandler</a
|
|
875
|
-
></span
|
|
876
|
-
>
|
|
877
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
878
|
-
</li>
|
|
879
|
-
<li>
|
|
880
|
-
<span
|
|
881
|
-
><span class="tsd-kind-parameter">$attr</span>:
|
|
882
|
-
<a
|
|
883
|
-
href="core_compile_attributes.Attributes.html"
|
|
884
|
-
class="tsd-signature-type tsd-kind-class"
|
|
885
|
-
>Attributes</a
|
|
886
|
-
></span
|
|
887
|
-
>
|
|
888
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
889
|
-
</li>
|
|
890
|
-
<li>
|
|
891
|
-
<span
|
|
892
|
-
><span class="tsd-kind-parameter">$element</span>:
|
|
893
|
-
<span class="tsd-signature-type"
|
|
894
|
-
>Element</span
|
|
895
|
-
></span
|
|
896
|
-
>
|
|
897
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
898
|
-
</li>
|
|
899
|
-
<li>
|
|
900
|
-
<span
|
|
901
|
-
><span class="tsd-kind-parameter">$parse</span>:
|
|
902
|
-
<a
|
|
903
|
-
href="../types/core_parse_interface.ParseService.html"
|
|
904
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
905
|
-
>ParseService</a
|
|
906
|
-
></span
|
|
907
|
-
>
|
|
908
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
909
|
-
</li>
|
|
910
|
-
<li>
|
|
911
|
-
<span
|
|
912
|
-
><span class="tsd-kind-parameter">$animate</span>:
|
|
913
|
-
<span class="tsd-signature-type">any</span></span
|
|
914
|
-
>
|
|
915
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
916
|
-
</li>
|
|
917
|
-
<li>
|
|
918
|
-
<span
|
|
919
|
-
><span class="tsd-kind-parameter">$interpolate</span
|
|
920
|
-
>: <span class="tsd-signature-type">any</span></span
|
|
921
|
-
>
|
|
922
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
923
|
-
</li>
|
|
924
|
-
</ul>
|
|
925
|
-
</div>
|
|
926
|
-
<h4 class="tsd-returns-title">
|
|
927
|
-
Returns
|
|
928
|
-
<a href="" class="tsd-signature-type tsd-kind-class"
|
|
929
|
-
>NgModelController</a
|
|
930
|
-
>
|
|
931
|
-
</h4>
|
|
932
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
933
|
-
</div>
|
|
934
|
-
</li>
|
|
935
|
-
</ul>
|
|
936
|
-
</section>
|
|
937
|
-
</section>
|
|
938
|
-
</details>
|
|
939
|
-
<details class="tsd-panel-group tsd-member-group tsd-accordion" open>
|
|
940
|
-
<summary class="tsd-accordion-summary" data-key="section-Properties">
|
|
941
|
-
<svg
|
|
942
|
-
width="20"
|
|
943
|
-
height="20"
|
|
944
|
-
viewBox="0 0 24 24"
|
|
945
|
-
fill="none"
|
|
946
|
-
aria-hidden="true"
|
|
947
|
-
>
|
|
948
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
949
|
-
</svg>
|
|
950
|
-
<h2>Properties</h2>
|
|
951
|
-
</summary>
|
|
952
|
-
<section>
|
|
953
|
-
<section class="tsd-panel tsd-member">
|
|
954
|
-
<h3 class="tsd-anchor-link" id="animate">
|
|
955
|
-
<span>$$animate</span
|
|
956
|
-
><a
|
|
957
|
-
href="#animate"
|
|
958
|
-
aria-label="Permalink"
|
|
959
|
-
class="tsd-anchor-icon"
|
|
960
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
961
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
962
|
-
></a>
|
|
963
|
-
</h3>
|
|
964
|
-
<div class="tsd-signature">
|
|
965
|
-
<span class="tsd-kind-property">$$animate</span
|
|
966
|
-
><span class="tsd-signature-symbol">:</span>
|
|
967
|
-
<span class="tsd-signature-type">any</span>
|
|
968
|
-
</div>
|
|
969
|
-
</section>
|
|
970
|
-
<section class="tsd-panel tsd-member">
|
|
971
|
-
<h3 class="tsd-anchor-link" id="attr">
|
|
972
|
-
<span>$$attr</span
|
|
973
|
-
><a href="#attr" aria-label="Permalink" class="tsd-anchor-icon"
|
|
974
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
975
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
976
|
-
></a>
|
|
977
|
-
</h3>
|
|
978
|
-
<div class="tsd-signature">
|
|
979
|
-
<span class="tsd-kind-property">$$attr</span
|
|
980
|
-
><span class="tsd-signature-symbol">:</span>
|
|
981
|
-
<a
|
|
982
|
-
href="core_compile_attributes.Attributes.html"
|
|
983
|
-
class="tsd-signature-type tsd-kind-class"
|
|
984
|
-
>Attributes</a
|
|
985
|
-
>
|
|
986
|
-
</div>
|
|
987
|
-
</section>
|
|
988
|
-
<section class="tsd-panel tsd-member">
|
|
989
|
-
<h3 class="tsd-anchor-link" id="classcache">
|
|
990
|
-
<span>$$class<wbr />Cache</span
|
|
991
|
-
><a
|
|
992
|
-
href="#classcache"
|
|
993
|
-
aria-label="Permalink"
|
|
994
|
-
class="tsd-anchor-icon"
|
|
995
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
996
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
997
|
-
></a>
|
|
998
|
-
</h3>
|
|
999
|
-
<div class="tsd-signature">
|
|
1000
|
-
<span class="tsd-kind-property">$$classCache</span
|
|
1001
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1002
|
-
<span class="tsd-signature-symbol">{}</span>
|
|
1003
|
-
</div>
|
|
1004
|
-
</section>
|
|
1005
|
-
<section class="tsd-panel tsd-member">
|
|
1006
|
-
<h3 class="tsd-anchor-link" id="currentvalidationrunid">
|
|
1007
|
-
<span>$$current<wbr />Validation<wbr />Run<wbr />Id</span
|
|
1008
|
-
><a
|
|
1009
|
-
href="#currentvalidationrunid"
|
|
1010
|
-
aria-label="Permalink"
|
|
1011
|
-
class="tsd-anchor-icon"
|
|
1012
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1013
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1014
|
-
></a>
|
|
1015
|
-
</h3>
|
|
1016
|
-
<div class="tsd-signature">
|
|
1017
|
-
<span class="tsd-kind-property">$$currentValidationRunId</span
|
|
1018
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1019
|
-
<span class="tsd-signature-type">number</span>
|
|
1020
|
-
</div>
|
|
1021
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1022
|
-
</section>
|
|
1023
|
-
<section class="tsd-panel tsd-member">
|
|
1024
|
-
<h3 class="tsd-anchor-link" id="element">
|
|
1025
|
-
<span>$$element</span
|
|
1026
|
-
><a
|
|
1027
|
-
href="#element"
|
|
1028
|
-
aria-label="Permalink"
|
|
1029
|
-
class="tsd-anchor-icon"
|
|
1030
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1031
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1032
|
-
></a>
|
|
1033
|
-
</h3>
|
|
1034
|
-
<div class="tsd-signature">
|
|
1035
|
-
<span class="tsd-kind-property">$$element</span
|
|
1036
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1037
|
-
<span class="tsd-signature-type">Element</span>
|
|
1038
|
-
</div>
|
|
1039
|
-
</section>
|
|
1040
|
-
<section class="tsd-panel tsd-member">
|
|
1041
|
-
<h3 class="tsd-anchor-link" id="eventremovers">
|
|
1042
|
-
<span>$$event<wbr />Removers</span
|
|
1043
|
-
><a
|
|
1044
|
-
href="#eventremovers"
|
|
1045
|
-
aria-label="Permalink"
|
|
1046
|
-
class="tsd-anchor-icon"
|
|
1047
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1048
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1049
|
-
></a>
|
|
1050
|
-
</h3>
|
|
1051
|
-
<div class="tsd-signature">
|
|
1052
|
-
<span class="tsd-kind-property">$$eventRemovers</span
|
|
1053
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1054
|
-
<span class="tsd-signature-type">Set</span
|
|
1055
|
-
><span class="tsd-signature-symbol"><</span
|
|
1056
|
-
><span class="tsd-signature-type">any</span
|
|
1057
|
-
><span class="tsd-signature-symbol">></span>
|
|
1058
|
-
</div>
|
|
1059
|
-
</section>
|
|
1060
|
-
<section class="tsd-panel tsd-member">
|
|
1061
|
-
<h3 class="tsd-anchor-link" id="exceptionhandler">
|
|
1062
|
-
<span>$$exception<wbr />Handler</span
|
|
1063
|
-
><a
|
|
1064
|
-
href="#exceptionhandler"
|
|
1065
|
-
aria-label="Permalink"
|
|
1066
|
-
class="tsd-anchor-icon"
|
|
1067
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1068
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1069
|
-
></a>
|
|
1070
|
-
</h3>
|
|
1071
|
-
<div class="tsd-signature">
|
|
1072
|
-
<span class="tsd-kind-property">$$exceptionHandler</span
|
|
1073
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1074
|
-
<a
|
|
1075
|
-
href="../types/core_error-handler.ErrorHandler.html"
|
|
1076
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
1077
|
-
>ErrorHandler</a
|
|
1078
|
-
>
|
|
1079
|
-
</div>
|
|
1080
|
-
</section>
|
|
1081
|
-
<section class="tsd-panel tsd-member">
|
|
1082
|
-
<h3 class="tsd-anchor-link" id="hasnativevalidators">
|
|
1083
|
-
<span>$$has<wbr />Native<wbr />Validators</span
|
|
1084
|
-
><a
|
|
1085
|
-
href="#hasnativevalidators"
|
|
1086
|
-
aria-label="Permalink"
|
|
1087
|
-
class="tsd-anchor-icon"
|
|
1088
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1089
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1090
|
-
></a>
|
|
1091
|
-
</h3>
|
|
1092
|
-
<div class="tsd-signature">
|
|
1093
|
-
<span class="tsd-kind-property">$$hasNativeValidators</span
|
|
1094
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1095
|
-
<span class="tsd-signature-type">boolean</span>
|
|
1096
|
-
</div>
|
|
1097
|
-
</section>
|
|
1098
|
-
<section class="tsd-panel tsd-member">
|
|
1099
|
-
<h3 class="tsd-anchor-link" id="lastcommittedviewvalue">
|
|
1100
|
-
<span>$$last<wbr />Committed<wbr />View<wbr />Value</span
|
|
1101
|
-
><a
|
|
1102
|
-
href="#lastcommittedviewvalue"
|
|
1103
|
-
aria-label="Permalink"
|
|
1104
|
-
class="tsd-anchor-icon"
|
|
1105
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1106
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1107
|
-
></a>
|
|
1108
|
-
</h3>
|
|
1109
|
-
<div class="tsd-signature">
|
|
1110
|
-
<span class="tsd-kind-property">$$lastCommittedViewValue</span
|
|
1111
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1112
|
-
<span class="tsd-signature-type">any</span>
|
|
1113
|
-
</div>
|
|
1114
|
-
</section>
|
|
1115
|
-
<section class="tsd-panel tsd-member">
|
|
1116
|
-
<h3 class="tsd-anchor-link" id="ngmodelget">
|
|
1117
|
-
<span>$$ng<wbr />Model<wbr />Get</span
|
|
1118
|
-
><a
|
|
1119
|
-
href="#ngmodelget"
|
|
1120
|
-
aria-label="Permalink"
|
|
1121
|
-
class="tsd-anchor-icon"
|
|
1122
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1123
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1124
|
-
></a>
|
|
1125
|
-
</h3>
|
|
1126
|
-
<div class="tsd-signature">
|
|
1127
|
-
<span class="tsd-kind-property">$$ngModelGet</span
|
|
1128
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1129
|
-
<a
|
|
1130
|
-
href="../types/core_parse_interface.CompiledExpression.html"
|
|
1131
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
1132
|
-
>CompiledExpression</a
|
|
1133
|
-
>
|
|
1134
|
-
<span class="tsd-signature-symbol">|</span> (<span
|
|
1135
|
-
class="tsd-signature-symbol"
|
|
1136
|
-
>(</span
|
|
1137
|
-
><span class="tsd-kind-parameter">arg0</span
|
|
1138
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1139
|
-
<a
|
|
1140
|
-
href="core_scope_scope.Scope.html"
|
|
1141
|
-
class="tsd-signature-type tsd-kind-class"
|
|
1142
|
-
>Scope</a
|
|
1143
|
-
><span class="tsd-signature-symbol">)</span>
|
|
1144
|
-
<span class="tsd-signature-symbol">=></span>
|
|
1145
|
-
<span class="tsd-signature-type">any</span>)
|
|
1146
|
-
</div>
|
|
1147
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1148
|
-
</section>
|
|
1149
|
-
<section class="tsd-panel tsd-member">
|
|
1150
|
-
<h3 class="tsd-anchor-link" id="ngmodelset">
|
|
1151
|
-
<span>$$ng<wbr />Model<wbr />Set</span
|
|
1152
|
-
><a
|
|
1153
|
-
href="#ngmodelset"
|
|
1154
|
-
aria-label="Permalink"
|
|
1155
|
-
class="tsd-anchor-icon"
|
|
1156
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1157
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1158
|
-
></a>
|
|
1159
|
-
</h3>
|
|
1160
|
-
<div class="tsd-signature">
|
|
1161
|
-
<span class="tsd-kind-property">$$ngModelSet</span
|
|
1162
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1163
|
-
<span class="tsd-signature-symbol">(</span
|
|
1164
|
-
><span class="tsd-kind-parameter">context</span
|
|
1165
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1166
|
-
<span class="tsd-signature-type">any</span
|
|
1167
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1168
|
-
<span class="tsd-kind-parameter">value</span
|
|
1169
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1170
|
-
<span class="tsd-signature-type">any</span
|
|
1171
|
-
><span class="tsd-signature-symbol">)</span>
|
|
1172
|
-
<span class="tsd-signature-symbol">=></span>
|
|
1173
|
-
<span class="tsd-signature-type">any</span>
|
|
1174
|
-
</div>
|
|
1175
|
-
</section>
|
|
1176
|
-
<section class="tsd-panel tsd-member">
|
|
1177
|
-
<h3 class="tsd-anchor-link" id="parentform">
|
|
1178
|
-
<span>$$parent<wbr />Form</span
|
|
1179
|
-
><a
|
|
1180
|
-
href="#parentform"
|
|
1181
|
-
aria-label="Permalink"
|
|
1182
|
-
class="tsd-anchor-icon"
|
|
1183
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1184
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1185
|
-
></a>
|
|
1186
|
-
</h3>
|
|
1187
|
-
<div class="tsd-signature">
|
|
1188
|
-
<span class="tsd-kind-property">$$parentForm</span
|
|
1189
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1190
|
-
<span class="tsd-signature-symbol">{</span><br /> <span
|
|
1191
|
-
class="tsd-kind-property"
|
|
1192
|
-
>$$renameControl</span
|
|
1193
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1194
|
-
<span class="tsd-signature-type">Function</span
|
|
1195
|
-
><span class="tsd-signature-symbol">;</span><br /> <span
|
|
1196
|
-
class="tsd-kind-property"
|
|
1197
|
-
>$$setSubmitted</span
|
|
1198
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1199
|
-
<span class="tsd-signature-type">Function</span
|
|
1200
|
-
><span class="tsd-signature-symbol">;</span><br /> <span
|
|
1201
|
-
class="tsd-kind-property"
|
|
1202
|
-
>$addControl</span
|
|
1203
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1204
|
-
<span class="tsd-signature-type">Function</span
|
|
1205
|
-
><span class="tsd-signature-symbol">;</span><br /> <span
|
|
1206
|
-
class="tsd-kind-property"
|
|
1207
|
-
>$getControls</span
|
|
1208
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1209
|
-
<span class="tsd-signature-symbol">()</span>
|
|
1210
|
-
<span class="tsd-signature-symbol">=></span>
|
|
1211
|
-
<span class="tsd-signature-type">any</span
|
|
1212
|
-
><span class="tsd-signature-symbol">[]</span
|
|
1213
|
-
><span class="tsd-signature-symbol">;</span><br /> <span
|
|
1214
|
-
class="tsd-kind-property"
|
|
1215
|
-
>$nonscope</span
|
|
1216
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1217
|
-
<span class="tsd-signature-type">boolean</span
|
|
1218
|
-
><span class="tsd-signature-symbol">;</span><br /> <span
|
|
1219
|
-
class="tsd-kind-property"
|
|
1220
|
-
>$removeControl</span
|
|
1221
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1222
|
-
<span class="tsd-signature-type">Function</span
|
|
1223
|
-
><span class="tsd-signature-symbol">;</span><br /> <span
|
|
1224
|
-
class="tsd-kind-property"
|
|
1225
|
-
>$setDirty</span
|
|
1226
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1227
|
-
<span class="tsd-signature-type">Function</span
|
|
1228
|
-
><span class="tsd-signature-symbol">;</span><br /> <span
|
|
1229
|
-
class="tsd-kind-property"
|
|
1230
|
-
>$setPristine</span
|
|
1231
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1232
|
-
<span class="tsd-signature-type">Function</span
|
|
1233
|
-
><span class="tsd-signature-symbol">;</span><br /> <span
|
|
1234
|
-
class="tsd-kind-property"
|
|
1235
|
-
>$setSubmitted</span
|
|
1236
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1237
|
-
<span class="tsd-signature-type">Function</span
|
|
1238
|
-
><span class="tsd-signature-symbol">;</span><br /> <span
|
|
1239
|
-
class="tsd-kind-property"
|
|
1240
|
-
>$setValidity</span
|
|
1241
|
-
><span class="tsd-signature-symbol">:</span><br /> <span
|
|
1242
|
-
class="tsd-signature-symbol"
|
|
1243
|
-
>|</span
|
|
1244
|
-
>
|
|
1245
|
-
<span class="tsd-signature-type">Function</span
|
|
1246
|
-
><br /> <span class="tsd-signature-symbol">|</span>
|
|
1247
|
-
(<span class="tsd-signature-symbol">(</span
|
|
1248
|
-
><span class="tsd-kind-parameter">key</span
|
|
1249
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1250
|
-
<span class="tsd-signature-type">any</span
|
|
1251
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1252
|
-
<span class="tsd-kind-parameter">isValid</span
|
|
1253
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1254
|
-
<span class="tsd-signature-type">boolean</span
|
|
1255
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1256
|
-
<span class="tsd-kind-parameter">control</span
|
|
1257
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1258
|
-
<span class="tsd-signature-type">any</span
|
|
1259
|
-
><span class="tsd-signature-symbol">)</span>
|
|
1260
|
-
<span class="tsd-signature-symbol">=></span>
|
|
1261
|
-
<span class="tsd-signature-type">any</span>)<span
|
|
1262
|
-
class="tsd-signature-symbol"
|
|
1263
|
-
>;</span
|
|
1264
|
-
><br /><span class="tsd-signature-symbol">}</span>
|
|
1265
|
-
</div>
|
|
1266
|
-
</section>
|
|
1267
|
-
<section class="tsd-panel tsd-member">
|
|
1268
|
-
<h3 class="tsd-anchor-link" id="parse">
|
|
1269
|
-
<span>$$parse</span
|
|
1270
|
-
><a href="#parse" aria-label="Permalink" class="tsd-anchor-icon"
|
|
1271
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1272
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1273
|
-
></a>
|
|
1274
|
-
</h3>
|
|
1275
|
-
<div class="tsd-signature">
|
|
1276
|
-
<span class="tsd-kind-property">$$parse</span
|
|
1277
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1278
|
-
<a
|
|
1279
|
-
href="../types/core_parse_interface.ParseService.html"
|
|
1280
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
1281
|
-
>ParseService</a
|
|
1282
|
-
>
|
|
1283
|
-
</div>
|
|
1284
|
-
</section>
|
|
1285
|
-
<section class="tsd-panel tsd-member">
|
|
1286
|
-
<h3 class="tsd-anchor-link" id="parsedngmodel">
|
|
1287
|
-
<span>$$parsed<wbr />Ng<wbr />Model</span
|
|
1288
|
-
><a
|
|
1289
|
-
href="#parsedngmodel"
|
|
1290
|
-
aria-label="Permalink"
|
|
1291
|
-
class="tsd-anchor-icon"
|
|
1292
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1293
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1294
|
-
></a>
|
|
1295
|
-
</h3>
|
|
1296
|
-
<div class="tsd-signature">
|
|
1297
|
-
<span class="tsd-kind-property">$$parsedNgModel</span
|
|
1298
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1299
|
-
<a
|
|
1300
|
-
href="../types/core_parse_interface.CompiledExpression.html"
|
|
1301
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
1302
|
-
>CompiledExpression</a
|
|
1303
|
-
>
|
|
1304
|
-
</div>
|
|
1305
|
-
</section>
|
|
1306
|
-
<section class="tsd-panel tsd-member">
|
|
1307
|
-
<h3 class="tsd-anchor-link" id="parsedngmodelassign">
|
|
1308
|
-
<span>$$parsed<wbr />Ng<wbr />Model<wbr />Assign</span
|
|
1309
|
-
><a
|
|
1310
|
-
href="#parsedngmodelassign"
|
|
1311
|
-
aria-label="Permalink"
|
|
1312
|
-
class="tsd-anchor-icon"
|
|
1313
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1314
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1315
|
-
></a>
|
|
1316
|
-
</h3>
|
|
1317
|
-
<div class="tsd-signature">
|
|
1318
|
-
<span class="tsd-kind-property">$$parsedNgModelAssign</span
|
|
1319
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1320
|
-
<span class="tsd-signature-symbol">(</span
|
|
1321
|
-
><span class="tsd-kind-parameter">context</span
|
|
1322
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1323
|
-
<span class="tsd-signature-type">any</span
|
|
1324
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1325
|
-
<span class="tsd-kind-parameter">value</span
|
|
1326
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1327
|
-
<span class="tsd-signature-type">any</span
|
|
1328
|
-
><span class="tsd-signature-symbol">)</span>
|
|
1329
|
-
<span class="tsd-signature-symbol">=></span>
|
|
1330
|
-
<span class="tsd-signature-type">any</span>
|
|
1331
|
-
</div>
|
|
1332
|
-
</section>
|
|
1333
|
-
<section class="tsd-panel tsd-member">
|
|
1334
|
-
<h3 class="tsd-anchor-link" id="parsername">
|
|
1335
|
-
<span>$$parser<wbr />Name</span
|
|
1336
|
-
><a
|
|
1337
|
-
href="#parsername"
|
|
1338
|
-
aria-label="Permalink"
|
|
1339
|
-
class="tsd-anchor-icon"
|
|
1340
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1341
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1342
|
-
></a>
|
|
1343
|
-
</h3>
|
|
1344
|
-
<div class="tsd-signature">
|
|
1345
|
-
<span class="tsd-kind-property">$$parserName</span
|
|
1346
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1347
|
-
<span class="tsd-signature-type">string</span>
|
|
1348
|
-
</div>
|
|
1349
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1350
|
-
</section>
|
|
1351
|
-
<section class="tsd-panel tsd-member">
|
|
1352
|
-
<h3 class="tsd-anchor-link" id="parservalid">
|
|
1353
|
-
<span>$$parser<wbr />Valid</span
|
|
1354
|
-
><a
|
|
1355
|
-
href="#parservalid"
|
|
1356
|
-
aria-label="Permalink"
|
|
1357
|
-
class="tsd-anchor-icon"
|
|
1358
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1359
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1360
|
-
></a>
|
|
1361
|
-
</h3>
|
|
1362
|
-
<div class="tsd-signature">
|
|
1363
|
-
<span class="tsd-kind-property">$$parserValid</span
|
|
1364
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1365
|
-
<span class="tsd-signature-type">boolean</span>
|
|
1366
|
-
</div>
|
|
1367
|
-
</section>
|
|
1368
|
-
<section class="tsd-panel tsd-member">
|
|
1369
|
-
<h3 class="tsd-anchor-link" id="pendingdebounce">
|
|
1370
|
-
<span>$$pending<wbr />Debounce</span
|
|
1371
|
-
><a
|
|
1372
|
-
href="#pendingdebounce"
|
|
1373
|
-
aria-label="Permalink"
|
|
1374
|
-
class="tsd-anchor-icon"
|
|
1375
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1376
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1377
|
-
></a>
|
|
1378
|
-
</h3>
|
|
1379
|
-
<div class="tsd-signature">
|
|
1380
|
-
<span class="tsd-kind-property">$$pendingDebounce</span
|
|
1381
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1382
|
-
<span class="tsd-signature-type">number</span>
|
|
1383
|
-
</div>
|
|
1384
|
-
</section>
|
|
1385
|
-
<section class="tsd-panel tsd-member">
|
|
1386
|
-
<h3 class="tsd-anchor-link" id="rawmodelvalue">
|
|
1387
|
-
<span>$$raw<wbr />Model<wbr />Value</span
|
|
1388
|
-
><a
|
|
1389
|
-
href="#rawmodelvalue"
|
|
1390
|
-
aria-label="Permalink"
|
|
1391
|
-
class="tsd-anchor-icon"
|
|
1392
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1393
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1394
|
-
></a>
|
|
1395
|
-
</h3>
|
|
1396
|
-
<div class="tsd-signature">
|
|
1397
|
-
<span class="tsd-kind-property">$$rawModelValue</span
|
|
1398
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1399
|
-
<span class="tsd-signature-type">any</span>
|
|
1400
|
-
</div>
|
|
1401
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1402
|
-
</section>
|
|
1403
|
-
<section class="tsd-panel tsd-member">
|
|
1404
|
-
<h3 class="tsd-anchor-link" id="scope">
|
|
1405
|
-
<span>$$scope</span
|
|
1406
|
-
><a href="#scope" aria-label="Permalink" class="tsd-anchor-icon"
|
|
1407
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1408
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1409
|
-
></a>
|
|
1410
|
-
</h3>
|
|
1411
|
-
<div class="tsd-signature">
|
|
1412
|
-
<span class="tsd-kind-property">$$scope</span
|
|
1413
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1414
|
-
<a
|
|
1415
|
-
href="core_scope_scope.Scope.html"
|
|
1416
|
-
class="tsd-signature-type tsd-kind-class"
|
|
1417
|
-
>Scope</a
|
|
1418
|
-
>
|
|
1419
|
-
</div>
|
|
1420
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1421
|
-
</section>
|
|
1422
|
-
<section class="tsd-panel tsd-member">
|
|
1423
|
-
<h3 class="tsd-anchor-link" id="success">
|
|
1424
|
-
<span>$$success</span
|
|
1425
|
-
><a
|
|
1426
|
-
href="#success"
|
|
1427
|
-
aria-label="Permalink"
|
|
1428
|
-
class="tsd-anchor-icon"
|
|
1429
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1430
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1431
|
-
></a>
|
|
1432
|
-
</h3>
|
|
1433
|
-
<div class="tsd-signature">
|
|
1434
|
-
<span class="tsd-kind-property">$$success</span
|
|
1435
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1436
|
-
<span class="tsd-signature-symbol">{}</span>
|
|
1437
|
-
</div>
|
|
1438
|
-
</section>
|
|
1439
|
-
<section class="tsd-panel tsd-member">
|
|
1440
|
-
<h3 class="tsd-anchor-link" id="updateevents">
|
|
1441
|
-
<span>$$update<wbr />Events</span
|
|
1442
|
-
><a
|
|
1443
|
-
href="#updateevents"
|
|
1444
|
-
aria-label="Permalink"
|
|
1445
|
-
class="tsd-anchor-icon"
|
|
1446
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1447
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1448
|
-
></a>
|
|
1449
|
-
</h3>
|
|
1450
|
-
<div class="tsd-signature">
|
|
1451
|
-
<span class="tsd-kind-property">$$updateEvents</span
|
|
1452
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1453
|
-
<span class="tsd-signature-type">string</span>
|
|
1454
|
-
</div>
|
|
1455
|
-
</section>
|
|
1456
|
-
<section class="tsd-panel tsd-member">
|
|
1457
|
-
<h3 class="tsd-anchor-link" id="asyncvalidators">
|
|
1458
|
-
<span>$async<wbr />Validators</span
|
|
1459
|
-
><a
|
|
1460
|
-
href="#asyncvalidators"
|
|
1461
|
-
aria-label="Permalink"
|
|
1462
|
-
class="tsd-anchor-icon"
|
|
1463
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1464
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1465
|
-
></a>
|
|
1466
|
-
</h3>
|
|
1467
|
-
<div class="tsd-signature">
|
|
1468
|
-
<span class="tsd-kind-property">$asyncValidators</span
|
|
1469
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1470
|
-
<span class="tsd-signature-symbol">{}</span>
|
|
1471
|
-
</div>
|
|
1472
|
-
<div class="tsd-comment tsd-typography">
|
|
1473
|
-
<p>
|
|
1474
|
-
A collection of validations that are expected to perform an
|
|
1475
|
-
asynchronous validation (e.g. a HTTP request). The validation
|
|
1476
|
-
function that is provided is expected to return a promise when
|
|
1477
|
-
it is run during the model validation process
|
|
1478
|
-
</p>
|
|
1479
|
-
</div>
|
|
1480
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1481
|
-
</section>
|
|
1482
|
-
<section class="tsd-panel tsd-member">
|
|
1483
|
-
<h3 class="tsd-anchor-link" id="dirty">
|
|
1484
|
-
<span>$dirty</span
|
|
1485
|
-
><a href="#dirty" aria-label="Permalink" class="tsd-anchor-icon"
|
|
1486
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1487
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1488
|
-
></a>
|
|
1489
|
-
</h3>
|
|
1490
|
-
<div class="tsd-signature">
|
|
1491
|
-
<span class="tsd-kind-property">$dirty</span
|
|
1492
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1493
|
-
<span class="tsd-signature-type">boolean</span>
|
|
1494
|
-
</div>
|
|
1495
|
-
<div class="tsd-comment tsd-typography">
|
|
1496
|
-
<p>True if user has already interacted with the control.</p>
|
|
1497
|
-
</div>
|
|
1498
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1499
|
-
</section>
|
|
1500
|
-
<section class="tsd-panel tsd-member">
|
|
1501
|
-
<h3 class="tsd-anchor-link" id="error">
|
|
1502
|
-
<span>$error</span
|
|
1503
|
-
><a href="#error" aria-label="Permalink" class="tsd-anchor-icon"
|
|
1504
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1505
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1506
|
-
></a>
|
|
1507
|
-
</h3>
|
|
1508
|
-
<div class="tsd-signature">
|
|
1509
|
-
<span class="tsd-kind-property">$error</span
|
|
1510
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1511
|
-
<span class="tsd-signature-symbol">{}</span>
|
|
1512
|
-
</div>
|
|
1513
|
-
<div class="tsd-comment tsd-typography">
|
|
1514
|
-
<p>An object hash with all failing validator ids as keys.</p>
|
|
1515
|
-
</div>
|
|
1516
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1517
|
-
</section>
|
|
1518
|
-
<section class="tsd-panel tsd-member">
|
|
1519
|
-
<h3 class="tsd-anchor-link" id="formatters">
|
|
1520
|
-
<span>$formatters</span
|
|
1521
|
-
><a
|
|
1522
|
-
href="#formatters"
|
|
1523
|
-
aria-label="Permalink"
|
|
1524
|
-
class="tsd-anchor-icon"
|
|
1525
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1526
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1527
|
-
></a>
|
|
1528
|
-
</h3>
|
|
1529
|
-
<div class="tsd-signature">
|
|
1530
|
-
<span class="tsd-kind-property">$formatters</span
|
|
1531
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1532
|
-
<span class="tsd-signature-type">any</span
|
|
1533
|
-
><span class="tsd-signature-symbol">[]</span>
|
|
1534
|
-
</div>
|
|
1535
|
-
<div class="tsd-comment tsd-typography">
|
|
1536
|
-
<p>
|
|
1537
|
-
Array of functions to execute, as a pipeline, whenever the
|
|
1538
|
-
bound ngModel expression changes programmatically. The
|
|
1539
|
-
<code>$formatters</code> are not called when the value of the
|
|
1540
|
-
control is changed by user interaction.
|
|
1541
|
-
</p>
|
|
1542
|
-
</div>
|
|
1543
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1544
|
-
</section>
|
|
1545
|
-
<section class="tsd-panel tsd-member">
|
|
1546
|
-
<h3 class="tsd-anchor-link" id="invalid">
|
|
1547
|
-
<span>$invalid</span
|
|
1548
|
-
><a
|
|
1549
|
-
href="#invalid"
|
|
1550
|
-
aria-label="Permalink"
|
|
1551
|
-
class="tsd-anchor-icon"
|
|
1552
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1553
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1554
|
-
></a>
|
|
1555
|
-
</h3>
|
|
1556
|
-
<div class="tsd-signature">
|
|
1557
|
-
<span class="tsd-kind-property">$invalid</span
|
|
1558
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1559
|
-
<span class="tsd-signature-type">boolean</span>
|
|
1560
|
-
</div>
|
|
1561
|
-
<div class="tsd-comment tsd-typography">
|
|
1562
|
-
<p>True if at least one error on the control.</p>
|
|
1563
|
-
</div>
|
|
1564
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1565
|
-
</section>
|
|
1566
|
-
<section class="tsd-panel tsd-member">
|
|
1567
|
-
<h3 class="tsd-anchor-link" id="modelvalue">
|
|
1568
|
-
<span>$model<wbr />Value</span
|
|
1569
|
-
><a
|
|
1570
|
-
href="#modelvalue"
|
|
1571
|
-
aria-label="Permalink"
|
|
1572
|
-
class="tsd-anchor-icon"
|
|
1573
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1574
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1575
|
-
></a>
|
|
1576
|
-
</h3>
|
|
1577
|
-
<div class="tsd-signature">
|
|
1578
|
-
<span class="tsd-kind-property">$modelValue</span
|
|
1579
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1580
|
-
<span class="tsd-signature-type">any</span>
|
|
1581
|
-
</div>
|
|
1582
|
-
<div class="tsd-comment tsd-typography">
|
|
1583
|
-
<p>The value in the model that the control is bound to.</p>
|
|
1584
|
-
</div>
|
|
1585
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1586
|
-
</section>
|
|
1587
|
-
<section class="tsd-panel tsd-member">
|
|
1588
|
-
<h3 class="tsd-anchor-link" id="name">
|
|
1589
|
-
<span>$name</span
|
|
1590
|
-
><a href="#name" aria-label="Permalink" class="tsd-anchor-icon"
|
|
1591
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1592
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1593
|
-
></a>
|
|
1594
|
-
</h3>
|
|
1595
|
-
<div class="tsd-signature">
|
|
1596
|
-
<span class="tsd-kind-property">$name</span
|
|
1597
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1598
|
-
<span class="tsd-signature-type">any</span>
|
|
1599
|
-
</div>
|
|
1600
|
-
<div class="tsd-comment tsd-typography">
|
|
1601
|
-
<p>The name attribute of the control.</p>
|
|
1602
|
-
</div>
|
|
1603
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1604
|
-
</section>
|
|
1605
|
-
<section class="tsd-panel tsd-member">
|
|
1606
|
-
<h3 class="tsd-anchor-link" id="options">
|
|
1607
|
-
<span>$options</span
|
|
1608
|
-
><a
|
|
1609
|
-
href="#options"
|
|
1610
|
-
aria-label="Permalink"
|
|
1611
|
-
class="tsd-anchor-icon"
|
|
1612
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1613
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1614
|
-
></a>
|
|
1615
|
-
</h3>
|
|
1616
|
-
<div class="tsd-signature">
|
|
1617
|
-
<span class="tsd-kind-property">$options</span
|
|
1618
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1619
|
-
<span class="tsd-signature-type">ModelOptions</span>
|
|
1620
|
-
</div>
|
|
1621
|
-
</section>
|
|
1622
|
-
<section class="tsd-panel tsd-member">
|
|
1623
|
-
<h3 class="tsd-anchor-link" id="parsers">
|
|
1624
|
-
<span>$parsers</span
|
|
1625
|
-
><a
|
|
1626
|
-
href="#parsers"
|
|
1627
|
-
aria-label="Permalink"
|
|
1628
|
-
class="tsd-anchor-icon"
|
|
1629
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1630
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1631
|
-
></a>
|
|
1632
|
-
</h3>
|
|
1633
|
-
<div class="tsd-signature">
|
|
1634
|
-
<span class="tsd-kind-property">$parsers</span
|
|
1635
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1636
|
-
<span class="tsd-signature-type">any</span
|
|
1637
|
-
><span class="tsd-signature-symbol">[]</span>
|
|
1638
|
-
</div>
|
|
1639
|
-
<div class="tsd-comment tsd-typography">
|
|
1640
|
-
<p>
|
|
1641
|
-
Array of functions to execute, as a pipeline, whenever the
|
|
1642
|
-
control updates the ngModelController with a new
|
|
1643
|
-
<code>$viewValue</code> from the DOM, usually via user input.
|
|
1644
|
-
</p>
|
|
1645
|
-
</div>
|
|
1646
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1647
|
-
</section>
|
|
1648
|
-
<section class="tsd-panel tsd-member">
|
|
1649
|
-
<h3 class="tsd-anchor-link" id="pending">
|
|
1650
|
-
<span>$pending</span
|
|
1651
|
-
><a
|
|
1652
|
-
href="#pending"
|
|
1653
|
-
aria-label="Permalink"
|
|
1654
|
-
class="tsd-anchor-icon"
|
|
1655
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1656
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1657
|
-
></a>
|
|
1658
|
-
</h3>
|
|
1659
|
-
<div class="tsd-signature">
|
|
1660
|
-
<span class="tsd-kind-property">$pending</span
|
|
1661
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1662
|
-
<span class="tsd-signature-type">any</span>
|
|
1663
|
-
</div>
|
|
1664
|
-
<div class="tsd-comment tsd-typography">
|
|
1665
|
-
<p>An object hash with all pending validator ids as keys.</p>
|
|
1666
|
-
</div>
|
|
1667
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1668
|
-
</section>
|
|
1669
|
-
<section class="tsd-panel tsd-member">
|
|
1670
|
-
<h3 class="tsd-anchor-link" id="pristine">
|
|
1671
|
-
<span>$pristine</span
|
|
1672
|
-
><a
|
|
1673
|
-
href="#pristine"
|
|
1674
|
-
aria-label="Permalink"
|
|
1675
|
-
class="tsd-anchor-icon"
|
|
1676
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1677
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1678
|
-
></a>
|
|
1679
|
-
</h3>
|
|
1680
|
-
<div class="tsd-signature">
|
|
1681
|
-
<span class="tsd-kind-property">$pristine</span
|
|
1682
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1683
|
-
<span class="tsd-signature-type">boolean</span>
|
|
1684
|
-
</div>
|
|
1685
|
-
<div class="tsd-comment tsd-typography">
|
|
1686
|
-
<p>True if user has not interacted with the control yet.</p>
|
|
1687
|
-
</div>
|
|
1688
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1689
|
-
</section>
|
|
1690
|
-
<section class="tsd-panel tsd-member">
|
|
1691
|
-
<h3 class="tsd-anchor-link" id="touched">
|
|
1692
|
-
<span>$touched</span
|
|
1693
|
-
><a
|
|
1694
|
-
href="#touched"
|
|
1695
|
-
aria-label="Permalink"
|
|
1696
|
-
class="tsd-anchor-icon"
|
|
1697
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1698
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1699
|
-
></a>
|
|
1700
|
-
</h3>
|
|
1701
|
-
<div class="tsd-signature">
|
|
1702
|
-
<span class="tsd-kind-property">$touched</span
|
|
1703
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1704
|
-
<span class="tsd-signature-type">boolean</span>
|
|
1705
|
-
</div>
|
|
1706
|
-
<div class="tsd-comment tsd-typography">
|
|
1707
|
-
<p>True if control has lost focus.</p>
|
|
1708
|
-
</div>
|
|
1709
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1710
|
-
</section>
|
|
1711
|
-
<section class="tsd-panel tsd-member">
|
|
1712
|
-
<h3 class="tsd-anchor-link" id="untouched">
|
|
1713
|
-
<span>$untouched</span
|
|
1714
|
-
><a
|
|
1715
|
-
href="#untouched"
|
|
1716
|
-
aria-label="Permalink"
|
|
1717
|
-
class="tsd-anchor-icon"
|
|
1718
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1719
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1720
|
-
></a>
|
|
1721
|
-
</h3>
|
|
1722
|
-
<div class="tsd-signature">
|
|
1723
|
-
<span class="tsd-kind-property">$untouched</span
|
|
1724
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1725
|
-
<span class="tsd-signature-type">boolean</span>
|
|
1726
|
-
</div>
|
|
1727
|
-
<div class="tsd-comment tsd-typography">
|
|
1728
|
-
<p>True if control has not lost focus yet.</p>
|
|
1729
|
-
</div>
|
|
1730
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1731
|
-
</section>
|
|
1732
|
-
<section class="tsd-panel tsd-member">
|
|
1733
|
-
<h3 class="tsd-anchor-link" id="valid">
|
|
1734
|
-
<span>$valid</span
|
|
1735
|
-
><a href="#valid" aria-label="Permalink" class="tsd-anchor-icon"
|
|
1736
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1737
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1738
|
-
></a>
|
|
1739
|
-
</h3>
|
|
1740
|
-
<div class="tsd-signature">
|
|
1741
|
-
<span class="tsd-kind-property">$valid</span
|
|
1742
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1743
|
-
<span class="tsd-signature-type">boolean</span>
|
|
1744
|
-
</div>
|
|
1745
|
-
<div class="tsd-comment tsd-typography">
|
|
1746
|
-
<p>True if there is no error.</p>
|
|
1747
|
-
</div>
|
|
1748
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1749
|
-
</section>
|
|
1750
|
-
<section class="tsd-panel tsd-member">
|
|
1751
|
-
<h3 class="tsd-anchor-link" id="validators">
|
|
1752
|
-
<span>$validators</span
|
|
1753
|
-
><a
|
|
1754
|
-
href="#validators"
|
|
1755
|
-
aria-label="Permalink"
|
|
1756
|
-
class="tsd-anchor-icon"
|
|
1757
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1758
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1759
|
-
></a>
|
|
1760
|
-
</h3>
|
|
1761
|
-
<div class="tsd-signature">
|
|
1762
|
-
<span class="tsd-kind-property">$validators</span
|
|
1763
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1764
|
-
<span class="tsd-signature-symbol">{}</span>
|
|
1765
|
-
</div>
|
|
1766
|
-
<div class="tsd-comment tsd-typography">
|
|
1767
|
-
<p>
|
|
1768
|
-
A collection of validators that are applied whenever the model
|
|
1769
|
-
value changes. The key value within the object refers to the
|
|
1770
|
-
name of the validator while the function refers to the
|
|
1771
|
-
validation operation. The validation operation is provided
|
|
1772
|
-
with the model value as an argument and must return a true or
|
|
1773
|
-
false value depending on the response of that validation.
|
|
1774
|
-
</p>
|
|
1775
|
-
</div>
|
|
1776
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1777
|
-
</section>
|
|
1778
|
-
<section class="tsd-panel tsd-member">
|
|
1779
|
-
<h3 class="tsd-anchor-link" id="viewchangelisteners">
|
|
1780
|
-
<span>$view<wbr />Change<wbr />Listeners</span
|
|
1781
|
-
><a
|
|
1782
|
-
href="#viewchangelisteners"
|
|
1783
|
-
aria-label="Permalink"
|
|
1784
|
-
class="tsd-anchor-icon"
|
|
1785
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1786
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1787
|
-
></a>
|
|
1788
|
-
</h3>
|
|
1789
|
-
<div class="tsd-signature">
|
|
1790
|
-
<span class="tsd-kind-property">$viewChangeListeners</span
|
|
1791
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1792
|
-
<span class="tsd-signature-type">any</span
|
|
1793
|
-
><span class="tsd-signature-symbol">[]</span>
|
|
1794
|
-
</div>
|
|
1795
|
-
<div class="tsd-comment tsd-typography">
|
|
1796
|
-
<p>
|
|
1797
|
-
Array of functions to execute whenever a change to
|
|
1798
|
-
ngModel.NgModelController#$viewValue
|
|
1799
|
-
<code>$viewValue</code> has caused a change to
|
|
1800
|
-
ngModel.NgModelController#$modelValue
|
|
1801
|
-
<code>$modelValue</code>. It is called with no arguments, and
|
|
1802
|
-
its return value is ignored. This can be used in place of
|
|
1803
|
-
additional $watches against the model value.
|
|
1804
|
-
</p>
|
|
1805
|
-
</div>
|
|
1806
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1807
|
-
</section>
|
|
1808
|
-
<section class="tsd-panel tsd-member">
|
|
1809
|
-
<h3 class="tsd-anchor-link" id="viewvalue">
|
|
1810
|
-
<span>$view<wbr />Value</span
|
|
1811
|
-
><a
|
|
1812
|
-
href="#viewvalue"
|
|
1813
|
-
aria-label="Permalink"
|
|
1814
|
-
class="tsd-anchor-icon"
|
|
1815
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1816
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1817
|
-
></a>
|
|
1818
|
-
</h3>
|
|
1819
|
-
<div class="tsd-signature">
|
|
1820
|
-
<span class="tsd-kind-property">$viewValue</span
|
|
1821
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1822
|
-
<span class="tsd-signature-type">any</span>
|
|
1823
|
-
</div>
|
|
1824
|
-
<div class="tsd-comment tsd-typography">
|
|
1825
|
-
<p>The actual value from the control's view.</p>
|
|
1826
|
-
</div>
|
|
1827
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1828
|
-
</section>
|
|
1829
|
-
<section class="tsd-panel tsd-member">
|
|
1830
|
-
<h3 class="tsd-anchor-link" id="inject">
|
|
1831
|
-
<code class="tsd-tag">Static</code><span>$inject</span
|
|
1832
|
-
><a
|
|
1833
|
-
href="#inject"
|
|
1834
|
-
aria-label="Permalink"
|
|
1835
|
-
class="tsd-anchor-icon"
|
|
1836
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1837
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1838
|
-
></a>
|
|
1839
|
-
</h3>
|
|
1840
|
-
<div class="tsd-signature">
|
|
1841
|
-
<span class="tsd-kind-property">$inject</span
|
|
1842
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1843
|
-
<span class="tsd-signature-type">string</span
|
|
1844
|
-
><span class="tsd-signature-symbol">[]</span
|
|
1845
|
-
><span class="tsd-signature-symbol"> = ...</span>
|
|
1846
|
-
</div>
|
|
1847
|
-
</section>
|
|
1848
|
-
<section class="tsd-panel tsd-member">
|
|
1849
|
-
<h3 class="tsd-anchor-link" id="nonscope">
|
|
1850
|
-
<code class="tsd-tag">Static</code><span>$nonscope</span
|
|
1851
|
-
><a
|
|
1852
|
-
href="#nonscope"
|
|
1853
|
-
aria-label="Permalink"
|
|
1854
|
-
class="tsd-anchor-icon"
|
|
1855
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1856
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1857
|
-
></a>
|
|
1858
|
-
</h3>
|
|
1859
|
-
<div class="tsd-signature">
|
|
1860
|
-
<span class="tsd-kind-property">$nonscope</span
|
|
1861
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1862
|
-
<span class="tsd-signature-type">boolean</span
|
|
1863
|
-
><span class="tsd-signature-symbol"> = true</span>
|
|
1864
|
-
</div>
|
|
1865
|
-
</section>
|
|
1866
|
-
</section>
|
|
1867
|
-
</details>
|
|
1868
|
-
<details class="tsd-panel-group tsd-member-group tsd-accordion" open>
|
|
1869
|
-
<summary class="tsd-accordion-summary" data-key="section-Methods">
|
|
1870
|
-
<svg
|
|
1871
|
-
width="20"
|
|
1872
|
-
height="20"
|
|
1873
|
-
viewBox="0 0 24 24"
|
|
1874
|
-
fill="none"
|
|
1875
|
-
aria-hidden="true"
|
|
1876
|
-
>
|
|
1877
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
1878
|
-
</svg>
|
|
1879
|
-
<h2>Methods</h2>
|
|
1880
|
-
</summary>
|
|
1881
|
-
<section>
|
|
1882
|
-
<section class="tsd-panel tsd-member">
|
|
1883
|
-
<h3 class="tsd-anchor-link" id="debounceviewvaluecommit">
|
|
1884
|
-
<span>$$debounce<wbr />View<wbr />Value<wbr />Commit</span
|
|
1885
|
-
><a
|
|
1886
|
-
href="#debounceviewvaluecommit"
|
|
1887
|
-
aria-label="Permalink"
|
|
1888
|
-
class="tsd-anchor-icon"
|
|
1889
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1890
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1891
|
-
></a>
|
|
1892
|
-
</h3>
|
|
1893
|
-
<ul class="tsd-signatures">
|
|
1894
|
-
<li class="">
|
|
1895
|
-
<div
|
|
1896
|
-
class="tsd-signature tsd-anchor-link"
|
|
1897
|
-
id="debounceviewvaluecommit-1"
|
|
1898
|
-
>
|
|
1899
|
-
<span class="tsd-kind-call-signature"
|
|
1900
|
-
>$$debounceViewValueCommit</span
|
|
1901
|
-
><span class="tsd-signature-symbol">(</span
|
|
1902
|
-
><span class="tsd-kind-parameter">trigger</span
|
|
1903
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1904
|
-
<span class="tsd-signature-type">any</span
|
|
1905
|
-
><span class="tsd-signature-symbol">)</span
|
|
1906
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1907
|
-
<span class="tsd-signature-type">void</span
|
|
1908
|
-
><a
|
|
1909
|
-
href="#debounceviewvaluecommit-1"
|
|
1910
|
-
aria-label="Permalink"
|
|
1911
|
-
class="tsd-anchor-icon"
|
|
1912
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1913
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1914
|
-
></a>
|
|
1915
|
-
</div>
|
|
1916
|
-
<div class="tsd-description">
|
|
1917
|
-
<div class="tsd-parameters">
|
|
1918
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1919
|
-
<ul class="tsd-parameter-list">
|
|
1920
|
-
<li>
|
|
1921
|
-
<span
|
|
1922
|
-
><span class="tsd-kind-parameter">trigger</span>:
|
|
1923
|
-
<span class="tsd-signature-type">any</span></span
|
|
1924
|
-
>
|
|
1925
|
-
</li>
|
|
1926
|
-
</ul>
|
|
1927
|
-
</div>
|
|
1928
|
-
<h4 class="tsd-returns-title">
|
|
1929
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
1930
|
-
</h4>
|
|
1931
|
-
</div>
|
|
1932
|
-
</li>
|
|
1933
|
-
</ul>
|
|
1934
|
-
</section>
|
|
1935
|
-
<section class="tsd-panel tsd-member">
|
|
1936
|
-
<h3 class="tsd-anchor-link" id="format">
|
|
1937
|
-
<span>$$format</span
|
|
1938
|
-
><a
|
|
1939
|
-
href="#format"
|
|
1940
|
-
aria-label="Permalink"
|
|
1941
|
-
class="tsd-anchor-icon"
|
|
1942
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1943
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1944
|
-
></a>
|
|
1945
|
-
</h3>
|
|
1946
|
-
<ul class="tsd-signatures">
|
|
1947
|
-
<li class="">
|
|
1948
|
-
<div class="tsd-signature tsd-anchor-link" id="format-1">
|
|
1949
|
-
<span class="tsd-kind-call-signature">$$format</span
|
|
1950
|
-
><span class="tsd-signature-symbol">()</span
|
|
1951
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1952
|
-
<span class="tsd-signature-type">any</span
|
|
1953
|
-
><a
|
|
1954
|
-
href="#format-1"
|
|
1955
|
-
aria-label="Permalink"
|
|
1956
|
-
class="tsd-anchor-icon"
|
|
1957
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1958
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1959
|
-
></a>
|
|
1960
|
-
</div>
|
|
1961
|
-
<div class="tsd-description">
|
|
1962
|
-
<div class="tsd-comment tsd-typography">
|
|
1963
|
-
<p>
|
|
1964
|
-
This method is called internally to run the $formatters
|
|
1965
|
-
on the $modelValue
|
|
1966
|
-
</p>
|
|
1967
|
-
</div>
|
|
1968
|
-
<h4 class="tsd-returns-title">
|
|
1969
|
-
Returns <span class="tsd-signature-type">any</span>
|
|
1970
|
-
</h4>
|
|
1971
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1972
|
-
</div>
|
|
1973
|
-
</li>
|
|
1974
|
-
</ul>
|
|
1975
|
-
</section>
|
|
1976
|
-
<section class="tsd-panel tsd-member">
|
|
1977
|
-
<h3 class="tsd-anchor-link" id="initgettersetters">
|
|
1978
|
-
<span>$$init<wbr />Getter<wbr />Setters</span
|
|
1979
|
-
><a
|
|
1980
|
-
href="#initgettersetters"
|
|
1981
|
-
aria-label="Permalink"
|
|
1982
|
-
class="tsd-anchor-icon"
|
|
1983
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1984
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1985
|
-
></a>
|
|
1986
|
-
</h3>
|
|
1987
|
-
<ul class="tsd-signatures">
|
|
1988
|
-
<li class="">
|
|
1989
|
-
<div
|
|
1990
|
-
class="tsd-signature tsd-anchor-link"
|
|
1991
|
-
id="initgettersetters-1"
|
|
1992
|
-
>
|
|
1993
|
-
<span class="tsd-kind-call-signature"
|
|
1994
|
-
>$$initGetterSetters</span
|
|
1995
|
-
><span class="tsd-signature-symbol">()</span
|
|
1996
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1997
|
-
<span class="tsd-signature-type">void</span
|
|
1998
|
-
><a
|
|
1999
|
-
href="#initgettersetters-1"
|
|
2000
|
-
aria-label="Permalink"
|
|
2001
|
-
class="tsd-anchor-icon"
|
|
2002
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2003
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2004
|
-
></a>
|
|
2005
|
-
</div>
|
|
2006
|
-
<div class="tsd-description">
|
|
2007
|
-
<h4 class="tsd-returns-title">
|
|
2008
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
2009
|
-
</h4>
|
|
2010
|
-
</div>
|
|
2011
|
-
</li>
|
|
2012
|
-
</ul>
|
|
2013
|
-
</section>
|
|
2014
|
-
<section class="tsd-panel tsd-member">
|
|
2015
|
-
<h3 class="tsd-anchor-link" id="parseandvalidate">
|
|
2016
|
-
<span>$$parse<wbr />And<wbr />Validate</span
|
|
2017
|
-
><a
|
|
2018
|
-
href="#parseandvalidate"
|
|
2019
|
-
aria-label="Permalink"
|
|
2020
|
-
class="tsd-anchor-icon"
|
|
2021
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2022
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2023
|
-
></a>
|
|
2024
|
-
</h3>
|
|
2025
|
-
<ul class="tsd-signatures">
|
|
2026
|
-
<li class="">
|
|
2027
|
-
<div
|
|
2028
|
-
class="tsd-signature tsd-anchor-link"
|
|
2029
|
-
id="parseandvalidate-1"
|
|
2030
|
-
>
|
|
2031
|
-
<span class="tsd-kind-call-signature"
|
|
2032
|
-
>$$parseAndValidate</span
|
|
2033
|
-
><span class="tsd-signature-symbol">()</span
|
|
2034
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2035
|
-
<span class="tsd-signature-type">void</span
|
|
2036
|
-
><a
|
|
2037
|
-
href="#parseandvalidate-1"
|
|
2038
|
-
aria-label="Permalink"
|
|
2039
|
-
class="tsd-anchor-icon"
|
|
2040
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2041
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2042
|
-
></a>
|
|
2043
|
-
</div>
|
|
2044
|
-
<div class="tsd-description">
|
|
2045
|
-
<h4 class="tsd-returns-title">
|
|
2046
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
2047
|
-
</h4>
|
|
2048
|
-
</div>
|
|
2049
|
-
</li>
|
|
2050
|
-
</ul>
|
|
2051
|
-
</section>
|
|
2052
|
-
<section class="tsd-panel tsd-member">
|
|
2053
|
-
<h3 class="tsd-anchor-link" id="removealleventlisteners">
|
|
2054
|
-
<span>$$remove<wbr />All<wbr />Event<wbr />Listeners</span
|
|
2055
|
-
><a
|
|
2056
|
-
href="#removealleventlisteners"
|
|
2057
|
-
aria-label="Permalink"
|
|
2058
|
-
class="tsd-anchor-icon"
|
|
2059
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2060
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2061
|
-
></a>
|
|
2062
|
-
</h3>
|
|
2063
|
-
<ul class="tsd-signatures">
|
|
2064
|
-
<li class="">
|
|
2065
|
-
<div
|
|
2066
|
-
class="tsd-signature tsd-anchor-link"
|
|
2067
|
-
id="removealleventlisteners-1"
|
|
2068
|
-
>
|
|
2069
|
-
<span class="tsd-kind-call-signature"
|
|
2070
|
-
>$$removeAllEventListeners</span
|
|
2071
|
-
><span class="tsd-signature-symbol">()</span
|
|
2072
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2073
|
-
<span class="tsd-signature-type">void</span
|
|
2074
|
-
><a
|
|
2075
|
-
href="#removealleventlisteners-1"
|
|
2076
|
-
aria-label="Permalink"
|
|
2077
|
-
class="tsd-anchor-icon"
|
|
2078
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2079
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2080
|
-
></a>
|
|
2081
|
-
</div>
|
|
2082
|
-
<div class="tsd-description">
|
|
2083
|
-
<h4 class="tsd-returns-title">
|
|
2084
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
2085
|
-
</h4>
|
|
2086
|
-
</div>
|
|
2087
|
-
</li>
|
|
2088
|
-
</ul>
|
|
2089
|
-
</section>
|
|
2090
|
-
<section class="tsd-panel tsd-member">
|
|
2091
|
-
<h3 class="tsd-anchor-link" id="runvalidators">
|
|
2092
|
-
<span>$$run<wbr />Validators</span
|
|
2093
|
-
><a
|
|
2094
|
-
href="#runvalidators"
|
|
2095
|
-
aria-label="Permalink"
|
|
2096
|
-
class="tsd-anchor-icon"
|
|
2097
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2098
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2099
|
-
></a>
|
|
2100
|
-
</h3>
|
|
2101
|
-
<ul class="tsd-signatures">
|
|
2102
|
-
<li class="">
|
|
2103
|
-
<div
|
|
2104
|
-
class="tsd-signature tsd-anchor-link"
|
|
2105
|
-
id="runvalidators-1"
|
|
2106
|
-
>
|
|
2107
|
-
<span class="tsd-kind-call-signature">$$runValidators</span
|
|
2108
|
-
><span class="tsd-signature-symbol">(</span
|
|
2109
|
-
><span class="tsd-kind-parameter">modelValue</span
|
|
2110
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2111
|
-
<span class="tsd-signature-type">any</span
|
|
2112
|
-
><span class="tsd-signature-symbol">,</span>
|
|
2113
|
-
<span class="tsd-kind-parameter">viewValue</span
|
|
2114
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2115
|
-
<span class="tsd-signature-type">any</span
|
|
2116
|
-
><span class="tsd-signature-symbol">,</span>
|
|
2117
|
-
<span class="tsd-kind-parameter">doneCallback</span
|
|
2118
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2119
|
-
<span class="tsd-signature-type">any</span
|
|
2120
|
-
><span class="tsd-signature-symbol">)</span
|
|
2121
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2122
|
-
<span class="tsd-signature-type">void</span
|
|
2123
|
-
><a
|
|
2124
|
-
href="#runvalidators-1"
|
|
2125
|
-
aria-label="Permalink"
|
|
2126
|
-
class="tsd-anchor-icon"
|
|
2127
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2128
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2129
|
-
></a>
|
|
2130
|
-
</div>
|
|
2131
|
-
<div class="tsd-description">
|
|
2132
|
-
<div class="tsd-parameters">
|
|
2133
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2134
|
-
<ul class="tsd-parameter-list">
|
|
2135
|
-
<li>
|
|
2136
|
-
<span
|
|
2137
|
-
><span class="tsd-kind-parameter">modelValue</span>:
|
|
2138
|
-
<span class="tsd-signature-type">any</span></span
|
|
2139
|
-
>
|
|
2140
|
-
</li>
|
|
2141
|
-
<li>
|
|
2142
|
-
<span
|
|
2143
|
-
><span class="tsd-kind-parameter">viewValue</span>:
|
|
2144
|
-
<span class="tsd-signature-type">any</span></span
|
|
2145
|
-
>
|
|
2146
|
-
</li>
|
|
2147
|
-
<li>
|
|
2148
|
-
<span
|
|
2149
|
-
><span class="tsd-kind-parameter">doneCallback</span
|
|
2150
|
-
>: <span class="tsd-signature-type">any</span></span
|
|
2151
|
-
>
|
|
2152
|
-
</li>
|
|
2153
|
-
</ul>
|
|
2154
|
-
</div>
|
|
2155
|
-
<h4 class="tsd-returns-title">
|
|
2156
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
2157
|
-
</h4>
|
|
2158
|
-
</div>
|
|
2159
|
-
</li>
|
|
2160
|
-
</ul>
|
|
2161
|
-
</section>
|
|
2162
|
-
<section class="tsd-panel tsd-member">
|
|
2163
|
-
<h3 class="tsd-anchor-link" id="setmodelvalue">
|
|
2164
|
-
<span>$$set<wbr />Model<wbr />Value</span
|
|
2165
|
-
><a
|
|
2166
|
-
href="#setmodelvalue"
|
|
2167
|
-
aria-label="Permalink"
|
|
2168
|
-
class="tsd-anchor-icon"
|
|
2169
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2170
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2171
|
-
></a>
|
|
2172
|
-
</h3>
|
|
2173
|
-
<ul class="tsd-signatures">
|
|
2174
|
-
<li class="">
|
|
2175
|
-
<div
|
|
2176
|
-
class="tsd-signature tsd-anchor-link"
|
|
2177
|
-
id="setmodelvalue-1"
|
|
2178
|
-
>
|
|
2179
|
-
<span class="tsd-kind-call-signature">$$setModelValue</span
|
|
2180
|
-
><span class="tsd-signature-symbol">(</span
|
|
2181
|
-
><span class="tsd-kind-parameter">modelValue</span
|
|
2182
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2183
|
-
<span class="tsd-signature-type">any</span
|
|
2184
|
-
><span class="tsd-signature-symbol">)</span
|
|
2185
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2186
|
-
<span class="tsd-signature-type">void</span
|
|
2187
|
-
><a
|
|
2188
|
-
href="#setmodelvalue-1"
|
|
2189
|
-
aria-label="Permalink"
|
|
2190
|
-
class="tsd-anchor-icon"
|
|
2191
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2192
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2193
|
-
></a>
|
|
2194
|
-
</div>
|
|
2195
|
-
<div class="tsd-description">
|
|
2196
|
-
<div class="tsd-comment tsd-typography">
|
|
2197
|
-
<p>
|
|
2198
|
-
This method is called internally when the bound scope
|
|
2199
|
-
value changes.
|
|
2200
|
-
</p>
|
|
2201
|
-
</div>
|
|
2202
|
-
<div class="tsd-parameters">
|
|
2203
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2204
|
-
<ul class="tsd-parameter-list">
|
|
2205
|
-
<li>
|
|
2206
|
-
<span
|
|
2207
|
-
><span class="tsd-kind-parameter">modelValue</span>:
|
|
2208
|
-
<span class="tsd-signature-type">any</span></span
|
|
2209
|
-
>
|
|
2210
|
-
</li>
|
|
2211
|
-
</ul>
|
|
2212
|
-
</div>
|
|
2213
|
-
<h4 class="tsd-returns-title">
|
|
2214
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
2215
|
-
</h4>
|
|
2216
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2217
|
-
</div>
|
|
2218
|
-
</li>
|
|
2219
|
-
</ul>
|
|
2220
|
-
</section>
|
|
2221
|
-
<section class="tsd-panel tsd-member">
|
|
2222
|
-
<h3 class="tsd-anchor-link" id="setupdateonevents">
|
|
2223
|
-
<span>$$set<wbr />Update<wbr />On<wbr />Events</span
|
|
2224
|
-
><a
|
|
2225
|
-
href="#setupdateonevents"
|
|
2226
|
-
aria-label="Permalink"
|
|
2227
|
-
class="tsd-anchor-icon"
|
|
2228
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2229
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2230
|
-
></a>
|
|
2231
|
-
</h3>
|
|
2232
|
-
<ul class="tsd-signatures">
|
|
2233
|
-
<li class="">
|
|
2234
|
-
<div
|
|
2235
|
-
class="tsd-signature tsd-anchor-link"
|
|
2236
|
-
id="setupdateonevents-1"
|
|
2237
|
-
>
|
|
2238
|
-
<span class="tsd-kind-call-signature"
|
|
2239
|
-
>$$setUpdateOnEvents</span
|
|
2240
|
-
><span class="tsd-signature-symbol">()</span
|
|
2241
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2242
|
-
<span class="tsd-signature-type">void</span
|
|
2243
|
-
><a
|
|
2244
|
-
href="#setupdateonevents-1"
|
|
2245
|
-
aria-label="Permalink"
|
|
2246
|
-
class="tsd-anchor-icon"
|
|
2247
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2248
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2249
|
-
></a>
|
|
2250
|
-
</div>
|
|
2251
|
-
<div class="tsd-description">
|
|
2252
|
-
<h4 class="tsd-returns-title">
|
|
2253
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
2254
|
-
</h4>
|
|
2255
|
-
</div>
|
|
2256
|
-
</li>
|
|
2257
|
-
</ul>
|
|
2258
|
-
</section>
|
|
2259
|
-
<section class="tsd-panel tsd-member">
|
|
2260
|
-
<h3 class="tsd-anchor-link" id="updateemptyclasses">
|
|
2261
|
-
<span>$$update<wbr />Empty<wbr />Classes</span
|
|
2262
|
-
><a
|
|
2263
|
-
href="#updateemptyclasses"
|
|
2264
|
-
aria-label="Permalink"
|
|
2265
|
-
class="tsd-anchor-icon"
|
|
2266
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2267
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2268
|
-
></a>
|
|
2269
|
-
</h3>
|
|
2270
|
-
<ul class="tsd-signatures">
|
|
2271
|
-
<li class="">
|
|
2272
|
-
<div
|
|
2273
|
-
class="tsd-signature tsd-anchor-link"
|
|
2274
|
-
id="updateemptyclasses-1"
|
|
2275
|
-
>
|
|
2276
|
-
<span class="tsd-kind-call-signature"
|
|
2277
|
-
>$$updateEmptyClasses</span
|
|
2278
|
-
><span class="tsd-signature-symbol">(</span
|
|
2279
|
-
><span class="tsd-kind-parameter">value</span
|
|
2280
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2281
|
-
<span class="tsd-signature-type">any</span
|
|
2282
|
-
><span class="tsd-signature-symbol">)</span
|
|
2283
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2284
|
-
<span class="tsd-signature-type">void</span
|
|
2285
|
-
><a
|
|
2286
|
-
href="#updateemptyclasses-1"
|
|
2287
|
-
aria-label="Permalink"
|
|
2288
|
-
class="tsd-anchor-icon"
|
|
2289
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2290
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2291
|
-
></a>
|
|
2292
|
-
</div>
|
|
2293
|
-
<div class="tsd-description">
|
|
2294
|
-
<div class="tsd-parameters">
|
|
2295
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2296
|
-
<ul class="tsd-parameter-list">
|
|
2297
|
-
<li>
|
|
2298
|
-
<span
|
|
2299
|
-
><span class="tsd-kind-parameter">value</span>:
|
|
2300
|
-
<span class="tsd-signature-type">any</span></span
|
|
2301
|
-
>
|
|
2302
|
-
</li>
|
|
2303
|
-
</ul>
|
|
2304
|
-
</div>
|
|
2305
|
-
<h4 class="tsd-returns-title">
|
|
2306
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
2307
|
-
</h4>
|
|
2308
|
-
</div>
|
|
2309
|
-
</li>
|
|
2310
|
-
</ul>
|
|
2311
|
-
</section>
|
|
2312
|
-
<section class="tsd-panel tsd-member">
|
|
2313
|
-
<h3 class="tsd-anchor-link" id="updateeventhandler">
|
|
2314
|
-
<span>$$update<wbr />Event<wbr />Handler</span
|
|
2315
|
-
><a
|
|
2316
|
-
href="#updateeventhandler"
|
|
2317
|
-
aria-label="Permalink"
|
|
2318
|
-
class="tsd-anchor-icon"
|
|
2319
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2320
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2321
|
-
></a>
|
|
2322
|
-
</h3>
|
|
2323
|
-
<ul class="tsd-signatures">
|
|
2324
|
-
<li class="">
|
|
2325
|
-
<div
|
|
2326
|
-
class="tsd-signature tsd-anchor-link"
|
|
2327
|
-
id="updateeventhandler-1"
|
|
2328
|
-
>
|
|
2329
|
-
<span class="tsd-kind-call-signature"
|
|
2330
|
-
>$$updateEventHandler</span
|
|
2331
|
-
><span class="tsd-signature-symbol">(</span
|
|
2332
|
-
><span class="tsd-kind-parameter">ev</span
|
|
2333
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2334
|
-
<span class="tsd-signature-type">any</span
|
|
2335
|
-
><span class="tsd-signature-symbol">)</span
|
|
2336
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2337
|
-
<span class="tsd-signature-type">void</span
|
|
2338
|
-
><a
|
|
2339
|
-
href="#updateeventhandler-1"
|
|
2340
|
-
aria-label="Permalink"
|
|
2341
|
-
class="tsd-anchor-icon"
|
|
2342
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2343
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2344
|
-
></a>
|
|
2345
|
-
</div>
|
|
2346
|
-
<div class="tsd-description">
|
|
2347
|
-
<div class="tsd-parameters">
|
|
2348
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2349
|
-
<ul class="tsd-parameter-list">
|
|
2350
|
-
<li>
|
|
2351
|
-
<span
|
|
2352
|
-
><span class="tsd-kind-parameter">ev</span>:
|
|
2353
|
-
<span class="tsd-signature-type">any</span></span
|
|
2354
|
-
>
|
|
2355
|
-
</li>
|
|
2356
|
-
</ul>
|
|
2357
|
-
</div>
|
|
2358
|
-
<h4 class="tsd-returns-title">
|
|
2359
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
2360
|
-
</h4>
|
|
2361
|
-
</div>
|
|
2362
|
-
</li>
|
|
2363
|
-
</ul>
|
|
2364
|
-
</section>
|
|
2365
|
-
<section class="tsd-panel tsd-member">
|
|
2366
|
-
<h3 class="tsd-anchor-link" id="writemodeltoscope">
|
|
2367
|
-
<span>$$write<wbr />Model<wbr />To<wbr />Scope</span
|
|
2368
|
-
><a
|
|
2369
|
-
href="#writemodeltoscope"
|
|
2370
|
-
aria-label="Permalink"
|
|
2371
|
-
class="tsd-anchor-icon"
|
|
2372
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2373
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2374
|
-
></a>
|
|
2375
|
-
</h3>
|
|
2376
|
-
<ul class="tsd-signatures">
|
|
2377
|
-
<li class="">
|
|
2378
|
-
<div
|
|
2379
|
-
class="tsd-signature tsd-anchor-link"
|
|
2380
|
-
id="writemodeltoscope-1"
|
|
2381
|
-
>
|
|
2382
|
-
<span class="tsd-kind-call-signature"
|
|
2383
|
-
>$$writeModelToScope</span
|
|
2384
|
-
><span class="tsd-signature-symbol">()</span
|
|
2385
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2386
|
-
<span class="tsd-signature-type">void</span
|
|
2387
|
-
><a
|
|
2388
|
-
href="#writemodeltoscope-1"
|
|
2389
|
-
aria-label="Permalink"
|
|
2390
|
-
class="tsd-anchor-icon"
|
|
2391
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2392
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2393
|
-
></a>
|
|
2394
|
-
</div>
|
|
2395
|
-
<div class="tsd-description">
|
|
2396
|
-
<h4 class="tsd-returns-title">
|
|
2397
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
2398
|
-
</h4>
|
|
2399
|
-
</div>
|
|
2400
|
-
</li>
|
|
2401
|
-
</ul>
|
|
2402
|
-
</section>
|
|
2403
|
-
<section class="tsd-panel tsd-member">
|
|
2404
|
-
<h3 class="tsd-anchor-link" id="commitviewvalue">
|
|
2405
|
-
<span>$commit<wbr />View<wbr />Value</span
|
|
2406
|
-
><a
|
|
2407
|
-
href="#commitviewvalue"
|
|
2408
|
-
aria-label="Permalink"
|
|
2409
|
-
class="tsd-anchor-icon"
|
|
2410
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2411
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2412
|
-
></a>
|
|
2413
|
-
</h3>
|
|
2414
|
-
<ul class="tsd-signatures">
|
|
2415
|
-
<li class="">
|
|
2416
|
-
<div
|
|
2417
|
-
class="tsd-signature tsd-anchor-link"
|
|
2418
|
-
id="commitviewvalue-1"
|
|
2419
|
-
>
|
|
2420
|
-
<span class="tsd-kind-call-signature">$commitViewValue</span
|
|
2421
|
-
><span class="tsd-signature-symbol">()</span
|
|
2422
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2423
|
-
<span class="tsd-signature-type">void</span
|
|
2424
|
-
><a
|
|
2425
|
-
href="#commitviewvalue-1"
|
|
2426
|
-
aria-label="Permalink"
|
|
2427
|
-
class="tsd-anchor-icon"
|
|
2428
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2429
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2430
|
-
></a>
|
|
2431
|
-
</div>
|
|
2432
|
-
<div class="tsd-description">
|
|
2433
|
-
<div class="tsd-comment tsd-typography">
|
|
2434
|
-
<p>
|
|
2435
|
-
Commit a pending update to the <code>$modelValue</code>.
|
|
2436
|
-
</p>
|
|
2437
|
-
<p>
|
|
2438
|
-
Updates may be pending by a debounced event or because
|
|
2439
|
-
the input is waiting for a some future event defined in
|
|
2440
|
-
<code>ng-model-options</code>. this method is rarely
|
|
2441
|
-
needed as <code>NgModelController</code> usually handles
|
|
2442
|
-
calling this in response to input events.
|
|
2443
|
-
</p>
|
|
2444
|
-
</div>
|
|
2445
|
-
<h4 class="tsd-returns-title">
|
|
2446
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
2447
|
-
</h4>
|
|
2448
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2449
|
-
</div>
|
|
2450
|
-
</li>
|
|
2451
|
-
</ul>
|
|
2452
|
-
</section>
|
|
2453
|
-
<section class="tsd-panel tsd-member">
|
|
2454
|
-
<h3 class="tsd-anchor-link" id="isempty">
|
|
2455
|
-
<span>$is<wbr />Empty</span
|
|
2456
|
-
><a
|
|
2457
|
-
href="#isempty"
|
|
2458
|
-
aria-label="Permalink"
|
|
2459
|
-
class="tsd-anchor-icon"
|
|
2460
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2461
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2462
|
-
></a>
|
|
2463
|
-
</h3>
|
|
2464
|
-
<ul class="tsd-signatures">
|
|
2465
|
-
<li class="">
|
|
2466
|
-
<div class="tsd-signature tsd-anchor-link" id="isempty-1">
|
|
2467
|
-
<span class="tsd-kind-call-signature">$isEmpty</span
|
|
2468
|
-
><span class="tsd-signature-symbol">(</span
|
|
2469
|
-
><span class="tsd-kind-parameter">value</span
|
|
2470
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2471
|
-
<span class="tsd-signature-type">any</span
|
|
2472
|
-
><span class="tsd-signature-symbol">)</span
|
|
2473
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2474
|
-
<span class="tsd-signature-type">boolean</span
|
|
2475
|
-
><a
|
|
2476
|
-
href="#isempty-1"
|
|
2477
|
-
aria-label="Permalink"
|
|
2478
|
-
class="tsd-anchor-icon"
|
|
2479
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2480
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2481
|
-
></a>
|
|
2482
|
-
</div>
|
|
2483
|
-
<div class="tsd-description">
|
|
2484
|
-
<div class="tsd-comment tsd-typography">
|
|
2485
|
-
<p>
|
|
2486
|
-
This is called when we need to determine if the value of
|
|
2487
|
-
an input is empty.
|
|
2488
|
-
</p>
|
|
2489
|
-
<p>
|
|
2490
|
-
For instance, the required directive does this to work
|
|
2491
|
-
out if the input has data or not.
|
|
2492
|
-
</p>
|
|
2493
|
-
<p>
|
|
2494
|
-
The default <code>$isEmpty</code> function checks
|
|
2495
|
-
whether the value is <code>undefined</code>,
|
|
2496
|
-
<code>''</code>, <code>null</code> or <code>NaN</code>.
|
|
2497
|
-
</p>
|
|
2498
|
-
<p>
|
|
2499
|
-
You can override this for input directives whose concept
|
|
2500
|
-
of being empty is different from the default. The
|
|
2501
|
-
<code>checkboxInputType</code> directive does this
|
|
2502
|
-
because in its case a value of
|
|
2503
|
-
<code>false</code> implies empty.
|
|
2504
|
-
</p>
|
|
2505
|
-
</div>
|
|
2506
|
-
<div class="tsd-parameters">
|
|
2507
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2508
|
-
<ul class="tsd-parameter-list">
|
|
2509
|
-
<li>
|
|
2510
|
-
<span
|
|
2511
|
-
><span class="tsd-kind-parameter">value</span>:
|
|
2512
|
-
<span class="tsd-signature-type">any</span></span
|
|
2513
|
-
>
|
|
2514
|
-
<div class="tsd-comment tsd-typography">
|
|
2515
|
-
<p>
|
|
2516
|
-
The value of the input to check for emptiness.
|
|
2517
|
-
</p>
|
|
2518
|
-
</div>
|
|
2519
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2520
|
-
</li>
|
|
2521
|
-
</ul>
|
|
2522
|
-
</div>
|
|
2523
|
-
<h4 class="tsd-returns-title">
|
|
2524
|
-
Returns <span class="tsd-signature-type">boolean</span>
|
|
2525
|
-
</h4>
|
|
2526
|
-
<p>True if <code>value</code> is "empty".</p>
|
|
2527
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2528
|
-
</div>
|
|
2529
|
-
</li>
|
|
2530
|
-
</ul>
|
|
2531
|
-
</section>
|
|
2532
|
-
<section class="tsd-panel tsd-member">
|
|
2533
|
-
<h3 class="tsd-anchor-link" id="overridemodeloptions">
|
|
2534
|
-
<span>$override<wbr />Model<wbr />Options</span
|
|
2535
|
-
><a
|
|
2536
|
-
href="#overridemodeloptions"
|
|
2537
|
-
aria-label="Permalink"
|
|
2538
|
-
class="tsd-anchor-icon"
|
|
2539
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2540
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2541
|
-
></a>
|
|
2542
|
-
</h3>
|
|
2543
|
-
<ul class="tsd-signatures">
|
|
2544
|
-
<li class="">
|
|
2545
|
-
<div
|
|
2546
|
-
class="tsd-signature tsd-anchor-link"
|
|
2547
|
-
id="overridemodeloptions-1"
|
|
2548
|
-
>
|
|
2549
|
-
<span class="tsd-kind-call-signature"
|
|
2550
|
-
>$overrideModelOptions</span
|
|
2551
|
-
><span class="tsd-signature-symbol">(</span
|
|
2552
|
-
><span class="tsd-kind-parameter">options</span
|
|
2553
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2554
|
-
<span class="tsd-signature-type">any</span
|
|
2555
|
-
><span class="tsd-signature-symbol">)</span
|
|
2556
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2557
|
-
<span class="tsd-signature-type">void</span
|
|
2558
|
-
><a
|
|
2559
|
-
href="#overridemodeloptions-1"
|
|
2560
|
-
aria-label="Permalink"
|
|
2561
|
-
class="tsd-anchor-icon"
|
|
2562
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2563
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2564
|
-
></a>
|
|
2565
|
-
</div>
|
|
2566
|
-
<div class="tsd-description">
|
|
2567
|
-
<div class="tsd-comment tsd-typography">
|
|
2568
|
-
<p>
|
|
2569
|
-
Override the current model options settings
|
|
2570
|
-
programmatically.
|
|
2571
|
-
</p>
|
|
2572
|
-
<p>
|
|
2573
|
-
The previous <code>ModelOptions</code> value will not be
|
|
2574
|
-
modified. Instead, a new
|
|
2575
|
-
<code>ModelOptions</code> object will inherit from the
|
|
2576
|
-
previous one overriding or inheriting settings that are
|
|
2577
|
-
defined in the given parameter.
|
|
2578
|
-
</p>
|
|
2579
|
-
<p>
|
|
2580
|
-
See ngModelOptions for information about what options
|
|
2581
|
-
can be specified and how model option inheritance works.
|
|
2582
|
-
</p>
|
|
2583
|
-
<div class="alert alert-warning">
|
|
2584
|
-
**Note:** this function only affects the options set on
|
|
2585
|
-
the `ngModelController`, and not the options on the
|
|
2586
|
-
ngModelOptions directive from which they might have been
|
|
2587
|
-
obtained initially.
|
|
2588
|
-
</div>
|
|
2589
|
-
<div class="alert alert-danger">
|
|
2590
|
-
**Note:** it is not possible to override the
|
|
2591
|
-
`getterSetter` option.
|
|
2592
|
-
</div>
|
|
2593
|
-
</div>
|
|
2594
|
-
<div class="tsd-parameters">
|
|
2595
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2596
|
-
<ul class="tsd-parameter-list">
|
|
2597
|
-
<li>
|
|
2598
|
-
<span
|
|
2599
|
-
><span class="tsd-kind-parameter">options</span>:
|
|
2600
|
-
<span class="tsd-signature-type">any</span></span
|
|
2601
|
-
>
|
|
2602
|
-
<div class="tsd-comment tsd-typography">
|
|
2603
|
-
<p>
|
|
2604
|
-
a hash of settings to override the previous
|
|
2605
|
-
options
|
|
2606
|
-
</p>
|
|
2607
|
-
</div>
|
|
2608
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2609
|
-
</li>
|
|
2610
|
-
</ul>
|
|
2611
|
-
</div>
|
|
2612
|
-
<h4 class="tsd-returns-title">
|
|
2613
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
2614
|
-
</h4>
|
|
2615
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2616
|
-
</div>
|
|
2617
|
-
</li>
|
|
2618
|
-
</ul>
|
|
2619
|
-
</section>
|
|
2620
|
-
<section class="tsd-panel tsd-member">
|
|
2621
|
-
<h3 class="tsd-anchor-link" id="processmodelvalue">
|
|
2622
|
-
<span>$process<wbr />Model<wbr />Value</span
|
|
2623
|
-
><a
|
|
2624
|
-
href="#processmodelvalue"
|
|
2625
|
-
aria-label="Permalink"
|
|
2626
|
-
class="tsd-anchor-icon"
|
|
2627
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2628
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2629
|
-
></a>
|
|
2630
|
-
</h3>
|
|
2631
|
-
<ul class="tsd-signatures">
|
|
2632
|
-
<li class="">
|
|
2633
|
-
<div
|
|
2634
|
-
class="tsd-signature tsd-anchor-link"
|
|
2635
|
-
id="processmodelvalue-1"
|
|
2636
|
-
>
|
|
2637
|
-
<span class="tsd-kind-call-signature"
|
|
2638
|
-
>$processModelValue</span
|
|
2639
|
-
><span class="tsd-signature-symbol">()</span
|
|
2640
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2641
|
-
<span class="tsd-signature-type">void</span
|
|
2642
|
-
><a
|
|
2643
|
-
href="#processmodelvalue-1"
|
|
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
|
-
</div>
|
|
2650
|
-
<div class="tsd-description">
|
|
2651
|
-
<div class="tsd-comment tsd-typography">
|
|
2652
|
-
<p>
|
|
2653
|
-
Runs the model -> view pipeline on the current
|
|
2654
|
-
ngModel.NgModelController#$modelValue $modelValue.
|
|
2655
|
-
</p>
|
|
2656
|
-
<p>The following actions are performed by this method:</p>
|
|
2657
|
-
<ul>
|
|
2658
|
-
<li>
|
|
2659
|
-
the <code>$modelValue</code> is run through the
|
|
2660
|
-
ngModel.NgModelController#$formatters $formatters and
|
|
2661
|
-
the result is set to the
|
|
2662
|
-
ngModel.NgModelController#$viewValue $viewValue
|
|
2663
|
-
</li>
|
|
2664
|
-
<li>
|
|
2665
|
-
the <code>ng-empty</code> or
|
|
2666
|
-
<code>ng-not-empty</code> class is set on the element
|
|
2667
|
-
</li>
|
|
2668
|
-
<li>
|
|
2669
|
-
if the <code>$viewValue</code> has changed:
|
|
2670
|
-
<ul>
|
|
2671
|
-
<li>
|
|
2672
|
-
ngModel.NgModelController#$render $render is
|
|
2673
|
-
called on the control
|
|
2674
|
-
</li>
|
|
2675
|
-
<li>
|
|
2676
|
-
the ngModel.NgModelController#$validators
|
|
2677
|
-
$validators are run and the validation status is
|
|
2678
|
-
set.
|
|
2679
|
-
</li>
|
|
2680
|
-
</ul>
|
|
2681
|
-
</li>
|
|
2682
|
-
</ul>
|
|
2683
|
-
<p>
|
|
2684
|
-
This method is called by ngModel internally when the
|
|
2685
|
-
bound scope value changes. Application developers
|
|
2686
|
-
usually do not have to call this function themselves.
|
|
2687
|
-
</p>
|
|
2688
|
-
<p>
|
|
2689
|
-
This function can be used when the
|
|
2690
|
-
<code>$viewValue</code> or the rendered DOM value are
|
|
2691
|
-
not correctly formatted and the
|
|
2692
|
-
<code>$modelValue</code> must be run through the
|
|
2693
|
-
<code>$formatters</code> again.
|
|
2694
|
-
</p>
|
|
2695
|
-
</div>
|
|
2696
|
-
<h4 class="tsd-returns-title">
|
|
2697
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
2698
|
-
</h4>
|
|
2699
|
-
<div class="tsd-comment tsd-typography">
|
|
2700
|
-
<div class="tsd-tag-example">
|
|
2701
|
-
<h4 class="tsd-anchor-link" id="example">
|
|
2702
|
-
Example<a
|
|
2703
|
-
href="#example"
|
|
2704
|
-
aria-label="Permalink"
|
|
2705
|
-
class="tsd-anchor-icon"
|
|
2706
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2707
|
-
<use
|
|
2708
|
-
href="../assets/icons.svg#icon-anchor"
|
|
2709
|
-
></use></svg
|
|
2710
|
-
></a>
|
|
2711
|
-
</h4>
|
|
2712
|
-
<pre><code class="ts"><span class="hl-10">Consider</span><span class="hl-1"> </span><span class="hl-10">a</span><span class="hl-1"> </span><span class="hl-10">text</span><span class="hl-1"> </span><span class="hl-10">input</span><span class="hl-1"> </span><span class="hl-8">with</span><span class="hl-1"> </span><span class="hl-10">an</span><span class="hl-1"> </span><span class="hl-10">autocomplete</span><span class="hl-1"> </span><span class="hl-0">list</span><span class="hl-1"> (</span><span class="hl-10">for</span><span class="hl-1"> </span><span class="hl-10">fruit</span><span class="hl-1">), </span><span class="hl-10">where</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">items</span><span class="hl-1"> </span><span class="hl-10">are</span><br/><span class="hl-10">objects</span><span class="hl-1"> </span><span class="hl-8">with</span><span class="hl-1"> </span><span class="hl-10">a</span><span class="hl-1"> </span><span class="hl-10">name</span><span class="hl-1"> </span><span class="hl-10">and</span><span class="hl-1"> </span><span class="hl-10">an</span><span class="hl-1"> </span><span class="hl-10">id</span><span class="hl-1">.</span><br/><span class="hl-13">A</span><span class="hl-1"> </span><span class="hl-10">user</span><span class="hl-1"> </span><span class="hl-10">enters</span><span class="hl-1"> </span><span class="hl-2">`ap`</span><span class="hl-1"> </span><span class="hl-10">and</span><span class="hl-1"> </span><span class="hl-10">then</span><span class="hl-1"> </span><span class="hl-10">selects</span><span class="hl-1"> </span><span class="hl-2">`Apricot`</span><span class="hl-1"> </span><span class="hl-10">from</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">list</span><span class="hl-1">.</span><br/><span class="hl-10">Based</span><span class="hl-1"> </span><span class="hl-10">on</span><span class="hl-1"> </span><span class="hl-11">this</span><span class="hl-1">, </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">autocomplete</span><span class="hl-1"> </span><span class="hl-10">widget</span><span class="hl-1"> </span><span class="hl-10">will</span><span class="hl-1"> </span><span class="hl-10">call</span><span class="hl-1"> </span><span class="hl-2">`$setViewValue({name: 'Apricot', id: 443})`</span><span class="hl-1">,</span><br/><span class="hl-10">but</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">rendered</span><span class="hl-1"> </span><span class="hl-10">value</span><span class="hl-1"> </span><span class="hl-10">will</span><span class="hl-1"> </span><span class="hl-10">still</span><span class="hl-1"> </span><span class="hl-10">be</span><span class="hl-1"> </span><span class="hl-2">`ap`</span><span class="hl-1">.</span><br/><span class="hl-10">The</span><span class="hl-1"> </span><span class="hl-10">widget</span><span class="hl-1"> </span><span class="hl-10">can</span><span class="hl-1"> </span><span class="hl-10">then</span><span class="hl-1"> </span><span class="hl-10">call</span><span class="hl-1"> </span><span class="hl-2">`ctrl.$processModelValue()`</span><span class="hl-1"> </span><span class="hl-10">to</span><span class="hl-1"> </span><span class="hl-10">run</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">model</span><span class="hl-1"> -> </span><span class="hl-10">view</span><br/><span class="hl-10">pipeline</span><span class="hl-1"> </span><span class="hl-10">again</span><span class="hl-1">, </span><span class="hl-10">which</span><span class="hl-1"> </span><span class="hl-10">formats</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">object</span><span class="hl-1"> </span><span class="hl-10">to</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">string</span><span class="hl-1"> </span><span class="hl-2">`Apricot`</span><span class="hl-1">,</span><br/><span class="hl-10">then</span><span class="hl-1"> </span><span class="hl-10">updates</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-2">`$viewValue`</span><span class="hl-1">, </span><span class="hl-10">and</span><span class="hl-1"> </span><span class="hl-8">finally</span><span class="hl-1"> </span><span class="hl-10">renders</span><span class="hl-1"> </span><span class="hl-10">it</span><span class="hl-1"> </span><span class="hl-11">in</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-13">DOM</span><span class="hl-1">.</span><br/><br/><span class="hl-1"><</span><span class="hl-10">example</span><span class="hl-1"> </span><span class="hl-14">module</span><span class="hl-1">=</span><span class="hl-2">"inputExample"</span><span class="hl-1"> </span><span class="hl-10">name</span><span class="hl-1">=</span><span class="hl-2">"ng-model-process"</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-10">file</span><span class="hl-1"> </span><span class="hl-10">name</span><span class="hl-1">=</span><span class="hl-2">"index.html"</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-10">div</span><span class="hl-1"> </span><span class="hl-10">ng</span><span class="hl-1">-</span><span class="hl-10">controller</span><span class="hl-1">=</span><span class="hl-2">"inputController"</span><span class="hl-1"> </span><span class="hl-10">style</span><span class="hl-1">=</span><span class="hl-2">"display: flex;"</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-10">div</span><span class="hl-1"> </span><span class="hl-10">style</span><span class="hl-1">=</span><span class="hl-2">"margin-right: 30px;"</span><span class="hl-1">></span><br/><span class="hl-1"> </span><span class="hl-10">Search</span><span class="hl-1"> </span><span class="hl-15">Fruit</span><span class="hl-1">:</span><br/><span class="hl-1"> <</span><span class="hl-10">basic</span><span class="hl-1">-</span><span class="hl-10">autocomplete</span><span class="hl-1"> </span><span class="hl-10">items</span><span class="hl-1">=</span><span class="hl-2">"items"</span><span class="hl-1"> </span><span class="hl-10">on</span><span class="hl-1">-</span><span class="hl-10">select</span><span class="hl-1">=</span><span class="hl-2">"selectedFruit = item"</span><span class="hl-1">></</span><span class="hl-14">basic</span><span class="hl-1">-</span><span class="hl-14">autocomplete</span><span class="hl-1">></span><br/><span class="hl-1"> </</span><span class="hl-10">div</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-14">div</span><span class="hl-1">></span><br/><span class="hl-1"> </span><span class="hl-15">Model</span><span class="hl-1">:<</span><span class="hl-14">br</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-14">pre</span><span class="hl-1">>{{</span><span class="hl-10">selectedFruit</span><span class="hl-1"> | </span><span class="hl-10">json</span><span class="hl-1">}}</</span><span class="hl-10">pre</span><span class="hl-1">></span><br/><span class="hl-1"> </</span><span class="hl-10">div</span><span class="hl-1">></span><br/><span class="hl-1"> </</span><span class="hl-10">div</span><span class="hl-1">></span><br/><span class="hl-1"> </</span><span class="hl-10">file</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-10">file</span><span class="hl-1"> </span><span class="hl-10">name</span><span class="hl-1">=</span><span class="hl-2">"app.js"</span><span class="hl-1">></span><br/><span class="hl-1"> </span><span class="hl-10">angular</span><span class="hl-1">.</span><span class="hl-0">module</span><span class="hl-1">(</span><span class="hl-2">'inputExample'</span><span class="hl-1">, [])</span><br/><span class="hl-1"> .</span><span class="hl-0">controller</span><span class="hl-1">(</span><span class="hl-2">'inputController'</span><span class="hl-1">, </span><span class="hl-11">function</span><span class="hl-1">(</span><span class="hl-10">$scope</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-10">$scope</span><span class="hl-1">.</span><span class="hl-10">items</span><span class="hl-1"> = [</span><br/><span class="hl-1"> {</span><span class="hl-10">name:</span><span class="hl-1"> </span><span class="hl-2">'Apricot'</span><span class="hl-1">, </span><span class="hl-10">id:</span><span class="hl-1"> </span><span class="hl-16">443</span><span class="hl-1">},</span><br/><span class="hl-1"> {</span><span class="hl-10">name:</span><span class="hl-1"> </span><span class="hl-2">'Clementine'</span><span class="hl-1">, </span><span class="hl-10">id:</span><span class="hl-1"> </span><span class="hl-16">972</span><span class="hl-1">},</span><br/><span class="hl-1"> {</span><span class="hl-10">name:</span><span class="hl-1"> </span><span class="hl-2">'Durian'</span><span class="hl-1">, </span><span class="hl-10">id:</span><span class="hl-1"> </span><span class="hl-16">169</span><span class="hl-1">},</span><br/><span class="hl-1"> {</span><span class="hl-10">name:</span><span class="hl-1"> </span><span class="hl-2">'Jackfruit'</span><span class="hl-1">, </span><span class="hl-10">id:</span><span class="hl-1"> </span><span class="hl-16">982</span><span class="hl-1">},</span><br/><span class="hl-1"> {</span><span class="hl-10">name:</span><span class="hl-1"> </span><span class="hl-2">'Strawberry'</span><span class="hl-1">, </span><span class="hl-10">id:</span><span class="hl-1"> </span><span class="hl-16">863</span><span class="hl-1">}</span><br/><span class="hl-1"> ];</span><br/><span class="hl-1"> })</span><br/><span class="hl-1"> .</span><span class="hl-0">component</span><span class="hl-1">(</span><span class="hl-2">'basicAutocomplete'</span><span class="hl-1">, {</span><br/><span class="hl-1"> </span><span class="hl-10">bindings:</span><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-10">items:</span><span class="hl-1"> </span><span class="hl-2">'<'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-10">onSelect:</span><span class="hl-1"> </span><span class="hl-2">'&'</span><br/><span class="hl-1"> },</span><br/><span class="hl-1"> </span><span class="hl-10">templateUrl:</span><span class="hl-1"> </span><span class="hl-2">'autocomplete.html'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-0">controller</span><span class="hl-10">:</span><span class="hl-1"> </span><span class="hl-11">function</span><span class="hl-1">(</span><span class="hl-10">$element</span><span class="hl-1">, </span><span class="hl-10">$scope</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-11">let</span><span class="hl-1"> </span><span class="hl-10">that</span><span class="hl-1"> = </span><span class="hl-11">this</span><span class="hl-1">;</span><br/><span class="hl-1"> </span><span class="hl-11">let</span><span class="hl-1"> </span><span class="hl-10">ngModel</span><span class="hl-1">;</span><br/><br/><span class="hl-1"> </span><span class="hl-10">that</span><span class="hl-1">.</span><span class="hl-0">$postLink</span><span class="hl-1"> = </span><span class="hl-11">function</span><span class="hl-1">() {</span><br/><span class="hl-1"> </span><span class="hl-10">ngModel</span><span class="hl-1"> = </span><span class="hl-10">$element</span><span class="hl-1">.</span><span class="hl-0">querySelectorAll</span><span class="hl-1">(</span><span class="hl-2">'input'</span><span class="hl-1">).</span><span class="hl-0">controller</span><span class="hl-1">(</span><span class="hl-2">'ngModel'</span><span class="hl-1">);</span><br/><br/><span class="hl-1"> </span><span class="hl-10">ngModel</span><span class="hl-1">.</span><span class="hl-10">$formatters</span><span class="hl-1">.</span><span class="hl-0">push</span><span class="hl-1">(</span><span class="hl-11">function</span><span class="hl-1">(</span><span class="hl-10">value</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-8">return</span><span class="hl-1"> (</span><span class="hl-10">value</span><span class="hl-1"> && </span><span class="hl-10">value</span><span class="hl-1">.</span><span class="hl-10">name</span><span class="hl-1">) || </span><span class="hl-10">value</span><span class="hl-1">;</span><br/><span class="hl-1"> });</span><br/><br/><span class="hl-1"> </span><span class="hl-10">ngModel</span><span class="hl-1">.</span><span class="hl-10">$parsers</span><span class="hl-1">.</span><span class="hl-0">push</span><span class="hl-1">(</span><span class="hl-11">function</span><span class="hl-1">(</span><span class="hl-10">value</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-11">let</span><span class="hl-1"> </span><span class="hl-10">match</span><span class="hl-1"> = </span><span class="hl-10">value</span><span class="hl-1">;</span><br/><span class="hl-1"> </span><span class="hl-8">for</span><span class="hl-1"> (</span><span class="hl-11">let</span><span class="hl-1"> </span><span class="hl-10">i</span><span class="hl-1"> = </span><span class="hl-16">0</span><span class="hl-1">; </span><span class="hl-10">i</span><span class="hl-1"> < </span><span class="hl-10">that</span><span class="hl-1">.</span><span class="hl-10">items</span><span class="hl-1">.</span><span class="hl-10">length</span><span class="hl-1">; </span><span class="hl-10">i</span><span class="hl-1">++) {</span><br/><span class="hl-1"> </span><span class="hl-8">if</span><span class="hl-1"> (</span><span class="hl-10">that</span><span class="hl-1">.</span><span class="hl-10">items</span><span class="hl-1">[</span><span class="hl-10">i</span><span class="hl-1">].</span><span class="hl-10">name</span><span class="hl-1"> === </span><span class="hl-10">value</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-10">match</span><span class="hl-1"> = </span><span class="hl-10">that</span><span class="hl-1">.</span><span class="hl-10">items</span><span class="hl-1">[</span><span class="hl-10">i</span><span class="hl-1">];</span><br/><span class="hl-1"> </span><span class="hl-8">break</span><span class="hl-1">;</span><br/><span class="hl-1"> }</span><br/><span class="hl-1"> }</span><br/><br/><span class="hl-1"> </span><span class="hl-8">return</span><span class="hl-1"> </span><span class="hl-10">match</span><span class="hl-1">;</span><br/><span class="hl-1"> });</span><br/><span class="hl-1"> };</span><br/><br/><span class="hl-1"> </span><span class="hl-10">that</span><span class="hl-1">.</span><span class="hl-0">selectItem</span><span class="hl-1"> = </span><span class="hl-11">function</span><span class="hl-1">(</span><span class="hl-10">item</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-10">ngModel</span><span class="hl-1">.</span><span class="hl-0">$setViewValue</span><span class="hl-1">(</span><span class="hl-10">item</span><span class="hl-1">);</span><br/><span class="hl-1"> </span><span class="hl-10">ngModel</span><span class="hl-1">.</span><span class="hl-0">$processModelValue</span><span class="hl-1">();</span><br/><span class="hl-1"> </span><span class="hl-10">that</span><span class="hl-1">.</span><span class="hl-0">onSelect</span><span class="hl-1">({</span><span class="hl-10">item:</span><span class="hl-1"> </span><span class="hl-10">item</span><span class="hl-1">});</span><br/><span class="hl-1"> };</span><br/><span class="hl-1"> }</span><br/><span class="hl-1"> });</span><br/><span class="hl-1"> </</span><span class="hl-10">file</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-10">file</span><span class="hl-1"> </span><span class="hl-10">name</span><span class="hl-1">=</span><span class="hl-2">"autocomplete.html"</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-14">div</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-10">input</span><span class="hl-1"> </span><span class="hl-10">type</span><span class="hl-1">=</span><span class="hl-2">"search"</span><span class="hl-1"> </span><span class="hl-10">ng</span><span class="hl-1">-</span><span class="hl-10">model</span><span class="hl-1">=</span><span class="hl-2">"$ctrl.searchTerm"</span><span class="hl-1"> /></span><br/><span class="hl-1"> <</span><span class="hl-14">ul</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-10">li</span><span class="hl-1"> </span><span class="hl-10">ng</span><span class="hl-1">-</span><span class="hl-10">repeat</span><span class="hl-1">=</span><span class="hl-2">"item in $ctrl.items | filter:$ctrl.searchTerm"</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-10">button</span><span class="hl-1"> </span><span class="hl-10">ng</span><span class="hl-1">-</span><span class="hl-10">click</span><span class="hl-1">=</span><span class="hl-2">"$ctrl.selectItem(item)"</span><span class="hl-1">>{{ </span><span class="hl-10">item</span><span class="hl-1">.</span><span class="hl-10">name</span><span class="hl-1"> }}</</span><span class="hl-10">button</span><span class="hl-1">></span><br/><span class="hl-1"> </</span><span class="hl-10">li</span><span class="hl-1">></span><br/><span class="hl-1"> </</span><span class="hl-10">ul</span><span class="hl-1">></span><br/><span class="hl-1"> </</span><span class="hl-10">div</span><span class="hl-1">></span><br/><span class="hl-1"> </</span><span class="hl-10">file</span><span class="hl-1">></span><br/><span class="hl-1"></</span><span class="hl-10">example</span><span class="hl-1">></span>
|
|
2713
|
-
</code><button type="button">Copy</button></pre>
|
|
2714
|
-
</div>
|
|
2715
|
-
</div>
|
|
2716
|
-
</div>
|
|
2717
|
-
</li>
|
|
2718
|
-
</ul>
|
|
2719
|
-
</section>
|
|
2720
|
-
<section class="tsd-panel tsd-member">
|
|
2721
|
-
<h3 class="tsd-anchor-link" id="render">
|
|
2722
|
-
<span>$render</span
|
|
2723
|
-
><a
|
|
2724
|
-
href="#render"
|
|
2725
|
-
aria-label="Permalink"
|
|
2726
|
-
class="tsd-anchor-icon"
|
|
2727
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2728
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2729
|
-
></a>
|
|
2730
|
-
</h3>
|
|
2731
|
-
<ul class="tsd-signatures">
|
|
2732
|
-
<li class="">
|
|
2733
|
-
<div class="tsd-signature tsd-anchor-link" id="render-1">
|
|
2734
|
-
<span class="tsd-kind-call-signature">$render</span
|
|
2735
|
-
><span class="tsd-signature-symbol">()</span
|
|
2736
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2737
|
-
<span class="tsd-signature-type">void</span
|
|
2738
|
-
><a
|
|
2739
|
-
href="#render-1"
|
|
2740
|
-
aria-label="Permalink"
|
|
2741
|
-
class="tsd-anchor-icon"
|
|
2742
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2743
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2744
|
-
></a>
|
|
2745
|
-
</div>
|
|
2746
|
-
<div class="tsd-description">
|
|
2747
|
-
<div class="tsd-comment tsd-typography">
|
|
2748
|
-
<p>
|
|
2749
|
-
Called when the view needs to be updated. It is expected
|
|
2750
|
-
that the user of the ng-model directive will implement
|
|
2751
|
-
this method.
|
|
2752
|
-
</p>
|
|
2753
|
-
<p>
|
|
2754
|
-
The <code>$render()</code> method is invoked in the
|
|
2755
|
-
following situations:
|
|
2756
|
-
</p>
|
|
2757
|
-
<ul>
|
|
2758
|
-
<li>
|
|
2759
|
-
<code>$rollbackViewValue()</code> is called. If we are
|
|
2760
|
-
rolling back the view value to the last committed
|
|
2761
|
-
value then <code>$render()</code> is called to update
|
|
2762
|
-
the input control.
|
|
2763
|
-
</li>
|
|
2764
|
-
<li>
|
|
2765
|
-
The value referenced by <code>ng-model</code> is
|
|
2766
|
-
changed programmatically and both the
|
|
2767
|
-
<code>$modelValue</code> and the
|
|
2768
|
-
<code>$viewValue</code> are different from last time.
|
|
2769
|
-
</li>
|
|
2770
|
-
</ul>
|
|
2771
|
-
<p>
|
|
2772
|
-
Since <code>ng-model</code> does not do a deep watch,
|
|
2773
|
-
<code>$render()</code> is only invoked if the values of
|
|
2774
|
-
<code>$modelValue</code> and <code>$viewValue</code> are
|
|
2775
|
-
actually different from their previous values. If
|
|
2776
|
-
<code>$modelValue</code> or <code>$viewValue</code> are
|
|
2777
|
-
objects (rather than a string or number) then
|
|
2778
|
-
<code>$render()</code> will not be invoked if you only
|
|
2779
|
-
change a property on the objects.
|
|
2780
|
-
</p>
|
|
2781
|
-
</div>
|
|
2782
|
-
<h4 class="tsd-returns-title">
|
|
2783
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
2784
|
-
</h4>
|
|
2785
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2786
|
-
</div>
|
|
2787
|
-
</li>
|
|
2788
|
-
</ul>
|
|
2789
|
-
</section>
|
|
2790
|
-
<section class="tsd-panel tsd-member">
|
|
2791
|
-
<h3 class="tsd-anchor-link" id="rollbackviewvalue">
|
|
2792
|
-
<span>$rollback<wbr />View<wbr />Value</span
|
|
2793
|
-
><a
|
|
2794
|
-
href="#rollbackviewvalue"
|
|
2795
|
-
aria-label="Permalink"
|
|
2796
|
-
class="tsd-anchor-icon"
|
|
2797
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2798
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2799
|
-
></a>
|
|
2800
|
-
</h3>
|
|
2801
|
-
<ul class="tsd-signatures">
|
|
2802
|
-
<li class="">
|
|
2803
|
-
<div
|
|
2804
|
-
class="tsd-signature tsd-anchor-link"
|
|
2805
|
-
id="rollbackviewvalue-1"
|
|
2806
|
-
>
|
|
2807
|
-
<span class="tsd-kind-call-signature"
|
|
2808
|
-
>$rollbackViewValue</span
|
|
2809
|
-
><span class="tsd-signature-symbol">()</span
|
|
2810
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2811
|
-
<span class="tsd-signature-type">void</span
|
|
2812
|
-
><a
|
|
2813
|
-
href="#rollbackviewvalue-1"
|
|
2814
|
-
aria-label="Permalink"
|
|
2815
|
-
class="tsd-anchor-icon"
|
|
2816
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2817
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2818
|
-
></a>
|
|
2819
|
-
</div>
|
|
2820
|
-
<div class="tsd-description">
|
|
2821
|
-
<div class="tsd-comment tsd-typography">
|
|
2822
|
-
<p>
|
|
2823
|
-
Cancel an update and reset the input element's value to
|
|
2824
|
-
prevent an update to the <code>$modelValue</code>, which
|
|
2825
|
-
may be caused by a pending debounced event or because
|
|
2826
|
-
the input is waiting for some future event.
|
|
2827
|
-
</p>
|
|
2828
|
-
<p>
|
|
2829
|
-
If you have an input that uses
|
|
2830
|
-
<code>ng-model-options</code> to set up debounced
|
|
2831
|
-
updates or updates that depend on special events such as
|
|
2832
|
-
<code>blur</code>, there can be a period when the
|
|
2833
|
-
<code>$viewValue</code> is out of sync with the
|
|
2834
|
-
ngModel's <code>$modelValue</code>.
|
|
2835
|
-
</p>
|
|
2836
|
-
<p>
|
|
2837
|
-
In this case, you can use
|
|
2838
|
-
<code>$rollbackViewValue()</code> to manually cancel the
|
|
2839
|
-
debounced / future update and reset the input to the
|
|
2840
|
-
last committed view value.
|
|
2841
|
-
</p>
|
|
2842
|
-
<p>
|
|
2843
|
-
It is also possible that you run into difficulties if
|
|
2844
|
-
you try to update the ngModel's
|
|
2845
|
-
<code>$modelValue</code> programmatically before these
|
|
2846
|
-
debounced/future events have resolved/occurred, because
|
|
2847
|
-
AngularTS's dirty checking mechanism is not able to tell
|
|
2848
|
-
whether the model has actually changed or not.
|
|
2849
|
-
</p>
|
|
2850
|
-
<p>
|
|
2851
|
-
The <code>$rollbackViewValue()</code> method should be
|
|
2852
|
-
called before programmatically changing the model of an
|
|
2853
|
-
input which may have such events pending. This is
|
|
2854
|
-
important in order to make sure that the input field
|
|
2855
|
-
will be updated with the new model value and any pending
|
|
2856
|
-
operations are cancelled.
|
|
2857
|
-
</p>
|
|
2858
|
-
</div>
|
|
2859
|
-
<h4 class="tsd-returns-title">
|
|
2860
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
2861
|
-
</h4>
|
|
2862
|
-
<div class="tsd-comment tsd-typography">
|
|
2863
|
-
<div class="tsd-tag-example">
|
|
2864
|
-
<h4 class="tsd-anchor-link" id="example-1">
|
|
2865
|
-
Example<a
|
|
2866
|
-
href="#example-1"
|
|
2867
|
-
aria-label="Permalink"
|
|
2868
|
-
class="tsd-anchor-icon"
|
|
2869
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2870
|
-
<use
|
|
2871
|
-
href="../assets/icons.svg#icon-anchor"
|
|
2872
|
-
></use></svg
|
|
2873
|
-
></a>
|
|
2874
|
-
</h4>
|
|
2875
|
-
<pre><code class="ts"><span class="hl-1"><</span><span class="hl-10">example</span><span class="hl-1"> </span><span class="hl-10">name</span><span class="hl-1">=</span><span class="hl-2">"ng-model-cancel-update"</span><span class="hl-1"> </span><span class="hl-14">module</span><span class="hl-1">=</span><span class="hl-2">"cancel-update-example"</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-10">file</span><span class="hl-1"> </span><span class="hl-10">name</span><span class="hl-1">=</span><span class="hl-2">"app.js"</span><span class="hl-1">></span><br/><span class="hl-1"> </span><span class="hl-10">angular</span><span class="hl-1">.</span><span class="hl-0">module</span><span class="hl-1">(</span><span class="hl-2">'cancel-update-example'</span><span class="hl-1">, [])</span><br/><br/><span class="hl-1"> .</span><span class="hl-0">controller</span><span class="hl-1">(</span><span class="hl-2">'CancelUpdateController'</span><span class="hl-1">, [</span><span class="hl-2">'$scope'</span><span class="hl-1">, </span><span class="hl-11">function</span><span class="hl-1">(</span><span class="hl-10">$scope</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-10">$scope</span><span class="hl-1">.</span><span class="hl-10">model</span><span class="hl-1"> = {</span><span class="hl-10">value1:</span><span class="hl-1"> </span><span class="hl-2">''</span><span class="hl-1">, </span><span class="hl-10">value2:</span><span class="hl-1"> </span><span class="hl-2">''</span><span class="hl-1">};</span><br/><br/><span class="hl-1"> </span><span class="hl-10">$scope</span><span class="hl-1">.</span><span class="hl-0">setEmpty</span><span class="hl-1"> = </span><span class="hl-11">function</span><span class="hl-1">(</span><span class="hl-10">e</span><span class="hl-1">, </span><span class="hl-10">value</span><span class="hl-1">, </span><span class="hl-10">rollback</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-8">if</span><span class="hl-1"> (</span><span class="hl-10">e</span><span class="hl-1">.</span><span class="hl-10">keyCode</span><span class="hl-1"> === </span><span class="hl-16">27</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-10">e</span><span class="hl-1">.</span><span class="hl-0">preventDefault</span><span class="hl-1">();</span><br/><span class="hl-1"> </span><span class="hl-8">if</span><span class="hl-1"> (</span><span class="hl-10">rollback</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-10">$scope</span><span class="hl-1">.</span><span class="hl-10">myForm</span><span class="hl-1">[</span><span class="hl-10">value</span><span class="hl-1">].</span><span class="hl-0">$rollbackViewValue</span><span class="hl-1">();</span><br/><span class="hl-1"> }</span><br/><span class="hl-1"> </span><span class="hl-10">$scope</span><span class="hl-1">.</span><span class="hl-10">model</span><span class="hl-1">[</span><span class="hl-10">value</span><span class="hl-1">] = </span><span class="hl-2">''</span><span class="hl-1">;</span><br/><span class="hl-1"> }</span><br/><span class="hl-1"> };</span><br/><span class="hl-1"> }]);</span><br/><span class="hl-1"> </</span><span class="hl-10">file</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-10">file</span><span class="hl-1"> </span><span class="hl-10">name</span><span class="hl-1">=</span><span class="hl-2">"index.html"</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-10">div</span><span class="hl-1"> </span><span class="hl-10">ng</span><span class="hl-1">-</span><span class="hl-10">controller</span><span class="hl-1">=</span><span class="hl-2">"CancelUpdateController"</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-14">p</span><span class="hl-1">></span><span class="hl-10">Both</span><span class="hl-1"> </span><span class="hl-11">of</span><span class="hl-1"> </span><span class="hl-10">these</span><span class="hl-1"> </span><span class="hl-10">inputs</span><span class="hl-1"> </span><span class="hl-10">are</span><span class="hl-1"> </span><span class="hl-10">only</span><span class="hl-1"> </span><span class="hl-10">updated</span><span class="hl-1"> </span><span class="hl-8">if</span><span class="hl-1"> </span><span class="hl-10">they</span><span class="hl-1"> </span><span class="hl-10">are</span><span class="hl-1"> </span><span class="hl-10">blurred</span><span class="hl-1">. </span><span class="hl-10">Hitting</span><span class="hl-1"> </span><span class="hl-10">escape</span><span class="hl-1"> </span><span class="hl-10">should</span><br/><span class="hl-1"> </span><span class="hl-10">empty</span><span class="hl-1"> </span><span class="hl-10">them</span><span class="hl-1">. </span><span class="hl-10">Follow</span><span class="hl-1"> </span><span class="hl-10">these</span><span class="hl-1"> </span><span class="hl-10">steps</span><span class="hl-1"> </span><span class="hl-10">and</span><span class="hl-1"> </span><span class="hl-10">observe</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-15">difference</span><span class="hl-1">:</</span><span class="hl-14">p</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-14">ol</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-14">li</span><span class="hl-1">></span><span class="hl-10">Type</span><span class="hl-1"> </span><span class="hl-10">something</span><span class="hl-1"> </span><span class="hl-11">in</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">input</span><span class="hl-1">. </span><span class="hl-10">You</span><span class="hl-1"> </span><span class="hl-10">will</span><span class="hl-1"> </span><span class="hl-10">see</span><span class="hl-1"> </span><span class="hl-10">that</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">model</span><span class="hl-1"> </span><span class="hl-10">is</span><span class="hl-1"> </span><span class="hl-10">not</span><span class="hl-1"> </span><span class="hl-10">yet</span><span class="hl-1"> </span><span class="hl-10">updated</span><span class="hl-1"></</span><span class="hl-10">li</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-14">li</span><span class="hl-1">></span><span class="hl-10">Press</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">Escape</span><span class="hl-1"> </span><span class="hl-10">key</span><span class="hl-1">.</span><br/><span class="hl-1"> <</span><span class="hl-14">ol</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-14">li</span><span class="hl-1">> </span><span class="hl-10">In</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">first</span><span class="hl-1"> </span><span class="hl-10">example</span><span class="hl-1">, </span><span class="hl-10">nothing</span><span class="hl-1"> </span><span class="hl-10">happens</span><span class="hl-1">, </span><span class="hl-10">because</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">model</span><span class="hl-1"> </span><span class="hl-10">is</span><span class="hl-1"> </span><span class="hl-10">already</span><span class="hl-1"> </span><span class="hl-2">''</span><span class="hl-1">, </span><span class="hl-10">and</span><span class="hl-1"> </span><span class="hl-10">no</span><br/><span class="hl-1"> </span><span class="hl-10">update</span><span class="hl-1"> </span><span class="hl-10">is</span><span class="hl-1"> </span><span class="hl-10">detected</span><span class="hl-1">. </span><span class="hl-10">If</span><span class="hl-1"> </span><span class="hl-10">you</span><span class="hl-1"> </span><span class="hl-10">blur</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">input</span><span class="hl-1">, </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">model</span><span class="hl-1"> </span><span class="hl-10">will</span><span class="hl-1"> </span><span class="hl-10">be</span><span class="hl-1"> </span><span class="hl-10">set</span><span class="hl-1"> </span><span class="hl-10">to</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">current</span><span class="hl-1"> </span><span class="hl-10">view</span><span class="hl-1">.</span><br/><span class="hl-1"> </</span><span class="hl-10">li</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-14">li</span><span class="hl-1">> </span><span class="hl-10">In</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">second</span><span class="hl-1"> </span><span class="hl-10">example</span><span class="hl-1">, </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">pending</span><span class="hl-1"> </span><span class="hl-10">update</span><span class="hl-1"> </span><span class="hl-10">is</span><span class="hl-1"> </span><span class="hl-10">cancelled</span><span class="hl-1">, </span><span class="hl-10">and</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">input</span><span class="hl-1"> </span><span class="hl-10">is</span><span class="hl-1"> </span><span class="hl-10">set</span><span class="hl-1"> </span><span class="hl-10">back</span><br/><span class="hl-1"> </span><span class="hl-10">to</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">last</span><span class="hl-1"> </span><span class="hl-10">committed</span><span class="hl-1"> </span><span class="hl-10">view</span><span class="hl-1"> </span><span class="hl-0">value</span><span class="hl-1"> (</span><span class="hl-2">''</span><span class="hl-1">). </span><span class="hl-10">Blurring</span><span class="hl-1"> </span><span class="hl-10">the</span><span class="hl-1"> </span><span class="hl-10">input</span><span class="hl-1"> </span><span class="hl-10">does</span><span class="hl-1"> </span><span class="hl-10">nothing</span><span class="hl-1">.</span><br/><span class="hl-1"> </</span><span class="hl-10">li</span><span class="hl-1">></span><br/><span class="hl-1"> </</span><span class="hl-10">ol</span><span class="hl-1">></span><br/><span class="hl-1"> </</span><span class="hl-10">li</span><span class="hl-1">></span><br/><span class="hl-1"> </</span><span class="hl-10">ol</span><span class="hl-1">></span><br/><br/><span class="hl-1"> <</span><span class="hl-10">form</span><span class="hl-1"> </span><span class="hl-10">name</span><span class="hl-1">=</span><span class="hl-2">"myForm"</span><span class="hl-1"> </span><span class="hl-10">ng</span><span class="hl-1">-</span><span class="hl-10">model</span><span class="hl-1">-</span><span class="hl-10">options</span><span class="hl-1">=</span><span class="hl-2">"{ updateOn: 'blur' }"</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-14">div</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-10">p</span><span class="hl-1"> </span><span class="hl-10">id</span><span class="hl-1">=</span><span class="hl-2">"inputDescription1"</span><span class="hl-1">></span><span class="hl-10">Without</span><span class="hl-1"> </span><span class="hl-0">$rollbackViewValue</span><span class="hl-1">():</</span><span class="hl-14">p</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-10">input</span><span class="hl-1"> </span><span class="hl-10">name</span><span class="hl-1">=</span><span class="hl-2">"value1"</span><span class="hl-1"> </span><span class="hl-10">aria</span><span class="hl-1">-</span><span class="hl-10">describedby</span><span class="hl-1">=</span><span class="hl-2">"inputDescription1"</span><span class="hl-1"> </span><span class="hl-10">ng</span><span class="hl-1">-</span><span class="hl-10">model</span><span class="hl-1">=</span><span class="hl-2">"model.value1"</span><br/><span class="hl-1"> </span><span class="hl-10">ng</span><span class="hl-1">-</span><span class="hl-10">keydown</span><span class="hl-1">=</span><span class="hl-2">"setEmpty($event, 'value1')"</span><span class="hl-1">></span><br/><span class="hl-1"> </span><span class="hl-15">value1</span><span class="hl-1">: </span><span class="hl-2">"{{ model.value1 }}"</span><br/><span class="hl-1"> </</span><span class="hl-10">div</span><span class="hl-1">></span><br/><br/><span class="hl-1"> <</span><span class="hl-14">div</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-10">p</span><span class="hl-1"> </span><span class="hl-10">id</span><span class="hl-1">=</span><span class="hl-2">"inputDescription2"</span><span class="hl-1">></span><span class="hl-10">With</span><span class="hl-1"> </span><span class="hl-0">$rollbackViewValue</span><span class="hl-1">():</</span><span class="hl-14">p</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-10">input</span><span class="hl-1"> </span><span class="hl-10">name</span><span class="hl-1">=</span><span class="hl-2">"value2"</span><span class="hl-1"> </span><span class="hl-10">aria</span><span class="hl-1">-</span><span class="hl-10">describedby</span><span class="hl-1">=</span><span class="hl-2">"inputDescription2"</span><span class="hl-1"> </span><span class="hl-10">ng</span><span class="hl-1">-</span><span class="hl-10">model</span><span class="hl-1">=</span><span class="hl-2">"model.value2"</span><br/><span class="hl-1"> </span><span class="hl-10">ng</span><span class="hl-1">-</span><span class="hl-10">keydown</span><span class="hl-1">=</span><span class="hl-2">"setEmpty($event, 'value2', true)"</span><span class="hl-1">></span><br/><span class="hl-1"> </span><span class="hl-15">value2</span><span class="hl-1">: </span><span class="hl-2">"{{ model.value2 }}"</span><br/><span class="hl-1"> </</span><span class="hl-10">div</span><span class="hl-1">></span><br/><span class="hl-1"> </</span><span class="hl-10">form</span><span class="hl-1">></span><br/><span class="hl-1"> </</span><span class="hl-10">div</span><span class="hl-1">></span><br/><span class="hl-1"> </</span><span class="hl-10">file</span><span class="hl-1">></span><br/><span class="hl-1"> <</span><span class="hl-10">file</span><span class="hl-1"> </span><span class="hl-10">name</span><span class="hl-1">=</span><span class="hl-2">"style.css"</span><span class="hl-1">></span><br/><span class="hl-1"> </span><span class="hl-10">div</span><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-15">display</span><span class="hl-1">: </span><span class="hl-10">table</span><span class="hl-1">-</span><span class="hl-10">cell</span><span class="hl-1">;</span><br/><span class="hl-1"> }</span><br/><span class="hl-1"> </span><span class="hl-15">div</span><span class="hl-1">:</span><span class="hl-10">nth</span><span class="hl-1">-</span><span class="hl-0">child</span><span class="hl-1">(</span><span class="hl-16">1</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-10">padding</span><span class="hl-1">-</span><span class="hl-15">right</span><span class="hl-1">: 30</span><span class="hl-10">px</span><span class="hl-1">;</span><br/><span class="hl-1"> }</span><br/><br/><span class="hl-1"> </</span><span class="hl-10">file</span><span class="hl-1">></span><br/><span class="hl-1"></</span><span class="hl-10">example</span><span class="hl-1">></span>
|
|
2876
|
-
</code><button type="button">Copy</button></pre>
|
|
2877
|
-
</div>
|
|
2878
|
-
</div>
|
|
2879
|
-
</div>
|
|
2880
|
-
</li>
|
|
2881
|
-
</ul>
|
|
2882
|
-
</section>
|
|
2883
|
-
<section class="tsd-panel tsd-member">
|
|
2884
|
-
<h3 class="tsd-anchor-link" id="setdirty">
|
|
2885
|
-
<span>$set<wbr />Dirty</span
|
|
2886
|
-
><a
|
|
2887
|
-
href="#setdirty"
|
|
2888
|
-
aria-label="Permalink"
|
|
2889
|
-
class="tsd-anchor-icon"
|
|
2890
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2891
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2892
|
-
></a>
|
|
2893
|
-
</h3>
|
|
2894
|
-
<ul class="tsd-signatures">
|
|
2895
|
-
<li class="">
|
|
2896
|
-
<div class="tsd-signature tsd-anchor-link" id="setdirty-1">
|
|
2897
|
-
<span class="tsd-kind-call-signature">$setDirty</span
|
|
2898
|
-
><span class="tsd-signature-symbol">()</span
|
|
2899
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2900
|
-
<span class="tsd-signature-type">void</span
|
|
2901
|
-
><a
|
|
2902
|
-
href="#setdirty-1"
|
|
2903
|
-
aria-label="Permalink"
|
|
2904
|
-
class="tsd-anchor-icon"
|
|
2905
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2906
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2907
|
-
></a>
|
|
2908
|
-
</div>
|
|
2909
|
-
<div class="tsd-description">
|
|
2910
|
-
<div class="tsd-comment tsd-typography">
|
|
2911
|
-
<p>Sets the control to its dirty state.</p>
|
|
2912
|
-
<p>
|
|
2913
|
-
This method can be called to remove the
|
|
2914
|
-
<code>ng-pristine</code> class and set the control to
|
|
2915
|
-
its dirty state (<code>ng-dirty</code> class). A model
|
|
2916
|
-
is considered to be dirty when the control has been
|
|
2917
|
-
changed from when first compiled.
|
|
2918
|
-
</p>
|
|
2919
|
-
</div>
|
|
2920
|
-
<h4 class="tsd-returns-title">
|
|
2921
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
2922
|
-
</h4>
|
|
2923
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2924
|
-
</div>
|
|
2925
|
-
</li>
|
|
2926
|
-
</ul>
|
|
2927
|
-
</section>
|
|
2928
|
-
<section class="tsd-panel tsd-member">
|
|
2929
|
-
<h3 class="tsd-anchor-link" id="setpristine">
|
|
2930
|
-
<span>$set<wbr />Pristine</span
|
|
2931
|
-
><a
|
|
2932
|
-
href="#setpristine"
|
|
2933
|
-
aria-label="Permalink"
|
|
2934
|
-
class="tsd-anchor-icon"
|
|
2935
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2936
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2937
|
-
></a>
|
|
2938
|
-
</h3>
|
|
2939
|
-
<ul class="tsd-signatures">
|
|
2940
|
-
<li class="">
|
|
2941
|
-
<div class="tsd-signature tsd-anchor-link" id="setpristine-1">
|
|
2942
|
-
<span class="tsd-kind-call-signature">$setPristine</span
|
|
2943
|
-
><span class="tsd-signature-symbol">()</span
|
|
2944
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2945
|
-
<span class="tsd-signature-type">void</span
|
|
2946
|
-
><a
|
|
2947
|
-
href="#setpristine-1"
|
|
2948
|
-
aria-label="Permalink"
|
|
2949
|
-
class="tsd-anchor-icon"
|
|
2950
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2951
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2952
|
-
></a>
|
|
2953
|
-
</div>
|
|
2954
|
-
<div class="tsd-description">
|
|
2955
|
-
<div class="tsd-comment tsd-typography">
|
|
2956
|
-
<p>Sets the control to its pristine state.</p>
|
|
2957
|
-
<p>
|
|
2958
|
-
This method can be called to remove the
|
|
2959
|
-
<code>ng-dirty</code> class and set the control to its
|
|
2960
|
-
pristine state (<code>ng-pristine</code> class). A model
|
|
2961
|
-
is considered to be pristine when the control has not
|
|
2962
|
-
been changed from when first compiled.
|
|
2963
|
-
</p>
|
|
2964
|
-
</div>
|
|
2965
|
-
<h4 class="tsd-returns-title">
|
|
2966
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
2967
|
-
</h4>
|
|
2968
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2969
|
-
</div>
|
|
2970
|
-
</li>
|
|
2971
|
-
</ul>
|
|
2972
|
-
</section>
|
|
2973
|
-
<section class="tsd-panel tsd-member">
|
|
2974
|
-
<h3 class="tsd-anchor-link" id="settouched">
|
|
2975
|
-
<span>$set<wbr />Touched</span
|
|
2976
|
-
><a
|
|
2977
|
-
href="#settouched"
|
|
2978
|
-
aria-label="Permalink"
|
|
2979
|
-
class="tsd-anchor-icon"
|
|
2980
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2981
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2982
|
-
></a>
|
|
2983
|
-
</h3>
|
|
2984
|
-
<ul class="tsd-signatures">
|
|
2985
|
-
<li class="">
|
|
2986
|
-
<div class="tsd-signature tsd-anchor-link" id="settouched-1">
|
|
2987
|
-
<span class="tsd-kind-call-signature">$setTouched</span
|
|
2988
|
-
><span class="tsd-signature-symbol">()</span
|
|
2989
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2990
|
-
<span class="tsd-signature-type">void</span
|
|
2991
|
-
><a
|
|
2992
|
-
href="#settouched-1"
|
|
2993
|
-
aria-label="Permalink"
|
|
2994
|
-
class="tsd-anchor-icon"
|
|
2995
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2996
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2997
|
-
></a>
|
|
2998
|
-
</div>
|
|
2999
|
-
<div class="tsd-description">
|
|
3000
|
-
<div class="tsd-comment tsd-typography">
|
|
3001
|
-
<p>Sets the control to its touched state.</p>
|
|
3002
|
-
<p>
|
|
3003
|
-
This method can be called to remove the
|
|
3004
|
-
<code>ng-untouched</code> class and set the control to
|
|
3005
|
-
its touched state (<code>ng-touched</code> class). A
|
|
3006
|
-
model is considered to be touched when the user has
|
|
3007
|
-
first focused the control element and then shifted focus
|
|
3008
|
-
away from the control (blur event).
|
|
3009
|
-
</p>
|
|
3010
|
-
</div>
|
|
3011
|
-
<h4 class="tsd-returns-title">
|
|
3012
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
3013
|
-
</h4>
|
|
3014
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
3015
|
-
</div>
|
|
3016
|
-
</li>
|
|
3017
|
-
</ul>
|
|
3018
|
-
</section>
|
|
3019
|
-
<section class="tsd-panel tsd-member">
|
|
3020
|
-
<h3 class="tsd-anchor-link" id="setuntouched">
|
|
3021
|
-
<span>$set<wbr />Untouched</span
|
|
3022
|
-
><a
|
|
3023
|
-
href="#setuntouched"
|
|
3024
|
-
aria-label="Permalink"
|
|
3025
|
-
class="tsd-anchor-icon"
|
|
3026
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
3027
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
3028
|
-
></a>
|
|
3029
|
-
</h3>
|
|
3030
|
-
<ul class="tsd-signatures">
|
|
3031
|
-
<li class="">
|
|
3032
|
-
<div
|
|
3033
|
-
class="tsd-signature tsd-anchor-link"
|
|
3034
|
-
id="setuntouched-1"
|
|
3035
|
-
>
|
|
3036
|
-
<span class="tsd-kind-call-signature">$setUntouched</span
|
|
3037
|
-
><span class="tsd-signature-symbol">()</span
|
|
3038
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3039
|
-
<span class="tsd-signature-type">void</span
|
|
3040
|
-
><a
|
|
3041
|
-
href="#setuntouched-1"
|
|
3042
|
-
aria-label="Permalink"
|
|
3043
|
-
class="tsd-anchor-icon"
|
|
3044
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
3045
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
3046
|
-
></a>
|
|
3047
|
-
</div>
|
|
3048
|
-
<div class="tsd-description">
|
|
3049
|
-
<div class="tsd-comment tsd-typography">
|
|
3050
|
-
<p>Sets the control to its untouched state.</p>
|
|
3051
|
-
<p>
|
|
3052
|
-
This method can be called to remove the
|
|
3053
|
-
<code>ng-touched</code> class and set the control to its
|
|
3054
|
-
untouched state (<code>ng-untouched</code> class). Upon
|
|
3055
|
-
compilation, a model is set as untouched by default,
|
|
3056
|
-
however this function can be used to restore that state
|
|
3057
|
-
if the model has already been touched by the user.
|
|
3058
|
-
</p>
|
|
3059
|
-
</div>
|
|
3060
|
-
<h4 class="tsd-returns-title">
|
|
3061
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
3062
|
-
</h4>
|
|
3063
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
3064
|
-
</div>
|
|
3065
|
-
</li>
|
|
3066
|
-
</ul>
|
|
3067
|
-
</section>
|
|
3068
|
-
<section class="tsd-panel tsd-member">
|
|
3069
|
-
<h3 class="tsd-anchor-link" id="setvalidity">
|
|
3070
|
-
<span>$set<wbr />Validity</span
|
|
3071
|
-
><a
|
|
3072
|
-
href="#setvalidity"
|
|
3073
|
-
aria-label="Permalink"
|
|
3074
|
-
class="tsd-anchor-icon"
|
|
3075
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
3076
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
3077
|
-
></a>
|
|
3078
|
-
</h3>
|
|
3079
|
-
<ul class="tsd-signatures">
|
|
3080
|
-
<li class="">
|
|
3081
|
-
<div class="tsd-signature tsd-anchor-link" id="setvalidity-1">
|
|
3082
|
-
<span class="tsd-kind-call-signature">$setValidity</span
|
|
3083
|
-
><span class="tsd-signature-symbol">(</span
|
|
3084
|
-
><span class="tsd-kind-parameter">validationErrorKey</span
|
|
3085
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3086
|
-
<span class="tsd-signature-type">any</span
|
|
3087
|
-
><span class="tsd-signature-symbol">,</span>
|
|
3088
|
-
<span class="tsd-kind-parameter">state</span
|
|
3089
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3090
|
-
<span class="tsd-signature-type">any</span
|
|
3091
|
-
><span class="tsd-signature-symbol">)</span
|
|
3092
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3093
|
-
<span class="tsd-signature-type">void</span
|
|
3094
|
-
><a
|
|
3095
|
-
href="#setvalidity-1"
|
|
3096
|
-
aria-label="Permalink"
|
|
3097
|
-
class="tsd-anchor-icon"
|
|
3098
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
3099
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
3100
|
-
></a>
|
|
3101
|
-
</div>
|
|
3102
|
-
<div class="tsd-description">
|
|
3103
|
-
<div class="tsd-parameters">
|
|
3104
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
3105
|
-
<ul class="tsd-parameter-list">
|
|
3106
|
-
<li>
|
|
3107
|
-
<span
|
|
3108
|
-
><span class="tsd-kind-parameter"
|
|
3109
|
-
>validationErrorKey</span
|
|
3110
|
-
>: <span class="tsd-signature-type">any</span></span
|
|
3111
|
-
>
|
|
3112
|
-
</li>
|
|
3113
|
-
<li>
|
|
3114
|
-
<span
|
|
3115
|
-
><span class="tsd-kind-parameter">state</span>:
|
|
3116
|
-
<span class="tsd-signature-type">any</span></span
|
|
3117
|
-
>
|
|
3118
|
-
</li>
|
|
3119
|
-
</ul>
|
|
3120
|
-
</div>
|
|
3121
|
-
<h4 class="tsd-returns-title">
|
|
3122
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
3123
|
-
</h4>
|
|
3124
|
-
</div>
|
|
3125
|
-
</li>
|
|
3126
|
-
</ul>
|
|
3127
|
-
</section>
|
|
3128
|
-
<section class="tsd-panel tsd-member">
|
|
3129
|
-
<h3 class="tsd-anchor-link" id="setviewvalue">
|
|
3130
|
-
<span>$set<wbr />View<wbr />Value</span
|
|
3131
|
-
><a
|
|
3132
|
-
href="#setviewvalue"
|
|
3133
|
-
aria-label="Permalink"
|
|
3134
|
-
class="tsd-anchor-icon"
|
|
3135
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
3136
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
3137
|
-
></a>
|
|
3138
|
-
</h3>
|
|
3139
|
-
<ul class="tsd-signatures">
|
|
3140
|
-
<li class="">
|
|
3141
|
-
<div
|
|
3142
|
-
class="tsd-signature tsd-anchor-link"
|
|
3143
|
-
id="setviewvalue-1"
|
|
3144
|
-
>
|
|
3145
|
-
<span class="tsd-kind-call-signature">$setViewValue</span
|
|
3146
|
-
><span class="tsd-signature-symbol">(</span
|
|
3147
|
-
><span class="tsd-kind-parameter">value</span
|
|
3148
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3149
|
-
<span class="tsd-signature-type">any</span
|
|
3150
|
-
><span class="tsd-signature-symbol">,</span>
|
|
3151
|
-
<span class="tsd-kind-parameter">trigger</span
|
|
3152
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
3153
|
-
<span class="tsd-signature-type">string</span
|
|
3154
|
-
><span class="tsd-signature-symbol">)</span
|
|
3155
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3156
|
-
<span class="tsd-signature-type">void</span
|
|
3157
|
-
><a
|
|
3158
|
-
href="#setviewvalue-1"
|
|
3159
|
-
aria-label="Permalink"
|
|
3160
|
-
class="tsd-anchor-icon"
|
|
3161
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
3162
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
3163
|
-
></a>
|
|
3164
|
-
</div>
|
|
3165
|
-
<div class="tsd-description">
|
|
3166
|
-
<div class="tsd-comment tsd-typography">
|
|
3167
|
-
<p>Update the view value.</p>
|
|
3168
|
-
<p>
|
|
3169
|
-
This method should be called when a control wants to
|
|
3170
|
-
change the view value; typically, this is done from
|
|
3171
|
-
within a DOM event handler. For example, the
|
|
3172
|
-
ng.directive:input input directive calls it when the
|
|
3173
|
-
value of the input changes and ng.directive:select
|
|
3174
|
-
select calls it when an option is selected.
|
|
3175
|
-
</p>
|
|
3176
|
-
<p>
|
|
3177
|
-
When <code>$setViewValue</code> is called, the new
|
|
3178
|
-
<code>value</code> will be staged for committing through
|
|
3179
|
-
the <code>$parsers</code> and
|
|
3180
|
-
<code>$validators</code> pipelines. If there are no
|
|
3181
|
-
special ngModelOptions specified then the staged value
|
|
3182
|
-
is sent directly for processing through the
|
|
3183
|
-
<code>$parsers</code> pipeline. After this, the
|
|
3184
|
-
<code>$validators</code> and
|
|
3185
|
-
<code>$asyncValidators</code> are called and the value
|
|
3186
|
-
is applied to <code>$modelValue</code>. Finally, the
|
|
3187
|
-
value is set to the
|
|
3188
|
-
<strong>expression</strong> specified in the
|
|
3189
|
-
<code>ng-model</code> attribute and all the registered
|
|
3190
|
-
change listeners, in the
|
|
3191
|
-
<code>$viewChangeListeners</code> list are called.
|
|
3192
|
-
</p>
|
|
3193
|
-
<p>
|
|
3194
|
-
In case the ng.directive:ngModelOptions ngModelOptions
|
|
3195
|
-
directive is used with <code>updateOn</code> and the
|
|
3196
|
-
<code>default</code> trigger is not listed, all those
|
|
3197
|
-
actions will remain pending until one of the
|
|
3198
|
-
<code>updateOn</code> events is triggered on the DOM
|
|
3199
|
-
element. All these actions will be debounced if the
|
|
3200
|
-
ng.directive:ngModelOptions ngModelOptions directive is
|
|
3201
|
-
used with a custom debounce for this particular event.
|
|
3202
|
-
Note that a <code>$digest</code> is only triggered once
|
|
3203
|
-
the <code>updateOn</code> events are fired, or if
|
|
3204
|
-
<code>debounce</code> is specified, once the timer runs
|
|
3205
|
-
out.
|
|
3206
|
-
</p>
|
|
3207
|
-
<p>
|
|
3208
|
-
When used with standard inputs, the view value will
|
|
3209
|
-
always be a string (which is in some cases parsed into
|
|
3210
|
-
another type, such as a <code>Date</code> object for
|
|
3211
|
-
<code>input[date]</code>.) However, custom controls
|
|
3212
|
-
might also pass objects to this method. In this case, we
|
|
3213
|
-
should make a copy of the object before passing it to
|
|
3214
|
-
<code>$setViewValue</code>. This is because
|
|
3215
|
-
<code>ngModel</code> does not perform a deep watch of
|
|
3216
|
-
objects, it only looks for a change of identity. If you
|
|
3217
|
-
only change the property of the object then ngModel will
|
|
3218
|
-
not realize that the object has changed and will not
|
|
3219
|
-
invoke the <code>$parsers</code> and
|
|
3220
|
-
<code>$validators</code> pipelines. For this reason, you
|
|
3221
|
-
should not change properties of the copy once it has
|
|
3222
|
-
been passed to <code>$setViewValue</code>. Otherwise you
|
|
3223
|
-
may cause the model value on the scope to change
|
|
3224
|
-
incorrectly.
|
|
3225
|
-
</p>
|
|
3226
|
-
<div class="alert alert-info">
|
|
3227
|
-
In any case, the value passed to the method should
|
|
3228
|
-
always reflect the current value of the control. For
|
|
3229
|
-
example, if you are calling `$setViewValue` for an input
|
|
3230
|
-
element, you should pass the input DOM value. Otherwise,
|
|
3231
|
-
the control and the scope model become out of sync. It's
|
|
3232
|
-
also important to note that `$setViewValue` does not
|
|
3233
|
-
call `$render` or change the control's DOM value in any
|
|
3234
|
-
way. If we want to change the control's DOM value
|
|
3235
|
-
programmatically, we should update the `ngModel` scope
|
|
3236
|
-
expression. Its new value will be picked up by the model
|
|
3237
|
-
controller, which will run it through the `$formatters`,
|
|
3238
|
-
`$render` it to update the DOM, and finally call
|
|
3239
|
-
`$validate` on it.
|
|
3240
|
-
</div>
|
|
3241
|
-
</div>
|
|
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">value</span>:
|
|
3248
|
-
<span class="tsd-signature-type">any</span></span
|
|
3249
|
-
>
|
|
3250
|
-
<div class="tsd-comment tsd-typography">
|
|
3251
|
-
<p>value from the view.</p>
|
|
3252
|
-
</div>
|
|
3253
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
3254
|
-
</li>
|
|
3255
|
-
<li>
|
|
3256
|
-
<span
|
|
3257
|
-
><code class="tsd-tag">Optional</code
|
|
3258
|
-
><span class="tsd-kind-parameter">trigger</span>:
|
|
3259
|
-
<span class="tsd-signature-type">string</span></span
|
|
3260
|
-
>
|
|
3261
|
-
<div class="tsd-comment tsd-typography">
|
|
3262
|
-
<p>Event that triggered the update.</p>
|
|
3263
|
-
</div>
|
|
3264
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
3265
|
-
</li>
|
|
3266
|
-
</ul>
|
|
3267
|
-
</div>
|
|
3268
|
-
<h4 class="tsd-returns-title">
|
|
3269
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
3270
|
-
</h4>
|
|
3271
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
3272
|
-
</div>
|
|
3273
|
-
</li>
|
|
3274
|
-
</ul>
|
|
3275
|
-
</section>
|
|
3276
|
-
<section class="tsd-panel tsd-member">
|
|
3277
|
-
<h3 class="tsd-anchor-link" id="validate">
|
|
3278
|
-
<span>$validate</span
|
|
3279
|
-
><a
|
|
3280
|
-
href="#validate"
|
|
3281
|
-
aria-label="Permalink"
|
|
3282
|
-
class="tsd-anchor-icon"
|
|
3283
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
3284
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
3285
|
-
></a>
|
|
3286
|
-
</h3>
|
|
3287
|
-
<ul class="tsd-signatures">
|
|
3288
|
-
<li class="">
|
|
3289
|
-
<div class="tsd-signature tsd-anchor-link" id="validate-1">
|
|
3290
|
-
<span class="tsd-kind-call-signature">$validate</span
|
|
3291
|
-
><span class="tsd-signature-symbol">()</span
|
|
3292
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3293
|
-
<span class="tsd-signature-type">void</span
|
|
3294
|
-
><a
|
|
3295
|
-
href="#validate-1"
|
|
3296
|
-
aria-label="Permalink"
|
|
3297
|
-
class="tsd-anchor-icon"
|
|
3298
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
3299
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
3300
|
-
></a>
|
|
3301
|
-
</div>
|
|
3302
|
-
<div class="tsd-description">
|
|
3303
|
-
<div class="tsd-comment tsd-typography">
|
|
3304
|
-
<p>
|
|
3305
|
-
Runs each of the registered validators (first
|
|
3306
|
-
synchronous validators and then asynchronous
|
|
3307
|
-
validators). If the validity changes to invalid, the
|
|
3308
|
-
model will be set to <code>undefined</code>, unless
|
|
3309
|
-
ngModelOptions
|
|
3310
|
-
<code>ngModelOptions.allowInvalid</code> is
|
|
3311
|
-
<code>true</code>. If the validity changes to valid, it
|
|
3312
|
-
will set the model to the last available valid
|
|
3313
|
-
<code>$modelValue</code>, i.e. either the last parsed
|
|
3314
|
-
value or the last value set from the scope.
|
|
3315
|
-
</p>
|
|
3316
|
-
</div>
|
|
3317
|
-
<h4 class="tsd-returns-title">
|
|
3318
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
3319
|
-
</h4>
|
|
3320
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
3321
|
-
</div>
|
|
3322
|
-
</li>
|
|
3323
|
-
</ul>
|
|
3324
|
-
</section>
|
|
3325
|
-
<section class="tsd-panel tsd-member">
|
|
3326
|
-
<h3 class="tsd-anchor-link" id="set">
|
|
3327
|
-
<span>set</span
|
|
3328
|
-
><a href="#set" aria-label="Permalink" class="tsd-anchor-icon"
|
|
3329
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
3330
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
3331
|
-
></a>
|
|
3332
|
-
</h3>
|
|
3333
|
-
<ul class="tsd-signatures">
|
|
3334
|
-
<li class="">
|
|
3335
|
-
<div class="tsd-signature tsd-anchor-link" id="set-1">
|
|
3336
|
-
<span class="tsd-kind-call-signature">set</span
|
|
3337
|
-
><span class="tsd-signature-symbol">(</span
|
|
3338
|
-
><span class="tsd-kind-parameter">object</span
|
|
3339
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3340
|
-
<span class="tsd-signature-type">any</span
|
|
3341
|
-
><span class="tsd-signature-symbol">,</span>
|
|
3342
|
-
<span class="tsd-kind-parameter">property</span
|
|
3343
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3344
|
-
<span class="tsd-signature-type">any</span
|
|
3345
|
-
><span class="tsd-signature-symbol">)</span
|
|
3346
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3347
|
-
<span class="tsd-signature-type">void</span
|
|
3348
|
-
><a
|
|
3349
|
-
href="#set-1"
|
|
3350
|
-
aria-label="Permalink"
|
|
3351
|
-
class="tsd-anchor-icon"
|
|
3352
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
3353
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
3354
|
-
></a>
|
|
3355
|
-
</div>
|
|
3356
|
-
<div class="tsd-description">
|
|
3357
|
-
<div class="tsd-parameters">
|
|
3358
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
3359
|
-
<ul class="tsd-parameter-list">
|
|
3360
|
-
<li>
|
|
3361
|
-
<span
|
|
3362
|
-
><span class="tsd-kind-parameter">object</span>:
|
|
3363
|
-
<span class="tsd-signature-type">any</span></span
|
|
3364
|
-
>
|
|
3365
|
-
</li>
|
|
3366
|
-
<li>
|
|
3367
|
-
<span
|
|
3368
|
-
><span class="tsd-kind-parameter">property</span>:
|
|
3369
|
-
<span class="tsd-signature-type">any</span></span
|
|
3370
|
-
>
|
|
3371
|
-
</li>
|
|
3372
|
-
</ul>
|
|
3373
|
-
</div>
|
|
3374
|
-
<h4 class="tsd-returns-title">
|
|
3375
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
3376
|
-
</h4>
|
|
3377
|
-
</div>
|
|
3378
|
-
</li>
|
|
3379
|
-
</ul>
|
|
3380
|
-
</section>
|
|
3381
|
-
<section class="tsd-panel tsd-member">
|
|
3382
|
-
<h3 class="tsd-anchor-link" id="unset">
|
|
3383
|
-
<span>unset</span
|
|
3384
|
-
><a href="#unset" aria-label="Permalink" class="tsd-anchor-icon"
|
|
3385
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
3386
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
3387
|
-
></a>
|
|
3388
|
-
</h3>
|
|
3389
|
-
<ul class="tsd-signatures">
|
|
3390
|
-
<li class="">
|
|
3391
|
-
<div class="tsd-signature tsd-anchor-link" id="unset-1">
|
|
3392
|
-
<span class="tsd-kind-call-signature">unset</span
|
|
3393
|
-
><span class="tsd-signature-symbol">(</span
|
|
3394
|
-
><span class="tsd-kind-parameter">object</span
|
|
3395
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3396
|
-
<span class="tsd-signature-type">any</span
|
|
3397
|
-
><span class="tsd-signature-symbol">,</span>
|
|
3398
|
-
<span class="tsd-kind-parameter">property</span
|
|
3399
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3400
|
-
<span class="tsd-signature-type">any</span
|
|
3401
|
-
><span class="tsd-signature-symbol">)</span
|
|
3402
|
-
><span class="tsd-signature-symbol">:</span>
|
|
3403
|
-
<span class="tsd-signature-type">void</span
|
|
3404
|
-
><a
|
|
3405
|
-
href="#unset-1"
|
|
3406
|
-
aria-label="Permalink"
|
|
3407
|
-
class="tsd-anchor-icon"
|
|
3408
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
3409
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
3410
|
-
></a>
|
|
3411
|
-
</div>
|
|
3412
|
-
<div class="tsd-description">
|
|
3413
|
-
<div class="tsd-parameters">
|
|
3414
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
3415
|
-
<ul class="tsd-parameter-list">
|
|
3416
|
-
<li>
|
|
3417
|
-
<span
|
|
3418
|
-
><span class="tsd-kind-parameter">object</span>:
|
|
3419
|
-
<span class="tsd-signature-type">any</span></span
|
|
3420
|
-
>
|
|
3421
|
-
</li>
|
|
3422
|
-
<li>
|
|
3423
|
-
<span
|
|
3424
|
-
><span class="tsd-kind-parameter">property</span>:
|
|
3425
|
-
<span class="tsd-signature-type">any</span></span
|
|
3426
|
-
>
|
|
3427
|
-
</li>
|
|
3428
|
-
</ul>
|
|
3429
|
-
</div>
|
|
3430
|
-
<h4 class="tsd-returns-title">
|
|
3431
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
3432
|
-
</h4>
|
|
3433
|
-
</div>
|
|
3434
|
-
</li>
|
|
3435
|
-
</ul>
|
|
3436
|
-
</section>
|
|
3437
|
-
</section>
|
|
3438
|
-
</details>
|
|
3439
|
-
</div>
|
|
3440
|
-
<div class="col-sidebar">
|
|
3441
|
-
<div class="page-menu">
|
|
3442
|
-
<div class="tsd-navigation settings">
|
|
3443
|
-
<details class="tsd-accordion">
|
|
3444
|
-
<summary class="tsd-accordion-summary">
|
|
3445
|
-
<svg
|
|
3446
|
-
width="20"
|
|
3447
|
-
height="20"
|
|
3448
|
-
viewBox="0 0 24 24"
|
|
3449
|
-
fill="none"
|
|
3450
|
-
aria-hidden="true"
|
|
3451
|
-
>
|
|
3452
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
3453
|
-
</svg>
|
|
3454
|
-
<h3>Settings</h3>
|
|
3455
|
-
</summary>
|
|
3456
|
-
<div class="tsd-accordion-details">
|
|
3457
|
-
<div class="tsd-filter-visibility">
|
|
3458
|
-
<span class="settings-label">Member Visibility</span>
|
|
3459
|
-
<ul id="tsd-filter-options">
|
|
3460
|
-
<li class="tsd-filter-item">
|
|
3461
|
-
<label class="tsd-filter-input"
|
|
3462
|
-
><input
|
|
3463
|
-
type="checkbox"
|
|
3464
|
-
id="tsd-filter-protected"
|
|
3465
|
-
name="protected"
|
|
3466
|
-
/><svg
|
|
3467
|
-
width="32"
|
|
3468
|
-
height="32"
|
|
3469
|
-
viewBox="0 0 32 32"
|
|
3470
|
-
aria-hidden="true"
|
|
3471
|
-
>
|
|
3472
|
-
<rect
|
|
3473
|
-
class="tsd-checkbox-background"
|
|
3474
|
-
width="30"
|
|
3475
|
-
height="30"
|
|
3476
|
-
x="1"
|
|
3477
|
-
y="1"
|
|
3478
|
-
rx="6"
|
|
3479
|
-
fill="none"
|
|
3480
|
-
></rect>
|
|
3481
|
-
<path
|
|
3482
|
-
class="tsd-checkbox-checkmark"
|
|
3483
|
-
d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
|
|
3484
|
-
stroke="none"
|
|
3485
|
-
stroke-width="3.5"
|
|
3486
|
-
stroke-linejoin="round"
|
|
3487
|
-
fill="none"
|
|
3488
|
-
></path></svg
|
|
3489
|
-
><span>Protected</span></label
|
|
3490
|
-
>
|
|
3491
|
-
</li>
|
|
3492
|
-
<li class="tsd-filter-item">
|
|
3493
|
-
<label class="tsd-filter-input"
|
|
3494
|
-
><input
|
|
3495
|
-
type="checkbox"
|
|
3496
|
-
id="tsd-filter-inherited"
|
|
3497
|
-
name="inherited"
|
|
3498
|
-
checked
|
|
3499
|
-
/><svg
|
|
3500
|
-
width="32"
|
|
3501
|
-
height="32"
|
|
3502
|
-
viewBox="0 0 32 32"
|
|
3503
|
-
aria-hidden="true"
|
|
3504
|
-
>
|
|
3505
|
-
<rect
|
|
3506
|
-
class="tsd-checkbox-background"
|
|
3507
|
-
width="30"
|
|
3508
|
-
height="30"
|
|
3509
|
-
x="1"
|
|
3510
|
-
y="1"
|
|
3511
|
-
rx="6"
|
|
3512
|
-
fill="none"
|
|
3513
|
-
></rect>
|
|
3514
|
-
<path
|
|
3515
|
-
class="tsd-checkbox-checkmark"
|
|
3516
|
-
d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
|
|
3517
|
-
stroke="none"
|
|
3518
|
-
stroke-width="3.5"
|
|
3519
|
-
stroke-linejoin="round"
|
|
3520
|
-
fill="none"
|
|
3521
|
-
></path></svg
|
|
3522
|
-
><span>Inherited</span></label
|
|
3523
|
-
>
|
|
3524
|
-
</li>
|
|
3525
|
-
<li class="tsd-filter-item">
|
|
3526
|
-
<label class="tsd-filter-input"
|
|
3527
|
-
><input
|
|
3528
|
-
type="checkbox"
|
|
3529
|
-
id="tsd-filter-external"
|
|
3530
|
-
name="external"
|
|
3531
|
-
/><svg
|
|
3532
|
-
width="32"
|
|
3533
|
-
height="32"
|
|
3534
|
-
viewBox="0 0 32 32"
|
|
3535
|
-
aria-hidden="true"
|
|
3536
|
-
>
|
|
3537
|
-
<rect
|
|
3538
|
-
class="tsd-checkbox-background"
|
|
3539
|
-
width="30"
|
|
3540
|
-
height="30"
|
|
3541
|
-
x="1"
|
|
3542
|
-
y="1"
|
|
3543
|
-
rx="6"
|
|
3544
|
-
fill="none"
|
|
3545
|
-
></rect>
|
|
3546
|
-
<path
|
|
3547
|
-
class="tsd-checkbox-checkmark"
|
|
3548
|
-
d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
|
|
3549
|
-
stroke="none"
|
|
3550
|
-
stroke-width="3.5"
|
|
3551
|
-
stroke-linejoin="round"
|
|
3552
|
-
fill="none"
|
|
3553
|
-
></path></svg
|
|
3554
|
-
><span>External</span></label
|
|
3555
|
-
>
|
|
3556
|
-
</li>
|
|
3557
|
-
</ul>
|
|
3558
|
-
</div>
|
|
3559
|
-
<div class="tsd-theme-toggle">
|
|
3560
|
-
<label class="settings-label" for="tsd-theme">Theme</label
|
|
3561
|
-
><select id="tsd-theme">
|
|
3562
|
-
<option value="os">OS</option>
|
|
3563
|
-
<option value="light">Light</option>
|
|
3564
|
-
<option value="dark">Dark</option>
|
|
3565
|
-
</select>
|
|
3566
|
-
</div>
|
|
3567
|
-
</div>
|
|
3568
|
-
</details>
|
|
3569
|
-
</div>
|
|
3570
|
-
<details open class="tsd-accordion tsd-page-navigation">
|
|
3571
|
-
<summary class="tsd-accordion-summary">
|
|
3572
|
-
<svg
|
|
3573
|
-
width="20"
|
|
3574
|
-
height="20"
|
|
3575
|
-
viewBox="0 0 24 24"
|
|
3576
|
-
fill="none"
|
|
3577
|
-
aria-hidden="true"
|
|
3578
|
-
>
|
|
3579
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
3580
|
-
</svg>
|
|
3581
|
-
<h3>On This Page</h3>
|
|
3582
|
-
</summary>
|
|
3583
|
-
<div class="tsd-accordion-details">
|
|
3584
|
-
<details open class="tsd-accordion tsd-page-navigation-section">
|
|
3585
|
-
<summary
|
|
3586
|
-
class="tsd-accordion-summary"
|
|
3587
|
-
data-key="section-Constructors"
|
|
3588
|
-
>
|
|
3589
|
-
<svg
|
|
3590
|
-
width="20"
|
|
3591
|
-
height="20"
|
|
3592
|
-
viewBox="0 0 24 24"
|
|
3593
|
-
fill="none"
|
|
3594
|
-
aria-hidden="true"
|
|
3595
|
-
>
|
|
3596
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use></svg
|
|
3597
|
-
>Constructors
|
|
3598
|
-
</summary>
|
|
3599
|
-
<div>
|
|
3600
|
-
<a href="#constructor"
|
|
3601
|
-
><svg
|
|
3602
|
-
class="tsd-kind-icon"
|
|
3603
|
-
viewBox="0 0 24 24"
|
|
3604
|
-
aria-label="Constructor"
|
|
3605
|
-
>
|
|
3606
|
-
<use href="../assets/icons.svg#icon-512"></use></svg
|
|
3607
|
-
><span>constructor</span></a
|
|
3608
|
-
>
|
|
3609
|
-
</div>
|
|
3610
|
-
</details>
|
|
3611
|
-
<details open class="tsd-accordion tsd-page-navigation-section">
|
|
3612
|
-
<summary
|
|
3613
|
-
class="tsd-accordion-summary"
|
|
3614
|
-
data-key="section-Properties"
|
|
3615
|
-
>
|
|
3616
|
-
<svg
|
|
3617
|
-
width="20"
|
|
3618
|
-
height="20"
|
|
3619
|
-
viewBox="0 0 24 24"
|
|
3620
|
-
fill="none"
|
|
3621
|
-
aria-hidden="true"
|
|
3622
|
-
>
|
|
3623
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use></svg
|
|
3624
|
-
>Properties
|
|
3625
|
-
</summary>
|
|
3626
|
-
<div>
|
|
3627
|
-
<a href="#animate"
|
|
3628
|
-
><svg
|
|
3629
|
-
class="tsd-kind-icon"
|
|
3630
|
-
viewBox="0 0 24 24"
|
|
3631
|
-
aria-label="Property"
|
|
3632
|
-
>
|
|
3633
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3634
|
-
><span>$$animate</span></a
|
|
3635
|
-
><a href="#attr"
|
|
3636
|
-
><svg
|
|
3637
|
-
class="tsd-kind-icon"
|
|
3638
|
-
viewBox="0 0 24 24"
|
|
3639
|
-
aria-label="Property"
|
|
3640
|
-
>
|
|
3641
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3642
|
-
><span>$$attr</span></a
|
|
3643
|
-
><a href="#classcache"
|
|
3644
|
-
><svg
|
|
3645
|
-
class="tsd-kind-icon"
|
|
3646
|
-
viewBox="0 0 24 24"
|
|
3647
|
-
aria-label="Property"
|
|
3648
|
-
>
|
|
3649
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3650
|
-
><span>$$class<wbr />Cache</span></a
|
|
3651
|
-
><a href="#currentvalidationrunid"
|
|
3652
|
-
><svg
|
|
3653
|
-
class="tsd-kind-icon"
|
|
3654
|
-
viewBox="0 0 24 24"
|
|
3655
|
-
aria-label="Property"
|
|
3656
|
-
>
|
|
3657
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3658
|
-
><span
|
|
3659
|
-
>$$current<wbr />Validation<wbr />Run<wbr />Id</span
|
|
3660
|
-
></a
|
|
3661
|
-
><a href="#element"
|
|
3662
|
-
><svg
|
|
3663
|
-
class="tsd-kind-icon"
|
|
3664
|
-
viewBox="0 0 24 24"
|
|
3665
|
-
aria-label="Property"
|
|
3666
|
-
>
|
|
3667
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3668
|
-
><span>$$element</span></a
|
|
3669
|
-
><a href="#eventremovers"
|
|
3670
|
-
><svg
|
|
3671
|
-
class="tsd-kind-icon"
|
|
3672
|
-
viewBox="0 0 24 24"
|
|
3673
|
-
aria-label="Property"
|
|
3674
|
-
>
|
|
3675
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3676
|
-
><span>$$event<wbr />Removers</span></a
|
|
3677
|
-
><a href="#exceptionhandler"
|
|
3678
|
-
><svg
|
|
3679
|
-
class="tsd-kind-icon"
|
|
3680
|
-
viewBox="0 0 24 24"
|
|
3681
|
-
aria-label="Property"
|
|
3682
|
-
>
|
|
3683
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3684
|
-
><span>$$exception<wbr />Handler</span></a
|
|
3685
|
-
><a href="#hasnativevalidators"
|
|
3686
|
-
><svg
|
|
3687
|
-
class="tsd-kind-icon"
|
|
3688
|
-
viewBox="0 0 24 24"
|
|
3689
|
-
aria-label="Property"
|
|
3690
|
-
>
|
|
3691
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3692
|
-
><span>$$has<wbr />Native<wbr />Validators</span></a
|
|
3693
|
-
><a href="#lastcommittedviewvalue"
|
|
3694
|
-
><svg
|
|
3695
|
-
class="tsd-kind-icon"
|
|
3696
|
-
viewBox="0 0 24 24"
|
|
3697
|
-
aria-label="Property"
|
|
3698
|
-
>
|
|
3699
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3700
|
-
><span
|
|
3701
|
-
>$$last<wbr />Committed<wbr />View<wbr />Value</span
|
|
3702
|
-
></a
|
|
3703
|
-
><a href="#ngmodelget"
|
|
3704
|
-
><svg
|
|
3705
|
-
class="tsd-kind-icon"
|
|
3706
|
-
viewBox="0 0 24 24"
|
|
3707
|
-
aria-label="Property"
|
|
3708
|
-
>
|
|
3709
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3710
|
-
><span>$$ng<wbr />Model<wbr />Get</span></a
|
|
3711
|
-
><a href="#ngmodelset"
|
|
3712
|
-
><svg
|
|
3713
|
-
class="tsd-kind-icon"
|
|
3714
|
-
viewBox="0 0 24 24"
|
|
3715
|
-
aria-label="Property"
|
|
3716
|
-
>
|
|
3717
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3718
|
-
><span>$$ng<wbr />Model<wbr />Set</span></a
|
|
3719
|
-
><a href="#parentform"
|
|
3720
|
-
><svg
|
|
3721
|
-
class="tsd-kind-icon"
|
|
3722
|
-
viewBox="0 0 24 24"
|
|
3723
|
-
aria-label="Property"
|
|
3724
|
-
>
|
|
3725
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3726
|
-
><span>$$parent<wbr />Form</span></a
|
|
3727
|
-
><a href="#parse"
|
|
3728
|
-
><svg
|
|
3729
|
-
class="tsd-kind-icon"
|
|
3730
|
-
viewBox="0 0 24 24"
|
|
3731
|
-
aria-label="Property"
|
|
3732
|
-
>
|
|
3733
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3734
|
-
><span>$$parse</span></a
|
|
3735
|
-
><a href="#parsedngmodel"
|
|
3736
|
-
><svg
|
|
3737
|
-
class="tsd-kind-icon"
|
|
3738
|
-
viewBox="0 0 24 24"
|
|
3739
|
-
aria-label="Property"
|
|
3740
|
-
>
|
|
3741
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3742
|
-
><span>$$parsed<wbr />Ng<wbr />Model</span></a
|
|
3743
|
-
><a href="#parsedngmodelassign"
|
|
3744
|
-
><svg
|
|
3745
|
-
class="tsd-kind-icon"
|
|
3746
|
-
viewBox="0 0 24 24"
|
|
3747
|
-
aria-label="Property"
|
|
3748
|
-
>
|
|
3749
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3750
|
-
><span>$$parsed<wbr />Ng<wbr />Model<wbr />Assign</span></a
|
|
3751
|
-
><a href="#parsername"
|
|
3752
|
-
><svg
|
|
3753
|
-
class="tsd-kind-icon"
|
|
3754
|
-
viewBox="0 0 24 24"
|
|
3755
|
-
aria-label="Property"
|
|
3756
|
-
>
|
|
3757
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3758
|
-
><span>$$parser<wbr />Name</span></a
|
|
3759
|
-
><a href="#parservalid"
|
|
3760
|
-
><svg
|
|
3761
|
-
class="tsd-kind-icon"
|
|
3762
|
-
viewBox="0 0 24 24"
|
|
3763
|
-
aria-label="Property"
|
|
3764
|
-
>
|
|
3765
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3766
|
-
><span>$$parser<wbr />Valid</span></a
|
|
3767
|
-
><a href="#pendingdebounce"
|
|
3768
|
-
><svg
|
|
3769
|
-
class="tsd-kind-icon"
|
|
3770
|
-
viewBox="0 0 24 24"
|
|
3771
|
-
aria-label="Property"
|
|
3772
|
-
>
|
|
3773
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3774
|
-
><span>$$pending<wbr />Debounce</span></a
|
|
3775
|
-
><a href="#rawmodelvalue"
|
|
3776
|
-
><svg
|
|
3777
|
-
class="tsd-kind-icon"
|
|
3778
|
-
viewBox="0 0 24 24"
|
|
3779
|
-
aria-label="Property"
|
|
3780
|
-
>
|
|
3781
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3782
|
-
><span>$$raw<wbr />Model<wbr />Value</span></a
|
|
3783
|
-
><a href="#scope"
|
|
3784
|
-
><svg
|
|
3785
|
-
class="tsd-kind-icon"
|
|
3786
|
-
viewBox="0 0 24 24"
|
|
3787
|
-
aria-label="Property"
|
|
3788
|
-
>
|
|
3789
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3790
|
-
><span>$$scope</span></a
|
|
3791
|
-
><a href="#success"
|
|
3792
|
-
><svg
|
|
3793
|
-
class="tsd-kind-icon"
|
|
3794
|
-
viewBox="0 0 24 24"
|
|
3795
|
-
aria-label="Property"
|
|
3796
|
-
>
|
|
3797
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3798
|
-
><span>$$success</span></a
|
|
3799
|
-
><a href="#updateevents"
|
|
3800
|
-
><svg
|
|
3801
|
-
class="tsd-kind-icon"
|
|
3802
|
-
viewBox="0 0 24 24"
|
|
3803
|
-
aria-label="Property"
|
|
3804
|
-
>
|
|
3805
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3806
|
-
><span>$$update<wbr />Events</span></a
|
|
3807
|
-
><a href="#asyncvalidators"
|
|
3808
|
-
><svg
|
|
3809
|
-
class="tsd-kind-icon"
|
|
3810
|
-
viewBox="0 0 24 24"
|
|
3811
|
-
aria-label="Property"
|
|
3812
|
-
>
|
|
3813
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3814
|
-
><span>$async<wbr />Validators</span></a
|
|
3815
|
-
><a href="#dirty"
|
|
3816
|
-
><svg
|
|
3817
|
-
class="tsd-kind-icon"
|
|
3818
|
-
viewBox="0 0 24 24"
|
|
3819
|
-
aria-label="Property"
|
|
3820
|
-
>
|
|
3821
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3822
|
-
><span>$dirty</span></a
|
|
3823
|
-
><a href="#error"
|
|
3824
|
-
><svg
|
|
3825
|
-
class="tsd-kind-icon"
|
|
3826
|
-
viewBox="0 0 24 24"
|
|
3827
|
-
aria-label="Property"
|
|
3828
|
-
>
|
|
3829
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3830
|
-
><span>$error</span></a
|
|
3831
|
-
><a href="#formatters"
|
|
3832
|
-
><svg
|
|
3833
|
-
class="tsd-kind-icon"
|
|
3834
|
-
viewBox="0 0 24 24"
|
|
3835
|
-
aria-label="Property"
|
|
3836
|
-
>
|
|
3837
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3838
|
-
><span>$formatters</span></a
|
|
3839
|
-
><a href="#invalid"
|
|
3840
|
-
><svg
|
|
3841
|
-
class="tsd-kind-icon"
|
|
3842
|
-
viewBox="0 0 24 24"
|
|
3843
|
-
aria-label="Property"
|
|
3844
|
-
>
|
|
3845
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3846
|
-
><span>$invalid</span></a
|
|
3847
|
-
><a href="#modelvalue"
|
|
3848
|
-
><svg
|
|
3849
|
-
class="tsd-kind-icon"
|
|
3850
|
-
viewBox="0 0 24 24"
|
|
3851
|
-
aria-label="Property"
|
|
3852
|
-
>
|
|
3853
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3854
|
-
><span>$model<wbr />Value</span></a
|
|
3855
|
-
><a href="#name"
|
|
3856
|
-
><svg
|
|
3857
|
-
class="tsd-kind-icon"
|
|
3858
|
-
viewBox="0 0 24 24"
|
|
3859
|
-
aria-label="Property"
|
|
3860
|
-
>
|
|
3861
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3862
|
-
><span>$name</span></a
|
|
3863
|
-
><a href="#options"
|
|
3864
|
-
><svg
|
|
3865
|
-
class="tsd-kind-icon"
|
|
3866
|
-
viewBox="0 0 24 24"
|
|
3867
|
-
aria-label="Property"
|
|
3868
|
-
>
|
|
3869
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3870
|
-
><span>$options</span></a
|
|
3871
|
-
><a href="#parsers"
|
|
3872
|
-
><svg
|
|
3873
|
-
class="tsd-kind-icon"
|
|
3874
|
-
viewBox="0 0 24 24"
|
|
3875
|
-
aria-label="Property"
|
|
3876
|
-
>
|
|
3877
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3878
|
-
><span>$parsers</span></a
|
|
3879
|
-
><a href="#pending"
|
|
3880
|
-
><svg
|
|
3881
|
-
class="tsd-kind-icon"
|
|
3882
|
-
viewBox="0 0 24 24"
|
|
3883
|
-
aria-label="Property"
|
|
3884
|
-
>
|
|
3885
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3886
|
-
><span>$pending</span></a
|
|
3887
|
-
><a href="#pristine"
|
|
3888
|
-
><svg
|
|
3889
|
-
class="tsd-kind-icon"
|
|
3890
|
-
viewBox="0 0 24 24"
|
|
3891
|
-
aria-label="Property"
|
|
3892
|
-
>
|
|
3893
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3894
|
-
><span>$pristine</span></a
|
|
3895
|
-
><a href="#touched"
|
|
3896
|
-
><svg
|
|
3897
|
-
class="tsd-kind-icon"
|
|
3898
|
-
viewBox="0 0 24 24"
|
|
3899
|
-
aria-label="Property"
|
|
3900
|
-
>
|
|
3901
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3902
|
-
><span>$touched</span></a
|
|
3903
|
-
><a href="#untouched"
|
|
3904
|
-
><svg
|
|
3905
|
-
class="tsd-kind-icon"
|
|
3906
|
-
viewBox="0 0 24 24"
|
|
3907
|
-
aria-label="Property"
|
|
3908
|
-
>
|
|
3909
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3910
|
-
><span>$untouched</span></a
|
|
3911
|
-
><a href="#valid"
|
|
3912
|
-
><svg
|
|
3913
|
-
class="tsd-kind-icon"
|
|
3914
|
-
viewBox="0 0 24 24"
|
|
3915
|
-
aria-label="Property"
|
|
3916
|
-
>
|
|
3917
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3918
|
-
><span>$valid</span></a
|
|
3919
|
-
><a href="#validators"
|
|
3920
|
-
><svg
|
|
3921
|
-
class="tsd-kind-icon"
|
|
3922
|
-
viewBox="0 0 24 24"
|
|
3923
|
-
aria-label="Property"
|
|
3924
|
-
>
|
|
3925
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3926
|
-
><span>$validators</span></a
|
|
3927
|
-
><a href="#viewchangelisteners"
|
|
3928
|
-
><svg
|
|
3929
|
-
class="tsd-kind-icon"
|
|
3930
|
-
viewBox="0 0 24 24"
|
|
3931
|
-
aria-label="Property"
|
|
3932
|
-
>
|
|
3933
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3934
|
-
><span>$view<wbr />Change<wbr />Listeners</span></a
|
|
3935
|
-
><a href="#viewvalue"
|
|
3936
|
-
><svg
|
|
3937
|
-
class="tsd-kind-icon"
|
|
3938
|
-
viewBox="0 0 24 24"
|
|
3939
|
-
aria-label="Property"
|
|
3940
|
-
>
|
|
3941
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3942
|
-
><span>$view<wbr />Value</span></a
|
|
3943
|
-
><a href="#inject"
|
|
3944
|
-
><svg
|
|
3945
|
-
class="tsd-kind-icon"
|
|
3946
|
-
viewBox="0 0 24 24"
|
|
3947
|
-
aria-label="Property"
|
|
3948
|
-
>
|
|
3949
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3950
|
-
><span>$inject</span></a
|
|
3951
|
-
><a href="#nonscope"
|
|
3952
|
-
><svg
|
|
3953
|
-
class="tsd-kind-icon"
|
|
3954
|
-
viewBox="0 0 24 24"
|
|
3955
|
-
aria-label="Property"
|
|
3956
|
-
>
|
|
3957
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3958
|
-
><span>$nonscope</span></a
|
|
3959
|
-
>
|
|
3960
|
-
</div>
|
|
3961
|
-
</details>
|
|
3962
|
-
<details open class="tsd-accordion tsd-page-navigation-section">
|
|
3963
|
-
<summary
|
|
3964
|
-
class="tsd-accordion-summary"
|
|
3965
|
-
data-key="section-Methods"
|
|
3966
|
-
>
|
|
3967
|
-
<svg
|
|
3968
|
-
width="20"
|
|
3969
|
-
height="20"
|
|
3970
|
-
viewBox="0 0 24 24"
|
|
3971
|
-
fill="none"
|
|
3972
|
-
aria-hidden="true"
|
|
3973
|
-
>
|
|
3974
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use></svg
|
|
3975
|
-
>Methods
|
|
3976
|
-
</summary>
|
|
3977
|
-
<div>
|
|
3978
|
-
<a href="#debounceviewvaluecommit"
|
|
3979
|
-
><svg
|
|
3980
|
-
class="tsd-kind-icon"
|
|
3981
|
-
viewBox="0 0 24 24"
|
|
3982
|
-
aria-label="Method"
|
|
3983
|
-
>
|
|
3984
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3985
|
-
><span
|
|
3986
|
-
>$$debounce<wbr />View<wbr />Value<wbr />Commit</span
|
|
3987
|
-
></a
|
|
3988
|
-
><a href="#format"
|
|
3989
|
-
><svg
|
|
3990
|
-
class="tsd-kind-icon"
|
|
3991
|
-
viewBox="0 0 24 24"
|
|
3992
|
-
aria-label="Method"
|
|
3993
|
-
>
|
|
3994
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3995
|
-
><span>$$format</span></a
|
|
3996
|
-
><a href="#initgettersetters"
|
|
3997
|
-
><svg
|
|
3998
|
-
class="tsd-kind-icon"
|
|
3999
|
-
viewBox="0 0 24 24"
|
|
4000
|
-
aria-label="Method"
|
|
4001
|
-
>
|
|
4002
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4003
|
-
><span>$$init<wbr />Getter<wbr />Setters</span></a
|
|
4004
|
-
><a href="#parseandvalidate"
|
|
4005
|
-
><svg
|
|
4006
|
-
class="tsd-kind-icon"
|
|
4007
|
-
viewBox="0 0 24 24"
|
|
4008
|
-
aria-label="Method"
|
|
4009
|
-
>
|
|
4010
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4011
|
-
><span>$$parse<wbr />And<wbr />Validate</span></a
|
|
4012
|
-
><a href="#removealleventlisteners"
|
|
4013
|
-
><svg
|
|
4014
|
-
class="tsd-kind-icon"
|
|
4015
|
-
viewBox="0 0 24 24"
|
|
4016
|
-
aria-label="Method"
|
|
4017
|
-
>
|
|
4018
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4019
|
-
><span
|
|
4020
|
-
>$$remove<wbr />All<wbr />Event<wbr />Listeners</span
|
|
4021
|
-
></a
|
|
4022
|
-
><a href="#runvalidators"
|
|
4023
|
-
><svg
|
|
4024
|
-
class="tsd-kind-icon"
|
|
4025
|
-
viewBox="0 0 24 24"
|
|
4026
|
-
aria-label="Method"
|
|
4027
|
-
>
|
|
4028
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4029
|
-
><span>$$run<wbr />Validators</span></a
|
|
4030
|
-
><a href="#setmodelvalue"
|
|
4031
|
-
><svg
|
|
4032
|
-
class="tsd-kind-icon"
|
|
4033
|
-
viewBox="0 0 24 24"
|
|
4034
|
-
aria-label="Method"
|
|
4035
|
-
>
|
|
4036
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4037
|
-
><span>$$set<wbr />Model<wbr />Value</span></a
|
|
4038
|
-
><a href="#setupdateonevents"
|
|
4039
|
-
><svg
|
|
4040
|
-
class="tsd-kind-icon"
|
|
4041
|
-
viewBox="0 0 24 24"
|
|
4042
|
-
aria-label="Method"
|
|
4043
|
-
>
|
|
4044
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4045
|
-
><span>$$set<wbr />Update<wbr />On<wbr />Events</span></a
|
|
4046
|
-
><a href="#updateemptyclasses"
|
|
4047
|
-
><svg
|
|
4048
|
-
class="tsd-kind-icon"
|
|
4049
|
-
viewBox="0 0 24 24"
|
|
4050
|
-
aria-label="Method"
|
|
4051
|
-
>
|
|
4052
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4053
|
-
><span>$$update<wbr />Empty<wbr />Classes</span></a
|
|
4054
|
-
><a href="#updateeventhandler"
|
|
4055
|
-
><svg
|
|
4056
|
-
class="tsd-kind-icon"
|
|
4057
|
-
viewBox="0 0 24 24"
|
|
4058
|
-
aria-label="Method"
|
|
4059
|
-
>
|
|
4060
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4061
|
-
><span>$$update<wbr />Event<wbr />Handler</span></a
|
|
4062
|
-
><a href="#writemodeltoscope"
|
|
4063
|
-
><svg
|
|
4064
|
-
class="tsd-kind-icon"
|
|
4065
|
-
viewBox="0 0 24 24"
|
|
4066
|
-
aria-label="Method"
|
|
4067
|
-
>
|
|
4068
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4069
|
-
><span>$$write<wbr />Model<wbr />To<wbr />Scope</span></a
|
|
4070
|
-
><a href="#commitviewvalue"
|
|
4071
|
-
><svg
|
|
4072
|
-
class="tsd-kind-icon"
|
|
4073
|
-
viewBox="0 0 24 24"
|
|
4074
|
-
aria-label="Method"
|
|
4075
|
-
>
|
|
4076
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4077
|
-
><span>$commit<wbr />View<wbr />Value</span></a
|
|
4078
|
-
><a href="#isempty"
|
|
4079
|
-
><svg
|
|
4080
|
-
class="tsd-kind-icon"
|
|
4081
|
-
viewBox="0 0 24 24"
|
|
4082
|
-
aria-label="Method"
|
|
4083
|
-
>
|
|
4084
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4085
|
-
><span>$is<wbr />Empty</span></a
|
|
4086
|
-
><a href="#overridemodeloptions"
|
|
4087
|
-
><svg
|
|
4088
|
-
class="tsd-kind-icon"
|
|
4089
|
-
viewBox="0 0 24 24"
|
|
4090
|
-
aria-label="Method"
|
|
4091
|
-
>
|
|
4092
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4093
|
-
><span>$override<wbr />Model<wbr />Options</span></a
|
|
4094
|
-
><a href="#processmodelvalue"
|
|
4095
|
-
><svg
|
|
4096
|
-
class="tsd-kind-icon"
|
|
4097
|
-
viewBox="0 0 24 24"
|
|
4098
|
-
aria-label="Method"
|
|
4099
|
-
>
|
|
4100
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4101
|
-
><span>$process<wbr />Model<wbr />Value</span></a
|
|
4102
|
-
><a href="#render"
|
|
4103
|
-
><svg
|
|
4104
|
-
class="tsd-kind-icon"
|
|
4105
|
-
viewBox="0 0 24 24"
|
|
4106
|
-
aria-label="Method"
|
|
4107
|
-
>
|
|
4108
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4109
|
-
><span>$render</span></a
|
|
4110
|
-
><a href="#rollbackviewvalue"
|
|
4111
|
-
><svg
|
|
4112
|
-
class="tsd-kind-icon"
|
|
4113
|
-
viewBox="0 0 24 24"
|
|
4114
|
-
aria-label="Method"
|
|
4115
|
-
>
|
|
4116
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4117
|
-
><span>$rollback<wbr />View<wbr />Value</span></a
|
|
4118
|
-
><a href="#setdirty"
|
|
4119
|
-
><svg
|
|
4120
|
-
class="tsd-kind-icon"
|
|
4121
|
-
viewBox="0 0 24 24"
|
|
4122
|
-
aria-label="Method"
|
|
4123
|
-
>
|
|
4124
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4125
|
-
><span>$set<wbr />Dirty</span></a
|
|
4126
|
-
><a href="#setpristine"
|
|
4127
|
-
><svg
|
|
4128
|
-
class="tsd-kind-icon"
|
|
4129
|
-
viewBox="0 0 24 24"
|
|
4130
|
-
aria-label="Method"
|
|
4131
|
-
>
|
|
4132
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4133
|
-
><span>$set<wbr />Pristine</span></a
|
|
4134
|
-
><a href="#settouched"
|
|
4135
|
-
><svg
|
|
4136
|
-
class="tsd-kind-icon"
|
|
4137
|
-
viewBox="0 0 24 24"
|
|
4138
|
-
aria-label="Method"
|
|
4139
|
-
>
|
|
4140
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4141
|
-
><span>$set<wbr />Touched</span></a
|
|
4142
|
-
><a href="#setuntouched"
|
|
4143
|
-
><svg
|
|
4144
|
-
class="tsd-kind-icon"
|
|
4145
|
-
viewBox="0 0 24 24"
|
|
4146
|
-
aria-label="Method"
|
|
4147
|
-
>
|
|
4148
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4149
|
-
><span>$set<wbr />Untouched</span></a
|
|
4150
|
-
><a href="#setvalidity"
|
|
4151
|
-
><svg
|
|
4152
|
-
class="tsd-kind-icon"
|
|
4153
|
-
viewBox="0 0 24 24"
|
|
4154
|
-
aria-label="Method"
|
|
4155
|
-
>
|
|
4156
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4157
|
-
><span>$set<wbr />Validity</span></a
|
|
4158
|
-
><a href="#setviewvalue"
|
|
4159
|
-
><svg
|
|
4160
|
-
class="tsd-kind-icon"
|
|
4161
|
-
viewBox="0 0 24 24"
|
|
4162
|
-
aria-label="Method"
|
|
4163
|
-
>
|
|
4164
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4165
|
-
><span>$set<wbr />View<wbr />Value</span></a
|
|
4166
|
-
><a href="#validate"
|
|
4167
|
-
><svg
|
|
4168
|
-
class="tsd-kind-icon"
|
|
4169
|
-
viewBox="0 0 24 24"
|
|
4170
|
-
aria-label="Method"
|
|
4171
|
-
>
|
|
4172
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4173
|
-
><span>$validate</span></a
|
|
4174
|
-
><a href="#set"
|
|
4175
|
-
><svg
|
|
4176
|
-
class="tsd-kind-icon"
|
|
4177
|
-
viewBox="0 0 24 24"
|
|
4178
|
-
aria-label="Method"
|
|
4179
|
-
>
|
|
4180
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4181
|
-
><span>set</span></a
|
|
4182
|
-
><a href="#unset"
|
|
4183
|
-
><svg
|
|
4184
|
-
class="tsd-kind-icon"
|
|
4185
|
-
viewBox="0 0 24 24"
|
|
4186
|
-
aria-label="Method"
|
|
4187
|
-
>
|
|
4188
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
4189
|
-
><span>unset</span></a
|
|
4190
|
-
>
|
|
4191
|
-
</div>
|
|
4192
|
-
</details>
|
|
4193
|
-
</div>
|
|
4194
|
-
</details>
|
|
4195
|
-
</div>
|
|
4196
|
-
<div class="site-menu">
|
|
4197
|
-
<nav class="tsd-navigation">
|
|
4198
|
-
<a href="../modules.html">AngularTS</a>
|
|
4199
|
-
<ul class="tsd-small-nested-navigation" id="tsd-nav-container">
|
|
4200
|
-
<li>Loading...</li>
|
|
4201
|
-
</ul>
|
|
4202
|
-
</nav>
|
|
4203
|
-
</div>
|
|
4204
|
-
</div>
|
|
4205
|
-
</div>
|
|
4206
|
-
<footer>
|
|
4207
|
-
<p class="tsd-generator">
|
|
4208
|
-
Generated using
|
|
4209
|
-
<a href="https://typedoc.org/" target="_blank">TypeDoc</a>
|
|
4210
|
-
</p>
|
|
4211
|
-
</footer>
|
|
4212
|
-
<div class="overlay"></div>
|
|
4213
|
-
</body>
|
|
4214
|
-
</html>
|