123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038 |
- /**
- * @license Angular v16.2.9
- * (c) 2010-2022 Google LLC. https://angular.io/
- * License: MIT
- */
- import { ApplicationConfig as ApplicationConfig_2 } from '@angular/core';
- import { ApplicationRef } from '@angular/core';
- import { ComponentRef } from '@angular/core';
- import { DebugElement } from '@angular/core';
- import { DebugNode } from '@angular/core';
- import { EnvironmentProviders } from '@angular/core';
- import { GetTestability } from '@angular/core';
- import * as i0 from '@angular/core';
- import * as i1 from '@angular/common';
- import { InjectionToken } from '@angular/core';
- import { makeStateKey as makeStateKey_2 } from '@angular/core';
- import { ModuleWithProviders } from '@angular/core';
- import { NgZone } from '@angular/core';
- import { OnDestroy } from '@angular/core';
- import { PlatformRef } from '@angular/core';
- import { Predicate } from '@angular/core';
- import { Provider } from '@angular/core';
- import { Renderer2 } from '@angular/core';
- import { RendererFactory2 } from '@angular/core';
- import { RendererType2 } from '@angular/core';
- import { Sanitizer } from '@angular/core';
- import { SecurityContext } from '@angular/core';
- import { StateKey as StateKey_2 } from '@angular/core';
- import { StaticProvider } from '@angular/core';
- import { Testability } from '@angular/core';
- import { TestabilityRegistry } from '@angular/core';
- import { TransferState as TransferState_2 } from '@angular/core';
- import { Type } from '@angular/core';
- import { Version } from '@angular/core';
- import { ɵConsole } from '@angular/core';
- import { ɵDomAdapter } from '@angular/common';
- import { ɵgetDOM } from '@angular/common';
- /**
- * Set of config options available during the application bootstrap operation.
- *
- * @publicApi
- *
- * @deprecated
- * `ApplicationConfig` has moved, please import `ApplicationConfig` from `@angular/core` instead.
- */
- export declare type ApplicationConfig = ApplicationConfig_2;
- /**
- * Bootstraps an instance of an Angular application and renders a standalone component as the
- * application's root component. More information about standalone components can be found in [this
- * guide](guide/standalone-components).
- *
- * @usageNotes
- * The root component passed into this function *must* be a standalone one (should have the
- * `standalone: true` flag in the `@Component` decorator config).
- *
- * ```typescript
- * @Component({
- * standalone: true,
- * template: 'Hello world!'
- * })
- * class RootComponent {}
- *
- * const appRef: ApplicationRef = await bootstrapApplication(RootComponent);
- * ```
- *
- * You can add the list of providers that should be available in the application injector by
- * specifying the `providers` field in an object passed as the second argument:
- *
- * ```typescript
- * await bootstrapApplication(RootComponent, {
- * providers: [
- * {provide: BACKEND_URL, useValue: 'https://yourdomain.com/api'}
- * ]
- * });
- * ```
- *
- * The `importProvidersFrom` helper method can be used to collect all providers from any
- * existing NgModule (and transitively from all NgModules that it imports):
- *
- * ```typescript
- * await bootstrapApplication(RootComponent, {
- * providers: [
- * importProvidersFrom(SomeNgModule)
- * ]
- * });
- * ```
- *
- * Note: the `bootstrapApplication` method doesn't include [Testability](api/core/Testability) by
- * default. You can add [Testability](api/core/Testability) by getting the list of necessary
- * providers using `provideProtractorTestingSupport()` function and adding them into the `providers`
- * array, for example:
- *
- * ```typescript
- * import {provideProtractorTestingSupport} from '@angular/platform-browser';
- *
- * await bootstrapApplication(RootComponent, {providers: [provideProtractorTestingSupport()]});
- * ```
- *
- * @param rootComponent A reference to a standalone component that should be rendered.
- * @param options Extra configuration for the bootstrap operation, see `ApplicationConfig` for
- * additional info.
- * @returns A promise that returns an `ApplicationRef` instance once resolved.
- *
- * @publicApi
- */
- export declare function bootstrapApplication(rootComponent: Type<unknown>, options?: ApplicationConfig): Promise<ApplicationRef>;
- /**
- * Exports required infrastructure for all Angular apps.
- * Included by default in all Angular apps created with the CLI
- * `new` command.
- * Re-exports `CommonModule` and `ApplicationModule`, making their
- * exports and providers available to all apps.
- *
- * @publicApi
- */
- export declare class BrowserModule {
- constructor(providersAlreadyPresent: boolean | null);
- /**
- * Configures a browser-based app to transition from a server-rendered app, if
- * one is present on the page.
- *
- * @param params An object containing an identifier for the app to transition.
- * The ID must match between the client and server versions of the app.
- * @returns The reconfigured `BrowserModule` to import into the app's root `AppModule`.
- *
- * @deprecated Use {@link APP_ID} instead to set the application ID.
- */
- static withServerTransition(params: {
- appId: string;
- }): ModuleWithProviders<BrowserModule>;
- static ɵfac: i0.ɵɵFactoryDeclaration<BrowserModule, [{ optional: true; skipSelf: true; }]>;
- static ɵmod: i0.ɵɵNgModuleDeclaration<BrowserModule, never, never, [typeof i1.CommonModule, typeof i0.ApplicationModule]>;
- static ɵinj: i0.ɵɵInjectorDeclaration<BrowserModule>;
- }
- /**
- * Predicates for use with {@link DebugElement}'s query functions.
- *
- * @publicApi
- */
- export declare class By {
- /**
- * Match all nodes.
- *
- * @usageNotes
- * ### Example
- *
- * {@example platform-browser/dom/debug/ts/by/by.ts region='by_all'}
- */
- static all(): Predicate<DebugNode>;
- /**
- * Match elements by the given CSS selector.
- *
- * @usageNotes
- * ### Example
- *
- * {@example platform-browser/dom/debug/ts/by/by.ts region='by_css'}
- */
- static css(selector: string): Predicate<DebugElement>;
- /**
- * Match nodes that have the given directive present.
- *
- * @usageNotes
- * ### Example
- *
- * {@example platform-browser/dom/debug/ts/by/by.ts region='by_directive'}
- */
- static directive(type: Type<any>): Predicate<DebugNode>;
- }
- /**
- * Create an instance of an Angular application without bootstrapping any components. This is useful
- * for the situation where one wants to decouple application environment creation (a platform and
- * associated injectors) from rendering components on a screen. Components can be subsequently
- * bootstrapped on the returned `ApplicationRef`.
- *
- * @param options Extra configuration for the application environment, see `ApplicationConfig` for
- * additional info.
- * @returns A promise that returns an `ApplicationRef` instance once resolved.
- *
- * @publicApi
- */
- export declare function createApplication(options?: ApplicationConfig): Promise<ApplicationRef>;
- /**
- * Disables Angular tools.
- *
- * @publicApi
- */
- export declare function disableDebugTools(): void;
- /**
- * DomSanitizer helps preventing Cross Site Scripting Security bugs (XSS) by sanitizing
- * values to be safe to use in the different DOM contexts.
- *
- * For example, when binding a URL in an `<a [href]="someValue">` hyperlink, `someValue` will be
- * sanitized so that an attacker cannot inject e.g. a `javascript:` URL that would execute code on
- * the website.
- *
- * In specific situations, it might be necessary to disable sanitization, for example if the
- * application genuinely needs to produce a `javascript:` style link with a dynamic value in it.
- * Users can bypass security by constructing a value with one of the `bypassSecurityTrust...`
- * methods, and then binding to that value from the template.
- *
- * These situations should be very rare, and extraordinary care must be taken to avoid creating a
- * Cross Site Scripting (XSS) security bug!
- *
- * When using `bypassSecurityTrust...`, make sure to call the method as early as possible and as
- * close as possible to the source of the value, to make it easy to verify no security bug is
- * created by its use.
- *
- * It is not required (and not recommended) to bypass security if the value is safe, e.g. a URL that
- * does not start with a suspicious protocol, or an HTML snippet that does not contain dangerous
- * code. The sanitizer leaves safe values intact.
- *
- * @security Calling any of the `bypassSecurityTrust...` APIs disables Angular's built-in
- * sanitization for the value passed in. Carefully check and audit all values and code paths going
- * into this call. Make sure any user data is appropriately escaped for this security context.
- * For more detail, see the [Security Guide](https://g.co/ng/security).
- *
- * @publicApi
- */
- export declare abstract class DomSanitizer implements Sanitizer {
- /**
- * Gets a safe value from either a known safe value or a value with unknown safety.
- *
- * If the given value is already a `SafeValue`, this method returns the unwrapped value.
- * If the security context is HTML and the given value is a plain string, this method
- * sanitizes the string, removing any potentially unsafe content.
- * For any other security context, this method throws an error if provided
- * with a plain string.
- */
- abstract sanitize(context: SecurityContext, value: SafeValue | string | null): string | null;
- /**
- * Bypass security and trust the given value to be safe HTML. Only use this when the bound HTML
- * is unsafe (e.g. contains `<script>` tags) and the code should be executed. The sanitizer will
- * leave safe HTML intact, so in most situations this method should not be used.
- *
- * **WARNING:** calling this method with untrusted user data exposes your application to XSS
- * security risks!
- */
- abstract bypassSecurityTrustHtml(value: string): SafeHtml;
- /**
- * Bypass security and trust the given value to be safe style value (CSS).
- *
- * **WARNING:** calling this method with untrusted user data exposes your application to XSS
- * security risks!
- */
- abstract bypassSecurityTrustStyle(value: string): SafeStyle;
- /**
- * Bypass security and trust the given value to be safe JavaScript.
- *
- * **WARNING:** calling this method with untrusted user data exposes your application to XSS
- * security risks!
- */
- abstract bypassSecurityTrustScript(value: string): SafeScript;
- /**
- * Bypass security and trust the given value to be a safe style URL, i.e. a value that can be used
- * in hyperlinks or `<img src>`.
- *
- * **WARNING:** calling this method with untrusted user data exposes your application to XSS
- * security risks!
- */
- abstract bypassSecurityTrustUrl(value: string): SafeUrl;
- /**
- * Bypass security and trust the given value to be a safe resource URL, i.e. a location that may
- * be used to load executable code from, like `<script src>`, or `<iframe src>`.
- *
- * **WARNING:** calling this method with untrusted user data exposes your application to XSS
- * security risks!
- */
- abstract bypassSecurityTrustResourceUrl(value: string): SafeResourceUrl;
- static ɵfac: i0.ɵɵFactoryDeclaration<DomSanitizer, never>;
- static ɵprov: i0.ɵɵInjectableDeclaration<DomSanitizer>;
- }
- /**
- * Enabled Angular debug tools that are accessible via your browser's
- * developer console.
- *
- * Usage:
- *
- * 1. Open developer console (e.g. in Chrome Ctrl + Shift + j)
- * 1. Type `ng.` (usually the console will show auto-complete suggestion)
- * 1. Try the change detection profiler `ng.profiler.timeChangeDetection()`
- * then hit Enter.
- *
- * @publicApi
- */
- export declare function enableDebugTools<T>(ref: ComponentRef<T>): ComponentRef<T>;
- /**
- * The injection token for the event-manager plug-in service.
- *
- * @publicApi
- */
- export declare const EVENT_MANAGER_PLUGINS: InjectionToken<EventManagerPlugin[]>;
- /**
- * An injectable service that provides event management for Angular
- * through a browser plug-in.
- *
- * @publicApi
- */
- export declare class EventManager {
- private _zone;
- private _plugins;
- private _eventNameToPlugin;
- /**
- * Initializes an instance of the event-manager service.
- */
- constructor(plugins: EventManagerPlugin[], _zone: NgZone);
- /**
- * Registers a handler for a specific element and event.
- *
- * @param element The HTML element to receive event notifications.
- * @param eventName The name of the event to listen for.
- * @param handler A function to call when the notification occurs. Receives the
- * event object as an argument.
- * @returns A callback function that can be used to remove the handler.
- */
- addEventListener(element: HTMLElement, eventName: string, handler: Function): Function;
- /**
- * Retrieves the compilation zone in which event listeners are registered.
- */
- getZone(): NgZone;
- static ɵfac: i0.ɵɵFactoryDeclaration<EventManager, never>;
- static ɵprov: i0.ɵɵInjectableDeclaration<EventManager>;
- }
- declare abstract class EventManagerPlugin {
- private _doc;
- constructor(_doc: any);
- manager: EventManager;
- abstract supports(eventName: string): boolean;
- abstract addEventListener(element: HTMLElement, eventName: string, handler: Function): Function;
- }
- /**
- * Provides DOM operations in any browser environment.
- *
- * @security Tread carefully! Interacting with the DOM directly is dangerous and
- * can introduce XSS risks.
- */
- declare abstract class GenericBrowserDomAdapter extends ɵDomAdapter {
- readonly supportsDOMEvents: boolean;
- }
- /**
- * DI token for providing [HammerJS](https://hammerjs.github.io/) support to Angular.
- * @see {@link HammerGestureConfig}
- *
- * @ngModule HammerModule
- * @publicApi
- */
- export declare const HAMMER_GESTURE_CONFIG: InjectionToken<HammerGestureConfig>;
- /**
- * Injection token used to provide a {@link HammerLoader} to Angular.
- *
- * @publicApi
- */
- export declare const HAMMER_LOADER: InjectionToken<HammerLoader>;
- /**
- * An injectable [HammerJS Manager](https://hammerjs.github.io/api/#hammermanager)
- * for gesture recognition. Configures specific event recognition.
- * @publicApi
- */
- export declare class HammerGestureConfig {
- /**
- * A set of supported event names for gestures to be used in Angular.
- * Angular supports all built-in recognizers, as listed in
- * [HammerJS documentation](https://hammerjs.github.io/).
- */
- events: string[];
- /**
- * Maps gesture event names to a set of configuration options
- * that specify overrides to the default values for specific properties.
- *
- * The key is a supported event name to be configured,
- * and the options object contains a set of properties, with override values
- * to be applied to the named recognizer event.
- * For example, to disable recognition of the rotate event, specify
- * `{"rotate": {"enable": false}}`.
- *
- * Properties that are not present take the HammerJS default values.
- * For information about which properties are supported for which events,
- * and their allowed and default values, see
- * [HammerJS documentation](https://hammerjs.github.io/).
- *
- */
- overrides: {
- [key: string]: Object;
- };
- /**
- * Properties whose default values can be overridden for a given event.
- * Different sets of properties apply to different events.
- * For information about which properties are supported for which events,
- * and their allowed and default values, see
- * [HammerJS documentation](https://hammerjs.github.io/).
- */
- options?: {
- cssProps?: any;
- domEvents?: boolean;
- enable?: boolean | ((manager: any) => boolean);
- preset?: any[];
- touchAction?: string;
- recognizers?: any[];
- inputClass?: any;
- inputTarget?: EventTarget;
- };
- /**
- * Creates a [HammerJS Manager](https://hammerjs.github.io/api/#hammermanager)
- * and attaches it to a given HTML element.
- * @param element The element that will recognize gestures.
- * @returns A HammerJS event-manager object.
- */
- buildHammer(element: HTMLElement): HammerInstance;
- static ɵfac: i0.ɵɵFactoryDeclaration<HammerGestureConfig, never>;
- static ɵprov: i0.ɵɵInjectableDeclaration<HammerGestureConfig>;
- }
- declare interface HammerInstance {
- on(eventName: string, callback?: Function): void;
- off(eventName: string, callback?: Function): void;
- destroy?(): void;
- }
- /**
- * Function that loads HammerJS, returning a promise that is resolved once HammerJs is loaded.
- *
- * @publicApi
- */
- export declare type HammerLoader = () => Promise<void>;
- /**
- * Adds support for HammerJS.
- *
- * Import this module at the root of your application so that Angular can work with
- * HammerJS to detect gesture events.
- *
- * Note that applications still need to include the HammerJS script itself. This module
- * simply sets up the coordination layer between HammerJS and Angular's EventManager.
- *
- * @publicApi
- */
- export declare class HammerModule {
- static ɵfac: i0.ɵɵFactoryDeclaration<HammerModule, never>;
- static ɵmod: i0.ɵɵNgModuleDeclaration<HammerModule, never, never, never>;
- static ɵinj: i0.ɵɵInjectorDeclaration<HammerModule>;
- }
- /**
- * Helper type to represent a Hydration feature.
- *
- * @publicApi
- * @developerPreview
- */
- export declare interface HydrationFeature<FeatureKind extends HydrationFeatureKind> {
- ɵkind: FeatureKind;
- ɵproviders: Provider[];
- }
- /**
- * The list of features as an enum to uniquely type each `HydrationFeature`.
- * @see {@link HydrationFeature}
- *
- * @publicApi
- * @developerPreview
- */
- export declare const enum HydrationFeatureKind {
- NoDomReuseFeature = 0,
- NoHttpTransferCache = 1
- }
- /**
- * Create a `StateKey<T>` that can be used to store value of type T with `TransferState`.
- *
- * Example:
- *
- * ```
- * const COUNTER_KEY = makeStateKey<number>('counter');
- * let value = 10;
- *
- * transferState.set(COUNTER_KEY, value);
- * ```
- *
- * @publicApi
- * @deprecated `makeStateKey` has moved, please import `makeStateKey` from `@angular/core` instead.
- */
- export declare const makeStateKey: typeof makeStateKey_2;
- /**
- * A service for managing HTML `<meta>` tags.
- *
- * Properties of the `MetaDefinition` object match the attributes of the
- * HTML `<meta>` tag. These tags define document metadata that is important for
- * things like configuring a Content Security Policy, defining browser compatibility
- * and security settings, setting HTTP Headers, defining rich content for social sharing,
- * and Search Engine Optimization (SEO).
- *
- * To identify specific `<meta>` tags in a document, use an attribute selection
- * string in the format `"tag_attribute='value string'"`.
- * For example, an `attrSelector` value of `"name='description'"` matches a tag
- * whose `name` attribute has the value `"description"`.
- * Selectors are used with the `querySelector()` Document method,
- * in the format `meta[{attrSelector}]`.
- *
- * @see [HTML meta tag](https://developer.mozilla.org/docs/Web/HTML/Element/meta)
- * @see [Document.querySelector()](https://developer.mozilla.org/docs/Web/API/Document/querySelector)
- *
- *
- * @publicApi
- */
- export declare class Meta {
- private _doc;
- private _dom;
- constructor(_doc: any);
- /**
- * Retrieves or creates a specific `<meta>` tag element in the current HTML document.
- * In searching for an existing tag, Angular attempts to match the `name` or `property` attribute
- * values in the provided tag definition, and verifies that all other attribute values are equal.
- * If an existing element is found, it is returned and is not modified in any way.
- * @param tag The definition of a `<meta>` element to match or create.
- * @param forceCreation True to create a new element without checking whether one already exists.
- * @returns The existing element with the same attributes and values if found,
- * the new element if no match is found, or `null` if the tag parameter is not defined.
- */
- addTag(tag: MetaDefinition, forceCreation?: boolean): HTMLMetaElement | null;
- /**
- * Retrieves or creates a set of `<meta>` tag elements in the current HTML document.
- * In searching for an existing tag, Angular attempts to match the `name` or `property` attribute
- * values in the provided tag definition, and verifies that all other attribute values are equal.
- * @param tags An array of tag definitions to match or create.
- * @param forceCreation True to create new elements without checking whether they already exist.
- * @returns The matching elements if found, or the new elements.
- */
- addTags(tags: MetaDefinition[], forceCreation?: boolean): HTMLMetaElement[];
- /**
- * Retrieves a `<meta>` tag element in the current HTML document.
- * @param attrSelector The tag attribute and value to match against, in the format
- * `"tag_attribute='value string'"`.
- * @returns The matching element, if any.
- */
- getTag(attrSelector: string): HTMLMetaElement | null;
- /**
- * Retrieves a set of `<meta>` tag elements in the current HTML document.
- * @param attrSelector The tag attribute and value to match against, in the format
- * `"tag_attribute='value string'"`.
- * @returns The matching elements, if any.
- */
- getTags(attrSelector: string): HTMLMetaElement[];
- /**
- * Modifies an existing `<meta>` tag element in the current HTML document.
- * @param tag The tag description with which to replace the existing tag content.
- * @param selector A tag attribute and value to match against, to identify
- * an existing tag. A string in the format `"tag_attribute=`value string`"`.
- * If not supplied, matches a tag with the same `name` or `property` attribute value as the
- * replacement tag.
- * @return The modified element.
- */
- updateTag(tag: MetaDefinition, selector?: string): HTMLMetaElement | null;
- /**
- * Removes an existing `<meta>` tag element from the current HTML document.
- * @param attrSelector A tag attribute and value to match against, to identify
- * an existing tag. A string in the format `"tag_attribute=`value string`"`.
- */
- removeTag(attrSelector: string): void;
- /**
- * Removes an existing `<meta>` tag element from the current HTML document.
- * @param meta The tag definition to match against to identify an existing tag.
- */
- removeTagElement(meta: HTMLMetaElement): void;
- private _getOrCreateElement;
- private _setMetaElementAttributes;
- private _parseSelector;
- private _containsAttributes;
- private _getMetaKeyMap;
- static ɵfac: i0.ɵɵFactoryDeclaration<Meta, never>;
- static ɵprov: i0.ɵɵInjectableDeclaration<Meta>;
- }
- /**
- * Represents the attributes of an HTML `<meta>` element. The element itself is
- * represented by the internal `HTMLMetaElement`.
- *
- * @see [HTML meta tag](https://developer.mozilla.org/docs/Web/HTML/Element/meta)
- * @see {@link Meta}
- *
- * @publicApi
- */
- export declare type MetaDefinition = {
- charset?: string;
- content?: string;
- httpEquiv?: string;
- id?: string;
- itemprop?: string;
- name?: string;
- property?: string;
- scheme?: string;
- url?: string;
- } & {
- [prop: string]: string;
- };
- /**
- * A factory function that returns a `PlatformRef` instance associated with browser service
- * providers.
- *
- * @publicApi
- */
- export declare const platformBrowser: (extraProviders?: StaticProvider[]) => PlatformRef;
- /**
- * Sets up providers necessary to enable hydration functionality for the application.
- *
- * By default, the function enables the recommended set of features for the optimal
- * performance for most of the applications. You can enable/disable features by
- * passing special functions (from the `HydrationFeatures` set) as arguments to the
- * `provideClientHydration` function. It includes the following features:
- *
- * * Reconciling DOM hydration. Learn more about it [here](guide/hydration).
- * * [`HttpClient`](api/common/http/HttpClient) response caching while running on the server and
- * transferring this cache to the client to avoid extra HTTP requests. Learn more about data caching
- * [here](/guide/universal#caching-data-when-using-httpclient).
- *
- * These functions functions will allow you to disable some of the default features:
- * * {@link withNoDomReuse} to disable DOM nodes reuse during hydration
- * * {@link withNoHttpTransferCache} to disable HTTP transfer cache
- *
- *
- * @usageNotes
- *
- * Basic example of how you can enable hydration in your application when
- * `bootstrapApplication` function is used:
- * ```
- * bootstrapApplication(AppComponent, {
- * providers: [provideClientHydration()]
- * });
- * ```
- *
- * Alternatively if you are using NgModules, you would add `provideClientHydration`
- * to your root app module's provider list.
- * ```
- * @NgModule({
- * declarations: [RootCmp],
- * bootstrap: [RootCmp],
- * providers: [provideClientHydration()],
- * })
- * export class AppModule {}
- * ```
- *
- * @see {@link withNoDomReuse}
- * @see {@link withNoHttpTransferCache}
- *
- * @param features Optional features to configure additional router behaviors.
- * @returns A set of providers to enable hydration.
- *
- * @publicApi
- * @developerPreview
- */
- export declare function provideClientHydration(...features: HydrationFeature<HydrationFeatureKind>[]): EnvironmentProviders;
- /**
- * Returns a set of providers required to setup [Testability](api/core/Testability) for an
- * application bootstrapped using the `bootstrapApplication` function. The set of providers is
- * needed to support testing an application with Protractor (which relies on the Testability APIs
- * to be present).
- *
- * @returns An array of providers required to setup Testability for an application and make it
- * available for testing using Protractor.
- *
- * @publicApi
- */
- export declare function provideProtractorTestingSupport(): Provider[];
- /**
- * A [DI token](guide/glossary#di-token "DI token definition") that indicates whether styles
- * of destroyed components should be removed from DOM.
- *
- * By default, the value is set to `false`. This will be changed in the next major version.
- * @publicApi
- */
- export declare const REMOVE_STYLES_ON_COMPONENT_DESTROY: InjectionToken<boolean>;
- /**
- * Marker interface for a value that's safe to use as HTML.
- *
- * @publicApi
- */
- export declare interface SafeHtml extends SafeValue {
- }
- /**
- * Marker interface for a value that's safe to use as a URL to load executable code from.
- *
- * @publicApi
- */
- export declare interface SafeResourceUrl extends SafeValue {
- }
- /**
- * Marker interface for a value that's safe to use as JavaScript.
- *
- * @publicApi
- */
- export declare interface SafeScript extends SafeValue {
- }
- /**
- * Marker interface for a value that's safe to use as style (CSS).
- *
- * @publicApi
- */
- export declare interface SafeStyle extends SafeValue {
- }
- /**
- * Marker interface for a value that's safe to use as a URL linking to a document.
- *
- * @publicApi
- */
- export declare interface SafeUrl extends SafeValue {
- }
- /**
- * Marker interface for a value that's safe to use in a particular context.
- *
- * @publicApi
- */
- export declare interface SafeValue {
- }
- /**
- * A type-safe key to use with `TransferState`.
- *
- * Example:
- *
- * ```
- * const COUNTER_KEY = makeStateKey<number>('counter');
- * let value = 10;
- *
- * transferState.set(COUNTER_KEY, value);
- * ```
- * @publicApi
- *
- * @deprecated `StateKey` has moved, please import `StateKey` from `@angular/core` instead.
- */
- export declare type StateKey<T> = StateKey_2<T>;
- /**
- * A service that can be used to get and set the title of a current HTML document.
- *
- * Since an Angular application can't be bootstrapped on the entire HTML document (`<html>` tag)
- * it is not possible to bind to the `text` property of the `HTMLTitleElement` elements
- * (representing the `<title>` tag). Instead, this service can be used to set and get the current
- * title value.
- *
- * @publicApi
- */
- export declare class Title {
- private _doc;
- constructor(_doc: any);
- /**
- * Get the title of the current HTML document.
- */
- getTitle(): string;
- /**
- * Set the title of the current HTML document.
- * @param newTitle
- */
- setTitle(newTitle: string): void;
- static ɵfac: i0.ɵɵFactoryDeclaration<Title, never>;
- static ɵprov: i0.ɵɵInjectableDeclaration<Title>;
- }
- /**
- *
- * A key value store that is transferred from the application on the server side to the application
- * on the client side.
- *
- * The `TransferState` is available as an injectable token.
- * On the client, just inject this token using DI and use it, it will be lazily initialized.
- * On the server it's already included if `renderApplication` function is used. Otherwise, import
- * the `ServerTransferStateModule` module to make the `TransferState` available.
- *
- * The values in the store are serialized/deserialized using JSON.stringify/JSON.parse. So only
- * boolean, number, string, null and non-class objects will be serialized and deserialized in a
- * non-lossy manner.
- *
- * @publicApi
- *
- * @deprecated `TransferState` has moved, please import `TransferState` from `@angular/core`
- * instead.
- */
- export declare type TransferState = TransferState_2;
- export declare const TransferState: {
- new (): TransferState_2;
- };
- /**
- * @publicApi
- */
- export declare const VERSION: Version;
- /**
- * Disables DOM nodes reuse during hydration. Effectively makes
- * Angular re-render an application from scratch on the client.
- *
- * When this option is enabled, make sure that the initial navigation
- * option is configured for the Router as `enabledBlocking` by using the
- * `withEnabledBlockingInitialNavigation` in the `provideRouter` call:
- *
- * ```
- * bootstrapApplication(RootComponent, {
- * providers: [
- * provideRouter(
- * // ... other features ...
- * withEnabledBlockingInitialNavigation()
- * ),
- * provideClientHydration(withNoDomReuse())
- * ]
- * });
- * ```
- *
- * This would ensure that the application is rerendered after all async
- * operations in the Router (such as lazy-loading of components,
- * waiting for async guards and resolvers) are completed to avoid
- * clearing the DOM on the client too soon, thus causing content flicker.
- *
- * @see {@link provideRouter}
- * @see {@link withEnabledBlockingInitialNavigation}
- *
- * @publicApi
- * @developerPreview
- */
- export declare function withNoDomReuse(): HydrationFeature<HydrationFeatureKind.NoDomReuseFeature>;
- /**
- * Disables HTTP transfer cache. Effectively causes HTTP requests to be performed twice: once on the
- * server and other one on the browser.
- *
- * @publicApi
- * @developerPreview
- */
- export declare function withNoHttpTransferCache(): HydrationFeature<HydrationFeatureKind.NoHttpTransferCache>;
- /**
- * A `DomAdapter` powered by full browser DOM APIs.
- *
- * @security Tread carefully! Interacting with the DOM directly is dangerous and
- * can introduce XSS risks.
- */
- export declare class ɵBrowserDomAdapter extends GenericBrowserDomAdapter {
- static makeCurrent(): void;
- onAndCancel(el: Node, evt: any, listener: any): Function;
- dispatchEvent(el: Node, evt: any): void;
- remove(node: Node): void;
- createElement(tagName: string, doc?: Document): HTMLElement;
- createHtmlDocument(): Document;
- getDefaultDocument(): Document;
- isElementNode(node: Node): boolean;
- isShadowRoot(node: any): boolean;
- /** @deprecated No longer being used in Ivy code. To be removed in version 14. */
- getGlobalEventTarget(doc: Document, target: string): EventTarget | null;
- getBaseHref(doc: Document): string | null;
- resetBaseElement(): void;
- getUserAgent(): string;
- getCookie(name: string): string | null;
- }
- export declare class ɵBrowserGetTestability implements GetTestability {
- addToWindow(registry: TestabilityRegistry): void;
- findTestabilityInTree(registry: TestabilityRegistry, elem: any, findInAncestors: boolean): Testability | null;
- }
- export declare class ɵDomEventsPlugin extends EventManagerPlugin {
- constructor(doc: any);
- supports(eventName: string): boolean;
- addEventListener(element: HTMLElement, eventName: string, handler: Function): Function;
- removeEventListener(target: any, eventName: string, callback: Function): void;
- static ɵfac: i0.ɵɵFactoryDeclaration<ɵDomEventsPlugin, never>;
- static ɵprov: i0.ɵɵInjectableDeclaration<ɵDomEventsPlugin>;
- }
- export declare class ɵDomRendererFactory2 implements RendererFactory2, OnDestroy {
- private readonly eventManager;
- private readonly sharedStylesHost;
- private readonly appId;
- private removeStylesOnCompDestroy;
- private readonly doc;
- readonly platformId: Object;
- readonly ngZone: NgZone;
- private readonly nonce;
- private readonly rendererByCompId;
- private readonly defaultRenderer;
- private readonly platformIsServer;
- constructor(eventManager: EventManager, sharedStylesHost: ɵSharedStylesHost, appId: string, removeStylesOnCompDestroy: boolean, doc: Document, platformId: Object, ngZone: NgZone, nonce?: string | null);
- createRenderer(element: any, type: RendererType2 | null): Renderer2;
- private getOrCreateRenderer;
- ngOnDestroy(): void;
- static ɵfac: i0.ɵɵFactoryDeclaration<ɵDomRendererFactory2, never>;
- static ɵprov: i0.ɵɵInjectableDeclaration<ɵDomRendererFactory2>;
- }
- export declare class ɵDomSanitizerImpl extends DomSanitizer {
- private _doc;
- constructor(_doc: any);
- sanitize(ctx: SecurityContext, value: SafeValue | string | null): string | null;
- bypassSecurityTrustHtml(value: string): SafeHtml;
- bypassSecurityTrustStyle(value: string): SafeStyle;
- bypassSecurityTrustScript(value: string): SafeScript;
- bypassSecurityTrustUrl(value: string): SafeUrl;
- bypassSecurityTrustResourceUrl(value: string): SafeResourceUrl;
- static ɵfac: i0.ɵɵFactoryDeclaration<ɵDomSanitizerImpl, never>;
- static ɵprov: i0.ɵɵInjectableDeclaration<ɵDomSanitizerImpl>;
- }
- export { ɵgetDOM }
- /**
- * Event plugin that adds Hammer support to an application.
- *
- * @ngModule HammerModule
- */
- export declare class ɵHammerGesturesPlugin extends EventManagerPlugin {
- private _config;
- private console;
- private loader?;
- private _loaderPromise;
- constructor(doc: any, _config: HammerGestureConfig, console: ɵConsole, loader?: HammerLoader | null | undefined);
- supports(eventName: string): boolean;
- addEventListener(element: HTMLElement, eventName: string, handler: Function): Function;
- isCustomEvent(eventName: string): boolean;
- static ɵfac: i0.ɵɵFactoryDeclaration<ɵHammerGesturesPlugin, [null, null, null, { optional: true; }]>;
- static ɵprov: i0.ɵɵInjectableDeclaration<ɵHammerGesturesPlugin>;
- }
- export declare function ɵinitDomAdapter(): void;
- export declare const ɵINTERNAL_BROWSER_PLATFORM_PROVIDERS: StaticProvider[];
- /**
- * @publicApi
- * A browser plug-in that provides support for handling of key events in Angular.
- */
- export declare class ɵKeyEventsPlugin extends EventManagerPlugin {
- /**
- * Initializes an instance of the browser plug-in.
- * @param doc The document in which key events will be detected.
- */
- constructor(doc: any);
- /**
- * Reports whether a named key event is supported.
- * @param eventName The event name to query.
- * @return True if the named key event is supported.
- */
- supports(eventName: string): boolean;
- /**
- * Registers a handler for a specific element and key event.
- * @param element The HTML element to receive event notifications.
- * @param eventName The name of the key event to listen for.
- * @param handler A function to call when the notification occurs. Receives the
- * event object as an argument.
- * @returns The key event that was registered.
- */
- addEventListener(element: HTMLElement, eventName: string, handler: Function): Function;
- /**
- * Parses the user provided full keyboard event definition and normalizes it for
- * later internal use. It ensures the string is all lowercase, converts special
- * characters to a standard spelling, and orders all the values consistently.
- *
- * @param eventName The name of the key event to listen for.
- * @returns an object with the full, normalized string, and the dom event name
- * or null in the case when the event doesn't match a keyboard event.
- */
- static parseEventName(eventName: string): {
- fullKey: string;
- domEventName: string;
- } | null;
- /**
- * Determines whether the actual keys pressed match the configured key code string.
- * The `fullKeyCode` event is normalized in the `parseEventName` method when the
- * event is attached to the DOM during the `addEventListener` call. This is unseen
- * by the end user and is normalized for internal consistency and parsing.
- *
- * @param event The keyboard event.
- * @param fullKeyCode The normalized user defined expected key event string
- * @returns boolean.
- */
- static matchEventFullKeyCode(event: KeyboardEvent, fullKeyCode: string): boolean;
- /**
- * Configures a handler callback for a key event.
- * @param fullKey The event name that combines all simultaneous keystrokes.
- * @param handler The function that responds to the key event.
- * @param zone The zone in which the event occurred.
- * @returns A callback function.
- */
- static eventCallback(fullKey: string, handler: Function, zone: NgZone): Function;
- static ɵfac: i0.ɵɵFactoryDeclaration<ɵKeyEventsPlugin, never>;
- static ɵprov: i0.ɵɵInjectableDeclaration<ɵKeyEventsPlugin>;
- }
- export declare class ɵSharedStylesHost implements OnDestroy {
- private readonly doc;
- private readonly appId;
- private nonce?;
- readonly platformId: object;
- private readonly styleRef;
- private readonly hostNodes;
- private readonly styleNodesInDOM;
- private readonly platformIsServer;
- constructor(doc: Document, appId: string, nonce?: string | null | undefined, platformId?: object);
- addStyles(styles: string[]): void;
- removeStyles(styles: string[]): void;
- ngOnDestroy(): void;
- addHost(hostNode: Node): void;
- removeHost(hostNode: Node): void;
- private getAllStyles;
- private onStyleAdded;
- private onStyleRemoved;
- private collectServerRenderedStyles;
- private changeUsageCount;
- private getStyleElement;
- private addStyleToHost;
- private resetHostNodes;
- static ɵfac: i0.ɵɵFactoryDeclaration<ɵSharedStylesHost, [null, null, { optional: true; }, null]>;
- static ɵprov: i0.ɵɵInjectableDeclaration<ɵSharedStylesHost>;
- }
- export { }
|