@angular-wave/angular.ts 0.7.2 → 0.7.4

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