Socket
Socket
Sign inDemoInstall

@ng-matero/extensions

Package Overview
Dependencies
69
Maintainers
1
Versions
235
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 14.6.4 to 14.7.0

button/_button-theme.import.scss

1

core/pipes/index.d.ts
export * from './pipes.module';
export * from './to-observable.pipe';
export * from './is-template-ref.pipe';

5

core/pipes/pipes.module.d.ts
import * as i0 from "@angular/core";
import * as i1 from "./to-observable.pipe";
import * as i2 from "@angular/common";
import * as i2 from "./is-template-ref.pipe";
import * as i3 from "@angular/common";
export declare class MtxPipesModule {
static ɵfac: i0.ɵɵFactoryDeclaration<MtxPipesModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxPipesModule, [typeof i1.MtxToObservablePipe], [typeof i2.CommonModule], [typeof i1.MtxToObservablePipe]>;
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxPipesModule, [typeof i1.MtxToObservablePipe, typeof i2.MtxIsTemplateRefPipe], [typeof i3.CommonModule], [typeof i1.MtxToObservablePipe, typeof i2.MtxIsTemplateRefPipe]>;
static ɵinj: i0.ɵɵInjectorDeclaration<MtxPipesModule>;
}

@@ -0,1 +1,2 @@

import { ChangeDetectorRef, DoCheck, EventEmitter, KeyValueChangeRecord, KeyValueDiffers, OnInit } from '@angular/core';
import { MtxDialog } from '@ng-matero/extensions/dialog';

@@ -5,7 +6,9 @@ import { MtxGridColumn, MtxGridColumnButton } from './grid.interface';

