- Timestamp:
- 10/16/21 18:10:51 (3 years ago)
- Branches:
- master
- Children:
- eed0bf8
- Parents:
- 6a3a178
- Location:
- trip-planner-front/node_modules/@angular/material/badge
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/@angular/material/badge/badge.d.ts
r6a3a178 rfa375fe 8 8 import { AriaDescriber } from '@angular/cdk/a11y'; 9 9 import { BooleanInput } from '@angular/cdk/coercion'; 10 import { ElementRef, NgZone, On Destroy, OnInit, Renderer2} from '@angular/core';10 import { ElementRef, NgZone, OnChanges, OnDestroy, Renderer2, SimpleChanges } from '@angular/core'; 11 11 import { CanDisable, ThemePalette } from '@angular/material/core'; 12 12 /** @docs-private */ … … 20 20 export declare type MatBadgeSize = 'small' | 'medium' | 'large'; 21 21 /** Directive to display a text badge. */ 22 export declare class MatBadge extends _MatBadgeBase implements On Init, OnDestroy, CanDisable {22 export declare class MatBadge extends _MatBadgeBase implements OnDestroy, OnChanges, CanDisable { 23 23 private _ngZone; 24 24 private _elementRef; … … 26 26 private _renderer; 27 27 private _animationMode?; 28 /** Whether the badge has any content. */ 29 _hasContent: boolean; 28 30 /** The color of the badge. Can be `primary`, `accent`, or `warn`. */ 29 31 get color(): ThemePalette; … … 40 42 position: MatBadgePosition; 41 43 /** The content for the badge */ 42 get content(): string | number | undefined | null; 43 set content(newContent: string | number | undefined | null); 44 private _content; 44 content: string | number | undefined | null; 45 45 /** Message used to describe the decorated element via aria-describedby */ 46 46 get description(): string; … … 55 55 /** Unique id for the badge */ 56 56 _id: number; 57 /** Visible badge element. */58 57 private _badgeElement; 59 /** Whether the OnInit lifecycle hook has run yet */60 private _isInitialized;61 58 constructor(_ngZone: NgZone, _elementRef: ElementRef<HTMLElement>, _ariaDescriber: AriaDescriber, _renderer: Renderer2, _animationMode?: string | undefined); 62 59 /** Whether the badge is above the host or not */ … … 64 61 /** Whether the badge is after the host or not */ 65 62 isAfter(): boolean; 63 ngOnChanges(changes: SimpleChanges): void; 64 ngOnDestroy(): void; 66 65 /** 67 * Gets the element into which the badge's content is being rendered. Undefined if the element68 * hasn't been created (e.g. if the badge doesn't have content).66 * Gets the element into which the badge's content is being rendered. 67 * Undefined if the element hasn't been created (e.g. if the badge doesn't have content). 69 68 */ 70 69 getBadgeElement(): HTMLElement | undefined; 71 ngOnInit(): void;72 ngOnDestroy(): void;70 /** Injects a span element into the DOM with the content. */ 71 private _updateTextContent; 73 72 /** Creates the badge element */ 74 73 private _createBadgeElement; 75 /** Update the text content of the badge element in the DOM, creating the element if necessary. */ 76 private _updateRenderedContent; 77 /** Updates the host element's aria description via AriaDescriber. */ 74 /** Sets the aria-label property on the element */ 78 75 private _updateHostAriaDescription; 79 76 /** Adds css theme class given the color to the component host */ … … 81 78 /** Clears any existing badges that might be left over from server-side rendering. */ 82 79 private _clearExistingBadges; 80 /** Gets the string representation of the badge content. */ 81 private _stringifyContent; 83 82 static ngAcceptInputType_disabled: BooleanInput; 84 83 static ngAcceptInputType_hidden: BooleanInput; 85 84 static ngAcceptInputType_overlap: BooleanInput; 86 85 static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<MatBadge, [null, null, null, null, { optional: true; }]>; 87 static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<MatBadge, "[matBadge]", never, { "disabled": "matBadgeDisabled"; "position": "matBadgePosition"; "size": "matBadgeSize"; "color": "matBadgeColor"; "overlap": "matBadgeOverlap"; " content": "matBadge"; "description": "matBadgeDescription"; "hidden": "matBadgeHidden"; }, {}, never>;86 static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<MatBadge, "[matBadge]", never, { "disabled": "matBadgeDisabled"; "position": "matBadgePosition"; "size": "matBadgeSize"; "color": "matBadgeColor"; "overlap": "matBadgeOverlap"; "description": "matBadgeDescription"; "hidden": "matBadgeHidden"; "content": "matBadge"; }, {}, never>; 88 87 } 89 88 export {}; -
trip-planner-front/node_modules/@angular/material/badge/badge.d.ts.__ivy_ngcc_bak
r6a3a178 rfa375fe 8 8 import { AriaDescriber } from '@angular/cdk/a11y'; 9 9 import { BooleanInput } from '@angular/cdk/coercion'; 10 import { ElementRef, NgZone, On Destroy, OnInit, Renderer2} from '@angular/core';10 import { ElementRef, NgZone, OnChanges, OnDestroy, Renderer2, SimpleChanges } from '@angular/core'; 11 11 import { CanDisable, ThemePalette } from '@angular/material/core'; 12 12 /** @docs-private */ … … 19 19 export declare type MatBadgeSize = 'small' | 'medium' | 'large'; 20 20 /** Directive to display a text badge. */ 21 export declare class MatBadge extends _MatBadgeBase implements On Init, OnDestroy, CanDisable {21 export declare class MatBadge extends _MatBadgeBase implements OnDestroy, OnChanges, CanDisable { 22 22 private _ngZone; 23 23 private _elementRef; … … 25 25 private _renderer; 26 26 private _animationMode?; 27 /** Whether the badge has any content. */ 28 _hasContent: boolean; 27 29 /** The color of the badge. Can be `primary`, `accent`, or `warn`. */ 28 30 get color(): ThemePalette; … … 39 41 position: MatBadgePosition; 40 42 /** The content for the badge */ 41 get content(): string | number | undefined | null; 42 set content(newContent: string | number | undefined | null); 43 private _content; 43 content: string | number | undefined | null; 44 44 /** Message used to describe the decorated element via aria-describedby */ 45 45 get description(): string; … … 54 54 /** Unique id for the badge */ 55 55 _id: number; 56 /** Visible badge element. */57 56 private _badgeElement; 58 /** Whether the OnInit lifecycle hook has run yet */59 private _isInitialized;60 57 constructor(_ngZone: NgZone, _elementRef: ElementRef<HTMLElement>, _ariaDescriber: AriaDescriber, _renderer: Renderer2, _animationMode?: string | undefined); 61 58 /** Whether the badge is above the host or not */ … … 63 60 /** Whether the badge is after the host or not */ 64 61 isAfter(): boolean; 62 ngOnChanges(changes: SimpleChanges): void; 63 ngOnDestroy(): void; 65 64 /** 66 * Gets the element into which the badge's content is being rendered. Undefined if the element67 * hasn't been created (e.g. if the badge doesn't have content).65 * Gets the element into which the badge's content is being rendered. 66 * Undefined if the element hasn't been created (e.g. if the badge doesn't have content). 68 67 */ 69 68 getBadgeElement(): HTMLElement | undefined; 70 ngOnInit(): void;71 ngOnDestroy(): void;69 /** Injects a span element into the DOM with the content. */ 70 private _updateTextContent; 72 71 /** Creates the badge element */ 73 72 private _createBadgeElement; 74 /** Update the text content of the badge element in the DOM, creating the element if necessary. */ 75 private _updateRenderedContent; 76 /** Updates the host element's aria description via AriaDescriber. */ 73 /** Sets the aria-label property on the element */ 77 74 private _updateHostAriaDescription; 78 75 /** Adds css theme class given the color to the component host */ … … 80 77 /** Clears any existing badges that might be left over from server-side rendering. */ 81 78 private _clearExistingBadges; 79 /** Gets the string representation of the badge content. */ 80 private _stringifyContent; 82 81 static ngAcceptInputType_disabled: BooleanInput; 83 82 static ngAcceptInputType_hidden: BooleanInput; -
trip-planner-front/node_modules/@angular/material/badge/badge.d.ts.map
r6a3a178 rfa375fe 1 {"version":3,"file":"badge.d.ts","sources":["badge.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA; AACA;;;AACA;AACA","sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { AriaDescriber } from '@angular/cdk/a11y';\nimport { BooleanInput } from '@angular/cdk/coercion';\nimport { ElementRef, NgZone, OnDestroy, OnInit, Renderer2 } from '@angular/core';\nimport { CanDisable, ThemePalette } from '@angular/material/core';\n/** @docs-private */\ndeclare const _MatBadgeBase: import(\"@angular/material/core/common-behaviors/constructor\").Constructor<CanDisable> & import(\"@angular/material/core/common-behaviors/constructor\").AbstractConstructor<CanDisable> & {\n new (): {};\n};\n/** Allowed position options for matBadgePosition */\nexport declare type MatBadgePosition = 'above after' | 'above before' | 'below before' | 'below after' | 'before' | 'after' | 'above' | 'below';\n/** Allowed size options for matBadgeSize */\nexport declare type MatBadgeSize = 'small' | 'medium' | 'large';\n/** Directive to display a text badge. */\nexport declare class MatBadge extends _MatBadgeBase implements OnInit, OnDestroy, CanDisable {\n private _ngZone;\n private _elementRef;\n private _ariaDescriber;\n private _renderer;\n private _animationMode?;\n /** The color of the badge. Can be `primary`, `accent`, or `warn`. */\n get color(): ThemePalette;\n set color(value: ThemePalette);\n private _color;\n /** Whether the badge should overlap its contents or not */\n get overlap(): boolean;\n set overlap(val: boolean);\n private _overlap;\n /**\n * Position the badge should reside.\n * Accepts any combination of 'above'|'below' and 'before'|'after'\n */\n position: MatBadgePosition;\n /** The content for the badge */\n get content(): string | number | undefined | null;\n set content(newContent: string | number | undefined | null);\n private _content;\n /** Message used to describe the decorated element via aria-describedby */\n get description(): string;\n set description(newDescription: string);\n private _description;\n /** Size of the badge. Can be 'small', 'medium', or 'large'. */\n size: MatBadgeSize;\n /** Whether the badge is hidden. */\n get hidden(): boolean;\n set hidden(val: boolean);\n private _hidden;\n /** Unique id for the badge */\n _id: number;\n /** Visible badge element. */\n private _badgeElement;\n /** Whether the OnInit lifecycle hook has run yet */\n private _isInitialized;\n constructor(_ngZone: NgZone, _elementRef: ElementRef<HTMLElement>, _ariaDescriber: AriaDescriber, _renderer: Renderer2, _animationMode?: string | undefined);\n /** Whether the badge is above the host or not */\n isAbove(): boolean;\n /** Whether the badge is after the host or not */\n isAfter(): boolean;\n /**\n * Gets the element into which the badge's content is being rendered. Undefined if the element\n * hasn't been created (e.g. if the badge doesn't have content).\n */\n getBadgeElement(): HTMLElement | undefined;\n ngOnInit(): void;\n ngOnDestroy(): void;\n /** Creates the badge element */\n private _createBadgeElement;\n /** Update the text content of the badge element in the DOM, creating the element if necessary. */\n private _updateRenderedContent;\n /** Updates the host element's aria description via AriaDescriber. */\n private _updateHostAriaDescription;\n /** Adds css theme class given the color to the component host */\n private _setColor;\n /** Clears any existing badges that might be left over from server-side rendering. */\n private _clearExistingBadges;\n static ngAcceptInputType_disabled: BooleanInput;\n static ngAcceptInputType_hidden: BooleanInput;\n static ngAcceptInputType_overlap: BooleanInput;\n}\nexport {};\n"]}1 {"version":3,"file":"badge.d.ts","sources":["badge.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA;AACA","sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { AriaDescriber } from '@angular/cdk/a11y';\nimport { BooleanInput } from '@angular/cdk/coercion';\nimport { ElementRef, NgZone, OnChanges, OnDestroy, Renderer2, SimpleChanges } from '@angular/core';\nimport { CanDisable, ThemePalette } from '@angular/material/core';\n/** @docs-private */\ndeclare const _MatBadgeBase: import(\"@angular/material/core/common-behaviors/constructor\").Constructor<CanDisable> & import(\"@angular/material/core/common-behaviors/constructor\").AbstractConstructor<CanDisable> & {\n new (): {};\n};\n/** Allowed position options for matBadgePosition */\nexport declare type MatBadgePosition = 'above after' | 'above before' | 'below before' | 'below after' | 'before' | 'after' | 'above' | 'below';\n/** Allowed size options for matBadgeSize */\nexport declare type MatBadgeSize = 'small' | 'medium' | 'large';\n/** Directive to display a text badge. */\nexport declare class MatBadge extends _MatBadgeBase implements OnDestroy, OnChanges, CanDisable {\n private _ngZone;\n private _elementRef;\n private _ariaDescriber;\n private _renderer;\n private _animationMode?;\n /** Whether the badge has any content. */\n _hasContent: boolean;\n /** The color of the badge. Can be `primary`, `accent`, or `warn`. */\n get color(): ThemePalette;\n set color(value: ThemePalette);\n private _color;\n /** Whether the badge should overlap its contents or not */\n get overlap(): boolean;\n set overlap(val: boolean);\n private _overlap;\n /**\n * Position the badge should reside.\n * Accepts any combination of 'above'|'below' and 'before'|'after'\n */\n position: MatBadgePosition;\n /** The content for the badge */\n content: string | number | undefined | null;\n /** Message used to describe the decorated element via aria-describedby */\n get description(): string;\n set description(newDescription: string);\n private _description;\n /** Size of the badge. Can be 'small', 'medium', or 'large'. */\n size: MatBadgeSize;\n /** Whether the badge is hidden. */\n get hidden(): boolean;\n set hidden(val: boolean);\n private _hidden;\n /** Unique id for the badge */\n _id: number;\n private _badgeElement;\n constructor(_ngZone: NgZone, _elementRef: ElementRef<HTMLElement>, _ariaDescriber: AriaDescriber, _renderer: Renderer2, _animationMode?: string | undefined);\n /** Whether the badge is above the host or not */\n isAbove(): boolean;\n /** Whether the badge is after the host or not */\n isAfter(): boolean;\n ngOnChanges(changes: SimpleChanges): void;\n ngOnDestroy(): void;\n /**\n * Gets the element into which the badge's content is being rendered.\n * Undefined if the element hasn't been created (e.g. if the badge doesn't have content).\n */\n getBadgeElement(): HTMLElement | undefined;\n /** Injects a span element into the DOM with the content. */\n private _updateTextContent;\n /** Creates the badge element */\n private _createBadgeElement;\n /** Sets the aria-label property on the element */\n private _updateHostAriaDescription;\n /** Adds css theme class given the color to the component host */\n private _setColor;\n /** Clears any existing badges that might be left over from server-side rendering. */\n private _clearExistingBadges;\n /** Gets the string representation of the badge content. */\n private _stringifyContent;\n static ngAcceptInputType_disabled: BooleanInput;\n static ngAcceptInputType_hidden: BooleanInput;\n static ngAcceptInputType_overlap: BooleanInput;\n}\nexport {};\n"]} -
trip-planner-front/node_modules/@angular/material/badge/index.metadata.json
r6a3a178 rfa375fe 1 {"__symbolic":"module","version":4,"metadata":{"MatBadgeModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":14,"character":1},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/cdk/a11y","name":"A11yModule","line":16,"character":4},{"__symbolic":"reference","module":"@angular/material/core","name":"MatCommonModule","line":17,"character":4}],"exports":[{"__symbolic":"reference","name":"MatBadge"},{"__symbolic":"reference","module":"@angular/material/core","name":"MatCommonModule","line":19,"character":22}],"declarations":[{"__symbolic":"reference","name":"MatBadge"}]}]}],"members":{}},"MatBadgePosition":{"__symbolic":"interface"},"MatBadgeSize":{"__symbolic":"interface"},"MatBadge":{"__symbolic":"class","extends":{"__symbolic":"error","message":"Symbol reference expected","line":5 9,"character":30,"module":"./badge"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive","line":42,"character":1},"arguments":[{"selector":"[matBadge]","inputs":["disabled: matBadgeDisabled"],"host":{"class":"mat-badge","[class.mat-badge-overlap]":"overlap","[class.mat-badge-above]":"isAbove()","[class.mat-badge-below]":"!isAbove()","[class.mat-badge-before]":"!isAfter()","[class.mat-badge-after]":"isAfter()","[class.mat-badge-small]":"size === \"small\"","[class.mat-badge-medium]":"size === \"medium\"","[class.mat-badge-large]":"size === \"large\"","[class.mat-badge-hidden]":"hidden || !content","[class.mat-badge-disabled]":"disabled","$quoted$":["class","[class.mat-badge-overlap]","[class.mat-badge-above]","[class.mat-badge-below]","[class.mat-badge-before]","[class.mat-badge-after]","[class.mat-badge-small]","[class.mat-badge-medium]","[class.mat-badge-large]","[class.mat-badge-hidden]","[class.mat-badge-disabled]"]}}]}],"members":{"color":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":61,"character":3},"arguments":["matBadgeColor"]}]}],"overlap":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":70,"character":3},"arguments":["matBadgeOverlap"]}]}],"position":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":81,"character":3},"arguments":["matBadgePosition"]}]}],"content":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":84,"character":3},"arguments":["matBadge"]}]}],"description":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":94,"character":3},"arguments":["matBadgeDescription"]}]}],"size":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":102,"character":3},"arguments":["matBadgeSize"]}]}],"hidden":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":105,"character":3},"arguments":["matBadgeHidden"]}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[null,null,null,null,[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":126,"character":7}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":126,"character":19},"arguments":[{"__symbolic":"reference","module":"@angular/platform-browser/animations","name":"ANIMATION_MODULE_TYPE","line":126,"character":26}]}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"NgZone","line":122,"character":23},{"__symbolic":"reference","name":"ElementRef","module":"@angular/core","arguments":[{"__symbolic":"error","message":"Could not resolve type","line":123,"character":38,"context":{"typeName":"HTMLElement"},"module":"./badge"}]},{"__symbolic":"reference","module":"@angular/cdk/a11y","name":"AriaDescriber","line":124,"character":30},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2","line":125,"character":25},{"__symbolic":"reference","name":"string"}]}],"isAbove":[{"__symbolic":"method"}],"isAfter":[{"__symbolic":"method"}],"getBadgeElement":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"_createBadgeElement":[{"__symbolic":"method"}],"_updateRenderedContent":[{"__symbolic":"method"}],"_updateHostAriaDescription":[{"__symbolic":"method"}],"_setColor":[{"__symbolic":"method"}],"_clearExistingBadges":[{"__symbolic":"method"}]}}},"origins":{"MatBadgeModule":"./badge-module","MatBadgePosition":"./badge","MatBadgeSize":"./badge","MatBadge":"./badge"},"importAs":"@angular/material/badge"}1 {"__symbolic":"module","version":4,"metadata":{"MatBadgeModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":14,"character":1},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/cdk/a11y","name":"A11yModule","line":16,"character":4},{"__symbolic":"reference","module":"@angular/material/core","name":"MatCommonModule","line":17,"character":4}],"exports":[{"__symbolic":"reference","name":"MatBadge"},{"__symbolic":"reference","module":"@angular/material/core","name":"MatCommonModule","line":19,"character":22}],"declarations":[{"__symbolic":"reference","name":"MatBadge"}]}]}],"members":{}},"MatBadgePosition":{"__symbolic":"interface"},"MatBadgeSize":{"__symbolic":"interface"},"MatBadge":{"__symbolic":"class","extends":{"__symbolic":"error","message":"Symbol reference expected","line":58,"character":30,"module":"./badge"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive","line":41,"character":1},"arguments":[{"selector":"[matBadge]","inputs":["disabled: matBadgeDisabled"],"host":{"class":"mat-badge","[class.mat-badge-overlap]":"overlap","[class.mat-badge-above]":"isAbove()","[class.mat-badge-below]":"!isAbove()","[class.mat-badge-before]":"!isAfter()","[class.mat-badge-after]":"isAfter()","[class.mat-badge-small]":"size === \"small\"","[class.mat-badge-medium]":"size === \"medium\"","[class.mat-badge-large]":"size === \"large\"","[class.mat-badge-hidden]":"hidden || !_hasContent","[class.mat-badge-disabled]":"disabled","$quoted$":["class","[class.mat-badge-overlap]","[class.mat-badge-above]","[class.mat-badge-below]","[class.mat-badge-before]","[class.mat-badge-after]","[class.mat-badge-small]","[class.mat-badge-medium]","[class.mat-badge-large]","[class.mat-badge-hidden]","[class.mat-badge-disabled]"]}}]}],"members":{"color":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":63,"character":3},"arguments":["matBadgeColor"]}]}],"overlap":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":72,"character":3},"arguments":["matBadgeOverlap"]}]}],"position":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":83,"character":3},"arguments":["matBadgePosition"]}]}],"content":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":86,"character":3},"arguments":["matBadge"]}]}],"description":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":89,"character":3},"arguments":["matBadgeDescription"]}]}],"size":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":106,"character":3},"arguments":["matBadgeSize"]}]}],"hidden":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":109,"character":3},"arguments":["matBadgeHidden"]}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[null,null,null,null,[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":126,"character":7}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":126,"character":19},"arguments":[{"__symbolic":"reference","module":"@angular/platform-browser/animations","name":"ANIMATION_MODULE_TYPE","line":126,"character":26}]}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"NgZone","line":122,"character":23},{"__symbolic":"reference","name":"ElementRef","module":"@angular/core","arguments":[{"__symbolic":"error","message":"Could not resolve type","line":123,"character":38,"context":{"typeName":"HTMLElement"},"module":"./badge"}]},{"__symbolic":"reference","module":"@angular/cdk/a11y","name":"AriaDescriber","line":124,"character":30},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2","line":125,"character":25},{"__symbolic":"reference","name":"string"}]}],"isAbove":[{"__symbolic":"method"}],"isAfter":[{"__symbolic":"method"}],"ngOnChanges":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"getBadgeElement":[{"__symbolic":"method"}],"_updateTextContent":[{"__symbolic":"method"}],"_createBadgeElement":[{"__symbolic":"method"}],"_updateHostAriaDescription":[{"__symbolic":"method"}],"_setColor":[{"__symbolic":"method"}],"_clearExistingBadges":[{"__symbolic":"method"}],"_stringifyContent":[{"__symbolic":"method"}]}}},"origins":{"MatBadgeModule":"./badge-module","MatBadgePosition":"./badge","MatBadgeSize":"./badge","MatBadge":"./badge"},"importAs":"@angular/material/badge"}
Note:
See TracChangeset
for help on using the changeset viewer.