@angular-wave/angular.ts 0.7.2 → 0.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +1 -1
- package/.prettierignore +1 -0
- package/@types/core/cache/cache.d.ts +0 -5
- package/@types/core/di/internal-injector.d.ts +2 -5
- package/@types/core/di/ng-module.d.ts +0 -7
- package/@types/core/exception-handler.d.ts +2 -2
- package/@types/core/pubsub/pubsub.d.ts +3 -3
- package/@types/directive/channel/channel.d.ts +9 -3
- package/@types/directive/http/http.d.ts +39 -0
- package/@types/directive/if/if.d.ts +0 -2
- package/@types/interface.d.ts +16 -4
- package/@types/loader.d.ts +3 -3
- package/@types/public.d.ts +1 -2
- package/@types/shared/common.d.ts +7 -8
- package/Makefile +8 -0
- package/dist/angular-ts.esm.js +289 -68
- package/dist/angular-ts.umd.js +289 -68
- package/dist/angular-ts.umd.min.js +1 -1
- package/docs/README.md +69 -39
- package/docs/assets/scss/_variables_project.scss +6 -0
- package/docs/assets/scss/_variables_project_after_bs.scss +8 -0
- package/docs/assets/scss/index.scss +14 -0
- package/docs/content/{en/_index.md → _index.md} +6 -1
- package/docs/content/{en/docs → docs}/_index.md +9 -10
- package/docs/docker-compose.yaml +2 -3
- package/docs/hugo.yaml +17 -18
- package/docs/layouts/404.html +8 -2
- package/docs/static/typedoc/assets/hierarchy.js +1 -0
- package/docs/static/typedoc/assets/highlight.css +78 -0
- package/docs/static/typedoc/assets/icons.js +18 -0
- package/docs/static/typedoc/assets/main.js +60 -0
- package/docs/static/typedoc/assets/navigation.js +1 -0
- package/docs/static/typedoc/assets/search.js +1 -0
- package/docs/static/typedoc/assets/style.css +1640 -0
- package/docs/static/typedoc/hierarchy.html +1 -0
- package/docs/static/typedoc/index.html +1 -0
- package/docs/static/typedoc/interfaces/ChangesObject.html +6 -0
- package/docs/static/typedoc/interfaces/ComponentOptions.html +16 -0
- package/docs/static/typedoc/interfaces/Controller.html +12 -0
- package/docs/static/typedoc/interfaces/Directive.html +36 -0
- package/docs/static/typedoc/interfaces/DirectivePrePost.html +4 -0
- package/docs/static/typedoc/interfaces/NgModelController.html +30 -0
- package/docs/static/typedoc/interfaces/NgModelOptions.html +16 -0
- package/docs/static/typedoc/interfaces/Provider.html +28 -0
- package/docs/static/typedoc/interfaces/ServiceProvider.html +5 -0
- package/docs/static/typedoc/interfaces/TranscludeFunctionObject.html +8 -0
- package/docs/static/typedoc/types/AnnotatedFactory.html +8 -0
- package/docs/static/typedoc/types/CloneAttachFunction.html +2 -0
- package/docs/static/typedoc/types/ControllerConstructor.html +2 -0
- package/docs/static/typedoc/types/DirectiveCompileFn.html +2 -0
- package/docs/static/typedoc/types/DirectiveController.html +2 -0
- package/docs/static/typedoc/types/DirectiveFactory.html +2 -0
- package/docs/static/typedoc/types/DirectiveLinkFn.html +2 -0
- package/docs/static/typedoc/types/Expression.html +6 -0
- package/docs/static/typedoc/types/FilterFactory.html +2 -0
- package/docs/static/typedoc/types/FilterFn.html +2 -0
- package/docs/static/typedoc/types/Injectable.html +1 -0
- package/docs/static/typedoc/types/InjectableFactory.html +4 -0
- package/docs/static/typedoc/types/OnChangesObject.html +2 -0
- package/docs/static/typedoc/types/SwapInsertPosition.html +2 -0
- package/docs/static/typedoc/types/TController.html +2 -0
- package/legacy.d.ts +2695 -0
- package/package.json +2 -2
- package/playwright.config.ts +2 -0
- package/src/animations/animate.spec.js +1 -1
- package/src/binding.spec.js +1 -1
- package/src/core/cache/cache.js +0 -3
- package/src/core/compile/compile.js +3 -1
- package/src/core/compile/compile.spec.js +9 -95
- package/src/core/di/injector.js +1 -1
- package/src/core/di/injector.spec.js +0 -30
- package/src/core/di/internal-injector.js +2 -5
- package/src/core/di/ng-module.js +1 -23
- package/src/core/di/ng-module.spec.js +0 -6
- package/src/core/exception-handler.js +1 -1
- package/src/core/pubsub/pubsub.js +6 -6
- package/src/directive/channel/channel.js +8 -6
- package/src/directive/http/delete.spec.js +24 -0
- package/src/directive/http/get.spec.js +211 -0
- package/src/directive/http/http.html +22 -0
- package/src/directive/http/http.js +245 -0
- package/src/directive/http/http.test.js +12 -0
- package/src/directive/http/post-example.html +30 -0
- package/src/directive/http/post.spec.js +24 -0
- package/src/directive/http/put.spec.js +24 -0
- package/src/directive/if/if.js +0 -2
- package/src/directive/include/include.spec.js +0 -1
- package/src/directive/model-options/model-options.spec.js +1 -5
- package/src/directive/repeat/repeat.spec.js +1 -1
- package/src/directive/setter/setter.spec.js +1 -1
- package/src/directive/style/style.js +1 -1
- package/src/interface.ts +17 -4
- package/src/loader.js +6 -7
- package/src/loader.spec.js +0 -31
- package/src/public.js +12 -6
- package/src/services/http-backend/http-backend.js +3 -1
- package/src/shared/common.js +11 -36
- package/src/shared/common.spec.js +34 -3
- package/src/shared/dom.js +3 -14
- package/typedoc.json +3 -2
- package/utils/express.js +13 -0
- package/docs/netlify.toml +0 -12
- package/typedoc/assets/hierarchy.js +0 -2
- package/typedoc/assets/highlight.css +0 -209
- package/typedoc/assets/icons.js +0 -21
- package/typedoc/assets/main.js +0 -2589
- package/typedoc/assets/navigation.js +0 -2
- package/typedoc/assets/search.js +0 -2
- package/typedoc/assets/style.css +0 -1623
- package/typedoc/classes/animations_animate-cache.AnimateCacheProvider.html +0 -543
- package/typedoc/classes/animations_animate-css-driver.AnimateCssDriverProvider.html +0 -691
- package/typedoc/classes/animations_animate-css.AnimateCssProvider.html +0 -712
- package/typedoc/classes/animations_animate-js-driver.AnimateJsDriverProvider.html +0 -536
- package/typedoc/classes/animations_animate-js.AnimateJsProvider.html +0 -795
- package/typedoc/classes/animations_animate-queue.AnimateQueueProvider.html +0 -1137
- package/typedoc/classes/animations_animate-runner.AnimateAsyncRunFactoryProvider.html +0 -473
- package/typedoc/classes/animations_animate-runner.AnimateRunner.html +0 -1589
- package/typedoc/classes/animations_animate-runner.AnimateRunnerFactoryProvider.html +0 -474
- package/typedoc/classes/animations_animate.AnimateProvider.html +0 -1278
- package/typedoc/classes/animations_animation.AnimationProvider.html +0 -749
- package/typedoc/classes/animations_raf-scheduler.RafSchedulerProvider.html +0 -699
- package/typedoc/classes/core_cache_cache-factory.TemplateCacheProvider.html +0 -525
- package/typedoc/classes/core_compile_attributes.Attributes.html +0 -1776
- package/typedoc/classes/core_compile_compile.CompileProvider.html +0 -2137
- package/typedoc/classes/core_controller_controller.ControllerProvider.html +0 -894
- package/typedoc/classes/core_di_internal-injector.InjectorService.html +0 -1336
- package/typedoc/classes/core_di_internal-injector.ProviderInjector.html +0 -1242
- package/typedoc/classes/core_di_ng-module.NgModule.html +0 -1880
- package/typedoc/classes/core_exception-handler.ExceptionHandlerProvider.html +0 -631
- package/typedoc/classes/core_filter_filter.FilterProvider.html +0 -786
- package/typedoc/classes/core_interpolate_interpolate.InterpolateProvider.html +0 -1318
- package/typedoc/classes/core_location_location.Location.html +0 -2128
- package/typedoc/classes/core_location_location.LocationHashbangUrl.html +0 -2502
- package/typedoc/classes/core_location_location.LocationHtml5Url.html +0 -2490
- package/typedoc/classes/core_location_location.LocationProvider.html +0 -1023
- package/typedoc/classes/core_parse_ast_ast.AST.html +0 -2520
- package/typedoc/classes/core_parse_interpreter.ASTInterpreter.html +0 -3314
- package/typedoc/classes/core_parse_lexer_lexer.Lexer.html +0 -1788
- package/typedoc/classes/core_parse_parse.ParseProvider.html +0 -753
- package/typedoc/classes/core_parse_parser_parser.Parser.html +0 -741
- package/typedoc/classes/core_pubsub_pubsub.PubSub.html +0 -1346
- package/typedoc/classes/core_pubsub_pubsub.PubSubProvider.html +0 -576
- package/typedoc/classes/core_sanitize_sanitize-uri.SanitizeUriProvider.html +0 -696
- package/typedoc/classes/core_sce_sce.SceDelegateProvider.html +0 -1219
- package/typedoc/classes/core_sce_sce.SceProvider.html +0 -589
- package/typedoc/classes/core_scope_scope.RootScopeProvider.html +0 -520
- package/typedoc/classes/core_scope_scope.Scope.html +0 -2753
- package/typedoc/classes/core_task-tracker-factory.TaskTracker.html +0 -882
- package/typedoc/classes/core_task-tracker-factory.TaskTrackerFactoryProvider.html +0 -478
- package/typedoc/classes/directive_aria_aria.AriaProvider.html +0 -605
- package/typedoc/classes/directive_form_form.FormController.html +0 -2320
- package/typedoc/classes/directive_model_model.NgModelController.html +0 -4214
- package/typedoc/classes/loader.Angular.html +0 -1634
- package/typedoc/classes/router_common_glob.Glob.html +0 -904
- package/typedoc/classes/router_common_queue.Queue.html +0 -1284
- package/typedoc/classes/router_common_trace.Trace.html +0 -2020
- package/typedoc/classes/router_globals.RouterGlobals.html +0 -824
- package/typedoc/classes/router_params_param-factory.ParamFactory.html +0 -797
- package/typedoc/classes/router_params_param-type.ParamType.html +0 -1168
- package/typedoc/classes/router_params_param-types.ParamTypes.html +0 -770
- package/typedoc/classes/router_params_param.Param.html +0 -1614
- package/typedoc/classes/router_params_state-params.StateParams.html +0 -558
- package/typedoc/classes/router_path_path-node.PathNode.html +0 -1046
- package/typedoc/classes/router_path_path-utils.PathUtils.html +0 -1432
- package/typedoc/classes/router_resolve_resolvable.Resolvable.html +0 -1225
- package/typedoc/classes/router_resolve_resolve-context.ResolveContext.html +0 -1315
- package/typedoc/classes/router_state-provider.StateProvider.html +0 -957
- package/typedoc/classes/router_state_state-builder.StateBuilder.html +0 -1045
- package/typedoc/classes/router_state_state-matcher.StateMatcher.html +0 -742
- package/typedoc/classes/router_state_state-object.StateObject.html +0 -1515
- package/typedoc/classes/router_state_state-queue-manager.StateQueueManager.html +0 -941
- package/typedoc/classes/router_state_state-registry.StateRegistryProvider.html +0 -1712
- package/typedoc/classes/router_state_state-service.StateProvider.html +0 -3038
- package/typedoc/classes/router_state_target-state.TargetState.html +0 -1655
- package/typedoc/classes/router_state_views.ViewConfig.html +0 -1123
- package/typedoc/classes/router_template-factory.TemplateFactoryProvider.html +0 -1689
- package/typedoc/classes/router_transition_hook-builder.HookBuilder.html +0 -823
- package/typedoc/classes/router_transition_hook-registry.RegisteredHook.html +0 -1302
- package/typedoc/classes/router_transition_reject-factory.Rejection.html +0 -1299
- package/typedoc/classes/router_transition_transition-event-type.TransitionEventType.html +0 -995
- package/typedoc/classes/router_transition_transition-hook.TransitionHook.html +0 -1739
- package/typedoc/classes/router_transition_transition-service.TransitionProvider.html +0 -1763
- package/typedoc/classes/router_transition_transition.Transition.html +0 -3942
- package/typedoc/classes/router_url_url-config.UrlConfigProvider.html +0 -1198
- package/typedoc/classes/router_url_url-matcher.UrlMatcher.html +0 -2056
- package/typedoc/classes/router_url_url-rule.BaseUrlRule.html +0 -736
- package/typedoc/classes/router_url_url-rule.UrlRuleFactory.html +0 -1461
- package/typedoc/classes/router_url_url-rules.UrlRules.html +0 -1808
- package/typedoc/classes/router_url_url-service.UrlService.html +0 -2792
- package/typedoc/classes/router_view-scroll.ViewScrollProvider.html +0 -687
- package/typedoc/classes/router_view_view.ViewService.html +0 -1691
- package/typedoc/classes/services_anchor-scroll.AnchorScrollProvider.html +0 -618
- package/typedoc/classes/services_browser.Browser.html +0 -1331
- package/typedoc/classes/services_browser.BrowserProvider.html +0 -564
- package/typedoc/classes/services_http-backend_http-backend.HttpBackendProvider.html +0 -782
- package/typedoc/classes/services_http_http.HttpParamSerializerProvider.html +0 -535
- package/typedoc/classes/services_http_http.HttpProvider.html +0 -1537
- package/typedoc/classes/services_log.LogProvider.html +0 -776
- package/typedoc/classes/services_template-request.TemplateRequestProvider.html +0 -914
- package/typedoc/classes/shared_noderef.NodeRef.html +0 -1529
- package/typedoc/enums/core_parse_ast-type.ASTType.html +0 -903
- package/typedoc/enums/router_common_trace.Category.html +0 -492
- package/typedoc/enums/router_transition_interface.TransitionHookPhase.html +0 -489
- package/typedoc/enums/router_transition_interface.TransitionHookScope.html +0 -390
- package/typedoc/enums/router_transition_reject-factory.RejectType.html +0 -546
- package/typedoc/functions/animations_animate-cache.animateCache.html +0 -818
- package/typedoc/functions/animations_animate-children-directive.__AnimateChildrenDirective.html +0 -412
- package/typedoc/functions/animations_animate-swap.ngAnimateSwapDirective.html +0 -409
- package/typedoc/functions/animations_shared.applyAnimationClassesFactory.html +0 -294
- package/typedoc/functions/animations_shared.applyAnimationFromStyles.html +0 -297
- package/typedoc/functions/animations_shared.applyAnimationStyles.html +0 -296
- package/typedoc/functions/animations_shared.applyAnimationToStyles.html +0 -297
- package/typedoc/functions/animations_shared.applyGeneratedPreparationClasses.html +0 -311
- package/typedoc/functions/animations_shared.applyInlineStyle.html +0 -293
- package/typedoc/functions/animations_shared.assertArg.html +0 -303
- package/typedoc/functions/animations_shared.blockKeyframeAnimations.html +0 -299
- package/typedoc/functions/animations_shared.clearGeneratedClasses.html +0 -297
- package/typedoc/functions/animations_shared.concatWithSpace.html +0 -293
- package/typedoc/functions/animations_shared.extractElementNode.html +0 -292
- package/typedoc/functions/animations_shared.mergeAnimationDetails.html +0 -307
- package/typedoc/functions/animations_shared.mergeClasses.html +0 -293
- package/typedoc/functions/animations_shared.packageStyles.html +0 -299
- package/typedoc/functions/animations_shared.pendClasses.html +0 -303
- package/typedoc/functions/animations_shared.prepareAnimationOptions.html +0 -287
- package/typedoc/functions/animations_shared.removeFromArray.html +0 -293
- package/typedoc/functions/animations_shared.resolveElementClasses.html +0 -328
- package/typedoc/functions/animations_shared.stripCommentsFromElement.html +0 -299
- package/typedoc/functions/core_controller_controller.identifierForController.html +0 -299
- package/typedoc/functions/core_di_injector.annotate.html +0 -311
- package/typedoc/functions/core_di_injector.createInjector.html +0 -323
- package/typedoc/functions/core_location_location.serverBase.html +0 -285
- package/typedoc/functions/core_location_location.stripBaseUrl.html +0 -303
- package/typedoc/functions/core_location_location.stripFile.html +0 -285
- package/typedoc/functions/core_location_location.stripHash.html +0 -285
- package/typedoc/functions/core_parse_interpreter.isAssignable.html +0 -294
- package/typedoc/functions/core_parse_parse.constantWatchDelegate.html +0 -323
- package/typedoc/functions/core_sce_sce.adjustMatcher.html +0 -281
- package/typedoc/functions/core_sce_sce.escapeForRegexp.html +0 -281
- package/typedoc/functions/core_scope_scope.createScope.html +0 -334
- package/typedoc/functions/core_scope_scope.nextId.html +0 -268
- package/typedoc/functions/core_url-utils_url-utils.getBaseUrl.html +0 -274
- package/typedoc/functions/core_url-utils_url-utils.urlIsAllowedOriginFactory.html +0 -314
- package/typedoc/functions/core_url-utils_url-utils.urlIsSameOrigin.html +0 -303
- package/typedoc/functions/core_url-utils_url-utils.urlIsSameOriginAsBaseUrl.html +0 -309
- package/typedoc/functions/core_url-utils_url-utils.urlResolve.html +0 -285
- package/typedoc/functions/core_url-utils_url-utils.urlsAreSameOrigin.html +0 -320
- package/typedoc/functions/directive_aria_aria.ngCheckedAriaDirective.html +0 -400
- package/typedoc/functions/directive_aria_aria.ngClickAriaDirective.html +0 -489
- package/typedoc/functions/directive_aria_aria.ngDblclickAriaDirective.html +0 -428
- package/typedoc/functions/directive_aria_aria.ngDisabledAriaDirective.html +0 -400
- package/typedoc/functions/directive_aria_aria.ngHideAriaDirective.html +0 -399
- package/typedoc/functions/directive_aria_aria.ngMessagesAriaDirective.html +0 -334
- package/typedoc/functions/directive_aria_aria.ngModelAriaDirective.html +0 -512
- package/typedoc/functions/directive_aria_aria.ngReadonlyAriaDirective.html +0 -400
- package/typedoc/functions/directive_aria_aria.ngRequiredAriaDirective.html +0 -400
- package/typedoc/functions/directive_aria_aria.ngShowAriaDirective.html +0 -399
- package/typedoc/functions/directive_aria_aria.ngValueAriaDirective.html +0 -399
- package/typedoc/functions/directive_bind_bind.ngBindDirective.html +0 -279
- package/typedoc/functions/directive_bind_bind.ngBindHtmlDirective.html +0 -408
- package/typedoc/functions/directive_bind_bind.ngBindTemplateDirective.html +0 -283
- package/typedoc/functions/directive_channel_channel.ngChannelDirective.html +0 -312
- package/typedoc/functions/directive_cloak_cloak.ngCloakDirective.html +0 -279
- package/typedoc/functions/directive_controller_controller.ngControllerDirective.html +0 -283
- package/typedoc/functions/directive_events_events.createEventDirective.html +0 -353
- package/typedoc/functions/directive_form_form.setupValidity.html +0 -285
- package/typedoc/functions/directive_if_if.ngIfDirective.html +0 -407
- package/typedoc/functions/directive_include_include.ngIncludeDirective.html +0 -464
- package/typedoc/functions/directive_include_include.ngIncludeFillContentDirective.html +0 -419
- package/typedoc/functions/directive_init_init.ngInitDirective.html +0 -279
- package/typedoc/functions/directive_input_input.badInputChecker.html +0 -332
- package/typedoc/functions/directive_input_input.countDecimals.html +0 -285
- package/typedoc/functions/directive_input_input.createDateInputType.html +0 -392
- package/typedoc/functions/directive_input_input.createDateParser.html +0 -319
- package/typedoc/functions/directive_input_input.hiddenInputBrowserCacheDirective.html +0 -287
- package/typedoc/functions/directive_input_input.inputDirective.html +0 -523
- package/typedoc/functions/directive_input_input.isNumberInteger.html +0 -285
- package/typedoc/functions/directive_input_input.isValidForStep.html +0 -305
- package/typedoc/functions/directive_input_input.ngValueDirective.html +0 -279
- package/typedoc/functions/directive_input_input.numberFormatterParser.html +0 -289
- package/typedoc/functions/directive_input_input.numberInputType.html +0 -354
- package/typedoc/functions/directive_input_input.rangeInputType.html +0 -315
- package/typedoc/functions/directive_input_input.weekParser.html +0 -295
- package/typedoc/functions/directive_messages_messages.ngMessagesDirective.html +0 -464
- package/typedoc/functions/directive_messages_messages.ngMessagesIncludeDirective.html +0 -476
- package/typedoc/functions/directive_model-options_model-options.ngModelOptionsDirective.html +0 -283
- package/typedoc/functions/directive_model_model.ngModelDirective.html +0 -449
- package/typedoc/functions/directive_non-bindable_non-bindable.ngNonBindableDirective.html +0 -283
- package/typedoc/functions/directive_observe_observe.ngObserveDirective.html +0 -317
- package/typedoc/functions/directive_ref_ref.ngRefDirective.html +0 -483
- package/typedoc/functions/directive_repeat_repeat.ngRepeatDirective.html +0 -409
- package/typedoc/functions/directive_script_script.scriptDirective.html +0 -413
- package/typedoc/functions/directive_select_select.optionDirective.html +0 -498
- package/typedoc/functions/directive_select_select.selectDirective.html +0 -279
- package/typedoc/functions/directive_setter_setter.ngSetterDirective.html +0 -431
- package/typedoc/functions/directive_show-hide_show-hide.ngHideDirective.html +0 -405
- package/typedoc/functions/directive_show-hide_show-hide.ngShowDirective.html +0 -405
- package/typedoc/functions/directive_style_style.ngStyleDirective.html +0 -279
- package/typedoc/functions/directive_switch_switch.ngSwitchDefaultDirective.html +0 -283
- package/typedoc/functions/directive_switch_switch.ngSwitchDirective.html +0 -405
- package/typedoc/functions/directive_switch_switch.ngSwitchWhenDirective.html +0 -283
- package/typedoc/functions/filters_filter.filterFilter.html +0 -275
- package/typedoc/functions/filters_filters.formatNumber.html +0 -435
- package/typedoc/functions/filters_filters.jsonFilter.html +0 -277
- package/typedoc/functions/filters_limit-to.limitToFilter.html +0 -277
- package/typedoc/functions/filters_order-by.orderByFilter.html +0 -403
- package/typedoc/functions/public.publishExternalAPI.html +0 -305
- package/typedoc/functions/router_common_glob.hasGlobs.html +0 -292
- package/typedoc/functions/router_directives_state-directives._StateRefActiveDirective.html +0 -468
- package/typedoc/functions/router_directives_state-directives._StateRefDirective.html +0 -493
- package/typedoc/functions/router_directives_state-directives._StateRefDynamicDirective.html +0 -439
- package/typedoc/functions/router_directives_view-directive._ViewDirectiveFill.html +0 -477
- package/typedoc/functions/router_hooks_core-resolvables.registerAddCoreResolvables.html +0 -292
- package/typedoc/functions/router_hooks_core-resolvables.treeChangesCleanup.html +0 -288
- package/typedoc/functions/router_hooks_ignored-transition.registerIgnoredTransitionHook.html +0 -292
- package/typedoc/functions/router_hooks_invalid-transition.registerInvalidTransitionHook.html +0 -292
- package/typedoc/functions/router_hooks_lazy-load.lazyLoadState.html +0 -318
- package/typedoc/functions/router_hooks_lazy-load.registerLazyLoadHook.html +0 -381
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnEnterHook.html +0 -289
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnExitHook.html +0 -289
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnRetainHook.html +0 -289
- package/typedoc/functions/router_hooks_redirect-to.registerRedirectToHook.html +0 -300
- package/typedoc/functions/router_hooks_resolve.registerEagerResolvePath.html +0 -290
- package/typedoc/functions/router_hooks_resolve.registerLazyResolveState.html +0 -290
- package/typedoc/functions/router_hooks_resolve.registerResolveRemaining.html +0 -290
- package/typedoc/functions/router_hooks_update-globals.registerUpdateGlobalState.html +0 -292
- package/typedoc/functions/router_hooks_url.registerUpdateUrl.html +0 -309
- package/typedoc/functions/router_hooks_views.registerActivateViews.html +0 -300
- package/typedoc/functions/router_hooks_views.registerLoadEnteringViews.html +0 -292
- package/typedoc/functions/router_path_path-utils.makeTargetState.html +0 -324
- package/typedoc/functions/router_state-filters._IncludedByStateFilter.html +0 -437
- package/typedoc/functions/router_state-filters._IsStateFilter.html +0 -433
- package/typedoc/functions/router_state_state-builder.resolvablesBuilder.html +0 -347
- package/typedoc/functions/router_state_state-registry.getLocals.html +0 -285
- package/typedoc/functions/router_state_views.getViewConfigFactory.html +0 -300
- package/typedoc/functions/router_state_views.ng1ViewsBuilder.html +0 -304
- package/typedoc/functions/router_transition_hook-registry.makeEvent.html +0 -343
- package/typedoc/functions/router_transition_hook-registry.matchState.html +0 -334
- package/typedoc/functions/services_browser.trimEmptyHash.html +0 -291
- package/typedoc/functions/services_cookie-reader.getCookies.html +0 -272
- package/typedoc/functions/services_http-backend_http-backend.createHttpBackend.html +0 -406
- package/typedoc/functions/services_http_http.defaultHttpResponseTransform.html +0 -301
- package/typedoc/functions/shared_common._removeFrom.html +0 -291
- package/typedoc/functions/shared_common.allTrueR.html +0 -314
- package/typedoc/functions/shared_common.ancestors.html +0 -309
- package/typedoc/functions/shared_common.anyTrueR.html +0 -317
- package/typedoc/functions/shared_common.applyPairs.html +0 -322
- package/typedoc/functions/shared_common.arrayTuples.html +0 -313
- package/typedoc/functions/shared_common.assertFn.html +0 -306
- package/typedoc/functions/shared_common.copy.html +0 -292
- package/typedoc/functions/shared_common.createProxyFunctions.html +0 -430
- package/typedoc/functions/shared_common.defaults.html +0 -304
- package/typedoc/functions/shared_common.deregAll.html +0 -288
- package/typedoc/functions/shared_common.equals.html +0 -291
- package/typedoc/functions/shared_common.filter.html +0 -298
- package/typedoc/functions/shared_common.find.html +0 -295
- package/typedoc/functions/shared_common.flatten.html +0 -301
- package/typedoc/functions/shared_common.flattenR.html +0 -311
- package/typedoc/functions/shared_common.inherit.html +0 -317
- package/typedoc/functions/shared_common.map.html +0 -304
- package/typedoc/functions/shared_common.omit.html +0 -322
- package/typedoc/functions/shared_common.pairs.html +0 -305
- package/typedoc/functions/shared_common.pick.html +0 -334
- package/typedoc/functions/shared_common.pushR.html +0 -296
- package/typedoc/functions/shared_common.silenceUncaughtInPromise.html +0 -285
- package/typedoc/functions/shared_common.silentRejection.html +0 -281
- package/typedoc/functions/shared_common.tail.html +0 -282
- package/typedoc/functions/shared_common.uniqR.html +0 -292
- package/typedoc/functions/shared_common.unnest.html +0 -303
- package/typedoc/functions/shared_common.unnestR.html +0 -311
- package/typedoc/functions/shared_dom.appendNodesToElement.html +0 -316
- package/typedoc/functions/shared_dom.buildFragment.html +0 -284
- package/typedoc/functions/shared_dom.cleanElementData.html +0 -302
- package/typedoc/functions/shared_dom.createElementFromHTML.html +0 -299
- package/typedoc/functions/shared_dom.createNodelistFromHTML.html +0 -296
- package/typedoc/functions/shared_dom.dealoc.html +0 -295
- package/typedoc/functions/shared_dom.deleteCacheData.html +0 -306
- package/typedoc/functions/shared_dom.domInsert.html +0 -301
- package/typedoc/functions/shared_dom.emptyElement.html +0 -289
- package/typedoc/functions/shared_dom.getBlockNodes.html +0 -298
- package/typedoc/functions/shared_dom.getBooleanAttrName.html +0 -316
- package/typedoc/functions/shared_dom.getCacheData.html +0 -313
- package/typedoc/functions/shared_dom.getController.html +0 -318
- package/typedoc/functions/shared_dom.getExpando.html +0 -333
- package/typedoc/functions/shared_dom.getInheritedData.html +0 -294
- package/typedoc/functions/shared_dom.getInjector.html +0 -294
- package/typedoc/functions/shared_dom.getIsolateScope.html +0 -295
- package/typedoc/functions/shared_dom.getOrSetCacheData.html +0 -330
- package/typedoc/functions/shared_dom.getScope.html +0 -295
- package/typedoc/functions/shared_dom.isRoot.html +0 -286
- package/typedoc/functions/shared_dom.isTextNode.html +0 -290
- package/typedoc/functions/shared_dom.kebabToCamel.html +0 -289
- package/typedoc/functions/shared_dom.parseHtml.html +0 -295
- package/typedoc/functions/shared_dom.removeElement.html +0 -297
- package/typedoc/functions/shared_dom.removeElementData.html +0 -305
- package/typedoc/functions/shared_dom.setCacheData.html +0 -328
- package/typedoc/functions/shared_dom.setInheritedData.html +0 -312
- package/typedoc/functions/shared_dom.setIsolateScope.html +0 -310
- package/typedoc/functions/shared_dom.setScope.html +0 -318
- package/typedoc/functions/shared_dom.snakeToCamel.html +0 -286
- package/typedoc/functions/shared_dom.startingTag.html +0 -301
- package/typedoc/functions/shared_hof.all.html +0 -305
- package/typedoc/functions/shared_hof.compose.html +0 -306
- package/typedoc/functions/shared_hof.curry.html +0 -319
- package/typedoc/functions/shared_hof.is.html +0 -297
- package/typedoc/functions/shared_hof.or.html +0 -312
- package/typedoc/functions/shared_hof.parse.html +0 -292
- package/typedoc/functions/shared_hof.pattern.html +0 -343
- package/typedoc/functions/shared_hof.pipe.html +0 -289
- package/typedoc/functions/shared_hof.val.html +0 -288
- package/typedoc/functions/shared_predicates.isInjectable.html +0 -294
- package/typedoc/functions/shared_predicates.isPromise.html +0 -292
- package/typedoc/functions/shared_strings.beforeAfterSubstr.html +0 -302
- package/typedoc/functions/shared_strings.fnToString.html +0 -281
- package/typedoc/functions/shared_strings.functionToString.html +0 -281
- package/typedoc/functions/shared_strings.joinNeighborsR.html +0 -327
- package/typedoc/functions/shared_strings.kebobString.html +0 -281
- package/typedoc/functions/shared_strings.maxLength.html +0 -309
- package/typedoc/functions/shared_strings.padString.html +0 -312
- package/typedoc/functions/shared_strings.splitOnDelim.html +0 -328
- package/typedoc/functions/shared_strings.stringify.html +0 -281
- package/typedoc/functions/shared_strings.stripLastPathElement.html +0 -284
- package/typedoc/functions/shared_strings.trimHashVal.html +0 -281
- package/typedoc/functions/shared_test-utils.bootstrap.html +0 -297
- package/typedoc/functions/shared_test-utils.browserTrigger.html +0 -307
- package/typedoc/functions/shared_test-utils.wait.html +0 -301
- package/typedoc/functions/shared_utils.addDateMinutes.html +0 -291
- package/typedoc/functions/shared_utils.arrayRemove.html +0 -344
- package/typedoc/functions/shared_utils.assert.html +0 -300
- package/typedoc/functions/shared_utils.assertArg.html +0 -305
- package/typedoc/functions/shared_utils.assertArgFn.html +0 -302
- package/typedoc/functions/shared_utils.assertNotHasOwnProperty.html +0 -310
- package/typedoc/functions/shared_utils.baseExtend.html +0 -301
- package/typedoc/functions/shared_utils.bind.html +0 -333
- package/typedoc/functions/shared_utils.concat.html +0 -301
- package/typedoc/functions/shared_utils.convertTimezoneToLocal.html +0 -305
- package/typedoc/functions/shared_utils.csp.html +0 -263
- package/typedoc/functions/shared_utils.directiveNormalize.html +0 -295
- package/typedoc/functions/shared_utils.encodeUriQuery.html +0 -314
- package/typedoc/functions/shared_utils.encodeUriSegment.html +0 -302
- package/typedoc/functions/shared_utils.equals.html +0 -357
- package/typedoc/functions/shared_utils.errorHandlingConfig.html +0 -313
- package/typedoc/functions/shared_utils.extend.html +0 -323
- package/typedoc/functions/shared_utils.fromJson.html +0 -290
- package/typedoc/functions/shared_utils.getNgAttribute.html +0 -291
- package/typedoc/functions/shared_utils.getNodeName.html +0 -292
- package/typedoc/functions/shared_utils.hasAnimate.html +0 -286
- package/typedoc/functions/shared_utils.hasCustomToString.html +0 -281
- package/typedoc/functions/shared_utils.hasOwn.html +0 -339
- package/typedoc/functions/shared_utils.hashKey.html +0 -296
- package/typedoc/functions/shared_utils.includes.html +0 -291
- package/typedoc/functions/shared_utils.inherit.html +0 -294
- package/typedoc/functions/shared_utils.isArrayBuffer.html +0 -283
- package/typedoc/functions/shared_utils.isArrayLike.html +0 -290
- package/typedoc/functions/shared_utils.isBlankObject.html +0 -295
- package/typedoc/functions/shared_utils.isBlob.html +0 -283
- package/typedoc/functions/shared_utils.isBoolean.html +0 -283
- package/typedoc/functions/shared_utils.isDate.html +0 -281
- package/typedoc/functions/shared_utils.isDefined.html +0 -290
- package/typedoc/functions/shared_utils.isElement.html +0 -281
- package/typedoc/functions/shared_utils.isError.html +0 -296
- package/typedoc/functions/shared_utils.isFile.html +0 -283
- package/typedoc/functions/shared_utils.isFormData.html +0 -283
- package/typedoc/functions/shared_utils.isFunction.html +0 -290
- package/typedoc/functions/shared_utils.isNull.html +0 -290
- package/typedoc/functions/shared_utils.isNullOrUndefined.html +0 -290
- package/typedoc/functions/shared_utils.isNumber.html +0 -303
- package/typedoc/functions/shared_utils.isNumberNaN.html +0 -283
- package/typedoc/functions/shared_utils.isObject.html +0 -298
- package/typedoc/functions/shared_utils.isObjectEmpty.html +0 -283
- package/typedoc/functions/shared_utils.isPromiseLike.html +0 -283
- package/typedoc/functions/shared_utils.isProxy.html +0 -283
- package/typedoc/functions/shared_utils.isRegExp.html +0 -290
- package/typedoc/functions/shared_utils.isScope.html +0 -283
- package/typedoc/functions/shared_utils.isString.html +0 -290
- package/typedoc/functions/shared_utils.isTypedArray.html +0 -283
- package/typedoc/functions/shared_utils.isUndefined.html +0 -290
- package/typedoc/functions/shared_utils.isValidObjectMaxDepth.html +0 -287
- package/typedoc/functions/shared_utils.isWindow.html +0 -290
- package/typedoc/functions/shared_utils.lowercase.html +0 -302
- package/typedoc/functions/shared_utils.mergeClasses.html +0 -291
- package/typedoc/functions/shared_utils.minErr.html +0 -341
- package/typedoc/functions/shared_utils.nextUid.html +0 -268
- package/typedoc/functions/shared_utils.parseKeyValue.html +0 -288
- package/typedoc/functions/shared_utils.setHashKey.html +0 -303
- package/typedoc/functions/shared_utils.shallowCopy.html +0 -299
- package/typedoc/functions/shared_utils.simpleCompare.html +0 -291
- package/typedoc/functions/shared_utils.sliceArgs.html +0 -291
- package/typedoc/functions/shared_utils.snakeCase.html +0 -291
- package/typedoc/functions/shared_utils.stringify.html +0 -281
- package/typedoc/functions/shared_utils.timezoneToOffset.html +0 -291
- package/typedoc/functions/shared_utils.toDebugString.html +0 -281
- package/typedoc/functions/shared_utils.toInt.html +0 -280
- package/typedoc/functions/shared_utils.toJson.html +0 -350
- package/typedoc/functions/shared_utils.toKeyValue.html +0 -281
- package/typedoc/functions/shared_utils.trim.html +0 -280
- package/typedoc/functions/shared_utils.tryDecodeURIComponent.html +0 -300
- package/typedoc/functions/shared_utils.uppercase.html +0 -302
- package/typedoc/hierarchy.html +0 -274
- package/typedoc/index.html +0 -668
- package/typedoc/interfaces/animations_animate.AnimationOptions.html +0 -506
- package/typedoc/interfaces/animations_raf-scheduler.ServiceProvider.html +0 -390
- package/typedoc/interfaces/core_cache_cache.ExpandoStore.html +0 -448
- package/typedoc/interfaces/core_compile_compile.LinkFnMapping.html +0 -466
- package/typedoc/interfaces/core_compile_compile.NodeLinkFnCtx.html +0 -596
- package/typedoc/interfaces/core_compile_compile.SimpleChange.html +0 -412
- package/typedoc/interfaces/core_location_location.DefaultPorts.html +0 -444
- package/typedoc/interfaces/core_location_location.Html5Mode.html +0 -491
- package/typedoc/interfaces/core_parse_ast_ast.Token.html +0 -598
- package/typedoc/interfaces/core_parse_interface.CompiledExpressionHandlerMap.html +0 -570
- package/typedoc/interfaces/core_parse_interface.CompiledExpressionProps.html +0 -959
- package/typedoc/interfaces/core_parse_lexer_lexer.LexerOptions.html +0 -466
- package/typedoc/interfaces/core_parse_parser_parser.ParsedAST.html +0 -378
- package/typedoc/interfaces/core_sanitize_interface.SanitizerFn.html +0 -305
- package/typedoc/interfaces/core_scope_scope.AsyncQueueTask.html +0 -455
- package/typedoc/interfaces/core_scope_scope.Listener.html +0 -688
- package/typedoc/interfaces/directive_model-options_model-options.ModelOptionsConfig.html +0 -570
- package/typedoc/interfaces/interface.ChangesObject.html +0 -445
- package/typedoc/interfaces/interface.ComponentOptions.html +0 -712
- package/typedoc/interfaces/interface.Controller.html +0 -582
- package/typedoc/interfaces/interface.Directive.html +0 -1250
- package/typedoc/interfaces/interface.DirectivePrePost.html +0 -423
- package/typedoc/interfaces/interface.NgModelController.html +0 -1362
- package/typedoc/interfaces/interface.NgModelOptions.html +0 -660
- package/typedoc/interfaces/interface.Provider.html +0 -1056
- package/typedoc/interfaces/interface.TranscludeFunctionObject.html +0 -723
- package/typedoc/interfaces/loader.AngularBootstrapConfig.html +0 -374
- package/typedoc/interfaces/router_params_interface.ParamDeclaration.html +0 -1211
- package/typedoc/interfaces/router_params_interface.ParamTypeDefinition.html +0 -1273
- package/typedoc/interfaces/router_params_interface.RawParams.html +0 -295
- package/typedoc/interfaces/router_params_interface.Replace.html +0 -429
- package/typedoc/interfaces/router_resolve_interface.CustomAsyncPolicy.html +0 -291
- package/typedoc/interfaces/router_resolve_interface.ProviderLike.html +0 -580
- package/typedoc/interfaces/router_resolve_interface.ResolvableLiteral.html +0 -601
- package/typedoc/interfaces/router_resolve_interface.ResolvePolicy.html +0 -638
- package/typedoc/interfaces/router_state_interface.HrefOptions.html +0 -530
- package/typedoc/interfaces/router_state_interface.LazyLoadResult.html +0 -390
- package/typedoc/interfaces/router_state_interface.StateDeclaration.html +0 -2461
- package/typedoc/interfaces/router_state_interface.TargetStateDef.html +0 -468
- package/typedoc/interfaces/router_state_interface.TransitionPromise.html +0 -1192
- package/typedoc/interfaces/router_state_interface.ViewDeclaration.html +0 -1499
- package/typedoc/interfaces/router_template-factory.BindingTuple.html +0 -406
- package/typedoc/interfaces/router_transition_interface.HookMatchCriteria.html +0 -719
- package/typedoc/interfaces/router_transition_interface.HookRegOptions.html +0 -482
- package/typedoc/interfaces/router_transition_interface.IHookRegistry.html +0 -2969
- package/typedoc/interfaces/router_transition_interface.IMatchingNodes.html +0 -594
- package/typedoc/interfaces/router_transition_interface.PathType.html +0 -411
- package/typedoc/interfaces/router_transition_interface.PathTypes.html +0 -588
- package/typedoc/interfaces/router_transition_interface.RegisteredHooks.html +0 -266
- package/typedoc/interfaces/router_transition_interface.TransitionCreateHookFn.html +0 -316
- package/typedoc/interfaces/router_transition_interface.TransitionHookFn.html +0 -352
- package/typedoc/interfaces/router_transition_interface.TransitionHookOptions.html +0 -627
- package/typedoc/interfaces/router_transition_interface.TransitionOptions.html +0 -1096
- package/typedoc/interfaces/router_transition_interface.TransitionStateHookFn.html +0 -374
- package/typedoc/interfaces/router_transition_interface.TreeChanges.html +0 -769
- package/typedoc/interfaces/router_view_interface.ActiveUIView.html +0 -620
- package/typedoc/interfaces/router_view_interface.ViewConfig.html +0 -651
- package/typedoc/interfaces/router_view_interface.ViewContext.html +0 -419
- package/typedoc/interfaces/services_anchor-scroll.AnchorScrollObject.html +0 -379
- package/typedoc/interfaces/services_log.LogService.html +0 -566
- package/typedoc/interfaces/shared_interface.TypedMap.html +0 -268
- package/typedoc/interfaces/shared_utils.ErrorHandlingConfig.html +0 -435
- package/typedoc/media/CONTRIBUTING.md +0 -248
- package/typedoc/media/DEVELOPERS.md +0 -500
- package/typedoc/modules/animations_animate-cache.html +0 -383
- package/typedoc/modules/animations_animate-children-directive.html +0 -326
- package/typedoc/modules/animations_animate-css-driver.html +0 -324
- package/typedoc/modules/animations_animate-css.html +0 -320
- package/typedoc/modules/animations_animate-js-driver.html +0 -324
- package/typedoc/modules/animations_animate-js.html +0 -320
- package/typedoc/modules/animations_animate-queue.html +0 -320
- package/typedoc/modules/animations_animate-runner.html +0 -382
- package/typedoc/modules/animations_animate-swap.html +0 -320
- package/typedoc/modules/animations_animate.html +0 -447
- package/typedoc/modules/animations_animation.html +0 -320
- package/typedoc/modules/animations_interface.html +0 -322
- package/typedoc/modules/animations_raf-scheduler.html +0 -446
- package/typedoc/modules/animations_shared.html +0 -1535
- package/typedoc/modules/core_cache_cache-factory.html +0 -385
- package/typedoc/modules/core_cache_cache.html +0 -457
- package/typedoc/modules/core_compile_attributes.html +0 -319
- package/typedoc/modules/core_compile_compile.html +0 -755
- package/typedoc/modules/core_controller_controller.html +0 -385
- package/typedoc/modules/core_di_injector.html +0 -346
- package/typedoc/modules/core_di_internal-injector.html +0 -350
- package/typedoc/modules/core_di_ng-module.html +0 -490
- package/typedoc/modules/core_error-handler.html +0 -322
- package/typedoc/modules/core_exception-handler.html +0 -448
- package/typedoc/modules/core_filter_filter.html +0 -319
- package/typedoc/modules/core_interpolate_interpolate.html +0 -322
- package/typedoc/modules/core_location_location.html +0 -636
- package/typedoc/modules/core_parse_ast-type.html +0 -321
- package/typedoc/modules/core_parse_ast_ast-node.html +0 -322
- package/typedoc/modules/core_parse_ast_ast.html +0 -436
- package/typedoc/modules/core_parse_interface.html +0 -470
- package/typedoc/modules/core_parse_interpreter.html +0 -537
- package/typedoc/modules/core_parse_lexer_lexer.html +0 -440
- package/typedoc/modules/core_parse_lexer_token.html +0 -319
- package/typedoc/modules/core_parse_parse.html +0 -382
- package/typedoc/modules/core_parse_parser_parser.html +0 -381
- package/typedoc/modules/core_pubsub_pubsub.html +0 -471
- package/typedoc/modules/core_sanitize_interface.html +0 -320
- package/typedoc/modules/core_sanitize_sanitize-uri.html +0 -386
- package/typedoc/modules/core_sce_sce.html +0 -560
- package/typedoc/modules/core_scope_scope.html +0 -700
- package/typedoc/modules/core_task-tracker-factory.html +0 -481
- package/typedoc/modules/core_url-utils_url-utils.html +0 -527
- package/typedoc/modules/directive_aria_aria.html +0 -672
- package/typedoc/modules/directive_attrs_attrs.html +0 -350
- package/typedoc/modules/directive_bind_bind.html +0 -377
- package/typedoc/modules/directive_channel_channel.html +0 -322
- package/typedoc/modules/directive_class_class.html +0 -376
- package/typedoc/modules/directive_cloak_cloak.html +0 -320
- package/typedoc/modules/directive_controller_controller.html +0 -322
- package/typedoc/modules/directive_events_events.html +0 -383
- package/typedoc/modules/directive_form_form.html +0 -524
- package/typedoc/modules/directive_if_if.html +0 -319
- package/typedoc/modules/directive_include_include.html +0 -352
- package/typedoc/modules/directive_init_init.html +0 -319
- package/typedoc/modules/directive_input_input.html +0 -804
- package/typedoc/modules/directive_messages_messages.html +0 -473
- package/typedoc/modules/directive_model-options_model-options.html +0 -452
- package/typedoc/modules/directive_model_model.html +0 -445
- package/typedoc/modules/directive_non-bindable_non-bindable.html +0 -324
- package/typedoc/modules/directive_observe_observe.html +0 -322
- package/typedoc/modules/directive_options_options.html +0 -322
- package/typedoc/modules/directive_ref_ref.html +0 -319
- package/typedoc/modules/directive_repeat_repeat.html +0 -320
- package/typedoc/modules/directive_script_script.html +0 -320
- package/typedoc/modules/directive_select_select.html +0 -348
- package/typedoc/modules/directive_setter_setter.html +0 -320
- package/typedoc/modules/directive_show-hide_show-hide.html +0 -350
- package/typedoc/modules/directive_style_style.html +0 -320
- package/typedoc/modules/directive_switch_switch.html +0 -378
- package/typedoc/modules/directive_transclude_transclude.html +0 -322
- package/typedoc/modules/directive_validators_validators.html +0 -406
- package/typedoc/modules/filters_filter.html +0 -319
- package/typedoc/modules/filters_filters.html +0 -346
- package/typedoc/modules/filters_limit-to.html +0 -319
- package/typedoc/modules/filters_order-by.html +0 -319
- package/typedoc/modules/index.html +0 -241
- package/typedoc/modules/injection-tokens.html +0 -319
- package/typedoc/modules/interface.html +0 -1010
- package/typedoc/modules/loader.html +0 -380
- package/typedoc/modules/public.html +0 -380
- package/typedoc/modules/router_common_glob.html +0 -377
- package/typedoc/modules/router_common_queue.html +0 -315
- package/typedoc/modules/router_common_trace.html +0 -522
- package/typedoc/modules/router_directives_state-directives.html +0 -384
- package/typedoc/modules/router_directives_view-directive.html +0 -387
- package/typedoc/modules/router_globals.html +0 -383
- package/typedoc/modules/router_hooks_core-resolvables.html +0 -352
- package/typedoc/modules/router_hooks_ignored-transition.html +0 -324
- package/typedoc/modules/router_hooks_invalid-transition.html +0 -324
- package/typedoc/modules/router_hooks_lazy-load.html +0 -348
- package/typedoc/modules/router_hooks_on-enter-exit-retain.html +0 -380
- package/typedoc/modules/router_hooks_redirect-to.html +0 -320
- package/typedoc/modules/router_hooks_resolve.html +0 -443
- package/typedoc/modules/router_hooks_update-globals.html +0 -324
- package/typedoc/modules/router_hooks_url.html +0 -319
- package/typedoc/modules/router_hooks_views.html +0 -350
- package/typedoc/modules/router_params_interface.html +0 -402
- package/typedoc/modules/router_params_param-factory.html +0 -322
- package/typedoc/modules/router_params_param-type.html +0 -319
- package/typedoc/modules/router_params_param-types.html +0 -321
- package/typedoc/modules/router_params_param.html +0 -377
- package/typedoc/modules/router_params_state-params.html +0 -322
- package/typedoc/modules/router_path_path-node.html +0 -319
- package/typedoc/modules/router_path_path-utils.html +0 -382
- package/typedoc/modules/router_resolve_interface.html +0 -521
- package/typedoc/modules/router_resolve_resolvable.html +0 -384
- package/typedoc/modules/router_resolve_resolve-context.html +0 -385
- package/typedoc/modules/router_state-filters.html +0 -349
- package/typedoc/modules/router_state-provider.html +0 -319
- package/typedoc/modules/router_state_interface.html +0 -606
- package/typedoc/modules/router_state_state-builder.html +0 -385
- package/typedoc/modules/router_state_state-matcher.html +0 -322
- package/typedoc/modules/router_state_state-object.html +0 -385
- package/typedoc/modules/router_state_state-queue-manager.html +0 -324
- package/typedoc/modules/router_state_state-registry.html +0 -449
- package/typedoc/modules/router_state_state-service.html +0 -322
- package/typedoc/modules/router_state_target-state.html +0 -321
- package/typedoc/modules/router_state_views.html +0 -409
- package/typedoc/modules/router_template-factory.html +0 -383
- package/typedoc/modules/router_transition_hook-builder.html +0 -322
- package/typedoc/modules/router_transition_hook-registry.html +0 -413
- package/typedoc/modules/router_transition_interface.html +0 -927
- package/typedoc/modules/router_transition_reject-factory.html +0 -390
- package/typedoc/modules/router_transition_transition-event-type.html +0 -324
- package/typedoc/modules/router_transition_transition-hook.html +0 -324
- package/typedoc/modules/router_transition_transition-service.html +0 -387
- package/typedoc/modules/router_transition_transition.html +0 -386
- package/typedoc/modules/router_url_url-config.html +0 -320
- package/typedoc/modules/router_url_url-matcher.html +0 -319
- package/typedoc/modules/router_url_url-rule.html +0 -346
- package/typedoc/modules/router_url_url-rules.html +0 -319
- package/typedoc/modules/router_url_url-service.html +0 -319
- package/typedoc/modules/router_view-scroll.html +0 -319
- package/typedoc/modules/router_view_interface.html +0 -373
- package/typedoc/modules/router_view_view.html +0 -319
- package/typedoc/modules/services_anchor-scroll.html +0 -477
- package/typedoc/modules/services_browser.html +0 -472
- package/typedoc/modules/services_cookie-reader.html +0 -319
- package/typedoc/modules/services_http-backend_http-backend.html +0 -387
- package/typedoc/modules/services_http_http.html +0 -414
- package/typedoc/modules/services_log.html +0 -507
- package/typedoc/modules/services_template-request.html +0 -322
- package/typedoc/modules/shared_common.html +0 -1145
- package/typedoc/modules/shared_constants.html +0 -590
- package/typedoc/modules/shared_dom.html +0 -1185
- package/typedoc/modules/shared_hof.html +0 -566
- package/typedoc/modules/shared_interface.html +0 -436
- package/typedoc/modules/shared_noderef.html +0 -318
- package/typedoc/modules/shared_predicates.html +0 -346
- package/typedoc/modules/shared_strings.html +0 -732
- package/typedoc/modules/shared_test-utils.html +0 -369
- package/typedoc/modules/shared_utils.html +0 -2343
- package/typedoc/modules.html +0 -4406
- package/typedoc/types/animations_animate.AnimationMethod.html +0 -265
- package/typedoc/types/animations_interface.RafScheduler.html +0 -602
- package/typedoc/types/core_cache_cache-factory.TemplateCache.html +0 -257
- package/typedoc/types/core_compile_compile.ApplyDirectivesToNodeFn.html +0 -251
- package/typedoc/types/core_compile_compile.BoundTranscludeFn.html +0 -279
- package/typedoc/types/core_compile_compile.CompileFn.html +0 -445
- package/typedoc/types/core_compile_compile.CompileNodesFn.html +0 -252
- package/typedoc/types/core_compile_compile.CompositeLinkFn.html +0 -358
- package/typedoc/types/core_compile_compile.NodeLinkFn.html +0 -285
- package/typedoc/types/core_compile_compile.PublicLinkFn.html +0 -381
- package/typedoc/types/core_compile_compile.TranscludeFn.html +0 -364
- package/typedoc/types/core_error-handler.ErrorHandler.html +0 -321
- package/typedoc/types/core_exception-handler.LogService.html +0 -256
- package/typedoc/types/core_parse_ast_ast-node.ASTNode.html +0 -1457
- package/typedoc/types/core_parse_interface.CompiledExpression.html +0 -268
- package/typedoc/types/core_parse_interface.CompiledExpressionFunction.html +0 -347
- package/typedoc/types/core_parse_interface.ParseService.html +0 -474
- package/typedoc/types/core_parse_interpreter.DecoratedASTNode.html +0 -279
- package/typedoc/types/core_scope_scope.ListenerFunction.html +0 -313
- package/typedoc/types/core_task-tracker-factory.AnnotatedFactory.html +0 -278
- package/typedoc/types/core_url-utils_url-utils.HttpProtocol.html +0 -254
- package/typedoc/types/interface.CloneAttachFunction.html +0 -318
- package/typedoc/types/interface.ControllerConstructor.html +0 -315
- package/typedoc/types/interface.DirectiveCompileFn.html +0 -406
- package/typedoc/types/interface.DirectiveController.html +0 -274
- package/typedoc/types/interface.DirectiveFactory.html +0 -328
- package/typedoc/types/interface.DirectiveLinkFn.html +0 -420
- package/typedoc/types/interface.Expression.html +0 -259
- package/typedoc/types/interface.FilterFactory.html +0 -310
- package/typedoc/types/interface.FilterFn.html +0 -314
- package/typedoc/types/interface.Injectable.html +0 -257
- package/typedoc/types/interface.InjectableFactory.html +0 -309
- package/typedoc/types/interface.OnChangesObject.html +0 -259
- package/typedoc/types/interface.TController.html +0 -261
- package/typedoc/types/router_resolve_interface.PolicyAsync.html +0 -259
- package/typedoc/types/router_resolve_interface.PolicyWhen.html +0 -253
- package/typedoc/types/router_state_interface.RedirectToResult.html +0 -287
- package/typedoc/types/router_state_interface.ResolveTypes.html +0 -267
- package/typedoc/types/router_state_interface.StateOrName.html +0 -263
- package/typedoc/types/router_state_interface._StateDeclaration.html +0 -274
- package/typedoc/types/router_transition_interface.HookFn.html +0 -267
- package/typedoc/types/router_transition_interface.HookMatchCriterion.html +0 -270
- package/typedoc/types/router_transition_interface.HookResult.html +0 -310
- package/typedoc/types/router_transition_interface.IHookRegistration.html +0 -362
- package/typedoc/types/router_transition_interface.IStateMatch.html +0 -272
- package/typedoc/types/services_anchor-scroll.AnchorScrollFunction.html +0 -292
- package/typedoc/types/services_anchor-scroll.AnchorScrollService.html +0 -262
- package/typedoc/types/services_browser.UrlChangeListener.html +0 -250
- package/typedoc/types/services_log.LogCall.html +0 -294
- package/typedoc/types/shared_interface.Mapper.html +0 -337
- package/typedoc/types/shared_interface.Predicate.html +0 -305
- package/typedoc/types/shared_interface.PredicateBinary.html +0 -330
- package/typedoc/variables/animations_shared.ACTIVE_CLASS_SUFFIX.html +0 -251
- package/typedoc/variables/animations_shared.ADD_CLASS_SUFFIX.html +0 -249
- package/typedoc/variables/animations_shared.ANIMATIONEND_EVENT.html +0 -249
- package/typedoc/variables/animations_shared.ANIMATION_DELAY_PROP.html +0 -252
- package/typedoc/variables/animations_shared.ANIMATION_DURATION_PROP.html +0 -252
- package/typedoc/variables/animations_shared.ANIMATION_ITERATION_COUNT_KEY.html +0 -255
- package/typedoc/variables/animations_shared.ANIMATION_PLAYSTATE_KEY.html +0 -251
- package/typedoc/variables/animations_shared.ANIMATION_PROP.html +0 -249
- package/typedoc/variables/animations_shared.CSS_PREFIX.html +0 -250
- package/typedoc/variables/animations_shared.DELAY_KEY.html +0 -249
- package/typedoc/variables/animations_shared.DURATION_KEY.html +0 -249
- package/typedoc/variables/animations_shared.EVENT_CLASS_PREFIX.html +0 -249
- package/typedoc/variables/animations_shared.NG_ANIMATE_CHILDREN_DATA.html +0 -253
- package/typedoc/variables/animations_shared.NG_ANIMATE_CLASSNAME.html +0 -251
- package/typedoc/variables/animations_shared.PREPARE_CLASS_SUFFIX.html +0 -251
- package/typedoc/variables/animations_shared.PROPERTY_KEY.html +0 -250
- package/typedoc/variables/animations_shared.REMOVE_CLASS_SUFFIX.html +0 -251
- package/typedoc/variables/animations_shared.SAFE_FAST_FORWARD_DURATION_VALUE.html +0 -257
- package/typedoc/variables/animations_shared.TIMING_KEY.html +0 -249
- package/typedoc/variables/animations_shared.TRANSITIONEND_EVENT.html +0 -249
- package/typedoc/variables/animations_shared.TRANSITION_DELAY_PROP.html +0 -252
- package/typedoc/variables/animations_shared.TRANSITION_DURATION_PROP.html +0 -252
- package/typedoc/variables/animations_shared.TRANSITION_PROP.html +0 -249
- package/typedoc/variables/animations_shared.ngMinErr.html +0 -307
- package/typedoc/variables/core_cache_cache.Cache.html +0 -267
- package/typedoc/variables/core_cache_cache.EXPANDO.html +0 -250
- package/typedoc/variables/core_cache_cache.ISOLATE_SCOPE_KEY.html +0 -253
- package/typedoc/variables/core_cache_cache.SCOPE_KEY.html +0 -253
- package/typedoc/variables/core_compile_compile.DirectiveSuffix.html +0 -251
- package/typedoc/variables/core_di_ng-module.ANIMATION_LITERAL.html +0 -249
- package/typedoc/variables/core_di_ng-module.COMPILE_LITERAL.html +0 -249
- package/typedoc/variables/core_di_ng-module.CONTROLLER_LITERAL.html +0 -251
- package/typedoc/variables/core_di_ng-module.FILTER_LITERAL.html +0 -249
- package/typedoc/variables/core_di_ng-module.INJECTOR_LITERAL.html +0 -249
- package/typedoc/variables/core_parse_interpreter.PURITY_ABSOLUTE.html +0 -251
- package/typedoc/variables/core_parse_interpreter.PURITY_RELATIVE.html +0 -251
- package/typedoc/variables/core_pubsub_pubsub.EventBus.html +0 -255
- package/typedoc/variables/core_sce_sce.SCE_CONTEXTS.html +0 -327
- package/typedoc/variables/core_scope_scope.NONSCOPE.html +0 -253
- package/typedoc/variables/core_scope_scope.__applyAsyncQueue.html +0 -252
- package/typedoc/variables/core_scope_scope._postUpdateQueue.html +0 -252
- package/typedoc/variables/directive_attrs_attrs.REGEX_STRING_REGEXP.html +0 -254
- package/typedoc/variables/directive_attrs_attrs.ngAttributeAliasDirectives.html +0 -262
- package/typedoc/variables/directive_class_class.ngClassDirective.html +0 -285
- package/typedoc/variables/directive_class_class.ngClassEvenDirective.html +0 -287
- package/typedoc/variables/directive_class_class.ngClassOddDirective.html +0 -287
- package/typedoc/variables/directive_events_events.ngEventDirectives.html +0 -256
- package/typedoc/variables/directive_form_form.PENDING_CLASS.html +0 -251
- package/typedoc/variables/directive_form_form.formDirective.html +0 -340
- package/typedoc/variables/directive_form_form.ngFormDirective.html +0 -340
- package/typedoc/variables/directive_form_form.nullFormCtrl.html +0 -424
- package/typedoc/variables/directive_input_input.EMAIL_REGEXP.html +0 -252
- package/typedoc/variables/directive_input_input.ISO_DATE_REGEXP.html +0 -252
- package/typedoc/variables/directive_input_input.URL_REGEXP.html +0 -252
- package/typedoc/variables/directive_input_input.VALIDITY_STATE_PROPERTY.html +0 -253
- package/typedoc/variables/directive_messages_messages.ngMessageDefaultDirective.html +0 -496
- package/typedoc/variables/directive_messages_messages.ngMessageDirective.html +0 -492
- package/typedoc/variables/directive_messages_messages.ngMessageExpDirective.html +0 -494
- package/typedoc/variables/directive_model-options_model-options.defaultModelOptions.html +0 -254
- package/typedoc/variables/directive_model_model.ngModelMinErr.html +0 -309
- package/typedoc/variables/directive_options_options.ngOptionsDirective.html +0 -692
- package/typedoc/variables/directive_transclude_transclude.ngTranscludeDirective.html +0 -343
- package/typedoc/variables/directive_validators_validators.maxlengthDirective.html +0 -401
- package/typedoc/variables/directive_validators_validators.minlengthDirective.html +0 -363
- package/typedoc/variables/directive_validators_validators.patternDirective.html +0 -424
- package/typedoc/variables/directive_validators_validators.requiredDirective.html +0 -388
- package/typedoc/variables/injection-tokens._injectTokens.html +0 -270
- package/typedoc/variables/public.VERSION.html +0 -247
- package/typedoc/variables/router_common_trace.trace.html +0 -287
- package/typedoc/variables/router_directives_view-directive.ngView.html +0 -499
- package/typedoc/variables/router_hooks_resolve.RESOLVE_HOOK_PRIORITY.html +0 -253
- package/typedoc/variables/router_params_param.DefType.html +0 -251
- package/typedoc/variables/router_resolve_resolvable.defaultResolvePolicy.html +0 -279
- package/typedoc/variables/router_resolve_resolve-context.resolvePolicies.html +0 -315
- package/typedoc/variables/router_transition_transition-service.defaultTransOpts.html +0 -380
- package/typedoc/variables/services_log.LogService.html +0 -252
- package/typedoc/variables/shared_common.assertMap.html +0 -344
- package/typedoc/variables/shared_common.assertPredicate.html +0 -344
- package/typedoc/variables/shared_common.pushTo.html +0 -252
- package/typedoc/variables/shared_common.removeFrom.html +0 -255
- package/typedoc/variables/shared_constants.ALIASED_ATTR.html +0 -329
- package/typedoc/variables/shared_constants.DIRTY_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.EMPTY_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.INVALID_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.NOT_EMPTY_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.PREFIX_REGEXP.html +0 -250
- package/typedoc/variables/shared_constants.PRISTINE_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.SPECIAL_CHARS_REGEXP.html +0 -252
- package/typedoc/variables/shared_constants.TOUCHED_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.UNTOUCHED_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.VALID_CLASS.html +0 -249
- package/typedoc/variables/shared_dom.BOOLEAN_ATTR.html +0 -253
- package/typedoc/variables/shared_hof.propEq.html +0 -258
- package/typedoc/variables/shared_strings.hostRegex.html +0 -248
- package/typedoc/variables/shared_strings.splitEqual.html +0 -291
- package/typedoc/variables/shared_strings.splitHash.html +0 -291
- package/typedoc/variables/shared_strings.splitQuery.html +0 -291
- package/typedoc/variables/shared_utils.isProxySymbol.html +0 -250
- package/typedoc/variables/shared_utils.ngAttrPrefixes.html +0 -249
- /package/{typedoc → docs/static/typedoc}/.nojekyll +0 -0
- /package/{typedoc → docs/static/typedoc}/assets/icons.svg +0 -0
|
@@ -1,1273 +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>ParamTypeDefinition | AngularTS</title>
|
|
7
|
-
<meta name="description" content="Documentation for AngularTS" />
|
|
8
|
-
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
9
|
-
<link rel="stylesheet" href="../assets/style.css" />
|
|
10
|
-
<link rel="stylesheet" href="../assets/highlight.css" />
|
|
11
|
-
<script defer src="../assets/main.js"></script>
|
|
12
|
-
<script async src="../assets/icons.js" id="tsd-icons-script"></script>
|
|
13
|
-
<script async src="../assets/search.js" id="tsd-search-script"></script>
|
|
14
|
-
<script async src="../assets/navigation.js" id="tsd-nav-script"></script>
|
|
15
|
-
<script
|
|
16
|
-
async
|
|
17
|
-
src="../assets/hierarchy.js"
|
|
18
|
-
id="tsd-hierarchy-script"
|
|
19
|
-
></script>
|
|
20
|
-
</head>
|
|
21
|
-
<body>
|
|
22
|
-
<script>
|
|
23
|
-
document.documentElement.dataset.theme =
|
|
24
|
-
localStorage.getItem("tsd-theme") || "os";
|
|
25
|
-
document.body.style.display = "none";
|
|
26
|
-
setTimeout(
|
|
27
|
-
() =>
|
|
28
|
-
window.app
|
|
29
|
-
? app.showPage()
|
|
30
|
-
: document.body.style.removeProperty("display"),
|
|
31
|
-
500,
|
|
32
|
-
);
|
|
33
|
-
</script>
|
|
34
|
-
<header class="tsd-page-toolbar">
|
|
35
|
-
<div class="tsd-toolbar-contents container">
|
|
36
|
-
<a href="../index.html" class="title">AngularTS</a>
|
|
37
|
-
<div id="tsd-toolbar-links"></div>
|
|
38
|
-
<button id="tsd-search-trigger" class="tsd-widget" aria-label="Search">
|
|
39
|
-
<svg
|
|
40
|
-
width="16"
|
|
41
|
-
height="16"
|
|
42
|
-
viewBox="0 0 16 16"
|
|
43
|
-
fill="none"
|
|
44
|
-
aria-hidden="true"
|
|
45
|
-
>
|
|
46
|
-
<use href="../assets/icons.svg#icon-search"></use>
|
|
47
|
-
</svg>
|
|
48
|
-
</button>
|
|
49
|
-
<dialog id="tsd-search" aria-label="Search">
|
|
50
|
-
<input
|
|
51
|
-
role="combobox"
|
|
52
|
-
id="tsd-search-input"
|
|
53
|
-
aria-controls="tsd-search-results"
|
|
54
|
-
aria-autocomplete="list"
|
|
55
|
-
aria-expanded="true"
|
|
56
|
-
autocapitalize="off"
|
|
57
|
-
autocomplete="off"
|
|
58
|
-
placeholder="Search the docs"
|
|
59
|
-
maxlength="100"
|
|
60
|
-
/>
|
|
61
|
-
<ul role="listbox" id="tsd-search-results"></ul>
|
|
62
|
-
<div id="tsd-search-status" aria-live="polite" aria-atomic="true">
|
|
63
|
-
<div>Preparing search index...</div>
|
|
64
|
-
</div>
|
|
65
|
-
</dialog>
|
|
66
|
-
<a
|
|
67
|
-
href="#"
|
|
68
|
-
class="tsd-widget menu"
|
|
69
|
-
id="tsd-toolbar-menu-trigger"
|
|
70
|
-
data-toggle="menu"
|
|
71
|
-
aria-label="Menu"
|
|
72
|
-
><svg
|
|
73
|
-
width="16"
|
|
74
|
-
height="16"
|
|
75
|
-
viewBox="0 0 16 16"
|
|
76
|
-
fill="none"
|
|
77
|
-
aria-hidden="true"
|
|
78
|
-
>
|
|
79
|
-
<use href="../assets/icons.svg#icon-menu"></use></svg
|
|
80
|
-
></a>
|
|
81
|
-
</div>
|
|
82
|
-
</header>
|
|
83
|
-
<div class="container container-main">
|
|
84
|
-
<div class="col-content">
|
|
85
|
-
<div class="tsd-page-title">
|
|
86
|
-
<ul class="tsd-breadcrumb" aria-label="Breadcrumb">
|
|
87
|
-
<li>
|
|
88
|
-
<a href="../modules/router_params_interface.html"
|
|
89
|
-
>router/params/interface</a
|
|
90
|
-
>
|
|
91
|
-
</li>
|
|
92
|
-
<li><a href="" aria-current="page">ParamTypeDefinition</a></li>
|
|
93
|
-
</ul>
|
|
94
|
-
<h1>Interface ParamTypeDefinition</h1>
|
|
95
|
-
</div>
|
|
96
|
-
<section class="tsd-panel tsd-comment">
|
|
97
|
-
<div class="tsd-comment tsd-typography">
|
|
98
|
-
<p>Describes a custom [[ParamType]]</p>
|
|
99
|
-
<p>See: [[UrlMatcherFactory.type]]</p>
|
|
100
|
-
<p>
|
|
101
|
-
A developer can create a custom parameter type definition to
|
|
102
|
-
customize the encoding and decoding of parameter values. The
|
|
103
|
-
definition should implement all the methods of this interface.
|
|
104
|
-
</p>
|
|
105
|
-
<p>
|
|
106
|
-
Parameter values are parsed from the URL as strings. However, it
|
|
107
|
-
is often useful to parse the string into some other form, such as:
|
|
108
|
-
</p>
|
|
109
|
-
<ul>
|
|
110
|
-
<li>integer</li>
|
|
111
|
-
<li>date</li>
|
|
112
|
-
<li>array of <integer/date/string></li>
|
|
113
|
-
<li>custom object</li>
|
|
114
|
-
<li>some internal string representation</li>
|
|
115
|
-
</ul>
|
|
116
|
-
<p>
|
|
117
|
-
Typed parameter definitions control how parameter values are
|
|
118
|
-
encoded (to the URL) and decoded (from the URL). UI-Router always
|
|
119
|
-
provides the decoded parameter values to the user (from methods
|
|
120
|
-
such as [[Transition.params]])).
|
|
121
|
-
</p>
|
|
122
|
-
<p>
|
|
123
|
-
For example, if a state has a url of
|
|
124
|
-
<code>/foo/{fooId:int}</code> (the <code>fooId</code> parameter is
|
|
125
|
-
of the <code>int</code> ParamType) and if the browser is at
|
|
126
|
-
<code>/foo/123</code>, then the 123 is parsed as an integer:
|
|
127
|
-
</p>
|
|
128
|
-
<pre><code class="js"><span class="hl-11">var</span><span class="hl-1"> </span><span class="hl-10">fooId</span><span class="hl-1"> = </span><span class="hl-10">transition</span><span class="hl-1">.</span><span class="hl-0">params</span><span class="hl-1">().</span><span class="hl-10">fooId</span><span class="hl-1">;</span><br/><span class="hl-10">fooId</span><span class="hl-1"> === </span><span class="hl-2">"123"</span><span class="hl-1"> </span><span class="hl-9">// false</span><br/><span class="hl-10">fooId</span><span class="hl-1"> === </span><span class="hl-16">123</span><span class="hl-1"> </span><span class="hl-9">// true</span>
|
|
129
|
-
</code><button type="button">Copy</button></pre>
|
|
130
|
-
|
|
131
|
-
<h4 id="examples" class="tsd-anchor-link">
|
|
132
|
-
Examples<a
|
|
133
|
-
href="#examples"
|
|
134
|
-
aria-label="Permalink"
|
|
135
|
-
class="tsd-anchor-icon"
|
|
136
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
137
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
138
|
-
></a>
|
|
139
|
-
</h4>
|
|
140
|
-
<p>
|
|
141
|
-
This example encodes an array of integers as a dash-delimited
|
|
142
|
-
string to be used in the URL.
|
|
143
|
-
</p>
|
|
144
|
-
<p>
|
|
145
|
-
If we call
|
|
146
|
-
<code>$state.go('foo', { fooIds: [20, 30, 40] });</code>, the URL
|
|
147
|
-
changes to <code>/foo/20-30-40</code>. If we navigate to
|
|
148
|
-
<code>/foo/1-2-3</code>, the <code>foo</code> state's onEnter logs
|
|
149
|
-
<code>[1, 2, 3]</code>.
|
|
150
|
-
</p>
|
|
151
|
-
</div>
|
|
152
|
-
<div class="tsd-comment tsd-typography">
|
|
153
|
-
<div class="tsd-tag-example">
|
|
154
|
-
<h4 class="tsd-anchor-link" id="example">
|
|
155
|
-
Example<a
|
|
156
|
-
href="#example"
|
|
157
|
-
aria-label="Permalink"
|
|
158
|
-
class="tsd-anchor-icon"
|
|
159
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
160
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
161
|
-
></a>
|
|
162
|
-
</h4>
|
|
163
|
-
<pre><code><br/><span class="hl-10">$urlMatcherFactoryProvider</span><span class="hl-1">.</span><span class="hl-0">type</span><span class="hl-1">(</span><span class="hl-2">'intarray'</span><span class="hl-1">, {</span><br/><span class="hl-1"> </span><span class="hl-9">// Take an array of ints [1,2,3] and return a string "1-2-3"</span><br/><span class="hl-1"> </span><span class="hl-0">encode</span><span class="hl-10">:</span><span class="hl-1"> (</span><span class="hl-10">array</span><span class="hl-1">) </span><span class="hl-11">=></span><span class="hl-1"> </span><span class="hl-10">array</span><span class="hl-1">.</span><span class="hl-0">join</span><span class="hl-1">(</span><span class="hl-2">"-"</span><span class="hl-1">),</span><br/><br/><span class="hl-1"> </span><span class="hl-9">// Take an string "1-2-3" and return an array of ints [1,2,3]</span><br/><span class="hl-1"> </span><span class="hl-0">decode</span><span class="hl-10">:</span><span class="hl-1"> (</span><span class="hl-10">str</span><span class="hl-1">) </span><span class="hl-11">=></span><span class="hl-1"> </span><span class="hl-10">str</span><span class="hl-1">.</span><span class="hl-0">split</span><span class="hl-1">(</span><span class="hl-2">"-"</span><span class="hl-1">).</span><span class="hl-0">map</span><span class="hl-1">(</span><span class="hl-10">x</span><span class="hl-1"> </span><span class="hl-11">=></span><span class="hl-1"> </span><span class="hl-0">parseInt</span><span class="hl-1">(</span><span class="hl-10">x</span><span class="hl-1">, </span><span class="hl-16">10</span><span class="hl-1">)),</span><br/><br/><span class="hl-1"> </span><span class="hl-9">// Match the encoded string in the URL</span><br/><span class="hl-1"> </span><span class="hl-10">pattern:</span><span class="hl-1"> </span><span class="hl-11">new</span><span class="hl-1"> </span><span class="hl-0">RegExp</span><span class="hl-1">(</span><span class="hl-2">"[0-9]+(?:-[0-9]+)*"</span><span class="hl-1">)</span><br/><br/><span class="hl-1"> </span><span class="hl-9">// Ensure that the (decoded) object is an array, and that all its elements are numbers</span><br/><span class="hl-1"> </span><span class="hl-10">is</span><span class="hl-1">: (</span><span class="hl-10">obj</span><span class="hl-1">) </span><span class="hl-11">=></span><span class="hl-1"> </span><span class="hl-10">Array</span><span class="hl-1">.</span><span class="hl-0">isArray</span><span class="hl-1">(</span><span class="hl-10">obj</span><span class="hl-1">) &&</span><br/><span class="hl-1"> </span><span class="hl-10">obj</span><span class="hl-1">.</span><span class="hl-0">reduce</span><span class="hl-1">((</span><span class="hl-10">acc</span><span class="hl-1">, </span><span class="hl-10">item</span><span class="hl-1">) </span><span class="hl-11">=></span><span class="hl-1"> </span><span class="hl-10">acc</span><span class="hl-1"> && </span><span class="hl-11">typeof</span><span class="hl-1"> </span><span class="hl-10">item</span><span class="hl-1"> === </span><span class="hl-2">'number'</span><span class="hl-1">, </span><span class="hl-11">true</span><span class="hl-1">),</span><br/><br/><span class="hl-1"> </span><span class="hl-9">// Compare two arrays of integers</span><br/><span class="hl-1"> </span><span class="hl-0">equals</span><span class="hl-10">:</span><span class="hl-1"> (</span><span class="hl-10">array1</span><span class="hl-1">, </span><span class="hl-10">array2</span><span class="hl-1">) </span><span class="hl-11">=></span><span class="hl-1"> </span><span class="hl-10">array1</span><span class="hl-1">.</span><span class="hl-10">length</span><span class="hl-1"> === </span><span class="hl-10">array2</span><span class="hl-1">.</span><span class="hl-10">length</span><span class="hl-1"> &&</span><br/><span class="hl-1"> </span><span class="hl-10">array1</span><span class="hl-1">.</span><span class="hl-0">reduce</span><span class="hl-1">((</span><span class="hl-10">acc</span><span class="hl-1">, </span><span class="hl-10">item</span><span class="hl-1">, </span><span class="hl-10">idx</span><span class="hl-1">) </span><span class="hl-11">=></span><span class="hl-1"> </span><span class="hl-10">acc</span><span class="hl-1"> && </span><span class="hl-10">item</span><span class="hl-1"> === </span><span class="hl-10">array2</span><span class="hl-1">[</span><span class="hl-10">idx</span><span class="hl-1">], </span><span class="hl-11">true</span><span class="hl-1">);</span><br/><span class="hl-1">});</span><br/><br/><span class="hl-10">$stateProvider</span><span class="hl-1">.</span><span class="hl-0">state</span><span class="hl-1">(</span><span class="hl-2">'foo'</span><span class="hl-1">, {</span><br/><span class="hl-1"> </span><span class="hl-10">url:</span><span class="hl-1"> </span><span class="hl-2">"/foo/{fooIds:intarray}"</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-0">onEnter</span><span class="hl-10">:</span><span class="hl-1"> </span><span class="hl-11">function</span><span class="hl-1">(</span><span class="hl-10">$transition$</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-10">console</span><span class="hl-1">.</span><span class="hl-0">log</span><span class="hl-1">(</span><span class="hl-10">$transition$</span><span class="hl-1">.</span><span class="hl-10">fooIds</span><span class="hl-1">); </span><span class="hl-9">// Logs "[1, 2, 3]"</span><br/><span class="hl-1"> }</span><br/><span class="hl-1">});</span>
|
|
164
|
-
</code><button>Copy</button></pre>
|
|
165
|
-
|
|
166
|
-
<p>
|
|
167
|
-
This example decodes an integer from the URL. It uses the
|
|
168
|
-
integer as an index to look up an item from a static list. That
|
|
169
|
-
item from the list is the decoded parameter value.
|
|
170
|
-
</p>
|
|
171
|
-
</div>
|
|
172
|
-
<div class="tsd-tag-example">
|
|
173
|
-
<h4 class="tsd-anchor-link" id="example-1">
|
|
174
|
-
Example<a
|
|
175
|
-
href="#example-1"
|
|
176
|
-
aria-label="Permalink"
|
|
177
|
-
class="tsd-anchor-icon"
|
|
178
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
179
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
180
|
-
></a>
|
|
181
|
-
</h4>
|
|
182
|
-
<pre><code><br/><span class="hl-11">var</span><span class="hl-1"> </span><span class="hl-10">list</span><span class="hl-1"> = [</span><span class="hl-2">'John'</span><span class="hl-1">, </span><span class="hl-2">'Paul'</span><span class="hl-1">, </span><span class="hl-2">'George'</span><span class="hl-1">, </span><span class="hl-2">'Ringo'</span><span class="hl-1">];</span><br/><br/><span class="hl-10">$urlMatcherFactoryProvider</span><span class="hl-1">.</span><span class="hl-0">type</span><span class="hl-1">(</span><span class="hl-2">'listItem'</span><span class="hl-1">, {</span><br/><span class="hl-1"> </span><span class="hl-0">encode</span><span class="hl-10">:</span><span class="hl-1"> </span><span class="hl-11">function</span><span class="hl-1">(</span><span class="hl-10">item</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-9">// Represent the list item in the URL using its corresponding index</span><br/><span class="hl-1"> </span><span class="hl-8">return</span><span class="hl-1"> </span><span class="hl-10">list</span><span class="hl-1">.</span><span class="hl-0">indexOf</span><span class="hl-1">(</span><span class="hl-10">item</span><span class="hl-1">);</span><br/><span class="hl-1"> },</span><br/><span class="hl-1"> </span><span class="hl-0">decode</span><span class="hl-10">:</span><span class="hl-1"> </span><span class="hl-11">function</span><span class="hl-1">(</span><span class="hl-10">item</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-9">// Look up the list item by index</span><br/><span class="hl-1"> </span><span class="hl-8">return</span><span class="hl-1"> </span><span class="hl-10">list</span><span class="hl-1">[</span><span class="hl-0">parseInt</span><span class="hl-1">(</span><span class="hl-10">item</span><span class="hl-1">, </span><span class="hl-16">10</span><span class="hl-1">)];</span><br/><span class="hl-1"> },</span><br/><span class="hl-1"> </span><span class="hl-0">is</span><span class="hl-10">:</span><span class="hl-1"> </span><span class="hl-11">function</span><span class="hl-1">(</span><span class="hl-10">item</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-9">// Ensure the item is valid by checking to see that it appears</span><br/><span class="hl-1"> </span><span class="hl-9">// in the list</span><br/><span class="hl-1"> </span><span class="hl-8">return</span><span class="hl-1"> </span><span class="hl-10">list</span><span class="hl-1">.</span><span class="hl-0">indexOf</span><span class="hl-1">(</span><span class="hl-10">item</span><span class="hl-1">) > -</span><span class="hl-16">1</span><span class="hl-1">;</span><br/><span class="hl-1"> }</span><br/><span class="hl-1">});</span><br/><br/><span class="hl-10">$stateProvider</span><span class="hl-1">.</span><span class="hl-0">state</span><span class="hl-1">(</span><span class="hl-2">'list'</span><span class="hl-1">, {</span><br/><span class="hl-1"> </span><span class="hl-10">url:</span><span class="hl-1"> </span><span class="hl-2">"/list/{item:listItem}"</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-0">controller</span><span class="hl-10">:</span><span class="hl-1"> </span><span class="hl-11">function</span><span class="hl-1">(</span><span class="hl-10">$scope</span><span class="hl-1">, </span><span class="hl-10">$stateParams</span><span class="hl-1">) {</span><br/><span class="hl-1"> </span><span class="hl-10">console</span><span class="hl-1">.</span><span class="hl-0">log</span><span class="hl-1">(</span><span class="hl-10">$stateParams</span><span class="hl-1">.</span><span class="hl-10">item</span><span class="hl-1">);</span><br/><span class="hl-1"> }</span><br/><span class="hl-1">});</span><br/><br/><span class="hl-9">// ...</span><br/><br/><span class="hl-9">// Changes URL to '/list/3', logs "Ringo" to the console</span><br/><span class="hl-10">$state</span><span class="hl-1">.</span><span class="hl-0">go</span><span class="hl-1">(</span><span class="hl-2">'list'</span><span class="hl-1">, { </span><span class="hl-10">item:</span><span class="hl-1"> </span><span class="hl-2">"Ringo"</span><span class="hl-1"> });</span>
|
|
183
|
-
</code><button>Copy</button></pre>
|
|
184
|
-
|
|
185
|
-
<p>See: [[UrlConfig.type]]</p>
|
|
186
|
-
</div>
|
|
187
|
-
</div>
|
|
188
|
-
</section>
|
|
189
|
-
<div class="tsd-signature">
|
|
190
|
-
<span class="tsd-signature-keyword">interface</span>
|
|
191
|
-
<span class="tsd-kind-interface">ParamTypeDefinition</span>
|
|
192
|
-
<span class="tsd-signature-symbol">{</span><br /> <a
|
|
193
|
-
class="tsd-kind-property"
|
|
194
|
-
href="#dynamic"
|
|
195
|
-
>dynamic</a
|
|
196
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
197
|
-
<span class="tsd-signature-type">boolean</span
|
|
198
|
-
><span class="tsd-signature-symbol">;</span><br /> <a
|
|
199
|
-
class="tsd-kind-property"
|
|
200
|
-
href="#inherit"
|
|
201
|
-
>inherit</a
|
|
202
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
203
|
-
<span class="tsd-signature-type">boolean</span
|
|
204
|
-
><span class="tsd-signature-symbol">;</span><br /> <a
|
|
205
|
-
class="tsd-kind-property"
|
|
206
|
-
href="#pattern"
|
|
207
|
-
>pattern</a
|
|
208
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
209
|
-
<span class="tsd-signature-type">RegExp</span
|
|
210
|
-
><span class="tsd-signature-symbol">;</span><br /> <a
|
|
211
|
-
class="tsd-kind-property"
|
|
212
|
-
href="#raw"
|
|
213
|
-
>raw</a
|
|
214
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
215
|
-
<span class="tsd-signature-type">boolean</span
|
|
216
|
-
><span class="tsd-signature-symbol">;</span><br /> <a
|
|
217
|
-
class="tsd-kind-call-signature"
|
|
218
|
-
href="#decode-1"
|
|
219
|
-
>decode</a
|
|
220
|
-
><span class="tsd-signature-symbol">(</span
|
|
221
|
-
><span class="tsd-kind-parameter">val</span
|
|
222
|
-
><span class="tsd-signature-symbol">:</span>
|
|
223
|
-
<span class="tsd-signature-type">string</span
|
|
224
|
-
><span class="tsd-signature-symbol">,</span>
|
|
225
|
-
<span class="tsd-kind-parameter">key</span
|
|
226
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
227
|
-
<span class="tsd-signature-type">string</span
|
|
228
|
-
><span class="tsd-signature-symbol">)</span
|
|
229
|
-
><span class="tsd-signature-symbol">:</span>
|
|
230
|
-
<span class="tsd-signature-type">any</span
|
|
231
|
-
><span class="tsd-signature-symbol">;</span><br /> <a
|
|
232
|
-
class="tsd-kind-call-signature"
|
|
233
|
-
href="#encode-1"
|
|
234
|
-
>encode</a
|
|
235
|
-
><span class="tsd-signature-symbol">(</span
|
|
236
|
-
><span class="tsd-kind-parameter">val</span
|
|
237
|
-
><span class="tsd-signature-symbol">:</span>
|
|
238
|
-
<span class="tsd-signature-type">any</span
|
|
239
|
-
><span class="tsd-signature-symbol">,</span>
|
|
240
|
-
<span class="tsd-kind-parameter">key</span
|
|
241
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
242
|
-
<span class="tsd-signature-type">string</span
|
|
243
|
-
><span class="tsd-signature-symbol">)</span
|
|
244
|
-
><span class="tsd-signature-symbol">:</span>
|
|
245
|
-
<span class="tsd-signature-type">string</span>
|
|
246
|
-
<span class="tsd-signature-symbol">|</span>
|
|
247
|
-
<span class="tsd-signature-type">string</span
|
|
248
|
-
><span class="tsd-signature-symbol">[]</span
|
|
249
|
-
><span class="tsd-signature-symbol">;</span><br /> <a
|
|
250
|
-
class="tsd-kind-call-signature"
|
|
251
|
-
href="#equals-1"
|
|
252
|
-
>equals</a
|
|
253
|
-
><span class="tsd-signature-symbol">(</span
|
|
254
|
-
><span class="tsd-kind-parameter">a</span
|
|
255
|
-
><span class="tsd-signature-symbol">:</span>
|
|
256
|
-
<span class="tsd-signature-type">any</span
|
|
257
|
-
><span class="tsd-signature-symbol">,</span>
|
|
258
|
-
<span class="tsd-kind-parameter">b</span
|
|
259
|
-
><span class="tsd-signature-symbol">:</span>
|
|
260
|
-
<span class="tsd-signature-type">any</span
|
|
261
|
-
><span class="tsd-signature-symbol">)</span
|
|
262
|
-
><span class="tsd-signature-symbol">:</span>
|
|
263
|
-
<span class="tsd-signature-type">boolean</span
|
|
264
|
-
><span class="tsd-signature-symbol">;</span><br /> <a
|
|
265
|
-
class="tsd-kind-call-signature"
|
|
266
|
-
href="#is-1"
|
|
267
|
-
>is</a
|
|
268
|
-
><span class="tsd-signature-symbol">(</span
|
|
269
|
-
><span class="tsd-kind-parameter">val</span
|
|
270
|
-
><span class="tsd-signature-symbol">:</span>
|
|
271
|
-
<span class="tsd-signature-type">any</span
|
|
272
|
-
><span class="tsd-signature-symbol">,</span>
|
|
273
|
-
<span class="tsd-kind-parameter">key</span
|
|
274
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
275
|
-
<span class="tsd-signature-type">string</span
|
|
276
|
-
><span class="tsd-signature-symbol">)</span
|
|
277
|
-
><span class="tsd-signature-symbol">:</span>
|
|
278
|
-
<span class="tsd-signature-type">boolean</span
|
|
279
|
-
><span class="tsd-signature-symbol">;</span><br /><span
|
|
280
|
-
class="tsd-signature-symbol"
|
|
281
|
-
>}</span
|
|
282
|
-
>
|
|
283
|
-
</div>
|
|
284
|
-
<section class="tsd-panel-group tsd-index-group">
|
|
285
|
-
<section class="tsd-panel tsd-index-panel">
|
|
286
|
-
<details class="tsd-index-content tsd-accordion" open>
|
|
287
|
-
<summary class="tsd-accordion-summary tsd-index-summary">
|
|
288
|
-
<svg
|
|
289
|
-
width="20"
|
|
290
|
-
height="20"
|
|
291
|
-
viewBox="0 0 24 24"
|
|
292
|
-
fill="none"
|
|
293
|
-
aria-hidden="true"
|
|
294
|
-
>
|
|
295
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
296
|
-
</svg>
|
|
297
|
-
<h5 class="tsd-index-heading uppercase">Index</h5>
|
|
298
|
-
</summary>
|
|
299
|
-
<div class="tsd-accordion-details">
|
|
300
|
-
<section class="tsd-index-section">
|
|
301
|
-
<h3 class="tsd-index-heading">Properties</h3>
|
|
302
|
-
<div class="tsd-index-list">
|
|
303
|
-
<a href="#dynamic" class="tsd-index-link"
|
|
304
|
-
><svg
|
|
305
|
-
class="tsd-kind-icon"
|
|
306
|
-
viewBox="0 0 24 24"
|
|
307
|
-
aria-label="Property"
|
|
308
|
-
>
|
|
309
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
310
|
-
><span>dynamic?</span></a
|
|
311
|
-
>
|
|
312
|
-
<a href="#inherit" class="tsd-index-link"
|
|
313
|
-
><svg
|
|
314
|
-
class="tsd-kind-icon"
|
|
315
|
-
viewBox="0 0 24 24"
|
|
316
|
-
aria-label="Property"
|
|
317
|
-
>
|
|
318
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
319
|
-
><span>inherit?</span></a
|
|
320
|
-
>
|
|
321
|
-
<a href="#pattern" class="tsd-index-link"
|
|
322
|
-
><svg
|
|
323
|
-
class="tsd-kind-icon"
|
|
324
|
-
viewBox="0 0 24 24"
|
|
325
|
-
aria-label="Property"
|
|
326
|
-
>
|
|
327
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
328
|
-
><span>pattern?</span></a
|
|
329
|
-
>
|
|
330
|
-
<a href="#raw" class="tsd-index-link"
|
|
331
|
-
><svg
|
|
332
|
-
class="tsd-kind-icon"
|
|
333
|
-
viewBox="0 0 24 24"
|
|
334
|
-
aria-label="Property"
|
|
335
|
-
>
|
|
336
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
337
|
-
><span>raw?</span></a
|
|
338
|
-
>
|
|
339
|
-
</div>
|
|
340
|
-
</section>
|
|
341
|
-
<section class="tsd-index-section">
|
|
342
|
-
<h3 class="tsd-index-heading">Methods</h3>
|
|
343
|
-
<div class="tsd-index-list">
|
|
344
|
-
<a href="#decode" class="tsd-index-link"
|
|
345
|
-
><svg
|
|
346
|
-
class="tsd-kind-icon"
|
|
347
|
-
viewBox="0 0 24 24"
|
|
348
|
-
aria-label="Method"
|
|
349
|
-
>
|
|
350
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
351
|
-
><span>decode</span></a
|
|
352
|
-
>
|
|
353
|
-
<a href="#encode" class="tsd-index-link"
|
|
354
|
-
><svg
|
|
355
|
-
class="tsd-kind-icon"
|
|
356
|
-
viewBox="0 0 24 24"
|
|
357
|
-
aria-label="Method"
|
|
358
|
-
>
|
|
359
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
360
|
-
><span>encode</span></a
|
|
361
|
-
>
|
|
362
|
-
<a href="#equals" class="tsd-index-link"
|
|
363
|
-
><svg
|
|
364
|
-
class="tsd-kind-icon"
|
|
365
|
-
viewBox="0 0 24 24"
|
|
366
|
-
aria-label="Method"
|
|
367
|
-
>
|
|
368
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
369
|
-
><span>equals</span></a
|
|
370
|
-
>
|
|
371
|
-
<a href="#is" class="tsd-index-link"
|
|
372
|
-
><svg
|
|
373
|
-
class="tsd-kind-icon"
|
|
374
|
-
viewBox="0 0 24 24"
|
|
375
|
-
aria-label="Method"
|
|
376
|
-
>
|
|
377
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
378
|
-
><span>is</span></a
|
|
379
|
-
>
|
|
380
|
-
</div>
|
|
381
|
-
</section>
|
|
382
|
-
</div>
|
|
383
|
-
</details>
|
|
384
|
-
</section>
|
|
385
|
-
</section>
|
|
386
|
-
<details class="tsd-panel-group tsd-member-group tsd-accordion" open>
|
|
387
|
-
<summary class="tsd-accordion-summary" data-key="section-Properties">
|
|
388
|
-
<svg
|
|
389
|
-
width="20"
|
|
390
|
-
height="20"
|
|
391
|
-
viewBox="0 0 24 24"
|
|
392
|
-
fill="none"
|
|
393
|
-
aria-hidden="true"
|
|
394
|
-
>
|
|
395
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
396
|
-
</svg>
|
|
397
|
-
<h2>Properties</h2>
|
|
398
|
-
</summary>
|
|
399
|
-
<section>
|
|
400
|
-
<section class="tsd-panel tsd-member">
|
|
401
|
-
<h3 class="tsd-anchor-link" id="dynamic">
|
|
402
|
-
<code class="tsd-tag">Optional</code><span>dynamic</span
|
|
403
|
-
><a
|
|
404
|
-
href="#dynamic"
|
|
405
|
-
aria-label="Permalink"
|
|
406
|
-
class="tsd-anchor-icon"
|
|
407
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
408
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
409
|
-
></a>
|
|
410
|
-
</h3>
|
|
411
|
-
<div class="tsd-signature">
|
|
412
|
-
<span class="tsd-kind-property">dynamic</span
|
|
413
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
414
|
-
<span class="tsd-signature-type">boolean</span>
|
|
415
|
-
</div>
|
|
416
|
-
<div class="tsd-comment tsd-typography">
|
|
417
|
-
<p>Dynamic flag</p>
|
|
418
|
-
<p>
|
|
419
|
-
When <code>dynamic</code> is <code>true</code>, changes to the
|
|
420
|
-
parameter value will not cause the state to be entered/exited.
|
|
421
|
-
</p>
|
|
422
|
-
<p>
|
|
423
|
-
Normally, if a parameter value changes, the state which
|
|
424
|
-
declared that the parameter will be reloaded (entered/exited).
|
|
425
|
-
When a parameter is <code>dynamic</code>, a transition still
|
|
426
|
-
occurs, but it does not cause the state to exit/enter.
|
|
427
|
-
</p>
|
|
428
|
-
<p>Default: <code>false</code></p>
|
|
429
|
-
</div>
|
|
430
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
431
|
-
</section>
|
|
432
|
-
<section class="tsd-panel tsd-member">
|
|
433
|
-
<h3 class="tsd-anchor-link" id="inherit">
|
|
434
|
-
<code class="tsd-tag">Optional</code><span>inherit</span
|
|
435
|
-
><a
|
|
436
|
-
href="#inherit"
|
|
437
|
-
aria-label="Permalink"
|
|
438
|
-
class="tsd-anchor-icon"
|
|
439
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
440
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
441
|
-
></a>
|
|
442
|
-
</h3>
|
|
443
|
-
<div class="tsd-signature">
|
|
444
|
-
<span class="tsd-kind-property">inherit</span
|
|
445
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
446
|
-
<span class="tsd-signature-type">boolean</span>
|
|
447
|
-
</div>
|
|
448
|
-
<div class="tsd-comment tsd-typography">
|
|
449
|
-
<p>
|
|
450
|
-
Enables/disables inheriting of parameter values (of this type)
|
|
451
|
-
</p>
|
|
452
|
-
<p>
|
|
453
|
-
When a transition is run with [[TransitionOptions.inherit]]
|
|
454
|
-
set to <code>true</code>, the current param values are
|
|
455
|
-
inherited in the new transition. However, parameters whose
|
|
456
|
-
type has <code>inherit: false</code> set will
|
|
457
|
-
<em>not be inherited</em>.
|
|
458
|
-
</p>
|
|
459
|
-
<p>
|
|
460
|
-
The internal parameter type of <code>hash</code> has
|
|
461
|
-
<code>inherit: false</code>. This is used to disable
|
|
462
|
-
inheriting of the hash value (<code>#</code>) on subsequent
|
|
463
|
-
transitions.
|
|
464
|
-
</p>
|
|
465
|
-
<h4 id="example-2" class="tsd-anchor-link">
|
|
466
|
-
Example:<a
|
|
467
|
-
href="#example-2"
|
|
468
|
-
aria-label="Permalink"
|
|
469
|
-
class="tsd-anchor-icon"
|
|
470
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
471
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
472
|
-
></a>
|
|
473
|
-
</h4>
|
|
474
|
-
<pre><code class="js"><span class="hl-10">$state</span><span class="hl-1">.</span><span class="hl-0">go</span><span class="hl-1">(</span><span class="hl-2">'home'</span><span class="hl-1">, { </span><span class="hl-2">'#'</span><span class="hl-10">:</span><span class="hl-1"> </span><span class="hl-2">'inboxAnchor'</span><span class="hl-1"> });</span><br/><span class="hl-1">...</span><br/><span class="hl-9">// "#" is not inherited.</span><br/><span class="hl-9">// The value of the "#" parameter will be `null`</span><br/><span class="hl-9">// The url's hash will be cleared.</span><br/><span class="hl-10">$state</span><span class="hl-1">.</span><span class="hl-0">go</span><span class="hl-1">(</span><span class="hl-2">'home.nest'</span><span class="hl-1">);</span>
|
|
475
|
-
</code><button type="button">Copy</button></pre>
|
|
476
|
-
|
|
477
|
-
<hr />
|
|
478
|
-
<p>
|
|
479
|
-
See also [[TransitionOptions.inherit]] and
|
|
480
|
-
[[ParamDeclaration.inherit]]
|
|
481
|
-
</p>
|
|
482
|
-
</div>
|
|
483
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
484
|
-
</section>
|
|
485
|
-
<section class="tsd-panel tsd-member">
|
|
486
|
-
<h3 class="tsd-anchor-link" id="pattern">
|
|
487
|
-
<code class="tsd-tag">Optional</code><span>pattern</span
|
|
488
|
-
><a
|
|
489
|
-
href="#pattern"
|
|
490
|
-
aria-label="Permalink"
|
|
491
|
-
class="tsd-anchor-icon"
|
|
492
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
493
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
494
|
-
></a>
|
|
495
|
-
</h3>
|
|
496
|
-
<div class="tsd-signature">
|
|
497
|
-
<span class="tsd-kind-property">pattern</span
|
|
498
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
499
|
-
<span class="tsd-signature-type">RegExp</span>
|
|
500
|
-
</div>
|
|
501
|
-
<div class="tsd-comment tsd-typography">
|
|
502
|
-
<p>
|
|
503
|
-
A regular expression that matches the encoded parameter type
|
|
504
|
-
</p>
|
|
505
|
-
<p>
|
|
506
|
-
This regular expression is used to match an encoded parameter
|
|
507
|
-
value <strong>in the URL</strong>.
|
|
508
|
-
</p>
|
|
509
|
-
<p>
|
|
510
|
-
For example, if your type encodes as a dash-separated numbers,
|
|
511
|
-
match that here:
|
|
512
|
-
<code>new RegExp("[0-9]+(?:-[0-9]+)*")</code>.
|
|
513
|
-
</p>
|
|
514
|
-
<p>There are some limitations to these regexps:</p>
|
|
515
|
-
<ul>
|
|
516
|
-
<li>
|
|
517
|
-
No capturing groups are allowed (use non-capturing groups:
|
|
518
|
-
<code>(?: )</code>)
|
|
519
|
-
</li>
|
|
520
|
-
<li>No pattern modifiers like case insensitive</li>
|
|
521
|
-
<li>
|
|
522
|
-
No start-of-string or end-of-string: <code>/^foo$/</code>
|
|
523
|
-
</li>
|
|
524
|
-
</ul>
|
|
525
|
-
</div>
|
|
526
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
527
|
-
</section>
|
|
528
|
-
<section class="tsd-panel tsd-member">
|
|
529
|
-
<h3 class="tsd-anchor-link" id="raw">
|
|
530
|
-
<code class="tsd-tag">Optional</code><span>raw</span
|
|
531
|
-
><a href="#raw" aria-label="Permalink" class="tsd-anchor-icon"
|
|
532
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
533
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
534
|
-
></a>
|
|
535
|
-
</h3>
|
|
536
|
-
<div class="tsd-signature">
|
|
537
|
-
<span class="tsd-kind-property">raw</span
|
|
538
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
539
|
-
<span class="tsd-signature-type">boolean</span>
|
|
540
|
-
</div>
|
|
541
|
-
<div class="tsd-comment tsd-typography">
|
|
542
|
-
<p>Disables url-encoding of parameter values</p>
|
|
543
|
-
<p>
|
|
544
|
-
If a parameter type is declared <code>raw</code>, it will not
|
|
545
|
-
be url-encoded. Custom encoding can still be applied in the
|
|
546
|
-
[[encode]] function.
|
|
547
|
-
</p>
|
|
548
|
-
<h3 id="decoding-warning" class="tsd-anchor-link">
|
|
549
|
-
Decoding warning<a
|
|
550
|
-
href="#decoding-warning"
|
|
551
|
-
aria-label="Permalink"
|
|
552
|
-
class="tsd-anchor-icon"
|
|
553
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
554
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
555
|
-
></a>
|
|
556
|
-
</h3>
|
|
557
|
-
<p>
|
|
558
|
-
The decoding behavior of raw parameters is not defined. See:
|
|
559
|
-
[[ParamDeclaration.raw]] for details
|
|
560
|
-
</p>
|
|
561
|
-
</div>
|
|
562
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
563
|
-
</section>
|
|
564
|
-
</section>
|
|
565
|
-
</details>
|
|
566
|
-
<details class="tsd-panel-group tsd-member-group tsd-accordion" open>
|
|
567
|
-
<summary class="tsd-accordion-summary" data-key="section-Methods">
|
|
568
|
-
<svg
|
|
569
|
-
width="20"
|
|
570
|
-
height="20"
|
|
571
|
-
viewBox="0 0 24 24"
|
|
572
|
-
fill="none"
|
|
573
|
-
aria-hidden="true"
|
|
574
|
-
>
|
|
575
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
576
|
-
</svg>
|
|
577
|
-
<h2>Methods</h2>
|
|
578
|
-
</summary>
|
|
579
|
-
<section>
|
|
580
|
-
<section class="tsd-panel tsd-member">
|
|
581
|
-
<h3 class="tsd-anchor-link" id="decode">
|
|
582
|
-
<span>decode</span
|
|
583
|
-
><a
|
|
584
|
-
href="#decode"
|
|
585
|
-
aria-label="Permalink"
|
|
586
|
-
class="tsd-anchor-icon"
|
|
587
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
588
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
589
|
-
></a>
|
|
590
|
-
</h3>
|
|
591
|
-
<ul class="tsd-signatures">
|
|
592
|
-
<li class="">
|
|
593
|
-
<div class="tsd-signature tsd-anchor-link" id="decode-1">
|
|
594
|
-
<span class="tsd-kind-call-signature">decode</span
|
|
595
|
-
><span class="tsd-signature-symbol">(</span
|
|
596
|
-
><span class="tsd-kind-parameter">val</span
|
|
597
|
-
><span class="tsd-signature-symbol">:</span>
|
|
598
|
-
<span class="tsd-signature-type">string</span
|
|
599
|
-
><span class="tsd-signature-symbol">,</span>
|
|
600
|
-
<span class="tsd-kind-parameter">key</span
|
|
601
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
602
|
-
<span class="tsd-signature-type">string</span
|
|
603
|
-
><span class="tsd-signature-symbol">)</span
|
|
604
|
-
><span class="tsd-signature-symbol">:</span>
|
|
605
|
-
<span class="tsd-signature-type">any</span
|
|
606
|
-
><a
|
|
607
|
-
href="#decode-1"
|
|
608
|
-
aria-label="Permalink"
|
|
609
|
-
class="tsd-anchor-icon"
|
|
610
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
611
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
612
|
-
></a>
|
|
613
|
-
</div>
|
|
614
|
-
<div class="tsd-description">
|
|
615
|
-
<div class="tsd-comment tsd-typography">
|
|
616
|
-
<p>
|
|
617
|
-
Decodes a parameter value string (from URL string or
|
|
618
|
-
transition param) to a custom/native value.
|
|
619
|
-
</p>
|
|
620
|
-
<p>
|
|
621
|
-
For example, if your type decodes to an array of ints,
|
|
622
|
-
then decode the string as an array of ints here:
|
|
623
|
-
</p>
|
|
624
|
-
<pre><code class="js"><span class="hl-15">decode</span><span class="hl-1">: (</span><span class="hl-10">str</span><span class="hl-1">) </span><span class="hl-11">=></span><span class="hl-1"> </span><span class="hl-10">str</span><span class="hl-1">.</span><span class="hl-0">split</span><span class="hl-1">(</span><span class="hl-2">"-"</span><span class="hl-1">).</span><span class="hl-0">map</span><span class="hl-1">(</span><span class="hl-10">str</span><span class="hl-1"> </span><span class="hl-11">=></span><span class="hl-1"> </span><span class="hl-0">parseInt</span><span class="hl-1">(</span><span class="hl-10">str</span><span class="hl-1">, </span><span class="hl-16">10</span><span class="hl-1">))</span>
|
|
625
|
-
</code><button type="button">Copy</button></pre>
|
|
626
|
-
|
|
627
|
-
<p>
|
|
628
|
-
Note: in general, [[encode]] and [[decode]] should be
|
|
629
|
-
symmetrical. That is,
|
|
630
|
-
<code>encode(decode(str)) === str</code>
|
|
631
|
-
</p>
|
|
632
|
-
</div>
|
|
633
|
-
<div class="tsd-parameters">
|
|
634
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
635
|
-
<ul class="tsd-parameter-list">
|
|
636
|
-
<li>
|
|
637
|
-
<span
|
|
638
|
-
><span class="tsd-kind-parameter">val</span>:
|
|
639
|
-
<span class="tsd-signature-type">string</span></span
|
|
640
|
-
>
|
|
641
|
-
<div class="tsd-comment tsd-typography">
|
|
642
|
-
<p>The URL parameter value to decode.</p>
|
|
643
|
-
</div>
|
|
644
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
645
|
-
</li>
|
|
646
|
-
<li>
|
|
647
|
-
<span
|
|
648
|
-
><code class="tsd-tag">Optional</code
|
|
649
|
-
><span class="tsd-kind-parameter">key</span>:
|
|
650
|
-
<span class="tsd-signature-type">string</span></span
|
|
651
|
-
>
|
|
652
|
-
<div class="tsd-comment tsd-typography">
|
|
653
|
-
<p>
|
|
654
|
-
The name of the parameter in which
|
|
655
|
-
<code>val</code> is stored. Can be used for
|
|
656
|
-
meta-programming of
|
|
657
|
-
<code>ParamType</code> objects.
|
|
658
|
-
</p>
|
|
659
|
-
</div>
|
|
660
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
661
|
-
</li>
|
|
662
|
-
</ul>
|
|
663
|
-
</div>
|
|
664
|
-
<h4 class="tsd-returns-title">
|
|
665
|
-
Returns <span class="tsd-signature-type">any</span>
|
|
666
|
-
</h4>
|
|
667
|
-
<p>a custom representation of the URL parameter value.</p>
|
|
668
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
669
|
-
</div>
|
|
670
|
-
</li>
|
|
671
|
-
</ul>
|
|
672
|
-
</section>
|
|
673
|
-
<section class="tsd-panel tsd-member">
|
|
674
|
-
<h3 class="tsd-anchor-link" id="encode">
|
|
675
|
-
<span>encode</span
|
|
676
|
-
><a
|
|
677
|
-
href="#encode"
|
|
678
|
-
aria-label="Permalink"
|
|
679
|
-
class="tsd-anchor-icon"
|
|
680
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
681
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
682
|
-
></a>
|
|
683
|
-
</h3>
|
|
684
|
-
<ul class="tsd-signatures">
|
|
685
|
-
<li class="">
|
|
686
|
-
<div class="tsd-signature tsd-anchor-link" id="encode-1">
|
|
687
|
-
<span class="tsd-kind-call-signature">encode</span
|
|
688
|
-
><span class="tsd-signature-symbol">(</span
|
|
689
|
-
><span class="tsd-kind-parameter">val</span
|
|
690
|
-
><span class="tsd-signature-symbol">:</span>
|
|
691
|
-
<span class="tsd-signature-type">any</span
|
|
692
|
-
><span class="tsd-signature-symbol">,</span>
|
|
693
|
-
<span class="tsd-kind-parameter">key</span
|
|
694
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
695
|
-
<span class="tsd-signature-type">string</span
|
|
696
|
-
><span class="tsd-signature-symbol">)</span
|
|
697
|
-
><span class="tsd-signature-symbol">:</span>
|
|
698
|
-
<span class="tsd-signature-type">string</span>
|
|
699
|
-
<span class="tsd-signature-symbol">|</span>
|
|
700
|
-
<span class="tsd-signature-type">string</span
|
|
701
|
-
><span class="tsd-signature-symbol">[]</span
|
|
702
|
-
><a
|
|
703
|
-
href="#encode-1"
|
|
704
|
-
aria-label="Permalink"
|
|
705
|
-
class="tsd-anchor-icon"
|
|
706
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
707
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
708
|
-
></a>
|
|
709
|
-
</div>
|
|
710
|
-
<div class="tsd-description">
|
|
711
|
-
<div class="tsd-comment tsd-typography">
|
|
712
|
-
<p>
|
|
713
|
-
Encodes a custom/native type value to a string that can
|
|
714
|
-
be embedded in a URL.
|
|
715
|
-
</p>
|
|
716
|
-
<p>
|
|
717
|
-
Note that the return value does <em>not</em> need to be
|
|
718
|
-
URL-safe (i.e. passed through
|
|
719
|
-
<code>encodeURIComponent()</code>). It only needs to be
|
|
720
|
-
a representation of <code>val</code> that has been
|
|
721
|
-
encoded as a string.
|
|
722
|
-
</p>
|
|
723
|
-
<p>
|
|
724
|
-
For example, if your custom type decodes to an array of
|
|
725
|
-
ints, then encode the array of ints to a string here:
|
|
726
|
-
</p>
|
|
727
|
-
<pre><code class="js"><span class="hl-15">encode</span><span class="hl-1">: (</span><span class="hl-10">intarray</span><span class="hl-1">) </span><span class="hl-11">=></span><span class="hl-1"> </span><span class="hl-10">intarray</span><span class="hl-1">.</span><span class="hl-0">join</span><span class="hl-1">(</span><span class="hl-2">"-"</span><span class="hl-1">)</span>
|
|
728
|
-
</code><button type="button">Copy</button></pre>
|
|
729
|
-
|
|
730
|
-
<p>
|
|
731
|
-
Note: in general, [[encode]] and [[decode]] should be
|
|
732
|
-
symmetrical. That is,
|
|
733
|
-
<code>encode(decode(str)) === str</code>
|
|
734
|
-
</p>
|
|
735
|
-
</div>
|
|
736
|
-
<div class="tsd-parameters">
|
|
737
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
738
|
-
<ul class="tsd-parameter-list">
|
|
739
|
-
<li>
|
|
740
|
-
<span
|
|
741
|
-
><span class="tsd-kind-parameter">val</span>:
|
|
742
|
-
<span class="tsd-signature-type">any</span></span
|
|
743
|
-
>
|
|
744
|
-
<div class="tsd-comment tsd-typography">
|
|
745
|
-
<p>The value to encode.</p>
|
|
746
|
-
</div>
|
|
747
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
748
|
-
</li>
|
|
749
|
-
<li>
|
|
750
|
-
<span
|
|
751
|
-
><code class="tsd-tag">Optional</code
|
|
752
|
-
><span class="tsd-kind-parameter">key</span>:
|
|
753
|
-
<span class="tsd-signature-type">string</span></span
|
|
754
|
-
>
|
|
755
|
-
<div class="tsd-comment tsd-typography">
|
|
756
|
-
<p>
|
|
757
|
-
The name of the parameter in which
|
|
758
|
-
<code>val</code> is stored. Can be used for
|
|
759
|
-
meta-programming of
|
|
760
|
-
<code>ParamType</code> objects.
|
|
761
|
-
</p>
|
|
762
|
-
</div>
|
|
763
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
764
|
-
</li>
|
|
765
|
-
</ul>
|
|
766
|
-
</div>
|
|
767
|
-
<h4 class="tsd-returns-title">
|
|
768
|
-
Returns <span class="tsd-signature-type">string</span>
|
|
769
|
-
<span class="tsd-signature-symbol">|</span>
|
|
770
|
-
<span class="tsd-signature-type">string</span
|
|
771
|
-
><span class="tsd-signature-symbol">[]</span>
|
|
772
|
-
</h4>
|
|
773
|
-
<p>
|
|
774
|
-
a string representation of <code>val</code> that can be
|
|
775
|
-
encoded in a URL.
|
|
776
|
-
</p>
|
|
777
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
778
|
-
</div>
|
|
779
|
-
</li>
|
|
780
|
-
</ul>
|
|
781
|
-
</section>
|
|
782
|
-
<section class="tsd-panel tsd-member">
|
|
783
|
-
<h3 class="tsd-anchor-link" id="equals">
|
|
784
|
-
<span>equals</span
|
|
785
|
-
><a
|
|
786
|
-
href="#equals"
|
|
787
|
-
aria-label="Permalink"
|
|
788
|
-
class="tsd-anchor-icon"
|
|
789
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
790
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
791
|
-
></a>
|
|
792
|
-
</h3>
|
|
793
|
-
<ul class="tsd-signatures">
|
|
794
|
-
<li class="">
|
|
795
|
-
<div class="tsd-signature tsd-anchor-link" id="equals-1">
|
|
796
|
-
<span class="tsd-kind-call-signature">equals</span
|
|
797
|
-
><span class="tsd-signature-symbol">(</span
|
|
798
|
-
><span class="tsd-kind-parameter">a</span
|
|
799
|
-
><span class="tsd-signature-symbol">:</span>
|
|
800
|
-
<span class="tsd-signature-type">any</span
|
|
801
|
-
><span class="tsd-signature-symbol">,</span>
|
|
802
|
-
<span class="tsd-kind-parameter">b</span
|
|
803
|
-
><span class="tsd-signature-symbol">:</span>
|
|
804
|
-
<span class="tsd-signature-type">any</span
|
|
805
|
-
><span class="tsd-signature-symbol">)</span
|
|
806
|
-
><span class="tsd-signature-symbol">:</span>
|
|
807
|
-
<span class="tsd-signature-type">boolean</span
|
|
808
|
-
><a
|
|
809
|
-
href="#equals-1"
|
|
810
|
-
aria-label="Permalink"
|
|
811
|
-
class="tsd-anchor-icon"
|
|
812
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
813
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
814
|
-
></a>
|
|
815
|
-
</div>
|
|
816
|
-
<div class="tsd-description">
|
|
817
|
-
<div class="tsd-comment tsd-typography">
|
|
818
|
-
<p>
|
|
819
|
-
Determines whether two decoded values are equivalent.
|
|
820
|
-
</p>
|
|
821
|
-
<p>
|
|
822
|
-
For example, if your type decodes to an array of ints,
|
|
823
|
-
then check if the arrays are equal:
|
|
824
|
-
</p>
|
|
825
|
-
<pre><code class="js"><span class="hl-15">equals</span><span class="hl-1">: (</span><span class="hl-10">a</span><span class="hl-1">, </span><span class="hl-10">b</span><span class="hl-1">) </span><span class="hl-11">=></span><span class="hl-1"> </span><span class="hl-10">a</span><span class="hl-1">.</span><span class="hl-10">length</span><span class="hl-1"> === </span><span class="hl-10">b</span><span class="hl-1">.</span><span class="hl-10">length</span><span class="hl-1"> && </span><span class="hl-10">a</span><span class="hl-1">.</span><span class="hl-0">reduce</span><span class="hl-1">((</span><span class="hl-10">acc</span><span class="hl-1">, </span><span class="hl-10">x</span><span class="hl-1">, </span><span class="hl-10">idx</span><span class="hl-1">) </span><span class="hl-11">=></span><span class="hl-1"> </span><span class="hl-10">acc</span><span class="hl-1"> && </span><span class="hl-10">x</span><span class="hl-1"> === </span><span class="hl-10">b</span><span class="hl-1">[</span><span class="hl-10">idx</span><span class="hl-1">], </span><span class="hl-11">true</span><span class="hl-1">)</span>
|
|
826
|
-
</code><button type="button">Copy</button></pre>
|
|
827
|
-
</div>
|
|
828
|
-
<div class="tsd-parameters">
|
|
829
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
830
|
-
<ul class="tsd-parameter-list">
|
|
831
|
-
<li>
|
|
832
|
-
<span
|
|
833
|
-
><span class="tsd-kind-parameter">a</span>:
|
|
834
|
-
<span class="tsd-signature-type">any</span></span
|
|
835
|
-
>
|
|
836
|
-
<div class="tsd-comment tsd-typography">
|
|
837
|
-
<p>A value to compare against.</p>
|
|
838
|
-
</div>
|
|
839
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
840
|
-
</li>
|
|
841
|
-
<li>
|
|
842
|
-
<span
|
|
843
|
-
><span class="tsd-kind-parameter">b</span>:
|
|
844
|
-
<span class="tsd-signature-type">any</span></span
|
|
845
|
-
>
|
|
846
|
-
<div class="tsd-comment tsd-typography">
|
|
847
|
-
<p>A value to compare against.</p>
|
|
848
|
-
</div>
|
|
849
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
850
|
-
</li>
|
|
851
|
-
</ul>
|
|
852
|
-
</div>
|
|
853
|
-
<h4 class="tsd-returns-title">
|
|
854
|
-
Returns <span class="tsd-signature-type">boolean</span>
|
|
855
|
-
</h4>
|
|
856
|
-
<p>
|
|
857
|
-
<code>true</code> if the values are equivalent/equal,
|
|
858
|
-
otherwise <code>false</code>.
|
|
859
|
-
</p>
|
|
860
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
861
|
-
</div>
|
|
862
|
-
</li>
|
|
863
|
-
</ul>
|
|
864
|
-
</section>
|
|
865
|
-
<section class="tsd-panel tsd-member">
|
|
866
|
-
<h3 class="tsd-anchor-link" id="is">
|
|
867
|
-
<span>is</span
|
|
868
|
-
><a href="#is" aria-label="Permalink" class="tsd-anchor-icon"
|
|
869
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
870
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
871
|
-
></a>
|
|
872
|
-
</h3>
|
|
873
|
-
<ul class="tsd-signatures">
|
|
874
|
-
<li class="">
|
|
875
|
-
<div class="tsd-signature tsd-anchor-link" id="is-1">
|
|
876
|
-
<span class="tsd-kind-call-signature">is</span
|
|
877
|
-
><span class="tsd-signature-symbol">(</span
|
|
878
|
-
><span class="tsd-kind-parameter">val</span
|
|
879
|
-
><span class="tsd-signature-symbol">:</span>
|
|
880
|
-
<span class="tsd-signature-type">any</span
|
|
881
|
-
><span class="tsd-signature-symbol">,</span>
|
|
882
|
-
<span class="tsd-kind-parameter">key</span
|
|
883
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
884
|
-
<span class="tsd-signature-type">string</span
|
|
885
|
-
><span class="tsd-signature-symbol">)</span
|
|
886
|
-
><span class="tsd-signature-symbol">:</span>
|
|
887
|
-
<span class="tsd-signature-type">boolean</span
|
|
888
|
-
><a
|
|
889
|
-
href="#is-1"
|
|
890
|
-
aria-label="Permalink"
|
|
891
|
-
class="tsd-anchor-icon"
|
|
892
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
893
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
894
|
-
></a>
|
|
895
|
-
</div>
|
|
896
|
-
<div class="tsd-description">
|
|
897
|
-
<div class="tsd-comment tsd-typography">
|
|
898
|
-
<p>
|
|
899
|
-
Tests if some object type is compatible with this
|
|
900
|
-
parameter type
|
|
901
|
-
</p>
|
|
902
|
-
<p>
|
|
903
|
-
Detects whether some value is of this particular type.
|
|
904
|
-
Accepts a decoded value and determines whether it
|
|
905
|
-
matches this <code>ParamType</code> object.
|
|
906
|
-
</p>
|
|
907
|
-
<p>
|
|
908
|
-
If your custom type encodes the parameter to a specific
|
|
909
|
-
type, check for that type here. For example, if your
|
|
910
|
-
custom type decodes the URL parameter value as an array
|
|
911
|
-
of ints, return true if the input is an array of ints:
|
|
912
|
-
</p>
|
|
913
|
-
<pre><code><span class="hl-15">is</span><span class="hl-1">: (</span><span class="hl-10">val</span><span class="hl-1">) </span><span class="hl-11">=></span><span class="hl-1"> </span><span class="hl-10">Array</span><span class="hl-1">.</span><span class="hl-0">isArray</span><span class="hl-1">(</span><span class="hl-10">val</span><span class="hl-1">) && </span><span class="hl-10">array</span><span class="hl-1">.</span><span class="hl-0">reduce</span><span class="hl-1">((</span><span class="hl-10">acc</span><span class="hl-1">, </span><span class="hl-10">x</span><span class="hl-1">) </span><span class="hl-11">=></span><span class="hl-1"> </span><span class="hl-10">acc</span><span class="hl-1"> && </span><span class="hl-0">parseInt</span><span class="hl-1">(</span><span class="hl-10">val</span><span class="hl-1">, </span><span class="hl-16">10</span><span class="hl-1">) === </span><span class="hl-10">val</span><span class="hl-1">, </span><span class="hl-11">true</span><span class="hl-1">)</span>
|
|
914
|
-
</code><button>Copy</button></pre>
|
|
915
|
-
|
|
916
|
-
<p>
|
|
917
|
-
If your type decodes the URL parameter value to a custom
|
|
918
|
-
string, check that the string matches the pattern (don't
|
|
919
|
-
use an arrow fn if you need <code>this</code>):
|
|
920
|
-
<code
|
|
921
|
-
>function (val) { return !!this.pattern.exec(val)
|
|
922
|
-
}</code
|
|
923
|
-
>
|
|
924
|
-
</p>
|
|
925
|
-
<p>
|
|
926
|
-
Note: This method is
|
|
927
|
-
<em>not used to check if the URL matches</em>. It's used
|
|
928
|
-
to check if a
|
|
929
|
-
<em>decoded value <em>is</em> this type</em>. Use
|
|
930
|
-
[[pattern]] to check the encoded value in the URL.
|
|
931
|
-
</p>
|
|
932
|
-
</div>
|
|
933
|
-
<div class="tsd-parameters">
|
|
934
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
935
|
-
<ul class="tsd-parameter-list">
|
|
936
|
-
<li>
|
|
937
|
-
<span
|
|
938
|
-
><span class="tsd-kind-parameter">val</span>:
|
|
939
|
-
<span class="tsd-signature-type">any</span></span
|
|
940
|
-
>
|
|
941
|
-
<div class="tsd-comment tsd-typography">
|
|
942
|
-
<p>The value to check.</p>
|
|
943
|
-
</div>
|
|
944
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
945
|
-
</li>
|
|
946
|
-
<li>
|
|
947
|
-
<span
|
|
948
|
-
><code class="tsd-tag">Optional</code
|
|
949
|
-
><span class="tsd-kind-parameter">key</span>:
|
|
950
|
-
<span class="tsd-signature-type">string</span></span
|
|
951
|
-
>
|
|
952
|
-
<div class="tsd-comment tsd-typography">
|
|
953
|
-
<p>
|
|
954
|
-
If the type check is happening in the context of a
|
|
955
|
-
specific [[UrlMatcher]] object, this is the name
|
|
956
|
-
of the parameter in which <code>val</code> is
|
|
957
|
-
stored. Can be used for meta-programming of
|
|
958
|
-
<code>ParamType</code> objects.
|
|
959
|
-
</p>
|
|
960
|
-
</div>
|
|
961
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
962
|
-
</li>
|
|
963
|
-
</ul>
|
|
964
|
-
</div>
|
|
965
|
-
<h4 class="tsd-returns-title">
|
|
966
|
-
Returns <span class="tsd-signature-type">boolean</span>
|
|
967
|
-
</h4>
|
|
968
|
-
<p>
|
|
969
|
-
<code>true</code> if the value matches the type, otherwise
|
|
970
|
-
<code>false</code>.
|
|
971
|
-
</p>
|
|
972
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
973
|
-
</div>
|
|
974
|
-
</li>
|
|
975
|
-
</ul>
|
|
976
|
-
</section>
|
|
977
|
-
</section>
|
|
978
|
-
</details>
|
|
979
|
-
</div>
|
|
980
|
-
<div class="col-sidebar">
|
|
981
|
-
<div class="page-menu">
|
|
982
|
-
<div class="tsd-navigation settings">
|
|
983
|
-
<details class="tsd-accordion">
|
|
984
|
-
<summary class="tsd-accordion-summary">
|
|
985
|
-
<svg
|
|
986
|
-
width="20"
|
|
987
|
-
height="20"
|
|
988
|
-
viewBox="0 0 24 24"
|
|
989
|
-
fill="none"
|
|
990
|
-
aria-hidden="true"
|
|
991
|
-
>
|
|
992
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
993
|
-
</svg>
|
|
994
|
-
<h3>Settings</h3>
|
|
995
|
-
</summary>
|
|
996
|
-
<div class="tsd-accordion-details">
|
|
997
|
-
<div class="tsd-filter-visibility">
|
|
998
|
-
<span class="settings-label">Member Visibility</span>
|
|
999
|
-
<ul id="tsd-filter-options">
|
|
1000
|
-
<li class="tsd-filter-item">
|
|
1001
|
-
<label class="tsd-filter-input"
|
|
1002
|
-
><input
|
|
1003
|
-
type="checkbox"
|
|
1004
|
-
id="tsd-filter-protected"
|
|
1005
|
-
name="protected"
|
|
1006
|
-
/><svg
|
|
1007
|
-
width="32"
|
|
1008
|
-
height="32"
|
|
1009
|
-
viewBox="0 0 32 32"
|
|
1010
|
-
aria-hidden="true"
|
|
1011
|
-
>
|
|
1012
|
-
<rect
|
|
1013
|
-
class="tsd-checkbox-background"
|
|
1014
|
-
width="30"
|
|
1015
|
-
height="30"
|
|
1016
|
-
x="1"
|
|
1017
|
-
y="1"
|
|
1018
|
-
rx="6"
|
|
1019
|
-
fill="none"
|
|
1020
|
-
></rect>
|
|
1021
|
-
<path
|
|
1022
|
-
class="tsd-checkbox-checkmark"
|
|
1023
|
-
d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
|
|
1024
|
-
stroke="none"
|
|
1025
|
-
stroke-width="3.5"
|
|
1026
|
-
stroke-linejoin="round"
|
|
1027
|
-
fill="none"
|
|
1028
|
-
></path></svg
|
|
1029
|
-
><span>Protected</span></label
|
|
1030
|
-
>
|
|
1031
|
-
</li>
|
|
1032
|
-
<li class="tsd-filter-item">
|
|
1033
|
-
<label class="tsd-filter-input"
|
|
1034
|
-
><input
|
|
1035
|
-
type="checkbox"
|
|
1036
|
-
id="tsd-filter-inherited"
|
|
1037
|
-
name="inherited"
|
|
1038
|
-
checked
|
|
1039
|
-
/><svg
|
|
1040
|
-
width="32"
|
|
1041
|
-
height="32"
|
|
1042
|
-
viewBox="0 0 32 32"
|
|
1043
|
-
aria-hidden="true"
|
|
1044
|
-
>
|
|
1045
|
-
<rect
|
|
1046
|
-
class="tsd-checkbox-background"
|
|
1047
|
-
width="30"
|
|
1048
|
-
height="30"
|
|
1049
|
-
x="1"
|
|
1050
|
-
y="1"
|
|
1051
|
-
rx="6"
|
|
1052
|
-
fill="none"
|
|
1053
|
-
></rect>
|
|
1054
|
-
<path
|
|
1055
|
-
class="tsd-checkbox-checkmark"
|
|
1056
|
-
d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
|
|
1057
|
-
stroke="none"
|
|
1058
|
-
stroke-width="3.5"
|
|
1059
|
-
stroke-linejoin="round"
|
|
1060
|
-
fill="none"
|
|
1061
|
-
></path></svg
|
|
1062
|
-
><span>Inherited</span></label
|
|
1063
|
-
>
|
|
1064
|
-
</li>
|
|
1065
|
-
<li class="tsd-filter-item">
|
|
1066
|
-
<label class="tsd-filter-input"
|
|
1067
|
-
><input
|
|
1068
|
-
type="checkbox"
|
|
1069
|
-
id="tsd-filter-external"
|
|
1070
|
-
name="external"
|
|
1071
|
-
/><svg
|
|
1072
|
-
width="32"
|
|
1073
|
-
height="32"
|
|
1074
|
-
viewBox="0 0 32 32"
|
|
1075
|
-
aria-hidden="true"
|
|
1076
|
-
>
|
|
1077
|
-
<rect
|
|
1078
|
-
class="tsd-checkbox-background"
|
|
1079
|
-
width="30"
|
|
1080
|
-
height="30"
|
|
1081
|
-
x="1"
|
|
1082
|
-
y="1"
|
|
1083
|
-
rx="6"
|
|
1084
|
-
fill="none"
|
|
1085
|
-
></rect>
|
|
1086
|
-
<path
|
|
1087
|
-
class="tsd-checkbox-checkmark"
|
|
1088
|
-
d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
|
|
1089
|
-
stroke="none"
|
|
1090
|
-
stroke-width="3.5"
|
|
1091
|
-
stroke-linejoin="round"
|
|
1092
|
-
fill="none"
|
|
1093
|
-
></path></svg
|
|
1094
|
-
><span>External</span></label
|
|
1095
|
-
>
|
|
1096
|
-
</li>
|
|
1097
|
-
</ul>
|
|
1098
|
-
</div>
|
|
1099
|
-
<div class="tsd-theme-toggle">
|
|
1100
|
-
<label class="settings-label" for="tsd-theme">Theme</label
|
|
1101
|
-
><select id="tsd-theme">
|
|
1102
|
-
<option value="os">OS</option>
|
|
1103
|
-
<option value="light">Light</option>
|
|
1104
|
-
<option value="dark">Dark</option>
|
|
1105
|
-
</select>
|
|
1106
|
-
</div>
|
|
1107
|
-
</div>
|
|
1108
|
-
</details>
|
|
1109
|
-
</div>
|
|
1110
|
-
<details open class="tsd-accordion tsd-page-navigation">
|
|
1111
|
-
<summary class="tsd-accordion-summary">
|
|
1112
|
-
<svg
|
|
1113
|
-
width="20"
|
|
1114
|
-
height="20"
|
|
1115
|
-
viewBox="0 0 24 24"
|
|
1116
|
-
fill="none"
|
|
1117
|
-
aria-hidden="true"
|
|
1118
|
-
>
|
|
1119
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
1120
|
-
</svg>
|
|
1121
|
-
<h3>On This Page</h3>
|
|
1122
|
-
</summary>
|
|
1123
|
-
<div class="tsd-accordion-details">
|
|
1124
|
-
<a href="#examples"><span>Examples</span></a>
|
|
1125
|
-
<details open class="tsd-accordion tsd-page-navigation-section">
|
|
1126
|
-
<summary
|
|
1127
|
-
class="tsd-accordion-summary"
|
|
1128
|
-
data-key="section-Properties"
|
|
1129
|
-
>
|
|
1130
|
-
<svg
|
|
1131
|
-
width="20"
|
|
1132
|
-
height="20"
|
|
1133
|
-
viewBox="0 0 24 24"
|
|
1134
|
-
fill="none"
|
|
1135
|
-
aria-hidden="true"
|
|
1136
|
-
>
|
|
1137
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use></svg
|
|
1138
|
-
>Properties
|
|
1139
|
-
</summary>
|
|
1140
|
-
<div>
|
|
1141
|
-
<a href="#dynamic"
|
|
1142
|
-
><svg
|
|
1143
|
-
class="tsd-kind-icon"
|
|
1144
|
-
viewBox="0 0 24 24"
|
|
1145
|
-
aria-label="Property"
|
|
1146
|
-
>
|
|
1147
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
1148
|
-
><span>dynamic</span></a
|
|
1149
|
-
><a href="#inherit"
|
|
1150
|
-
><svg
|
|
1151
|
-
class="tsd-kind-icon"
|
|
1152
|
-
viewBox="0 0 24 24"
|
|
1153
|
-
aria-label="Property"
|
|
1154
|
-
>
|
|
1155
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
1156
|
-
><span>inherit</span></a
|
|
1157
|
-
>
|
|
1158
|
-
<ul>
|
|
1159
|
-
<li>
|
|
1160
|
-
<ul>
|
|
1161
|
-
<li>
|
|
1162
|
-
<ul>
|
|
1163
|
-
<li>
|
|
1164
|
-
<ul>
|
|
1165
|
-
<li>
|
|
1166
|
-
<a href="#example-2"><span>Example:</span></a>
|
|
1167
|
-
</li>
|
|
1168
|
-
</ul>
|
|
1169
|
-
</li>
|
|
1170
|
-
</ul>
|
|
1171
|
-
</li>
|
|
1172
|
-
</ul>
|
|
1173
|
-
</li>
|
|
1174
|
-
</ul>
|
|
1175
|
-
<a href="#pattern"
|
|
1176
|
-
><svg
|
|
1177
|
-
class="tsd-kind-icon"
|
|
1178
|
-
viewBox="0 0 24 24"
|
|
1179
|
-
aria-label="Property"
|
|
1180
|
-
>
|
|
1181
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
1182
|
-
><span>pattern</span></a
|
|
1183
|
-
><a href="#raw"
|
|
1184
|
-
><svg
|
|
1185
|
-
class="tsd-kind-icon"
|
|
1186
|
-
viewBox="0 0 24 24"
|
|
1187
|
-
aria-label="Property"
|
|
1188
|
-
>
|
|
1189
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
1190
|
-
><span>raw</span></a
|
|
1191
|
-
>
|
|
1192
|
-
<ul>
|
|
1193
|
-
<li>
|
|
1194
|
-
<a href="#decoding-warning"
|
|
1195
|
-
><span>Decoding warning</span></a
|
|
1196
|
-
>
|
|
1197
|
-
</li>
|
|
1198
|
-
</ul>
|
|
1199
|
-
</div>
|
|
1200
|
-
</details>
|
|
1201
|
-
<details open class="tsd-accordion tsd-page-navigation-section">
|
|
1202
|
-
<summary
|
|
1203
|
-
class="tsd-accordion-summary"
|
|
1204
|
-
data-key="section-Methods"
|
|
1205
|
-
>
|
|
1206
|
-
<svg
|
|
1207
|
-
width="20"
|
|
1208
|
-
height="20"
|
|
1209
|
-
viewBox="0 0 24 24"
|
|
1210
|
-
fill="none"
|
|
1211
|
-
aria-hidden="true"
|
|
1212
|
-
>
|
|
1213
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use></svg
|
|
1214
|
-
>Methods
|
|
1215
|
-
</summary>
|
|
1216
|
-
<div>
|
|
1217
|
-
<a href="#decode"
|
|
1218
|
-
><svg
|
|
1219
|
-
class="tsd-kind-icon"
|
|
1220
|
-
viewBox="0 0 24 24"
|
|
1221
|
-
aria-label="Method"
|
|
1222
|
-
>
|
|
1223
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
1224
|
-
><span>decode</span></a
|
|
1225
|
-
><a href="#encode"
|
|
1226
|
-
><svg
|
|
1227
|
-
class="tsd-kind-icon"
|
|
1228
|
-
viewBox="0 0 24 24"
|
|
1229
|
-
aria-label="Method"
|
|
1230
|
-
>
|
|
1231
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
1232
|
-
><span>encode</span></a
|
|
1233
|
-
><a href="#equals"
|
|
1234
|
-
><svg
|
|
1235
|
-
class="tsd-kind-icon"
|
|
1236
|
-
viewBox="0 0 24 24"
|
|
1237
|
-
aria-label="Method"
|
|
1238
|
-
>
|
|
1239
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
1240
|
-
><span>equals</span></a
|
|
1241
|
-
><a href="#is"
|
|
1242
|
-
><svg
|
|
1243
|
-
class="tsd-kind-icon"
|
|
1244
|
-
viewBox="0 0 24 24"
|
|
1245
|
-
aria-label="Method"
|
|
1246
|
-
>
|
|
1247
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
1248
|
-
><span>is</span></a
|
|
1249
|
-
>
|
|
1250
|
-
</div>
|
|
1251
|
-
</details>
|
|
1252
|
-
</div>
|
|
1253
|
-
</details>
|
|
1254
|
-
</div>
|
|
1255
|
-
<div class="site-menu">
|
|
1256
|
-
<nav class="tsd-navigation">
|
|
1257
|
-
<a href="../modules.html">AngularTS</a>
|
|
1258
|
-
<ul class="tsd-small-nested-navigation" id="tsd-nav-container">
|
|
1259
|
-
<li>Loading...</li>
|
|
1260
|
-
</ul>
|
|
1261
|
-
</nav>
|
|
1262
|
-
</div>
|
|
1263
|
-
</div>
|
|
1264
|
-
</div>
|
|
1265
|
-
<footer>
|
|
1266
|
-
<p class="tsd-generator">
|
|
1267
|
-
Generated using
|
|
1268
|
-
<a href="https://typedoc.org/" target="_blank">TypeDoc</a>
|
|
1269
|
-
</p>
|
|
1270
|
-
</footer>
|
|
1271
|
-
<div class="overlay"></div>
|
|
1272
|
-
</body>
|
|
1273
|
-
</html>
|