import * as i0 from "@angular/core";
export declare class MtxGridCellComponent {
export declare class MtxGridCellComponent implements OnInit, DoCheck {
private _dialog;
private _dataGridSrv;
private _gridSrv;
private _differs;
private _changeDetectorRef;
/** Row data */
rowData: any;
rowData: Record<string, any>;
/** Column definition */

@@ -19,17 +22,17 @@ colDef: MtxGridColumn;

placeholder: string;
get _colValue(): string;
_isEmptyValue(value: any): boolean;
_isContainHTML(value: string): boolean;
rowDataChange: EventEmitter<KeyValueChangeRecord<string, any>>;
private rowDataDiffer?;
get _value(): string;
constructor(_dialog: MtxDialog, _gridSrv: MtxGridService, _differs: KeyValueDiffers, _changeDetectorRef: ChangeDetectorRef);
ngOnInit(): void;
ngDoCheck(): void;
private _applyChanges;
_getText(value: any): any;
_getTooltip(value: any): any;
_getFormatterTooltip(value: any): any;
_formatSummary(data: any[], colDef: MtxGridColumn): any;
constructor(_dialog: MtxDialog, _dataGridSrv: MtxGridService);
_onActionClick(event: MouseEvent, btn: MtxGridColumnButton, rowData: any): void;
_getActionTooltip(btn: MtxGridColumnButton): import("./grid.interface").MtxGridColumnButtonTooltip | undefined;
_isActionDisabled(btn: MtxGridColumnButton, rowData: any): boolean;
_onActionClick(event: MouseEvent, btn: MtxGridColumnButton, rowData: Record<string, any>): void;
/** Preview enlarged image */
_onImagePreview(urlStr: string): void;
static ɵfac: i0.ɵɵFactoryDeclaration<MtxGridCellComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<MtxGridCellComponent, "mtx-grid-cell", ["mtxGridCell"], { "rowData": "rowData"; "colDef": "colDef"; "data": "data"; "summary": "summary"; "placeholder": "placeholder"; }, {}, never, never, false>;
static ɵcmp: i0.ɵɵComponentDeclaration<MtxGridCellComponent, "mtx-grid-cell", ["mtxGridCell"], { "rowData": "rowData"; "colDef": "colDef"; "data": "data"; "summary": "summary"; "placeholder": "placeholder"; }, { "rowDataChange": "rowDataChange"; }, never, never, false>;
}

@@ -1,13 +0,14 @@

import { EventEmitter, OnChanges, TemplateRef, TrackByFunction, OnDestroy, AfterViewInit, ChangeDetectorRef, ElementRef, SimpleChanges, QueryList } from '@angular/core';
import { SelectionModel } from '@angular/cdk/collections';
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, KeyValueChangeRecord, OnChanges, OnDestroy, QueryList, SimpleChanges, TemplateRef, TrackByFunction } from '@angular/core';
import { ThemePalette } from '@angular/material/core';
import { MatPaginator, PageEvent } from '@angular/material/paginator';
import { MatSort, Sort, SortDirection } from '@angular/material/sort';
import { MatFooterRowDef, MatHeaderRowDef, MatRowDef, MatTable, MatTableDataSource } from '@angular/material/table';
import { MatPaginator, PageEvent } from '@angular/material/paginator';
import { Sort, MatSort, SortDirection } from '@angular/material/sort';
import { ThemePalette } from '@angular/material/core';
import { MtxGridColumn, MtxGridCellTemplate, MtxGridRowSelectionFormatter, MtxGridRowClassFormatter, MtxGridColumnMenu, MtxGridButtonType, MtxGridColumnPinOption } from './grid.interface';
import { MtxGridColumnMenuComponent } from './column-menu.component';
import { MtxGridExpansionToggleDirective } from './expansion-toggle.directive';
import { MtxGridButtonType, MtxGridCellTemplate, MtxGridColumn, MtxGridColumnPinOption, MtxGridRowClassFormatter, MtxGridRowSelectionFormatter } from './grid.interface';
import { MtxGridService } from './grid.service';
import * as i0 from "@angular/core";
export declare class MtxGridComponent implements OnChanges, AfterViewInit, OnDestroy {
private _dataGridSrv;
private _gridSrv;
private _changeDetectorRef;

@@ -20,3 +21,3 @@ table: MatTable<any>;

footerRowDefs: QueryList<MatFooterRowDef>;
columnMenu: MtxGridColumnMenu;
columnMenu: MtxGridColumnMenuComponent;
tableContainer: ElementRef<HTMLDivElement>;

@@ -107,3 +108,3 @@ dataSource: MatTableDataSource<unknown>;

/** The formatter to set the row's class. */
rowClassFormatter: MtxGridRowClassFormatter;
rowClassFormatter?: MtxGridRowClassFormatter;
/** Event emitted when the row is selected. */

@@ -187,7 +188,7 @@ rowSelectionChange: EventEmitter<any[]>;

statusbarTemplate: TemplateRef<any>;
constructor(_dataGridSrv: MtxGridService, _changeDetectorRef: ChangeDetectorRef);
/** The changed record of row data. */
rowChangeRecord?: KeyValueChangeRecord<string, any>;
constructor(_gridSrv: MtxGridService, _changeDetectorRef: ChangeDetectorRef);
detectChanges(): void;
_isTemplateRef(obj: any): boolean;
_getColData(data: any[], colDef: MtxGridColumn): any[];
_getRowClassList(rowData: any, index: number): any;
ngOnChanges(changes: SimpleChanges): void;

@@ -199,2 +200,3 @@ ngAfterViewInit(): void;

_onSortChange(sort: Sort): void;
_onRowDataChange(record: KeyValueChangeRecord<string, any>): void;
/** Expansion change event */

@@ -225,3 +227,3 @@ _onExpansionChange(expansionRef: MtxGridExpansionToggleDirective, rowData: Record<string, any>, column: MtxGridColumn, index: number): void;

export declare class MtxGridCellSelectionDirective {
private _dataGrid;
private _grid;
private _selected;

@@ -234,3 +236,3 @@ private _rowData;

cellSelectionChange: EventEmitter<MtxGridCellSelectionDirective>;
constructor(_dataGrid: MtxGridComponent);
constructor(_grid: MtxGridComponent);
onClick(event: MouseEvent): void;

@@ -237,0 +239,0 @@ select(): void;

import { TemplateRef } from '@angular/core';
import { ThemePalette } from '@angular/material/core';
import { MatMenu, MatMenuTrigger } from '@angular/material/menu';
import { TooltipPosition, TooltipTouchGestures } from '@angular/material/tooltip';

@@ -31,3 +30,3 @@ import { Observable } from 'rxjs';

summary?: ((data: any[], colDef?: MtxGridColumn) => any) | string;
class?: string;
class?: string | ((rowData?: Record<string, any>, colDef?: MtxGridColumn) => string);
}

@@ -113,8 +112,3 @@ /** Possible column pin values. */

}
/** Column menu component. */
export interface MtxGridColumnMenu {
menuPanel: MatMenu;
menuTrigger: MatMenuTrigger;
}
/** Possible button type values. */
export declare type MtxGridButtonType = 'raised' | 'stroked' | 'flat' | 'icon' | 'fab' | 'mini-fab';

