@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,2792 +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>UrlService | 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_url_url-service.html"
89
- >router/url/url-service</a
90
- >
91
- </li>
92
- <li><a href="" aria-current="page">UrlService</a></li>
93
- </ul>
94
- <h1>Class UrlService</h1>
95
- </div>
96
- <section class="tsd-panel tsd-comment">
97
- <div class="tsd-comment tsd-typography">
98
- <p>API for URL management</p>
99
- </div>
100
- <div class="tsd-comment tsd-typography"></div>
101
- </section>
102
- <section class="tsd-panel-group tsd-index-group">
103
- <section class="tsd-panel tsd-index-panel">
104
- <details class="tsd-index-content tsd-accordion" open>
105
- <summary class="tsd-accordion-summary tsd-index-summary">
106
- <svg
107
- width="20"
108
- height="20"
109
- viewBox="0 0 24 24"
110
- fill="none"
111
- aria-hidden="true"
112
- >
113
- <use href="../assets/icons.svg#icon-chevronDown"></use>
114
- </svg>
115
- <h5 class="tsd-index-heading uppercase">Index</h5>
116
- </summary>
117
- <div class="tsd-accordion-details">
118
- <section class="tsd-index-section">
119
- <h3 class="tsd-index-heading">Constructors</h3>
120
- <div class="tsd-index-list">
121
- <a href="#constructor" class="tsd-index-link"
122
- ><svg
123
- class="tsd-kind-icon"
124
- viewBox="0 0 24 24"
125
- aria-label="Constructor"
126
- >
127
- <use href="../assets/icons.svg#icon-512"></use></svg
128
- ><span>constructor</span></a
129
- >
130
- </div>
131
- </section>
132
- <section class="tsd-index-section">
133
- <h3 class="tsd-index-heading">Properties</h3>
134
- <div class="tsd-index-list">
135
- <a href="#_basehref" class="tsd-index-link"
136
- ><svg
137
- class="tsd-kind-icon"
138
- viewBox="0 0 24 24"
139
- aria-label="Property"
140
- >
141
- <use href="../assets/icons.svg#icon-1024"></use></svg
142
- ><span>_<wbr />base<wbr />Href</span></a
143
- >
144
- <a href="#_stoplisteningfn" class="tsd-index-link"
145
- ><svg
146
- class="tsd-kind-icon"
147
- viewBox="0 0 24 24"
148
- aria-label="Property"
149
- >
150
- <use href="../assets/icons.svg#icon-1024"></use></svg
151
- ><span>_<wbr />stop<wbr />Listening<wbr />Fn</span></a
152
- >
153
- <a href="#_urllisteners" class="tsd-index-link"
154
- ><svg
155
- class="tsd-kind-icon"
156
- viewBox="0 0 24 24"
157
- aria-label="Property"
158
- >
159
- <use href="../assets/icons.svg#icon-1024"></use></svg
160
- ><span>_<wbr />url<wbr />Listeners</span></a
161
- >
162
- <a href="#browser" class="tsd-index-link"
163
- ><svg
164
- class="tsd-kind-icon"
165
- viewBox="0 0 24 24"
166
- aria-label="Property"
167
- >
168
- <use href="../assets/icons.svg#icon-1024"></use></svg
169
- ><span>$browser</span></a
170
- >
171
- <a href="#get" class="tsd-index-link"
172
- ><svg
173
- class="tsd-kind-icon"
174
- viewBox="0 0 24 24"
175
- aria-label="Property"
176
- >
177
- <use href="../assets/icons.svg#icon-1024"></use></svg
178
- ><span>$get</span></a
179
- >
180
- <a href="#location" class="tsd-index-link"
181
- ><svg
182
- class="tsd-kind-icon"
183
- viewBox="0 0 24 24"
184
- aria-label="Property"
185
- >
186
- <use href="../assets/icons.svg#icon-1024"></use></svg
187
- ><span>$location</span></a
188
- >
189
- <a href="#locationprovider" class="tsd-index-link"
190
- ><svg
191
- class="tsd-kind-icon"
192
- viewBox="0 0 24 24"
193
- aria-label="Property"
194
- >
195
- <use href="../assets/icons.svg#icon-1024"></use></svg
196
- ><span>$location<wbr />Provider</span></a
197
- >
198
- <a href="#config" class="tsd-index-link"
199
- ><svg
200
- class="tsd-kind-icon"
201
- viewBox="0 0 24 24"
202
- aria-label="Property"
203
- >
204
- <use href="../assets/icons.svg#icon-1024"></use></svg
205
- ><span>config</span></a
206
- >
207
- <a href="#hash" class="tsd-index-link"
208
- ><svg
209
- class="tsd-kind-icon"
210
- viewBox="0 0 24 24"
211
- aria-label="Property"
212
- >
213
- <use href="../assets/icons.svg#icon-1024"></use></svg
214
- ><span>hash</span></a
215
- >
216
- <a href="#location-1" class="tsd-index-link"
217
- ><svg
218
- class="tsd-kind-icon"
219
- viewBox="0 0 24 24"
220
- aria-label="Property"
221
- >
222
- <use href="../assets/icons.svg#icon-1024"></use></svg
223
- ><span>location</span></a
224
- >
225
- <a href="#paramfactory" class="tsd-index-link"
226
- ><svg
227
- class="tsd-kind-icon"
228
- viewBox="0 0 24 24"
229
- aria-label="Property"
230
- >
231
- <use href="../assets/icons.svg#icon-1024"></use></svg
232
- ><span>param<wbr />Factory</span></a
233
- >
234
- <a href="#path" class="tsd-index-link"
235
- ><svg
236
- class="tsd-kind-icon"
237
- viewBox="0 0 24 24"
238
- aria-label="Property"
239
- >
240
- <use href="../assets/icons.svg#icon-1024"></use></svg
241
- ><span>path</span></a
242
- >
243
- <a href="#rules" class="tsd-index-link"
244
- ><svg
245
- class="tsd-kind-icon"
246
- viewBox="0 0 24 24"
247
- aria-label="Property"
248
- >
249
- <use href="../assets/icons.svg#icon-1024"></use></svg
250
- ><span>rules</span></a
251
- >
252
- <a href="#search" class="tsd-index-link"
253
- ><svg
254
- class="tsd-kind-icon"
255
- viewBox="0 0 24 24"
256
- aria-label="Property"
257
- >
258
- <use href="../assets/icons.svg#icon-1024"></use></svg
259
- ><span>search</span></a
260
- >
261
- <a href="#stateservice" class="tsd-index-link"
262
- ><svg
263
- class="tsd-kind-icon"
264
- viewBox="0 0 24 24"
265
- aria-label="Property"
266
- >
267
- <use href="../assets/icons.svg#icon-1024"></use></svg
268
- ><span>state<wbr />Service</span></a
269
- >
270
- <a href="#urlrulefactory" class="tsd-index-link"
271
- ><svg
272
- class="tsd-kind-icon"
273
- viewBox="0 0 24 24"
274
- aria-label="Property"
275
- >
276
- <use href="../assets/icons.svg#icon-1024"></use></svg
277
- ><span>url<wbr />Rule<wbr />Factory</span></a
278
- >
279
- <a href="#inject" class="tsd-index-link"
280
- ><svg
281
- class="tsd-kind-icon"
282
- viewBox="0 0 24 24"
283
- aria-label="Property"
284
- >
285
- <use href="../assets/icons.svg#icon-1024"></use></svg
286
- ><span>$inject</span></a
287
- >
288
- </div>
289
- </section>
290
- <section class="tsd-index-section">
291
- <h3 class="tsd-index-heading">Methods</h3>
292
- <div class="tsd-index-list">
293
- <a href="#basehref" class="tsd-index-link"
294
- ><svg
295
- class="tsd-kind-icon"
296
- viewBox="0 0 24 24"
297
- aria-label="Method"
298
- >
299
- <use href="../assets/icons.svg#icon-2048"></use></svg
300
- ><span>base<wbr />Href</span></a
301
- >
302
- <a href="#compile" class="tsd-index-link"
303
- ><svg
304
- class="tsd-kind-icon"
305
- viewBox="0 0 24 24"
306
- aria-label="Method"
307
- >
308
- <use href="../assets/icons.svg#icon-2048"></use></svg
309
- ><span>compile</span></a
310
- >
311
- <a href="#href" class="tsd-index-link"
312
- ><svg
313
- class="tsd-kind-icon"
314
- viewBox="0 0 24 24"
315
- aria-label="Method"
316
- >
317
- <use href="../assets/icons.svg#icon-2048"></use></svg
318
- ><span>href</span></a
319
- >
320
- <a href="#html5mode" class="tsd-index-link"
321
- ><svg
322
- class="tsd-kind-icon"
323
- viewBox="0 0 24 24"
324
- aria-label="Method"
325
- >
326
- <use href="../assets/icons.svg#icon-2048"></use></svg
327
- ><span>html5<wbr />Mode</span></a
328
- >
329
- <a href="#ismatcher" class="tsd-index-link"
330
- ><svg
331
- class="tsd-kind-icon"
332
- viewBox="0 0 24 24"
333
- aria-label="Method"
334
- >
335
- <use href="../assets/icons.svg#icon-2048"></use></svg
336
- ><span>is<wbr />Matcher</span></a
337
- >
338
- <a href="#listen" class="tsd-index-link"
339
- ><svg
340
- class="tsd-kind-icon"
341
- viewBox="0 0 24 24"
342
- aria-label="Method"
343
- >
344
- <use href="../assets/icons.svg#icon-2048"></use></svg
345
- ><span>listen</span></a
346
- >
347
- <a href="#match" class="tsd-index-link"
348
- ><svg
349
- class="tsd-kind-icon"
350
- viewBox="0 0 24 24"
351
- aria-label="Method"
352
- >
353
- <use href="../assets/icons.svg#icon-2048"></use></svg
354
- ><span>match</span></a
355
- >
356
- <a href="#onchange" class="tsd-index-link"
357
- ><svg
358
- class="tsd-kind-icon"
359
- viewBox="0 0 24 24"
360
- aria-label="Method"
361
- >
362
- <use href="../assets/icons.svg#icon-2048"></use></svg
363
- ><span>on<wbr />Change</span></a
364
- >
365
- <a href="#parts" class="tsd-index-link"
366
- ><svg
367
- class="tsd-kind-icon"
368
- viewBox="0 0 24 24"
369
- aria-label="Method"
370
- >
371
- <use href="../assets/icons.svg#icon-2048"></use></svg
372
- ><span>parts</span></a
373
- >
374
- <a href="#push" class="tsd-index-link"
375
- ><svg
376
- class="tsd-kind-icon"
377
- viewBox="0 0 24 24"
378
- aria-label="Method"
379
- >
380
- <use href="../assets/icons.svg#icon-2048"></use></svg
381
- ><span>push</span></a
382
- >
383
- <a href="#sync" class="tsd-index-link"
384
- ><svg
385
- class="tsd-kind-icon"
386
- viewBox="0 0 24 24"
387
- aria-label="Method"
388
- >
389
- <use href="../assets/icons.svg#icon-2048"></use></svg
390
- ><span>sync</span></a
391
- >
392
- <a href="#update" class="tsd-index-link"
393
- ><svg
394
- class="tsd-kind-icon"
395
- viewBox="0 0 24 24"
396
- aria-label="Method"
397
- >
398
- <use href="../assets/icons.svg#icon-2048"></use></svg
399
- ><span>update</span></a
400
- >
401
- <a href="#url" class="tsd-index-link"
402
- ><svg
403
- class="tsd-kind-icon"
404
- viewBox="0 0 24 24"
405
- aria-label="Method"
406
- >
407
- <use href="../assets/icons.svg#icon-2048"></use></svg
408
- ><span>url</span></a
409
- >
410
- </div>
411
- </section>
412
- </div>
413
- </details>
414
- </section>
415
- </section>
416
- <details class="tsd-panel-group tsd-member-group tsd-accordion" open>
417
- <summary
418
- class="tsd-accordion-summary"
419
- data-key="section-Constructors"
420
- >
421
- <svg
422
- width="20"
423
- height="20"
424
- viewBox="0 0 24 24"
425
- fill="none"
426
- aria-hidden="true"
427
- >
428
- <use href="../assets/icons.svg#icon-chevronDown"></use>
429
- </svg>
430
- <h2>Constructors</h2>
431
- </summary>
432
- <section>
433
- <section class="tsd-panel tsd-member">
434
- <h3 class="tsd-anchor-link" id="constructor">
435
- <span>constructor</span
436
- ><a
437
- href="#constructor"
438
- aria-label="Permalink"
439
- class="tsd-anchor-icon"
440
- ><svg viewBox="0 0 24 24" aria-hidden="true">
441
- <use href="../assets/icons.svg#icon-anchor"></use></svg
442
- ></a>
443
- </h3>
444
- <ul class="tsd-signatures">
445
- <li class="">
446
- <div
447
- class="tsd-signature tsd-anchor-link"
448
- id="constructorurlservice"
449
- >
450
- <span class="tsd-signature-keyword">new</span>
451
- <span class="tsd-kind-constructor-signature"
452
- >UrlService</span
453
- ><span class="tsd-signature-symbol">(</span><br />    <span
454
- class="tsd-kind-parameter"
455
- >$locationProvider</span
456
- ><span class="tsd-signature-symbol">:</span>
457
- <a
458
- href="core_location_location.LocationProvider.html"
459
- class="tsd-signature-type tsd-kind-class"
460
- >LocationProvider</a
461
- ><span class="tsd-signature-symbol">,</span><br />    <span
462
- class="tsd-kind-parameter"
463
- >stateService</span
464
- ><span class="tsd-signature-symbol">:</span>
465
- <a
466
- href="router_state_state-service.StateProvider.html"
467
- class="tsd-signature-type tsd-kind-class"
468
- >StateProvider</a
469
- ><span class="tsd-signature-symbol">,</span><br />    <span
470
- class="tsd-kind-parameter"
471
- >globals</span
472
- ><span class="tsd-signature-symbol">:</span>
473
- <span class="tsd-signature-type">any</span
474
- ><span class="tsd-signature-symbol">,</span><br />    <span
475
- class="tsd-kind-parameter"
476
- >urlConfigProvider</span
477
- ><span class="tsd-signature-symbol">:</span>
478
- <a
479
- href="router_url_url-config.UrlConfigProvider.html"
480
- class="tsd-signature-type tsd-kind-class"
481
- >UrlConfigProvider</a
482
- ><span class="tsd-signature-symbol">,</span><br /><span
483
- class="tsd-signature-symbol"
484
- >)</span
485
- ><span class="tsd-signature-symbol">:</span>
486
- <a href="" class="tsd-signature-type tsd-kind-class"
487
- >UrlService</a
488
- ><a
489
- href="#constructorurlservice"
490
- aria-label="Permalink"
491
- class="tsd-anchor-icon"
492
- ><svg viewBox="0 0 24 24" aria-hidden="true">
493
- <use href="../assets/icons.svg#icon-anchor"></use></svg
494
- ></a>
495
- </div>
496
- <div class="tsd-description">
497
- <div class="tsd-parameters">
498
- <h4 class="tsd-parameters-title">Parameters</h4>
499
- <ul class="tsd-parameter-list">
500
- <li>
501
- <span
502
- ><span class="tsd-kind-parameter"
503
- >$locationProvider</span
504
- >:
505
- <a
506
- href="core_location_location.LocationProvider.html"
507
- class="tsd-signature-type tsd-kind-class"
508
- >LocationProvider</a
509
- ></span
510
- >
511
- <div class="tsd-comment tsd-typography"></div>
512
- </li>
513
- <li>
514
- <span
515
- ><span class="tsd-kind-parameter">stateService</span
516
- >:
517
- <a
518
- href="router_state_state-service.StateProvider.html"
519
- class="tsd-signature-type tsd-kind-class"
520
- >StateProvider</a
521
- ></span
522
- >
523
- <div class="tsd-comment tsd-typography"></div>
524
- </li>
525
- <li>
526
- <span
527
- ><span class="tsd-kind-parameter">globals</span>:
528
- <span class="tsd-signature-type">any</span></span
529
- >
530
- <div class="tsd-comment tsd-typography"></div>
531
- </li>
532
- <li>
533
- <span
534
- ><span class="tsd-kind-parameter"
535
- >urlConfigProvider</span
536
- >:
537
- <a
538
- href="router_url_url-config.UrlConfigProvider.html"
539
- class="tsd-signature-type tsd-kind-class"
540
- >UrlConfigProvider</a
541
- ></span
542
- >
543
- <div class="tsd-comment tsd-typography"></div>
544
- </li>
545
- </ul>
546
- </div>
547
- <h4 class="tsd-returns-title">
548
- Returns
549
- <a href="" class="tsd-signature-type tsd-kind-class"
550
- >UrlService</a
551
- >
552
- </h4>
553
- <div class="tsd-comment tsd-typography"></div>
554
- </div>
555
- </li>
556
- </ul>
557
- </section>
558
- </section>
559
- </details>
560
- <details class="tsd-panel-group tsd-member-group tsd-accordion" open>
561
- <summary class="tsd-accordion-summary" data-key="section-Properties">
562
- <svg
563
- width="20"
564
- height="20"
565
- viewBox="0 0 24 24"
566
- fill="none"
567
- aria-hidden="true"
568
- >
569
- <use href="../assets/icons.svg#icon-chevronDown"></use>
570
- </svg>
571
- <h2>Properties</h2>
572
- </summary>
573
- <section>
574
- <section class="tsd-panel tsd-member">
575
- <h3 class="tsd-anchor-link" id="_basehref">
576
- <span>_<wbr />base<wbr />Href</span
577
- ><a
578
- href="#_basehref"
579
- aria-label="Permalink"
580
- class="tsd-anchor-icon"
581
- ><svg viewBox="0 0 24 24" aria-hidden="true">
582
- <use href="../assets/icons.svg#icon-anchor"></use></svg
583
- ></a>
584
- </h3>
585
- <div class="tsd-signature">
586
- <span class="tsd-kind-property">_baseHref</span
587
- ><span class="tsd-signature-symbol">:</span>
588
- <span class="tsd-signature-type">string</span>
589
- </div>
590
- </section>
591
- <section class="tsd-panel tsd-member">
592
- <h3 class="tsd-anchor-link" id="_stoplisteningfn">
593
- <span>_<wbr />stop<wbr />Listening<wbr />Fn</span
594
- ><a
595
- href="#_stoplisteningfn"
596
- aria-label="Permalink"
597
- class="tsd-anchor-icon"
598
- ><svg viewBox="0 0 24 24" aria-hidden="true">
599
- <use href="../assets/icons.svg#icon-anchor"></use></svg
600
- ></a>
601
- </h3>
602
- <div class="tsd-signature">
603
- <span class="tsd-kind-property">_stopListeningFn</span
604
- ><span class="tsd-signature-symbol">:</span>
605
- <span class="tsd-signature-type">any</span>
606
- </div>
607
- </section>
608
- <section class="tsd-panel tsd-member">
609
- <h3 class="tsd-anchor-link" id="_urllisteners">
610
- <span>_<wbr />url<wbr />Listeners</span
611
- ><a
612
- href="#_urllisteners"
613
- aria-label="Permalink"
614
- class="tsd-anchor-icon"
615
- ><svg viewBox="0 0 24 24" aria-hidden="true">
616
- <use href="../assets/icons.svg#icon-anchor"></use></svg
617
- ></a>
618
- </h3>
619
- <div class="tsd-signature">
620
- <span class="tsd-kind-property">_urlListeners</span
621
- ><span class="tsd-signature-symbol">:</span>
622
- <span class="tsd-signature-type">any</span
623
- ><span class="tsd-signature-symbol">[]</span>
624
- </div>
625
- </section>
626
- <section class="tsd-panel tsd-member">
627
- <h3 class="tsd-anchor-link" id="browser">
628
- <span>$browser</span
629
- ><a
630
- href="#browser"
631
- aria-label="Permalink"
632
- class="tsd-anchor-icon"
633
- ><svg viewBox="0 0 24 24" aria-hidden="true">
634
- <use href="../assets/icons.svg#icon-anchor"></use></svg
635
- ></a>
636
- </h3>
637
- <div class="tsd-signature">
638
- <span class="tsd-kind-property">$browser</span
639
- ><span class="tsd-signature-symbol">:</span>
640
- <a
641
- href="services_browser.Browser.html"
642
- class="tsd-signature-type tsd-kind-class"
643
- >Browser</a
644
- >
645
- </div>
646
- </section>
647
- <section class="tsd-panel tsd-member">
648
- <h3 class="tsd-anchor-link" id="get">
649
- <span>$get</span
650
- ><a href="#get" aria-label="Permalink" class="tsd-anchor-icon"
651
- ><svg viewBox="0 0 24 24" aria-hidden="true">
652
- <use href="../assets/icons.svg#icon-anchor"></use></svg
653
- ></a>
654
- </h3>
655
- <div class="tsd-signature">
656
- <span class="tsd-kind-property">$get</span
657
- ><span class="tsd-signature-symbol">:</span> (<br />    <span
658
- class="tsd-signature-symbol"
659
- >|</span
660
- >
661
- <span class="tsd-signature-type">string</span><br />    <span
662
- class="tsd-signature-symbol"
663
- >|</span
664
- >
665
- (<br />        <span class="tsd-signature-symbol">(</span
666
- ><br />            <span class="tsd-kind-parameter"
667
- >$location</span
668
- ><span class="tsd-signature-symbol">:</span>
669
- <a
670
- href="core_location_location.Location.html"
671
- class="tsd-signature-type tsd-kind-class"
672
- >Location</a
673
- ><span class="tsd-signature-symbol">,</span
674
- ><br />            <span class="tsd-kind-parameter"
675
- >$browser</span
676
- ><span class="tsd-signature-symbol">:</span>
677
- <a
678
- href="services_browser.Browser.html"
679
- class="tsd-signature-type tsd-kind-class"
680
- >Browser</a
681
- ><span class="tsd-signature-symbol">,</span
682
- ><br />            <span class="tsd-kind-parameter"
683
- >$rootScope</span
684
- ><span class="tsd-signature-symbol">:</span>
685
- <a
686
- href="core_scope_scope.Scope.html"
687
- class="tsd-signature-type tsd-kind-class"
688
- >Scope</a
689
- ><span class="tsd-signature-symbol">,</span><br />        <span
690
- class="tsd-signature-symbol"
691
- >)</span
692
- >
693
- <span class="tsd-signature-symbol">=&gt;</span>
694
- <a href="" class="tsd-signature-type tsd-kind-class"
695
- >UrlService</a
696
- ><br />    )<br />)<span class="tsd-signature-symbol">[]</span
697
- ><span class="tsd-signature-symbol"> = ...</span>
698
- </div>
699
- <div class="tsd-type-declaration">
700
- <h4>Type declaration</h4>
701
- <ul>
702
- <li><span class="tsd-signature-type">string</span></li>
703
- <li>
704
- <span class="tsd-signature-symbol">(</span
705
- ><span class="tsd-kind-parameter">$location</span
706
- ><span class="tsd-signature-symbol">:</span>
707
- <a
708
- href="core_location_location.Location.html"
709
- class="tsd-signature-type tsd-kind-class"
710
- >Location</a
711
- ><span class="tsd-signature-symbol">,</span>
712
- <span class="tsd-kind-parameter">$browser</span
713
- ><span class="tsd-signature-symbol">:</span>
714
- <a
715
- href="services_browser.Browser.html"
716
- class="tsd-signature-type tsd-kind-class"
717
- >Browser</a
718
- ><span class="tsd-signature-symbol">,</span>
719
- <span class="tsd-kind-parameter">$rootScope</span
720
- ><span class="tsd-signature-symbol">:</span>
721
- <a
722
- href="core_scope_scope.Scope.html"
723
- class="tsd-signature-type tsd-kind-class"
724
- >Scope</a
725
- ><span class="tsd-signature-symbol">)</span>
726
- <span class="tsd-signature-symbol">=&gt;</span>
727
- <a href="" class="tsd-signature-type tsd-kind-class"
728
- >UrlService</a
729
- >
730
- <ul class="tsd-parameters">
731
- <li class="tsd-parameter-signature">
732
- <ul class="tsd-signatures">
733
- <li class="tsd-signature">
734
- <span class="tsd-signature-symbol">(</span
735
- ><span class="tsd-kind-parameter">$location</span
736
- ><span class="tsd-signature-symbol">:</span>
737
- <a
738
- href="core_location_location.Location.html"
739
- class="tsd-signature-type tsd-kind-class"
740
- >Location</a
741
- ><span class="tsd-signature-symbol">,</span>
742
- <span class="tsd-kind-parameter">$browser</span
743
- ><span class="tsd-signature-symbol">:</span>
744
- <a
745
- href="services_browser.Browser.html"
746
- class="tsd-signature-type tsd-kind-class"
747
- >Browser</a
748
- ><span class="tsd-signature-symbol">,</span>
749
- <span class="tsd-kind-parameter">$rootScope</span
750
- ><span class="tsd-signature-symbol">:</span>
751
- <a
752
- href="core_scope_scope.Scope.html"
753
- class="tsd-signature-type tsd-kind-class"
754
- >Scope</a
755
- ><span class="tsd-signature-symbol">)</span
756
- ><span class="tsd-signature-symbol">:</span>
757
- <a href="" class="tsd-signature-type tsd-kind-class"
758
- >UrlService</a
759
- >
760
- </li>
761
- <li class="tsd-description">
762
- <div class="tsd-parameters">
763
- <h4 class="tsd-parameters-title">Parameters</h4>
764
- <ul class="tsd-parameter-list">
765
- <li>
766
- <span
767
- ><span class="tsd-kind-parameter"
768
- >$location</span
769
- >:
770
- <a
771
- href="core_location_location.Location.html"
772
- class="tsd-signature-type tsd-kind-class"
773
- >Location</a
774
- ></span
775
- >
776
- <div class="tsd-comment tsd-typography"></div>
777
- </li>
778
- <li>
779
- <span
780
- ><span class="tsd-kind-parameter"
781
- >$browser</span
782
- >:
783
- <a
784
- href="services_browser.Browser.html"
785
- class="tsd-signature-type tsd-kind-class"
786
- >Browser</a
787
- ></span
788
- >
789
- <div class="tsd-comment tsd-typography"></div>
790
- </li>
791
- <li>
792
- <span
793
- ><span class="tsd-kind-parameter"
794
- >$rootScope</span
795
- >:
796
- <a
797
- href="core_scope_scope.Scope.html"
798
- class="tsd-signature-type tsd-kind-class"
799
- >Scope</a
800
- ></span
801
- >
802
- <div class="tsd-comment tsd-typography"></div>
803
- </li>
804
- </ul>
805
- </div>
806
- <h4 class="tsd-returns-title">
807
- Returns
808
- <a
809
- href=""
810
- class="tsd-signature-type tsd-kind-class"
811
- >UrlService</a
812
- >
813
- </h4>
814
- <div class="tsd-comment tsd-typography"></div>
815
- </li>
816
- </ul>
817
- </li>
818
- </ul>
819
- </li>
820
- </ul>
821
- </div>
822
- </section>
823
- <section class="tsd-panel tsd-member">
824
- <h3 class="tsd-anchor-link" id="location">
825
- <span>$location</span
826
- ><a
827
- href="#location"
828
- aria-label="Permalink"
829
- class="tsd-anchor-icon"
830
- ><svg viewBox="0 0 24 24" aria-hidden="true">
831
- <use href="../assets/icons.svg#icon-anchor"></use></svg
832
- ></a>
833
- </h3>
834
- <div class="tsd-signature">
835
- <span class="tsd-kind-property">$location</span
836
- ><span class="tsd-signature-symbol">:</span>
837
- <a
838
- href="core_location_location.Location.html"
839
- class="tsd-signature-type tsd-kind-class"
840
- >Location</a
841
- >
842
- </div>
843
- </section>
844
- <section class="tsd-panel tsd-member">
845
- <h3 class="tsd-anchor-link" id="locationprovider">
846
- <span>$location<wbr />Provider</span
847
- ><a
848
- href="#locationprovider"
849
- aria-label="Permalink"
850
- class="tsd-anchor-icon"
851
- ><svg viewBox="0 0 24 24" aria-hidden="true">
852
- <use href="../assets/icons.svg#icon-anchor"></use></svg
853
- ></a>
854
- </h3>
855
- <div class="tsd-signature">
856
- <span class="tsd-kind-property">$locationProvider</span
857
- ><span class="tsd-signature-symbol">:</span>
858
- <a
859
- href="core_location_location.LocationProvider.html"
860
- class="tsd-signature-type tsd-kind-class"
861
- >LocationProvider</a
862
- >
863
- </div>
864
- </section>
865
- <section class="tsd-panel tsd-member">
866
- <h3 class="tsd-anchor-link" id="config">
867
- <span>config</span
868
- ><a
869
- href="#config"
870
- aria-label="Permalink"
871
- class="tsd-anchor-icon"
872
- ><svg viewBox="0 0 24 24" aria-hidden="true">
873
- <use href="../assets/icons.svg#icon-anchor"></use></svg
874
- ></a>
875
- </h3>
876
- <div class="tsd-signature">
877
- <span class="tsd-kind-property">config</span
878
- ><span class="tsd-signature-symbol">:</span>
879
- <a
880
- href="router_url_url-config.UrlConfigProvider.html"
881
- class="tsd-signature-type tsd-kind-class"
882
- >UrlConfigProvider</a
883
- >
884
- </div>
885
- <div class="tsd-comment tsd-typography">
886
- <p>
887
- The nested [[UrlConfig]] API to configure the URL and retrieve
888
- URL information
889
- </p>
890
- <p>See: [[UrlConfig]] for details</p>
891
- </div>
892
- <div class="tsd-comment tsd-typography"></div>
893
- </section>
894
- <section class="tsd-panel tsd-member">
895
- <h3 class="tsd-anchor-link" id="hash">
896
- <span>hash</span
897
- ><a href="#hash" aria-label="Permalink" class="tsd-anchor-icon"
898
- ><svg viewBox="0 0 24 24" aria-hidden="true">
899
- <use href="../assets/icons.svg#icon-anchor"></use></svg
900
- ></a>
901
- </h3>
902
- <div class="tsd-signature">
903
- <span class="tsd-kind-property">hash</span
904
- ><span class="tsd-signature-symbol">:</span>
905
- <span class="tsd-signature-symbol">()</span>
906
- <span class="tsd-signature-symbol">=&gt;</span>
907
- <span class="tsd-signature-type">string</span>
908
- <span class="tsd-signature-symbol">|</span>
909
- <a
910
- href="core_location_location.Location.html"
911
- class="tsd-signature-type tsd-kind-class"
912
- >Location</a
913
- >
914
- </div>
915
- <div class="tsd-comment tsd-typography">
916
- <p>Gets the hash part of the current url</p>
917
- <p>
918
- If the current URL is
919
- <code>/some/path?query=value#anchor</code>, this returns
920
- <code>anchor</code>
921
- </p>
922
- </div>
923
- <div class="tsd-type-declaration">
924
- <h4>Type declaration</h4>
925
- <ul class="tsd-parameters">
926
- <li class="tsd-parameter-signature">
927
- <ul class="tsd-signatures">
928
- <li class="tsd-signature">
929
- <span class="tsd-signature-symbol">()</span
930
- ><span class="tsd-signature-symbol">:</span>
931
- <span class="tsd-signature-type">string</span>
932
- <span class="tsd-signature-symbol">|</span>
933
- <a
934
- href="core_location_location.Location.html"
935
- class="tsd-signature-type tsd-kind-class"
936
- >Location</a
937
- >
938
- </li>
939
- <li class="tsd-description">
940
- <h4 class="tsd-returns-title">
941
- Returns
942
- <span class="tsd-signature-type">string</span>
943
- <span class="tsd-signature-symbol">|</span>
944
- <a
945
- href="core_location_location.Location.html"
946
- class="tsd-signature-type tsd-kind-class"
947
- >Location</a
948
- >
949
- </h4>
950
- <p>the hash (anchor) portion of the url</p>
951
- <div class="tsd-comment tsd-typography"></div>
952
- </li>
953
- </ul>
954
- </li>
955
- </ul>
956
- </div>
957
- <div class="tsd-comment tsd-typography"></div>
958
- </section>
959
- <section class="tsd-panel tsd-member">
960
- <h3 class="tsd-anchor-link" id="location-1">
961
- <span>location</span
962
- ><a
963
- href="#location-1"
964
- aria-label="Permalink"
965
- class="tsd-anchor-icon"
966
- ><svg viewBox="0 0 24 24" aria-hidden="true">
967
- <use href="../assets/icons.svg#icon-anchor"></use></svg
968
- ></a>
969
- </h3>
970
- <div class="tsd-signature">
971
- <span class="tsd-kind-property">location</span
972
- ><span class="tsd-signature-symbol">:</span>
973
- <span class="tsd-signature-type">string</span>
974
- <span class="tsd-signature-symbol">|</span>
975
- <a
976
- href="core_location_location.Location.html"
977
- class="tsd-signature-type tsd-kind-class"
978
- >Location</a
979
- >
980
- </div>
981
- </section>
982
- <section class="tsd-panel tsd-member">
983
- <h3 class="tsd-anchor-link" id="paramfactory">
984
- <span>param<wbr />Factory</span
985
- ><a
986
- href="#paramfactory"
987
- aria-label="Permalink"
988
- class="tsd-anchor-icon"
989
- ><svg viewBox="0 0 24 24" aria-hidden="true">
990
- <use href="../assets/icons.svg#icon-anchor"></use></svg
991
- ></a>
992
- </h3>
993
- <div class="tsd-signature">
994
- <span class="tsd-kind-property">paramFactory</span
995
- ><span class="tsd-signature-symbol">:</span>
996
- <a
997
- href="router_params_param-factory.ParamFactory.html"
998
- class="tsd-signature-type tsd-kind-class"
999
- >ParamFactory</a
1000
- >
1001
- </div>
1002
- <div class="tsd-comment tsd-typography">
1003
- <p>Creates a new [[Param]] for a given location (DefType)</p>
1004
- </div>
1005
- <div class="tsd-comment tsd-typography"></div>
1006
- </section>
1007
- <section class="tsd-panel tsd-member">
1008
- <h3 class="tsd-anchor-link" id="path">
1009
- <span>path</span
1010
- ><a href="#path" aria-label="Permalink" class="tsd-anchor-icon"
1011
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1012
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1013
- ></a>
1014
- </h3>
1015
- <div class="tsd-signature">
1016
- <span class="tsd-kind-property">path</span
1017
- ><span class="tsd-signature-symbol">:</span>
1018
- <span class="tsd-signature-symbol">()</span>
1019
- <span class="tsd-signature-symbol">=&gt;</span>
1020
- <span class="tsd-signature-type">any</span>
1021
- </div>
1022
- <div class="tsd-comment tsd-typography">
1023
- <p>Gets the path part of the current url</p>
1024
- <p>
1025
- If the current URL is
1026
- <code>/some/path?query=value#anchor</code>, this returns
1027
- <code>/some/path</code>
1028
- </p>
1029
- </div>
1030
- <div class="tsd-type-declaration">
1031
- <h4>Type declaration</h4>
1032
- <ul class="tsd-parameters">
1033
- <li class="tsd-parameter-signature">
1034
- <ul class="tsd-signatures">
1035
- <li class="tsd-signature">
1036
- <span class="tsd-signature-symbol">()</span
1037
- ><span class="tsd-signature-symbol">:</span>
1038
- <span class="tsd-signature-type">any</span>
1039
- </li>
1040
- <li class="tsd-description">
1041
- <h4 class="tsd-returns-title">
1042
- Returns <span class="tsd-signature-type">any</span>
1043
- </h4>
1044
- <p>the path portion of the url</p>
1045
- <div class="tsd-comment tsd-typography"></div>
1046
- </li>
1047
- </ul>
1048
- </li>
1049
- </ul>
1050
- </div>
1051
- <div class="tsd-comment tsd-typography"></div>
1052
- </section>
1053
- <section class="tsd-panel tsd-member">
1054
- <h3 class="tsd-anchor-link" id="rules">
1055
- <span>rules</span
1056
- ><a href="#rules" aria-label="Permalink" class="tsd-anchor-icon"
1057
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1058
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1059
- ></a>
1060
- </h3>
1061
- <div class="tsd-signature">
1062
- <span class="tsd-kind-property">rules</span
1063
- ><span class="tsd-signature-symbol">:</span>
1064
- <a
1065
- href="router_url_url-rules.UrlRules.html"
1066
- class="tsd-signature-type tsd-kind-class"
1067
- >UrlRules</a
1068
- >
1069
- </div>
1070
- <div class="tsd-comment tsd-typography">
1071
- <p>
1072
- The nested [[UrlRules]] API for managing URL rules and
1073
- rewrites
1074
- </p>
1075
- <p>See: [[UrlRules]] for details</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="search">
1081
- <span>search</span
1082
- ><a
1083
- href="#search"
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">search</span
1092
- ><span class="tsd-signature-symbol">:</span>
1093
- <span class="tsd-signature-symbol">()</span>
1094
- <span class="tsd-signature-symbol">=&gt;</span>
1095
- <span class="tsd-signature-type">any</span>
1096
- </div>
1097
- <div class="tsd-comment tsd-typography">
1098
- <p>Gets the search part of the current url as an object</p>
1099
- <p>
1100
- If the current URL is
1101
- <code>/some/path?query=value#anchor</code>, this returns
1102
- <code>{ query: 'value' }</code>
1103
- </p>
1104
- </div>
1105
- <div class="tsd-type-declaration">
1106
- <h4>Type declaration</h4>
1107
- <ul class="tsd-parameters">
1108
- <li class="tsd-parameter-signature">
1109
- <ul class="tsd-signatures">
1110
- <li class="tsd-signature">
1111
- <span class="tsd-signature-symbol">()</span
1112
- ><span class="tsd-signature-symbol">:</span>
1113
- <span class="tsd-signature-type">any</span>
1114
- </li>
1115
- <li class="tsd-description">
1116
- <h4 class="tsd-returns-title">
1117
- Returns <span class="tsd-signature-type">any</span>
1118
- </h4>
1119
- <p>
1120
- the search (query) portion of the url, as an object
1121
- </p>
1122
- <div class="tsd-comment tsd-typography"></div>
1123
- </li>
1124
- </ul>
1125
- </li>
1126
- </ul>
1127
- </div>
1128
- <div class="tsd-comment tsd-typography"></div>
1129
- </section>
1130
- <section class="tsd-panel tsd-member">
1131
- <h3 class="tsd-anchor-link" id="stateservice">
1132
- <span>state<wbr />Service</span
1133
- ><a
1134
- href="#stateservice"
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">stateService</span
1143
- ><span class="tsd-signature-symbol">:</span>
1144
- <a
1145
- href="router_state_state-service.StateProvider.html"
1146
- class="tsd-signature-type tsd-kind-class"
1147
- >StateProvider</a
1148
- >
1149
- </div>
1150
- </section>
1151
- <section class="tsd-panel tsd-member">
1152
- <h3 class="tsd-anchor-link" id="urlrulefactory">
1153
- <span>url<wbr />Rule<wbr />Factory</span
1154
- ><a
1155
- href="#urlrulefactory"
1156
- aria-label="Permalink"
1157
- class="tsd-anchor-icon"
1158
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1159
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1160
- ></a>
1161
- </h3>
1162
- <div class="tsd-signature">
1163
- <span class="tsd-kind-property">urlRuleFactory</span
1164
- ><span class="tsd-signature-symbol">:</span>
1165
- <a
1166
- href="router_url_url-rule.UrlRuleFactory.html"
1167
- class="tsd-signature-type tsd-kind-class"
1168
- >UrlRuleFactory</a
1169
- >
1170
- </div>
1171
- <div class="tsd-comment tsd-typography">
1172
- <p>Provides services related to the URL</p>
1173
- </div>
1174
- <div class="tsd-comment tsd-typography"></div>
1175
- </section>
1176
- <section class="tsd-panel tsd-member">
1177
- <h3 class="tsd-anchor-link" id="inject">
1178
- <code class="tsd-tag">Static</code><span>$inject</span
1179
- ><a
1180
- href="#inject"
1181
- aria-label="Permalink"
1182
- class="tsd-anchor-icon"
1183
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1184
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1185
- ></a>
1186
- </h3>
1187
- <div class="tsd-signature">
1188
- <span class="tsd-kind-property">$inject</span
1189
- ><span class="tsd-signature-symbol">:</span>
1190
- <span class="tsd-signature-type">string</span
1191
- ><span class="tsd-signature-symbol">[]</span
1192
- ><span class="tsd-signature-symbol"> = ...</span>
1193
- </div>
1194
- </section>
1195
- </section>
1196
- </details>
1197
- <details class="tsd-panel-group tsd-member-group tsd-accordion" open>
1198
- <summary class="tsd-accordion-summary" data-key="section-Methods">
1199
- <svg
1200
- width="20"
1201
- height="20"
1202
- viewBox="0 0 24 24"
1203
- fill="none"
1204
- aria-hidden="true"
1205
- >
1206
- <use href="../assets/icons.svg#icon-chevronDown"></use>
1207
- </svg>
1208
- <h2>Methods</h2>
1209
- </summary>
1210
- <section>
1211
- <section class="tsd-panel tsd-member">
1212
- <h3 class="tsd-anchor-link" id="basehref">
1213
- <span>base<wbr />Href</span
1214
- ><a
1215
- href="#basehref"
1216
- aria-label="Permalink"
1217
- class="tsd-anchor-icon"
1218
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1219
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1220
- ></a>
1221
- </h3>
1222
- <ul class="tsd-signatures">
1223
- <li class="">
1224
- <div class="tsd-signature tsd-anchor-link" id="basehref-1">
1225
- <span class="tsd-kind-call-signature">baseHref</span
1226
- ><span class="tsd-signature-symbol">()</span
1227
- ><span class="tsd-signature-symbol">:</span>
1228
- <span class="tsd-signature-type">string</span
1229
- ><a
1230
- href="#basehref-1"
1231
- aria-label="Permalink"
1232
- class="tsd-anchor-icon"
1233
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1234
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1235
- ></a>
1236
- </div>
1237
- <div class="tsd-description">
1238
- <h4 class="tsd-returns-title">
1239
- Returns <span class="tsd-signature-type">string</span>
1240
- </h4>
1241
- </div>
1242
- </li>
1243
- </ul>
1244
- </section>
1245
- <section class="tsd-panel tsd-member">
1246
- <h3 class="tsd-anchor-link" id="compile">
1247
- <span>compile</span
1248
- ><a
1249
- href="#compile"
1250
- aria-label="Permalink"
1251
- class="tsd-anchor-icon"
1252
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1253
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1254
- ></a>
1255
- </h3>
1256
- <ul class="tsd-signatures">
1257
- <li class="">
1258
- <div class="tsd-signature tsd-anchor-link" id="compile-1">
1259
- <span class="tsd-kind-call-signature">compile</span
1260
- ><span class="tsd-signature-symbol">(</span
1261
- ><span class="tsd-kind-parameter">pattern</span
1262
- ><span class="tsd-signature-symbol">:</span>
1263
- <span class="tsd-signature-type">any</span
1264
- ><span class="tsd-signature-symbol">,</span>
1265
- <span class="tsd-kind-parameter">config</span
1266
- ><span class="tsd-signature-symbol">:</span>
1267
- <span class="tsd-signature-type">any</span
1268
- ><span class="tsd-signature-symbol">)</span
1269
- ><span class="tsd-signature-symbol">:</span>
1270
- <a
1271
- href="router_url_url-matcher.UrlMatcher.html"
1272
- class="tsd-signature-type tsd-kind-class"
1273
- >UrlMatcher</a
1274
- ><a
1275
- href="#compile-1"
1276
- aria-label="Permalink"
1277
- class="tsd-anchor-icon"
1278
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1279
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1280
- ></a>
1281
- </div>
1282
- <div class="tsd-description">
1283
- <div class="tsd-comment tsd-typography">
1284
- <p>Creates a [[UrlMatcher]] for the specified pattern.</p>
1285
- </div>
1286
- <div class="tsd-parameters">
1287
- <h4 class="tsd-parameters-title">Parameters</h4>
1288
- <ul class="tsd-parameter-list">
1289
- <li>
1290
- <span
1291
- ><span class="tsd-kind-parameter">pattern</span>:
1292
- <span class="tsd-signature-type">any</span></span
1293
- >
1294
- <div class="tsd-comment tsd-typography">
1295
- <p>The URL pattern.</p>
1296
- </div>
1297
- <div class="tsd-comment tsd-typography"></div>
1298
- </li>
1299
- <li>
1300
- <span
1301
- ><span class="tsd-kind-parameter">config</span>:
1302
- <span class="tsd-signature-type">any</span></span
1303
- >
1304
- <div class="tsd-comment tsd-typography">
1305
- <p>The config object hash.</p>
1306
- </div>
1307
- <div class="tsd-comment tsd-typography"></div>
1308
- </li>
1309
- </ul>
1310
- </div>
1311
- <h4 class="tsd-returns-title">
1312
- Returns
1313
- <a
1314
- href="router_url_url-matcher.UrlMatcher.html"
1315
- class="tsd-signature-type tsd-kind-class"
1316
- >UrlMatcher</a
1317
- >
1318
- </h4>
1319
- <p>The UrlMatcher.</p>
1320
- <div class="tsd-comment tsd-typography"></div>
1321
- </div>
1322
- </li>
1323
- </ul>
1324
- </section>
1325
- <section class="tsd-panel tsd-member">
1326
- <h3 class="tsd-anchor-link" id="href">
1327
- <span>href</span
1328
- ><a href="#href" aria-label="Permalink" class="tsd-anchor-icon"
1329
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1330
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1331
- ></a>
1332
- </h3>
1333
- <ul class="tsd-signatures">
1334
- <li class="">
1335
- <div class="tsd-signature tsd-anchor-link" id="href-1">
1336
- <span class="tsd-kind-call-signature">href</span
1337
- ><span class="tsd-signature-symbol">(</span
1338
- ><span class="tsd-kind-parameter">urlMatcher</span
1339
- ><span class="tsd-signature-symbol">:</span>
1340
- <span class="tsd-signature-type">any</span
1341
- ><span class="tsd-signature-symbol">,</span>
1342
- <span class="tsd-kind-parameter">params</span
1343
- ><span class="tsd-signature-symbol">:</span>
1344
- <span class="tsd-signature-type">any</span
1345
- ><span class="tsd-signature-symbol">,</span>
1346
- <span class="tsd-kind-parameter">options</span
1347
- ><span class="tsd-signature-symbol">:</span>
1348
- <span class="tsd-signature-type">any</span
1349
- ><span class="tsd-signature-symbol">)</span
1350
- ><span class="tsd-signature-symbol">:</span>
1351
- <span class="tsd-signature-type">any</span
1352
- ><a
1353
- href="#href-1"
1354
- aria-label="Permalink"
1355
- class="tsd-anchor-icon"
1356
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1357
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1358
- ></a>
1359
- </div>
1360
- <div class="tsd-description">
1361
- <div class="tsd-comment tsd-typography">
1362
- <p>
1363
- Builds and returns a URL with interpolated parameters
1364
- </p>
1365
- <h4 id="example" class="tsd-anchor-link">
1366
- Example:<a
1367
- href="#example"
1368
- aria-label="Permalink"
1369
- class="tsd-anchor-icon"
1370
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1371
- <use
1372
- href="../assets/icons.svg#icon-anchor"
1373
- ></use></svg
1374
- ></a>
1375
- </h4>
1376
- <pre><code class="js"><span class="hl-10">matcher</span><span class="hl-1"> = </span><span class="hl-10">$umf</span><span class="hl-1">.</span><span class="hl-0">compile</span><span class="hl-1">(</span><span class="hl-2">&quot;/about/:person&quot;</span><span class="hl-1">);</span><br/><span class="hl-10">params</span><span class="hl-1"> = { </span><span class="hl-10">person:</span><span class="hl-1"> </span><span class="hl-2">&quot;bob&quot;</span><span class="hl-1"> };</span><br/><span class="hl-10">$bob</span><span class="hl-1"> = </span><span class="hl-10">$urlService</span><span class="hl-1">.</span><span class="hl-0">href</span><span class="hl-1">(</span><span class="hl-10">matcher</span><span class="hl-1">, </span><span class="hl-10">params</span><span class="hl-1">);</span><br/><span class="hl-9">// $bob == &quot;/about/bob&quot;;</span>
1377
- </code><button type="button">Copy</button></pre>
1378
- </div>
1379
- <div class="tsd-parameters">
1380
- <h4 class="tsd-parameters-title">Parameters</h4>
1381
- <ul class="tsd-parameter-list">
1382
- <li>
1383
- <span
1384
- ><span class="tsd-kind-parameter">urlMatcher</span>:
1385
- <span class="tsd-signature-type">any</span></span
1386
- >
1387
- <div class="tsd-comment tsd-typography">
1388
- <p>
1389
- The [[UrlMatcher]] object which is used as the
1390
- template of the URL to generate.
1391
- </p>
1392
- </div>
1393
- <div class="tsd-comment tsd-typography"></div>
1394
- </li>
1395
- <li>
1396
- <span
1397
- ><span class="tsd-kind-parameter">params</span>:
1398
- <span class="tsd-signature-type">any</span></span
1399
- >
1400
- <div class="tsd-comment tsd-typography">
1401
- <p>
1402
- An object of parameter values to fill the
1403
- matcher's required parameters.
1404
- </p>
1405
- </div>
1406
- <div class="tsd-comment tsd-typography"></div>
1407
- </li>
1408
- <li>
1409
- <span
1410
- ><span class="tsd-kind-parameter">options</span>:
1411
- <span class="tsd-signature-type">any</span></span
1412
- >
1413
- <div class="tsd-comment tsd-typography">
1414
- <p>Options object. The options are:</p>
1415
- <ul>
1416
- <li>
1417
- <strong><code>absolute</code></strong> -
1418
- {boolean=false}, If true will generate an
1419
- absolute url, e.g. &quot;<a
1420
- href="http://www.example.com/fullurl"
1421
- >http://www.example.com/fullurl</a
1422
- >&quot;.
1423
- </li>
1424
- </ul>
1425
- </div>
1426
- <div class="tsd-comment tsd-typography"></div>
1427
- </li>
1428
- </ul>
1429
- </div>
1430
- <h4 class="tsd-returns-title">
1431
- Returns <span class="tsd-signature-type">any</span>
1432
- </h4>
1433
- <p>
1434
- Returns the fully compiled URL, or <code>null</code> if
1435
- <code>params</code> fail validation against
1436
- <code>urlMatcher</code>
1437
- </p>
1438
- <div class="tsd-comment tsd-typography"></div>
1439
- </div>
1440
- </li>
1441
- </ul>
1442
- </section>
1443
- <section class="tsd-panel tsd-member">
1444
- <h3 class="tsd-anchor-link" id="html5mode">
1445
- <span>html5<wbr />Mode</span
1446
- ><a
1447
- href="#html5mode"
1448
- aria-label="Permalink"
1449
- class="tsd-anchor-icon"
1450
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1451
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1452
- ></a>
1453
- </h3>
1454
- <ul class="tsd-signatures">
1455
- <li class="">
1456
- <div class="tsd-signature tsd-anchor-link" id="html5mode-1">
1457
- <span class="tsd-kind-call-signature">html5Mode</span
1458
- ><span class="tsd-signature-symbol">()</span
1459
- ><span class="tsd-signature-symbol">:</span>
1460
- <span class="tsd-signature-type">boolean</span
1461
- ><a
1462
- href="#html5mode-1"
1463
- aria-label="Permalink"
1464
- class="tsd-anchor-icon"
1465
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1466
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1467
- ></a>
1468
- </div>
1469
- <div class="tsd-description">
1470
- <h4 class="tsd-returns-title">
1471
- Returns <span class="tsd-signature-type">boolean</span>
1472
- </h4>
1473
- <div class="tsd-comment tsd-typography"></div>
1474
- </div>
1475
- </li>
1476
- </ul>
1477
- </section>
1478
- <section class="tsd-panel tsd-member">
1479
- <h3 class="tsd-anchor-link" id="ismatcher">
1480
- <span>is<wbr />Matcher</span
1481
- ><a
1482
- href="#ismatcher"
1483
- aria-label="Permalink"
1484
- class="tsd-anchor-icon"
1485
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1486
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1487
- ></a>
1488
- </h3>
1489
- <ul class="tsd-signatures">
1490
- <li class="">
1491
- <div class="tsd-signature tsd-anchor-link" id="ismatcher-1">
1492
- <span class="tsd-kind-call-signature">isMatcher</span
1493
- ><span class="tsd-signature-symbol">(</span
1494
- ><span class="tsd-kind-parameter">object</span
1495
- ><span class="tsd-signature-symbol">:</span>
1496
- <span class="tsd-signature-type">any</span
1497
- ><span class="tsd-signature-symbol">)</span
1498
- ><span class="tsd-signature-symbol">:</span>
1499
- <span class="tsd-signature-type">boolean</span
1500
- ><a
1501
- href="#ismatcher-1"
1502
- aria-label="Permalink"
1503
- class="tsd-anchor-icon"
1504
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1505
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1506
- ></a>
1507
- </div>
1508
- <div class="tsd-description">
1509
- <div class="tsd-comment tsd-typography">
1510
- <p>
1511
- Returns true if the specified object is a
1512
- [[UrlMatcher]], or false otherwise.
1513
- </p>
1514
- </div>
1515
- <div class="tsd-parameters">
1516
- <h4 class="tsd-parameters-title">Parameters</h4>
1517
- <ul class="tsd-parameter-list">
1518
- <li>
1519
- <span
1520
- ><span class="tsd-kind-parameter">object</span>:
1521
- <span class="tsd-signature-type">any</span></span
1522
- >
1523
- <div class="tsd-comment tsd-typography">
1524
- <p>The object to perform the type check against.</p>
1525
- </div>
1526
- <div class="tsd-comment tsd-typography"></div>
1527
- </li>
1528
- </ul>
1529
- </div>
1530
- <h4 class="tsd-returns-title">
1531
- Returns <span class="tsd-signature-type">boolean</span>
1532
- </h4>
1533
- <p>
1534
- <code>true</code> if the object matches the
1535
- <code>UrlMatcher</code> interface, by implementing all the
1536
- same methods.
1537
- </p>
1538
- <div class="tsd-comment tsd-typography"></div>
1539
- </div>
1540
- </li>
1541
- </ul>
1542
- </section>
1543
- <section class="tsd-panel tsd-member">
1544
- <h3 class="tsd-anchor-link" id="listen">
1545
- <span>listen</span
1546
- ><a
1547
- href="#listen"
1548
- aria-label="Permalink"
1549
- class="tsd-anchor-icon"
1550
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1551
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1552
- ></a>
1553
- </h3>
1554
- <ul class="tsd-signatures">
1555
- <li class="">
1556
- <div class="tsd-signature tsd-anchor-link" id="listen-1">
1557
- <span class="tsd-kind-call-signature">listen</span
1558
- ><span class="tsd-signature-symbol">(</span
1559
- ><span class="tsd-kind-parameter">enabled</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">any</span
1565
- ><a
1566
- href="#listen-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>Starts or stops listening for URL changes</p>
1576
- <p>
1577
- Call this sometime after calling [[deferIntercept]] to
1578
- start monitoring the url. This causes ng-router to start
1579
- listening for changes to the URL, if it wasn't already
1580
- listening.
1581
- </p>
1582
- <p>
1583
- If called with <code>false</code>, ng-router will stop
1584
- listening (call listen(true) to start listening again).
1585
- </p>
1586
- <h4 id="example-1" class="tsd-anchor-link">
1587
- Example:<a
1588
- href="#example-1"
1589
- aria-label="Permalink"
1590
- class="tsd-anchor-icon"
1591
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1592
- <use
1593
- href="../assets/icons.svg#icon-anchor"
1594
- ></use></svg
1595
- ></a>
1596
- </h4>
1597
- <pre><code class="js"><br/><span class="hl-0">fetch</span><span class="hl-1">(</span><span class="hl-2">&#39;/states.json&#39;</span><span class="hl-1">).</span><span class="hl-0">then</span><span class="hl-1">(</span><span class="hl-10">resp</span><span class="hl-1"> </span><span class="hl-11">=&gt;</span><span class="hl-1"> </span><span class="hl-10">resp</span><span class="hl-1">.</span><span class="hl-0">json</span><span class="hl-1">()).</span><span class="hl-0">then</span><span class="hl-1">(</span><span class="hl-10">data</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">data</span><span class="hl-1">.</span><span class="hl-0">forEach</span><span class="hl-1">(</span><span class="hl-10">state</span><span class="hl-1"> </span><span class="hl-11">=&gt;</span><span class="hl-1"> </span><span class="hl-10">$stateRegistry</span><span class="hl-1">.</span><span class="hl-0">register</span><span class="hl-1">(</span><span class="hl-10">state</span><span class="hl-1">));</span><br/><span class="hl-1"> </span><span class="hl-9">// Start responding to URL changes</span><br/><span class="hl-1"> </span><span class="hl-10">urlService</span><span class="hl-1">.</span><span class="hl-0">listen</span><span class="hl-1">();</span><br/><span class="hl-1"> </span><span class="hl-10">urlService</span><span class="hl-1">.</span><span class="hl-0">sync</span><span class="hl-1">();</span><br/><span class="hl-1">});</span>
1598
- </code><button type="button">Copy</button></pre>
1599
- </div>
1600
- <div class="tsd-parameters">
1601
- <h4 class="tsd-parameters-title">Parameters</h4>
1602
- <ul class="tsd-parameter-list">
1603
- <li>
1604
- <span
1605
- ><span class="tsd-kind-parameter">enabled</span>:
1606
- <span class="tsd-signature-type">any</span></span
1607
- >
1608
- <div class="tsd-comment tsd-typography">
1609
- <p>
1610
- <code>true</code> or <code>false</code> to start
1611
- or stop listening to URL changes
1612
- </p>
1613
- </div>
1614
- <div class="tsd-comment tsd-typography"></div>
1615
- </li>
1616
- </ul>
1617
- </div>
1618
- <h4 class="tsd-returns-title">
1619
- Returns <span class="tsd-signature-type">any</span>
1620
- </h4>
1621
- <div class="tsd-comment tsd-typography"></div>
1622
- </div>
1623
- </li>
1624
- </ul>
1625
- </section>
1626
- <section class="tsd-panel tsd-member">
1627
- <h3 class="tsd-anchor-link" id="match">
1628
- <span>match</span
1629
- ><a href="#match" aria-label="Permalink" class="tsd-anchor-icon"
1630
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1631
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1632
- ></a>
1633
- </h3>
1634
- <ul class="tsd-signatures">
1635
- <li class="">
1636
- <div class="tsd-signature tsd-anchor-link" id="match-1">
1637
- <span class="tsd-kind-call-signature">match</span
1638
- ><span class="tsd-signature-symbol">(</span
1639
- ><span class="tsd-kind-parameter">url</span
1640
- ><span class="tsd-signature-symbol">:</span>
1641
- <span class="tsd-signature-type">any</span
1642
- ><span class="tsd-signature-symbol">)</span
1643
- ><span class="tsd-signature-symbol">:</span>
1644
- <span class="tsd-signature-type">any</span
1645
- ><a
1646
- href="#match-1"
1647
- aria-label="Permalink"
1648
- class="tsd-anchor-icon"
1649
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1650
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1651
- ></a>
1652
- </div>
1653
- <div class="tsd-description">
1654
- <div class="tsd-comment tsd-typography">
1655
- <p>Matches a URL</p>
1656
- <p>
1657
- Given a URL (as a [[UrlParts]] object), check all rules
1658
- and determine the best matching rule. Return the result
1659
- as a [[MatchResult]].
1660
- </p>
1661
- </div>
1662
- <div class="tsd-parameters">
1663
- <h4 class="tsd-parameters-title">Parameters</h4>
1664
- <ul class="tsd-parameter-list">
1665
- <li>
1666
- <span
1667
- ><span class="tsd-kind-parameter">url</span>:
1668
- <span class="tsd-signature-type">any</span></span
1669
- >
1670
- </li>
1671
- </ul>
1672
- </div>
1673
- <h4 class="tsd-returns-title">
1674
- Returns <span class="tsd-signature-type">any</span>
1675
- </h4>
1676
- <div class="tsd-comment tsd-typography"></div>
1677
- </div>
1678
- </li>
1679
- </ul>
1680
- </section>
1681
- <section class="tsd-panel tsd-member">
1682
- <h3 class="tsd-anchor-link" id="onchange">
1683
- <span>on<wbr />Change</span
1684
- ><a
1685
- href="#onchange"
1686
- aria-label="Permalink"
1687
- class="tsd-anchor-icon"
1688
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1689
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1690
- ></a>
1691
- </h3>
1692
- <ul class="tsd-signatures">
1693
- <li class="">
1694
- <div class="tsd-signature tsd-anchor-link" id="onchange-1">
1695
- <span class="tsd-kind-call-signature">onChange</span
1696
- ><span class="tsd-signature-symbol">(</span
1697
- ><span class="tsd-kind-parameter">callback</span
1698
- ><span class="tsd-signature-symbol">:</span>
1699
- <span class="tsd-signature-type">any</span
1700
- ><span class="tsd-signature-symbol">)</span
1701
- ><span class="tsd-signature-symbol">:</span>
1702
- <span class="tsd-signature-symbol">()</span>
1703
- <span class="tsd-signature-symbol">=&gt;</span>
1704
- <span class="tsd-signature-type">any</span
1705
- ><a
1706
- href="#onchange-1"
1707
- aria-label="Permalink"
1708
- class="tsd-anchor-icon"
1709
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1710
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1711
- ></a>
1712
- </div>
1713
- <div class="tsd-description">
1714
- <code class="tsd-tag">Internal</code>
1715
- <div class="tsd-comment tsd-typography">
1716
- <p>Registers a low level url change handler</p>
1717
- <p>
1718
- Note: Because this is a low level handler, it's not
1719
- recommended for general use.
1720
- </p>
1721
- <h4 id="example-2" class="tsd-anchor-link">
1722
- Example:<a
1723
- href="#example-2"
1724
- aria-label="Permalink"
1725
- class="tsd-anchor-icon"
1726
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1727
- <use
1728
- href="../assets/icons.svg#icon-anchor"
1729
- ></use></svg
1730
- ></a>
1731
- </h4>
1732
- <pre><code class="js"><span class="hl-11">let</span><span class="hl-1"> </span><span class="hl-10">deregisterFn</span><span class="hl-1"> = </span><span class="hl-10">locationServices</span><span class="hl-1">.</span><span class="hl-0">onChange</span><span class="hl-1">((</span><span class="hl-10">evt</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;url change&quot;</span><span class="hl-1">, </span><span class="hl-10">evt</span><span class="hl-1">));</span>
1733
- </code><button type="button">Copy</button></pre>
1734
- </div>
1735
- <div class="tsd-parameters">
1736
- <h4 class="tsd-parameters-title">Parameters</h4>
1737
- <ul class="tsd-parameter-list">
1738
- <li>
1739
- <span
1740
- ><span class="tsd-kind-parameter">callback</span>:
1741
- <span class="tsd-signature-type">any</span></span
1742
- >
1743
- <div class="tsd-comment tsd-typography">
1744
- <p>
1745
- a function that will be called when the url is
1746
- changing
1747
- </p>
1748
- </div>
1749
- <div class="tsd-comment tsd-typography"></div>
1750
- </li>
1751
- </ul>
1752
- </div>
1753
- <h4 class="tsd-returns-title">
1754
- Returns <span class="tsd-signature-symbol">()</span>
1755
- <span class="tsd-signature-symbol">=&gt;</span>
1756
- <span class="tsd-signature-type">any</span>
1757
- </h4>
1758
- <p>a function that de-registers the callback</p>
1759
- <div class="tsd-comment tsd-typography"></div>
1760
- </div>
1761
- </li>
1762
- </ul>
1763
- </section>
1764
- <section class="tsd-panel tsd-member">
1765
- <h3 class="tsd-anchor-link" id="parts">
1766
- <span>parts</span
1767
- ><a href="#parts" aria-label="Permalink" class="tsd-anchor-icon"
1768
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1769
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1770
- ></a>
1771
- </h3>
1772
- <ul class="tsd-signatures">
1773
- <li class="">
1774
- <div class="tsd-signature tsd-anchor-link" id="parts-1">
1775
- <span class="tsd-kind-call-signature">parts</span
1776
- ><span class="tsd-signature-symbol">()</span
1777
- ><span class="tsd-signature-symbol">:</span>
1778
- <span class="tsd-signature-symbol">{</span>
1779
- <span class="tsd-kind-property">hash</span
1780
- ><span class="tsd-signature-symbol">:</span>
1781
- <span class="tsd-signature-type">string</span>
1782
- <span class="tsd-signature-symbol">|</span>
1783
- <a
1784
- href="core_location_location.Location.html"
1785
- class="tsd-signature-type tsd-kind-class"
1786
- >Location</a
1787
- ><span class="tsd-signature-symbol">;</span>
1788
- <span class="tsd-kind-property">path</span
1789
- ><span class="tsd-signature-symbol">:</span>
1790
- <span class="tsd-signature-type">any</span
1791
- ><span class="tsd-signature-symbol">;</span>
1792
- <span class="tsd-kind-property">search</span
1793
- ><span class="tsd-signature-symbol">:</span>
1794
- <span class="tsd-signature-type">any</span>
1795
- <span class="tsd-signature-symbol">}</span
1796
- ><a
1797
- href="#parts-1"
1798
- aria-label="Permalink"
1799
- class="tsd-anchor-icon"
1800
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1801
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1802
- ></a>
1803
- </div>
1804
- <div class="tsd-description">
1805
- <div class="tsd-comment tsd-typography">
1806
- <p>Gets the current URL parts</p>
1807
- <p>
1808
- This method returns the different parts of the current
1809
- URL (the [[path]], [[search]], and [[hash]]) as a
1810
- [[UrlParts]] object.
1811
- </p>
1812
- </div>
1813
- <h4 class="tsd-returns-title">
1814
- Returns <span class="tsd-signature-symbol">{</span>
1815
- <span class="tsd-kind-property">hash</span
1816
- ><span class="tsd-signature-symbol">:</span>
1817
- <span class="tsd-signature-type">string</span>
1818
- <span class="tsd-signature-symbol">|</span>
1819
- <a
1820
- href="core_location_location.Location.html"
1821
- class="tsd-signature-type tsd-kind-class"
1822
- >Location</a
1823
- ><span class="tsd-signature-symbol">;</span>
1824
- <span class="tsd-kind-property">path</span
1825
- ><span class="tsd-signature-symbol">:</span>
1826
- <span class="tsd-signature-type">any</span
1827
- ><span class="tsd-signature-symbol">;</span>
1828
- <span class="tsd-kind-property">search</span
1829
- ><span class="tsd-signature-symbol">:</span>
1830
- <span class="tsd-signature-type">any</span>
1831
- <span class="tsd-signature-symbol">}</span>
1832
- </h4>
1833
- <div class="tsd-comment tsd-typography"></div>
1834
- </div>
1835
- </li>
1836
- </ul>
1837
- </section>
1838
- <section class="tsd-panel tsd-member">
1839
- <h3 class="tsd-anchor-link" id="push">
1840
- <span>push</span
1841
- ><a href="#push" aria-label="Permalink" class="tsd-anchor-icon"
1842
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1843
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1844
- ></a>
1845
- </h3>
1846
- <ul class="tsd-signatures">
1847
- <li class="">
1848
- <div class="tsd-signature tsd-anchor-link" id="push-1">
1849
- <span class="tsd-kind-call-signature">push</span
1850
- ><span class="tsd-signature-symbol">(</span
1851
- ><span class="tsd-kind-parameter">urlMatcher</span
1852
- ><span class="tsd-signature-symbol">:</span>
1853
- <span class="tsd-signature-type">any</span
1854
- ><span class="tsd-signature-symbol">,</span>
1855
- <span class="tsd-kind-parameter">params</span
1856
- ><span class="tsd-signature-symbol">:</span>
1857
- <span class="tsd-signature-type">any</span
1858
- ><span class="tsd-signature-symbol">,</span>
1859
- <span class="tsd-kind-parameter">options</span
1860
- ><span class="tsd-signature-symbol">:</span>
1861
- <span class="tsd-signature-type">any</span
1862
- ><span class="tsd-signature-symbol">)</span
1863
- ><span class="tsd-signature-symbol">:</span>
1864
- <span class="tsd-signature-type">void</span
1865
- ><a
1866
- href="#push-1"
1867
- aria-label="Permalink"
1868
- class="tsd-anchor-icon"
1869
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1870
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1871
- ></a>
1872
- </div>
1873
- <div class="tsd-description">
1874
- <code class="tsd-tag">Internal</code>
1875
- <div class="tsd-comment tsd-typography">
1876
- <p>Internal API.</p>
1877
- <p>Pushes a new location to the browser history.</p>
1878
- </div>
1879
- <div class="tsd-parameters">
1880
- <h4 class="tsd-parameters-title">Parameters</h4>
1881
- <ul class="tsd-parameter-list">
1882
- <li>
1883
- <span
1884
- ><span class="tsd-kind-parameter">urlMatcher</span>:
1885
- <span class="tsd-signature-type">any</span></span
1886
- >
1887
- <div class="tsd-comment tsd-typography"></div>
1888
- </li>
1889
- <li>
1890
- <span
1891
- ><span class="tsd-kind-parameter">params</span>:
1892
- <span class="tsd-signature-type">any</span></span
1893
- >
1894
- <div class="tsd-comment tsd-typography"></div>
1895
- </li>
1896
- <li>
1897
- <span
1898
- ><span class="tsd-kind-parameter">options</span>:
1899
- <span class="tsd-signature-type">any</span></span
1900
- >
1901
- <div class="tsd-comment tsd-typography"></div>
1902
- </li>
1903
- </ul>
1904
- </div>
1905
- <h4 class="tsd-returns-title">
1906
- Returns <span class="tsd-signature-type">void</span>
1907
- </h4>
1908
- <div class="tsd-comment tsd-typography"></div>
1909
- </div>
1910
- </li>
1911
- </ul>
1912
- </section>
1913
- <section class="tsd-panel tsd-member">
1914
- <h3 class="tsd-anchor-link" id="sync">
1915
- <span>sync</span
1916
- ><a href="#sync" aria-label="Permalink" class="tsd-anchor-icon"
1917
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1918
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1919
- ></a>
1920
- </h3>
1921
- <ul class="tsd-signatures">
1922
- <li class="">
1923
- <div class="tsd-signature tsd-anchor-link" id="sync-1">
1924
- <span class="tsd-kind-call-signature">sync</span
1925
- ><span class="tsd-signature-symbol">(</span
1926
- ><span class="tsd-kind-parameter">evt</span
1927
- ><span class="tsd-signature-symbol">:</span>
1928
- <span class="tsd-signature-type">any</span
1929
- ><span class="tsd-signature-symbol">)</span
1930
- ><span class="tsd-signature-symbol">:</span>
1931
- <span class="tsd-signature-type">void</span
1932
- ><a
1933
- href="#sync-1"
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>Activates the best rule for the current URL</p>
1943
- <p>
1944
- Checks the current URL for a matching [[UrlRule]], then
1945
- invokes that rule's handler. This method is called
1946
- internally any time the URL has changed.
1947
- </p>
1948
- <p>
1949
- This effectively activates the state (or redirect, etc)
1950
- which matches the current URL.
1951
- </p>
1952
- <h4 id="example-3" class="tsd-anchor-link">
1953
- Example:<a
1954
- href="#example-3"
1955
- aria-label="Permalink"
1956
- class="tsd-anchor-icon"
1957
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1958
- <use
1959
- href="../assets/icons.svg#icon-anchor"
1960
- ></use></svg
1961
- ></a>
1962
- </h4>
1963
- <pre><code class="js"><br/><span class="hl-0">fetch</span><span class="hl-1">(</span><span class="hl-2">&#39;/states.json&#39;</span><span class="hl-1">).</span><span class="hl-0">then</span><span class="hl-1">(</span><span class="hl-10">resp</span><span class="hl-1"> </span><span class="hl-11">=&gt;</span><span class="hl-1"> </span><span class="hl-10">resp</span><span class="hl-1">.</span><span class="hl-0">json</span><span class="hl-1">()).</span><span class="hl-0">then</span><span class="hl-1">(</span><span class="hl-10">data</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">data</span><span class="hl-1">.</span><span class="hl-0">forEach</span><span class="hl-1">(</span><span class="hl-10">state</span><span class="hl-1"> </span><span class="hl-11">=&gt;</span><span class="hl-1"> </span><span class="hl-10">$stateRegistry</span><span class="hl-1">.</span><span class="hl-0">register</span><span class="hl-1">(</span><span class="hl-10">state</span><span class="hl-1">));</span><br/><span class="hl-1"> </span><span class="hl-10">urlService</span><span class="hl-1">.</span><span class="hl-0">listen</span><span class="hl-1">();</span><br/><span class="hl-1"> </span><span class="hl-9">// Find the matching URL and invoke the handler.</span><br/><span class="hl-1"> </span><span class="hl-10">urlService</span><span class="hl-1">.</span><span class="hl-0">sync</span><span class="hl-1">();</span><br/><span class="hl-1">});</span>
1964
- </code><button type="button">Copy</button></pre>
1965
- </div>
1966
- <div class="tsd-parameters">
1967
- <h4 class="tsd-parameters-title">Parameters</h4>
1968
- <ul class="tsd-parameter-list">
1969
- <li>
1970
- <span
1971
- ><span class="tsd-kind-parameter">evt</span>:
1972
- <span class="tsd-signature-type">any</span></span
1973
- >
1974
- </li>
1975
- </ul>
1976
- </div>
1977
- <h4 class="tsd-returns-title">
1978
- Returns <span class="tsd-signature-type">void</span>
1979
- </h4>
1980
- <div class="tsd-comment tsd-typography"></div>
1981
- </div>
1982
- </li>
1983
- </ul>
1984
- </section>
1985
- <section class="tsd-panel tsd-member">
1986
- <h3 class="tsd-anchor-link" id="update">
1987
- <span>update</span
1988
- ><a
1989
- href="#update"
1990
- aria-label="Permalink"
1991
- class="tsd-anchor-icon"
1992
- ><svg viewBox="0 0 24 24" aria-hidden="true">
1993
- <use href="../assets/icons.svg#icon-anchor"></use></svg
1994
- ></a>
1995
- </h3>
1996
- <ul class="tsd-signatures">
1997
- <li class="">
1998
- <div class="tsd-signature tsd-anchor-link" id="update-1">
1999
- <span class="tsd-kind-call-signature">update</span
2000
- ><span class="tsd-signature-symbol">(</span
2001
- ><span class="tsd-kind-parameter">read</span
2002
- ><span class="tsd-signature-symbol">:</span>
2003
- <span class="tsd-signature-type">any</span
2004
- ><span class="tsd-signature-symbol">)</span
2005
- ><span class="tsd-signature-symbol">:</span>
2006
- <span class="tsd-signature-type">void</span
2007
- ><a
2008
- href="#update-1"
2009
- aria-label="Permalink"
2010
- class="tsd-anchor-icon"
2011
- ><svg viewBox="0 0 24 24" aria-hidden="true">
2012
- <use href="../assets/icons.svg#icon-anchor"></use></svg
2013
- ></a>
2014
- </div>
2015
- <div class="tsd-description">
2016
- <div class="tsd-parameters">
2017
- <h4 class="tsd-parameters-title">Parameters</h4>
2018
- <ul class="tsd-parameter-list">
2019
- <li>
2020
- <span
2021
- ><span class="tsd-kind-parameter">read</span>:
2022
- <span class="tsd-signature-type">any</span></span
2023
- >
2024
- </li>
2025
- </ul>
2026
- </div>
2027
- <h4 class="tsd-returns-title">
2028
- Returns <span class="tsd-signature-type">void</span>
2029
- </h4>
2030
- </div>
2031
- </li>
2032
- </ul>
2033
- </section>
2034
- <section class="tsd-panel tsd-member">
2035
- <h3 class="tsd-anchor-link" id="url">
2036
- <span>url</span
2037
- ><a href="#url" aria-label="Permalink" class="tsd-anchor-icon"
2038
- ><svg viewBox="0 0 24 24" aria-hidden="true">
2039
- <use href="../assets/icons.svg#icon-anchor"></use></svg
2040
- ></a>
2041
- </h3>
2042
- <ul class="tsd-signatures">
2043
- <li class="">
2044
- <div class="tsd-signature tsd-anchor-link" id="url-1">
2045
- <span class="tsd-kind-call-signature">url</span
2046
- ><span class="tsd-signature-symbol">(</span
2047
- ><span class="tsd-kind-parameter">newUrl</span
2048
- ><span class="tsd-signature-symbol">?:</span>
2049
- <span class="tsd-signature-type">string</span
2050
- ><span class="tsd-signature-symbol">,</span>
2051
- <span class="tsd-kind-parameter">replace</span
2052
- ><span class="tsd-signature-symbol">?:</span>
2053
- <span class="tsd-signature-type">boolean</span
2054
- ><span class="tsd-signature-symbol">,</span>
2055
- <span class="tsd-kind-parameter">state</span
2056
- ><span class="tsd-signature-symbol">?:</span>
2057
- <span class="tsd-signature-type">any</span
2058
- ><span class="tsd-signature-symbol">)</span
2059
- ><span class="tsd-signature-symbol">:</span>
2060
- <span class="tsd-signature-type">string</span>
2061
- <span class="tsd-signature-symbol">|</span>
2062
- <a
2063
- href="core_location_location.Location.html"
2064
- class="tsd-signature-type tsd-kind-class"
2065
- >Location</a
2066
- ><a
2067
- href="#url-1"
2068
- aria-label="Permalink"
2069
- class="tsd-anchor-icon"
2070
- ><svg viewBox="0 0 24 24" aria-hidden="true">
2071
- <use href="../assets/icons.svg#icon-anchor"></use></svg
2072
- ></a>
2073
- </div>
2074
- <div class="tsd-description">
2075
- <div class="tsd-comment tsd-typography">
2076
- <p>Gets the current url, or updates the url</p>
2077
- <h3 id="getting-the-current-url" class="tsd-anchor-link">
2078
- Getting the current URL<a
2079
- href="#getting-the-current-url"
2080
- aria-label="Permalink"
2081
- class="tsd-anchor-icon"
2082
- ><svg viewBox="0 0 24 24" aria-hidden="true">
2083
- <use
2084
- href="../assets/icons.svg#icon-anchor"
2085
- ></use></svg
2086
- ></a>
2087
- </h3>
2088
- <p>
2089
- When no arguments are passed, returns the current URL.
2090
- The URL is normalized using the internal
2091
- [[path]]/[[search]]/[[hash]] values.
2092
- </p>
2093
- <p>
2094
- For example, the URL may be stored in the hash
2095
- ([[HashLocationServices]]) or have a base HREF prepended
2096
- ([[PushStateLocationServices]]).
2097
- </p>
2098
- <p>The raw URL in the browser might be:</p>
2099
- <pre><code><span class="hl-15">http</span><span class="hl-1">:</span><span class="hl-9">//mysite.com/somepath/index.html#/internal/path/123?param1=foo#anchor</span>
2100
- </code><button>Copy</button></pre>
2101
-
2102
- <p>or</p>
2103
- <pre><code><span class="hl-15">http</span><span class="hl-1">:</span><span class="hl-9">//mysite.com/basepath/internal/path/123?param1=foo#anchor</span>
2104
- </code><button>Copy</button></pre>
2105
-
2106
- <p>then this method returns:</p>
2107
- <pre><code><span class="hl-1">/</span><span class="hl-10">internal</span><span class="hl-1">/</span><span class="hl-10">path</span><span class="hl-1">/</span><span class="hl-16">123</span><span class="hl-1">?</span><span class="hl-10">param1</span><span class="hl-1">=</span><span class="hl-10">foo</span><span class="hl-1">#</span><span class="hl-10">anchor</span>
2108
- </code><button>Copy</button></pre>
2109
-
2110
- <h4 id="example-4" class="tsd-anchor-link">
2111
- Example:<a
2112
- href="#example-4"
2113
- aria-label="Permalink"
2114
- class="tsd-anchor-icon"
2115
- ><svg viewBox="0 0 24 24" aria-hidden="true">
2116
- <use
2117
- href="../assets/icons.svg#icon-anchor"
2118
- ></use></svg
2119
- ></a>
2120
- </h4>
2121
- <pre><code class="js"><span class="hl-10">locationServices</span><span class="hl-1">.</span><span class="hl-0">url</span><span class="hl-1">(); </span><span class="hl-9">// &quot;/some/path?query=value#anchor&quot;</span>
2122
- </code><button type="button">Copy</button></pre>
2123
-
2124
- <h3 id="updating-the-url" class="tsd-anchor-link">
2125
- Updating the URL<a
2126
- href="#updating-the-url"
2127
- aria-label="Permalink"
2128
- class="tsd-anchor-icon"
2129
- ><svg viewBox="0 0 24 24" aria-hidden="true">
2130
- <use
2131
- href="../assets/icons.svg#icon-anchor"
2132
- ></use></svg
2133
- ></a>
2134
- </h3>
2135
- <p>
2136
- When <code>newurl</code> arguments is provided, changes
2137
- the URL to reflect <code>newurl</code>
2138
- </p>
2139
- <h4 id="example-5" class="tsd-anchor-link">
2140
- Example:<a
2141
- href="#example-5"
2142
- aria-label="Permalink"
2143
- class="tsd-anchor-icon"
2144
- ><svg viewBox="0 0 24 24" aria-hidden="true">
2145
- <use
2146
- href="../assets/icons.svg#icon-anchor"
2147
- ></use></svg
2148
- ></a>
2149
- </h4>
2150
- <pre><code class="js"><span class="hl-10">locationServices</span><span class="hl-1">.</span><span class="hl-0">url</span><span class="hl-1">(</span><span class="hl-2">&quot;/some/path?query=value#anchor&quot;</span><span class="hl-1">, </span><span class="hl-11">true</span><span class="hl-1">);</span>
2151
- </code><button type="button">Copy</button></pre>
2152
- </div>
2153
- <div class="tsd-parameters">
2154
- <h4 class="tsd-parameters-title">Parameters</h4>
2155
- <ul class="tsd-parameter-list">
2156
- <li>
2157
- <span
2158
- ><code class="tsd-tag">Optional</code
2159
- ><span class="tsd-kind-parameter">newUrl</span>:
2160
- <span class="tsd-signature-type">string</span></span
2161
- >
2162
- <div class="tsd-comment tsd-typography">
2163
- <p>
2164
- The new value for the URL. This url should reflect
2165
- only the new internal [[path]], [[search]], and
2166
- [[hash]] values. It should not include the
2167
- protocol, site, port, or base path of an absolute
2168
- HREF.
2169
- </p>
2170
- </div>
2171
- <div class="tsd-comment tsd-typography"></div>
2172
- </li>
2173
- <li>
2174
- <span
2175
- ><code class="tsd-tag">Optional</code
2176
- ><span class="tsd-kind-parameter">replace</span>:
2177
- <span class="tsd-signature-type">boolean</span
2178
- ><span class="tsd-signature-symbol">
2179
- = false</span
2180
- ></span
2181
- >
2182
- <div class="tsd-comment tsd-typography">
2183
- <p>
2184
- When true, replaces the current history entry
2185
- (instead of appending it) with this new url
2186
- </p>
2187
- </div>
2188
- <div class="tsd-comment tsd-typography"></div>
2189
- </li>
2190
- <li>
2191
- <span
2192
- ><code class="tsd-tag">Optional</code
2193
- ><span class="tsd-kind-parameter">state</span>:
2194
- <span class="tsd-signature-type">any</span></span
2195
- >
2196
- <div class="tsd-comment tsd-typography">
2197
- <p>
2198
- The history's state object, i.e., pushState (if
2199
- the LocationServices implementation supports it)
2200
- </p>
2201
- </div>
2202
- <div class="tsd-comment tsd-typography"></div>
2203
- </li>
2204
- </ul>
2205
- </div>
2206
- <h4 class="tsd-returns-title">
2207
- Returns <span class="tsd-signature-type">string</span>
2208
- <span class="tsd-signature-symbol">|</span>
2209
- <a
2210
- href="core_location_location.Location.html"
2211
- class="tsd-signature-type tsd-kind-class"
2212
- >Location</a
2213
- >
2214
- </h4>
2215
- <p>the url (after potentially being processed)</p>
2216
- <div class="tsd-comment tsd-typography"></div>
2217
- </div>
2218
- </li>
2219
- </ul>
2220
- </section>
2221
- </section>
2222
- </details>
2223
- </div>
2224
- <div class="col-sidebar">
2225
- <div class="page-menu">
2226
- <div class="tsd-navigation settings">
2227
- <details class="tsd-accordion">
2228
- <summary class="tsd-accordion-summary">
2229
- <svg
2230
- width="20"
2231
- height="20"
2232
- viewBox="0 0 24 24"
2233
- fill="none"
2234
- aria-hidden="true"
2235
- >
2236
- <use href="../assets/icons.svg#icon-chevronDown"></use>
2237
- </svg>
2238
- <h3>Settings</h3>
2239
- </summary>
2240
- <div class="tsd-accordion-details">
2241
- <div class="tsd-filter-visibility">
2242
- <span class="settings-label">Member Visibility</span>
2243
- <ul id="tsd-filter-options">
2244
- <li class="tsd-filter-item">
2245
- <label class="tsd-filter-input"
2246
- ><input
2247
- type="checkbox"
2248
- id="tsd-filter-protected"
2249
- name="protected"
2250
- /><svg
2251
- width="32"
2252
- height="32"
2253
- viewBox="0 0 32 32"
2254
- aria-hidden="true"
2255
- >
2256
- <rect
2257
- class="tsd-checkbox-background"
2258
- width="30"
2259
- height="30"
2260
- x="1"
2261
- y="1"
2262
- rx="6"
2263
- fill="none"
2264
- ></rect>
2265
- <path
2266
- class="tsd-checkbox-checkmark"
2267
- d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
2268
- stroke="none"
2269
- stroke-width="3.5"
2270
- stroke-linejoin="round"
2271
- fill="none"
2272
- ></path></svg
2273
- ><span>Protected</span></label
2274
- >
2275
- </li>
2276
- <li class="tsd-filter-item">
2277
- <label class="tsd-filter-input"
2278
- ><input
2279
- type="checkbox"
2280
- id="tsd-filter-inherited"
2281
- name="inherited"
2282
- checked
2283
- /><svg
2284
- width="32"
2285
- height="32"
2286
- viewBox="0 0 32 32"
2287
- aria-hidden="true"
2288
- >
2289
- <rect
2290
- class="tsd-checkbox-background"
2291
- width="30"
2292
- height="30"
2293
- x="1"
2294
- y="1"
2295
- rx="6"
2296
- fill="none"
2297
- ></rect>
2298
- <path
2299
- class="tsd-checkbox-checkmark"
2300
- d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
2301
- stroke="none"
2302
- stroke-width="3.5"
2303
- stroke-linejoin="round"
2304
- fill="none"
2305
- ></path></svg
2306
- ><span>Inherited</span></label
2307
- >
2308
- </li>
2309
- <li class="tsd-filter-item">
2310
- <label class="tsd-filter-input"
2311
- ><input
2312
- type="checkbox"
2313
- id="tsd-filter-external"
2314
- name="external"
2315
- /><svg
2316
- width="32"
2317
- height="32"
2318
- viewBox="0 0 32 32"
2319
- aria-hidden="true"
2320
- >
2321
- <rect
2322
- class="tsd-checkbox-background"
2323
- width="30"
2324
- height="30"
2325
- x="1"
2326
- y="1"
2327
- rx="6"
2328
- fill="none"
2329
- ></rect>
2330
- <path
2331
- class="tsd-checkbox-checkmark"
2332
- d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
2333
- stroke="none"
2334
- stroke-width="3.5"
2335
- stroke-linejoin="round"
2336
- fill="none"
2337
- ></path></svg
2338
- ><span>External</span></label
2339
- >
2340
- </li>
2341
- </ul>
2342
- </div>
2343
- <div class="tsd-theme-toggle">
2344
- <label class="settings-label" for="tsd-theme">Theme</label
2345
- ><select id="tsd-theme">
2346
- <option value="os">OS</option>
2347
- <option value="light">Light</option>
2348
- <option value="dark">Dark</option>
2349
- </select>
2350
- </div>
2351
- </div>
2352
- </details>
2353
- </div>
2354
- <details open class="tsd-accordion tsd-page-navigation">
2355
- <summary class="tsd-accordion-summary">
2356
- <svg
2357
- width="20"
2358
- height="20"
2359
- viewBox="0 0 24 24"
2360
- fill="none"
2361
- aria-hidden="true"
2362
- >
2363
- <use href="../assets/icons.svg#icon-chevronDown"></use>
2364
- </svg>
2365
- <h3>On This Page</h3>
2366
- </summary>
2367
- <div class="tsd-accordion-details">
2368
- <details open class="tsd-accordion tsd-page-navigation-section">
2369
- <summary
2370
- class="tsd-accordion-summary"
2371
- data-key="section-Constructors"
2372
- >
2373
- <svg
2374
- width="20"
2375
- height="20"
2376
- viewBox="0 0 24 24"
2377
- fill="none"
2378
- aria-hidden="true"
2379
- >
2380
- <use href="../assets/icons.svg#icon-chevronDown"></use></svg
2381
- >Constructors
2382
- </summary>
2383
- <div>
2384
- <a href="#constructor"
2385
- ><svg
2386
- class="tsd-kind-icon"
2387
- viewBox="0 0 24 24"
2388
- aria-label="Constructor"
2389
- >
2390
- <use href="../assets/icons.svg#icon-512"></use></svg
2391
- ><span>constructor</span></a
2392
- >
2393
- </div>
2394
- </details>
2395
- <details open class="tsd-accordion tsd-page-navigation-section">
2396
- <summary
2397
- class="tsd-accordion-summary"
2398
- data-key="section-Properties"
2399
- >
2400
- <svg
2401
- width="20"
2402
- height="20"
2403
- viewBox="0 0 24 24"
2404
- fill="none"
2405
- aria-hidden="true"
2406
- >
2407
- <use href="../assets/icons.svg#icon-chevronDown"></use></svg
2408
- >Properties
2409
- </summary>
2410
- <div>
2411
- <a href="#_basehref"
2412
- ><svg
2413
- class="tsd-kind-icon"
2414
- viewBox="0 0 24 24"
2415
- aria-label="Property"
2416
- >
2417
- <use href="../assets/icons.svg#icon-1024"></use></svg
2418
- ><span>_<wbr />base<wbr />Href</span></a
2419
- ><a href="#_stoplisteningfn"
2420
- ><svg
2421
- class="tsd-kind-icon"
2422
- viewBox="0 0 24 24"
2423
- aria-label="Property"
2424
- >
2425
- <use href="../assets/icons.svg#icon-1024"></use></svg
2426
- ><span>_<wbr />stop<wbr />Listening<wbr />Fn</span></a
2427
- ><a href="#_urllisteners"
2428
- ><svg
2429
- class="tsd-kind-icon"
2430
- viewBox="0 0 24 24"
2431
- aria-label="Property"
2432
- >
2433
- <use href="../assets/icons.svg#icon-1024"></use></svg
2434
- ><span>_<wbr />url<wbr />Listeners</span></a
2435
- ><a href="#browser"
2436
- ><svg
2437
- class="tsd-kind-icon"
2438
- viewBox="0 0 24 24"
2439
- aria-label="Property"
2440
- >
2441
- <use href="../assets/icons.svg#icon-1024"></use></svg
2442
- ><span>$browser</span></a
2443
- ><a href="#get"
2444
- ><svg
2445
- class="tsd-kind-icon"
2446
- viewBox="0 0 24 24"
2447
- aria-label="Property"
2448
- >
2449
- <use href="../assets/icons.svg#icon-1024"></use></svg
2450
- ><span>$get</span></a
2451
- ><a href="#location"
2452
- ><svg
2453
- class="tsd-kind-icon"
2454
- viewBox="0 0 24 24"
2455
- aria-label="Property"
2456
- >
2457
- <use href="../assets/icons.svg#icon-1024"></use></svg
2458
- ><span>$location</span></a
2459
- ><a href="#locationprovider"
2460
- ><svg
2461
- class="tsd-kind-icon"
2462
- viewBox="0 0 24 24"
2463
- aria-label="Property"
2464
- >
2465
- <use href="../assets/icons.svg#icon-1024"></use></svg
2466
- ><span>$location<wbr />Provider</span></a
2467
- ><a href="#config"
2468
- ><svg
2469
- class="tsd-kind-icon"
2470
- viewBox="0 0 24 24"
2471
- aria-label="Property"
2472
- >
2473
- <use href="../assets/icons.svg#icon-1024"></use></svg
2474
- ><span>config</span></a
2475
- ><a href="#hash"
2476
- ><svg
2477
- class="tsd-kind-icon"
2478
- viewBox="0 0 24 24"
2479
- aria-label="Property"
2480
- >
2481
- <use href="../assets/icons.svg#icon-1024"></use></svg
2482
- ><span>hash</span></a
2483
- ><a href="#location-1"
2484
- ><svg
2485
- class="tsd-kind-icon"
2486
- viewBox="0 0 24 24"
2487
- aria-label="Property"
2488
- >
2489
- <use href="../assets/icons.svg#icon-1024"></use></svg
2490
- ><span>location</span></a
2491
- ><a href="#paramfactory"
2492
- ><svg
2493
- class="tsd-kind-icon"
2494
- viewBox="0 0 24 24"
2495
- aria-label="Property"
2496
- >
2497
- <use href="../assets/icons.svg#icon-1024"></use></svg
2498
- ><span>param<wbr />Factory</span></a
2499
- ><a href="#path"
2500
- ><svg
2501
- class="tsd-kind-icon"
2502
- viewBox="0 0 24 24"
2503
- aria-label="Property"
2504
- >
2505
- <use href="../assets/icons.svg#icon-1024"></use></svg
2506
- ><span>path</span></a
2507
- ><a href="#rules"
2508
- ><svg
2509
- class="tsd-kind-icon"
2510
- viewBox="0 0 24 24"
2511
- aria-label="Property"
2512
- >
2513
- <use href="../assets/icons.svg#icon-1024"></use></svg
2514
- ><span>rules</span></a
2515
- ><a href="#search"
2516
- ><svg
2517
- class="tsd-kind-icon"
2518
- viewBox="0 0 24 24"
2519
- aria-label="Property"
2520
- >
2521
- <use href="../assets/icons.svg#icon-1024"></use></svg
2522
- ><span>search</span></a
2523
- ><a href="#stateservice"
2524
- ><svg
2525
- class="tsd-kind-icon"
2526
- viewBox="0 0 24 24"
2527
- aria-label="Property"
2528
- >
2529
- <use href="../assets/icons.svg#icon-1024"></use></svg
2530
- ><span>state<wbr />Service</span></a
2531
- ><a href="#urlrulefactory"
2532
- ><svg
2533
- class="tsd-kind-icon"
2534
- viewBox="0 0 24 24"
2535
- aria-label="Property"
2536
- >
2537
- <use href="../assets/icons.svg#icon-1024"></use></svg
2538
- ><span>url<wbr />Rule<wbr />Factory</span></a
2539
- ><a href="#inject"
2540
- ><svg
2541
- class="tsd-kind-icon"
2542
- viewBox="0 0 24 24"
2543
- aria-label="Property"
2544
- >
2545
- <use href="../assets/icons.svg#icon-1024"></use></svg
2546
- ><span>$inject</span></a
2547
- >
2548
- </div>
2549
- </details>
2550
- <details open class="tsd-accordion tsd-page-navigation-section">
2551
- <summary
2552
- class="tsd-accordion-summary"
2553
- data-key="section-Methods"
2554
- >
2555
- <svg
2556
- width="20"
2557
- height="20"
2558
- viewBox="0 0 24 24"
2559
- fill="none"
2560
- aria-hidden="true"
2561
- >
2562
- <use href="../assets/icons.svg#icon-chevronDown"></use></svg
2563
- >Methods
2564
- </summary>
2565
- <div>
2566
- <a href="#basehref"
2567
- ><svg
2568
- class="tsd-kind-icon"
2569
- viewBox="0 0 24 24"
2570
- aria-label="Method"
2571
- >
2572
- <use href="../assets/icons.svg#icon-2048"></use></svg
2573
- ><span>base<wbr />Href</span></a
2574
- ><a href="#compile"
2575
- ><svg
2576
- class="tsd-kind-icon"
2577
- viewBox="0 0 24 24"
2578
- aria-label="Method"
2579
- >
2580
- <use href="../assets/icons.svg#icon-2048"></use></svg
2581
- ><span>compile</span></a
2582
- ><a href="#href"
2583
- ><svg
2584
- class="tsd-kind-icon"
2585
- viewBox="0 0 24 24"
2586
- aria-label="Method"
2587
- >
2588
- <use href="../assets/icons.svg#icon-2048"></use></svg
2589
- ><span>href</span></a
2590
- >
2591
- <ul>
2592
- <li>
2593
- <ul>
2594
- <li>
2595
- <ul>
2596
- <li>
2597
- <ul>
2598
- <li>
2599
- <a href="#example"><span>Example:</span></a>
2600
- </li>
2601
- </ul>
2602
- </li>
2603
- </ul>
2604
- </li>
2605
- </ul>
2606
- </li>
2607
- </ul>
2608
- <a href="#html5mode"
2609
- ><svg
2610
- class="tsd-kind-icon"
2611
- viewBox="0 0 24 24"
2612
- aria-label="Method"
2613
- >
2614
- <use href="../assets/icons.svg#icon-2048"></use></svg
2615
- ><span>html5<wbr />Mode</span></a
2616
- ><a href="#ismatcher"
2617
- ><svg
2618
- class="tsd-kind-icon"
2619
- viewBox="0 0 24 24"
2620
- aria-label="Method"
2621
- >
2622
- <use href="../assets/icons.svg#icon-2048"></use></svg
2623
- ><span>is<wbr />Matcher</span></a
2624
- ><a href="#listen"
2625
- ><svg
2626
- class="tsd-kind-icon"
2627
- viewBox="0 0 24 24"
2628
- aria-label="Method"
2629
- >
2630
- <use href="../assets/icons.svg#icon-2048"></use></svg
2631
- ><span>listen</span></a
2632
- >
2633
- <ul>
2634
- <li>
2635
- <ul>
2636
- <li>
2637
- <ul>
2638
- <li>
2639
- <ul>
2640
- <li>
2641
- <a href="#example-1"><span>Example:</span></a>
2642
- </li>
2643
- </ul>
2644
- </li>
2645
- </ul>
2646
- </li>
2647
- </ul>
2648
- </li>
2649
- </ul>
2650
- <a href="#match"
2651
- ><svg
2652
- class="tsd-kind-icon"
2653
- viewBox="0 0 24 24"
2654
- aria-label="Method"
2655
- >
2656
- <use href="../assets/icons.svg#icon-2048"></use></svg
2657
- ><span>match</span></a
2658
- ><a href="#onchange"
2659
- ><svg
2660
- class="tsd-kind-icon"
2661
- viewBox="0 0 24 24"
2662
- aria-label="Method"
2663
- >
2664
- <use href="../assets/icons.svg#icon-2048"></use></svg
2665
- ><span>on<wbr />Change</span></a
2666
- >
2667
- <ul>
2668
- <li>
2669
- <ul>
2670
- <li>
2671
- <ul>
2672
- <li>
2673
- <ul>
2674
- <li>
2675
- <a href="#example-2"><span>Example:</span></a>
2676
- </li>
2677
- </ul>
2678
- </li>
2679
- </ul>
2680
- </li>
2681
- </ul>
2682
- </li>
2683
- </ul>
2684
- <a href="#parts"
2685
- ><svg
2686
- class="tsd-kind-icon"
2687
- viewBox="0 0 24 24"
2688
- aria-label="Method"
2689
- >
2690
- <use href="../assets/icons.svg#icon-2048"></use></svg
2691
- ><span>parts</span></a
2692
- ><a href="#push"
2693
- ><svg
2694
- class="tsd-kind-icon"
2695
- viewBox="0 0 24 24"
2696
- aria-label="Method"
2697
- >
2698
- <use href="../assets/icons.svg#icon-2048"></use></svg
2699
- ><span>push</span></a
2700
- ><a href="#sync"
2701
- ><svg
2702
- class="tsd-kind-icon"
2703
- viewBox="0 0 24 24"
2704
- aria-label="Method"
2705
- >
2706
- <use href="../assets/icons.svg#icon-2048"></use></svg
2707
- ><span>sync</span></a
2708
- >
2709
- <ul>
2710
- <li>
2711
- <ul>
2712
- <li>
2713
- <ul>
2714
- <li>
2715
- <ul>
2716
- <li>
2717
- <a href="#example-3"><span>Example:</span></a>
2718
- </li>
2719
- </ul>
2720
- </li>
2721
- </ul>
2722
- </li>
2723
- </ul>
2724
- </li>
2725
- </ul>
2726
- <a href="#update"
2727
- ><svg
2728
- class="tsd-kind-icon"
2729
- viewBox="0 0 24 24"
2730
- aria-label="Method"
2731
- >
2732
- <use href="../assets/icons.svg#icon-2048"></use></svg
2733
- ><span>update</span></a
2734
- ><a href="#url"
2735
- ><svg
2736
- class="tsd-kind-icon"
2737
- viewBox="0 0 24 24"
2738
- aria-label="Method"
2739
- >
2740
- <use href="../assets/icons.svg#icon-2048"></use></svg
2741
- ><span>url</span></a
2742
- >
2743
- <ul>
2744
- <li>
2745
- <a href="#getting-the-current-url"
2746
- ><span>Getting the current <wbr />URL</span></a
2747
- >
2748
- </li>
2749
- <li>
2750
- <ul>
2751
- <li>
2752
- <a href="#example-4"><span>Example:</span></a>
2753
- </li>
2754
- </ul>
2755
- </li>
2756
- <li>
2757
- <a href="#updating-the-url"
2758
- ><span>Updating the <wbr />URL</span></a
2759
- >
2760
- </li>
2761
- <li>
2762
- <ul>
2763
- <li>
2764
- <a href="#example-5"><span>Example:</span></a>
2765
- </li>
2766
- </ul>
2767
- </li>
2768
- </ul>
2769
- </div>
2770
- </details>
2771
- </div>
2772
- </details>
2773
- </div>
2774
- <div class="site-menu">
2775
- <nav class="tsd-navigation">
2776
- <a href="../modules.html">AngularTS</a>
2777
- <ul class="tsd-small-nested-navigation" id="tsd-nav-container">
2778
- <li>Loading...</li>
2779
- </ul>
2780
- </nav>
2781
- </div>
2782
- </div>
2783
- </div>
2784
- <footer>
2785
- <p class="tsd-generator">
2786
- Generated using
2787
- <a href="https://typedoc.org/" target="_blank">TypeDoc</a>
2788
- </p>
2789
- </footer>
2790
- <div class="overlay"></div>
2791
- </body>
2792
- </html>