@angular-wave/angular.ts 0.7.0-beta.1 → 0.7.2
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 +58 -14
- package/.github/workflows/gh-pages.yml +75 -0
- package/@types/animations/animate.d.ts +11 -4
- package/@types/core/compile/attributes.d.ts +5 -2
- package/@types/core/compile/compile.d.ts +6 -6
- package/@types/core/di/injector.d.ts +1 -2
- package/@types/core/di/internal-injector.d.ts +10 -7
- package/@types/core/di/ng-module.d.ts +0 -1
- package/@types/core/error-handler.d.ts +1 -1
- package/@types/core/exception-handler.d.ts +1 -1
- package/@types/core/parse/interface.d.ts +3 -3
- package/@types/core/pubsub/pubsub.d.ts +21 -0
- package/@types/core/sce/sce.d.ts +2 -5
- package/@types/core/scope/scope.d.ts +23 -36
- package/@types/core/task-tracker-factory.d.ts +10 -5
- package/@types/directive/aria/aria.d.ts +4 -1
- package/@types/directive/include/include.d.ts +4 -18
- package/@types/directive/options/options.d.ts +1 -1
- package/@types/injection-tokens.d.ts +20 -0
- package/@types/interface.d.ts +4 -4
- package/@types/loader.d.ts +1 -0
- package/@types/public.d.ts +2 -2
- package/@types/router/directives/view-directive.d.ts +0 -2
- package/@types/router/params/param.d.ts +1 -1
- package/@types/router/state/interface.d.ts +3 -3
- package/@types/router/state/state-builder.d.ts +9 -2
- package/@types/router/transition/transition-service.d.ts +1 -0
- package/@types/services/anchor-scroll.d.ts +0 -1
- package/@types/shared/utils.d.ts +4 -14
- package/README.md +7 -9
- package/dist/angular-ts.esm.js +440 -302
- package/dist/angular-ts.umd.js +440 -302
- package/dist/angular-ts.umd.min.js +1 -1
- package/docs/.cspell.yml +2 -2
- package/docs/.github/dependabot.yml +12 -12
- package/docs/README.md +10 -7
- package/docs/assets/icons/logo.svg +1 -0
- package/docs/assets/scss/_variables_project.scss +1 -0
- package/docs/content/en/_index.md +5 -64
- package/docs/content/en/docs/_index.md +3 -4
- package/docs/docker-compose.yaml +1 -0
- package/docs/go.mod +1 -1
- package/docs/go.sum +6 -6
- package/docs/hugo-disabled.toml +6 -7
- package/docs/hugo.yaml +45 -64
- package/docs/layouts/404.html +2 -8
- package/docs/layouts/_markup/render-heading.html +1 -0
- package/docs/package-lock.json +2293 -0
- package/docs/package.json +18 -7
- package/index.html +1 -1
- package/package.json +1 -1
- package/src/animations/animate-children-directive.js +2 -1
- package/src/animations/animate-css.js +2 -2
- package/src/animations/animate-runner.js +3 -3
- package/src/animations/animate-swap.js +16 -19
- package/src/animations/animate.js +3 -1
- package/src/animations/shared.js +1 -1
- package/src/core/compile/attributes.js +4 -1
- package/src/core/compile/compile.js +29 -24
- package/src/core/compile/compile.spec.js +368 -371
- package/src/core/controller/controller.spec.js +27 -20
- package/src/core/di/injector.js +2 -5
- package/src/core/di/internal-injector.js +2 -0
- package/src/core/di/ng-module.js +19 -7
- package/src/core/di/ng-module.spec.js +16 -16
- package/src/core/error-handler.ts +1 -1
- package/src/core/exception-handler.js +1 -1
- package/src/core/filter/filter.js +0 -1
- package/src/core/parse/ast/ast.spec.js +1 -9
- package/src/core/parse/interface.ts +3 -3
- package/src/core/parse/parse.js +6 -6
- package/src/core/pubsub/pubsub.js +20 -0
- package/src/core/pubsub/pubsub.spec.js +14 -1
- package/src/core/sanitize/sanitize-uri.js +1 -0
- package/src/core/sce/sce.js +7 -15
- package/src/core/scope/scope.js +114 -117
- package/src/core/scope/scope.spec.js +11 -11
- package/src/core/task-tracker-factory.js +7 -0
- package/src/directive/aria/aria.js +11 -10
- package/src/directive/attrs/attrs.js +2 -1
- package/src/directive/bind/bind.js +2 -3
- package/src/directive/channel/channel.js +0 -1
- package/src/directive/class/class.js +0 -1
- package/src/directive/cloak/cloak.js +0 -1
- package/src/directive/include/include.js +22 -11
- package/src/directive/include/include.spec.js +1 -0
- package/src/directive/input/input-example.html +15 -0
- package/src/directive/input/input.js +8 -2
- package/src/directive/input/input.spec.js +12 -14
- package/src/directive/messages/messages.js +2 -2
- package/src/directive/non-bindable/non-bindable.js +0 -1
- package/src/directive/observe/test.html +1 -1
- package/src/directive/options/options-example.html +13 -0
- package/src/directive/options/options.js +33 -21
- package/src/directive/options/options.spec.js +207 -146
- package/src/directive/repeat/repeat.js +8 -7
- package/src/directive/select/select.spec.js +1 -1
- package/src/directive/setter/setter.js +1 -1
- package/src/directive/setter/setter.spec.js +5 -4
- package/src/directive/style/style.spec.js +1 -1
- package/src/directive/switch/switch.js +1 -2
- package/src/directive/transclude/transclude.js +0 -1
- package/src/directive/validators/validators.js +5 -5
- package/src/examples/counter.html +20 -0
- package/src/filters/order-by.js +2 -1
- package/src/filters/order-by.spec.js +4 -4
- package/src/index.spec.js +11 -0
- package/src/injection-tokens.js +71 -0
- package/src/interface.ts +4 -4
- package/src/loader.js +2 -0
- package/src/public.js +10 -3
- package/src/public.spec.js +1 -0
- package/src/router/directives/state-directives.js +1 -1
- package/src/router/directives/state-directives.spec.js +0 -2
- package/src/router/directives/view-directive.js +1 -2
- package/src/router/params/param.js +1 -1
- package/src/router/state/interface.ts +3 -3
- package/src/router/state/state-builder.js +4 -0
- package/src/router/state/state-builder.spec.js +21 -15
- package/src/router/state/state-registry.js +7 -6
- package/src/router/template-factory.spec.js +15 -9
- package/src/router/transition/transition-service.js +1 -0
- package/src/router/view/view.spec.js +1 -1
- package/src/router/view-scroll.spec.js +3 -4
- package/src/services/anchor-scroll.html +1 -1
- package/src/services/anchor-scroll.js +0 -4
- package/src/services/template-request.js +11 -7
- package/src/shared/noderef.js +1 -3
- package/src/shared/utils.js +5 -22
- package/src/src.html +2 -1
- package/typedoc/assets/hierarchy.js +1 -1
- package/typedoc/assets/navigation.js +1 -1
- package/typedoc/assets/search.js +1 -1
- package/typedoc/classes/animations_animate-cache.AnimateCacheProvider.html +4 -40
- package/typedoc/classes/animations_animate-css-driver.AnimateCssDriverProvider.html +4 -58
- package/typedoc/classes/animations_animate-css.AnimateCssProvider.html +4 -40
- package/typedoc/classes/animations_animate-js-driver.AnimateJsDriverProvider.html +4 -58
- package/typedoc/classes/animations_animate-js.AnimateJsProvider.html +4 -58
- package/typedoc/classes/animations_animate-queue.AnimateQueueProvider.html +4 -69
- package/typedoc/classes/animations_animate-runner.AnimateAsyncRunFactoryProvider.html +4 -40
- package/typedoc/classes/animations_animate-runner.AnimateRunner.html +4 -263
- package/typedoc/classes/animations_animate-runner.AnimateRunnerFactoryProvider.html +4 -40
- package/typedoc/classes/animations_animate.AnimateProvider.html +42 -108
- package/typedoc/classes/animations_animation.AnimationProvider.html +4 -51
- package/typedoc/classes/animations_raf-scheduler.RafSchedulerProvider.html +4 -115
- package/typedoc/classes/core_cache_cache-factory.TemplateCacheProvider.html +4 -29
- package/typedoc/classes/core_compile_attributes.Attributes.html +19 -227
- package/typedoc/classes/core_compile_compile.CompileProvider.html +52 -137
- package/typedoc/classes/core_controller_controller.ControllerProvider.html +4 -73
- package/typedoc/classes/core_di_internal-injector.InjectorService.html +7 -141
- package/typedoc/classes/core_di_internal-injector.ProviderInjector.html +7 -119
- package/typedoc/classes/core_di_ng-module.NgModule.html +4 -256
- package/typedoc/classes/core_exception-handler.ExceptionHandlerProvider.html +4 -69
- package/typedoc/classes/core_filter_filter.FilterProvider.html +4 -69
- package/typedoc/classes/core_interpolate_interpolate.InterpolateProvider.html +4 -84
- package/typedoc/classes/core_location_location.Location.html +5 -387
- package/typedoc/classes/core_location_location.LocationHashbangUrl.html +5 -340
- package/typedoc/classes/core_location_location.LocationHtml5Url.html +5 -340
- package/typedoc/classes/core_location_location.LocationProvider.html +4 -113
- package/typedoc/classes/core_parse_ast_ast.AST.html +4 -359
- package/typedoc/classes/core_parse_interpreter.ASTInterpreter.html +4 -315
- package/typedoc/classes/core_parse_lexer_lexer.Lexer.html +4 -238
- package/typedoc/classes/core_parse_parse.ParseProvider.html +4 -51
- package/typedoc/classes/core_parse_parser_parser.Parser.html +4 -73
- package/typedoc/classes/core_pubsub_pubsub.PubSub.html +4 -146
- package/typedoc/classes/core_pubsub_pubsub.PubSubProvider.html +576 -0
- package/typedoc/classes/core_sanitize_sanitize-uri.SanitizeUriProvider.html +4 -62
- package/typedoc/classes/core_sce_sce.SceDelegateProvider.html +4 -73
- package/typedoc/classes/core_sce_sce.SceProvider.html +10 -63
- package/typedoc/classes/core_scope_scope.RootScopeProvider.html +4 -51
- package/typedoc/classes/core_scope_scope.Scope.html +49 -1280
- package/typedoc/classes/core_task-tracker-factory.TaskTracker.html +4 -84
- package/typedoc/classes/core_task-tracker-factory.TaskTrackerFactoryProvider.html +23 -128
- package/typedoc/classes/directive_aria_aria.AriaProvider.html +4 -51
- package/typedoc/classes/directive_form_form.FormController.html +4 -429
- package/typedoc/classes/directive_model_model.NgModelController.html +4 -983
- package/typedoc/classes/loader.Angular.html +46 -179
- package/typedoc/classes/router_common_glob.Glob.html +4 -84
- package/typedoc/classes/router_common_queue.Queue.html +4 -161
- package/typedoc/classes/router_common_trace.Trace.html +4 -249
- package/typedoc/classes/router_globals.RouterGlobals.html +4 -117
- package/typedoc/classes/router_params_param-factory.ParamFactory.html +4 -73
- package/typedoc/classes/router_params_param-type.ParamType.html +4 -150
- package/typedoc/classes/router_params_param-types.ParamTypes.html +4 -95
- package/typedoc/classes/router_params_param.Param.html +4 -260
- package/typedoc/classes/router_params_state-params.StateParams.html +4 -40
- package/typedoc/classes/router_path_path-node.PathNode.html +4 -174
- package/typedoc/classes/router_path_path-utils.PathUtils.html +4 -128
- package/typedoc/classes/router_resolve_resolvable.Resolvable.html +4 -256
- package/typedoc/classes/router_resolve_resolve-context.ResolveContext.html +4 -150
- package/typedoc/classes/router_state-provider.StateProvider.html +4 -84
- package/typedoc/classes/router_state_state-builder.StateBuilder.html +4 -106
- package/typedoc/classes/router_state_state-matcher.StateMatcher.html +4 -73
- package/typedoc/classes/router_state_state-object.StateObject.html +4 -230
- package/typedoc/classes/router_state_state-queue-manager.StateQueueManager.html +4 -128
- package/typedoc/classes/router_state_state-registry.StateRegistryProvider.html +5 -246
- package/typedoc/classes/router_state_state-service.StateProvider.html +4 -322
- package/typedoc/classes/router_state_target-state.TargetState.html +4 -252
- package/typedoc/classes/router_state_views.ViewConfig.html +4 -161
- package/typedoc/classes/router_template-factory.TemplateFactoryProvider.html +4 -179
- package/typedoc/classes/router_transition_hook-builder.HookBuilder.html +4 -73
- package/typedoc/classes/router_transition_hook-registry.RegisteredHook.html +4 -201
- package/typedoc/classes/router_transition_reject-factory.Rejection.html +4 -183
- package/typedoc/classes/router_transition_transition-event-type.TransitionEventType.html +4 -117
- package/typedoc/classes/router_transition_transition-hook.TransitionHook.html +4 -280
- package/typedoc/classes/router_transition_transition-service.TransitionProvider.html +5 -238
- package/typedoc/classes/router_transition_transition.Transition.html +4 -648
- package/typedoc/classes/router_url_url-config.UrlConfigProvider.html +4 -149
- package/typedoc/classes/router_url_url-matcher.UrlMatcher.html +4 -274
- package/typedoc/classes/router_url_url-rule.BaseUrlRule.html +4 -95
- package/typedoc/classes/router_url_url-rule.UrlRuleFactory.html +4 -124
- package/typedoc/classes/router_url_url-rules.UrlRules.html +4 -222
- package/typedoc/classes/router_url_url-service.UrlService.html +4 -373
- package/typedoc/classes/router_view-scroll.ViewScrollProvider.html +4 -69
- package/typedoc/classes/router_view_view.ViewService.html +4 -223
- package/typedoc/classes/services_anchor-scroll.AnchorScrollProvider.html +4 -164
- package/typedoc/classes/services_browser.Browser.html +4 -276
- package/typedoc/classes/services_browser.BrowserProvider.html +4 -29
- package/typedoc/classes/services_http-backend_http-backend.HttpBackendProvider.html +4 -40
- package/typedoc/classes/services_http_http.HttpParamSerializerProvider.html +4 -40
- package/typedoc/classes/services_http_http.HttpProvider.html +4 -84
- package/typedoc/classes/services_log.LogProvider.html +4 -91
- package/typedoc/classes/services_template-request.TemplateRequestProvider.html +4 -51
- package/typedoc/classes/shared_noderef.NodeRef.html +4 -301
- package/typedoc/enums/core_parse_ast-type.ASTType.html +4 -212
- package/typedoc/enums/router_common_trace.Category.html +4 -80
- package/typedoc/enums/router_transition_interface.TransitionHookPhase.html +4 -73
- package/typedoc/enums/router_transition_interface.TransitionHookScope.html +4 -40
- package/typedoc/enums/router_transition_reject-factory.RejectType.html +4 -80
- package/typedoc/functions/animations_animate-cache.animateCache.html +4 -84
- package/typedoc/functions/animations_animate-children-directive.__AnimateChildrenDirective.html +4 -29
- package/typedoc/functions/animations_animate-swap.ngAnimateSwapDirective.html +4 -29
- package/typedoc/functions/animations_shared.applyAnimationClassesFactory.html +4 -18
- package/typedoc/functions/animations_shared.applyAnimationFromStyles.html +4 -18
- package/typedoc/functions/animations_shared.applyAnimationStyles.html +4 -18
- package/typedoc/functions/animations_shared.applyAnimationToStyles.html +4 -18
- package/typedoc/functions/animations_shared.applyGeneratedPreparationClasses.html +4 -18
- package/typedoc/functions/animations_shared.applyInlineStyle.html +4 -18
- package/typedoc/functions/animations_shared.assertArg.html +4 -18
- package/typedoc/functions/animations_shared.blockKeyframeAnimations.html +4 -18
- package/typedoc/functions/animations_shared.clearGeneratedClasses.html +4 -18
- package/typedoc/functions/animations_shared.concatWithSpace.html +4 -18
- package/typedoc/functions/animations_shared.extractElementNode.html +4 -18
- package/typedoc/functions/animations_shared.mergeAnimationDetails.html +4 -18
- package/typedoc/functions/animations_shared.mergeClasses.html +4 -18
- package/typedoc/functions/animations_shared.packageStyles.html +4 -18
- package/typedoc/functions/animations_shared.pendClasses.html +4 -18
- package/typedoc/functions/animations_shared.prepareAnimationOptions.html +4 -18
- package/typedoc/functions/animations_shared.removeFromArray.html +4 -18
- package/typedoc/functions/animations_shared.resolveElementClasses.html +4 -18
- package/typedoc/functions/animations_shared.stripCommentsFromElement.html +4 -18
- package/typedoc/functions/core_controller_controller.identifierForController.html +4 -18
- package/typedoc/functions/core_di_injector.annotate.html +4 -18
- package/typedoc/functions/core_di_injector.createInjector.html +4 -18
- package/typedoc/functions/core_location_location.serverBase.html +4 -18
- package/typedoc/functions/core_location_location.stripBaseUrl.html +4 -18
- package/typedoc/functions/core_location_location.stripFile.html +4 -18
- package/typedoc/functions/core_location_location.stripHash.html +4 -18
- package/typedoc/functions/core_parse_interpreter.isAssignable.html +4 -18
- package/typedoc/functions/core_parse_parse.constantWatchDelegate.html +4 -18
- package/typedoc/functions/core_sce_sce.adjustMatcher.html +4 -18
- package/typedoc/functions/core_sce_sce.escapeForRegexp.html +4 -18
- package/typedoc/functions/core_scope_scope.createScope.html +4 -18
- package/typedoc/functions/core_scope_scope.nextId.html +4 -18
- package/typedoc/functions/core_url-utils_url-utils.getBaseUrl.html +4 -18
- package/typedoc/functions/core_url-utils_url-utils.urlIsAllowedOriginFactory.html +4 -18
- package/typedoc/functions/core_url-utils_url-utils.urlIsSameOrigin.html +4 -18
- package/typedoc/functions/core_url-utils_url-utils.urlIsSameOriginAsBaseUrl.html +4 -18
- package/typedoc/functions/core_url-utils_url-utils.urlResolve.html +4 -18
- package/typedoc/functions/core_url-utils_url-utils.urlsAreSameOrigin.html +4 -18
- package/typedoc/functions/directive_aria_aria.ngCheckedAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngClickAriaDirective.html +6 -31
- package/typedoc/functions/directive_aria_aria.ngDblclickAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngDisabledAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngHideAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngMessagesAriaDirective.html +4 -18
- package/typedoc/functions/directive_aria_aria.ngModelAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngReadonlyAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngRequiredAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngShowAriaDirective.html +4 -29
- package/typedoc/functions/directive_aria_aria.ngValueAriaDirective.html +4 -29
- package/typedoc/functions/directive_bind_bind.ngBindDirective.html +4 -18
- package/typedoc/functions/directive_bind_bind.ngBindHtmlDirective.html +4 -29
- package/typedoc/functions/directive_bind_bind.ngBindTemplateDirective.html +4 -18
- package/typedoc/functions/directive_channel_channel.ngChannelDirective.html +4 -18
- package/typedoc/functions/directive_cloak_cloak.ngCloakDirective.html +4 -18
- package/typedoc/functions/directive_controller_controller.ngControllerDirective.html +4 -18
- package/typedoc/functions/directive_events_events.createEventDirective.html +4 -18
- package/typedoc/functions/directive_form_form.setupValidity.html +4 -18
- package/typedoc/functions/directive_if_if.ngIfDirective.html +4 -29
- package/typedoc/functions/directive_include_include.ngIncludeDirective.html +33 -178
- package/typedoc/functions/directive_include_include.ngIncludeFillContentDirective.html +4 -29
- package/typedoc/functions/directive_init_init.ngInitDirective.html +4 -18
- package/typedoc/functions/directive_input_input.badInputChecker.html +4 -18
- package/typedoc/functions/directive_input_input.countDecimals.html +4 -18
- package/typedoc/functions/directive_input_input.createDateInputType.html +4 -18
- package/typedoc/functions/directive_input_input.createDateParser.html +4 -18
- package/typedoc/functions/directive_input_input.hiddenInputBrowserCacheDirective.html +4 -18
- package/typedoc/functions/directive_input_input.inputDirective.html +4 -29
- package/typedoc/functions/directive_input_input.isNumberInteger.html +4 -18
- package/typedoc/functions/directive_input_input.isValidForStep.html +4 -18
- package/typedoc/functions/directive_input_input.ngValueDirective.html +4 -18
- package/typedoc/functions/directive_input_input.numberFormatterParser.html +4 -18
- package/typedoc/functions/directive_input_input.numberInputType.html +4 -18
- package/typedoc/functions/directive_input_input.rangeInputType.html +4 -18
- package/typedoc/functions/directive_input_input.weekParser.html +4 -18
- package/typedoc/functions/directive_messages_messages.ngMessagesDirective.html +4 -29
- package/typedoc/functions/directive_messages_messages.ngMessagesIncludeDirective.html +4 -29
- package/typedoc/functions/directive_model-options_model-options.ngModelOptionsDirective.html +4 -18
- package/typedoc/functions/directive_model_model.ngModelDirective.html +4 -18
- package/typedoc/functions/directive_non-bindable_non-bindable.ngNonBindableDirective.html +4 -18
- package/typedoc/functions/directive_observe_observe.ngObserveDirective.html +4 -18
- package/typedoc/functions/directive_ref_ref.ngRefDirective.html +4 -29
- package/typedoc/functions/directive_repeat_repeat.ngRepeatDirective.html +4 -29
- package/typedoc/functions/directive_script_script.scriptDirective.html +4 -29
- package/typedoc/functions/directive_select_select.optionDirective.html +4 -29
- package/typedoc/functions/directive_select_select.selectDirective.html +4 -18
- package/typedoc/functions/directive_setter_setter.ngSetterDirective.html +4 -29
- package/typedoc/functions/directive_show-hide_show-hide.ngHideDirective.html +4 -29
- package/typedoc/functions/directive_show-hide_show-hide.ngShowDirective.html +4 -29
- package/typedoc/functions/directive_style_style.ngStyleDirective.html +4 -18
- package/typedoc/functions/directive_switch_switch.ngSwitchDefaultDirective.html +4 -18
- package/typedoc/functions/directive_switch_switch.ngSwitchDirective.html +4 -29
- package/typedoc/functions/directive_switch_switch.ngSwitchWhenDirective.html +4 -18
- package/typedoc/functions/filters_filter.filterFilter.html +4 -18
- package/typedoc/functions/filters_filters.formatNumber.html +4 -18
- package/typedoc/functions/filters_filters.jsonFilter.html +4 -18
- package/typedoc/functions/filters_limit-to.limitToFilter.html +4 -18
- package/typedoc/functions/filters_order-by.orderByFilter.html +4 -29
- package/typedoc/functions/public.publishExternalAPI.html +6 -24
- package/typedoc/functions/router_common_glob.hasGlobs.html +4 -18
- package/typedoc/functions/router_directives_state-directives._StateRefActiveDirective.html +4 -29
- package/typedoc/functions/router_directives_state-directives._StateRefDirective.html +4 -29
- package/typedoc/functions/router_directives_state-directives._StateRefDynamicDirective.html +4 -29
- package/typedoc/functions/router_directives_view-directive._ViewDirectiveFill.html +4 -39
- package/typedoc/functions/router_hooks_core-resolvables.registerAddCoreResolvables.html +4 -18
- package/typedoc/functions/router_hooks_core-resolvables.treeChangesCleanup.html +4 -18
- package/typedoc/functions/router_hooks_ignored-transition.registerIgnoredTransitionHook.html +4 -18
- package/typedoc/functions/router_hooks_invalid-transition.registerInvalidTransitionHook.html +4 -18
- package/typedoc/functions/router_hooks_lazy-load.lazyLoadState.html +4 -18
- package/typedoc/functions/router_hooks_lazy-load.registerLazyLoadHook.html +4 -18
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnEnterHook.html +4 -18
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnExitHook.html +4 -18
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnRetainHook.html +4 -18
- package/typedoc/functions/router_hooks_redirect-to.registerRedirectToHook.html +4 -18
- package/typedoc/functions/router_hooks_resolve.registerEagerResolvePath.html +4 -18
- package/typedoc/functions/router_hooks_resolve.registerLazyResolveState.html +4 -18
- package/typedoc/functions/router_hooks_resolve.registerResolveRemaining.html +4 -18
- package/typedoc/functions/router_hooks_update-globals.registerUpdateGlobalState.html +4 -18
- package/typedoc/functions/router_hooks_url.registerUpdateUrl.html +4 -18
- package/typedoc/functions/router_hooks_views.registerActivateViews.html +4 -18
- package/typedoc/functions/router_hooks_views.registerLoadEnteringViews.html +4 -18
- package/typedoc/functions/router_path_path-utils.makeTargetState.html +4 -18
- package/typedoc/functions/router_state-filters._IncludedByStateFilter.html +4 -29
- package/typedoc/functions/router_state-filters._IsStateFilter.html +4 -29
- package/typedoc/functions/router_state_state-builder.resolvablesBuilder.html +4 -18
- package/typedoc/functions/router_state_state-registry.getLocals.html +4 -18
- package/typedoc/functions/router_state_views.getViewConfigFactory.html +4 -18
- package/typedoc/functions/router_state_views.ng1ViewsBuilder.html +4 -18
- package/typedoc/functions/router_transition_hook-registry.makeEvent.html +4 -18
- package/typedoc/functions/router_transition_hook-registry.matchState.html +4 -18
- package/typedoc/functions/services_browser.trimEmptyHash.html +4 -18
- package/typedoc/functions/services_cookie-reader.getCookies.html +4 -18
- package/typedoc/functions/services_http-backend_http-backend.createHttpBackend.html +4 -18
- package/typedoc/functions/services_http_http.defaultHttpResponseTransform.html +4 -18
- package/typedoc/functions/shared_common._removeFrom.html +4 -18
- package/typedoc/functions/shared_common.allTrueR.html +4 -18
- package/typedoc/functions/shared_common.ancestors.html +4 -18
- package/typedoc/functions/shared_common.anyTrueR.html +4 -18
- package/typedoc/functions/shared_common.applyPairs.html +4 -18
- package/typedoc/functions/shared_common.arrayTuples.html +4 -18
- package/typedoc/functions/shared_common.assertFn.html +4 -18
- package/typedoc/functions/shared_common.copy.html +4 -18
- package/typedoc/functions/shared_common.createProxyFunctions.html +4 -18
- package/typedoc/functions/shared_common.defaults.html +4 -18
- package/typedoc/functions/shared_common.deregAll.html +4 -18
- package/typedoc/functions/shared_common.equals.html +4 -18
- package/typedoc/functions/shared_common.filter.html +4 -18
- package/typedoc/functions/shared_common.find.html +4 -18
- package/typedoc/functions/shared_common.flatten.html +4 -18
- package/typedoc/functions/shared_common.flattenR.html +4 -18
- package/typedoc/functions/shared_common.inherit.html +4 -18
- package/typedoc/functions/shared_common.map.html +4 -18
- package/typedoc/functions/shared_common.omit.html +4 -18
- package/typedoc/functions/shared_common.pairs.html +4 -18
- package/typedoc/functions/shared_common.pick.html +4 -18
- package/typedoc/functions/shared_common.pushR.html +4 -18
- package/typedoc/functions/shared_common.silenceUncaughtInPromise.html +4 -18
- package/typedoc/functions/shared_common.silentRejection.html +4 -18
- package/typedoc/functions/shared_common.tail.html +4 -18
- package/typedoc/functions/shared_common.uniqR.html +4 -18
- package/typedoc/functions/shared_common.unnest.html +4 -18
- package/typedoc/functions/shared_common.unnestR.html +4 -18
- package/typedoc/functions/shared_dom.appendNodesToElement.html +4 -18
- package/typedoc/functions/shared_dom.buildFragment.html +4 -18
- package/typedoc/functions/shared_dom.cleanElementData.html +4 -18
- package/typedoc/functions/shared_dom.createElementFromHTML.html +4 -18
- package/typedoc/functions/shared_dom.createNodelistFromHTML.html +4 -18
- package/typedoc/functions/shared_dom.dealoc.html +4 -18
- package/typedoc/functions/shared_dom.deleteCacheData.html +4 -18
- package/typedoc/functions/shared_dom.domInsert.html +4 -18
- package/typedoc/functions/shared_dom.emptyElement.html +4 -18
- package/typedoc/functions/shared_dom.getBlockNodes.html +4 -18
- package/typedoc/functions/shared_dom.getBooleanAttrName.html +4 -18
- package/typedoc/functions/shared_dom.getCacheData.html +4 -18
- package/typedoc/functions/shared_dom.getController.html +4 -18
- package/typedoc/functions/shared_dom.getExpando.html +4 -18
- package/typedoc/functions/shared_dom.getInheritedData.html +4 -18
- package/typedoc/functions/shared_dom.getInjector.html +4 -18
- package/typedoc/functions/shared_dom.getIsolateScope.html +4 -18
- package/typedoc/functions/shared_dom.getOrSetCacheData.html +4 -18
- package/typedoc/functions/shared_dom.getScope.html +4 -18
- package/typedoc/functions/shared_dom.isRoot.html +4 -18
- package/typedoc/functions/shared_dom.isTextNode.html +4 -18
- package/typedoc/functions/shared_dom.kebabToCamel.html +4 -18
- package/typedoc/functions/shared_dom.parseHtml.html +4 -18
- package/typedoc/functions/shared_dom.removeElement.html +4 -18
- package/typedoc/functions/shared_dom.removeElementData.html +4 -18
- package/typedoc/functions/shared_dom.setCacheData.html +4 -18
- package/typedoc/functions/shared_dom.setInheritedData.html +4 -18
- package/typedoc/functions/shared_dom.setIsolateScope.html +4 -18
- package/typedoc/functions/shared_dom.setScope.html +4 -18
- package/typedoc/functions/shared_dom.snakeToCamel.html +4 -18
- package/typedoc/functions/shared_dom.startingTag.html +4 -18
- package/typedoc/functions/shared_hof.all.html +4 -18
- package/typedoc/functions/shared_hof.compose.html +4 -18
- package/typedoc/functions/shared_hof.curry.html +4 -18
- package/typedoc/functions/shared_hof.is.html +4 -18
- package/typedoc/functions/shared_hof.or.html +4 -18
- package/typedoc/functions/shared_hof.parse.html +4 -18
- package/typedoc/functions/shared_hof.pattern.html +4 -18
- package/typedoc/functions/shared_hof.pipe.html +4 -18
- package/typedoc/functions/shared_hof.val.html +4 -18
- package/typedoc/functions/shared_predicates.isInjectable.html +4 -18
- package/typedoc/functions/shared_predicates.isPromise.html +4 -18
- package/typedoc/functions/shared_strings.beforeAfterSubstr.html +4 -18
- package/typedoc/functions/shared_strings.fnToString.html +4 -18
- package/typedoc/functions/shared_strings.functionToString.html +4 -18
- package/typedoc/functions/shared_strings.joinNeighborsR.html +4 -18
- package/typedoc/functions/shared_strings.kebobString.html +4 -18
- package/typedoc/functions/shared_strings.maxLength.html +4 -18
- package/typedoc/functions/shared_strings.padString.html +4 -18
- package/typedoc/functions/shared_strings.splitOnDelim.html +4 -18
- package/typedoc/functions/shared_strings.stringify.html +4 -18
- package/typedoc/functions/shared_strings.stripLastPathElement.html +4 -18
- package/typedoc/functions/shared_strings.trimHashVal.html +4 -18
- package/typedoc/functions/shared_test-utils.bootstrap.html +4 -18
- package/typedoc/functions/shared_test-utils.browserTrigger.html +4 -18
- package/typedoc/functions/shared_test-utils.wait.html +4 -18
- package/typedoc/functions/shared_utils.addDateMinutes.html +4 -18
- package/typedoc/functions/shared_utils.arrayRemove.html +4 -18
- package/typedoc/functions/shared_utils.assert.html +4 -18
- package/typedoc/functions/shared_utils.assertArg.html +4 -18
- package/typedoc/functions/shared_utils.assertArgFn.html +4 -18
- package/typedoc/functions/shared_utils.assertNotHasOwnProperty.html +4 -18
- package/typedoc/functions/shared_utils.baseExtend.html +4 -18
- package/typedoc/functions/shared_utils.bind.html +4 -18
- package/typedoc/functions/shared_utils.concat.html +4 -18
- package/typedoc/functions/shared_utils.convertTimezoneToLocal.html +4 -18
- package/typedoc/functions/shared_utils.csp.html +4 -18
- package/typedoc/functions/shared_utils.directiveNormalize.html +4 -18
- package/typedoc/functions/shared_utils.encodeUriQuery.html +4 -18
- package/typedoc/functions/shared_utils.encodeUriSegment.html +4 -18
- package/typedoc/functions/shared_utils.equals.html +4 -18
- package/typedoc/functions/shared_utils.errorHandlingConfig.html +4 -18
- package/typedoc/functions/shared_utils.extend.html +4 -18
- package/typedoc/functions/shared_utils.fromJson.html +4 -18
- package/typedoc/functions/shared_utils.getNgAttribute.html +4 -18
- package/typedoc/functions/shared_utils.getNodeName.html +4 -18
- package/typedoc/functions/shared_utils.hasAnimate.html +4 -18
- package/typedoc/functions/shared_utils.hasCustomToString.html +4 -18
- package/typedoc/functions/shared_utils.hasOwn.html +4 -18
- package/typedoc/functions/shared_utils.hashKey.html +4 -18
- package/typedoc/functions/shared_utils.includes.html +4 -18
- package/typedoc/functions/shared_utils.inherit.html +4 -18
- package/typedoc/functions/shared_utils.isArrayBuffer.html +4 -18
- package/typedoc/functions/shared_utils.isArrayLike.html +7 -18
- package/typedoc/functions/shared_utils.isBlankObject.html +8 -18
- package/typedoc/functions/shared_utils.isBlob.html +4 -18
- package/typedoc/functions/shared_utils.isBoolean.html +4 -18
- package/typedoc/functions/shared_utils.isDate.html +4 -18
- package/typedoc/functions/shared_utils.isDefined.html +4 -18
- package/typedoc/functions/shared_utils.isElement.html +4 -18
- package/typedoc/functions/shared_utils.isError.html +4 -18
- package/typedoc/functions/shared_utils.isFile.html +4 -18
- package/typedoc/functions/shared_utils.isFormData.html +4 -18
- package/typedoc/functions/shared_utils.isFunction.html +4 -18
- package/typedoc/functions/shared_utils.isNull.html +4 -18
- package/typedoc/functions/shared_utils.isNullOrUndefined.html +4 -18
- package/typedoc/functions/shared_utils.isNumber.html +4 -18
- package/typedoc/functions/shared_utils.isNumberNaN.html +4 -18
- package/typedoc/functions/shared_utils.isObject.html +4 -18
- package/typedoc/functions/shared_utils.isObjectEmpty.html +4 -18
- package/typedoc/functions/shared_utils.isPromiseLike.html +4 -18
- package/typedoc/functions/shared_utils.isProxy.html +4 -18
- package/typedoc/functions/shared_utils.isRegExp.html +4 -18
- package/typedoc/functions/shared_utils.isScope.html +4 -18
- package/typedoc/functions/shared_utils.isString.html +4 -18
- package/typedoc/functions/shared_utils.isTypedArray.html +4 -18
- package/typedoc/functions/shared_utils.isUndefined.html +4 -18
- package/typedoc/functions/shared_utils.isValidObjectMaxDepth.html +4 -18
- package/typedoc/functions/shared_utils.isWindow.html +4 -18
- package/typedoc/functions/shared_utils.lowercase.html +4 -18
- package/typedoc/functions/shared_utils.mergeClasses.html +4 -18
- package/typedoc/functions/shared_utils.minErr.html +4 -18
- package/typedoc/functions/shared_utils.nextUid.html +4 -18
- package/typedoc/functions/shared_utils.parseKeyValue.html +4 -18
- package/typedoc/functions/shared_utils.setHashKey.html +4 -18
- package/typedoc/functions/shared_utils.shallowCopy.html +4 -18
- package/typedoc/functions/shared_utils.simpleCompare.html +4 -18
- package/typedoc/functions/shared_utils.sliceArgs.html +4 -18
- package/typedoc/functions/shared_utils.snakeCase.html +4 -18
- package/typedoc/functions/shared_utils.stringify.html +4 -18
- package/typedoc/functions/shared_utils.timezoneToOffset.html +4 -18
- package/typedoc/functions/shared_utils.toDebugString.html +4 -18
- package/typedoc/functions/shared_utils.toInt.html +4 -18
- package/typedoc/functions/shared_utils.toJson.html +4 -18
- package/typedoc/functions/shared_utils.toKeyValue.html +4 -18
- package/typedoc/functions/shared_utils.trim.html +4 -18
- package/typedoc/functions/shared_utils.tryDecodeURIComponent.html +9 -19
- package/typedoc/functions/shared_utils.uppercase.html +4 -18
- package/typedoc/hierarchy.html +8 -11
- package/typedoc/index.html +5 -8
- package/typedoc/interfaces/animations_animate.AnimationOptions.html +4 -62
- package/typedoc/interfaces/animations_raf-scheduler.ServiceProvider.html +5 -30
- package/typedoc/interfaces/core_cache_cache.ExpandoStore.html +4 -51
- package/typedoc/interfaces/core_compile_compile.LinkFnMapping.html +4 -51
- package/typedoc/interfaces/core_compile_compile.NodeLinkFnCtx.html +4 -84
- package/typedoc/interfaces/core_compile_compile.SimpleChange.html +4 -40
- package/typedoc/interfaces/core_location_location.DefaultPorts.html +4 -51
- package/typedoc/interfaces/core_location_location.Html5Mode.html +4 -51
- package/typedoc/interfaces/core_parse_ast_ast.Token.html +4 -84
- package/typedoc/interfaces/core_parse_interface.CompiledExpressionHandlerMap.html +4 -73
- package/typedoc/interfaces/core_parse_interface.CompiledExpressionProps.html +5 -107
- package/typedoc/interfaces/core_parse_lexer_lexer.LexerOptions.html +4 -40
- package/typedoc/interfaces/core_parse_parser_parser.ParsedAST.html +4 -29
- package/typedoc/interfaces/core_sanitize_interface.SanitizerFn.html +4 -18
- package/typedoc/interfaces/core_scope_scope.AsyncQueueTask.html +4 -51
- package/typedoc/interfaces/core_scope_scope.Listener.html +4 -106
- package/typedoc/interfaces/directive_model-options_model-options.ModelOptionsConfig.html +4 -73
- package/typedoc/interfaces/interface.ChangesObject.html +4 -40
- package/typedoc/interfaces/interface.ComponentOptions.html +4 -95
- package/typedoc/interfaces/interface.Controller.html +5 -74
- package/typedoc/interfaces/interface.Directive.html +6 -207
- package/typedoc/interfaces/interface.DirectivePrePost.html +4 -40
- package/typedoc/interfaces/interface.NgModelController.html +4 -172
- package/typedoc/interfaces/interface.NgModelOptions.html +4 -95
- package/typedoc/interfaces/interface.Provider.html +4 -84
- package/typedoc/interfaces/interface.TranscludeFunctionObject.html +4 -51
- package/typedoc/interfaces/loader.AngularBootstrapConfig.html +4 -29
- package/typedoc/interfaces/router_params_interface.ParamDeclaration.html +4 -117
- package/typedoc/interfaces/router_params_interface.ParamTypeDefinition.html +4 -106
- package/typedoc/interfaces/router_params_interface.RawParams.html +4 -18
- package/typedoc/interfaces/router_params_interface.Replace.html +4 -40
- package/typedoc/interfaces/router_resolve_interface.CustomAsyncPolicy.html +4 -18
- package/typedoc/interfaces/router_resolve_interface.ProviderLike.html +4 -84
- package/typedoc/interfaces/router_resolve_interface.ResolvableLiteral.html +4 -73
- package/typedoc/interfaces/router_resolve_interface.ResolvePolicy.html +4 -40
- package/typedoc/interfaces/router_state_interface.HrefOptions.html +4 -62
- package/typedoc/interfaces/router_state_interface.LazyLoadResult.html +4 -29
- package/typedoc/interfaces/router_state_interface.StateDeclaration.html +11 -212
- package/typedoc/interfaces/router_state_interface.TargetStateDef.html +4 -51
- package/typedoc/interfaces/router_state_interface.TransitionPromise.html +5 -54
- package/typedoc/interfaces/router_state_interface.ViewDeclaration.html +4 -183
- package/typedoc/interfaces/router_template-factory.BindingTuple.html +4 -40
- package/typedoc/interfaces/router_transition_interface.HookMatchCriteria.html +4 -73
- package/typedoc/interfaces/router_transition_interface.HookRegOptions.html +4 -51
- package/typedoc/interfaces/router_transition_interface.IHookRegistry.html +4 -128
- package/typedoc/interfaces/router_transition_interface.IMatchingNodes.html +4 -73
- package/typedoc/interfaces/router_transition_interface.PathType.html +4 -40
- package/typedoc/interfaces/router_transition_interface.PathTypes.html +4 -73
- package/typedoc/interfaces/router_transition_interface.RegisteredHooks.html +4 -18
- package/typedoc/interfaces/router_transition_interface.TransitionCreateHookFn.html +4 -18
- package/typedoc/interfaces/router_transition_interface.TransitionHookFn.html +4 -18
- package/typedoc/interfaces/router_transition_interface.TransitionHookOptions.html +4 -95
- package/typedoc/interfaces/router_transition_interface.TransitionOptions.html +4 -139
- package/typedoc/interfaces/router_transition_interface.TransitionStateHookFn.html +4 -18
- package/typedoc/interfaces/router_transition_interface.TreeChanges.html +4 -84
- package/typedoc/interfaces/router_view_interface.ActiveUIView.html +4 -84
- package/typedoc/interfaces/router_view_interface.ViewConfig.html +4 -73
- package/typedoc/interfaces/router_view_interface.ViewContext.html +4 -40
- package/typedoc/interfaces/services_anchor-scroll.AnchorScrollObject.html +4 -29
- package/typedoc/interfaces/services_log.LogService.html +4 -80
- package/typedoc/interfaces/shared_interface.TypedMap.html +4 -18
- package/typedoc/interfaces/shared_utils.ErrorHandlingConfig.html +4 -40
- package/typedoc/modules/animations_animate-cache.html +4 -7
- package/typedoc/modules/animations_animate-children-directive.html +4 -9
- package/typedoc/modules/animations_animate-css-driver.html +4 -7
- package/typedoc/modules/animations_animate-css.html +4 -7
- package/typedoc/modules/animations_animate-js-driver.html +4 -7
- package/typedoc/modules/animations_animate-js.html +4 -7
- package/typedoc/modules/animations_animate-queue.html +4 -7
- package/typedoc/modules/animations_animate-runner.html +4 -7
- package/typedoc/modules/animations_animate-swap.html +4 -7
- package/typedoc/modules/animations_animate.html +4 -7
- package/typedoc/modules/animations_animation.html +4 -7
- package/typedoc/modules/animations_interface.html +4 -7
- package/typedoc/modules/animations_raf-scheduler.html +4 -7
- package/typedoc/modules/animations_shared.html +4 -7
- package/typedoc/modules/core_cache_cache-factory.html +4 -7
- package/typedoc/modules/core_cache_cache.html +4 -7
- package/typedoc/modules/core_compile_attributes.html +4 -7
- package/typedoc/modules/core_compile_compile.html +4 -7
- package/typedoc/modules/core_controller_controller.html +4 -7
- package/typedoc/modules/core_di_injector.html +4 -65
- package/typedoc/modules/core_di_internal-injector.html +4 -7
- package/typedoc/modules/core_di_ng-module.html +4 -34
- package/typedoc/modules/core_error-handler.html +4 -7
- package/typedoc/modules/core_exception-handler.html +4 -7
- package/typedoc/modules/core_filter_filter.html +4 -7
- package/typedoc/modules/core_interpolate_interpolate.html +4 -7
- package/typedoc/modules/core_location_location.html +4 -7
- package/typedoc/modules/core_parse_ast-type.html +4 -7
- package/typedoc/modules/core_parse_ast_ast-node.html +4 -7
- package/typedoc/modules/core_parse_ast_ast.html +4 -7
- package/typedoc/modules/core_parse_interface.html +4 -7
- package/typedoc/modules/core_parse_interpreter.html +4 -7
- package/typedoc/modules/core_parse_lexer_lexer.html +4 -7
- package/typedoc/modules/core_parse_lexer_token.html +4 -7
- package/typedoc/modules/core_parse_parse.html +4 -7
- package/typedoc/modules/core_parse_parser_parser.html +4 -7
- package/typedoc/modules/core_pubsub_pubsub.html +95 -7
- package/typedoc/modules/core_sanitize_interface.html +4 -7
- package/typedoc/modules/core_sanitize_sanitize-uri.html +4 -7
- package/typedoc/modules/core_sce_sce.html +4 -7
- package/typedoc/modules/core_scope_scope.html +4 -7
- package/typedoc/modules/core_task-tracker-factory.html +134 -7
- package/typedoc/modules/core_url-utils_url-utils.html +4 -7
- package/typedoc/modules/directive_aria_aria.html +4 -7
- package/typedoc/modules/directive_attrs_attrs.html +4 -7
- package/typedoc/modules/directive_bind_bind.html +4 -7
- package/typedoc/modules/directive_channel_channel.html +4 -7
- package/typedoc/modules/directive_class_class.html +4 -7
- package/typedoc/modules/directive_cloak_cloak.html +4 -7
- package/typedoc/modules/directive_controller_controller.html +4 -7
- package/typedoc/modules/directive_events_events.html +4 -7
- package/typedoc/modules/directive_form_form.html +4 -7
- package/typedoc/modules/directive_if_if.html +4 -7
- package/typedoc/modules/directive_include_include.html +4 -7
- package/typedoc/modules/directive_init_init.html +4 -7
- package/typedoc/modules/directive_input_input.html +4 -7
- package/typedoc/modules/directive_messages_messages.html +4 -7
- package/typedoc/modules/directive_model-options_model-options.html +4 -9
- package/typedoc/modules/directive_model_model.html +4 -7
- package/typedoc/modules/directive_non-bindable_non-bindable.html +4 -9
- package/typedoc/modules/directive_observe_observe.html +4 -7
- package/typedoc/modules/directive_options_options.html +4 -7
- package/typedoc/modules/directive_ref_ref.html +4 -7
- package/typedoc/modules/directive_repeat_repeat.html +4 -7
- package/typedoc/modules/directive_script_script.html +4 -7
- package/typedoc/modules/directive_select_select.html +4 -7
- package/typedoc/modules/directive_setter_setter.html +4 -7
- package/typedoc/modules/directive_show-hide_show-hide.html +4 -7
- package/typedoc/modules/directive_style_style.html +4 -7
- package/typedoc/modules/directive_switch_switch.html +4 -7
- package/typedoc/modules/directive_transclude_transclude.html +4 -7
- package/typedoc/modules/directive_validators_validators.html +4 -7
- package/typedoc/modules/filters_filter.html +4 -7
- package/typedoc/modules/filters_filters.html +4 -7
- package/typedoc/modules/filters_limit-to.html +4 -7
- package/typedoc/modules/filters_order-by.html +4 -7
- package/typedoc/modules/index.html +4 -84
- package/typedoc/{variables/index.angular.html → modules/injection-tokens.html} +84 -30
- package/typedoc/modules/interface.html +35 -36
- package/typedoc/modules/loader.html +4 -7
- package/typedoc/modules/public.html +4 -7
- package/typedoc/modules/router_common_glob.html +4 -7
- package/typedoc/modules/router_common_queue.html +4 -7
- package/typedoc/modules/router_common_trace.html +4 -7
- package/typedoc/modules/router_directives_state-directives.html +4 -7
- package/typedoc/modules/router_directives_view-directive.html +4 -7
- package/typedoc/modules/router_globals.html +4 -7
- package/typedoc/modules/router_hooks_core-resolvables.html +4 -7
- package/typedoc/modules/router_hooks_ignored-transition.html +4 -7
- package/typedoc/modules/router_hooks_invalid-transition.html +4 -7
- package/typedoc/modules/router_hooks_lazy-load.html +4 -7
- package/typedoc/modules/router_hooks_on-enter-exit-retain.html +4 -7
- package/typedoc/modules/router_hooks_redirect-to.html +4 -7
- package/typedoc/modules/router_hooks_resolve.html +4 -7
- package/typedoc/modules/router_hooks_update-globals.html +4 -7
- package/typedoc/modules/router_hooks_url.html +4 -7
- package/typedoc/modules/router_hooks_views.html +4 -7
- package/typedoc/modules/router_params_interface.html +4 -7
- package/typedoc/modules/router_params_param-factory.html +4 -7
- package/typedoc/modules/router_params_param-type.html +4 -7
- package/typedoc/modules/router_params_param-types.html +4 -7
- package/typedoc/modules/router_params_param.html +4 -7
- package/typedoc/modules/router_params_state-params.html +4 -7
- package/typedoc/modules/router_path_path-node.html +4 -7
- package/typedoc/modules/router_path_path-utils.html +4 -7
- package/typedoc/modules/router_resolve_interface.html +4 -7
- package/typedoc/modules/router_resolve_resolvable.html +4 -7
- package/typedoc/modules/router_resolve_resolve-context.html +4 -7
- package/typedoc/modules/router_state-filters.html +4 -7
- package/typedoc/modules/router_state-provider.html +4 -7
- package/typedoc/modules/router_state_interface.html +4 -7
- package/typedoc/modules/router_state_state-builder.html +4 -7
- package/typedoc/modules/router_state_state-matcher.html +4 -7
- package/typedoc/modules/router_state_state-object.html +4 -7
- package/typedoc/modules/router_state_state-queue-manager.html +4 -7
- package/typedoc/modules/router_state_state-registry.html +4 -7
- package/typedoc/modules/router_state_state-service.html +4 -7
- package/typedoc/modules/router_state_target-state.html +4 -7
- package/typedoc/modules/router_state_views.html +4 -7
- package/typedoc/modules/router_template-factory.html +4 -7
- package/typedoc/modules/router_transition_hook-builder.html +4 -7
- package/typedoc/modules/router_transition_hook-registry.html +4 -7
- package/typedoc/modules/router_transition_interface.html +4 -7
- package/typedoc/modules/router_transition_reject-factory.html +4 -7
- package/typedoc/modules/router_transition_transition-event-type.html +4 -9
- package/typedoc/modules/router_transition_transition-hook.html +4 -7
- package/typedoc/modules/router_transition_transition-service.html +4 -9
- package/typedoc/modules/router_transition_transition.html +4 -7
- package/typedoc/modules/router_url_url-config.html +4 -7
- package/typedoc/modules/router_url_url-matcher.html +4 -7
- package/typedoc/modules/router_url_url-rule.html +4 -7
- package/typedoc/modules/router_url_url-rules.html +4 -7
- package/typedoc/modules/router_url_url-service.html +4 -7
- package/typedoc/modules/router_view-scroll.html +4 -7
- package/typedoc/modules/router_view_interface.html +4 -7
- package/typedoc/modules/router_view_view.html +4 -7
- package/typedoc/modules/services_anchor-scroll.html +4 -7
- package/typedoc/modules/services_browser.html +4 -7
- package/typedoc/modules/services_cookie-reader.html +4 -7
- package/typedoc/modules/services_http-backend_http-backend.html +4 -7
- package/typedoc/modules/services_http_http.html +4 -7
- package/typedoc/modules/services_log.html +4 -7
- package/typedoc/modules/services_template-request.html +4 -7
- package/typedoc/modules/shared_common.html +4 -7
- package/typedoc/modules/shared_constants.html +4 -7
- package/typedoc/modules/shared_dom.html +4 -7
- package/typedoc/modules/shared_hof.html +4 -7
- package/typedoc/modules/shared_interface.html +4 -7
- package/typedoc/modules/shared_noderef.html +4 -7
- package/typedoc/modules/shared_predicates.html +4 -7
- package/typedoc/modules/shared_strings.html +4 -7
- package/typedoc/modules/shared_test-utils.html +4 -7
- package/typedoc/modules/shared_utils.html +4 -34
- package/typedoc/modules.html +31 -8
- package/typedoc/types/animations_animate.AnimationMethod.html +4 -18
- package/typedoc/types/animations_interface.RafScheduler.html +4 -40
- package/typedoc/types/core_cache_cache-factory.TemplateCache.html +4 -18
- package/typedoc/types/core_compile_compile.ApplyDirectivesToNodeFn.html +4 -18
- package/typedoc/types/core_compile_compile.BoundTranscludeFn.html +4 -18
- package/typedoc/types/core_compile_compile.CompileFn.html +4 -18
- package/typedoc/types/core_compile_compile.CompileNodesFn.html +4 -18
- package/typedoc/types/core_compile_compile.CompositeLinkFn.html +4 -18
- package/typedoc/types/core_compile_compile.NodeLinkFn.html +4 -18
- package/typedoc/types/core_compile_compile.PublicLinkFn.html +4 -18
- package/typedoc/types/core_compile_compile.TranscludeFn.html +4 -18
- package/typedoc/types/core_error-handler.ErrorHandler.html +4 -18
- package/typedoc/types/core_exception-handler.LogService.html +4 -18
- package/typedoc/types/core_parse_ast_ast-node.ASTNode.html +4 -293
- package/typedoc/types/core_parse_interface.CompiledExpression.html +4 -18
- package/typedoc/types/core_parse_interface.CompiledExpressionFunction.html +7 -20
- package/typedoc/types/core_parse_interface.ParseService.html +7 -20
- package/typedoc/types/core_parse_interpreter.DecoratedASTNode.html +4 -18
- package/typedoc/types/core_scope_scope.ListenerFunction.html +4 -18
- package/typedoc/types/{interface.AnnotatedFactory.html → core_task-tracker-factory.AnnotatedFactory.html} +9 -19
- package/typedoc/types/core_url-utils_url-utils.HttpProtocol.html +4 -18
- package/typedoc/types/interface.CloneAttachFunction.html +4 -18
- package/typedoc/types/interface.ControllerConstructor.html +5 -19
- package/typedoc/types/interface.DirectiveCompileFn.html +4 -18
- package/typedoc/types/interface.DirectiveController.html +4 -18
- package/typedoc/types/interface.DirectiveFactory.html +4 -18
- package/typedoc/types/interface.DirectiveLinkFn.html +4 -18
- package/typedoc/types/interface.Expression.html +4 -18
- package/typedoc/types/interface.FilterFactory.html +4 -18
- package/typedoc/types/interface.FilterFn.html +4 -18
- package/typedoc/types/interface.Injectable.html +5 -19
- package/typedoc/types/interface.InjectableFactory.html +5 -19
- package/typedoc/types/interface.OnChangesObject.html +4 -18
- package/typedoc/types/interface.TController.html +4 -18
- package/typedoc/types/router_resolve_interface.PolicyAsync.html +4 -18
- package/typedoc/types/router_resolve_interface.PolicyWhen.html +4 -18
- package/typedoc/types/router_state_interface.RedirectToResult.html +4 -18
- package/typedoc/types/router_state_interface.ResolveTypes.html +4 -18
- package/typedoc/types/router_state_interface.StateOrName.html +4 -18
- package/typedoc/types/router_state_interface._StateDeclaration.html +4 -18
- package/typedoc/types/router_transition_interface.HookFn.html +4 -18
- package/typedoc/types/router_transition_interface.HookMatchCriterion.html +4 -18
- package/typedoc/types/router_transition_interface.HookResult.html +4 -18
- package/typedoc/types/router_transition_interface.IHookRegistration.html +4 -18
- package/typedoc/types/router_transition_interface.IStateMatch.html +4 -18
- package/typedoc/types/services_anchor-scroll.AnchorScrollFunction.html +4 -18
- package/typedoc/types/services_anchor-scroll.AnchorScrollService.html +4 -18
- package/typedoc/types/services_browser.UrlChangeListener.html +4 -18
- package/typedoc/types/services_log.LogCall.html +4 -18
- package/typedoc/types/shared_interface.Mapper.html +4 -18
- package/typedoc/types/shared_interface.Predicate.html +4 -18
- package/typedoc/types/shared_interface.PredicateBinary.html +4 -18
- package/typedoc/variables/animations_shared.ACTIVE_CLASS_SUFFIX.html +4 -18
- package/typedoc/variables/animations_shared.ADD_CLASS_SUFFIX.html +4 -18
- package/typedoc/variables/animations_shared.ANIMATIONEND_EVENT.html +4 -18
- package/typedoc/variables/animations_shared.ANIMATION_DELAY_PROP.html +4 -18
- package/typedoc/variables/animations_shared.ANIMATION_DURATION_PROP.html +4 -18
- package/typedoc/variables/animations_shared.ANIMATION_ITERATION_COUNT_KEY.html +4 -18
- package/typedoc/variables/animations_shared.ANIMATION_PLAYSTATE_KEY.html +4 -18
- package/typedoc/variables/animations_shared.ANIMATION_PROP.html +4 -18
- package/typedoc/variables/animations_shared.CSS_PREFIX.html +4 -18
- package/typedoc/variables/animations_shared.DELAY_KEY.html +4 -18
- package/typedoc/variables/animations_shared.DURATION_KEY.html +4 -18
- package/typedoc/variables/animations_shared.EVENT_CLASS_PREFIX.html +4 -18
- package/typedoc/variables/animations_shared.NG_ANIMATE_CHILDREN_DATA.html +4 -18
- package/typedoc/variables/animations_shared.NG_ANIMATE_CLASSNAME.html +4 -18
- package/typedoc/variables/animations_shared.PREPARE_CLASS_SUFFIX.html +4 -18
- package/typedoc/variables/animations_shared.PROPERTY_KEY.html +4 -18
- package/typedoc/variables/animations_shared.REMOVE_CLASS_SUFFIX.html +4 -18
- package/typedoc/variables/animations_shared.SAFE_FAST_FORWARD_DURATION_VALUE.html +4 -18
- package/typedoc/variables/animations_shared.TIMING_KEY.html +4 -18
- package/typedoc/variables/animations_shared.TRANSITIONEND_EVENT.html +4 -18
- package/typedoc/variables/animations_shared.TRANSITION_DELAY_PROP.html +4 -18
- package/typedoc/variables/animations_shared.TRANSITION_DURATION_PROP.html +4 -18
- package/typedoc/variables/animations_shared.TRANSITION_PROP.html +4 -18
- package/typedoc/variables/animations_shared.ngMinErr.html +4 -18
- package/typedoc/variables/core_cache_cache.Cache.html +4 -18
- package/typedoc/variables/core_cache_cache.EXPANDO.html +4 -18
- package/typedoc/variables/core_cache_cache.ISOLATE_SCOPE_KEY.html +4 -18
- package/typedoc/variables/core_cache_cache.SCOPE_KEY.html +4 -18
- package/typedoc/variables/core_compile_compile.DirectiveSuffix.html +4 -18
- package/typedoc/variables/core_di_ng-module.ANIMATION_LITERAL.html +4 -18
- package/typedoc/variables/core_di_ng-module.COMPILE_LITERAL.html +4 -18
- package/typedoc/variables/core_di_ng-module.CONTROLLER_LITERAL.html +4 -18
- package/typedoc/variables/core_di_ng-module.FILTER_LITERAL.html +4 -18
- package/typedoc/variables/core_di_ng-module.INJECTOR_LITERAL.html +4 -18
- package/typedoc/variables/core_parse_interpreter.PURITY_ABSOLUTE.html +4 -18
- package/typedoc/variables/core_parse_interpreter.PURITY_RELATIVE.html +4 -18
- package/typedoc/variables/core_pubsub_pubsub.EventBus.html +4 -18
- package/typedoc/variables/core_sce_sce.SCE_CONTEXTS.html +4 -18
- package/typedoc/variables/core_scope_scope.NONSCOPE.html +4 -18
- package/typedoc/variables/core_scope_scope.__applyAsyncQueue.html +4 -18
- package/typedoc/variables/core_scope_scope._postUpdateQueue.html +4 -18
- package/typedoc/variables/directive_attrs_attrs.REGEX_STRING_REGEXP.html +4 -18
- package/typedoc/variables/directive_attrs_attrs.ngAttributeAliasDirectives.html +4 -18
- package/typedoc/variables/directive_class_class.ngClassDirective.html +4 -18
- package/typedoc/variables/directive_class_class.ngClassEvenDirective.html +4 -18
- package/typedoc/variables/directive_class_class.ngClassOddDirective.html +4 -18
- package/typedoc/variables/directive_events_events.ngEventDirectives.html +4 -18
- package/typedoc/variables/directive_form_form.PENDING_CLASS.html +4 -18
- package/typedoc/variables/directive_form_form.formDirective.html +4 -18
- package/typedoc/variables/directive_form_form.ngFormDirective.html +4 -18
- package/typedoc/variables/directive_form_form.nullFormCtrl.html +4 -18
- package/typedoc/variables/directive_input_input.EMAIL_REGEXP.html +4 -18
- package/typedoc/variables/directive_input_input.ISO_DATE_REGEXP.html +4 -18
- package/typedoc/variables/directive_input_input.URL_REGEXP.html +4 -18
- package/typedoc/variables/directive_input_input.VALIDITY_STATE_PROPERTY.html +4 -18
- package/typedoc/variables/directive_messages_messages.ngMessageDefaultDirective.html +4 -18
- package/typedoc/variables/directive_messages_messages.ngMessageDirective.html +4 -18
- package/typedoc/variables/directive_messages_messages.ngMessageExpDirective.html +4 -18
- package/typedoc/variables/directive_model-options_model-options.defaultModelOptions.html +4 -18
- package/typedoc/variables/directive_model_model.ngModelMinErr.html +4 -18
- package/typedoc/variables/directive_options_options.ngOptionsDirective.html +20 -22
- package/typedoc/variables/directive_transclude_transclude.ngTranscludeDirective.html +4 -18
- package/typedoc/variables/directive_validators_validators.maxlengthDirective.html +4 -18
- package/typedoc/variables/directive_validators_validators.minlengthDirective.html +4 -18
- package/typedoc/variables/directive_validators_validators.patternDirective.html +4 -18
- package/typedoc/variables/directive_validators_validators.requiredDirective.html +4 -18
- package/typedoc/variables/{core_di_injector.path.html → injection-tokens._injectTokens.html} +28 -24
- package/typedoc/variables/public.VERSION.html +4 -18
- package/typedoc/variables/router_common_trace.trace.html +4 -18
- package/typedoc/variables/router_directives_view-directive.ngView.html +4 -23
- package/typedoc/variables/router_hooks_resolve.RESOLVE_HOOK_PRIORITY.html +4 -18
- package/typedoc/variables/router_params_param.DefType.html +4 -18
- package/typedoc/variables/router_resolve_resolvable.defaultResolvePolicy.html +4 -18
- package/typedoc/variables/router_resolve_resolve-context.resolvePolicies.html +4 -18
- package/typedoc/variables/router_transition_transition-service.defaultTransOpts.html +4 -18
- package/typedoc/variables/services_log.LogService.html +4 -25
- package/typedoc/variables/shared_common.assertMap.html +4 -18
- package/typedoc/variables/shared_common.assertPredicate.html +4 -18
- package/typedoc/variables/shared_common.pushTo.html +4 -18
- package/typedoc/variables/shared_common.removeFrom.html +4 -18
- package/typedoc/variables/shared_constants.ALIASED_ATTR.html +4 -18
- package/typedoc/variables/shared_constants.DIRTY_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.EMPTY_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.INVALID_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.NOT_EMPTY_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.PREFIX_REGEXP.html +4 -18
- package/typedoc/variables/shared_constants.PRISTINE_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.SPECIAL_CHARS_REGEXP.html +4 -18
- package/typedoc/variables/shared_constants.TOUCHED_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.UNTOUCHED_CLASS.html +4 -18
- package/typedoc/variables/shared_constants.VALID_CLASS.html +4 -18
- package/typedoc/variables/shared_dom.BOOLEAN_ATTR.html +4 -18
- package/typedoc/variables/shared_hof.propEq.html +4 -18
- package/typedoc/variables/shared_strings.hostRegex.html +4 -18
- package/typedoc/variables/shared_strings.splitEqual.html +4 -18
- package/typedoc/variables/shared_strings.splitHash.html +4 -18
- package/typedoc/variables/shared_strings.splitQuery.html +4 -18
- package/typedoc/variables/shared_utils.isProxySymbol.html +4 -18
- package/typedoc/variables/shared_utils.ngAttrPrefixes.html +4 -18
- package/typedoc.json +3 -1
- package/SECURITY.md +0 -16
- package/TODO.md +0 -13
- package/docs/content/en/about/featured-background.jpg +0 -0
- package/docs/content/en/about/index.md +0 -37
- package/docs/content/en/blog/_index.md +0 -8
- package/docs/content/en/blog/news/_index.md +0 -4
- package/docs/content/en/blog/news/first-post/featured-sunset-get.png +0 -0
- package/docs/content/en/blog/news/first-post/index.md +0 -46
- package/docs/content/en/blog/news/second-post.md +0 -238
- package/docs/content/en/blog/releases/_index.md +0 -4
- package/docs/content/en/blog/releases/in-depth-monoliths-detailed-spec.md +0 -238
- package/docs/content/en/community/_index.md +0 -6
- package/docs/content/en/docs/concepts/_index.md +0 -14
- package/docs/content/en/docs/contribution-guidelines/_index.md +0 -77
- package/docs/content/en/docs/examples/_index.md +0 -13
- package/docs/content/en/docs/getting-started/_index.md +0 -35
- package/docs/content/en/docs/getting-started/example-page.md +0 -231
- package/docs/content/en/docs/overview/_index.md +0 -34
- package/docs/content/en/docs/reference/_index.md +0 -12
- package/docs/content/en/docs/reference/parameter-reference.md +0 -207
- package/docs/content/en/docs/tasks/Ponycopters/_index.md +0 -12
- package/docs/content/en/docs/tasks/Ponycopters/configuring-ponycopters.md +0 -230
- package/docs/content/en/docs/tasks/Ponycopters/launching-ponycopters.md +0 -230
- package/docs/content/en/docs/tasks/_index.md +0 -21
- package/docs/content/en/docs/tasks/beds.md +0 -230
- package/docs/content/en/docs/tasks/porridge.md +0 -230
- package/docs/content/en/docs/tasks/task.md +0 -230
- package/docs/content/en/docs/tutorials/_index.md +0 -12
- package/docs/content/en/docs/tutorials/multi-bear.md +0 -230
- package/docs/content/en/docs/tutorials/tutorial2.md +0 -230
- package/docs/content/en/featured-background.jpg +0 -0
- package/docs/content/en/search.md +0 -4
- package/docs/layouts/_default/_markup/render-heading.html +0 -1
- package/public/public/legacy.html +0 -13203
- package/typedoc/functions/shared_utils.replaceInline.html +0 -331
- package/typedoc/variables/core_di_ng-module.PROVIDE_LITERAL.html +0 -263
|
@@ -88,7 +88,7 @@ describe("view", () => {
|
|
|
88
88
|
PathUtils.applyViewConfigs($view, path, _states);
|
|
89
89
|
});
|
|
90
90
|
|
|
91
|
-
|
|
91
|
+
it("uses the controllerProvider to get controller dynamically", async () => {
|
|
92
92
|
$controllerProvider.register("AcmeFooController", () => {});
|
|
93
93
|
elem.innerHTML = "<div><ng-view></ng-view></div>";
|
|
94
94
|
$compile(elem)(scope);
|
|
@@ -20,8 +20,7 @@ describe("ngView", () => {
|
|
|
20
20
|
});
|
|
21
21
|
elem = [{ scrollIntoView: jasmine.createSpy("scrollIntoView") }];
|
|
22
22
|
});
|
|
23
|
-
|
|
24
|
-
xit("should scroll element into view after timeout", async () => {
|
|
23
|
+
it("should scroll element into view after timeout", async () => {
|
|
25
24
|
$ngViewScroll(elem[0]);
|
|
26
25
|
expect(elem[0].scrollIntoView).not.toHaveBeenCalled();
|
|
27
26
|
|
|
@@ -29,8 +28,8 @@ describe("ngView", () => {
|
|
|
29
28
|
expect(elem[0].scrollIntoView).toHaveBeenCalled();
|
|
30
29
|
});
|
|
31
30
|
|
|
32
|
-
|
|
33
|
-
const promise = $ngViewScroll(elem);
|
|
31
|
+
it("should return the promise from the timeout", async () => {
|
|
32
|
+
const promise = $ngViewScroll(elem[0]);
|
|
34
33
|
|
|
35
34
|
await wait(100);
|
|
36
35
|
expect(elem[0].scrollIntoView).toHaveBeenCalled();
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
function ($anchorScroll, $location, $scope) {
|
|
30
30
|
$scope.gotoAnchor = function (x) {
|
|
31
31
|
window.$locationTest = $location;
|
|
32
|
-
|
|
32
|
+
const newHash = "anchor" + x;
|
|
33
33
|
if ($location.hash() !== newHash) {
|
|
34
34
|
// set the $location.hash to `newHash` and
|
|
35
35
|
// $anchorScroll will automatically scroll to it
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defaultHttpResponseTransform } from "./http/http";
|
|
1
|
+
import { defaultHttpResponseTransform } from "./http/http.js";
|
|
2
2
|
import { extend, isString, minErr } from "../shared/utils.js";
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
const $templateRequestMinErr = minErr("$templateRequest");
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Used to configure the options passed to the {@link $http} service when making a template request.
|
|
@@ -10,7 +10,7 @@ var $templateRequestMinErr = minErr("$templateRequest");
|
|
|
10
10
|
* requesting a template.
|
|
11
11
|
*/
|
|
12
12
|
export function TemplateRequestProvider() {
|
|
13
|
-
|
|
13
|
+
let httpOptions;
|
|
14
14
|
|
|
15
15
|
/**
|
|
16
16
|
* The options to be passed to the {@link $http} service when making the request.
|
|
@@ -76,13 +76,17 @@ export function TemplateRequestProvider() {
|
|
|
76
76
|
// AngularTS accept any script directive, no matter its name. However, we
|
|
77
77
|
// still need to unwrap trusted types.
|
|
78
78
|
if (!isString(tpl) || !$templateCache.has(tpl)) {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
79
|
+
try {
|
|
80
|
+
tpl = $sce.getTrustedResourceUrl(tpl);
|
|
81
|
+
if (!tpl) {
|
|
82
|
+
return Promise.reject("Template not found");
|
|
83
|
+
}
|
|
84
|
+
} catch (e) {
|
|
85
|
+
return Promise.reject(e.message);
|
|
82
86
|
}
|
|
83
87
|
}
|
|
84
88
|
|
|
85
|
-
|
|
89
|
+
let transformResponse =
|
|
86
90
|
$http.defaults && $http.defaults.transformResponse;
|
|
87
91
|
|
|
88
92
|
if (Array.isArray(transformResponse)) {
|
package/src/shared/noderef.js
CHANGED
|
@@ -66,7 +66,7 @@ export class NodeRef {
|
|
|
66
66
|
this._node = element;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
-
//
|
|
69
|
+
// Handle array of elements
|
|
70
70
|
else if (element instanceof Array) {
|
|
71
71
|
if (element.length == 1) {
|
|
72
72
|
this.initial = element[0].cloneNode(true);
|
|
@@ -109,8 +109,6 @@ export class NodeRef {
|
|
|
109
109
|
} else {
|
|
110
110
|
this._element = undefined;
|
|
111
111
|
}
|
|
112
|
-
// this._nodes = undefined;
|
|
113
|
-
// this.isList = false;
|
|
114
112
|
}
|
|
115
113
|
|
|
116
114
|
/** @param {Array<Node>} nodes */
|
package/src/shared/utils.js
CHANGED
|
@@ -47,7 +47,7 @@ export function uppercase(string) {
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
/**
|
|
50
|
-
* @param {*} obj
|
|
50
|
+
* @param {*} obj Reference to check.
|
|
51
51
|
* @return {boolean} Returns true if `obj` is an array or array-like object (NodeList, Arguments,
|
|
52
52
|
* String ...)
|
|
53
53
|
*/
|
|
@@ -107,6 +107,7 @@ export function isObject(value) {
|
|
|
107
107
|
/**
|
|
108
108
|
* Determines if a value is an object with a null prototype
|
|
109
109
|
*
|
|
110
|
+
* @param {*} value Reference to check.
|
|
110
111
|
* @returns {boolean} True if `value` is an `Object` with a null prototype
|
|
111
112
|
*/
|
|
112
113
|
export function isBlankObject(value) {
|
|
@@ -806,7 +807,7 @@ export function parseKeyValue(keyValue) {
|
|
|
806
807
|
key = tryDecodeURIComponent(key);
|
|
807
808
|
if (isDefined(key)) {
|
|
808
809
|
val = isDefined(val) ? tryDecodeURIComponent(val) : true;
|
|
809
|
-
if (!hasOwn(obj, key)) {
|
|
810
|
+
if (!hasOwn(obj, /** @type {string} */ (key))) {
|
|
810
811
|
obj[key] = val;
|
|
811
812
|
} else if (Array.isArray(obj[key])) {
|
|
812
813
|
obj[key].push(val);
|
|
@@ -846,13 +847,13 @@ export function toKeyValue(obj) {
|
|
|
846
847
|
* Tries to decode the URI component without throwing an exception.
|
|
847
848
|
*
|
|
848
849
|
* @param {string} value potential URI component to check.
|
|
849
|
-
* @returns {string}
|
|
850
|
+
* @returns {string|void}
|
|
850
851
|
*/
|
|
851
852
|
export function tryDecodeURIComponent(value) {
|
|
852
853
|
try {
|
|
853
854
|
return decodeURIComponent(value);
|
|
854
855
|
} catch {
|
|
855
|
-
|
|
856
|
+
return;
|
|
856
857
|
}
|
|
857
858
|
}
|
|
858
859
|
|
|
@@ -1175,24 +1176,6 @@ export function isObjectEmpty(obj) {
|
|
|
1175
1176
|
return !Object.keys(obj).length;
|
|
1176
1177
|
}
|
|
1177
1178
|
|
|
1178
|
-
/**
|
|
1179
|
-
* Replaces the attributes and child elements of an existing element (`replacedElem`)
|
|
1180
|
-
* with those of a new element (`newElem`), while keeping the original reference.
|
|
1181
|
-
*
|
|
1182
|
-
* @param {HTMLElement} replacedElem - The element to be replaced (its content and attributes will be updated).
|
|
1183
|
-
* @param {HTMLElement} newElem - The element providing the new attributes and content.
|
|
1184
|
-
*/
|
|
1185
|
-
export function replaceInline(replacedElem, newElem) {
|
|
1186
|
-
for (const attr of Array.from(newElem.attributes)) {
|
|
1187
|
-
replacedElem.setAttribute(attr.name, attr.value);
|
|
1188
|
-
}
|
|
1189
|
-
replacedElem.innerHTML = "";
|
|
1190
|
-
|
|
1191
|
-
for (const child of Array.from(newElem.childNodes)) {
|
|
1192
|
-
replacedElem.appendChild(child.cloneNode(true));
|
|
1193
|
-
}
|
|
1194
|
-
}
|
|
1195
|
-
|
|
1196
1179
|
/**
|
|
1197
1180
|
* Checks whether the given object has the specified property as its own (not inherited).
|
|
1198
1181
|
*
|
package/src/src.html
CHANGED
|
@@ -12,10 +12,11 @@
|
|
|
12
12
|
<script src="/jasmine/boot0.js"></script>
|
|
13
13
|
<script src="/jasmine/boot1.js"></script>
|
|
14
14
|
<script type="module" src="/src/angular.spec.js"></script>
|
|
15
|
+
<script type="module" src="/src/index.spec.js"></script>
|
|
15
16
|
<script type="module" src="/src/loader.spec.js"></script>
|
|
16
17
|
<script type="module" src="/src/public.spec.js"></script>
|
|
17
18
|
</head>
|
|
18
19
|
<body>
|
|
19
|
-
<div id="app"></div>
|
|
20
|
+
<div ng-app id="app"></div>
|
|
20
21
|
</body>
|
|
21
22
|
</html>
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
window.hierarchyData =
|
|
2
|
-
"
|
|
2
|
+
"eJyljr0OgjAQx9/l5oJChGCfwMHVyRBTS7WNR5u0dSK8u1cVXUgYmO7y/8pvAO9cDMDP+7JuGXh1QyWjcZa0AUhMx4peAYejkyJZwOBhbAe8KBsGT4/kSRQhqLCRzqsLfoO/J5+quY49Uv8dp1oMXZa2so9AhjbYeWUTUVOxYrur25EB/TMgBxqrTh5XAE0TC2CEkFDmGETQV2HvKzH+K0sk4/gCI4KU+g==";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
window.navigationData =
|
|
2
|
-
"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";
|
|
2
|
+
"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";
|