@@ -6,24 +6,25 @@ import * as i0 from "@angular/core";

import * as i4 from "./expansion-toggle.directive";
import * as i5 from "@angular/common";
import * as i6 from "@angular/forms";
import * as i7 from "@angular/material/table";
import * as i8 from "@angular/material/sort";
import * as i9 from "@angular/material/paginator";
import * as i10 from "@angular/material/checkbox";
import * as i11 from "@angular/material/button";
import * as i12 from "@angular/material/progress-bar";
import * as i13 from "@angular/material/chips";
import * as i14 from "@angular/material/tooltip";
import * as i15 from "@angular/material/icon";
import * as i16 from "@angular/material/select";
import * as i17 from "@angular/material/form-field";
import * as i18 from "@angular/material/menu";
import * as i19 from "@angular/cdk/drag-drop";
import * as i20 from "@ng-matero/extensions/dialog";
import * as i21 from "@ng-matero/extensions/core";
import * as i22 from "./column-resize/column-resize-module";
import * as i5 from "./grid.pipe";
import * as i6 from "@angular/common";
import * as i7 from "@angular/forms";
import * as i8 from "@angular/material/table";
import * as i9 from "@angular/material/sort";
import * as i10 from "@angular/material/paginator";
import * as i11 from "@angular/material/checkbox";
import * as i12 from "@angular/material/button";
import * as i13 from "@angular/material/progress-bar";
import * as i14 from "@angular/material/chips";
import * as i15 from "@angular/material/tooltip";
import * as i16 from "@angular/material/icon";
import * as i17 from "@angular/material/select";
import * as i18 from "@angular/material/form-field";
import * as i19 from "@angular/material/menu";
import * as i20 from "@angular/cdk/drag-drop";
import * as i21 from "@ng-matero/extensions/dialog";
import * as i22 from "@ng-matero/extensions/core";
import * as i23 from "./column-resize/column-resize-module";
export declare class MtxGridModule {
static ɵfac: i0.ɵɵFactoryDeclaration<MtxGridModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxGridModule, [typeof i1.MtxGridComponent, typeof i2.MtxGridCellComponent, typeof i3.MtxGridColumnMenuComponent, typeof i4.MtxGridExpansionToggleDirective, typeof i1.MtxGridCellSelectionDirective], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.MatTableModule, typeof i8.MatSortModule, typeof i9.MatPaginatorModule, typeof i10.MatCheckboxModule, typeof i11.MatButtonModule, typeof i12.MatProgressBarModule, typeof i13.MatChipsModule, typeof i14.MatTooltipModule, typeof i15.MatIconModule, typeof i16.MatSelectModule, typeof i17.MatFormFieldModule, typeof i18.MatMenuModule, typeof i19.DragDropModule, typeof i20.MtxDialogModule, typeof i21.MtxPipesModule, typeof i22.MatColumnResizeModule], [typeof i1.MtxGridComponent, typeof i2.MtxGridCellComponent, typeof i3.MtxGridColumnMenuComponent, typeof i4.MtxGridExpansionToggleDirective, typeof i1.MtxGridCellSelectionDirective, typeof i22.MatColumnResizeModule]>;
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxGridModule, [typeof i1.MtxGridComponent, typeof i2.MtxGridCellComponent, typeof i3.MtxGridColumnMenuComponent, typeof i4.MtxGridExpansionToggleDirective, typeof i1.MtxGridCellSelectionDirective, typeof i5.MtxGridRowClassPipe, typeof i5.MtxGridColClassPipe, typeof i5.MtxGridCellActionTooltipPipe, typeof i5.MtxGridCellActionDisablePipe, typeof i5.MtxGridCellSummaryPipe], [typeof i6.CommonModule, typeof i7.FormsModule, typeof i8.MatTableModule, typeof i9.MatSortModule, typeof i10.MatPaginatorModule, typeof i11.MatCheckboxModule, typeof i12.MatButtonModule, typeof i13.MatProgressBarModule, typeof i14.MatChipsModule, typeof i15.MatTooltipModule, typeof i16.MatIconModule, typeof i17.MatSelectModule, typeof i18.MatFormFieldModule, typeof i19.MatMenuModule, typeof i20.DragDropModule, typeof i21.MtxDialogModule, typeof i22.MtxPipesModule, typeof i23.MatColumnResizeModule], [typeof i1.MtxGridComponent, typeof i2.MtxGridCellComponent, typeof i3.MtxGridColumnMenuComponent, typeof i4.MtxGridExpansionToggleDirective, typeof i1.MtxGridCellSelectionDirective, typeof i23.MatColumnResizeModule, typeof i5.MtxGridRowClassPipe, typeof i5.MtxGridColClassPipe, typeof i5.MtxGridCellActionTooltipPipe, typeof i5.MtxGridCellActionDisablePipe, typeof i5.MtxGridCellSummaryPipe]>;
static ɵinj: i0.ɵɵInjectorDeclaration<MtxGridModule>;
}

@@ -6,7 +6,8 @@ import { MtxGridColumn } from './grid.interface';

/**
* Get cell value from column key e.g. `a.b.c`
* Get cell's value based on the data and column's field (e.g. `a.b.c`)
* @param rowData Row data
* @param colDef Column definition
* @returns
*/
getCellValue(rowData: any, colDef: MtxGridColumn): string;
getCellValue(rowData: Record<string, any>, colDef: MtxGridColumn): string;
/**

@@ -16,2 +17,3 @@ * Get all data of a col

* @param colDef Column definition
* @returns
*/

@@ -21,7 +23,20 @@ getColData(data: any[], colDef: MtxGridColumn): any[];

* Remove white spaces in a string and convert string to array
* @param str string
* @param str
* @returns
*/
str2arr(str: string): string[];
/**
* Whether the value is empty (`null`, `undefined`, `''`, `[]`)
* @param value
* @returns
*/
isEmpty(value: any): boolean;
/**
* Whether the value contain HTML
* @param value
* @returns
*/
isContainHTML(value: string): boolean;
static ɵfac: i0.ɵɵFactoryDeclaration<MtxGridService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<MtxGridService>;
}
export * from './grid.module';
export * from './grid.interface';
export * from './grid.service';
export * from './grid.pipe';
export * from './grid.component';

@@ -5,0 +6,0 @@ export * from './cell.component';

{
"name": "@ng-matero/extensions",
"version": "14.6.4",
"version": "14.7.0",
"description": "Angular Material Extensions",

@@ -53,2 +53,17 @@ "publishConfig": {

},
"./prebuilt-themes/indigo-pink.css": {
"style": "./prebuilt-themes/indigo-pink.css"
},
"./prebuilt-themes/deeppurple-amber.css": {
"style": "./prebuilt-themes/deeppurple-amber.css"
},
"./prebuilt-themes/pink-bluegrey.css": {
"style": "./prebuilt-themes/pink-bluegrey.css"
},
"./prebuilt-themes/purple-green.css": {
"style": "./prebuilt-themes/purple-green.css"
},
"./prebuilt-themes/*": {
"style": "./prebuilt-themes/*.css"
},
"./package.json": {

@@ -55,0 +70,0 @@ "default": "./package.json"

import { FocusMonitor } from '@angular/cdk/a11y';
import { BooleanInput } from '@angular/cdk/coercion';
import { AfterViewInit, ChangeDetectorRef, DoCheck, ElementRef, EventEmitter, OnDestroy, OnInit, QueryList, TemplateRef } from '@angular/core';
import { ErrorStateMatcher } from '@angular/material/core';
import { CanDisable, ErrorStateMatcher } from '@angular/material/core';
import { ControlValueAccessor, FormGroupDirective, NgControl, NgForm } from '@angular/forms';

@@ -18,3 +18,3 @@ import { MatFormField, MatFormFieldControl } from '@angular/material/form-field';

/** @docs-private */
declare const _MtxSelectMixinBase: import("@angular/material/core")._Constructor<import("@angular/material/core").CanUpdateErrorState> & import("@angular/material/core")._AbstractConstructor<import("@angular/material/core").CanUpdateErrorState> & {
declare const _MtxSelectMixinBase: import("@angular/material/core")._Constructor<CanDisable> & import("@angular/material/core")._AbstractConstructor<CanDisable> & import("@angular/material/core")._Constructor<import("@angular/material/core").CanUpdateErrorState> & import("@angular/material/core")._AbstractConstructor<import("@angular/material/core").CanUpdateErrorState> & {
new (_defaultErrorStateMatcher: ErrorStateMatcher, _parentForm: NgForm, _parentFormGroup: FormGroupDirective, ngControl: NgControl): {

@@ -38,3 +38,3 @@ /**

};
export declare class MtxSelectComponent extends _MtxSelectMixinBase implements OnInit, OnDestroy, DoCheck, AfterViewInit, ControlValueAccessor, MatFormFieldControl<any> {
export declare class MtxSelectComponent extends _MtxSelectMixinBase implements OnInit, OnDestroy, DoCheck, AfterViewInit, ControlValueAccessor, CanDisable, MatFormFieldControl<any> {
protected _changeDetectorRef: ChangeDetectorRef;

@@ -155,6 +155,2 @@ protected _elementRef: ElementRef;

private _required;
/** Whether the select is disabled. */
get disabled(): boolean;
set disabled(value: boolean);
private _disabled;
/** Object used to control when error messages are shown. */

@@ -178,2 +174,7 @@ errorStateMatcher: ErrorStateMatcher;

get panelOpen(): boolean;
/**
* Keeps track of the previous form control assigned to the select.
* Used to detect if it has changed.
*/
private _previousControl;
constructor(_changeDetectorRef: ChangeDetectorRef, _elementRef: ElementRef, _focusMonitor: FocusMonitor, _defaultErrorStateMatcher: ErrorStateMatcher, _parentForm: NgForm, _parentFormGroup: FormGroupDirective, ngControl: NgControl, _parentFormField?: MatFormField | undefined);

@@ -229,4 +230,4 @@ ngOnInit(): void;

static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectComponent, [null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; self: true; }, { optional: true; }]>;
static ɵcmp: i0.ɵɵComponentDeclaration<MtxSelectComponent, "mtx-select", ["mtxSelect"], { "addTag": "addTag"; "addTagText": "addTagText"; "appearance": "appearance"; "appendTo": "appendTo"; "bindLabel": "bindLabel"; "bindValue": "bindValue"; "closeOnSelect": "closeOnSelect"; "clearAllText": "clearAllText"; "clearable": "clearable"; "clearOnBackspace": "clearOnBackspace"; "compareWith": "compareWith"; "dropdownPosition": "dropdownPosition"; "groupBy": "groupBy"; "groupValue": "groupValue"; "selectableGroup": "selectableGroup"; "selectableGroupAsModel": "selectableGroupAsModel"; "hideSelected": "hideSelected"; "isOpen": "isOpen"; "loading": "loading"; "loadingText": "loadingText"; "labelForId": "labelForId"; "markFirst": "markFirst"; "maxSelectedItems": "maxSelectedItems"; "multiple": "multiple"; "notFoundText": "notFoundText"; "searchable": "searchable"; "readonly": "readonly"; "searchFn": "searchFn"; "searchWhileComposing": "searchWhileComposing"; "selectOnTab": "selectOnTab"; "trackByFn": "trackByFn"; "inputAttrs": "inputAttrs"; "tabIndex": "tabIndex"; "openOnEnter": "openOnEnter"; "minTermLength": "minTermLength"; "editableSearchTerm": "editableSearchTerm"; "keyDownFn": "keyDownFn"; "virtualScroll": "virtualScroll"; "typeToSearchText": "typeToSearchText"; "typeahead": "typeahead"; "clearSearchOnAdd": "clearSearchOnAdd"; "items": "items"; "value": "value"; "id": "id"; "placeholder": "placeholder"; "required": "required"; "disabled": "disabled"; "errorStateMatcher": "errorStateMatcher"; "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; }, { "blurEvent": "blur"; "focusEvent": "focus"; "changeEvent": "change"; "openEvent": "open"; "closeEvent": "close"; "searchEvent": "search"; "clearEvent": "clear"; "addEvent": "add"; "removeEvent": "remove"; "scroll": "scroll"; "scrollToEnd": "scrollToEnd"; }, ["optionTemplate", "optgroupTemplate", "labelTemplate", "multiLabelTemplate", "headerTemplate", "footerTemplate", "notFoundTemplate", "typeToSearchTemplate", "loadingTextTemplate", "tagTemplate", "loadingSpinnerTemplate", "mtxOptions"], never, false>;
static ɵcmp: i0.ɵɵComponentDeclaration<MtxSelectComponent, "mtx-select", ["mtxSelect"], { "disabled": "disabled"; "addTag": "addTag"; "addTagText": "addTagText"; "appearance": "appearance"; "appendTo": "appendTo"; "bindLabel": "bindLabel"; "bindValue": "bindValue"; "closeOnSelect": "closeOnSelect"; "clearAllText": "clearAllText"; "clearable": "clearable"; "clearOnBackspace": "clearOnBackspace"; "compareWith": "compareWith"; "dropdownPosition": "dropdownPosition"; "groupBy": "groupBy"; "groupValue": "groupValue"; "selectableGroup": "selectableGroup"; "selectableGroupAsModel": "selectableGroupAsModel"; "hideSelected": "hideSelected"; "isOpen": "isOpen"; "loading": "loading"; "loadingText": "loadingText"; "labelForId": "labelForId"; "markFirst": "markFirst"; "maxSelectedItems": "maxSelectedItems"; "multiple": "multiple"; "notFoundText": "notFoundText"; "searchable": "searchable"; "readonly": "readonly"; "searchFn": "searchFn"; "searchWhileComposing": "searchWhileComposing"; "selectOnTab": "selectOnTab"; "trackByFn": "trackByFn"; "inputAttrs": "inputAttrs"; "tabIndex": "tabIndex"; "openOnEnter": "openOnEnter"; "minTermLength": "minTermLength"; "editableSearchTerm": "editableSearchTerm"; "keyDownFn": "keyDownFn"; "virtualScroll": "virtualScroll"; "typeToSearchText": "typeToSearchText"; "typeahead": "typeahead"; "clearSearchOnAdd": "clearSearchOnAdd"; "items": "items"; "value": "value"; "id": "id"; "placeholder": "placeholder"; "required": "required"; "errorStateMatcher": "errorStateMatcher"; "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; }, { "blurEvent": "blur"; "focusEvent": "focus"; "changeEvent": "change"; "openEvent": "open"; "closeEvent": "close"; "searchEvent": "search"; "clearEvent": "clear"; "addEvent": "add"; "removeEvent": "remove"; "scroll": "scroll"; "scrollToEnd": "scrollToEnd"; }, ["optionTemplate", "optgroupTemplate", "labelTemplate", "multiLabelTemplate", "headerTemplate", "footerTemplate", "notFoundTemplate", "typeToSearchTemplate", "loadingTextTemplate", "tagTemplate", "loadingSpinnerTemplate", "mtxOptions"], never, false>;
}
export {};

@@ -7,7 +7,8 @@ import * as i0 from "@angular/core";

import * as i5 from "@angular/material/core";
import * as i6 from "@angular/cdk/scrolling";
import * as i6 from "@ng-matero/extensions/core";
import * as i7 from "@angular/cdk/scrolling";
export declare class MtxTooltipModule {
static ɵfac: i0.ɵɵFactoryDeclaration<MtxTooltipModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxTooltipModule, [typeof i1.MtxTooltip, typeof i1.TooltipComponent], [typeof i2.A11yModule, typeof i3.CommonModule, typeof i4.OverlayModule, typeof i5.MatCommonModule], [typeof i1.MtxTooltip, typeof i1.TooltipComponent, typeof i5.MatCommonModule, typeof i6.CdkScrollableModule]>;
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxTooltipModule, [typeof i1.MtxTooltip, typeof i1.TooltipComponent], [typeof i2.A11yModule, typeof i3.CommonModule, typeof i4.OverlayModule, typeof i5.MatCommonModule, typeof i6.MtxPipesModule], [typeof i1.MtxTooltip, typeof i1.TooltipComponent, typeof i5.MatCommonModule, typeof i7.CdkScrollableModule]>;
static ɵinj: i0.ɵɵInjectorDeclaration<MtxTooltipModule>;
}

@@ -202,3 +202,2 @@ import { AnimationEvent } from '@angular/animations';

_isHandset: Observable<BreakpointState>;
_isTemplateRef(obj: any): boolean;
constructor(_changeDetectorRef: ChangeDetectorRef, _breakpointObserver: BreakpointObserver);

@@ -205,0 +204,0 @@ /**

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc