@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.
- package/.github/workflows/ci.yml +1 -1
- package/.prettierignore +3 -1
- package/@types/core/di/internal-injector.d.ts +2 -5
- package/@types/core/di/ng-module.d.ts +0 -7
- package/@types/core/exception-handler.d.ts +2 -2
- package/@types/core/task-tracker-factory.d.ts +2 -2
- package/@types/directive/channel/channel.d.ts +7 -17
- package/@types/directive/http/http.d.ts +42 -0
- package/@types/directive/if/if.d.ts +0 -2
- package/@types/directive/script/script.d.ts +2 -2
- package/@types/directive/setter/setter.d.ts +2 -2
- package/@types/injection-tokens.d.ts +3 -0
- package/@types/interface.d.ts +27 -4
- package/@types/loader.d.ts +3 -4
- package/@types/public.d.ts +1 -2
- package/@types/router/params/param-factory.d.ts +10 -2
- package/@types/router/params/param.d.ts +22 -3
- package/@types/router/template-factory.d.ts +2 -2
- package/@types/router/url/url-service.d.ts +2 -2
- package/@types/services/http/http.d.ts +2 -2
- package/@types/services/http/interface.d.ts +219 -0
- package/@types/services/http-backend/http-backend.d.ts +26 -19
- package/@types/services/log/interface.d.ts +33 -0
- package/@types/services/log/log.d.ts +25 -0
- package/@types/{core → services}/pubsub/pubsub.d.ts +9 -9
- package/@types/services/template-cache/interface.d.ts +4 -0
- package/@types/services/template-cache/template-cache.d.ts +11 -0
- package/@types/services/template-request.d.ts +1 -1
- package/@types/shared/cache.d.ts +9 -0
- package/@types/shared/common.d.ts +7 -8
- package/@types/shared/dom.d.ts +2 -2
- package/Makefile +9 -1
- package/dist/angular-ts.esm.js +426 -199
- package/dist/angular-ts.umd.js +426 -199
- package/dist/angular-ts.umd.min.js +1 -1
- package/docs/README.md +69 -39
- package/docs/assets/scss/_variables_project.scss +6 -0
- package/docs/assets/scss/_variables_project_after_bs.scss +8 -0
- package/docs/assets/scss/index.scss +13 -0
- package/docs/content/{en/_index.md → _index.md} +6 -1
- package/docs/content/docs/_index.md +60 -0
- package/docs/content/docs/directive/_index.md +4 -0
- package/docs/content/docs/directive/app.md +11 -0
- package/docs/content/docs/directive/aria.md +0 -0
- package/docs/content/docs/directive/channel.md +39 -0
- package/docs/content/docs/directive/class-even.md +47 -0
- package/docs/content/docs/directive/class-odd.md +48 -0
- package/docs/content/docs/directive/class.md +64 -0
- package/docs/content/docs/directive/cloak.md +78 -0
- package/docs/content/docs/directive/include.md +7 -0
- package/docs/content/docs/filter/_index.md +4 -0
- package/docs/content/docs/provider/_index.md +4 -0
- package/docs/content/docs/provider/eventBusProvider.md +35 -0
- package/docs/content/docs/provider/logProvider.md +59 -0
- package/docs/content/docs/provider/templateCacheProvider.md +35 -0
- package/docs/content/docs/service/_index.md +4 -0
- package/docs/content/docs/service/eventBus.md +56 -0
- package/docs/content/docs/service/log.md +113 -0
- package/docs/content/docs/service/templateCache.md +64 -0
- package/docs/docker-compose.yaml +2 -3
- package/docs/hugo.yaml +18 -19
- package/docs/layouts/404.html +8 -2
- package/docs/layouts/partials/hooks/head-end.html +3 -0
- package/docs/layouts/shortcodes/showhtml.html +2 -0
- package/docs/layouts/shortcodes/showjs.html +2 -0
- package/docs/layouts/shortcodes/showraw.html +1 -0
- package/docs/static/examples/counter/counter-test.html +17 -0
- package/docs/static/examples/counter/counter.html +5 -0
- package/docs/static/examples/counter/counter.test.js +28 -0
- package/docs/static/examples/eventbus/eventbus-test.html +19 -0
- package/docs/static/examples/eventbus/eventbus.html +13 -0
- package/docs/static/examples/eventbus/eventbus.js +15 -0
- package/docs/static/examples/eventbus/eventbus.test.js +19 -0
- package/docs/static/examples/ng-channel/ng-channel-test.html +17 -0
- package/docs/static/examples/ng-channel/ng-channel.html +24 -0
- package/docs/static/examples/ng-channel/ng-channel.test.js +31 -0
- package/docs/static/examples/ng-class/ng-class.html +71 -0
- package/docs/static/examples/ng-class/ng-class.js +0 -0
- package/docs/static/examples/ng-class-even/ng-class-even.html +8 -0
- package/docs/static/examples/ng-class-odd/ng-class-odd.html +8 -0
- package/docs/static/typedoc/assets/hierarchy.js +1 -0
- package/docs/static/typedoc/assets/highlight.css +78 -0
- package/docs/static/typedoc/assets/icons.js +18 -0
- package/docs/static/typedoc/assets/main.js +60 -0
- package/docs/static/typedoc/assets/navigation.js +1 -0
- package/docs/static/typedoc/assets/search.js +1 -0
- package/docs/static/typedoc/assets/style.css +1640 -0
- package/docs/static/typedoc/classes/LogProvider.html +6 -0
- package/docs/static/typedoc/classes/PubSub.html +71 -0
- package/docs/static/typedoc/classes/PubSubProvider.html +3 -0
- package/docs/static/typedoc/classes/TemplateCacheProvider.html +5 -0
- package/docs/static/typedoc/hierarchy.html +1 -0
- package/docs/static/typedoc/index.html +1 -0
- package/docs/static/typedoc/interfaces/ChangesObject.html +6 -0
- package/docs/static/typedoc/interfaces/ComponentOptions.html +16 -0
- package/docs/static/typedoc/interfaces/Controller.html +12 -0
- package/docs/static/typedoc/interfaces/Directive.html +36 -0
- package/docs/static/typedoc/interfaces/DirectivePrePost.html +4 -0
- package/docs/static/typedoc/interfaces/HttpHeadersGetter.html +1 -0
- package/docs/static/typedoc/interfaces/HttpProviderDefaults.html +31 -0
- package/docs/static/typedoc/interfaces/HttpRequestConfigHeaders.html +6 -0
- package/docs/static/typedoc/interfaces/HttpRequestTransformer.html +1 -0
- package/docs/static/typedoc/interfaces/HttpResponse.html +8 -0
- package/docs/static/typedoc/interfaces/HttpResponseTransformer.html +1 -0
- package/docs/static/typedoc/interfaces/HttpService.html +38 -0
- package/docs/static/typedoc/interfaces/LogService.html +12 -0
- package/docs/static/typedoc/interfaces/NgModelController.html +30 -0
- package/docs/static/typedoc/interfaces/NgModelOptions.html +16 -0
- package/docs/static/typedoc/interfaces/Provider.html +28 -0
- package/docs/static/typedoc/interfaces/RequestConfig.html +48 -0
- package/docs/static/typedoc/interfaces/RequestShortcutConfig.html +38 -0
- package/docs/static/typedoc/interfaces/ServiceProvider.html +5 -0
- package/docs/static/typedoc/interfaces/TranscludeFunctionObject.html +8 -0
- package/docs/static/typedoc/types/AnnotatedFactory.html +8 -0
- package/docs/static/typedoc/types/CloneAttachFunction.html +2 -0
- package/docs/static/typedoc/types/ControllerConstructor.html +2 -0
- package/docs/static/typedoc/types/DirectiveCompileFn.html +2 -0
- package/docs/static/typedoc/types/DirectiveController.html +2 -0
- package/docs/static/typedoc/types/DirectiveFactory.html +2 -0
- package/docs/static/typedoc/types/DirectiveLinkFn.html +2 -0
- package/docs/static/typedoc/types/ExpandoStore.html +2 -0
- package/docs/static/typedoc/types/Expression.html +6 -0
- package/docs/static/typedoc/types/FilterFactory.html +2 -0
- package/docs/static/typedoc/types/FilterFn.html +2 -0
- package/docs/static/typedoc/types/HttpPromise.html +1 -0
- package/docs/static/typedoc/types/Injectable.html +1 -0
- package/docs/static/typedoc/types/InjectableFactory.html +4 -0
- package/docs/static/typedoc/types/LogCall.html +2 -0
- package/docs/static/typedoc/types/LogServiceFactory.html +2 -0
- package/docs/static/typedoc/types/OnChangesObject.html +2 -0
- package/docs/static/typedoc/types/SwapInsertPosition.html +2 -0
- package/docs/static/typedoc/types/TController.html +2 -0
- package/docs/static/typedoc/types/TemplateCache.html +2 -0
- package/docs/static/typedoc/variables/EventBus.html +1 -0
- package/index.html +4 -2
- package/legacy.d.ts +2695 -0
- package/package.json +3 -3
- package/playwright.config.ts +2 -0
- package/src/animations/animate-css.js +5 -1
- package/src/animations/animate.spec.js +1 -1
- package/src/binding.spec.js +2 -0
- package/src/core/compile/compile.js +3 -1
- package/src/core/compile/compile.spec.js +21 -100
- package/src/core/core.html +0 -1
- package/src/core/di/injector.js +1 -1
- package/src/core/di/injector.spec.js +0 -30
- package/src/core/di/internal-injector.js +2 -5
- package/src/core/di/ng-module.js +1 -23
- package/src/core/di/ng-module.spec.js +0 -6
- package/src/core/exception-handler.js +1 -1
- package/src/core/prop.spec.js +1 -0
- package/src/core/task-tracker-factory.js +2 -2
- package/src/directive/bind/bind.spec.js +1 -4
- package/src/directive/channel/channel.js +12 -26
- package/src/directive/channel/channel.spec.js +4 -2
- package/src/directive/class/class.js +16 -0
- package/src/directive/class/class.spec.js +2 -0
- package/src/directive/events/event.spec.js +1 -0
- package/src/directive/form/form.spec.js +2 -0
- package/src/directive/http/delete.spec.js +24 -0
- package/src/directive/http/get.spec.js +211 -0
- package/src/directive/http/http.html +22 -0
- package/src/directive/http/http.js +245 -0
- package/src/directive/http/http.test.js +12 -0
- package/src/directive/http/post-example.html +30 -0
- package/src/directive/http/post.spec.js +24 -0
- package/src/directive/http/put.spec.js +24 -0
- package/src/directive/if/if.js +0 -2
- package/src/directive/if/if.spec.js +2 -0
- package/src/directive/include/include.spec.js +1 -1
- package/src/directive/input/input.spec.js +1 -0
- package/src/directive/model/model.spec.js +3 -0
- package/src/directive/model-options/model-options.spec.js +3 -5
- package/src/directive/observe/observe.spec.js +2 -1
- package/src/{core/pubsub/pubsub.html → directive/on/on.html} +1 -1
- package/src/{core → directive/on}/on.spec.js +5 -3
- package/src/directive/on/on.test.js +11 -0
- package/src/directive/options/options.spec.js +1 -0
- package/src/directive/repeat/repeat.spec.js +1 -1
- package/src/directive/script/script.js +1 -1
- package/src/directive/select/select.spec.js +1 -0
- package/src/directive/setter/setter.js +1 -1
- package/src/directive/setter/setter.spec.js +3 -1
- package/src/directive/style/style.js +1 -1
- package/src/directive/switch/switch.spec.js +1 -0
- package/src/injection-tokens.js +3 -0
- package/src/interface.ts +27 -4
- package/src/loader.js +8 -12
- package/src/loader.spec.js +0 -31
- package/src/public.js +15 -9
- package/src/router/directives/state-directives.spec.js +3 -1
- package/src/router/params/param-factory.js +6 -0
- package/src/router/params/param.js +22 -7
- package/src/router/router.html +0 -1
- package/src/router/router.test.js +2 -1
- package/src/router/services.spec.js +2 -0
- package/src/router/state/state-builder.js +3 -0
- package/src/router/state/state-builder.spec.js +2 -0
- package/src/router/state/state-service.js +1 -1
- package/src/router/state-filter.spec.js +2 -0
- package/src/router/template-factory.html +19 -0
- package/src/router/template-factory.js +3 -3
- package/src/router/template-factory.spec.js +1 -0
- package/src/router/template-factory.test.js +12 -0
- package/src/router/transition/transition-hook.js +1 -1
- package/src/router/url/url-service.js +1 -1
- package/src/router/view-scroll.spec.js +3 -1
- package/src/services/http/http.js +4 -4
- package/src/services/http/http.test.js +1 -1
- package/src/services/http/interface.ts +243 -0
- package/src/services/http-backend/http-backend.js +24 -12
- package/src/services/log/interface.ts +39 -0
- package/src/services/log/log.html +19 -0
- package/src/services/log/log.js +74 -0
- package/src/services/log/log.spec.js +64 -0
- package/src/services/log/log.test.js +11 -0
- package/src/services/pubsub/pubsub.html +19 -0
- package/src/{core → services}/pubsub/pubsub.js +12 -11
- package/src/{core → services}/pubsub/pubsub.spec.js +3 -3
- package/src/{core → services}/pubsub/pubsub.test.js +1 -1
- package/src/services/template-cache/interface.ts +4 -0
- package/src/services/template-cache/template-cache.html +22 -0
- package/src/services/template-cache/template-cache.js +13 -0
- package/src/services/template-cache/template-cache.spec.js +62 -0
- package/src/services/template-cache/template-cache.test.js +11 -0
- package/src/services/template-request.js +2 -2
- package/src/shared/cache.js +9 -0
- package/src/shared/common.js +11 -36
- package/src/shared/common.spec.js +34 -3
- package/src/shared/dom.js +16 -21
- package/typedoc.json +3 -2
- package/utils/express.js +11 -0
- package/@types/core/cache/cache-factory.d.ts +0 -22
- package/@types/core/cache/cache.d.ts +0 -33
- package/@types/services/log.d.ts +0 -53
- package/docs/content/en/docs/_index.md +0 -28
- package/docs/netlify.toml +0 -12
- package/src/core/cache/cache-factory.js +0 -19
- package/src/core/cache/cache.js +0 -30
- package/src/directive/class/class.md +0 -90
- package/src/directive/cloak/cloak.md +0 -24
- package/src/examples/counter.html +0 -20
- package/src/services/log.js +0 -95
- package/src/services/log.md +0 -39
- package/typedoc/assets/hierarchy.js +0 -2
- package/typedoc/assets/highlight.css +0 -209
- package/typedoc/assets/icons.js +0 -21
- package/typedoc/assets/main.js +0 -2589
- package/typedoc/assets/navigation.js +0 -2
- package/typedoc/assets/search.js +0 -2
- package/typedoc/assets/style.css +0 -1623
- package/typedoc/classes/animations_animate-cache.AnimateCacheProvider.html +0 -543
- package/typedoc/classes/animations_animate-css-driver.AnimateCssDriverProvider.html +0 -691
- package/typedoc/classes/animations_animate-css.AnimateCssProvider.html +0 -712
- package/typedoc/classes/animations_animate-js-driver.AnimateJsDriverProvider.html +0 -536
- package/typedoc/classes/animations_animate-js.AnimateJsProvider.html +0 -795
- package/typedoc/classes/animations_animate-queue.AnimateQueueProvider.html +0 -1137
- package/typedoc/classes/animations_animate-runner.AnimateAsyncRunFactoryProvider.html +0 -473
- package/typedoc/classes/animations_animate-runner.AnimateRunner.html +0 -1589
- package/typedoc/classes/animations_animate-runner.AnimateRunnerFactoryProvider.html +0 -474
- package/typedoc/classes/animations_animate.AnimateProvider.html +0 -1278
- package/typedoc/classes/animations_animation.AnimationProvider.html +0 -749
- package/typedoc/classes/animations_raf-scheduler.RafSchedulerProvider.html +0 -699
- package/typedoc/classes/core_cache_cache-factory.TemplateCacheProvider.html +0 -525
- package/typedoc/classes/core_compile_attributes.Attributes.html +0 -1776
- package/typedoc/classes/core_compile_compile.CompileProvider.html +0 -2137
- package/typedoc/classes/core_controller_controller.ControllerProvider.html +0 -894
- package/typedoc/classes/core_di_internal-injector.InjectorService.html +0 -1336
- package/typedoc/classes/core_di_internal-injector.ProviderInjector.html +0 -1242
- package/typedoc/classes/core_di_ng-module.NgModule.html +0 -1880
- package/typedoc/classes/core_exception-handler.ExceptionHandlerProvider.html +0 -631
- package/typedoc/classes/core_filter_filter.FilterProvider.html +0 -786
- package/typedoc/classes/core_interpolate_interpolate.InterpolateProvider.html +0 -1318
- package/typedoc/classes/core_location_location.Location.html +0 -2128
- package/typedoc/classes/core_location_location.LocationHashbangUrl.html +0 -2502
- package/typedoc/classes/core_location_location.LocationHtml5Url.html +0 -2490
- package/typedoc/classes/core_location_location.LocationProvider.html +0 -1023
- package/typedoc/classes/core_parse_ast_ast.AST.html +0 -2520
- package/typedoc/classes/core_parse_interpreter.ASTInterpreter.html +0 -3314
- package/typedoc/classes/core_parse_lexer_lexer.Lexer.html +0 -1788
- package/typedoc/classes/core_parse_parse.ParseProvider.html +0 -753
- package/typedoc/classes/core_parse_parser_parser.Parser.html +0 -741
- package/typedoc/classes/core_pubsub_pubsub.PubSub.html +0 -1346
- package/typedoc/classes/core_pubsub_pubsub.PubSubProvider.html +0 -576
- package/typedoc/classes/core_sanitize_sanitize-uri.SanitizeUriProvider.html +0 -696
- package/typedoc/classes/core_sce_sce.SceDelegateProvider.html +0 -1219
- package/typedoc/classes/core_sce_sce.SceProvider.html +0 -589
- package/typedoc/classes/core_scope_scope.RootScopeProvider.html +0 -520
- package/typedoc/classes/core_scope_scope.Scope.html +0 -2753
- package/typedoc/classes/core_task-tracker-factory.TaskTracker.html +0 -882
- package/typedoc/classes/core_task-tracker-factory.TaskTrackerFactoryProvider.html +0 -478
- package/typedoc/classes/directive_aria_aria.AriaProvider.html +0 -605
- package/typedoc/classes/directive_form_form.FormController.html +0 -2320
- package/typedoc/classes/directive_model_model.NgModelController.html +0 -4214
- package/typedoc/classes/loader.Angular.html +0 -1634
- package/typedoc/classes/router_common_glob.Glob.html +0 -904
- package/typedoc/classes/router_common_queue.Queue.html +0 -1284
- package/typedoc/classes/router_common_trace.Trace.html +0 -2020
- package/typedoc/classes/router_globals.RouterGlobals.html +0 -824
- package/typedoc/classes/router_params_param-factory.ParamFactory.html +0 -797
- package/typedoc/classes/router_params_param-type.ParamType.html +0 -1168
- package/typedoc/classes/router_params_param-types.ParamTypes.html +0 -770
- package/typedoc/classes/router_params_param.Param.html +0 -1614
- package/typedoc/classes/router_params_state-params.StateParams.html +0 -558
- package/typedoc/classes/router_path_path-node.PathNode.html +0 -1046
- package/typedoc/classes/router_path_path-utils.PathUtils.html +0 -1432
- package/typedoc/classes/router_resolve_resolvable.Resolvable.html +0 -1225
- package/typedoc/classes/router_resolve_resolve-context.ResolveContext.html +0 -1315
- package/typedoc/classes/router_state-provider.StateProvider.html +0 -957
- package/typedoc/classes/router_state_state-builder.StateBuilder.html +0 -1045
- package/typedoc/classes/router_state_state-matcher.StateMatcher.html +0 -742
- package/typedoc/classes/router_state_state-object.StateObject.html +0 -1515
- package/typedoc/classes/router_state_state-queue-manager.StateQueueManager.html +0 -941
- package/typedoc/classes/router_state_state-registry.StateRegistryProvider.html +0 -1712
- package/typedoc/classes/router_state_state-service.StateProvider.html +0 -3038
- package/typedoc/classes/router_state_target-state.TargetState.html +0 -1655
- package/typedoc/classes/router_state_views.ViewConfig.html +0 -1123
- package/typedoc/classes/router_template-factory.TemplateFactoryProvider.html +0 -1689
- package/typedoc/classes/router_transition_hook-builder.HookBuilder.html +0 -823
- package/typedoc/classes/router_transition_hook-registry.RegisteredHook.html +0 -1302
- package/typedoc/classes/router_transition_reject-factory.Rejection.html +0 -1299
- package/typedoc/classes/router_transition_transition-event-type.TransitionEventType.html +0 -995
- package/typedoc/classes/router_transition_transition-hook.TransitionHook.html +0 -1739
- package/typedoc/classes/router_transition_transition-service.TransitionProvider.html +0 -1763
- package/typedoc/classes/router_transition_transition.Transition.html +0 -3942
- package/typedoc/classes/router_url_url-config.UrlConfigProvider.html +0 -1198
- package/typedoc/classes/router_url_url-matcher.UrlMatcher.html +0 -2056
- package/typedoc/classes/router_url_url-rule.BaseUrlRule.html +0 -736
- package/typedoc/classes/router_url_url-rule.UrlRuleFactory.html +0 -1461
- package/typedoc/classes/router_url_url-rules.UrlRules.html +0 -1808
- package/typedoc/classes/router_url_url-service.UrlService.html +0 -2792
- package/typedoc/classes/router_view-scroll.ViewScrollProvider.html +0 -687
- package/typedoc/classes/router_view_view.ViewService.html +0 -1691
- package/typedoc/classes/services_anchor-scroll.AnchorScrollProvider.html +0 -618
- package/typedoc/classes/services_browser.Browser.html +0 -1331
- package/typedoc/classes/services_browser.BrowserProvider.html +0 -564
- package/typedoc/classes/services_http-backend_http-backend.HttpBackendProvider.html +0 -782
- package/typedoc/classes/services_http_http.HttpParamSerializerProvider.html +0 -535
- package/typedoc/classes/services_http_http.HttpProvider.html +0 -1537
- package/typedoc/classes/services_log.LogProvider.html +0 -776
- package/typedoc/classes/services_template-request.TemplateRequestProvider.html +0 -914
- package/typedoc/classes/shared_noderef.NodeRef.html +0 -1529
- package/typedoc/enums/core_parse_ast-type.ASTType.html +0 -903
- package/typedoc/enums/router_common_trace.Category.html +0 -492
- package/typedoc/enums/router_transition_interface.TransitionHookPhase.html +0 -489
- package/typedoc/enums/router_transition_interface.TransitionHookScope.html +0 -390
- package/typedoc/enums/router_transition_reject-factory.RejectType.html +0 -546
- package/typedoc/functions/animations_animate-cache.animateCache.html +0 -818
- package/typedoc/functions/animations_animate-children-directive.__AnimateChildrenDirective.html +0 -412
- package/typedoc/functions/animations_animate-swap.ngAnimateSwapDirective.html +0 -409
- package/typedoc/functions/animations_shared.applyAnimationClassesFactory.html +0 -294
- package/typedoc/functions/animations_shared.applyAnimationFromStyles.html +0 -297
- package/typedoc/functions/animations_shared.applyAnimationStyles.html +0 -296
- package/typedoc/functions/animations_shared.applyAnimationToStyles.html +0 -297
- package/typedoc/functions/animations_shared.applyGeneratedPreparationClasses.html +0 -311
- package/typedoc/functions/animations_shared.applyInlineStyle.html +0 -293
- package/typedoc/functions/animations_shared.assertArg.html +0 -303
- package/typedoc/functions/animations_shared.blockKeyframeAnimations.html +0 -299
- package/typedoc/functions/animations_shared.clearGeneratedClasses.html +0 -297
- package/typedoc/functions/animations_shared.concatWithSpace.html +0 -293
- package/typedoc/functions/animations_shared.extractElementNode.html +0 -292
- package/typedoc/functions/animations_shared.mergeAnimationDetails.html +0 -307
- package/typedoc/functions/animations_shared.mergeClasses.html +0 -293
- package/typedoc/functions/animations_shared.packageStyles.html +0 -299
- package/typedoc/functions/animations_shared.pendClasses.html +0 -303
- package/typedoc/functions/animations_shared.prepareAnimationOptions.html +0 -287
- package/typedoc/functions/animations_shared.removeFromArray.html +0 -293
- package/typedoc/functions/animations_shared.resolveElementClasses.html +0 -328
- package/typedoc/functions/animations_shared.stripCommentsFromElement.html +0 -299
- package/typedoc/functions/core_controller_controller.identifierForController.html +0 -299
- package/typedoc/functions/core_di_injector.annotate.html +0 -311
- package/typedoc/functions/core_di_injector.createInjector.html +0 -323
- package/typedoc/functions/core_location_location.serverBase.html +0 -285
- package/typedoc/functions/core_location_location.stripBaseUrl.html +0 -303
- package/typedoc/functions/core_location_location.stripFile.html +0 -285
- package/typedoc/functions/core_location_location.stripHash.html +0 -285
- package/typedoc/functions/core_parse_interpreter.isAssignable.html +0 -294
- package/typedoc/functions/core_parse_parse.constantWatchDelegate.html +0 -323
- package/typedoc/functions/core_sce_sce.adjustMatcher.html +0 -281
- package/typedoc/functions/core_sce_sce.escapeForRegexp.html +0 -281
- package/typedoc/functions/core_scope_scope.createScope.html +0 -334
- package/typedoc/functions/core_scope_scope.nextId.html +0 -268
- package/typedoc/functions/core_url-utils_url-utils.getBaseUrl.html +0 -274
- package/typedoc/functions/core_url-utils_url-utils.urlIsAllowedOriginFactory.html +0 -314
- package/typedoc/functions/core_url-utils_url-utils.urlIsSameOrigin.html +0 -303
- package/typedoc/functions/core_url-utils_url-utils.urlIsSameOriginAsBaseUrl.html +0 -309
- package/typedoc/functions/core_url-utils_url-utils.urlResolve.html +0 -285
- package/typedoc/functions/core_url-utils_url-utils.urlsAreSameOrigin.html +0 -320
- package/typedoc/functions/directive_aria_aria.ngCheckedAriaDirective.html +0 -400
- package/typedoc/functions/directive_aria_aria.ngClickAriaDirective.html +0 -489
- package/typedoc/functions/directive_aria_aria.ngDblclickAriaDirective.html +0 -428
- package/typedoc/functions/directive_aria_aria.ngDisabledAriaDirective.html +0 -400
- package/typedoc/functions/directive_aria_aria.ngHideAriaDirective.html +0 -399
- package/typedoc/functions/directive_aria_aria.ngMessagesAriaDirective.html +0 -334
- package/typedoc/functions/directive_aria_aria.ngModelAriaDirective.html +0 -512
- package/typedoc/functions/directive_aria_aria.ngReadonlyAriaDirective.html +0 -400
- package/typedoc/functions/directive_aria_aria.ngRequiredAriaDirective.html +0 -400
- package/typedoc/functions/directive_aria_aria.ngShowAriaDirective.html +0 -399
- package/typedoc/functions/directive_aria_aria.ngValueAriaDirective.html +0 -399
- package/typedoc/functions/directive_bind_bind.ngBindDirective.html +0 -279
- package/typedoc/functions/directive_bind_bind.ngBindHtmlDirective.html +0 -408
- package/typedoc/functions/directive_bind_bind.ngBindTemplateDirective.html +0 -283
- package/typedoc/functions/directive_channel_channel.ngChannelDirective.html +0 -312
- package/typedoc/functions/directive_cloak_cloak.ngCloakDirective.html +0 -279
- package/typedoc/functions/directive_controller_controller.ngControllerDirective.html +0 -283
- package/typedoc/functions/directive_events_events.createEventDirective.html +0 -353
- package/typedoc/functions/directive_form_form.setupValidity.html +0 -285
- package/typedoc/functions/directive_if_if.ngIfDirective.html +0 -407
- package/typedoc/functions/directive_include_include.ngIncludeDirective.html +0 -464
- package/typedoc/functions/directive_include_include.ngIncludeFillContentDirective.html +0 -419
- package/typedoc/functions/directive_init_init.ngInitDirective.html +0 -279
- package/typedoc/functions/directive_input_input.badInputChecker.html +0 -332
- package/typedoc/functions/directive_input_input.countDecimals.html +0 -285
- package/typedoc/functions/directive_input_input.createDateInputType.html +0 -392
- package/typedoc/functions/directive_input_input.createDateParser.html +0 -319
- package/typedoc/functions/directive_input_input.hiddenInputBrowserCacheDirective.html +0 -287
- package/typedoc/functions/directive_input_input.inputDirective.html +0 -523
- package/typedoc/functions/directive_input_input.isNumberInteger.html +0 -285
- package/typedoc/functions/directive_input_input.isValidForStep.html +0 -305
- package/typedoc/functions/directive_input_input.ngValueDirective.html +0 -279
- package/typedoc/functions/directive_input_input.numberFormatterParser.html +0 -289
- package/typedoc/functions/directive_input_input.numberInputType.html +0 -354
- package/typedoc/functions/directive_input_input.rangeInputType.html +0 -315
- package/typedoc/functions/directive_input_input.weekParser.html +0 -295
- package/typedoc/functions/directive_messages_messages.ngMessagesDirective.html +0 -464
- package/typedoc/functions/directive_messages_messages.ngMessagesIncludeDirective.html +0 -476
- package/typedoc/functions/directive_model-options_model-options.ngModelOptionsDirective.html +0 -283
- package/typedoc/functions/directive_model_model.ngModelDirective.html +0 -449
- package/typedoc/functions/directive_non-bindable_non-bindable.ngNonBindableDirective.html +0 -283
- package/typedoc/functions/directive_observe_observe.ngObserveDirective.html +0 -317
- package/typedoc/functions/directive_ref_ref.ngRefDirective.html +0 -483
- package/typedoc/functions/directive_repeat_repeat.ngRepeatDirective.html +0 -409
- package/typedoc/functions/directive_script_script.scriptDirective.html +0 -413
- package/typedoc/functions/directive_select_select.optionDirective.html +0 -498
- package/typedoc/functions/directive_select_select.selectDirective.html +0 -279
- package/typedoc/functions/directive_setter_setter.ngSetterDirective.html +0 -431
- package/typedoc/functions/directive_show-hide_show-hide.ngHideDirective.html +0 -405
- package/typedoc/functions/directive_show-hide_show-hide.ngShowDirective.html +0 -405
- package/typedoc/functions/directive_style_style.ngStyleDirective.html +0 -279
- package/typedoc/functions/directive_switch_switch.ngSwitchDefaultDirective.html +0 -283
- package/typedoc/functions/directive_switch_switch.ngSwitchDirective.html +0 -405
- package/typedoc/functions/directive_switch_switch.ngSwitchWhenDirective.html +0 -283
- package/typedoc/functions/filters_filter.filterFilter.html +0 -275
- package/typedoc/functions/filters_filters.formatNumber.html +0 -435
- package/typedoc/functions/filters_filters.jsonFilter.html +0 -277
- package/typedoc/functions/filters_limit-to.limitToFilter.html +0 -277
- package/typedoc/functions/filters_order-by.orderByFilter.html +0 -403
- package/typedoc/functions/public.publishExternalAPI.html +0 -305
- package/typedoc/functions/router_common_glob.hasGlobs.html +0 -292
- package/typedoc/functions/router_directives_state-directives._StateRefActiveDirective.html +0 -468
- package/typedoc/functions/router_directives_state-directives._StateRefDirective.html +0 -493
- package/typedoc/functions/router_directives_state-directives._StateRefDynamicDirective.html +0 -439
- package/typedoc/functions/router_directives_view-directive._ViewDirectiveFill.html +0 -477
- package/typedoc/functions/router_hooks_core-resolvables.registerAddCoreResolvables.html +0 -292
- package/typedoc/functions/router_hooks_core-resolvables.treeChangesCleanup.html +0 -288
- package/typedoc/functions/router_hooks_ignored-transition.registerIgnoredTransitionHook.html +0 -292
- package/typedoc/functions/router_hooks_invalid-transition.registerInvalidTransitionHook.html +0 -292
- package/typedoc/functions/router_hooks_lazy-load.lazyLoadState.html +0 -318
- package/typedoc/functions/router_hooks_lazy-load.registerLazyLoadHook.html +0 -381
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnEnterHook.html +0 -289
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnExitHook.html +0 -289
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnRetainHook.html +0 -289
- package/typedoc/functions/router_hooks_redirect-to.registerRedirectToHook.html +0 -300
- package/typedoc/functions/router_hooks_resolve.registerEagerResolvePath.html +0 -290
- package/typedoc/functions/router_hooks_resolve.registerLazyResolveState.html +0 -290
- package/typedoc/functions/router_hooks_resolve.registerResolveRemaining.html +0 -290
- package/typedoc/functions/router_hooks_update-globals.registerUpdateGlobalState.html +0 -292
- package/typedoc/functions/router_hooks_url.registerUpdateUrl.html +0 -309
- package/typedoc/functions/router_hooks_views.registerActivateViews.html +0 -300
- package/typedoc/functions/router_hooks_views.registerLoadEnteringViews.html +0 -292
- package/typedoc/functions/router_path_path-utils.makeTargetState.html +0 -324
- package/typedoc/functions/router_state-filters._IncludedByStateFilter.html +0 -437
- package/typedoc/functions/router_state-filters._IsStateFilter.html +0 -433
- package/typedoc/functions/router_state_state-builder.resolvablesBuilder.html +0 -347
- package/typedoc/functions/router_state_state-registry.getLocals.html +0 -285
- package/typedoc/functions/router_state_views.getViewConfigFactory.html +0 -300
- package/typedoc/functions/router_state_views.ng1ViewsBuilder.html +0 -304
- package/typedoc/functions/router_transition_hook-registry.makeEvent.html +0 -343
- package/typedoc/functions/router_transition_hook-registry.matchState.html +0 -334
- package/typedoc/functions/services_browser.trimEmptyHash.html +0 -291
- package/typedoc/functions/services_cookie-reader.getCookies.html +0 -272
- package/typedoc/functions/services_http-backend_http-backend.createHttpBackend.html +0 -406
- package/typedoc/functions/services_http_http.defaultHttpResponseTransform.html +0 -301
- package/typedoc/functions/shared_common._removeFrom.html +0 -291
- package/typedoc/functions/shared_common.allTrueR.html +0 -314
- package/typedoc/functions/shared_common.ancestors.html +0 -309
- package/typedoc/functions/shared_common.anyTrueR.html +0 -317
- package/typedoc/functions/shared_common.applyPairs.html +0 -322
- package/typedoc/functions/shared_common.arrayTuples.html +0 -313
- package/typedoc/functions/shared_common.assertFn.html +0 -306
- package/typedoc/functions/shared_common.copy.html +0 -292
- package/typedoc/functions/shared_common.createProxyFunctions.html +0 -430
- package/typedoc/functions/shared_common.defaults.html +0 -304
- package/typedoc/functions/shared_common.deregAll.html +0 -288
- package/typedoc/functions/shared_common.equals.html +0 -291
- package/typedoc/functions/shared_common.filter.html +0 -298
- package/typedoc/functions/shared_common.find.html +0 -295
- package/typedoc/functions/shared_common.flatten.html +0 -301
- package/typedoc/functions/shared_common.flattenR.html +0 -311
- package/typedoc/functions/shared_common.inherit.html +0 -317
- package/typedoc/functions/shared_common.map.html +0 -304
- package/typedoc/functions/shared_common.omit.html +0 -322
- package/typedoc/functions/shared_common.pairs.html +0 -305
- package/typedoc/functions/shared_common.pick.html +0 -334
- package/typedoc/functions/shared_common.pushR.html +0 -296
- package/typedoc/functions/shared_common.silenceUncaughtInPromise.html +0 -285
- package/typedoc/functions/shared_common.silentRejection.html +0 -281
- package/typedoc/functions/shared_common.tail.html +0 -282
- package/typedoc/functions/shared_common.uniqR.html +0 -292
- package/typedoc/functions/shared_common.unnest.html +0 -303
- package/typedoc/functions/shared_common.unnestR.html +0 -311
- package/typedoc/functions/shared_dom.appendNodesToElement.html +0 -316
- package/typedoc/functions/shared_dom.buildFragment.html +0 -284
- package/typedoc/functions/shared_dom.cleanElementData.html +0 -302
- package/typedoc/functions/shared_dom.createElementFromHTML.html +0 -299
- package/typedoc/functions/shared_dom.createNodelistFromHTML.html +0 -296
- package/typedoc/functions/shared_dom.dealoc.html +0 -295
- package/typedoc/functions/shared_dom.deleteCacheData.html +0 -306
- package/typedoc/functions/shared_dom.domInsert.html +0 -301
- package/typedoc/functions/shared_dom.emptyElement.html +0 -289
- package/typedoc/functions/shared_dom.getBlockNodes.html +0 -298
- package/typedoc/functions/shared_dom.getBooleanAttrName.html +0 -316
- package/typedoc/functions/shared_dom.getCacheData.html +0 -313
- package/typedoc/functions/shared_dom.getController.html +0 -318
- package/typedoc/functions/shared_dom.getExpando.html +0 -333
- package/typedoc/functions/shared_dom.getInheritedData.html +0 -294
- package/typedoc/functions/shared_dom.getInjector.html +0 -294
- package/typedoc/functions/shared_dom.getIsolateScope.html +0 -295
- package/typedoc/functions/shared_dom.getOrSetCacheData.html +0 -330
- package/typedoc/functions/shared_dom.getScope.html +0 -295
- package/typedoc/functions/shared_dom.isRoot.html +0 -286
- package/typedoc/functions/shared_dom.isTextNode.html +0 -290
- package/typedoc/functions/shared_dom.kebabToCamel.html +0 -289
- package/typedoc/functions/shared_dom.parseHtml.html +0 -295
- package/typedoc/functions/shared_dom.removeElement.html +0 -297
- package/typedoc/functions/shared_dom.removeElementData.html +0 -305
- package/typedoc/functions/shared_dom.setCacheData.html +0 -328
- package/typedoc/functions/shared_dom.setInheritedData.html +0 -312
- package/typedoc/functions/shared_dom.setIsolateScope.html +0 -310
- package/typedoc/functions/shared_dom.setScope.html +0 -318
- package/typedoc/functions/shared_dom.snakeToCamel.html +0 -286
- package/typedoc/functions/shared_dom.startingTag.html +0 -301
- package/typedoc/functions/shared_hof.all.html +0 -305
- package/typedoc/functions/shared_hof.compose.html +0 -306
- package/typedoc/functions/shared_hof.curry.html +0 -319
- package/typedoc/functions/shared_hof.is.html +0 -297
- package/typedoc/functions/shared_hof.or.html +0 -312
- package/typedoc/functions/shared_hof.parse.html +0 -292
- package/typedoc/functions/shared_hof.pattern.html +0 -343
- package/typedoc/functions/shared_hof.pipe.html +0 -289
- package/typedoc/functions/shared_hof.val.html +0 -288
- package/typedoc/functions/shared_predicates.isInjectable.html +0 -294
- package/typedoc/functions/shared_predicates.isPromise.html +0 -292
- package/typedoc/functions/shared_strings.beforeAfterSubstr.html +0 -302
- package/typedoc/functions/shared_strings.fnToString.html +0 -281
- package/typedoc/functions/shared_strings.functionToString.html +0 -281
- package/typedoc/functions/shared_strings.joinNeighborsR.html +0 -327
- package/typedoc/functions/shared_strings.kebobString.html +0 -281
- package/typedoc/functions/shared_strings.maxLength.html +0 -309
- package/typedoc/functions/shared_strings.padString.html +0 -312
- package/typedoc/functions/shared_strings.splitOnDelim.html +0 -328
- package/typedoc/functions/shared_strings.stringify.html +0 -281
- package/typedoc/functions/shared_strings.stripLastPathElement.html +0 -284
- package/typedoc/functions/shared_strings.trimHashVal.html +0 -281
- package/typedoc/functions/shared_test-utils.bootstrap.html +0 -297
- package/typedoc/functions/shared_test-utils.browserTrigger.html +0 -307
- package/typedoc/functions/shared_test-utils.wait.html +0 -301
- package/typedoc/functions/shared_utils.addDateMinutes.html +0 -291
- package/typedoc/functions/shared_utils.arrayRemove.html +0 -344
- package/typedoc/functions/shared_utils.assert.html +0 -300
- package/typedoc/functions/shared_utils.assertArg.html +0 -305
- package/typedoc/functions/shared_utils.assertArgFn.html +0 -302
- package/typedoc/functions/shared_utils.assertNotHasOwnProperty.html +0 -310
- package/typedoc/functions/shared_utils.baseExtend.html +0 -301
- package/typedoc/functions/shared_utils.bind.html +0 -333
- package/typedoc/functions/shared_utils.concat.html +0 -301
- package/typedoc/functions/shared_utils.convertTimezoneToLocal.html +0 -305
- package/typedoc/functions/shared_utils.csp.html +0 -263
- package/typedoc/functions/shared_utils.directiveNormalize.html +0 -295
- package/typedoc/functions/shared_utils.encodeUriQuery.html +0 -314
- package/typedoc/functions/shared_utils.encodeUriSegment.html +0 -302
- package/typedoc/functions/shared_utils.equals.html +0 -357
- package/typedoc/functions/shared_utils.errorHandlingConfig.html +0 -313
- package/typedoc/functions/shared_utils.extend.html +0 -323
- package/typedoc/functions/shared_utils.fromJson.html +0 -290
- package/typedoc/functions/shared_utils.getNgAttribute.html +0 -291
- package/typedoc/functions/shared_utils.getNodeName.html +0 -292
- package/typedoc/functions/shared_utils.hasAnimate.html +0 -286
- package/typedoc/functions/shared_utils.hasCustomToString.html +0 -281
- package/typedoc/functions/shared_utils.hasOwn.html +0 -339
- package/typedoc/functions/shared_utils.hashKey.html +0 -296
- package/typedoc/functions/shared_utils.includes.html +0 -291
- package/typedoc/functions/shared_utils.inherit.html +0 -294
- package/typedoc/functions/shared_utils.isArrayBuffer.html +0 -283
- package/typedoc/functions/shared_utils.isArrayLike.html +0 -290
- package/typedoc/functions/shared_utils.isBlankObject.html +0 -295
- package/typedoc/functions/shared_utils.isBlob.html +0 -283
- package/typedoc/functions/shared_utils.isBoolean.html +0 -283
- package/typedoc/functions/shared_utils.isDate.html +0 -281
- package/typedoc/functions/shared_utils.isDefined.html +0 -290
- package/typedoc/functions/shared_utils.isElement.html +0 -281
- package/typedoc/functions/shared_utils.isError.html +0 -296
- package/typedoc/functions/shared_utils.isFile.html +0 -283
- package/typedoc/functions/shared_utils.isFormData.html +0 -283
- package/typedoc/functions/shared_utils.isFunction.html +0 -290
- package/typedoc/functions/shared_utils.isNull.html +0 -290
- package/typedoc/functions/shared_utils.isNullOrUndefined.html +0 -290
- package/typedoc/functions/shared_utils.isNumber.html +0 -303
- package/typedoc/functions/shared_utils.isNumberNaN.html +0 -283
- package/typedoc/functions/shared_utils.isObject.html +0 -298
- package/typedoc/functions/shared_utils.isObjectEmpty.html +0 -283
- package/typedoc/functions/shared_utils.isPromiseLike.html +0 -283
- package/typedoc/functions/shared_utils.isProxy.html +0 -283
- package/typedoc/functions/shared_utils.isRegExp.html +0 -290
- package/typedoc/functions/shared_utils.isScope.html +0 -283
- package/typedoc/functions/shared_utils.isString.html +0 -290
- package/typedoc/functions/shared_utils.isTypedArray.html +0 -283
- package/typedoc/functions/shared_utils.isUndefined.html +0 -290
- package/typedoc/functions/shared_utils.isValidObjectMaxDepth.html +0 -287
- package/typedoc/functions/shared_utils.isWindow.html +0 -290
- package/typedoc/functions/shared_utils.lowercase.html +0 -302
- package/typedoc/functions/shared_utils.mergeClasses.html +0 -291
- package/typedoc/functions/shared_utils.minErr.html +0 -341
- package/typedoc/functions/shared_utils.nextUid.html +0 -268
- package/typedoc/functions/shared_utils.parseKeyValue.html +0 -288
- package/typedoc/functions/shared_utils.setHashKey.html +0 -303
- package/typedoc/functions/shared_utils.shallowCopy.html +0 -299
- package/typedoc/functions/shared_utils.simpleCompare.html +0 -291
- package/typedoc/functions/shared_utils.sliceArgs.html +0 -291
- package/typedoc/functions/shared_utils.snakeCase.html +0 -291
- package/typedoc/functions/shared_utils.stringify.html +0 -281
- package/typedoc/functions/shared_utils.timezoneToOffset.html +0 -291
- package/typedoc/functions/shared_utils.toDebugString.html +0 -281
- package/typedoc/functions/shared_utils.toInt.html +0 -280
- package/typedoc/functions/shared_utils.toJson.html +0 -350
- package/typedoc/functions/shared_utils.toKeyValue.html +0 -281
- package/typedoc/functions/shared_utils.trim.html +0 -280
- package/typedoc/functions/shared_utils.tryDecodeURIComponent.html +0 -300
- package/typedoc/functions/shared_utils.uppercase.html +0 -302
- package/typedoc/hierarchy.html +0 -274
- package/typedoc/index.html +0 -668
- package/typedoc/interfaces/animations_animate.AnimationOptions.html +0 -506
- package/typedoc/interfaces/animations_raf-scheduler.ServiceProvider.html +0 -390
- package/typedoc/interfaces/core_cache_cache.ExpandoStore.html +0 -448
- package/typedoc/interfaces/core_compile_compile.LinkFnMapping.html +0 -466
- package/typedoc/interfaces/core_compile_compile.NodeLinkFnCtx.html +0 -596
- package/typedoc/interfaces/core_compile_compile.SimpleChange.html +0 -412
- package/typedoc/interfaces/core_location_location.DefaultPorts.html +0 -444
- package/typedoc/interfaces/core_location_location.Html5Mode.html +0 -491
- package/typedoc/interfaces/core_parse_ast_ast.Token.html +0 -598
- package/typedoc/interfaces/core_parse_interface.CompiledExpressionHandlerMap.html +0 -570
- package/typedoc/interfaces/core_parse_interface.CompiledExpressionProps.html +0 -959
- package/typedoc/interfaces/core_parse_lexer_lexer.LexerOptions.html +0 -466
- package/typedoc/interfaces/core_parse_parser_parser.ParsedAST.html +0 -378
- package/typedoc/interfaces/core_sanitize_interface.SanitizerFn.html +0 -305
- package/typedoc/interfaces/core_scope_scope.AsyncQueueTask.html +0 -455
- package/typedoc/interfaces/core_scope_scope.Listener.html +0 -688
- package/typedoc/interfaces/directive_model-options_model-options.ModelOptionsConfig.html +0 -570
- package/typedoc/interfaces/interface.ChangesObject.html +0 -445
- package/typedoc/interfaces/interface.ComponentOptions.html +0 -712
- package/typedoc/interfaces/interface.Controller.html +0 -582
- package/typedoc/interfaces/interface.Directive.html +0 -1250
- package/typedoc/interfaces/interface.DirectivePrePost.html +0 -423
- package/typedoc/interfaces/interface.NgModelController.html +0 -1362
- package/typedoc/interfaces/interface.NgModelOptions.html +0 -660
- package/typedoc/interfaces/interface.Provider.html +0 -1056
- package/typedoc/interfaces/interface.TranscludeFunctionObject.html +0 -723
- package/typedoc/interfaces/loader.AngularBootstrapConfig.html +0 -374
- package/typedoc/interfaces/router_params_interface.ParamDeclaration.html +0 -1211
- package/typedoc/interfaces/router_params_interface.ParamTypeDefinition.html +0 -1273
- package/typedoc/interfaces/router_params_interface.RawParams.html +0 -295
- package/typedoc/interfaces/router_params_interface.Replace.html +0 -429
- package/typedoc/interfaces/router_resolve_interface.CustomAsyncPolicy.html +0 -291
- package/typedoc/interfaces/router_resolve_interface.ProviderLike.html +0 -580
- package/typedoc/interfaces/router_resolve_interface.ResolvableLiteral.html +0 -601
- package/typedoc/interfaces/router_resolve_interface.ResolvePolicy.html +0 -638
- package/typedoc/interfaces/router_state_interface.HrefOptions.html +0 -530
- package/typedoc/interfaces/router_state_interface.LazyLoadResult.html +0 -390
- package/typedoc/interfaces/router_state_interface.StateDeclaration.html +0 -2461
- package/typedoc/interfaces/router_state_interface.TargetStateDef.html +0 -468
- package/typedoc/interfaces/router_state_interface.TransitionPromise.html +0 -1192
- package/typedoc/interfaces/router_state_interface.ViewDeclaration.html +0 -1499
- package/typedoc/interfaces/router_template-factory.BindingTuple.html +0 -406
- package/typedoc/interfaces/router_transition_interface.HookMatchCriteria.html +0 -719
- package/typedoc/interfaces/router_transition_interface.HookRegOptions.html +0 -482
- package/typedoc/interfaces/router_transition_interface.IHookRegistry.html +0 -2969
- package/typedoc/interfaces/router_transition_interface.IMatchingNodes.html +0 -594
- package/typedoc/interfaces/router_transition_interface.PathType.html +0 -411
- package/typedoc/interfaces/router_transition_interface.PathTypes.html +0 -588
- package/typedoc/interfaces/router_transition_interface.RegisteredHooks.html +0 -266
- package/typedoc/interfaces/router_transition_interface.TransitionCreateHookFn.html +0 -316
- package/typedoc/interfaces/router_transition_interface.TransitionHookFn.html +0 -352
- package/typedoc/interfaces/router_transition_interface.TransitionHookOptions.html +0 -627
- package/typedoc/interfaces/router_transition_interface.TransitionOptions.html +0 -1096
- package/typedoc/interfaces/router_transition_interface.TransitionStateHookFn.html +0 -374
- package/typedoc/interfaces/router_transition_interface.TreeChanges.html +0 -769
- package/typedoc/interfaces/router_view_interface.ActiveUIView.html +0 -620
- package/typedoc/interfaces/router_view_interface.ViewConfig.html +0 -651
- package/typedoc/interfaces/router_view_interface.ViewContext.html +0 -419
- package/typedoc/interfaces/services_anchor-scroll.AnchorScrollObject.html +0 -379
- package/typedoc/interfaces/services_log.LogService.html +0 -566
- package/typedoc/interfaces/shared_interface.TypedMap.html +0 -268
- package/typedoc/interfaces/shared_utils.ErrorHandlingConfig.html +0 -435
- package/typedoc/media/CONTRIBUTING.md +0 -248
- package/typedoc/media/DEVELOPERS.md +0 -500
- package/typedoc/modules/animations_animate-cache.html +0 -383
- package/typedoc/modules/animations_animate-children-directive.html +0 -326
- package/typedoc/modules/animations_animate-css-driver.html +0 -324
- package/typedoc/modules/animations_animate-css.html +0 -320
- package/typedoc/modules/animations_animate-js-driver.html +0 -324
- package/typedoc/modules/animations_animate-js.html +0 -320
- package/typedoc/modules/animations_animate-queue.html +0 -320
- package/typedoc/modules/animations_animate-runner.html +0 -382
- package/typedoc/modules/animations_animate-swap.html +0 -320
- package/typedoc/modules/animations_animate.html +0 -447
- package/typedoc/modules/animations_animation.html +0 -320
- package/typedoc/modules/animations_interface.html +0 -322
- package/typedoc/modules/animations_raf-scheduler.html +0 -446
- package/typedoc/modules/animations_shared.html +0 -1535
- package/typedoc/modules/core_cache_cache-factory.html +0 -385
- package/typedoc/modules/core_cache_cache.html +0 -457
- package/typedoc/modules/core_compile_attributes.html +0 -319
- package/typedoc/modules/core_compile_compile.html +0 -755
- package/typedoc/modules/core_controller_controller.html +0 -385
- package/typedoc/modules/core_di_injector.html +0 -346
- package/typedoc/modules/core_di_internal-injector.html +0 -350
- package/typedoc/modules/core_di_ng-module.html +0 -490
- package/typedoc/modules/core_error-handler.html +0 -322
- package/typedoc/modules/core_exception-handler.html +0 -448
- package/typedoc/modules/core_filter_filter.html +0 -319
- package/typedoc/modules/core_interpolate_interpolate.html +0 -322
- package/typedoc/modules/core_location_location.html +0 -636
- package/typedoc/modules/core_parse_ast-type.html +0 -321
- package/typedoc/modules/core_parse_ast_ast-node.html +0 -322
- package/typedoc/modules/core_parse_ast_ast.html +0 -436
- package/typedoc/modules/core_parse_interface.html +0 -470
- package/typedoc/modules/core_parse_interpreter.html +0 -537
- package/typedoc/modules/core_parse_lexer_lexer.html +0 -440
- package/typedoc/modules/core_parse_lexer_token.html +0 -319
- package/typedoc/modules/core_parse_parse.html +0 -382
- package/typedoc/modules/core_parse_parser_parser.html +0 -381
- package/typedoc/modules/core_pubsub_pubsub.html +0 -471
- package/typedoc/modules/core_sanitize_interface.html +0 -320
- package/typedoc/modules/core_sanitize_sanitize-uri.html +0 -386
- package/typedoc/modules/core_sce_sce.html +0 -560
- package/typedoc/modules/core_scope_scope.html +0 -700
- package/typedoc/modules/core_task-tracker-factory.html +0 -481
- package/typedoc/modules/core_url-utils_url-utils.html +0 -527
- package/typedoc/modules/directive_aria_aria.html +0 -672
- package/typedoc/modules/directive_attrs_attrs.html +0 -350
- package/typedoc/modules/directive_bind_bind.html +0 -377
- package/typedoc/modules/directive_channel_channel.html +0 -322
- package/typedoc/modules/directive_class_class.html +0 -376
- package/typedoc/modules/directive_cloak_cloak.html +0 -320
- package/typedoc/modules/directive_controller_controller.html +0 -322
- package/typedoc/modules/directive_events_events.html +0 -383
- package/typedoc/modules/directive_form_form.html +0 -524
- package/typedoc/modules/directive_if_if.html +0 -319
- package/typedoc/modules/directive_include_include.html +0 -352
- package/typedoc/modules/directive_init_init.html +0 -319
- package/typedoc/modules/directive_input_input.html +0 -804
- package/typedoc/modules/directive_messages_messages.html +0 -473
- package/typedoc/modules/directive_model-options_model-options.html +0 -452
- package/typedoc/modules/directive_model_model.html +0 -445
- package/typedoc/modules/directive_non-bindable_non-bindable.html +0 -324
- package/typedoc/modules/directive_observe_observe.html +0 -322
- package/typedoc/modules/directive_options_options.html +0 -322
- package/typedoc/modules/directive_ref_ref.html +0 -319
- package/typedoc/modules/directive_repeat_repeat.html +0 -320
- package/typedoc/modules/directive_script_script.html +0 -320
- package/typedoc/modules/directive_select_select.html +0 -348
- package/typedoc/modules/directive_setter_setter.html +0 -320
- package/typedoc/modules/directive_show-hide_show-hide.html +0 -350
- package/typedoc/modules/directive_style_style.html +0 -320
- package/typedoc/modules/directive_switch_switch.html +0 -378
- package/typedoc/modules/directive_transclude_transclude.html +0 -322
- package/typedoc/modules/directive_validators_validators.html +0 -406
- package/typedoc/modules/filters_filter.html +0 -319
- package/typedoc/modules/filters_filters.html +0 -346
- package/typedoc/modules/filters_limit-to.html +0 -319
- package/typedoc/modules/filters_order-by.html +0 -319
- package/typedoc/modules/index.html +0 -241
- package/typedoc/modules/injection-tokens.html +0 -319
- package/typedoc/modules/interface.html +0 -1010
- package/typedoc/modules/loader.html +0 -380
- package/typedoc/modules/public.html +0 -380
- package/typedoc/modules/router_common_glob.html +0 -377
- package/typedoc/modules/router_common_queue.html +0 -315
- package/typedoc/modules/router_common_trace.html +0 -522
- package/typedoc/modules/router_directives_state-directives.html +0 -384
- package/typedoc/modules/router_directives_view-directive.html +0 -387
- package/typedoc/modules/router_globals.html +0 -383
- package/typedoc/modules/router_hooks_core-resolvables.html +0 -352
- package/typedoc/modules/router_hooks_ignored-transition.html +0 -324
- package/typedoc/modules/router_hooks_invalid-transition.html +0 -324
- package/typedoc/modules/router_hooks_lazy-load.html +0 -348
- package/typedoc/modules/router_hooks_on-enter-exit-retain.html +0 -380
- package/typedoc/modules/router_hooks_redirect-to.html +0 -320
- package/typedoc/modules/router_hooks_resolve.html +0 -443
- package/typedoc/modules/router_hooks_update-globals.html +0 -324
- package/typedoc/modules/router_hooks_url.html +0 -319
- package/typedoc/modules/router_hooks_views.html +0 -350
- package/typedoc/modules/router_params_interface.html +0 -402
- package/typedoc/modules/router_params_param-factory.html +0 -322
- package/typedoc/modules/router_params_param-type.html +0 -319
- package/typedoc/modules/router_params_param-types.html +0 -321
- package/typedoc/modules/router_params_param.html +0 -377
- package/typedoc/modules/router_params_state-params.html +0 -322
- package/typedoc/modules/router_path_path-node.html +0 -319
- package/typedoc/modules/router_path_path-utils.html +0 -382
- package/typedoc/modules/router_resolve_interface.html +0 -521
- package/typedoc/modules/router_resolve_resolvable.html +0 -384
- package/typedoc/modules/router_resolve_resolve-context.html +0 -385
- package/typedoc/modules/router_state-filters.html +0 -349
- package/typedoc/modules/router_state-provider.html +0 -319
- package/typedoc/modules/router_state_interface.html +0 -606
- package/typedoc/modules/router_state_state-builder.html +0 -385
- package/typedoc/modules/router_state_state-matcher.html +0 -322
- package/typedoc/modules/router_state_state-object.html +0 -385
- package/typedoc/modules/router_state_state-queue-manager.html +0 -324
- package/typedoc/modules/router_state_state-registry.html +0 -449
- package/typedoc/modules/router_state_state-service.html +0 -322
- package/typedoc/modules/router_state_target-state.html +0 -321
- package/typedoc/modules/router_state_views.html +0 -409
- package/typedoc/modules/router_template-factory.html +0 -383
- package/typedoc/modules/router_transition_hook-builder.html +0 -322
- package/typedoc/modules/router_transition_hook-registry.html +0 -413
- package/typedoc/modules/router_transition_interface.html +0 -927
- package/typedoc/modules/router_transition_reject-factory.html +0 -390
- package/typedoc/modules/router_transition_transition-event-type.html +0 -324
- package/typedoc/modules/router_transition_transition-hook.html +0 -324
- package/typedoc/modules/router_transition_transition-service.html +0 -387
- package/typedoc/modules/router_transition_transition.html +0 -386
- package/typedoc/modules/router_url_url-config.html +0 -320
- package/typedoc/modules/router_url_url-matcher.html +0 -319
- package/typedoc/modules/router_url_url-rule.html +0 -346
- package/typedoc/modules/router_url_url-rules.html +0 -319
- package/typedoc/modules/router_url_url-service.html +0 -319
- package/typedoc/modules/router_view-scroll.html +0 -319
- package/typedoc/modules/router_view_interface.html +0 -373
- package/typedoc/modules/router_view_view.html +0 -319
- package/typedoc/modules/services_anchor-scroll.html +0 -477
- package/typedoc/modules/services_browser.html +0 -472
- package/typedoc/modules/services_cookie-reader.html +0 -319
- package/typedoc/modules/services_http-backend_http-backend.html +0 -387
- package/typedoc/modules/services_http_http.html +0 -414
- package/typedoc/modules/services_log.html +0 -507
- package/typedoc/modules/services_template-request.html +0 -322
- package/typedoc/modules/shared_common.html +0 -1145
- package/typedoc/modules/shared_constants.html +0 -590
- package/typedoc/modules/shared_dom.html +0 -1185
- package/typedoc/modules/shared_hof.html +0 -566
- package/typedoc/modules/shared_interface.html +0 -436
- package/typedoc/modules/shared_noderef.html +0 -318
- package/typedoc/modules/shared_predicates.html +0 -346
- package/typedoc/modules/shared_strings.html +0 -732
- package/typedoc/modules/shared_test-utils.html +0 -369
- package/typedoc/modules/shared_utils.html +0 -2343
- package/typedoc/modules.html +0 -4406
- package/typedoc/types/animations_animate.AnimationMethod.html +0 -265
- package/typedoc/types/animations_interface.RafScheduler.html +0 -602
- package/typedoc/types/core_cache_cache-factory.TemplateCache.html +0 -257
- package/typedoc/types/core_compile_compile.ApplyDirectivesToNodeFn.html +0 -251
- package/typedoc/types/core_compile_compile.BoundTranscludeFn.html +0 -279
- package/typedoc/types/core_compile_compile.CompileFn.html +0 -445
- package/typedoc/types/core_compile_compile.CompileNodesFn.html +0 -252
- package/typedoc/types/core_compile_compile.CompositeLinkFn.html +0 -358
- package/typedoc/types/core_compile_compile.NodeLinkFn.html +0 -285
- package/typedoc/types/core_compile_compile.PublicLinkFn.html +0 -381
- package/typedoc/types/core_compile_compile.TranscludeFn.html +0 -364
- package/typedoc/types/core_error-handler.ErrorHandler.html +0 -321
- package/typedoc/types/core_exception-handler.LogService.html +0 -256
- package/typedoc/types/core_parse_ast_ast-node.ASTNode.html +0 -1457
- package/typedoc/types/core_parse_interface.CompiledExpression.html +0 -268
- package/typedoc/types/core_parse_interface.CompiledExpressionFunction.html +0 -347
- package/typedoc/types/core_parse_interface.ParseService.html +0 -474
- package/typedoc/types/core_parse_interpreter.DecoratedASTNode.html +0 -279
- package/typedoc/types/core_scope_scope.ListenerFunction.html +0 -313
- package/typedoc/types/core_task-tracker-factory.AnnotatedFactory.html +0 -278
- package/typedoc/types/core_url-utils_url-utils.HttpProtocol.html +0 -254
- package/typedoc/types/interface.CloneAttachFunction.html +0 -318
- package/typedoc/types/interface.ControllerConstructor.html +0 -315
- package/typedoc/types/interface.DirectiveCompileFn.html +0 -406
- package/typedoc/types/interface.DirectiveController.html +0 -274
- package/typedoc/types/interface.DirectiveFactory.html +0 -328
- package/typedoc/types/interface.DirectiveLinkFn.html +0 -420
- package/typedoc/types/interface.Expression.html +0 -259
- package/typedoc/types/interface.FilterFactory.html +0 -310
- package/typedoc/types/interface.FilterFn.html +0 -314
- package/typedoc/types/interface.Injectable.html +0 -257
- package/typedoc/types/interface.InjectableFactory.html +0 -309
- package/typedoc/types/interface.OnChangesObject.html +0 -259
- package/typedoc/types/interface.TController.html +0 -261
- package/typedoc/types/router_resolve_interface.PolicyAsync.html +0 -259
- package/typedoc/types/router_resolve_interface.PolicyWhen.html +0 -253
- package/typedoc/types/router_state_interface.RedirectToResult.html +0 -287
- package/typedoc/types/router_state_interface.ResolveTypes.html +0 -267
- package/typedoc/types/router_state_interface.StateOrName.html +0 -263
- package/typedoc/types/router_state_interface._StateDeclaration.html +0 -274
- package/typedoc/types/router_transition_interface.HookFn.html +0 -267
- package/typedoc/types/router_transition_interface.HookMatchCriterion.html +0 -270
- package/typedoc/types/router_transition_interface.HookResult.html +0 -310
- package/typedoc/types/router_transition_interface.IHookRegistration.html +0 -362
- package/typedoc/types/router_transition_interface.IStateMatch.html +0 -272
- package/typedoc/types/services_anchor-scroll.AnchorScrollFunction.html +0 -292
- package/typedoc/types/services_anchor-scroll.AnchorScrollService.html +0 -262
- package/typedoc/types/services_browser.UrlChangeListener.html +0 -250
- package/typedoc/types/services_log.LogCall.html +0 -294
- package/typedoc/types/shared_interface.Mapper.html +0 -337
- package/typedoc/types/shared_interface.Predicate.html +0 -305
- package/typedoc/types/shared_interface.PredicateBinary.html +0 -330
- package/typedoc/variables/animations_shared.ACTIVE_CLASS_SUFFIX.html +0 -251
- package/typedoc/variables/animations_shared.ADD_CLASS_SUFFIX.html +0 -249
- package/typedoc/variables/animations_shared.ANIMATIONEND_EVENT.html +0 -249
- package/typedoc/variables/animations_shared.ANIMATION_DELAY_PROP.html +0 -252
- package/typedoc/variables/animations_shared.ANIMATION_DURATION_PROP.html +0 -252
- package/typedoc/variables/animations_shared.ANIMATION_ITERATION_COUNT_KEY.html +0 -255
- package/typedoc/variables/animations_shared.ANIMATION_PLAYSTATE_KEY.html +0 -251
- package/typedoc/variables/animations_shared.ANIMATION_PROP.html +0 -249
- package/typedoc/variables/animations_shared.CSS_PREFIX.html +0 -250
- package/typedoc/variables/animations_shared.DELAY_KEY.html +0 -249
- package/typedoc/variables/animations_shared.DURATION_KEY.html +0 -249
- package/typedoc/variables/animations_shared.EVENT_CLASS_PREFIX.html +0 -249
- package/typedoc/variables/animations_shared.NG_ANIMATE_CHILDREN_DATA.html +0 -253
- package/typedoc/variables/animations_shared.NG_ANIMATE_CLASSNAME.html +0 -251
- package/typedoc/variables/animations_shared.PREPARE_CLASS_SUFFIX.html +0 -251
- package/typedoc/variables/animations_shared.PROPERTY_KEY.html +0 -250
- package/typedoc/variables/animations_shared.REMOVE_CLASS_SUFFIX.html +0 -251
- package/typedoc/variables/animations_shared.SAFE_FAST_FORWARD_DURATION_VALUE.html +0 -257
- package/typedoc/variables/animations_shared.TIMING_KEY.html +0 -249
- package/typedoc/variables/animations_shared.TRANSITIONEND_EVENT.html +0 -249
- package/typedoc/variables/animations_shared.TRANSITION_DELAY_PROP.html +0 -252
- package/typedoc/variables/animations_shared.TRANSITION_DURATION_PROP.html +0 -252
- package/typedoc/variables/animations_shared.TRANSITION_PROP.html +0 -249
- package/typedoc/variables/animations_shared.ngMinErr.html +0 -307
- package/typedoc/variables/core_cache_cache.Cache.html +0 -267
- package/typedoc/variables/core_cache_cache.EXPANDO.html +0 -250
- package/typedoc/variables/core_cache_cache.ISOLATE_SCOPE_KEY.html +0 -253
- package/typedoc/variables/core_cache_cache.SCOPE_KEY.html +0 -253
- package/typedoc/variables/core_compile_compile.DirectiveSuffix.html +0 -251
- package/typedoc/variables/core_di_ng-module.ANIMATION_LITERAL.html +0 -249
- package/typedoc/variables/core_di_ng-module.COMPILE_LITERAL.html +0 -249
- package/typedoc/variables/core_di_ng-module.CONTROLLER_LITERAL.html +0 -251
- package/typedoc/variables/core_di_ng-module.FILTER_LITERAL.html +0 -249
- package/typedoc/variables/core_di_ng-module.INJECTOR_LITERAL.html +0 -249
- package/typedoc/variables/core_parse_interpreter.PURITY_ABSOLUTE.html +0 -251
- package/typedoc/variables/core_parse_interpreter.PURITY_RELATIVE.html +0 -251
- package/typedoc/variables/core_pubsub_pubsub.EventBus.html +0 -255
- package/typedoc/variables/core_sce_sce.SCE_CONTEXTS.html +0 -327
- package/typedoc/variables/core_scope_scope.NONSCOPE.html +0 -253
- package/typedoc/variables/core_scope_scope.__applyAsyncQueue.html +0 -252
- package/typedoc/variables/core_scope_scope._postUpdateQueue.html +0 -252
- package/typedoc/variables/directive_attrs_attrs.REGEX_STRING_REGEXP.html +0 -254
- package/typedoc/variables/directive_attrs_attrs.ngAttributeAliasDirectives.html +0 -262
- package/typedoc/variables/directive_class_class.ngClassDirective.html +0 -285
- package/typedoc/variables/directive_class_class.ngClassEvenDirective.html +0 -287
- package/typedoc/variables/directive_class_class.ngClassOddDirective.html +0 -287
- package/typedoc/variables/directive_events_events.ngEventDirectives.html +0 -256
- package/typedoc/variables/directive_form_form.PENDING_CLASS.html +0 -251
- package/typedoc/variables/directive_form_form.formDirective.html +0 -340
- package/typedoc/variables/directive_form_form.ngFormDirective.html +0 -340
- package/typedoc/variables/directive_form_form.nullFormCtrl.html +0 -424
- package/typedoc/variables/directive_input_input.EMAIL_REGEXP.html +0 -252
- package/typedoc/variables/directive_input_input.ISO_DATE_REGEXP.html +0 -252
- package/typedoc/variables/directive_input_input.URL_REGEXP.html +0 -252
- package/typedoc/variables/directive_input_input.VALIDITY_STATE_PROPERTY.html +0 -253
- package/typedoc/variables/directive_messages_messages.ngMessageDefaultDirective.html +0 -496
- package/typedoc/variables/directive_messages_messages.ngMessageDirective.html +0 -492
- package/typedoc/variables/directive_messages_messages.ngMessageExpDirective.html +0 -494
- package/typedoc/variables/directive_model-options_model-options.defaultModelOptions.html +0 -254
- package/typedoc/variables/directive_model_model.ngModelMinErr.html +0 -309
- package/typedoc/variables/directive_options_options.ngOptionsDirective.html +0 -692
- package/typedoc/variables/directive_transclude_transclude.ngTranscludeDirective.html +0 -343
- package/typedoc/variables/directive_validators_validators.maxlengthDirective.html +0 -401
- package/typedoc/variables/directive_validators_validators.minlengthDirective.html +0 -363
- package/typedoc/variables/directive_validators_validators.patternDirective.html +0 -424
- package/typedoc/variables/directive_validators_validators.requiredDirective.html +0 -388
- package/typedoc/variables/injection-tokens._injectTokens.html +0 -270
- package/typedoc/variables/public.VERSION.html +0 -247
- package/typedoc/variables/router_common_trace.trace.html +0 -287
- package/typedoc/variables/router_directives_view-directive.ngView.html +0 -499
- package/typedoc/variables/router_hooks_resolve.RESOLVE_HOOK_PRIORITY.html +0 -253
- package/typedoc/variables/router_params_param.DefType.html +0 -251
- package/typedoc/variables/router_resolve_resolvable.defaultResolvePolicy.html +0 -279
- package/typedoc/variables/router_resolve_resolve-context.resolvePolicies.html +0 -315
- package/typedoc/variables/router_transition_transition-service.defaultTransOpts.html +0 -380
- package/typedoc/variables/services_log.LogService.html +0 -252
- package/typedoc/variables/shared_common.assertMap.html +0 -344
- package/typedoc/variables/shared_common.assertPredicate.html +0 -344
- package/typedoc/variables/shared_common.pushTo.html +0 -252
- package/typedoc/variables/shared_common.removeFrom.html +0 -255
- package/typedoc/variables/shared_constants.ALIASED_ATTR.html +0 -329
- package/typedoc/variables/shared_constants.DIRTY_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.EMPTY_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.INVALID_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.NOT_EMPTY_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.PREFIX_REGEXP.html +0 -250
- package/typedoc/variables/shared_constants.PRISTINE_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.SPECIAL_CHARS_REGEXP.html +0 -252
- package/typedoc/variables/shared_constants.TOUCHED_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.UNTOUCHED_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.VALID_CLASS.html +0 -249
- package/typedoc/variables/shared_dom.BOOLEAN_ATTR.html +0 -253
- package/typedoc/variables/shared_hof.propEq.html +0 -258
- package/typedoc/variables/shared_strings.hostRegex.html +0 -248
- package/typedoc/variables/shared_strings.splitEqual.html +0 -291
- package/typedoc/variables/shared_strings.splitHash.html +0 -291
- package/typedoc/variables/shared_strings.splitQuery.html +0 -291
- package/typedoc/variables/shared_utils.isProxySymbol.html +0 -250
- package/typedoc/variables/shared_utils.ngAttrPrefixes.html +0 -249
- /package/{typedoc → docs/static/typedoc}/.nojekyll +0 -0
- /package/{typedoc → docs/static/typedoc}/assets/icons.svg +0 -0
|
@@ -1,2490 +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>LocationHtml5Url | AngularTS</title>
|
|
7
|
-
<meta name="description" content="Documentation for AngularTS" />
|
|
8
|
-
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
9
|
-
<link rel="stylesheet" href="../assets/style.css" />
|
|
10
|
-
<link rel="stylesheet" href="../assets/highlight.css" />
|
|
11
|
-
<script defer src="../assets/main.js"></script>
|
|
12
|
-
<script async src="../assets/icons.js" id="tsd-icons-script"></script>
|
|
13
|
-
<script async src="../assets/search.js" id="tsd-search-script"></script>
|
|
14
|
-
<script async src="../assets/navigation.js" id="tsd-nav-script"></script>
|
|
15
|
-
<script
|
|
16
|
-
async
|
|
17
|
-
src="../assets/hierarchy.js"
|
|
18
|
-
id="tsd-hierarchy-script"
|
|
19
|
-
></script>
|
|
20
|
-
</head>
|
|
21
|
-
<body>
|
|
22
|
-
<script>
|
|
23
|
-
document.documentElement.dataset.theme =
|
|
24
|
-
localStorage.getItem("tsd-theme") || "os";
|
|
25
|
-
document.body.style.display = "none";
|
|
26
|
-
setTimeout(
|
|
27
|
-
() =>
|
|
28
|
-
window.app
|
|
29
|
-
? app.showPage()
|
|
30
|
-
: document.body.style.removeProperty("display"),
|
|
31
|
-
500,
|
|
32
|
-
);
|
|
33
|
-
</script>
|
|
34
|
-
<header class="tsd-page-toolbar">
|
|
35
|
-
<div class="tsd-toolbar-contents container">
|
|
36
|
-
<a href="../index.html" class="title">AngularTS</a>
|
|
37
|
-
<div id="tsd-toolbar-links"></div>
|
|
38
|
-
<button id="tsd-search-trigger" class="tsd-widget" aria-label="Search">
|
|
39
|
-
<svg
|
|
40
|
-
width="16"
|
|
41
|
-
height="16"
|
|
42
|
-
viewBox="0 0 16 16"
|
|
43
|
-
fill="none"
|
|
44
|
-
aria-hidden="true"
|
|
45
|
-
>
|
|
46
|
-
<use href="../assets/icons.svg#icon-search"></use>
|
|
47
|
-
</svg>
|
|
48
|
-
</button>
|
|
49
|
-
<dialog id="tsd-search" aria-label="Search">
|
|
50
|
-
<input
|
|
51
|
-
role="combobox"
|
|
52
|
-
id="tsd-search-input"
|
|
53
|
-
aria-controls="tsd-search-results"
|
|
54
|
-
aria-autocomplete="list"
|
|
55
|
-
aria-expanded="true"
|
|
56
|
-
autocapitalize="off"
|
|
57
|
-
autocomplete="off"
|
|
58
|
-
placeholder="Search the docs"
|
|
59
|
-
maxlength="100"
|
|
60
|
-
/>
|
|
61
|
-
<ul role="listbox" id="tsd-search-results"></ul>
|
|
62
|
-
<div id="tsd-search-status" aria-live="polite" aria-atomic="true">
|
|
63
|
-
<div>Preparing search index...</div>
|
|
64
|
-
</div>
|
|
65
|
-
</dialog>
|
|
66
|
-
<a
|
|
67
|
-
href="#"
|
|
68
|
-
class="tsd-widget menu"
|
|
69
|
-
id="tsd-toolbar-menu-trigger"
|
|
70
|
-
data-toggle="menu"
|
|
71
|
-
aria-label="Menu"
|
|
72
|
-
><svg
|
|
73
|
-
width="16"
|
|
74
|
-
height="16"
|
|
75
|
-
viewBox="0 0 16 16"
|
|
76
|
-
fill="none"
|
|
77
|
-
aria-hidden="true"
|
|
78
|
-
>
|
|
79
|
-
<use href="../assets/icons.svg#icon-menu"></use></svg
|
|
80
|
-
></a>
|
|
81
|
-
</div>
|
|
82
|
-
</header>
|
|
83
|
-
<div class="container container-main">
|
|
84
|
-
<div class="col-content">
|
|
85
|
-
<div class="tsd-page-title">
|
|
86
|
-
<ul class="tsd-breadcrumb" aria-label="Breadcrumb">
|
|
87
|
-
<li>
|
|
88
|
-
<a href="../modules/core_location_location.html"
|
|
89
|
-
>core/location/location</a
|
|
90
|
-
>
|
|
91
|
-
</li>
|
|
92
|
-
<li><a href="" aria-current="page">LocationHtml5Url</a></li>
|
|
93
|
-
</ul>
|
|
94
|
-
<h1>Class LocationHtml5Url</h1>
|
|
95
|
-
</div>
|
|
96
|
-
<section class="tsd-panel tsd-comment">
|
|
97
|
-
<div class="tsd-comment tsd-typography">
|
|
98
|
-
<p>
|
|
99
|
-
This object is exposed as $location service when HTML5 mode is
|
|
100
|
-
enabled and supported
|
|
101
|
-
</p>
|
|
102
|
-
</div>
|
|
103
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
104
|
-
</section>
|
|
105
|
-
<section class="tsd-panel tsd-hierarchy" data-refl="985">
|
|
106
|
-
<h4>
|
|
107
|
-
Hierarchy (<a
|
|
108
|
-
href="../hierarchy.html#core/location/location.LocationHtml5Url"
|
|
109
|
-
>View Summary</a
|
|
110
|
-
>)
|
|
111
|
-
</h4>
|
|
112
|
-
<ul class="tsd-hierarchy">
|
|
113
|
-
<li class="tsd-hierarchy-item">
|
|
114
|
-
<a
|
|
115
|
-
href="core_location_location.Location.html"
|
|
116
|
-
class="tsd-signature-type tsd-kind-class"
|
|
117
|
-
>Location</a
|
|
118
|
-
>
|
|
119
|
-
<ul class="tsd-hierarchy">
|
|
120
|
-
<li class="tsd-hierarchy-item">
|
|
121
|
-
<span class="tsd-hierarchy-target">LocationHtml5Url</span>
|
|
122
|
-
</li>
|
|
123
|
-
</ul>
|
|
124
|
-
</li>
|
|
125
|
-
</ul>
|
|
126
|
-
</section>
|
|
127
|
-
<section class="tsd-panel-group tsd-index-group">
|
|
128
|
-
<section class="tsd-panel tsd-index-panel">
|
|
129
|
-
<details class="tsd-index-content tsd-accordion" open>
|
|
130
|
-
<summary class="tsd-accordion-summary tsd-index-summary">
|
|
131
|
-
<svg
|
|
132
|
-
width="20"
|
|
133
|
-
height="20"
|
|
134
|
-
viewBox="0 0 24 24"
|
|
135
|
-
fill="none"
|
|
136
|
-
aria-hidden="true"
|
|
137
|
-
>
|
|
138
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
139
|
-
</svg>
|
|
140
|
-
<h5 class="tsd-index-heading uppercase">Index</h5>
|
|
141
|
-
</summary>
|
|
142
|
-
<div class="tsd-accordion-details">
|
|
143
|
-
<section class="tsd-index-section">
|
|
144
|
-
<h3 class="tsd-index-heading">Constructors</h3>
|
|
145
|
-
<div class="tsd-index-list">
|
|
146
|
-
<a href="#constructor" class="tsd-index-link"
|
|
147
|
-
><svg
|
|
148
|
-
class="tsd-kind-icon"
|
|
149
|
-
viewBox="0 0 24 24"
|
|
150
|
-
aria-label="Constructor"
|
|
151
|
-
>
|
|
152
|
-
<use href="../assets/icons.svg#icon-512"></use></svg
|
|
153
|
-
><span>constructor</span></a
|
|
154
|
-
>
|
|
155
|
-
</div>
|
|
156
|
-
</section>
|
|
157
|
-
<section class="tsd-index-section">
|
|
158
|
-
<h3 class="tsd-index-heading">Properties</h3>
|
|
159
|
-
<div class="tsd-index-list">
|
|
160
|
-
<a href="#absurl" class="tsd-index-link tsd-is-inherited"
|
|
161
|
-
><svg
|
|
162
|
-
class="tsd-kind-icon"
|
|
163
|
-
viewBox="0 0 24 24"
|
|
164
|
-
aria-label="Property"
|
|
165
|
-
>
|
|
166
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
167
|
-
><span>$$abs<wbr />Url</span></a
|
|
168
|
-
>
|
|
169
|
-
<a href="#hash" class="tsd-index-link tsd-is-inherited"
|
|
170
|
-
><svg
|
|
171
|
-
class="tsd-kind-icon"
|
|
172
|
-
viewBox="0 0 24 24"
|
|
173
|
-
aria-label="Property"
|
|
174
|
-
>
|
|
175
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
176
|
-
><span>$$hash</span></a
|
|
177
|
-
>
|
|
178
|
-
<a href="#host" class="tsd-index-link tsd-is-inherited"
|
|
179
|
-
><svg
|
|
180
|
-
class="tsd-kind-icon"
|
|
181
|
-
viewBox="0 0 24 24"
|
|
182
|
-
aria-label="Property"
|
|
183
|
-
>
|
|
184
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
185
|
-
><span>$$host</span></a
|
|
186
|
-
>
|
|
187
|
-
<a href="#html5" class="tsd-index-link tsd-is-inherited"
|
|
188
|
-
><svg
|
|
189
|
-
class="tsd-kind-icon"
|
|
190
|
-
viewBox="0 0 24 24"
|
|
191
|
-
aria-label="Property"
|
|
192
|
-
>
|
|
193
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
194
|
-
><span>$$html5</span></a
|
|
195
|
-
>
|
|
196
|
-
<a href="#path" class="tsd-index-link tsd-is-inherited"
|
|
197
|
-
><svg
|
|
198
|
-
class="tsd-kind-icon"
|
|
199
|
-
viewBox="0 0 24 24"
|
|
200
|
-
aria-label="Property"
|
|
201
|
-
>
|
|
202
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
203
|
-
><span>$$path</span></a
|
|
204
|
-
>
|
|
205
|
-
<a href="#port" class="tsd-index-link tsd-is-inherited"
|
|
206
|
-
><svg
|
|
207
|
-
class="tsd-kind-icon"
|
|
208
|
-
viewBox="0 0 24 24"
|
|
209
|
-
aria-label="Property"
|
|
210
|
-
>
|
|
211
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
212
|
-
><span>$$port</span></a
|
|
213
|
-
>
|
|
214
|
-
<a href="#protocol" class="tsd-index-link tsd-is-inherited"
|
|
215
|
-
><svg
|
|
216
|
-
class="tsd-kind-icon"
|
|
217
|
-
viewBox="0 0 24 24"
|
|
218
|
-
aria-label="Property"
|
|
219
|
-
>
|
|
220
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
221
|
-
><span>$$protocol</span></a
|
|
222
|
-
>
|
|
223
|
-
<a href="#replace" class="tsd-index-link tsd-is-inherited"
|
|
224
|
-
><svg
|
|
225
|
-
class="tsd-kind-icon"
|
|
226
|
-
viewBox="0 0 24 24"
|
|
227
|
-
aria-label="Property"
|
|
228
|
-
>
|
|
229
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
230
|
-
><span>$$replace</span></a
|
|
231
|
-
>
|
|
232
|
-
<a href="#search" class="tsd-index-link tsd-is-inherited"
|
|
233
|
-
><svg
|
|
234
|
-
class="tsd-kind-icon"
|
|
235
|
-
viewBox="0 0 24 24"
|
|
236
|
-
aria-label="Property"
|
|
237
|
-
>
|
|
238
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
239
|
-
><span>$$search</span></a
|
|
240
|
-
>
|
|
241
|
-
<a href="#state" class="tsd-index-link tsd-is-inherited"
|
|
242
|
-
><svg
|
|
243
|
-
class="tsd-kind-icon"
|
|
244
|
-
viewBox="0 0 24 24"
|
|
245
|
-
aria-label="Property"
|
|
246
|
-
>
|
|
247
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
248
|
-
><span>$$state</span></a
|
|
249
|
-
>
|
|
250
|
-
<a href="#url" class="tsd-index-link tsd-is-inherited"
|
|
251
|
-
><svg
|
|
252
|
-
class="tsd-kind-icon"
|
|
253
|
-
viewBox="0 0 24 24"
|
|
254
|
-
aria-label="Property"
|
|
255
|
-
>
|
|
256
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
257
|
-
><span>$$url</span></a
|
|
258
|
-
>
|
|
259
|
-
<a
|
|
260
|
-
href="#urlupdatedbylocation"
|
|
261
|
-
class="tsd-index-link tsd-is-inherited"
|
|
262
|
-
><svg
|
|
263
|
-
class="tsd-kind-icon"
|
|
264
|
-
viewBox="0 0 24 24"
|
|
265
|
-
aria-label="Property"
|
|
266
|
-
>
|
|
267
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
268
|
-
><span
|
|
269
|
-
>$$url<wbr />Updated<wbr />By<wbr />Location</span
|
|
270
|
-
></a
|
|
271
|
-
>
|
|
272
|
-
<a href="#appbase" class="tsd-index-link tsd-is-inherited"
|
|
273
|
-
><svg
|
|
274
|
-
class="tsd-kind-icon"
|
|
275
|
-
viewBox="0 0 24 24"
|
|
276
|
-
aria-label="Property"
|
|
277
|
-
>
|
|
278
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
279
|
-
><span>app<wbr />Base</span></a
|
|
280
|
-
>
|
|
281
|
-
<a
|
|
282
|
-
href="#appbasenofile"
|
|
283
|
-
class="tsd-index-link tsd-is-inherited"
|
|
284
|
-
><svg
|
|
285
|
-
class="tsd-kind-icon"
|
|
286
|
-
viewBox="0 0 24 24"
|
|
287
|
-
aria-label="Property"
|
|
288
|
-
>
|
|
289
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
290
|
-
><span>app<wbr />Base<wbr />No<wbr />File</span></a
|
|
291
|
-
>
|
|
292
|
-
<a href="#baseprefix" class="tsd-index-link"
|
|
293
|
-
><svg
|
|
294
|
-
class="tsd-kind-icon"
|
|
295
|
-
viewBox="0 0 24 24"
|
|
296
|
-
aria-label="Property"
|
|
297
|
-
>
|
|
298
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
299
|
-
><span>base<wbr />Prefix</span></a
|
|
300
|
-
>
|
|
301
|
-
</div>
|
|
302
|
-
</section>
|
|
303
|
-
<section class="tsd-index-section">
|
|
304
|
-
<h3 class="tsd-index-heading">Methods</h3>
|
|
305
|
-
<div class="tsd-index-list">
|
|
306
|
-
<a href="#compose" class="tsd-index-link tsd-is-inherited"
|
|
307
|
-
><svg
|
|
308
|
-
class="tsd-kind-icon"
|
|
309
|
-
viewBox="0 0 24 24"
|
|
310
|
-
aria-label="Method"
|
|
311
|
-
>
|
|
312
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
313
|
-
><span>$$compose</span></a
|
|
314
|
-
>
|
|
315
|
-
<a href="#normalizeurl" class="tsd-index-link"
|
|
316
|
-
><svg
|
|
317
|
-
class="tsd-kind-icon"
|
|
318
|
-
viewBox="0 0 24 24"
|
|
319
|
-
aria-label="Method"
|
|
320
|
-
>
|
|
321
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
322
|
-
><span>$$normalize<wbr />Url</span></a
|
|
323
|
-
>
|
|
324
|
-
<a href="#parse" class="tsd-index-link"
|
|
325
|
-
><svg
|
|
326
|
-
class="tsd-kind-icon"
|
|
327
|
-
viewBox="0 0 24 24"
|
|
328
|
-
aria-label="Method"
|
|
329
|
-
>
|
|
330
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
331
|
-
><span>$$parse</span></a
|
|
332
|
-
>
|
|
333
|
-
<a href="#parselinkurl" class="tsd-index-link"
|
|
334
|
-
><svg
|
|
335
|
-
class="tsd-kind-icon"
|
|
336
|
-
viewBox="0 0 24 24"
|
|
337
|
-
aria-label="Method"
|
|
338
|
-
>
|
|
339
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
340
|
-
><span>$$parse<wbr />Link<wbr />Url</span></a
|
|
341
|
-
>
|
|
342
|
-
<a href="#absurl-1" class="tsd-index-link tsd-is-inherited"
|
|
343
|
-
><svg
|
|
344
|
-
class="tsd-kind-icon"
|
|
345
|
-
viewBox="0 0 24 24"
|
|
346
|
-
aria-label="Method"
|
|
347
|
-
>
|
|
348
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
349
|
-
><span>abs<wbr />Url</span></a
|
|
350
|
-
>
|
|
351
|
-
<a href="#hash-1" class="tsd-index-link tsd-is-inherited"
|
|
352
|
-
><svg
|
|
353
|
-
class="tsd-kind-icon"
|
|
354
|
-
viewBox="0 0 24 24"
|
|
355
|
-
aria-label="Method"
|
|
356
|
-
>
|
|
357
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
358
|
-
><span>hash</span></a
|
|
359
|
-
>
|
|
360
|
-
<a href="#host-1" class="tsd-index-link tsd-is-inherited"
|
|
361
|
-
><svg
|
|
362
|
-
class="tsd-kind-icon"
|
|
363
|
-
viewBox="0 0 24 24"
|
|
364
|
-
aria-label="Method"
|
|
365
|
-
>
|
|
366
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
367
|
-
><span>host</span></a
|
|
368
|
-
>
|
|
369
|
-
<a href="#path-1" class="tsd-index-link tsd-is-inherited"
|
|
370
|
-
><svg
|
|
371
|
-
class="tsd-kind-icon"
|
|
372
|
-
viewBox="0 0 24 24"
|
|
373
|
-
aria-label="Method"
|
|
374
|
-
>
|
|
375
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
376
|
-
><span>path</span></a
|
|
377
|
-
>
|
|
378
|
-
<a href="#port-1" class="tsd-index-link tsd-is-inherited"
|
|
379
|
-
><svg
|
|
380
|
-
class="tsd-kind-icon"
|
|
381
|
-
viewBox="0 0 24 24"
|
|
382
|
-
aria-label="Method"
|
|
383
|
-
>
|
|
384
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
385
|
-
><span>port</span></a
|
|
386
|
-
>
|
|
387
|
-
<a
|
|
388
|
-
href="#protocol-1"
|
|
389
|
-
class="tsd-index-link tsd-is-inherited"
|
|
390
|
-
><svg
|
|
391
|
-
class="tsd-kind-icon"
|
|
392
|
-
viewBox="0 0 24 24"
|
|
393
|
-
aria-label="Method"
|
|
394
|
-
>
|
|
395
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
396
|
-
><span>protocol</span></a
|
|
397
|
-
>
|
|
398
|
-
<a href="#replace-1" class="tsd-index-link tsd-is-inherited"
|
|
399
|
-
><svg
|
|
400
|
-
class="tsd-kind-icon"
|
|
401
|
-
viewBox="0 0 24 24"
|
|
402
|
-
aria-label="Method"
|
|
403
|
-
>
|
|
404
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
405
|
-
><span>replace</span></a
|
|
406
|
-
>
|
|
407
|
-
<a href="#search-1" class="tsd-index-link tsd-is-inherited"
|
|
408
|
-
><svg
|
|
409
|
-
class="tsd-kind-icon"
|
|
410
|
-
viewBox="0 0 24 24"
|
|
411
|
-
aria-label="Method"
|
|
412
|
-
>
|
|
413
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
414
|
-
><span>search</span></a
|
|
415
|
-
>
|
|
416
|
-
<a href="#state-1" class="tsd-index-link tsd-is-inherited"
|
|
417
|
-
><svg
|
|
418
|
-
class="tsd-kind-icon"
|
|
419
|
-
viewBox="0 0 24 24"
|
|
420
|
-
aria-label="Method"
|
|
421
|
-
>
|
|
422
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
423
|
-
><span>state</span></a
|
|
424
|
-
>
|
|
425
|
-
<a href="#url-1" class="tsd-index-link tsd-is-inherited"
|
|
426
|
-
><svg
|
|
427
|
-
class="tsd-kind-icon"
|
|
428
|
-
viewBox="0 0 24 24"
|
|
429
|
-
aria-label="Method"
|
|
430
|
-
>
|
|
431
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
432
|
-
><span>url</span></a
|
|
433
|
-
>
|
|
434
|
-
</div>
|
|
435
|
-
</section>
|
|
436
|
-
</div>
|
|
437
|
-
</details>
|
|
438
|
-
</section>
|
|
439
|
-
</section>
|
|
440
|
-
<details class="tsd-panel-group tsd-member-group tsd-accordion" open>
|
|
441
|
-
<summary
|
|
442
|
-
class="tsd-accordion-summary"
|
|
443
|
-
data-key="section-Constructors"
|
|
444
|
-
>
|
|
445
|
-
<svg
|
|
446
|
-
width="20"
|
|
447
|
-
height="20"
|
|
448
|
-
viewBox="0 0 24 24"
|
|
449
|
-
fill="none"
|
|
450
|
-
aria-hidden="true"
|
|
451
|
-
>
|
|
452
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
453
|
-
</svg>
|
|
454
|
-
<h2>Constructors</h2>
|
|
455
|
-
</summary>
|
|
456
|
-
<section>
|
|
457
|
-
<section class="tsd-panel tsd-member">
|
|
458
|
-
<h3 class="tsd-anchor-link" id="constructor">
|
|
459
|
-
<span>constructor</span
|
|
460
|
-
><a
|
|
461
|
-
href="#constructor"
|
|
462
|
-
aria-label="Permalink"
|
|
463
|
-
class="tsd-anchor-icon"
|
|
464
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
465
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
466
|
-
></a>
|
|
467
|
-
</h3>
|
|
468
|
-
<ul class="tsd-signatures">
|
|
469
|
-
<li class="">
|
|
470
|
-
<div
|
|
471
|
-
class="tsd-signature tsd-anchor-link"
|
|
472
|
-
id="constructorlocationhtml5url"
|
|
473
|
-
>
|
|
474
|
-
<span class="tsd-signature-keyword">new</span>
|
|
475
|
-
<span class="tsd-kind-constructor-signature"
|
|
476
|
-
>LocationHtml5Url</span
|
|
477
|
-
><span class="tsd-signature-symbol">(</span><br /> <span
|
|
478
|
-
class="tsd-kind-parameter"
|
|
479
|
-
>appBase</span
|
|
480
|
-
><span class="tsd-signature-symbol">:</span>
|
|
481
|
-
<span class="tsd-signature-type">string</span
|
|
482
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
483
|
-
class="tsd-kind-parameter"
|
|
484
|
-
>appBaseNoFile</span
|
|
485
|
-
><span class="tsd-signature-symbol">:</span>
|
|
486
|
-
<span class="tsd-signature-type">string</span
|
|
487
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
488
|
-
class="tsd-kind-parameter"
|
|
489
|
-
>basePrefix</span
|
|
490
|
-
><span class="tsd-signature-symbol">:</span>
|
|
491
|
-
<span class="tsd-signature-type">string</span
|
|
492
|
-
><span class="tsd-signature-symbol">,</span><br /><span
|
|
493
|
-
class="tsd-signature-symbol"
|
|
494
|
-
>)</span
|
|
495
|
-
><span class="tsd-signature-symbol">:</span>
|
|
496
|
-
<a href="" class="tsd-signature-type tsd-kind-class"
|
|
497
|
-
>LocationHtml5Url</a
|
|
498
|
-
><a
|
|
499
|
-
href="#constructorlocationhtml5url"
|
|
500
|
-
aria-label="Permalink"
|
|
501
|
-
class="tsd-anchor-icon"
|
|
502
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
503
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
504
|
-
></a>
|
|
505
|
-
</div>
|
|
506
|
-
<div class="tsd-description">
|
|
507
|
-
<div class="tsd-parameters">
|
|
508
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
509
|
-
<ul class="tsd-parameter-list">
|
|
510
|
-
<li>
|
|
511
|
-
<span
|
|
512
|
-
><span class="tsd-kind-parameter">appBase</span>:
|
|
513
|
-
<span class="tsd-signature-type">string</span></span
|
|
514
|
-
>
|
|
515
|
-
<div class="tsd-comment tsd-typography">
|
|
516
|
-
<p>application base URL</p>
|
|
517
|
-
</div>
|
|
518
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
519
|
-
</li>
|
|
520
|
-
<li>
|
|
521
|
-
<span
|
|
522
|
-
><span class="tsd-kind-parameter"
|
|
523
|
-
>appBaseNoFile</span
|
|
524
|
-
>:
|
|
525
|
-
<span class="tsd-signature-type">string</span></span
|
|
526
|
-
>
|
|
527
|
-
<div class="tsd-comment tsd-typography">
|
|
528
|
-
<p>application base URL stripped of any filename</p>
|
|
529
|
-
</div>
|
|
530
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
531
|
-
</li>
|
|
532
|
-
<li>
|
|
533
|
-
<span
|
|
534
|
-
><span class="tsd-kind-parameter">basePrefix</span>:
|
|
535
|
-
<span class="tsd-signature-type">string</span></span
|
|
536
|
-
>
|
|
537
|
-
<div class="tsd-comment tsd-typography">
|
|
538
|
-
<p>URL path prefix</p>
|
|
539
|
-
</div>
|
|
540
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
541
|
-
</li>
|
|
542
|
-
</ul>
|
|
543
|
-
</div>
|
|
544
|
-
<h4 class="tsd-returns-title">
|
|
545
|
-
Returns
|
|
546
|
-
<a href="" class="tsd-signature-type tsd-kind-class"
|
|
547
|
-
>LocationHtml5Url</a
|
|
548
|
-
>
|
|
549
|
-
</h4>
|
|
550
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
551
|
-
<aside class="tsd-sources">
|
|
552
|
-
<p>
|
|
553
|
-
Overrides
|
|
554
|
-
<a href="core_location_location.Location.html"
|
|
555
|
-
>Location</a
|
|
556
|
-
>.<a
|
|
557
|
-
href="core_location_location.Location.html#constructor"
|
|
558
|
-
>constructor</a
|
|
559
|
-
>
|
|
560
|
-
</p>
|
|
561
|
-
</aside>
|
|
562
|
-
</div>
|
|
563
|
-
</li>
|
|
564
|
-
</ul>
|
|
565
|
-
</section>
|
|
566
|
-
</section>
|
|
567
|
-
</details>
|
|
568
|
-
<details class="tsd-panel-group tsd-member-group tsd-accordion" open>
|
|
569
|
-
<summary class="tsd-accordion-summary" data-key="section-Properties">
|
|
570
|
-
<svg
|
|
571
|
-
width="20"
|
|
572
|
-
height="20"
|
|
573
|
-
viewBox="0 0 24 24"
|
|
574
|
-
fill="none"
|
|
575
|
-
aria-hidden="true"
|
|
576
|
-
>
|
|
577
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
578
|
-
</svg>
|
|
579
|
-
<h2>Properties</h2>
|
|
580
|
-
</summary>
|
|
581
|
-
<section>
|
|
582
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
583
|
-
<h3 class="tsd-anchor-link" id="absurl">
|
|
584
|
-
<span>$$abs<wbr />Url</span
|
|
585
|
-
><a
|
|
586
|
-
href="#absurl"
|
|
587
|
-
aria-label="Permalink"
|
|
588
|
-
class="tsd-anchor-icon"
|
|
589
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
590
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
591
|
-
></a>
|
|
592
|
-
</h3>
|
|
593
|
-
<div class="tsd-signature">
|
|
594
|
-
<span class="tsd-kind-property">$$absUrl</span
|
|
595
|
-
><span class="tsd-signature-symbol">:</span>
|
|
596
|
-
<span class="tsd-signature-type">string</span>
|
|
597
|
-
</div>
|
|
598
|
-
<div class="tsd-comment tsd-typography">
|
|
599
|
-
<p>
|
|
600
|
-
An absolute URL is the full URL, including protocol
|
|
601
|
-
(http/https ), the optional subdomain (e.g. www ), domain (<a
|
|
602
|
-
href="http://example.com"
|
|
603
|
-
>example.com</a
|
|
604
|
-
>), and path (which includes the directory and slug).
|
|
605
|
-
</p>
|
|
606
|
-
</div>
|
|
607
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
608
|
-
<aside class="tsd-sources">
|
|
609
|
-
<p>
|
|
610
|
-
Inherited from
|
|
611
|
-
<a href="core_location_location.Location.html">Location</a>.<a
|
|
612
|
-
href="core_location_location.Location.html#absurl"
|
|
613
|
-
>$$absUrl</a
|
|
614
|
-
>
|
|
615
|
-
</p>
|
|
616
|
-
</aside>
|
|
617
|
-
</section>
|
|
618
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
619
|
-
<h3 class="tsd-anchor-link" id="hash">
|
|
620
|
-
<span>$$hash</span
|
|
621
|
-
><a href="#hash" aria-label="Permalink" class="tsd-anchor-icon"
|
|
622
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
623
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
624
|
-
></a>
|
|
625
|
-
</h3>
|
|
626
|
-
<div class="tsd-signature">
|
|
627
|
-
<span class="tsd-kind-property">$$hash</span
|
|
628
|
-
><span class="tsd-signature-symbol">:</span>
|
|
629
|
-
<span class="tsd-signature-type">string</span>
|
|
630
|
-
</div>
|
|
631
|
-
<div class="tsd-comment tsd-typography">
|
|
632
|
-
<p>The hash string, minus the hash symbol</p>
|
|
633
|
-
</div>
|
|
634
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
635
|
-
<aside class="tsd-sources">
|
|
636
|
-
<p>
|
|
637
|
-
Inherited from
|
|
638
|
-
<a href="core_location_location.Location.html">Location</a>.<a
|
|
639
|
-
href="core_location_location.Location.html#hash"
|
|
640
|
-
>$$hash</a
|
|
641
|
-
>
|
|
642
|
-
</p>
|
|
643
|
-
</aside>
|
|
644
|
-
</section>
|
|
645
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
646
|
-
<h3 class="tsd-anchor-link" id="host">
|
|
647
|
-
<span>$$host</span
|
|
648
|
-
><a href="#host" aria-label="Permalink" class="tsd-anchor-icon"
|
|
649
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
650
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
651
|
-
></a>
|
|
652
|
-
</h3>
|
|
653
|
-
<div class="tsd-signature">
|
|
654
|
-
<span class="tsd-kind-property">$$host</span
|
|
655
|
-
><span class="tsd-signature-symbol">:</span>
|
|
656
|
-
<span class="tsd-signature-type">string</span>
|
|
657
|
-
</div>
|
|
658
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
659
|
-
<aside class="tsd-sources">
|
|
660
|
-
<p>
|
|
661
|
-
Inherited from
|
|
662
|
-
<a href="core_location_location.Location.html">Location</a>.<a
|
|
663
|
-
href="core_location_location.Location.html#host"
|
|
664
|
-
>$$host</a
|
|
665
|
-
>
|
|
666
|
-
</p>
|
|
667
|
-
</aside>
|
|
668
|
-
</section>
|
|
669
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
670
|
-
<h3 class="tsd-anchor-link" id="html5">
|
|
671
|
-
<span>$$html5</span
|
|
672
|
-
><a href="#html5" aria-label="Permalink" class="tsd-anchor-icon"
|
|
673
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
674
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
675
|
-
></a>
|
|
676
|
-
</h3>
|
|
677
|
-
<div class="tsd-signature">
|
|
678
|
-
<span class="tsd-kind-property">$$html5</span
|
|
679
|
-
><span class="tsd-signature-symbol">:</span>
|
|
680
|
-
<span class="tsd-signature-type">boolean</span>
|
|
681
|
-
</div>
|
|
682
|
-
<div class="tsd-comment tsd-typography">
|
|
683
|
-
<p>If html5 mode is enabled</p>
|
|
684
|
-
</div>
|
|
685
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
686
|
-
<aside class="tsd-sources">
|
|
687
|
-
<p>
|
|
688
|
-
Inherited from
|
|
689
|
-
<a href="core_location_location.Location.html">Location</a>.<a
|
|
690
|
-
href="core_location_location.Location.html#html5"
|
|
691
|
-
>$$html5</a
|
|
692
|
-
>
|
|
693
|
-
</p>
|
|
694
|
-
</aside>
|
|
695
|
-
</section>
|
|
696
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
697
|
-
<h3 class="tsd-anchor-link" id="path">
|
|
698
|
-
<span>$$path</span
|
|
699
|
-
><a href="#path" aria-label="Permalink" class="tsd-anchor-icon"
|
|
700
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
701
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
702
|
-
></a>
|
|
703
|
-
</h3>
|
|
704
|
-
<div class="tsd-signature">
|
|
705
|
-
<span class="tsd-kind-property">$$path</span
|
|
706
|
-
><span class="tsd-signature-symbol">:</span>
|
|
707
|
-
<span class="tsd-signature-type">string</span>
|
|
708
|
-
</div>
|
|
709
|
-
<div class="tsd-comment tsd-typography">
|
|
710
|
-
<p>The pathname, beginning with "/"</p>
|
|
711
|
-
</div>
|
|
712
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
713
|
-
<aside class="tsd-sources">
|
|
714
|
-
<p>
|
|
715
|
-
Inherited from
|
|
716
|
-
<a href="core_location_location.Location.html">Location</a>.<a
|
|
717
|
-
href="core_location_location.Location.html#path"
|
|
718
|
-
>$$path</a
|
|
719
|
-
>
|
|
720
|
-
</p>
|
|
721
|
-
</aside>
|
|
722
|
-
</section>
|
|
723
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
724
|
-
<h3 class="tsd-anchor-link" id="port">
|
|
725
|
-
<span>$$port</span
|
|
726
|
-
><a href="#port" aria-label="Permalink" class="tsd-anchor-icon"
|
|
727
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
728
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
729
|
-
></a>
|
|
730
|
-
</h3>
|
|
731
|
-
<div class="tsd-signature">
|
|
732
|
-
<span class="tsd-kind-property">$$port</span
|
|
733
|
-
><span class="tsd-signature-symbol">:</span>
|
|
734
|
-
<span class="tsd-signature-type">number</span>
|
|
735
|
-
</div>
|
|
736
|
-
<div class="tsd-comment tsd-typography">
|
|
737
|
-
<p>The port, without ":"</p>
|
|
738
|
-
</div>
|
|
739
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
740
|
-
<aside class="tsd-sources">
|
|
741
|
-
<p>
|
|
742
|
-
Inherited from
|
|
743
|
-
<a href="core_location_location.Location.html">Location</a>.<a
|
|
744
|
-
href="core_location_location.Location.html#port"
|
|
745
|
-
>$$port</a
|
|
746
|
-
>
|
|
747
|
-
</p>
|
|
748
|
-
</aside>
|
|
749
|
-
</section>
|
|
750
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
751
|
-
<h3 class="tsd-anchor-link" id="protocol">
|
|
752
|
-
<span>$$protocol</span
|
|
753
|
-
><a
|
|
754
|
-
href="#protocol"
|
|
755
|
-
aria-label="Permalink"
|
|
756
|
-
class="tsd-anchor-icon"
|
|
757
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
758
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
759
|
-
></a>
|
|
760
|
-
</h3>
|
|
761
|
-
<div class="tsd-signature">
|
|
762
|
-
<span class="tsd-kind-property">$$protocol</span
|
|
763
|
-
><span class="tsd-signature-symbol">:</span>
|
|
764
|
-
<a
|
|
765
|
-
href="../types/core_url-utils_url-utils.HttpProtocol.html"
|
|
766
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
767
|
-
>HttpProtocol</a
|
|
768
|
-
>
|
|
769
|
-
</div>
|
|
770
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
771
|
-
<aside class="tsd-sources">
|
|
772
|
-
<p>
|
|
773
|
-
Inherited from
|
|
774
|
-
<a href="core_location_location.Location.html">Location</a>.<a
|
|
775
|
-
href="core_location_location.Location.html#protocol"
|
|
776
|
-
>$$protocol</a
|
|
777
|
-
>
|
|
778
|
-
</p>
|
|
779
|
-
</aside>
|
|
780
|
-
</section>
|
|
781
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
782
|
-
<h3 class="tsd-anchor-link" id="replace">
|
|
783
|
-
<span>$$replace</span
|
|
784
|
-
><a
|
|
785
|
-
href="#replace"
|
|
786
|
-
aria-label="Permalink"
|
|
787
|
-
class="tsd-anchor-icon"
|
|
788
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
789
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
790
|
-
></a>
|
|
791
|
-
</h3>
|
|
792
|
-
<div class="tsd-signature">
|
|
793
|
-
<span class="tsd-kind-property">$$replace</span
|
|
794
|
-
><span class="tsd-signature-symbol">:</span>
|
|
795
|
-
<span class="tsd-signature-type">boolean</span>
|
|
796
|
-
</div>
|
|
797
|
-
<div class="tsd-comment tsd-typography">
|
|
798
|
-
<p>Has any change been replacing?</p>
|
|
799
|
-
</div>
|
|
800
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
801
|
-
<aside class="tsd-sources">
|
|
802
|
-
<p>
|
|
803
|
-
Inherited from
|
|
804
|
-
<a href="core_location_location.Location.html">Location</a>.<a
|
|
805
|
-
href="core_location_location.Location.html#replace"
|
|
806
|
-
>$$replace</a
|
|
807
|
-
>
|
|
808
|
-
</p>
|
|
809
|
-
</aside>
|
|
810
|
-
</section>
|
|
811
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
812
|
-
<h3 class="tsd-anchor-link" id="search">
|
|
813
|
-
<span>$$search</span
|
|
814
|
-
><a
|
|
815
|
-
href="#search"
|
|
816
|
-
aria-label="Permalink"
|
|
817
|
-
class="tsd-anchor-icon"
|
|
818
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
819
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
820
|
-
></a>
|
|
821
|
-
</h3>
|
|
822
|
-
<div class="tsd-signature">
|
|
823
|
-
<span class="tsd-kind-property">$$search</span
|
|
824
|
-
><span class="tsd-signature-symbol">:</span>
|
|
825
|
-
<span class="tsd-signature-type">any</span>
|
|
826
|
-
</div>
|
|
827
|
-
<aside class="tsd-sources">
|
|
828
|
-
<p>
|
|
829
|
-
Inherited from
|
|
830
|
-
<a href="core_location_location.Location.html">Location</a>.<a
|
|
831
|
-
href="core_location_location.Location.html#search"
|
|
832
|
-
>$$search</a
|
|
833
|
-
>
|
|
834
|
-
</p>
|
|
835
|
-
</aside>
|
|
836
|
-
</section>
|
|
837
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
838
|
-
<h3 class="tsd-anchor-link" id="state">
|
|
839
|
-
<span>$$state</span
|
|
840
|
-
><a href="#state" aria-label="Permalink" class="tsd-anchor-icon"
|
|
841
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
842
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
843
|
-
></a>
|
|
844
|
-
</h3>
|
|
845
|
-
<div class="tsd-signature">
|
|
846
|
-
<span class="tsd-kind-property">$$state</span
|
|
847
|
-
><span class="tsd-signature-symbol">:</span>
|
|
848
|
-
<span class="tsd-signature-type">any</span>
|
|
849
|
-
</div>
|
|
850
|
-
<aside class="tsd-sources">
|
|
851
|
-
<p>
|
|
852
|
-
Inherited from
|
|
853
|
-
<a href="core_location_location.Location.html">Location</a>.<a
|
|
854
|
-
href="core_location_location.Location.html#state"
|
|
855
|
-
>$$state</a
|
|
856
|
-
>
|
|
857
|
-
</p>
|
|
858
|
-
</aside>
|
|
859
|
-
</section>
|
|
860
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
861
|
-
<h3 class="tsd-anchor-link" id="url">
|
|
862
|
-
<span>$$url</span
|
|
863
|
-
><a href="#url" aria-label="Permalink" class="tsd-anchor-icon"
|
|
864
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
865
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
866
|
-
></a>
|
|
867
|
-
</h3>
|
|
868
|
-
<div class="tsd-signature">
|
|
869
|
-
<span class="tsd-kind-property">$$url</span
|
|
870
|
-
><span class="tsd-signature-symbol">:</span>
|
|
871
|
-
<span class="tsd-signature-type">string</span>
|
|
872
|
-
</div>
|
|
873
|
-
<aside class="tsd-sources">
|
|
874
|
-
<p>
|
|
875
|
-
Inherited from
|
|
876
|
-
<a href="core_location_location.Location.html">Location</a>.<a
|
|
877
|
-
href="core_location_location.Location.html#url"
|
|
878
|
-
>$$url</a
|
|
879
|
-
>
|
|
880
|
-
</p>
|
|
881
|
-
</aside>
|
|
882
|
-
</section>
|
|
883
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
884
|
-
<h3 class="tsd-anchor-link" id="urlupdatedbylocation">
|
|
885
|
-
<span>$$url<wbr />Updated<wbr />By<wbr />Location</span
|
|
886
|
-
><a
|
|
887
|
-
href="#urlupdatedbylocation"
|
|
888
|
-
aria-label="Permalink"
|
|
889
|
-
class="tsd-anchor-icon"
|
|
890
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
891
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
892
|
-
></a>
|
|
893
|
-
</h3>
|
|
894
|
-
<div class="tsd-signature">
|
|
895
|
-
<span class="tsd-kind-property">$$urlUpdatedByLocation</span
|
|
896
|
-
><span class="tsd-signature-symbol">:</span>
|
|
897
|
-
<span class="tsd-signature-type">boolean</span>
|
|
898
|
-
</div>
|
|
899
|
-
<div class="tsd-comment tsd-typography">
|
|
900
|
-
<p>Helper property for scope watch changes</p>
|
|
901
|
-
</div>
|
|
902
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
903
|
-
<aside class="tsd-sources">
|
|
904
|
-
<p>
|
|
905
|
-
Inherited from
|
|
906
|
-
<a href="core_location_location.Location.html">Location</a>.<a
|
|
907
|
-
href="core_location_location.Location.html#urlupdatedbylocation"
|
|
908
|
-
>$$urlUpdatedByLocation</a
|
|
909
|
-
>
|
|
910
|
-
</p>
|
|
911
|
-
</aside>
|
|
912
|
-
</section>
|
|
913
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
914
|
-
<h3 class="tsd-anchor-link" id="appbase">
|
|
915
|
-
<span>app<wbr />Base</span
|
|
916
|
-
><a
|
|
917
|
-
href="#appbase"
|
|
918
|
-
aria-label="Permalink"
|
|
919
|
-
class="tsd-anchor-icon"
|
|
920
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
921
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
922
|
-
></a>
|
|
923
|
-
</h3>
|
|
924
|
-
<div class="tsd-signature">
|
|
925
|
-
<span class="tsd-kind-property">appBase</span
|
|
926
|
-
><span class="tsd-signature-symbol">:</span>
|
|
927
|
-
<span class="tsd-signature-type">string</span>
|
|
928
|
-
</div>
|
|
929
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
930
|
-
<aside class="tsd-sources">
|
|
931
|
-
<p>
|
|
932
|
-
Inherited from
|
|
933
|
-
<a href="core_location_location.Location.html">Location</a>.<a
|
|
934
|
-
href="core_location_location.Location.html#appbase"
|
|
935
|
-
>appBase</a
|
|
936
|
-
>
|
|
937
|
-
</p>
|
|
938
|
-
</aside>
|
|
939
|
-
</section>
|
|
940
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
941
|
-
<h3 class="tsd-anchor-link" id="appbasenofile">
|
|
942
|
-
<span>app<wbr />Base<wbr />No<wbr />File</span
|
|
943
|
-
><a
|
|
944
|
-
href="#appbasenofile"
|
|
945
|
-
aria-label="Permalink"
|
|
946
|
-
class="tsd-anchor-icon"
|
|
947
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
948
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
949
|
-
></a>
|
|
950
|
-
</h3>
|
|
951
|
-
<div class="tsd-signature">
|
|
952
|
-
<span class="tsd-kind-property">appBaseNoFile</span
|
|
953
|
-
><span class="tsd-signature-symbol">:</span>
|
|
954
|
-
<span class="tsd-signature-type">string</span>
|
|
955
|
-
</div>
|
|
956
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
957
|
-
<aside class="tsd-sources">
|
|
958
|
-
<p>
|
|
959
|
-
Inherited from
|
|
960
|
-
<a href="core_location_location.Location.html">Location</a>.<a
|
|
961
|
-
href="core_location_location.Location.html#appbasenofile"
|
|
962
|
-
>appBaseNoFile</a
|
|
963
|
-
>
|
|
964
|
-
</p>
|
|
965
|
-
</aside>
|
|
966
|
-
</section>
|
|
967
|
-
<section class="tsd-panel tsd-member">
|
|
968
|
-
<h3 class="tsd-anchor-link" id="baseprefix">
|
|
969
|
-
<span>base<wbr />Prefix</span
|
|
970
|
-
><a
|
|
971
|
-
href="#baseprefix"
|
|
972
|
-
aria-label="Permalink"
|
|
973
|
-
class="tsd-anchor-icon"
|
|
974
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
975
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
976
|
-
></a>
|
|
977
|
-
</h3>
|
|
978
|
-
<div class="tsd-signature">
|
|
979
|
-
<span class="tsd-kind-property">basePrefix</span
|
|
980
|
-
><span class="tsd-signature-symbol">:</span>
|
|
981
|
-
<span class="tsd-signature-type">string</span>
|
|
982
|
-
</div>
|
|
983
|
-
</section>
|
|
984
|
-
</section>
|
|
985
|
-
</details>
|
|
986
|
-
<details class="tsd-panel-group tsd-member-group tsd-accordion" open>
|
|
987
|
-
<summary class="tsd-accordion-summary" data-key="section-Methods">
|
|
988
|
-
<svg
|
|
989
|
-
width="20"
|
|
990
|
-
height="20"
|
|
991
|
-
viewBox="0 0 24 24"
|
|
992
|
-
fill="none"
|
|
993
|
-
aria-hidden="true"
|
|
994
|
-
>
|
|
995
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
996
|
-
</svg>
|
|
997
|
-
<h2>Methods</h2>
|
|
998
|
-
</summary>
|
|
999
|
-
<section>
|
|
1000
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
1001
|
-
<h3 class="tsd-anchor-link" id="compose">
|
|
1002
|
-
<span>$$compose</span
|
|
1003
|
-
><a
|
|
1004
|
-
href="#compose"
|
|
1005
|
-
aria-label="Permalink"
|
|
1006
|
-
class="tsd-anchor-icon"
|
|
1007
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1008
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1009
|
-
></a>
|
|
1010
|
-
</h3>
|
|
1011
|
-
<ul class="tsd-signatures tsd-is-inherited">
|
|
1012
|
-
<li class="tsd-is-inherited">
|
|
1013
|
-
<div class="tsd-signature tsd-anchor-link" id="compose-1">
|
|
1014
|
-
<span class="tsd-kind-call-signature">$$compose</span
|
|
1015
|
-
><span class="tsd-signature-symbol">()</span
|
|
1016
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1017
|
-
<span class="tsd-signature-type">void</span
|
|
1018
|
-
><a
|
|
1019
|
-
href="#compose-1"
|
|
1020
|
-
aria-label="Permalink"
|
|
1021
|
-
class="tsd-anchor-icon"
|
|
1022
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1023
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1024
|
-
></a>
|
|
1025
|
-
</div>
|
|
1026
|
-
<div class="tsd-description">
|
|
1027
|
-
<div class="tsd-comment tsd-typography">
|
|
1028
|
-
<p>
|
|
1029
|
-
Compose url and update <code>url</code> and
|
|
1030
|
-
<code>absUrl</code> property
|
|
1031
|
-
</p>
|
|
1032
|
-
</div>
|
|
1033
|
-
<h4 class="tsd-returns-title">
|
|
1034
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
1035
|
-
</h4>
|
|
1036
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1037
|
-
<aside class="tsd-sources">
|
|
1038
|
-
<p>
|
|
1039
|
-
Inherited from
|
|
1040
|
-
<a href="core_location_location.Location.html"
|
|
1041
|
-
>Location</a
|
|
1042
|
-
>.<a href="core_location_location.Location.html#compose"
|
|
1043
|
-
>$$compose</a
|
|
1044
|
-
>
|
|
1045
|
-
</p>
|
|
1046
|
-
</aside>
|
|
1047
|
-
</div>
|
|
1048
|
-
</li>
|
|
1049
|
-
</ul>
|
|
1050
|
-
</section>
|
|
1051
|
-
<section class="tsd-panel tsd-member">
|
|
1052
|
-
<h3 class="tsd-anchor-link" id="normalizeurl">
|
|
1053
|
-
<span>$$normalize<wbr />Url</span
|
|
1054
|
-
><a
|
|
1055
|
-
href="#normalizeurl"
|
|
1056
|
-
aria-label="Permalink"
|
|
1057
|
-
class="tsd-anchor-icon"
|
|
1058
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1059
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1060
|
-
></a>
|
|
1061
|
-
</h3>
|
|
1062
|
-
<ul class="tsd-signatures">
|
|
1063
|
-
<li class="">
|
|
1064
|
-
<div
|
|
1065
|
-
class="tsd-signature tsd-anchor-link"
|
|
1066
|
-
id="normalizeurl-1"
|
|
1067
|
-
>
|
|
1068
|
-
<span class="tsd-kind-call-signature">$$normalizeUrl</span
|
|
1069
|
-
><span class="tsd-signature-symbol">(</span
|
|
1070
|
-
><span class="tsd-kind-parameter">url</span
|
|
1071
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1072
|
-
<span class="tsd-signature-type">any</span
|
|
1073
|
-
><span class="tsd-signature-symbol">)</span
|
|
1074
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1075
|
-
<span class="tsd-signature-type">string</span
|
|
1076
|
-
><a
|
|
1077
|
-
href="#normalizeurl-1"
|
|
1078
|
-
aria-label="Permalink"
|
|
1079
|
-
class="tsd-anchor-icon"
|
|
1080
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1081
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1082
|
-
></a>
|
|
1083
|
-
</div>
|
|
1084
|
-
<div class="tsd-description">
|
|
1085
|
-
<div class="tsd-parameters">
|
|
1086
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1087
|
-
<ul class="tsd-parameter-list">
|
|
1088
|
-
<li>
|
|
1089
|
-
<span
|
|
1090
|
-
><span class="tsd-kind-parameter">url</span>:
|
|
1091
|
-
<span class="tsd-signature-type">any</span></span
|
|
1092
|
-
>
|
|
1093
|
-
</li>
|
|
1094
|
-
</ul>
|
|
1095
|
-
</div>
|
|
1096
|
-
<h4 class="tsd-returns-title">
|
|
1097
|
-
Returns <span class="tsd-signature-type">string</span>
|
|
1098
|
-
</h4>
|
|
1099
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1100
|
-
<aside class="tsd-sources">
|
|
1101
|
-
<p>
|
|
1102
|
-
Overrides
|
|
1103
|
-
<a href="core_location_location.Location.html"
|
|
1104
|
-
>Location</a
|
|
1105
|
-
>.<a
|
|
1106
|
-
href="core_location_location.Location.html#normalizeurl"
|
|
1107
|
-
>$$normalizeUrl</a
|
|
1108
|
-
>
|
|
1109
|
-
</p>
|
|
1110
|
-
</aside>
|
|
1111
|
-
</div>
|
|
1112
|
-
</li>
|
|
1113
|
-
</ul>
|
|
1114
|
-
</section>
|
|
1115
|
-
<section class="tsd-panel tsd-member">
|
|
1116
|
-
<h3 class="tsd-anchor-link" id="parse">
|
|
1117
|
-
<span>$$parse</span
|
|
1118
|
-
><a href="#parse" aria-label="Permalink" class="tsd-anchor-icon"
|
|
1119
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1120
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1121
|
-
></a>
|
|
1122
|
-
</h3>
|
|
1123
|
-
<ul class="tsd-signatures">
|
|
1124
|
-
<li class="">
|
|
1125
|
-
<div class="tsd-signature tsd-anchor-link" id="parse-1">
|
|
1126
|
-
<span class="tsd-kind-call-signature">$$parse</span
|
|
1127
|
-
><span class="tsd-signature-symbol">(</span
|
|
1128
|
-
><span class="tsd-kind-parameter">url</span
|
|
1129
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1130
|
-
<span class="tsd-signature-type">string</span
|
|
1131
|
-
><span class="tsd-signature-symbol">)</span
|
|
1132
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1133
|
-
<span class="tsd-signature-type">void</span
|
|
1134
|
-
><a
|
|
1135
|
-
href="#parse-1"
|
|
1136
|
-
aria-label="Permalink"
|
|
1137
|
-
class="tsd-anchor-icon"
|
|
1138
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1139
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1140
|
-
></a>
|
|
1141
|
-
</div>
|
|
1142
|
-
<div class="tsd-description">
|
|
1143
|
-
<div class="tsd-comment tsd-typography">
|
|
1144
|
-
<p>
|
|
1145
|
-
Parse given HTML5 (regular) URL string into properties
|
|
1146
|
-
</p>
|
|
1147
|
-
</div>
|
|
1148
|
-
<div class="tsd-parameters">
|
|
1149
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1150
|
-
<ul class="tsd-parameter-list">
|
|
1151
|
-
<li>
|
|
1152
|
-
<span
|
|
1153
|
-
><span class="tsd-kind-parameter">url</span>:
|
|
1154
|
-
<span class="tsd-signature-type">string</span></span
|
|
1155
|
-
>
|
|
1156
|
-
<div class="tsd-comment tsd-typography">
|
|
1157
|
-
<p>HTML5 URL</p>
|
|
1158
|
-
</div>
|
|
1159
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1160
|
-
</li>
|
|
1161
|
-
</ul>
|
|
1162
|
-
</div>
|
|
1163
|
-
<h4 class="tsd-returns-title">
|
|
1164
|
-
Returns <span class="tsd-signature-type">void</span>
|
|
1165
|
-
</h4>
|
|
1166
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1167
|
-
<aside class="tsd-sources">
|
|
1168
|
-
<p>
|
|
1169
|
-
Overrides
|
|
1170
|
-
<a href="core_location_location.Location.html"
|
|
1171
|
-
>Location</a
|
|
1172
|
-
>.<a href="core_location_location.Location.html#parse"
|
|
1173
|
-
>$$parse</a
|
|
1174
|
-
>
|
|
1175
|
-
</p>
|
|
1176
|
-
</aside>
|
|
1177
|
-
</div>
|
|
1178
|
-
</li>
|
|
1179
|
-
</ul>
|
|
1180
|
-
</section>
|
|
1181
|
-
<section class="tsd-panel tsd-member">
|
|
1182
|
-
<h3 class="tsd-anchor-link" id="parselinkurl">
|
|
1183
|
-
<span>$$parse<wbr />Link<wbr />Url</span
|
|
1184
|
-
><a
|
|
1185
|
-
href="#parselinkurl"
|
|
1186
|
-
aria-label="Permalink"
|
|
1187
|
-
class="tsd-anchor-icon"
|
|
1188
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1189
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1190
|
-
></a>
|
|
1191
|
-
</h3>
|
|
1192
|
-
<ul class="tsd-signatures">
|
|
1193
|
-
<li class="">
|
|
1194
|
-
<div
|
|
1195
|
-
class="tsd-signature tsd-anchor-link"
|
|
1196
|
-
id="parselinkurl-1"
|
|
1197
|
-
>
|
|
1198
|
-
<span class="tsd-kind-call-signature">$$parseLinkUrl</span
|
|
1199
|
-
><span class="tsd-signature-symbol">(</span
|
|
1200
|
-
><span class="tsd-kind-parameter">url</span
|
|
1201
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1202
|
-
<span class="tsd-signature-type">string</span
|
|
1203
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1204
|
-
<span class="tsd-kind-parameter">relHref</span
|
|
1205
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1206
|
-
<span class="tsd-signature-type">string</span
|
|
1207
|
-
><span class="tsd-signature-symbol">)</span
|
|
1208
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1209
|
-
<span class="tsd-signature-type">boolean</span
|
|
1210
|
-
><a
|
|
1211
|
-
href="#parselinkurl-1"
|
|
1212
|
-
aria-label="Permalink"
|
|
1213
|
-
class="tsd-anchor-icon"
|
|
1214
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1215
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1216
|
-
></a>
|
|
1217
|
-
</div>
|
|
1218
|
-
<div class="tsd-description">
|
|
1219
|
-
<div class="tsd-parameters">
|
|
1220
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1221
|
-
<ul class="tsd-parameter-list">
|
|
1222
|
-
<li>
|
|
1223
|
-
<span
|
|
1224
|
-
><span class="tsd-kind-parameter">url</span>:
|
|
1225
|
-
<span class="tsd-signature-type">string</span></span
|
|
1226
|
-
>
|
|
1227
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1228
|
-
</li>
|
|
1229
|
-
<li>
|
|
1230
|
-
<span
|
|
1231
|
-
><span class="tsd-kind-parameter">relHref</span>:
|
|
1232
|
-
<span class="tsd-signature-type">string</span></span
|
|
1233
|
-
>
|
|
1234
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1235
|
-
</li>
|
|
1236
|
-
</ul>
|
|
1237
|
-
</div>
|
|
1238
|
-
<h4 class="tsd-returns-title">
|
|
1239
|
-
Returns <span class="tsd-signature-type">boolean</span>
|
|
1240
|
-
</h4>
|
|
1241
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1242
|
-
<aside class="tsd-sources">
|
|
1243
|
-
<p>
|
|
1244
|
-
Overrides
|
|
1245
|
-
<a href="core_location_location.Location.html"
|
|
1246
|
-
>Location</a
|
|
1247
|
-
>.<a
|
|
1248
|
-
href="core_location_location.Location.html#parselinkurl"
|
|
1249
|
-
>$$parseLinkUrl</a
|
|
1250
|
-
>
|
|
1251
|
-
</p>
|
|
1252
|
-
</aside>
|
|
1253
|
-
</div>
|
|
1254
|
-
</li>
|
|
1255
|
-
</ul>
|
|
1256
|
-
</section>
|
|
1257
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
1258
|
-
<h3 class="tsd-anchor-link" id="absurl-1">
|
|
1259
|
-
<span>abs<wbr />Url</span
|
|
1260
|
-
><a
|
|
1261
|
-
href="#absurl-1"
|
|
1262
|
-
aria-label="Permalink"
|
|
1263
|
-
class="tsd-anchor-icon"
|
|
1264
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1265
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1266
|
-
></a>
|
|
1267
|
-
</h3>
|
|
1268
|
-
<ul class="tsd-signatures tsd-is-inherited">
|
|
1269
|
-
<li class="tsd-is-inherited">
|
|
1270
|
-
<div class="tsd-signature tsd-anchor-link" id="absurl-2">
|
|
1271
|
-
<span class="tsd-kind-call-signature">absUrl</span
|
|
1272
|
-
><span class="tsd-signature-symbol">()</span
|
|
1273
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1274
|
-
<span class="tsd-signature-type">string</span
|
|
1275
|
-
><a
|
|
1276
|
-
href="#absurl-2"
|
|
1277
|
-
aria-label="Permalink"
|
|
1278
|
-
class="tsd-anchor-icon"
|
|
1279
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1280
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1281
|
-
></a>
|
|
1282
|
-
</div>
|
|
1283
|
-
<div class="tsd-description">
|
|
1284
|
-
<div class="tsd-comment tsd-typography">
|
|
1285
|
-
<p>
|
|
1286
|
-
Return full URL representation with all segments encoded
|
|
1287
|
-
according to rules specified in
|
|
1288
|
-
<a href="http://www.ietf.org/rfc/rfc3986.txt"
|
|
1289
|
-
>RFC 3986</a
|
|
1290
|
-
>.
|
|
1291
|
-
</p>
|
|
1292
|
-
</div>
|
|
1293
|
-
<h4 class="tsd-returns-title">
|
|
1294
|
-
Returns <span class="tsd-signature-type">string</span>
|
|
1295
|
-
</h4>
|
|
1296
|
-
<p>full URL</p>
|
|
1297
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1298
|
-
<aside class="tsd-sources">
|
|
1299
|
-
<p>
|
|
1300
|
-
Inherited from
|
|
1301
|
-
<a href="core_location_location.Location.html"
|
|
1302
|
-
>Location</a
|
|
1303
|
-
>.<a
|
|
1304
|
-
href="core_location_location.Location.html#absurl-1"
|
|
1305
|
-
>absUrl</a
|
|
1306
|
-
>
|
|
1307
|
-
</p>
|
|
1308
|
-
</aside>
|
|
1309
|
-
</div>
|
|
1310
|
-
</li>
|
|
1311
|
-
</ul>
|
|
1312
|
-
</section>
|
|
1313
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
1314
|
-
<h3 class="tsd-anchor-link" id="hash-1">
|
|
1315
|
-
<span>hash</span
|
|
1316
|
-
><a
|
|
1317
|
-
href="#hash-1"
|
|
1318
|
-
aria-label="Permalink"
|
|
1319
|
-
class="tsd-anchor-icon"
|
|
1320
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1321
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1322
|
-
></a>
|
|
1323
|
-
</h3>
|
|
1324
|
-
<ul class="tsd-signatures tsd-is-inherited">
|
|
1325
|
-
<li class="tsd-is-inherited">
|
|
1326
|
-
<div class="tsd-signature tsd-anchor-link" id="hash-2">
|
|
1327
|
-
<span class="tsd-kind-call-signature">hash</span
|
|
1328
|
-
><span class="tsd-signature-symbol">(</span
|
|
1329
|
-
><span class="tsd-kind-parameter">hash</span
|
|
1330
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1331
|
-
<span class="tsd-signature-type">string</span>
|
|
1332
|
-
<span class="tsd-signature-symbol">|</span>
|
|
1333
|
-
<span class="tsd-signature-type">number</span
|
|
1334
|
-
><span class="tsd-signature-symbol">)</span
|
|
1335
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1336
|
-
<span class="tsd-signature-type">string</span>
|
|
1337
|
-
<span class="tsd-signature-symbol">|</span>
|
|
1338
|
-
<a
|
|
1339
|
-
href="core_location_location.Location.html"
|
|
1340
|
-
class="tsd-signature-type tsd-kind-class"
|
|
1341
|
-
>Location</a
|
|
1342
|
-
><a
|
|
1343
|
-
href="#hash-2"
|
|
1344
|
-
aria-label="Permalink"
|
|
1345
|
-
class="tsd-anchor-icon"
|
|
1346
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1347
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1348
|
-
></a>
|
|
1349
|
-
</div>
|
|
1350
|
-
<div class="tsd-description">
|
|
1351
|
-
<div class="tsd-comment tsd-typography">
|
|
1352
|
-
<p>This method is getter / setter.</p>
|
|
1353
|
-
<p>
|
|
1354
|
-
Returns the hash fragment when called without any
|
|
1355
|
-
parameters.
|
|
1356
|
-
</p>
|
|
1357
|
-
<p>
|
|
1358
|
-
Changes the hash fragment when called with a parameter
|
|
1359
|
-
and returns <code>$location</code>.
|
|
1360
|
-
</p>
|
|
1361
|
-
<pre><code class="js"><span class="hl-9">// given URL http://example.com/#/some/path?foo=bar&baz=xoxo#hashValue</span><br/><span class="hl-11">let</span><span class="hl-1"> </span><span class="hl-10">hash</span><span class="hl-1"> = </span><span class="hl-10">$location</span><span class="hl-1">.</span><span class="hl-0">hash</span><span class="hl-1">();</span><br/><span class="hl-9">// => "hashValue"</span>
|
|
1362
|
-
</code><button type="button">Copy</button></pre>
|
|
1363
|
-
</div>
|
|
1364
|
-
<div class="tsd-parameters">
|
|
1365
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1366
|
-
<ul class="tsd-parameter-list">
|
|
1367
|
-
<li>
|
|
1368
|
-
<span
|
|
1369
|
-
><span class="tsd-kind-parameter">hash</span>:
|
|
1370
|
-
<span class="tsd-signature-type">string</span>
|
|
1371
|
-
<span class="tsd-signature-symbol">|</span>
|
|
1372
|
-
<span class="tsd-signature-type">number</span></span
|
|
1373
|
-
>
|
|
1374
|
-
<div class="tsd-comment tsd-typography">
|
|
1375
|
-
<p>New hash fragment</p>
|
|
1376
|
-
</div>
|
|
1377
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1378
|
-
</li>
|
|
1379
|
-
</ul>
|
|
1380
|
-
</div>
|
|
1381
|
-
<h4 class="tsd-returns-title">
|
|
1382
|
-
Returns <span class="tsd-signature-type">string</span>
|
|
1383
|
-
<span class="tsd-signature-symbol">|</span>
|
|
1384
|
-
<a
|
|
1385
|
-
href="core_location_location.Location.html"
|
|
1386
|
-
class="tsd-signature-type tsd-kind-class"
|
|
1387
|
-
>Location</a
|
|
1388
|
-
>
|
|
1389
|
-
</h4>
|
|
1390
|
-
<p>hash</p>
|
|
1391
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1392
|
-
<aside class="tsd-sources">
|
|
1393
|
-
<p>
|
|
1394
|
-
Inherited from
|
|
1395
|
-
<a href="core_location_location.Location.html"
|
|
1396
|
-
>Location</a
|
|
1397
|
-
>.<a href="core_location_location.Location.html#hash-1"
|
|
1398
|
-
>hash</a
|
|
1399
|
-
>
|
|
1400
|
-
</p>
|
|
1401
|
-
</aside>
|
|
1402
|
-
</div>
|
|
1403
|
-
</li>
|
|
1404
|
-
</ul>
|
|
1405
|
-
</section>
|
|
1406
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
1407
|
-
<h3 class="tsd-anchor-link" id="host-1">
|
|
1408
|
-
<span>host</span
|
|
1409
|
-
><a
|
|
1410
|
-
href="#host-1"
|
|
1411
|
-
aria-label="Permalink"
|
|
1412
|
-
class="tsd-anchor-icon"
|
|
1413
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1414
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1415
|
-
></a>
|
|
1416
|
-
</h3>
|
|
1417
|
-
<ul class="tsd-signatures tsd-is-inherited">
|
|
1418
|
-
<li class="tsd-is-inherited">
|
|
1419
|
-
<div class="tsd-signature tsd-anchor-link" id="host-2">
|
|
1420
|
-
<span class="tsd-kind-call-signature">host</span
|
|
1421
|
-
><span class="tsd-signature-symbol">()</span
|
|
1422
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1423
|
-
<span class="tsd-signature-type">string</span
|
|
1424
|
-
><a
|
|
1425
|
-
href="#host-2"
|
|
1426
|
-
aria-label="Permalink"
|
|
1427
|
-
class="tsd-anchor-icon"
|
|
1428
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1429
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1430
|
-
></a>
|
|
1431
|
-
</div>
|
|
1432
|
-
<div class="tsd-description">
|
|
1433
|
-
<div class="tsd-comment tsd-typography">
|
|
1434
|
-
<p>This method is getter only.</p>
|
|
1435
|
-
<p>Return host of current URL.</p>
|
|
1436
|
-
<p>
|
|
1437
|
-
Note: compared to the non-AngularTS version
|
|
1438
|
-
<code>location.host</code> which returns
|
|
1439
|
-
<code>hostname:port</code>, this returns the
|
|
1440
|
-
<code>hostname</code> portion only.
|
|
1441
|
-
</p>
|
|
1442
|
-
</div>
|
|
1443
|
-
<h4 class="tsd-returns-title">
|
|
1444
|
-
Returns <span class="tsd-signature-type">string</span>
|
|
1445
|
-
</h4>
|
|
1446
|
-
<p>host of current URL.</p>
|
|
1447
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1448
|
-
<aside class="tsd-sources">
|
|
1449
|
-
<p>
|
|
1450
|
-
Inherited from
|
|
1451
|
-
<a href="core_location_location.Location.html"
|
|
1452
|
-
>Location</a
|
|
1453
|
-
>.<a href="core_location_location.Location.html#host-1"
|
|
1454
|
-
>host</a
|
|
1455
|
-
>
|
|
1456
|
-
</p>
|
|
1457
|
-
</aside>
|
|
1458
|
-
</div>
|
|
1459
|
-
</li>
|
|
1460
|
-
</ul>
|
|
1461
|
-
</section>
|
|
1462
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
1463
|
-
<h3 class="tsd-anchor-link" id="path-1">
|
|
1464
|
-
<span>path</span
|
|
1465
|
-
><a
|
|
1466
|
-
href="#path-1"
|
|
1467
|
-
aria-label="Permalink"
|
|
1468
|
-
class="tsd-anchor-icon"
|
|
1469
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1470
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1471
|
-
></a>
|
|
1472
|
-
</h3>
|
|
1473
|
-
<ul class="tsd-signatures tsd-is-inherited">
|
|
1474
|
-
<li class="tsd-is-inherited">
|
|
1475
|
-
<div class="tsd-signature tsd-anchor-link" id="path-2">
|
|
1476
|
-
<span class="tsd-kind-call-signature">path</span
|
|
1477
|
-
><span class="tsd-signature-symbol">(</span
|
|
1478
|
-
><span class="tsd-kind-parameter">path</span
|
|
1479
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1480
|
-
<span class="tsd-signature-type">string</span>
|
|
1481
|
-
<span class="tsd-signature-symbol">|</span>
|
|
1482
|
-
<span class="tsd-signature-type">number</span
|
|
1483
|
-
><span class="tsd-signature-symbol">)</span
|
|
1484
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1485
|
-
<span class="tsd-signature-type">any</span
|
|
1486
|
-
><a
|
|
1487
|
-
href="#path-2"
|
|
1488
|
-
aria-label="Permalink"
|
|
1489
|
-
class="tsd-anchor-icon"
|
|
1490
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1491
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1492
|
-
></a>
|
|
1493
|
-
</div>
|
|
1494
|
-
<div class="tsd-description">
|
|
1495
|
-
<div class="tsd-comment tsd-typography">
|
|
1496
|
-
<p>This method is getter / setter.</p>
|
|
1497
|
-
<p>
|
|
1498
|
-
Return path of current URL when called without any
|
|
1499
|
-
parameter.
|
|
1500
|
-
</p>
|
|
1501
|
-
<p>
|
|
1502
|
-
Change path when called with parameter and return
|
|
1503
|
-
<code>$location</code>.
|
|
1504
|
-
</p>
|
|
1505
|
-
<p>
|
|
1506
|
-
Note: Path should always begin with forward slash (/),
|
|
1507
|
-
this method will add the forward slash if it is missing.
|
|
1508
|
-
</p>
|
|
1509
|
-
<pre><code class="js"><span class="hl-9">// given URL http://example.com/#/some/path?foo=bar&baz=xoxo</span><br/><span class="hl-11">let</span><span class="hl-1"> </span><span class="hl-10">path</span><span class="hl-1"> = </span><span class="hl-10">$location</span><span class="hl-1">.</span><span class="hl-0">path</span><span class="hl-1">();</span><br/><span class="hl-9">// => "/some/path"</span>
|
|
1510
|
-
</code><button type="button">Copy</button></pre>
|
|
1511
|
-
</div>
|
|
1512
|
-
<div class="tsd-parameters">
|
|
1513
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1514
|
-
<ul class="tsd-parameter-list">
|
|
1515
|
-
<li>
|
|
1516
|
-
<span
|
|
1517
|
-
><span class="tsd-kind-parameter">path</span>:
|
|
1518
|
-
<span class="tsd-signature-type">string</span>
|
|
1519
|
-
<span class="tsd-signature-symbol">|</span>
|
|
1520
|
-
<span class="tsd-signature-type">number</span></span
|
|
1521
|
-
>
|
|
1522
|
-
<div class="tsd-comment tsd-typography">
|
|
1523
|
-
<p>New path</p>
|
|
1524
|
-
</div>
|
|
1525
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1526
|
-
</li>
|
|
1527
|
-
</ul>
|
|
1528
|
-
</div>
|
|
1529
|
-
<h4 class="tsd-returns-title">
|
|
1530
|
-
Returns <span class="tsd-signature-type">any</span>
|
|
1531
|
-
</h4>
|
|
1532
|
-
<p>
|
|
1533
|
-
path if called with no parameters, or
|
|
1534
|
-
<code>$location</code> if called with a parameter
|
|
1535
|
-
</p>
|
|
1536
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1537
|
-
<aside class="tsd-sources">
|
|
1538
|
-
<p>
|
|
1539
|
-
Inherited from
|
|
1540
|
-
<a href="core_location_location.Location.html"
|
|
1541
|
-
>Location</a
|
|
1542
|
-
>.<a href="core_location_location.Location.html#path-1"
|
|
1543
|
-
>path</a
|
|
1544
|
-
>
|
|
1545
|
-
</p>
|
|
1546
|
-
</aside>
|
|
1547
|
-
</div>
|
|
1548
|
-
</li>
|
|
1549
|
-
</ul>
|
|
1550
|
-
</section>
|
|
1551
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
1552
|
-
<h3 class="tsd-anchor-link" id="port-1">
|
|
1553
|
-
<span>port</span
|
|
1554
|
-
><a
|
|
1555
|
-
href="#port-1"
|
|
1556
|
-
aria-label="Permalink"
|
|
1557
|
-
class="tsd-anchor-icon"
|
|
1558
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1559
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1560
|
-
></a>
|
|
1561
|
-
</h3>
|
|
1562
|
-
<ul class="tsd-signatures tsd-is-inherited">
|
|
1563
|
-
<li class="tsd-is-inherited">
|
|
1564
|
-
<div class="tsd-signature tsd-anchor-link" id="port-2">
|
|
1565
|
-
<span class="tsd-kind-call-signature">port</span
|
|
1566
|
-
><span class="tsd-signature-symbol">()</span
|
|
1567
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1568
|
-
<span class="tsd-signature-type">number</span
|
|
1569
|
-
><a
|
|
1570
|
-
href="#port-2"
|
|
1571
|
-
aria-label="Permalink"
|
|
1572
|
-
class="tsd-anchor-icon"
|
|
1573
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1574
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1575
|
-
></a>
|
|
1576
|
-
</div>
|
|
1577
|
-
<div class="tsd-description">
|
|
1578
|
-
<div class="tsd-comment tsd-typography">
|
|
1579
|
-
<p>This method is getter only.</p>
|
|
1580
|
-
<p>Return port of current URL.</p>
|
|
1581
|
-
<pre><code class="js"><span class="hl-9">// given URL http://example.com/#/some/path?foo=bar&baz=xoxo</span><br/><span class="hl-11">let</span><span class="hl-1"> </span><span class="hl-10">port</span><span class="hl-1"> = </span><span class="hl-10">$location</span><span class="hl-1">.</span><span class="hl-0">port</span><span class="hl-1">();</span><br/><span class="hl-9">// => 80</span>
|
|
1582
|
-
</code><button type="button">Copy</button></pre>
|
|
1583
|
-
</div>
|
|
1584
|
-
<h4 class="tsd-returns-title">
|
|
1585
|
-
Returns <span class="tsd-signature-type">number</span>
|
|
1586
|
-
</h4>
|
|
1587
|
-
<p>port</p>
|
|
1588
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1589
|
-
<aside class="tsd-sources">
|
|
1590
|
-
<p>
|
|
1591
|
-
Inherited from
|
|
1592
|
-
<a href="core_location_location.Location.html"
|
|
1593
|
-
>Location</a
|
|
1594
|
-
>.<a href="core_location_location.Location.html#port-1"
|
|
1595
|
-
>port</a
|
|
1596
|
-
>
|
|
1597
|
-
</p>
|
|
1598
|
-
</aside>
|
|
1599
|
-
</div>
|
|
1600
|
-
</li>
|
|
1601
|
-
</ul>
|
|
1602
|
-
</section>
|
|
1603
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
1604
|
-
<h3 class="tsd-anchor-link" id="protocol-1">
|
|
1605
|
-
<span>protocol</span
|
|
1606
|
-
><a
|
|
1607
|
-
href="#protocol-1"
|
|
1608
|
-
aria-label="Permalink"
|
|
1609
|
-
class="tsd-anchor-icon"
|
|
1610
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1611
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1612
|
-
></a>
|
|
1613
|
-
</h3>
|
|
1614
|
-
<ul class="tsd-signatures tsd-is-inherited">
|
|
1615
|
-
<li class="tsd-is-inherited">
|
|
1616
|
-
<div class="tsd-signature tsd-anchor-link" id="protocol-2">
|
|
1617
|
-
<span class="tsd-kind-call-signature">protocol</span
|
|
1618
|
-
><span class="tsd-signature-symbol">()</span
|
|
1619
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1620
|
-
<a
|
|
1621
|
-
href="../types/core_url-utils_url-utils.HttpProtocol.html"
|
|
1622
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
1623
|
-
>HttpProtocol</a
|
|
1624
|
-
><a
|
|
1625
|
-
href="#protocol-2"
|
|
1626
|
-
aria-label="Permalink"
|
|
1627
|
-
class="tsd-anchor-icon"
|
|
1628
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1629
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1630
|
-
></a>
|
|
1631
|
-
</div>
|
|
1632
|
-
<div class="tsd-description">
|
|
1633
|
-
<div class="tsd-comment tsd-typography">
|
|
1634
|
-
<p>Return protocol of current URL.</p>
|
|
1635
|
-
</div>
|
|
1636
|
-
<h4 class="tsd-returns-title">
|
|
1637
|
-
Returns
|
|
1638
|
-
<a
|
|
1639
|
-
href="../types/core_url-utils_url-utils.HttpProtocol.html"
|
|
1640
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
1641
|
-
>HttpProtocol</a
|
|
1642
|
-
>
|
|
1643
|
-
</h4>
|
|
1644
|
-
<p>protocol of current URL</p>
|
|
1645
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1646
|
-
<aside class="tsd-sources">
|
|
1647
|
-
<p>
|
|
1648
|
-
Inherited from
|
|
1649
|
-
<a href="core_location_location.Location.html"
|
|
1650
|
-
>Location</a
|
|
1651
|
-
>.<a
|
|
1652
|
-
href="core_location_location.Location.html#protocol-1"
|
|
1653
|
-
>protocol</a
|
|
1654
|
-
>
|
|
1655
|
-
</p>
|
|
1656
|
-
</aside>
|
|
1657
|
-
</div>
|
|
1658
|
-
</li>
|
|
1659
|
-
</ul>
|
|
1660
|
-
</section>
|
|
1661
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
1662
|
-
<h3 class="tsd-anchor-link" id="replace-1">
|
|
1663
|
-
<span>replace</span
|
|
1664
|
-
><a
|
|
1665
|
-
href="#replace-1"
|
|
1666
|
-
aria-label="Permalink"
|
|
1667
|
-
class="tsd-anchor-icon"
|
|
1668
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1669
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1670
|
-
></a>
|
|
1671
|
-
</h3>
|
|
1672
|
-
<ul class="tsd-signatures tsd-is-inherited">
|
|
1673
|
-
<li class="tsd-is-inherited">
|
|
1674
|
-
<div class="tsd-signature tsd-anchor-link" id="replace-2">
|
|
1675
|
-
<span class="tsd-kind-call-signature">replace</span
|
|
1676
|
-
><span class="tsd-signature-symbol">()</span
|
|
1677
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1678
|
-
<a href="" class="tsd-signature-type tsd-kind-class"
|
|
1679
|
-
>LocationHtml5Url</a
|
|
1680
|
-
><a
|
|
1681
|
-
href="#replace-2"
|
|
1682
|
-
aria-label="Permalink"
|
|
1683
|
-
class="tsd-anchor-icon"
|
|
1684
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1685
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1686
|
-
></a>
|
|
1687
|
-
</div>
|
|
1688
|
-
<div class="tsd-description">
|
|
1689
|
-
<div class="tsd-comment tsd-typography">
|
|
1690
|
-
<p>
|
|
1691
|
-
If called, all changes to $location during the current
|
|
1692
|
-
<code>$digest</code> will replace the current history
|
|
1693
|
-
record, instead of adding a new one.
|
|
1694
|
-
</p>
|
|
1695
|
-
</div>
|
|
1696
|
-
<h4 class="tsd-returns-title">
|
|
1697
|
-
Returns
|
|
1698
|
-
<a href="" class="tsd-signature-type tsd-kind-class"
|
|
1699
|
-
>LocationHtml5Url</a
|
|
1700
|
-
>
|
|
1701
|
-
</h4>
|
|
1702
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1703
|
-
<aside class="tsd-sources">
|
|
1704
|
-
<p>
|
|
1705
|
-
Inherited from
|
|
1706
|
-
<a href="core_location_location.Location.html"
|
|
1707
|
-
>Location</a
|
|
1708
|
-
>.<a
|
|
1709
|
-
href="core_location_location.Location.html#replace-1"
|
|
1710
|
-
>replace</a
|
|
1711
|
-
>
|
|
1712
|
-
</p>
|
|
1713
|
-
</aside>
|
|
1714
|
-
</div>
|
|
1715
|
-
</li>
|
|
1716
|
-
</ul>
|
|
1717
|
-
</section>
|
|
1718
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
1719
|
-
<h3 class="tsd-anchor-link" id="search-1">
|
|
1720
|
-
<span>search</span
|
|
1721
|
-
><a
|
|
1722
|
-
href="#search-1"
|
|
1723
|
-
aria-label="Permalink"
|
|
1724
|
-
class="tsd-anchor-icon"
|
|
1725
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1726
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1727
|
-
></a>
|
|
1728
|
-
</h3>
|
|
1729
|
-
<ul class="tsd-signatures tsd-is-inherited">
|
|
1730
|
-
<li class="tsd-is-inherited">
|
|
1731
|
-
<div class="tsd-signature tsd-anchor-link" id="search-2">
|
|
1732
|
-
<span class="tsd-kind-call-signature">search</span
|
|
1733
|
-
><span class="tsd-signature-symbol">(</span><br /> <span
|
|
1734
|
-
class="tsd-kind-parameter"
|
|
1735
|
-
>search</span
|
|
1736
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1737
|
-
<span class="tsd-signature-type">any</span
|
|
1738
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
1739
|
-
class="tsd-kind-parameter"
|
|
1740
|
-
>paramValue</span
|
|
1741
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1742
|
-
<span class="tsd-signature-type">string</span>
|
|
1743
|
-
<span class="tsd-signature-symbol">|</span>
|
|
1744
|
-
<span class="tsd-signature-type">number</span>
|
|
1745
|
-
<span class="tsd-signature-symbol">|</span>
|
|
1746
|
-
<span class="tsd-signature-type">boolean</span>
|
|
1747
|
-
<span class="tsd-signature-symbol">|</span>
|
|
1748
|
-
<span class="tsd-signature-type">string</span
|
|
1749
|
-
><span class="tsd-signature-symbol">[]</span
|
|
1750
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
1751
|
-
class="tsd-signature-symbol"
|
|
1752
|
-
>...</span
|
|
1753
|
-
><span class="tsd-kind-parameter">args</span
|
|
1754
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1755
|
-
<span class="tsd-signature-type">any</span
|
|
1756
|
-
><span class="tsd-signature-symbol">,</span><br /><span
|
|
1757
|
-
class="tsd-signature-symbol"
|
|
1758
|
-
>)</span
|
|
1759
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1760
|
-
<span class="tsd-signature-type">any</span
|
|
1761
|
-
><a
|
|
1762
|
-
href="#search-2"
|
|
1763
|
-
aria-label="Permalink"
|
|
1764
|
-
class="tsd-anchor-icon"
|
|
1765
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1766
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1767
|
-
></a>
|
|
1768
|
-
</div>
|
|
1769
|
-
<div class="tsd-description">
|
|
1770
|
-
<div class="tsd-comment tsd-typography">
|
|
1771
|
-
<p>
|
|
1772
|
-
Returns or sets the search part (as object) of current
|
|
1773
|
-
URL when called without any parameter
|
|
1774
|
-
</p>
|
|
1775
|
-
</div>
|
|
1776
|
-
<div class="tsd-parameters">
|
|
1777
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1778
|
-
<ul class="tsd-parameter-list">
|
|
1779
|
-
<li>
|
|
1780
|
-
<span
|
|
1781
|
-
><span class="tsd-kind-parameter">search</span>:
|
|
1782
|
-
<span class="tsd-signature-type">any</span></span
|
|
1783
|
-
>
|
|
1784
|
-
<div class="tsd-comment tsd-typography">
|
|
1785
|
-
<p>New search params - string or hash object.</p>
|
|
1786
|
-
</div>
|
|
1787
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1788
|
-
</li>
|
|
1789
|
-
<li>
|
|
1790
|
-
<span
|
|
1791
|
-
><span class="tsd-kind-parameter">paramValue</span>:
|
|
1792
|
-
<span class="tsd-signature-type">string</span>
|
|
1793
|
-
<span class="tsd-signature-symbol">|</span>
|
|
1794
|
-
<span class="tsd-signature-type">number</span>
|
|
1795
|
-
<span class="tsd-signature-symbol">|</span>
|
|
1796
|
-
<span class="tsd-signature-type">boolean</span>
|
|
1797
|
-
<span class="tsd-signature-symbol">|</span>
|
|
1798
|
-
<span class="tsd-signature-type">string</span
|
|
1799
|
-
><span class="tsd-signature-symbol">[]</span></span
|
|
1800
|
-
>
|
|
1801
|
-
<div class="tsd-comment tsd-typography">
|
|
1802
|
-
<p>
|
|
1803
|
-
If search is a string or number, then paramValue
|
|
1804
|
-
will override only a single search property.
|
|
1805
|
-
</p>
|
|
1806
|
-
</div>
|
|
1807
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1808
|
-
</li>
|
|
1809
|
-
<li>
|
|
1810
|
-
<span
|
|
1811
|
-
><span class="tsd-signature-symbol">...</span
|
|
1812
|
-
><span class="tsd-kind-parameter">args</span>:
|
|
1813
|
-
<span class="tsd-signature-type">any</span></span
|
|
1814
|
-
>
|
|
1815
|
-
</li>
|
|
1816
|
-
</ul>
|
|
1817
|
-
</div>
|
|
1818
|
-
<h4 class="tsd-returns-title">
|
|
1819
|
-
Returns <span class="tsd-signature-type">any</span>
|
|
1820
|
-
</h4>
|
|
1821
|
-
<p>Search object or Location object</p>
|
|
1822
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1823
|
-
<aside class="tsd-sources">
|
|
1824
|
-
<p>
|
|
1825
|
-
Inherited from
|
|
1826
|
-
<a href="core_location_location.Location.html"
|
|
1827
|
-
>Location</a
|
|
1828
|
-
>.<a
|
|
1829
|
-
href="core_location_location.Location.html#search-1"
|
|
1830
|
-
>search</a
|
|
1831
|
-
>
|
|
1832
|
-
</p>
|
|
1833
|
-
</aside>
|
|
1834
|
-
</div>
|
|
1835
|
-
</li>
|
|
1836
|
-
</ul>
|
|
1837
|
-
</section>
|
|
1838
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
1839
|
-
<h3 class="tsd-anchor-link" id="state-1">
|
|
1840
|
-
<span>state</span
|
|
1841
|
-
><a
|
|
1842
|
-
href="#state-1"
|
|
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
|
|
1847
|
-
></a>
|
|
1848
|
-
</h3>
|
|
1849
|
-
<ul class="tsd-signatures tsd-is-inherited">
|
|
1850
|
-
<li class="tsd-is-inherited">
|
|
1851
|
-
<div class="tsd-signature tsd-anchor-link" id="state-2">
|
|
1852
|
-
<span class="tsd-kind-call-signature">state</span
|
|
1853
|
-
><span class="tsd-signature-symbol">(</span
|
|
1854
|
-
><span class="tsd-kind-parameter">state</span
|
|
1855
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1856
|
-
<span class="tsd-signature-type">any</span
|
|
1857
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1858
|
-
<span class="tsd-signature-symbol">...</span
|
|
1859
|
-
><span class="tsd-kind-parameter">args</span
|
|
1860
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1861
|
-
<span class="tsd-signature-type">any</span
|
|
1862
|
-
><span class="tsd-signature-symbol">)</span
|
|
1863
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1864
|
-
<span class="tsd-signature-type">any</span
|
|
1865
|
-
><a
|
|
1866
|
-
href="#state-2"
|
|
1867
|
-
aria-label="Permalink"
|
|
1868
|
-
class="tsd-anchor-icon"
|
|
1869
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1870
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1871
|
-
></a>
|
|
1872
|
-
</div>
|
|
1873
|
-
<div class="tsd-description">
|
|
1874
|
-
<div class="tsd-comment tsd-typography">
|
|
1875
|
-
<p>This method is getter / setter.</p>
|
|
1876
|
-
<p>
|
|
1877
|
-
Return the history state object when called without any
|
|
1878
|
-
parameter.
|
|
1879
|
-
</p>
|
|
1880
|
-
<p>
|
|
1881
|
-
Change the history state object when called with one
|
|
1882
|
-
parameter and return <code>$location</code>. The state
|
|
1883
|
-
object is later passed to <code>pushState</code> or
|
|
1884
|
-
<code>replaceState</code>. See
|
|
1885
|
-
<a
|
|
1886
|
-
href="https://developer.mozilla.org/en-US/docs/Web/API/History/pushState#state|History.state"
|
|
1887
|
-
>https://developer.mozilla.org/en-US/docs/Web/API/History/pushState#state|History.state</a
|
|
1888
|
-
>
|
|
1889
|
-
</p>
|
|
1890
|
-
<p>
|
|
1891
|
-
NOTE: This method is supported only in HTML5 mode and
|
|
1892
|
-
only in browsers supporting the HTML5 History API (i.e.
|
|
1893
|
-
methods <code>pushState</code> and
|
|
1894
|
-
<code>replaceState</code>). If you need to support older
|
|
1895
|
-
browsers (like IE9 or Android < 4.0), don't use this
|
|
1896
|
-
method.
|
|
1897
|
-
</p>
|
|
1898
|
-
</div>
|
|
1899
|
-
<div class="tsd-parameters">
|
|
1900
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1901
|
-
<ul class="tsd-parameter-list">
|
|
1902
|
-
<li>
|
|
1903
|
-
<span
|
|
1904
|
-
><span class="tsd-kind-parameter">state</span>:
|
|
1905
|
-
<span class="tsd-signature-type">any</span></span
|
|
1906
|
-
>
|
|
1907
|
-
<div class="tsd-comment tsd-typography">
|
|
1908
|
-
<p>State object for pushState or replaceState</p>
|
|
1909
|
-
</div>
|
|
1910
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1911
|
-
</li>
|
|
1912
|
-
<li>
|
|
1913
|
-
<span
|
|
1914
|
-
><span class="tsd-signature-symbol">...</span
|
|
1915
|
-
><span class="tsd-kind-parameter">args</span>:
|
|
1916
|
-
<span class="tsd-signature-type">any</span></span
|
|
1917
|
-
>
|
|
1918
|
-
</li>
|
|
1919
|
-
</ul>
|
|
1920
|
-
</div>
|
|
1921
|
-
<h4 class="tsd-returns-title">
|
|
1922
|
-
Returns <span class="tsd-signature-type">any</span>
|
|
1923
|
-
</h4>
|
|
1924
|
-
<p>state</p>
|
|
1925
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1926
|
-
<aside class="tsd-sources">
|
|
1927
|
-
<p>
|
|
1928
|
-
Inherited from
|
|
1929
|
-
<a href="core_location_location.Location.html"
|
|
1930
|
-
>Location</a
|
|
1931
|
-
>.<a href="core_location_location.Location.html#state-1"
|
|
1932
|
-
>state</a
|
|
1933
|
-
>
|
|
1934
|
-
</p>
|
|
1935
|
-
</aside>
|
|
1936
|
-
</div>
|
|
1937
|
-
</li>
|
|
1938
|
-
</ul>
|
|
1939
|
-
</section>
|
|
1940
|
-
<section class="tsd-panel tsd-member tsd-is-inherited">
|
|
1941
|
-
<h3 class="tsd-anchor-link" id="url-1">
|
|
1942
|
-
<span>url</span
|
|
1943
|
-
><a href="#url-1" aria-label="Permalink" class="tsd-anchor-icon"
|
|
1944
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1945
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1946
|
-
></a>
|
|
1947
|
-
</h3>
|
|
1948
|
-
<ul class="tsd-signatures tsd-is-inherited">
|
|
1949
|
-
<li class="tsd-is-inherited">
|
|
1950
|
-
<div class="tsd-signature tsd-anchor-link" id="url-2">
|
|
1951
|
-
<span class="tsd-kind-call-signature">url</span
|
|
1952
|
-
><span class="tsd-signature-symbol">(</span
|
|
1953
|
-
><span class="tsd-kind-parameter">url</span
|
|
1954
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1955
|
-
<span class="tsd-signature-type">string</span
|
|
1956
|
-
><span class="tsd-signature-symbol">)</span
|
|
1957
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1958
|
-
<span class="tsd-signature-type">string</span>
|
|
1959
|
-
<span class="tsd-signature-symbol">|</span>
|
|
1960
|
-
<a
|
|
1961
|
-
href="core_location_location.Location.html"
|
|
1962
|
-
class="tsd-signature-type tsd-kind-class"
|
|
1963
|
-
>Location</a
|
|
1964
|
-
><a
|
|
1965
|
-
href="#url-2"
|
|
1966
|
-
aria-label="Permalink"
|
|
1967
|
-
class="tsd-anchor-icon"
|
|
1968
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1969
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1970
|
-
></a>
|
|
1971
|
-
</div>
|
|
1972
|
-
<div class="tsd-description">
|
|
1973
|
-
<div class="tsd-comment tsd-typography">
|
|
1974
|
-
<p>This method is getter / setter.</p>
|
|
1975
|
-
<p>
|
|
1976
|
-
Return URL (e.g. <code>/path?a=b#hash</code>) when
|
|
1977
|
-
called without any parameter. Change path, search and
|
|
1978
|
-
hash, when called with parameter and return
|
|
1979
|
-
<code>$location</code>.
|
|
1980
|
-
</p>
|
|
1981
|
-
</div>
|
|
1982
|
-
<div class="tsd-parameters">
|
|
1983
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1984
|
-
<ul class="tsd-parameter-list">
|
|
1985
|
-
<li>
|
|
1986
|
-
<span
|
|
1987
|
-
><span class="tsd-kind-parameter">url</span>:
|
|
1988
|
-
<span class="tsd-signature-type">string</span></span
|
|
1989
|
-
>
|
|
1990
|
-
<div class="tsd-comment tsd-typography">
|
|
1991
|
-
<p>
|
|
1992
|
-
New URL without base prefix (e.g.
|
|
1993
|
-
<code>/path?a=b#hash</code>)
|
|
1994
|
-
</p>
|
|
1995
|
-
</div>
|
|
1996
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1997
|
-
</li>
|
|
1998
|
-
</ul>
|
|
1999
|
-
</div>
|
|
2000
|
-
<h4 class="tsd-returns-title">
|
|
2001
|
-
Returns <span class="tsd-signature-type">string</span>
|
|
2002
|
-
<span class="tsd-signature-symbol">|</span>
|
|
2003
|
-
<a
|
|
2004
|
-
href="core_location_location.Location.html"
|
|
2005
|
-
class="tsd-signature-type tsd-kind-class"
|
|
2006
|
-
>Location</a
|
|
2007
|
-
>
|
|
2008
|
-
</h4>
|
|
2009
|
-
<p>url</p>
|
|
2010
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2011
|
-
<aside class="tsd-sources">
|
|
2012
|
-
<p>
|
|
2013
|
-
Inherited from
|
|
2014
|
-
<a href="core_location_location.Location.html"
|
|
2015
|
-
>Location</a
|
|
2016
|
-
>.<a href="core_location_location.Location.html#url-1"
|
|
2017
|
-
>url</a
|
|
2018
|
-
>
|
|
2019
|
-
</p>
|
|
2020
|
-
</aside>
|
|
2021
|
-
</div>
|
|
2022
|
-
</li>
|
|
2023
|
-
</ul>
|
|
2024
|
-
</section>
|
|
2025
|
-
</section>
|
|
2026
|
-
</details>
|
|
2027
|
-
</div>
|
|
2028
|
-
<div class="col-sidebar">
|
|
2029
|
-
<div class="page-menu">
|
|
2030
|
-
<div class="tsd-navigation settings">
|
|
2031
|
-
<details class="tsd-accordion">
|
|
2032
|
-
<summary class="tsd-accordion-summary">
|
|
2033
|
-
<svg
|
|
2034
|
-
width="20"
|
|
2035
|
-
height="20"
|
|
2036
|
-
viewBox="0 0 24 24"
|
|
2037
|
-
fill="none"
|
|
2038
|
-
aria-hidden="true"
|
|
2039
|
-
>
|
|
2040
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
2041
|
-
</svg>
|
|
2042
|
-
<h3>Settings</h3>
|
|
2043
|
-
</summary>
|
|
2044
|
-
<div class="tsd-accordion-details">
|
|
2045
|
-
<div class="tsd-filter-visibility">
|
|
2046
|
-
<span class="settings-label">Member Visibility</span>
|
|
2047
|
-
<ul id="tsd-filter-options">
|
|
2048
|
-
<li class="tsd-filter-item">
|
|
2049
|
-
<label class="tsd-filter-input"
|
|
2050
|
-
><input
|
|
2051
|
-
type="checkbox"
|
|
2052
|
-
id="tsd-filter-protected"
|
|
2053
|
-
name="protected"
|
|
2054
|
-
/><svg
|
|
2055
|
-
width="32"
|
|
2056
|
-
height="32"
|
|
2057
|
-
viewBox="0 0 32 32"
|
|
2058
|
-
aria-hidden="true"
|
|
2059
|
-
>
|
|
2060
|
-
<rect
|
|
2061
|
-
class="tsd-checkbox-background"
|
|
2062
|
-
width="30"
|
|
2063
|
-
height="30"
|
|
2064
|
-
x="1"
|
|
2065
|
-
y="1"
|
|
2066
|
-
rx="6"
|
|
2067
|
-
fill="none"
|
|
2068
|
-
></rect>
|
|
2069
|
-
<path
|
|
2070
|
-
class="tsd-checkbox-checkmark"
|
|
2071
|
-
d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
|
|
2072
|
-
stroke="none"
|
|
2073
|
-
stroke-width="3.5"
|
|
2074
|
-
stroke-linejoin="round"
|
|
2075
|
-
fill="none"
|
|
2076
|
-
></path></svg
|
|
2077
|
-
><span>Protected</span></label
|
|
2078
|
-
>
|
|
2079
|
-
</li>
|
|
2080
|
-
<li class="tsd-filter-item">
|
|
2081
|
-
<label class="tsd-filter-input"
|
|
2082
|
-
><input
|
|
2083
|
-
type="checkbox"
|
|
2084
|
-
id="tsd-filter-inherited"
|
|
2085
|
-
name="inherited"
|
|
2086
|
-
checked
|
|
2087
|
-
/><svg
|
|
2088
|
-
width="32"
|
|
2089
|
-
height="32"
|
|
2090
|
-
viewBox="0 0 32 32"
|
|
2091
|
-
aria-hidden="true"
|
|
2092
|
-
>
|
|
2093
|
-
<rect
|
|
2094
|
-
class="tsd-checkbox-background"
|
|
2095
|
-
width="30"
|
|
2096
|
-
height="30"
|
|
2097
|
-
x="1"
|
|
2098
|
-
y="1"
|
|
2099
|
-
rx="6"
|
|
2100
|
-
fill="none"
|
|
2101
|
-
></rect>
|
|
2102
|
-
<path
|
|
2103
|
-
class="tsd-checkbox-checkmark"
|
|
2104
|
-
d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
|
|
2105
|
-
stroke="none"
|
|
2106
|
-
stroke-width="3.5"
|
|
2107
|
-
stroke-linejoin="round"
|
|
2108
|
-
fill="none"
|
|
2109
|
-
></path></svg
|
|
2110
|
-
><span>Inherited</span></label
|
|
2111
|
-
>
|
|
2112
|
-
</li>
|
|
2113
|
-
<li class="tsd-filter-item">
|
|
2114
|
-
<label class="tsd-filter-input"
|
|
2115
|
-
><input
|
|
2116
|
-
type="checkbox"
|
|
2117
|
-
id="tsd-filter-external"
|
|
2118
|
-
name="external"
|
|
2119
|
-
/><svg
|
|
2120
|
-
width="32"
|
|
2121
|
-
height="32"
|
|
2122
|
-
viewBox="0 0 32 32"
|
|
2123
|
-
aria-hidden="true"
|
|
2124
|
-
>
|
|
2125
|
-
<rect
|
|
2126
|
-
class="tsd-checkbox-background"
|
|
2127
|
-
width="30"
|
|
2128
|
-
height="30"
|
|
2129
|
-
x="1"
|
|
2130
|
-
y="1"
|
|
2131
|
-
rx="6"
|
|
2132
|
-
fill="none"
|
|
2133
|
-
></rect>
|
|
2134
|
-
<path
|
|
2135
|
-
class="tsd-checkbox-checkmark"
|
|
2136
|
-
d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
|
|
2137
|
-
stroke="none"
|
|
2138
|
-
stroke-width="3.5"
|
|
2139
|
-
stroke-linejoin="round"
|
|
2140
|
-
fill="none"
|
|
2141
|
-
></path></svg
|
|
2142
|
-
><span>External</span></label
|
|
2143
|
-
>
|
|
2144
|
-
</li>
|
|
2145
|
-
</ul>
|
|
2146
|
-
</div>
|
|
2147
|
-
<div class="tsd-theme-toggle">
|
|
2148
|
-
<label class="settings-label" for="tsd-theme">Theme</label
|
|
2149
|
-
><select id="tsd-theme">
|
|
2150
|
-
<option value="os">OS</option>
|
|
2151
|
-
<option value="light">Light</option>
|
|
2152
|
-
<option value="dark">Dark</option>
|
|
2153
|
-
</select>
|
|
2154
|
-
</div>
|
|
2155
|
-
</div>
|
|
2156
|
-
</details>
|
|
2157
|
-
</div>
|
|
2158
|
-
<details open class="tsd-accordion tsd-page-navigation">
|
|
2159
|
-
<summary class="tsd-accordion-summary">
|
|
2160
|
-
<svg
|
|
2161
|
-
width="20"
|
|
2162
|
-
height="20"
|
|
2163
|
-
viewBox="0 0 24 24"
|
|
2164
|
-
fill="none"
|
|
2165
|
-
aria-hidden="true"
|
|
2166
|
-
>
|
|
2167
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
2168
|
-
</svg>
|
|
2169
|
-
<h3>On This Page</h3>
|
|
2170
|
-
</summary>
|
|
2171
|
-
<div class="tsd-accordion-details">
|
|
2172
|
-
<details open class="tsd-accordion tsd-page-navigation-section">
|
|
2173
|
-
<summary
|
|
2174
|
-
class="tsd-accordion-summary"
|
|
2175
|
-
data-key="section-Constructors"
|
|
2176
|
-
>
|
|
2177
|
-
<svg
|
|
2178
|
-
width="20"
|
|
2179
|
-
height="20"
|
|
2180
|
-
viewBox="0 0 24 24"
|
|
2181
|
-
fill="none"
|
|
2182
|
-
aria-hidden="true"
|
|
2183
|
-
>
|
|
2184
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use></svg
|
|
2185
|
-
>Constructors
|
|
2186
|
-
</summary>
|
|
2187
|
-
<div>
|
|
2188
|
-
<a href="#constructor"
|
|
2189
|
-
><svg
|
|
2190
|
-
class="tsd-kind-icon"
|
|
2191
|
-
viewBox="0 0 24 24"
|
|
2192
|
-
aria-label="Constructor"
|
|
2193
|
-
>
|
|
2194
|
-
<use href="../assets/icons.svg#icon-512"></use></svg
|
|
2195
|
-
><span>constructor</span></a
|
|
2196
|
-
>
|
|
2197
|
-
</div>
|
|
2198
|
-
</details>
|
|
2199
|
-
<details open class="tsd-accordion tsd-page-navigation-section">
|
|
2200
|
-
<summary
|
|
2201
|
-
class="tsd-accordion-summary"
|
|
2202
|
-
data-key="section-Properties"
|
|
2203
|
-
>
|
|
2204
|
-
<svg
|
|
2205
|
-
width="20"
|
|
2206
|
-
height="20"
|
|
2207
|
-
viewBox="0 0 24 24"
|
|
2208
|
-
fill="none"
|
|
2209
|
-
aria-hidden="true"
|
|
2210
|
-
>
|
|
2211
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use></svg
|
|
2212
|
-
>Properties
|
|
2213
|
-
</summary>
|
|
2214
|
-
<div>
|
|
2215
|
-
<a href="#absurl" class="tsd-is-inherited"
|
|
2216
|
-
><svg
|
|
2217
|
-
class="tsd-kind-icon"
|
|
2218
|
-
viewBox="0 0 24 24"
|
|
2219
|
-
aria-label="Property"
|
|
2220
|
-
>
|
|
2221
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
2222
|
-
><span>$$abs<wbr />Url</span></a
|
|
2223
|
-
><a href="#hash" class="tsd-is-inherited"
|
|
2224
|
-
><svg
|
|
2225
|
-
class="tsd-kind-icon"
|
|
2226
|
-
viewBox="0 0 24 24"
|
|
2227
|
-
aria-label="Property"
|
|
2228
|
-
>
|
|
2229
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
2230
|
-
><span>$$hash</span></a
|
|
2231
|
-
><a href="#host" class="tsd-is-inherited"
|
|
2232
|
-
><svg
|
|
2233
|
-
class="tsd-kind-icon"
|
|
2234
|
-
viewBox="0 0 24 24"
|
|
2235
|
-
aria-label="Property"
|
|
2236
|
-
>
|
|
2237
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
2238
|
-
><span>$$host</span></a
|
|
2239
|
-
><a href="#html5" class="tsd-is-inherited"
|
|
2240
|
-
><svg
|
|
2241
|
-
class="tsd-kind-icon"
|
|
2242
|
-
viewBox="0 0 24 24"
|
|
2243
|
-
aria-label="Property"
|
|
2244
|
-
>
|
|
2245
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
2246
|
-
><span>$$html5</span></a
|
|
2247
|
-
><a href="#path" class="tsd-is-inherited"
|
|
2248
|
-
><svg
|
|
2249
|
-
class="tsd-kind-icon"
|
|
2250
|
-
viewBox="0 0 24 24"
|
|
2251
|
-
aria-label="Property"
|
|
2252
|
-
>
|
|
2253
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
2254
|
-
><span>$$path</span></a
|
|
2255
|
-
><a href="#port" class="tsd-is-inherited"
|
|
2256
|
-
><svg
|
|
2257
|
-
class="tsd-kind-icon"
|
|
2258
|
-
viewBox="0 0 24 24"
|
|
2259
|
-
aria-label="Property"
|
|
2260
|
-
>
|
|
2261
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
2262
|
-
><span>$$port</span></a
|
|
2263
|
-
><a href="#protocol" class="tsd-is-inherited"
|
|
2264
|
-
><svg
|
|
2265
|
-
class="tsd-kind-icon"
|
|
2266
|
-
viewBox="0 0 24 24"
|
|
2267
|
-
aria-label="Property"
|
|
2268
|
-
>
|
|
2269
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
2270
|
-
><span>$$protocol</span></a
|
|
2271
|
-
><a href="#replace" class="tsd-is-inherited"
|
|
2272
|
-
><svg
|
|
2273
|
-
class="tsd-kind-icon"
|
|
2274
|
-
viewBox="0 0 24 24"
|
|
2275
|
-
aria-label="Property"
|
|
2276
|
-
>
|
|
2277
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
2278
|
-
><span>$$replace</span></a
|
|
2279
|
-
><a href="#search" class="tsd-is-inherited"
|
|
2280
|
-
><svg
|
|
2281
|
-
class="tsd-kind-icon"
|
|
2282
|
-
viewBox="0 0 24 24"
|
|
2283
|
-
aria-label="Property"
|
|
2284
|
-
>
|
|
2285
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
2286
|
-
><span>$$search</span></a
|
|
2287
|
-
><a href="#state" class="tsd-is-inherited"
|
|
2288
|
-
><svg
|
|
2289
|
-
class="tsd-kind-icon"
|
|
2290
|
-
viewBox="0 0 24 24"
|
|
2291
|
-
aria-label="Property"
|
|
2292
|
-
>
|
|
2293
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
2294
|
-
><span>$$state</span></a
|
|
2295
|
-
><a href="#url" class="tsd-is-inherited"
|
|
2296
|
-
><svg
|
|
2297
|
-
class="tsd-kind-icon"
|
|
2298
|
-
viewBox="0 0 24 24"
|
|
2299
|
-
aria-label="Property"
|
|
2300
|
-
>
|
|
2301
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
2302
|
-
><span>$$url</span></a
|
|
2303
|
-
><a href="#urlupdatedbylocation" class="tsd-is-inherited"
|
|
2304
|
-
><svg
|
|
2305
|
-
class="tsd-kind-icon"
|
|
2306
|
-
viewBox="0 0 24 24"
|
|
2307
|
-
aria-label="Property"
|
|
2308
|
-
>
|
|
2309
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
2310
|
-
><span>$$url<wbr />Updated<wbr />By<wbr />Location</span></a
|
|
2311
|
-
><a href="#appbase" class="tsd-is-inherited"
|
|
2312
|
-
><svg
|
|
2313
|
-
class="tsd-kind-icon"
|
|
2314
|
-
viewBox="0 0 24 24"
|
|
2315
|
-
aria-label="Property"
|
|
2316
|
-
>
|
|
2317
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
2318
|
-
><span>app<wbr />Base</span></a
|
|
2319
|
-
><a href="#appbasenofile" class="tsd-is-inherited"
|
|
2320
|
-
><svg
|
|
2321
|
-
class="tsd-kind-icon"
|
|
2322
|
-
viewBox="0 0 24 24"
|
|
2323
|
-
aria-label="Property"
|
|
2324
|
-
>
|
|
2325
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
2326
|
-
><span>app<wbr />Base<wbr />No<wbr />File</span></a
|
|
2327
|
-
><a href="#baseprefix"
|
|
2328
|
-
><svg
|
|
2329
|
-
class="tsd-kind-icon"
|
|
2330
|
-
viewBox="0 0 24 24"
|
|
2331
|
-
aria-label="Property"
|
|
2332
|
-
>
|
|
2333
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
2334
|
-
><span>base<wbr />Prefix</span></a
|
|
2335
|
-
>
|
|
2336
|
-
</div>
|
|
2337
|
-
</details>
|
|
2338
|
-
<details open class="tsd-accordion tsd-page-navigation-section">
|
|
2339
|
-
<summary
|
|
2340
|
-
class="tsd-accordion-summary"
|
|
2341
|
-
data-key="section-Methods"
|
|
2342
|
-
>
|
|
2343
|
-
<svg
|
|
2344
|
-
width="20"
|
|
2345
|
-
height="20"
|
|
2346
|
-
viewBox="0 0 24 24"
|
|
2347
|
-
fill="none"
|
|
2348
|
-
aria-hidden="true"
|
|
2349
|
-
>
|
|
2350
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use></svg
|
|
2351
|
-
>Methods
|
|
2352
|
-
</summary>
|
|
2353
|
-
<div>
|
|
2354
|
-
<a href="#compose" class="tsd-is-inherited"
|
|
2355
|
-
><svg
|
|
2356
|
-
class="tsd-kind-icon"
|
|
2357
|
-
viewBox="0 0 24 24"
|
|
2358
|
-
aria-label="Method"
|
|
2359
|
-
>
|
|
2360
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
2361
|
-
><span>$$compose</span></a
|
|
2362
|
-
><a href="#normalizeurl"
|
|
2363
|
-
><svg
|
|
2364
|
-
class="tsd-kind-icon"
|
|
2365
|
-
viewBox="0 0 24 24"
|
|
2366
|
-
aria-label="Method"
|
|
2367
|
-
>
|
|
2368
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
2369
|
-
><span>$$normalize<wbr />Url</span></a
|
|
2370
|
-
><a href="#parse"
|
|
2371
|
-
><svg
|
|
2372
|
-
class="tsd-kind-icon"
|
|
2373
|
-
viewBox="0 0 24 24"
|
|
2374
|
-
aria-label="Method"
|
|
2375
|
-
>
|
|
2376
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
2377
|
-
><span>$$parse</span></a
|
|
2378
|
-
><a href="#parselinkurl"
|
|
2379
|
-
><svg
|
|
2380
|
-
class="tsd-kind-icon"
|
|
2381
|
-
viewBox="0 0 24 24"
|
|
2382
|
-
aria-label="Method"
|
|
2383
|
-
>
|
|
2384
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
2385
|
-
><span>$$parse<wbr />Link<wbr />Url</span></a
|
|
2386
|
-
><a href="#absurl-1" class="tsd-is-inherited"
|
|
2387
|
-
><svg
|
|
2388
|
-
class="tsd-kind-icon"
|
|
2389
|
-
viewBox="0 0 24 24"
|
|
2390
|
-
aria-label="Method"
|
|
2391
|
-
>
|
|
2392
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
2393
|
-
><span>abs<wbr />Url</span></a
|
|
2394
|
-
><a href="#hash-1" class="tsd-is-inherited"
|
|
2395
|
-
><svg
|
|
2396
|
-
class="tsd-kind-icon"
|
|
2397
|
-
viewBox="0 0 24 24"
|
|
2398
|
-
aria-label="Method"
|
|
2399
|
-
>
|
|
2400
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
2401
|
-
><span>hash</span></a
|
|
2402
|
-
><a href="#host-1" class="tsd-is-inherited"
|
|
2403
|
-
><svg
|
|
2404
|
-
class="tsd-kind-icon"
|
|
2405
|
-
viewBox="0 0 24 24"
|
|
2406
|
-
aria-label="Method"
|
|
2407
|
-
>
|
|
2408
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
2409
|
-
><span>host</span></a
|
|
2410
|
-
><a href="#path-1" class="tsd-is-inherited"
|
|
2411
|
-
><svg
|
|
2412
|
-
class="tsd-kind-icon"
|
|
2413
|
-
viewBox="0 0 24 24"
|
|
2414
|
-
aria-label="Method"
|
|
2415
|
-
>
|
|
2416
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
2417
|
-
><span>path</span></a
|
|
2418
|
-
><a href="#port-1" class="tsd-is-inherited"
|
|
2419
|
-
><svg
|
|
2420
|
-
class="tsd-kind-icon"
|
|
2421
|
-
viewBox="0 0 24 24"
|
|
2422
|
-
aria-label="Method"
|
|
2423
|
-
>
|
|
2424
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
2425
|
-
><span>port</span></a
|
|
2426
|
-
><a href="#protocol-1" class="tsd-is-inherited"
|
|
2427
|
-
><svg
|
|
2428
|
-
class="tsd-kind-icon"
|
|
2429
|
-
viewBox="0 0 24 24"
|
|
2430
|
-
aria-label="Method"
|
|
2431
|
-
>
|
|
2432
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
2433
|
-
><span>protocol</span></a
|
|
2434
|
-
><a href="#replace-1" class="tsd-is-inherited"
|
|
2435
|
-
><svg
|
|
2436
|
-
class="tsd-kind-icon"
|
|
2437
|
-
viewBox="0 0 24 24"
|
|
2438
|
-
aria-label="Method"
|
|
2439
|
-
>
|
|
2440
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
2441
|
-
><span>replace</span></a
|
|
2442
|
-
><a href="#search-1" class="tsd-is-inherited"
|
|
2443
|
-
><svg
|
|
2444
|
-
class="tsd-kind-icon"
|
|
2445
|
-
viewBox="0 0 24 24"
|
|
2446
|
-
aria-label="Method"
|
|
2447
|
-
>
|
|
2448
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
2449
|
-
><span>search</span></a
|
|
2450
|
-
><a href="#state-1" class="tsd-is-inherited"
|
|
2451
|
-
><svg
|
|
2452
|
-
class="tsd-kind-icon"
|
|
2453
|
-
viewBox="0 0 24 24"
|
|
2454
|
-
aria-label="Method"
|
|
2455
|
-
>
|
|
2456
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
2457
|
-
><span>state</span></a
|
|
2458
|
-
><a href="#url-1" class="tsd-is-inherited"
|
|
2459
|
-
><svg
|
|
2460
|
-
class="tsd-kind-icon"
|
|
2461
|
-
viewBox="0 0 24 24"
|
|
2462
|
-
aria-label="Method"
|
|
2463
|
-
>
|
|
2464
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
2465
|
-
><span>url</span></a
|
|
2466
|
-
>
|
|
2467
|
-
</div>
|
|
2468
|
-
</details>
|
|
2469
|
-
</div>
|
|
2470
|
-
</details>
|
|
2471
|
-
</div>
|
|
2472
|
-
<div class="site-menu">
|
|
2473
|
-
<nav class="tsd-navigation">
|
|
2474
|
-
<a href="../modules.html">AngularTS</a>
|
|
2475
|
-
<ul class="tsd-small-nested-navigation" id="tsd-nav-container">
|
|
2476
|
-
<li>Loading...</li>
|
|
2477
|
-
</ul>
|
|
2478
|
-
</nav>
|
|
2479
|
-
</div>
|
|
2480
|
-
</div>
|
|
2481
|
-
</div>
|
|
2482
|
-
<footer>
|
|
2483
|
-
<p class="tsd-generator">
|
|
2484
|
-
Generated using
|
|
2485
|
-
<a href="https://typedoc.org/" target="_blank">TypeDoc</a>
|
|
2486
|
-
</p>
|
|
2487
|
-
</footer>
|
|
2488
|
-
<div class="overlay"></div>
|
|
2489
|
-
</body>
|
|
2490
|
-
</html>
|