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