mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 23:40:14 +01:00
feat: update Angular Material 13
This commit is contained in:
parent
e1708d2f4a
commit
6d3c1c35bc
7 changed files with 252 additions and 534 deletions
|
|
@ -27,6 +27,11 @@
|
||||||
"output": "/assets/img/markers"
|
"output": "/assets/img/markers"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"stylePreprocessorOptions": {
|
||||||
|
"includePaths": [
|
||||||
|
"node_modules"
|
||||||
|
]
|
||||||
|
},
|
||||||
"styles": [
|
"styles": [
|
||||||
"node_modules/bootstrap/dist/css/bootstrap.css",
|
"node_modules/bootstrap/dist/css/bootstrap.css",
|
||||||
"node_modules/typeface-exo/index.css",
|
"node_modules/typeface-exo/index.css",
|
||||||
|
|
|
||||||
763
package-lock.json
generated
763
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -31,13 +31,13 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/animations": "^13.3.12",
|
"@angular/animations": "^13.3.12",
|
||||||
"@angular/cdk": "12.1.0",
|
"@angular/cdk": "13.3.9",
|
||||||
"@angular/common": "^13.3.12",
|
"@angular/common": "^13.3.12",
|
||||||
"@angular/compiler": "^13.3.12",
|
"@angular/compiler": "^13.3.12",
|
||||||
"@angular/core": "^13.3.12",
|
"@angular/core": "^13.3.12",
|
||||||
"@angular/forms": "^13.3.12",
|
"@angular/forms": "^13.3.12",
|
||||||
"@angular/google-maps": "^12.2.13",
|
"@angular/google-maps": "^12.2.13",
|
||||||
"@angular/material": "^12.1.0",
|
"@angular/material": "^13.3.9",
|
||||||
"@angular/platform-browser": "^13.3.12",
|
"@angular/platform-browser": "^13.3.12",
|
||||||
"@angular/platform-browser-dynamic": "^13.3.12",
|
"@angular/platform-browser-dynamic": "^13.3.12",
|
||||||
"@angular/router": "^13.3.12",
|
"@angular/router": "^13.3.12",
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
@use '~@angular/material' as mat;
|
@use '@angular/material' as mat;
|
||||||
|
|
||||||
@mixin angular-material() {
|
@mixin angular-material() {
|
||||||
@include mat.core();
|
@include mat.core();
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,8 @@
|
||||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@import '~@nebular/theme/styles/core/functions';
|
@import '@nebular/theme/styles/core/functions';
|
||||||
@import '~@nebular/theme/styles/core/mixins';
|
@import '@nebular/theme/styles/core/mixins';
|
||||||
|
|
||||||
$theme: (
|
$theme: (
|
||||||
color-primary-100: #fff2f7,
|
color-primary-100: #fff2f7,
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,8 @@
|
||||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@import '~@nebular/theme/styles/core/functions';
|
@import '@nebular/theme/styles/core/functions';
|
||||||
@import '~@nebular/theme/styles/core/mixins';
|
@import '@nebular/theme/styles/core/mixins';
|
||||||
|
|
||||||
$theme: (
|
$theme: (
|
||||||
color-primary-100: #e8cbfe,
|
color-primary-100: #e8cbfe,
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
</div>
|
</div>
|
||||||
<input type="password" nbInput fullWidth placeholder="Password">
|
<input type="password" nbInput fullWidth placeholder="Password">
|
||||||
<input type="text" nbInput fullWidth shape="rectangle" placeholder="Rectangle border">
|
<input type="text" nbInput fullWidth shape="rectangle" placeholder="Rectangle border">
|
||||||
<ng-container *ngIf="!(materialTheme$ | async)">
|
<ng-container *ngIf="(materialTheme$ | async) !== true">
|
||||||
<input type="text" nbInput fullWidth shape="semi-round" placeholder="Semi-round border">
|
<input type="text" nbInput fullWidth shape="semi-round" placeholder="Semi-round border">
|
||||||
<input type="text" nbInput fullWidth shape="round" placeholder="Rounded border">
|
<input type="text" nbInput fullWidth shape="round" placeholder="Rounded border">
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
@ -91,4 +91,4 @@
|
||||||
<div class="col-lg-12">
|
<div class="col-lg-12">
|
||||||
<ngx-material-inputs></ngx-material-inputs>
|
<ngx-material-inputs></ngx-material-inputs>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue