@covalent/core 8.0.0 → 8.1.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/styles/core/_structure.scss +0 -2
- package/common/styles/font/_font.scss +1 -35
- package/esm2022/common/common.module.mjs +8 -3
- package/esm2022/dialogs/resizable-draggable-dialog/resizable-draggable-dialog.mjs +4 -2
- package/esm2022/dialogs/window-dialog/window-dialog.component.mjs +3 -3
- package/esm2022/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.mjs +3 -3
- package/esm2022/layout/layout-card-over/layout-card-over.component.mjs +2 -2
- package/esm2022/layout/layout-nav/layout-nav.component.mjs +2 -2
- package/esm2022/layout/layout-nav-list/layout-nav-list.component.mjs +2 -2
- package/esm2022/layout/navigation-drawer/navigation-drawer.component.mjs +2 -2
- package/fesm2022/covalent-core-common.mjs +8 -3
- package/fesm2022/covalent-core-common.mjs.map +1 -1
- package/fesm2022/covalent-core-dialogs.mjs +6 -4
- package/fesm2022/covalent-core-dialogs.mjs.map +1 -1
- package/fesm2022/covalent-core-dynamic-menu.mjs +2 -2
- package/fesm2022/covalent-core-dynamic-menu.mjs.map +1 -1
- package/fesm2022/covalent-core-file.mjs +4 -4
- package/fesm2022/covalent-core-json-formatter.mjs +1 -1
- package/fesm2022/covalent-core-layout.mjs +4 -4
- package/fesm2022/covalent-core-layout.mjs.map +1 -1
- package/fesm2022/covalent-core-message.mjs +1 -1
- package/fesm2022/covalent-core-search.mjs +1 -1
- package/fesm2022/covalent-core-side-sheet.mjs +1 -1
- package/fesm2022/covalent-core-side-sheet.mjs.map +1 -1
- package/layout/_layout-theme.scss +13 -6
- package/layout/layout-card-over/layout-card-over.component.d.ts +1 -1
- package/layout/navigation-drawer/navigation-drawer.component.d.ts +1 -1
- package/package.json +2 -2
- package/common/styles/font/MaterialIcons-Regular-v48.woff2 +0 -0
@@ -3,10 +3,11 @@ import { Directive, Optional, Host, HostListener, Inject, Pipe, LOCALE_ID, Injec
|
|
3
3
|
import { DOCUMENT, DecimalPipe, CommonModule } from '@angular/common';
|
4
4
|
import * as i1 from '@angular/forms';
|
5
5
|
import { FormsModule, Validators } from '@angular/forms';
|
6
|
+
import { MAT_ICON_DEFAULT_OPTIONS } from '@angular/material/icon';
|
6
7
|
import * as i1$1 from '@angular/router';
|
7
8
|
import { RoutesRecognized } from '@angular/router';
|
8
9
|
import { filter, pairwise } from 'rxjs/operators';
|
9
|
-
import {
|
10
|
+
import { style, state, animateChild, query, animate, group, transition, trigger, AUTO_STYLE, keyframes } from '@angular/animations';
|
10
11
|
import { Subject } from 'rxjs';
|
11
12
|
import { coerceBooleanProperty } from '@angular/cdk/coercion';
|
12
13
|
|
@@ -1580,6 +1581,10 @@ const TD_PIPES = [
|
|
1580
1581
|
TdDigitsPipe,
|
1581
1582
|
TdTruncatePipe,
|
1582
1583
|
];
|
1584
|
+
const TD_DEFAULT_ICON_OPTIONS = {
|
1585
|
+
provide: MAT_ICON_DEFAULT_OPTIONS,
|
1586
|
+
useValue: { fontSet: 'material-symbols-outlined' },
|
1587
|
+
};
|
1583
1588
|
class CovalentCommonModule {
|
1584
1589
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CovalentCommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1585
1590
|
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.0.4", ngImport: i0, type: CovalentCommonModule, declarations: [TdAutoTrimDirective, TdFullscreenDirective, TdTimeAgoPipe,
|
@@ -1595,7 +1600,7 @@ class CovalentCommonModule {
|
|
1595
1600
|
TdDecimalBytesPipe,
|
1596
1601
|
TdDigitsPipe,
|
1597
1602
|
TdTruncatePipe] });
|
1598
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CovalentCommonModule, providers: [RouterPathService, IconService], imports: [FormsModule, CommonModule, FormsModule, CommonModule] });
|
1603
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CovalentCommonModule, providers: [RouterPathService, IconService, TD_DEFAULT_ICON_OPTIONS], imports: [FormsModule, CommonModule, FormsModule, CommonModule] });
|
1599
1604
|
}
|
1600
1605
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CovalentCommonModule, decorators: [{
|
1601
1606
|
type: NgModule,
|
@@ -1603,7 +1608,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImpor
|
|
1603
1608
|
imports: [FormsModule, CommonModule],
|
1604
1609
|
declarations: [TD_DIRECTIVES, TD_PIPES, TD_VALIDATORS],
|
1605
1610
|
exports: [FormsModule, CommonModule, TD_DIRECTIVES, TD_PIPES, TD_VALIDATORS],
|
1606
|
-
providers: [RouterPathService, IconService],
|
1611
|
+
providers: [RouterPathService, IconService, TD_DEFAULT_ICON_OPTIONS],
|
1607
1612
|
}]
|
1608
1613
|
}] });
|
1609
1614
|
|