Commit d19083c6 authored by wuxl's avatar wuxl

chg:login page

parent 0c38a6d1
...@@ -29,9 +29,15 @@ ...@@ -29,9 +29,15 @@
"aot": true, "aot": true,
"assets": [ "assets": [
"src/favicon.ico", "src/favicon.ico",
"src/assets" "src/assets",
{
"glob": "**/*",
"input": "./node_modules/@ant-design/icons-angular/src/inline-svg/",
"output": "/assets/"
}
], ],
"styles": [ "styles": [
"./node_modules/ng-zorro-antd/ng-zorro-antd.min.css",
"src/styles.scss" "src/styles.scss"
], ],
"scripts": [] "scripts": []
......
...@@ -17,7 +17,6 @@ ...@@ -17,7 +17,6 @@
"eslint --quiet" "eslint --quiet"
] ]
}, },
"dependencies": { "dependencies": {
"@angular/animations": "~11.2.13", "@angular/animations": "~11.2.13",
"@angular/common": "~11.2.13", "@angular/common": "~11.2.13",
...@@ -27,6 +26,7 @@ ...@@ -27,6 +26,7 @@
"@angular/platform-browser": "~11.2.13", "@angular/platform-browser": "~11.2.13",
"@angular/platform-browser-dynamic": "~11.2.13", "@angular/platform-browser-dynamic": "~11.2.13",
"@angular/router": "~11.2.13", "@angular/router": "~11.2.13",
"ng-zorro-antd": "11.4.2",
"rxjs": "~6.6.0", "rxjs": "~6.6.0",
"tslib": "^2.0.0", "tslib": "^2.0.0",
"zone.js": "~0.11.3" "zone.js": "~0.11.3"
...@@ -44,13 +44,13 @@ ...@@ -44,13 +44,13 @@
"@types/node": "^12.11.1", "@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "4.3.0", "@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0", "@typescript-eslint/parser": "4.3.0",
"codelyzer": "^6.0.0",
"eslint": "^7.6.0", "eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.1", "eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-typescript": "^2.5.0", "eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "2.22.1", "eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.6", "eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2", "eslint-plugin-prefer-arrow": "1.2.2",
"codelyzer": "^6.0.0",
"jasmine-core": "~3.6.0", "jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0", "jasmine-spec-reporter": "~5.0.0",
"karma": "~6.1.0", "karma": "~6.1.0",
......
import { NgModule } from '@angular/core'; import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router'; import { RouterModule, Routes } from '@angular/router';
const routes:Routes = []; import { LoginComponent } from './page/login/login.component';
const routes:Routes = [
{ path: 'login', component: LoginComponent },
];
@NgModule({ @NgModule({
imports: [RouterModule.forRoot(routes)], imports: [RouterModule.forRoot(routes)],
......
This diff is collapsed.
import { TestBed } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';
import { AppComponent } from './app.component';
describe('AppComponent', () => {
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [
RouterTestingModule
],
declarations: [
AppComponent
],
}).compileComponents();
});
it('should create the app', () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app).toBeTruthy();
});
it(`should have as title 'loom-frontend'`, () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app.title).toEqual('loom-frontend');
});
it('should render title', () => {
const fixture = TestBed.createComponent(AppComponent);
fixture.detectChanges();
const compiled = fixture.nativeElement;
expect(compiled.querySelector('.content span').textContent).toContain('loom-frontend app is running!');
});
});
import { Component } from '@angular/core'; import { Component } from '@angular/core';
import { Router } from '@angular/router';
@Component({ @Component({
selector: 'app-root', selector: 'app-root',
templateUrl: './app.component.html', templateUrl: './app.component.html'
styleUrls: ['./app.component.scss']
}) })
export class AppComponent { export class AppComponent {
title = 'loom-frontend'; constructor(
private router:Router
) {
const agent:any = navigator.userAgent.toLowerCase();
const isIE = agent.indexOf('compatible') > -1 && agent.indexOf('MSIE') > -1;
const isIE11 = agent.indexOf('Trident') > -1 && agent.indexOf('rv:11.0') > -1;
const isEdge = agent.indexOf('Edge') > -1 && !isIE;
if (isIE || isIE11 || isEdge) {
this.router.navigateByUrl('/browser');
}
}
title = 'ChemZoo';
} }
import { NgModule } from '@angular/core'; import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser'; import { BrowserModule } from '@angular/platform-browser';
import { HttpClientModule } from '@angular/common/http';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { NzFormModule } from 'ng-zorro-antd/form';
import { NzIconModule } from 'ng-zorro-antd/icon';
import { NzInputModule } from 'ng-zorro-antd/input';
import { NzCheckboxModule } from 'ng-zorro-antd/checkbox';
import { NzButtonModule } from 'ng-zorro-antd/button';
import { NzSelectModule } from 'ng-zorro-antd/select';
import { AppRoutingModule } from './app-routing.module'; import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component'; import { AppComponent } from './app.component';
...@@ -11,7 +20,15 @@ import { LoginComponent } from './page/login/login.component'; ...@@ -11,7 +20,15 @@ import { LoginComponent } from './page/login/login.component';
LoginComponent], LoginComponent],
imports: [ imports: [
BrowserModule, BrowserModule,
AppRoutingModule HttpClientModule,
NzFormModule,
NzIconModule,
NzInputModule,
NzCheckboxModule,
NzButtonModule,
NzSelectModule,
AppRoutingModule,
BrowserAnimationsModule
], ],
providers: [], providers: [],
bootstrap: [AppComponent] bootstrap: [AppComponent]
......
This diff is collapsed.
.login-container {
height: 100%;
width: 100%;
display: flex;
justify-content: space-between;
background: url(../../../assets/images/bg.jpg);
background-size: cover;
background-repeat: no-repeat;
position: relative;
min-height: 768px;
.login-content {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
box-shadow: 2px 2px 10px 4px #70707080;
border-radius: 50px;
overflow: hidden;
.content-bg {
width: 75vw;
display: block;
}
.con-left {
width: 57%;
height: 100%;
position: absolute;
top: 0;
.welcome {
color: #fff;
position: absolute;
top: 44%;
left: 135px;
&>p {
margin: 0;
}
.text-welcome {
font-size: 35px;
font-weight: bolder;
margin-bottom: 10px;
}
}
.text-box {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
color: white;
font-family: Helvetica;
font-weight: lighter;
.copy-right-text {
text-align: center;
margin-bottom: 0px;
}
.powered-by-text {
text-align: center;
margin-top: 0px;
}
.powered-by-mediprosav {
color: #ff9c00;
font-weight: normal;
}
.tm {
vertical-align: super;
font-size: 10px;
color: #ff9c00;
font-weight: normal;
}
}
}
.con-right {
width: 43%;
height: 100%;
position: absolute;
top: 0;
left: 57%;
.con-right-bg {
width: 100%;
height: 100%;
}
.con-right-content {
width: 100%;
height: 100%;
position: absolute;
top: 0;
.sign-in-text {
display: block;
width: 100%;
}
.tip-label {
font-family: Helvetica;
font-weight: 100;
font-size: 16px;
margin: 7px 0;
&.red_color {
color: #ff0000;
}
&.gray_color {
color: #b3b3b3;
}
}
&.step-two {
text-align: center;
.user-Avatars {
font-size: 160px;
line-height: 1;
margin-bottom: 30px;
&>div {
width: 160px;
height: 160px;
border-radius: 160px;
margin: auto;
box-shadow: 0 4px 10px 4px #70707099;
}
}
.user-name {
font-family: Helvetica;
font-weight: bolder;
font-size: 20px;
}
.user-magager {
font-family: Helvetica;
font-weight: 100;
font-size: 18px;
color: #b3b3b3;
}
}
}
.login-method-tab {
display: flex;
flex-direction: row;
height: 55px;
background: #fff;
width: 100%;
align-items: center;
border-radius: 0 0 25px 25px;
border-top: 1px solid #eeeeee;
position: absolute;
bottom: 0;
.login-method {
width: 50%;
height: 100%;
cursor: pointer;
background: #ecf7ef;
color: #707070;
&.active {
color: #376408;
box-shadow: 0px 3px 12px -7px #707070 inset;
.login-method-wrapper {
.login-method-icon {
&.inactive {
display: none;
}
&.active {
display: initial;
}
}
}
}
.login-method-wrapper {
height: 100%;
width: 100%;
box-sizing: border-box;
padding: 10px 20px;
align-items: center;
justify-content: center;
display: flex;
.login-method-icon {
font-size: 30px;
margin-right: 15px;
&.active {
display: none;
}
}
}
}
.login-method:first-child {
border-radius: 0 0 0 25px;
.login-method-wrapper {
border-right: 1px solid #eeeeee;
}
}
.login-method:last-child {
border-radius: 0 0 25px 0;
}
}
.botton-group {
width: calc(100% - 30px);
display: flex;
justify-content: space-between;
position: absolute;
bottom: 0;
margin: 20px 15px;
.step-btn {
width: 49%;
font-size: 16px;
height: 50px;
border-radius: 50px;
background: linear-gradient(to right, #83d0ea, #9eeeac);
border: 0;
box-shadow: 0 4px 10px 0 #70707080;
font-family: Helvetica;
font-weight: lighter;
}
.step-btn[disabled] {
background: linear-gradient(to right, #ccc, #999) !important;
color: rgba(0, 0, 0, 0.38) !important;
cursor: not-allowed;
}
}
}
}
.reset {
height: 45px;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: lighter;
.example-margin {
color: #8d8d8d;
font-size: 15px;
}
.reset-btn {
text-decoration: none;
padding: 0;
display: block;
text-align: center;
color: #8d8d8d;
font-family: '黑体';
font-size: 15px;
letter-spacing: 0.6px;
height: 21px;
}
}
.login-input {
border: 0;
height: 50px;
background: #f0f0f0;
border-radius: 50px;
box-shadow: none !important;
&>input {
background: #f0f0f0;
color: #8d8d8d;
}
}
.login-btn {
font-size: 16px;
height: 50px;
border-radius: 50px;
background: linear-gradient(to right, #83d0ea, #9eeeac);
border: 0;
box-shadow: 4px 4px 10px 0px #70707080;
font-family: Helvetica;
font-weight: lighter;
}
.login-btn[disabled] {
background: linear-gradient(to right, #ccc, #999) !important;
color: rgba(0, 0, 0, 0.38) !important;
cursor: not-allowed;
}
.left-icon {
position: absolute;
left: 16px;
top: 50%;
transform: translateY(-50%);
}
.right-icon {
position: absolute;
right: 16px;
top: 50%;
transform: translateY(-50%);
}
.margin-top-35px {
margin-top: 35px;
}
.margin-bottom-0px {
margin-bottom: 0;
}
.margin-bottom-10px {
margin-bottom: 10px;
}
.margin-top-80px {
margin-top: 80px;
}
.prefixIcon {
font-size: 25px;
margin-right: 5px;
}
.send-button {
color: #fff;
background: #83d0ea;
border-radius: 50px;
cursor: pointer;
}
.tip {
text-align: left;
font-family: Helvetica;
font-weight: 100;
color: #b3b3b3;
}
}
\ No newline at end of file
...@@ -6,8 +6,22 @@ import { Component, OnInit } from '@angular/core'; ...@@ -6,8 +6,22 @@ import { Component, OnInit } from '@angular/core';
styleUrls: ['./login.component.scss'] styleUrls: ['./login.component.scss']
}) })
export class LoginComponent implements OnInit { export class LoginComponent implements OnInit {
loginMethod = 'username';
step = 1;
constructor() { } constructor() { }
ngOnInit():void { ngOnInit():void {
}
nextStep() {
this.step = 2;
}
previousStep() {
this.step = 1;
} }
} }
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><defs><style>.cls-1{fill:#db1b1b;}.cls-2{fill:#bc1b1b;}.cls-3{fill:#b0d46c;}.cls-4{fill:#a3c163;}.cls-5{fill:#83964d;}.cls-6{fill:#97b25b;}.cls-7{fill:#27273d;}.cls-8{fill:#00b564;}.cls-9{fill:#cbe591;}.cls-10{fill:none;stroke:#27273d;stroke-linecap:round;stroke-miterlimit:10;stroke-width:15px;}.cls-11{fill:#f7bb38;}</style></defs><title>Robot Avatars</title><g id="BULINE"><circle class="cls-1" cx="256" cy="256" r="256"/></g><g id="Icons"><path class="cls-2" d="M484.77,371a255.88,255.88,0,0,1-361,104.27l0,0A257.19,257.19,0,0,1,27.23,371a256.81,256.81,0,0,1,75-89.7q5.4-4.07,11-7.85,5.07-3.4,10.32-6.59h0a254.42,254.42,0,0,1,36.11-18.13q4.18-1.69,8.45-3.26h0a252.53,252.53,0,0,1,27-8.19c1.64-.4,3.29-.79,4.95-1.15q8.85-2,17.93-3.33a258.67,258.67,0,0,1,72.3-.51q9.78,1.31,19.32,3.35a251.31,251.31,0,0,1,34.85,10.08,254.65,254.65,0,0,1,44.61,21.57q4.67,2.83,9.19,5.88,5.61,3.75,11,7.8a256.81,256.81,0,0,1,75.46,90Z"/><circle class="cls-3" cx="254.51" cy="264.17" r="172"/><path class="cls-4" d="M280,434.29a172,172,0,1,1,0-340.24,172,172,0,0,0,0,340.24Z"/><rect class="cls-5" x="198.01" y="78.01" width="113" height="122" rx="26.29"/><rect class="cls-6" x="206.04" y="86.67" width="96.95" height="104.67" rx="22.56"/><rect class="cls-7" x="152.51" y="215.59" width="204" height="86" rx="19.25"/><path class="cls-7" d="M192.68,348.21H316.34a0,0,0,0,1,0,0v.95a40,40,0,0,1-40,40H232.65a40,40,0,0,1-40-40v-.95A0,0,0,0,1,192.68,348.21Z"/><circle class="cls-8" cx="198.01" cy="258.59" r="20.44"/><circle class="cls-8" cx="311.01" cy="258.59" r="20.44"/><ellipse class="cls-9" cx="353.24" cy="155.6" rx="8.76" ry="19.27" transform="translate(-28.89 210.09) rotate(-31.89)"/><ellipse class="cls-9" cx="377.84" cy="195.15" rx="6.78" ry="14.91" transform="translate(-46.06 229.06) rotate(-31.89)"/><ellipse class="cls-5" cx="106.57" cy="264.26" rx="15.5" ry="48"/><ellipse class="cls-5" cx="404.3" cy="264.26" rx="15.5" ry="48"/><line class="cls-10" x1="106.57" y1="264.26" x2="36.57" y2="264.26"/><circle class="cls-11" cx="36.57" cy="264.26" r="25"/><line class="cls-10" x1="404.3" y1="264.26" x2="474.3" y2="264.26"/><circle class="cls-11" cx="474.3" cy="264.26" r="25"/></g></svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1649428002641" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="13640" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M904.533333 311.466667c-17.066667-17.066667-42.666667-17.066667-59.733333 0L512 644.266667 179.2 311.466667c-17.066667-17.066667-42.666667-17.066667-59.733333 0-17.066667 17.066667-17.066667 42.666667 0 59.733333l362.666666 362.666667c8.533333 8.533333 19.2 12.8 29.866667 12.8s21.333333-4.266667 29.866667-12.8l362.666666-362.666667c17.066667-17.066667 17.066667-42.666667 0-59.733333z" p-id="13641" fill="#707070"></path></svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1649415181225" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6709" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M368.992 830.304l0 1.184c-6.496 0-11.264 0.512-14.048 0.512l-3.296 0c-69.248 0-124.992-55.36-126.944-124.512-1.056-33.952 11.2-66.816 34.464-91.488 23.264-24.672 54.72-39.136 88.64-40.096 0.32 0 3.744-0.192 4.032-0.192 26.592 0 52.064 8.32 73.984 24.288 30.752 10.848 61.824-4.32 92.192-45.024 30.208-40.416 36.576-72.448 18.88-95.232-6.304-4.544-12.352-9.92-18.368-16.32-1.056-1.024-2.048-2.144-2.976-3.296-19.872-22.432-31.264-50.816-32.16-80.064-1.92-70.176 53.376-128.8 123.232-130.784 0.32 0 3.584-0.064 3.904-0.064 58.784 0 110.752 41.664 123.552 99.072 10.336 31.872 36.704 158.176-90.176 327.84C526.528 813.312 412.576 830.304 368.992 830.304zM364.896 766.208c18.976 0.416 118.592-2.24 227.616-148.416 111.36-148.928 86.016-253.376 79.776-272.832-7.104-31.168-32.8-51.776-61.888-51.776-36.704 1.024-64.096 30.144-63.168 64.992 0.576 18.496 9.312 31.968 16.544 39.968 0.224 0.256 0.48 0.544 0.672 0.8 4.032 4.352 7.808 7.648 11.552 10.08 2.368 1.568 4.576 3.424 6.432 5.568 19.616 22.112 57.6 83.84-13.28 178.624-45.792 61.28-92.704 74.112-124 74.144-16.096 0-32.096-3.296-47.52-9.728-2.656-1.12-5.184-2.592-7.456-4.384-7.968-6.272-21.088-13.76-38.432-13.76-18.976 0.544-34.56 7.52-46.048 19.712-11.52 12.256-17.6 28.288-17.088 45.12 0.96 34.4 28.64 61.248 62.976 61.248 0.16 0 0.192 0.032 0.064 0.064 1.184-0.192 2.496-0.352 3.264-0.416C358.336 765.184 361.696 765.44 364.896 766.208z" p-id="6710"></path><path d="M512 963.328c-60.224 0-118.624-11.744-173.6-34.88-16.288-6.88-23.936-25.632-17.056-41.92 6.848-16.32 25.632-23.904 41.92-17.088 47.072 19.808 97.12 29.888 148.768 29.888 211.744 0 384-172.256 384-384 0-211.744-172.256-384-384-384-211.744 0-384 172.256-384 384 0 72.384 20.256 142.88 58.56 203.904 9.376 14.976 4.864 34.72-10.08 44.096-14.976 9.408-34.72 4.896-44.128-10.08C87.616 681.984 64 599.712 64 515.328c0-247.008 200.96-448 448-448s448 200.96 448 448C960 762.336 759.04 963.328 512 963.328z" p-id="6711"></path></svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1649414858341" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5498" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M512 74.666667C270.933333 74.666667 74.666667 270.933333 74.666667 512S270.933333 949.333333 512 949.333333 949.333333 753.066667 949.333333 512 753.066667 74.666667 512 74.666667zM288 810.666667c0-123.733333 100.266667-224 224-224S736 686.933333 736 810.666667c-61.866667 46.933333-140.8 74.666667-224 74.666666s-162.133333-27.733333-224-74.666666z m128-384c0-53.333333 42.666667-96 96-96s96 42.666667 96 96-42.666667 96-96 96-96-42.666667-96-96z m377.6 328.533333c-19.2-96-85.333333-174.933333-174.933333-211.2 32-29.866667 51.2-70.4 51.2-117.333333 0-87.466667-72.533333-160-160-160s-160 72.533333-160 160c0 46.933333 19.2 87.466667 51.2 117.333333-89.6 36.266667-155.733333 115.2-174.933334 211.2-55.466667-66.133333-91.733333-149.333333-91.733333-243.2 0-204.8 168.533333-373.333333 373.333333-373.333333S885.333333 307.2 885.333333 512c0 93.866667-34.133333 177.066667-91.733333 243.2z" p-id="5499"></path></svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1649413491729" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3726" width="64" height="64" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><style type="text/css"></style></defs><path d="M868.593046 403.832442c-30.081109-28.844955-70.037123-44.753273-112.624057-44.753273L265.949606 359.079168c-42.554188 0-82.510202 15.908318-112.469538 44.690852-30.236652 28.782533-46.857191 67.222007-46.857191 108.198258l0 294.079782c0 40.977273 16.619516 79.414701 46.702672 108.136859 29.959336 28.844955 70.069869 44.814672 112.624057 44.814672l490.019383 0c42.585911 0 82.696444-15.969717 112.624057-44.814672 30.082132-28.844955 46.579875-67.222007 46.579875-108.136859L915.172921 511.968278C915.171897 471.053426 898.675178 432.677397 868.593046 403.832442zM841.821309 806.049083c0 22.098297-8.882298 42.772152-25.099654 58.306964-16.154935 15.661701-37.81935 24.203238-60.752666 24.203238L265.949606 888.559285c-22.934339 0-44.567032-8.54256-60.877509-24.264637-16.186657-15.474436-25.067932-36.148291-25.067932-58.246589L180.004165 511.968278c0-22.035876 8.881274-42.772152 25.192775-58.307987 16.186657-15.536858 37.81935-24.139793 60.753689-24.139793l490.019383 0c22.933315 0 44.597731 8.602935 60.752666 24.139793 16.21838 15.535835 25.099654 36.272112 25.099654 58.307987L841.822332 806.049083zM510.974136 135.440715c114.914216 0 208.318536 89.75214 208.318536 200.055338l73.350588 0c0-149.113109-126.366036-270.496667-281.669124-270.496667-155.333788 0-281.699824 121.383558-281.699824 270.496667l73.350588 0C302.623877 225.193879 396.059919 135.440715 510.974136 135.440715zM474.299865 747.244792l73.350588 0L547.650453 629.576859l-73.350588 0L474.299865 747.244792z" p-id="3727" fill="#8d8d8d"></path></svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1649473787341" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4536" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M942.08 738.304c-25.6-23.552-55.296-47.104-76.8-61.44-27.648-19.456-57.344-38.912-84.992-51.2-43.008-21.504-59.392-25.6-70.656-25.6-19.456 0-35.84 10.24-51.2 29.696-8.192 12.288-17.408 29.696-23.552 45.056-4.096 10.24-12.288 27.648-17.408 33.792-8.192-2.048-31.744-12.288-70.656-37.888-35.84-25.6-74.752-57.344-104.448-84.992-29.696-29.696-59.392-68.608-84.992-104.448-25.6-37.888-35.84-61.44-37.888-70.656 6.144-4.096 23.552-12.288 33.792-17.408 15.36-6.144 31.744-12.288 45.056-23.552 21.504-15.36 29.696-31.744 29.696-51.2 0-10.24-2.048-27.648-25.6-70.656-12.288-25.6-31.744-55.296-51.2-84.992-15.36-21.504-38.912-51.2-61.44-76.8-27.648-27.648-47.104-40.96-66.56-40.96-47.104 0-100.352 68.608-114.688 87.04-19.456 25.6-66.56 96.256-66.56 159.744 0 59.392 40.96 138.24 74.752 194.56 45.056 72.704 108.544 153.6 177.152 224.256l21.504 21.504 0 0c70.656 68.608 149.504 132.096 224.256 177.152 23.552 15.36 51.2 29.696 78.848 43.008l0 0c4.096 2.048 6.144 2.048 10.24 2.048 15.36 0 27.648-12.288 27.648-27.648 0-10.24-6.144-21.504-17.408-25.6-21.504-10.24-45.056-23.552-70.656-38.912-70.656-43.008-145.408-102.4-212.992-168.96l-21.504-21.504c-66.56-68.608-125.952-143.36-168.96-212.992-43.008-68.608-66.56-128-66.56-163.84 0-31.744 19.456-78.848 53.248-123.904 15.36-19.456 29.696-37.888 45.056-51.2 15.36-13.312 23.552-17.408 27.648-17.408 10.24 4.096 43.008 31.744 87.04 98.304 17.408 25.6 33.792 51.2 45.056 74.752 15.36 27.648 17.408 40.96 17.408 43.008 0 0-4.096 4.096-10.24 8.192-8.192 4.096-21.504 10.24-31.744 15.36-15.36 6.144-27.648 12.288-40.96 19.456-19.456 12.288-27.648 27.648-27.648 45.056 0 8.192 0 33.792 49.152 104.448 25.6 37.888 59.392 80.896 92.16 112.64l0 0c31.744 31.744 74.752 66.56 112.64 92.16 70.656 47.104 96.256 49.152 104.448 49.152l0 0c17.408 0 31.744-8.192 45.056-27.648 8.192-10.24 12.288-25.6 19.456-40.96 4.096-10.24 10.24-23.552 15.36-31.744 6.144-4.096 10.24-6.144 10.24-6.144 2.048 0 15.36 2.048 43.008 17.408 21.504 12.288 49.152 27.648 74.752 45.056 63.488 45.056 94.208 76.8 98.304 87.04-2.048 4.096-6.144 12.288-17.408 27.648-12.288 15.36-31.744 31.744-51.2 45.056-29.696 21.504-61.44 38.912-87.04 47.104l0 0c-10.24 4.096-17.408 15.36-17.408 25.6 0 15.36 12.288 27.648 27.648 27.648 2.048 0 4.096 0 6.144-2.048l0 0c2.048 0 2.048 0 4.096-2.048l0 0c45.056-15.36 82.944-40.96 102.4-55.296 21.504-15.36 87.04-70.656 87.04-115.712C982.016 785.408 969.728 765.952 942.08 738.304z" p-id="4537" fill="#707070"></path></svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1649427824115" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3460" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M216.96 231.04h-102.4a31.36 31.36 0 0 1 0-64h102.4a31.36 31.36 0 0 1 0 64zM216.96 339.84h-102.4a31.36 31.36 0 1 1 0-64h102.4a31.36 31.36 0 1 1 0 64z" fill="#707070" p-id="3461"></path><path d="M229.12 951.04h-128a93.44 93.44 0 0 1-92.16-94.08V161.92A93.44 93.44 0 0 1 102.4 67.84h128a94.08 94.08 0 0 1 92.8 94.08v695.04a94.08 94.08 0 0 1-94.08 94.08zM102.4 128a30.72 30.72 0 0 0-30.72 31.36v697.6a30.72 30.72 0 0 0 30.72 31.36h128a31.36 31.36 0 0 0 31.36-31.36V161.92A31.36 31.36 0 0 0 229.12 128z" fill="#707070" p-id="3462"></path><path d="M165.76 748.8m-44.16 0a44.16 44.16 0 1 0 88.32 0 44.16 44.16 0 1 0-88.32 0Z" fill="#707070" p-id="3463"></path><path d="M469.12 231.04H366.08a31.36 31.36 0 0 1 0-64h103.04a31.36 31.36 0 0 1 0 64zM469.12 339.84H366.08a31.36 31.36 0 0 1 0-64h103.04a31.36 31.36 0 0 1 0 64z" fill="#707070" p-id="3464"></path><path d="M480.64 951.04h-128a94.08 94.08 0 0 1-93.44-94.08V161.92a94.08 94.08 0 0 1 94.72-94.08h128A94.08 94.08 0 0 1 576 161.92v695.04a94.08 94.08 0 0 1-95.36 94.08zM353.92 128a31.36 31.36 0 0 0-30.72 31.36v697.6a31.36 31.36 0 0 0 30.72 31.36h128a31.36 31.36 0 0 0 30.08-31.36V161.92A31.36 31.36 0 0 0 480.64 128z" fill="#707070" p-id="3465"></path><path d="M417.28 748.8m-44.16 0a44.16 44.16 0 1 0 88.32 0 44.16 44.16 0 1 0-88.32 0Z" fill="#707070" p-id="3466"></path><path d="M648.96 225.28a31.36 31.36 0 0 1-7.68-64l99.2-25.6a31.36 31.36 0 1 1 15.36 60.8l-99.2 24.96a16 16 0 0 1-7.68 3.84zM675.84 330.88a31.36 31.36 0 0 1-7.68-64L768 243.84a30.72 30.72 0 0 1 37.76 22.4 31.36 31.36 0 0 1-22.4 38.4l-99.2 24.96z" fill="#707070" p-id="3467"></path><path d="M798.72 928a93.44 93.44 0 0 1-90.88-70.4L536.96 183.04a92.16 92.16 0 0 1 10.24-71.04 95.36 95.36 0 0 1 57.6-42.88l122.88-31.36a93.44 93.44 0 0 1 113.92 68.48l170.88 673.92a95.36 95.36 0 0 1-10.24 71.04 93.44 93.44 0 0 1-57.6 42.88l-122.88 31.36a94.08 94.08 0 0 1-23.04 2.56z m-48-832h-7.68L620.16 128a30.72 30.72 0 0 0-19.2 14.08 33.92 33.92 0 0 0-3.2 23.68L768 842.24a31.36 31.36 0 0 0 37.76 22.4l123.52-32.64a32.64 32.64 0 0 0 19.2-14.08 33.28 33.28 0 0 0 0-23.68L780.8 121.6a30.72 30.72 0 0 0-30.08-23.68z" fill="#707070" p-id="3468"></path><path d="M833.28 713.6m-44.16 0a44.16 44.16 0 1 0 88.32 0 44.16 44.16 0 1 0-88.32 0Z" fill="#707070" p-id="3469"></path></svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1649427790606" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="11452" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M681.472 838.656c-7.68 0-15.872-3.072-21.504-9.216-11.776-11.776-11.776-31.232 0-43.52l68.096-68.096c11.776-11.776 31.232-11.776 43.52 0 11.776 11.776 11.776 31.232 0 43.52L702.976 829.44c-5.632 6.144-13.824 9.216-21.504 9.216z" fill="#707070" p-id="11453"></path><path d="M749.568 770.56h-210.432c-16.896 0-30.72-13.824-30.72-30.72s13.824-30.72 30.72-30.72h210.432c16.896 0 30.72 13.824 30.72 30.72s-13.824 30.72-30.72 30.72zM538.624 684.032c-7.68 0-15.872-3.072-21.504-9.216-11.776-11.776-11.776-31.232 0-43.52l68.096-68.096c11.776-11.776 31.232-11.776 43.52 0 11.776 11.776 11.776 31.232 0 43.52l-68.096 68.096c-6.144 6.144-13.824 9.216-22.016 9.216z" fill="#707070" p-id="11454"></path><path d="M749.568 684.032h-210.432c-16.896 0-30.72-13.824-30.72-30.72s13.824-30.72 30.72-30.72h210.432c16.896 0 30.72 13.824 30.72 30.72s-13.824 30.72-30.72 30.72z" fill="#707070" p-id="11455"></path><path d="M820.224 951.296h-614.4c-73.216 0-133.12-59.904-133.12-133.12v-614.4c0-73.216 59.904-133.12 133.12-133.12h614.4c73.216 0 133.12 59.904 133.12 133.12v614.4c0 73.216-59.392 133.12-133.12 133.12z m-614.4-819.2c-39.424 0-71.68 32.256-71.68 71.68v614.4c0 39.424 32.256 71.68 71.68 71.68h614.4c39.424 0 71.68-32.256 71.68-71.68v-614.4c0-39.424-32.256-71.68-71.68-71.68h-614.4z" fill="#707070" p-id="11456"></path><path d="M513.024 541.696c-95.744 0-174.08-78.336-174.08-174.08s78.336-174.08 174.08-174.08 174.08 78.336 174.08 174.08-77.824 174.08-174.08 174.08z m0-286.72c-61.952 0-112.64 50.688-112.64 112.64s50.688 112.64 112.64 112.64 112.64-50.688 112.64-112.64-50.176-112.64-112.64-112.64z" fill="#707070" p-id="11457"></path><path d="M292.864 833.536c-16.896 0-30.72-13.824-30.72-30.72v-189.44c0-73.216 59.904-133.12 133.12-133.12h15.36c6.144 0 14.336 0 23.552-0.512 20.992-0.512 50.176-1.024 79.36 0 16.896 0.512 30.208 14.336 29.696 31.744-0.512 16.896-14.848 30.208-31.744 29.696-28.16-1.024-55.296-0.512-76.8 0-9.728 0-17.92 0.512-24.576 0.512h-15.36c-39.424 0-71.68 32.256-71.68 71.68v189.44c0.512 16.896-12.8 30.72-30.208 30.72z" fill="#707070" p-id="11458"></path></svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1649412551780" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2845" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M858.5 763.6c-18.9-44.8-46.1-85-80.6-119.5-34.5-34.5-74.7-61.6-119.5-80.6-0.4-0.2-0.8-0.3-1.2-0.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-0.4 0.2-0.8 0.3-1.2 0.5-44.8 18.9-85 46-119.5 80.6-34.5 34.5-61.6 74.7-80.6 119.5C146.9 807.5 137 854 136 901.8c-0.1 4.5 3.5 8.2 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c0.1 4.4 3.6 7.8 8 7.8h60c4.5 0 8.1-3.7 8-8.2-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z" p-id="2846" fill="#8d8d8d"></path></svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1649473809375" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="15436" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M874.666667 896H149.333333c-83.2 0-149.333333-66.133333-149.333333-149.333333V277.333333c0-83.2 66.133333-149.333333 149.333333-149.333333h725.333334c83.2 0 149.333333 66.133333 149.333333 149.333333v469.333334c0 83.2-66.133333 149.333333-149.333333 149.333333zM149.333333 213.333333c-36.266667 0-64 27.733333-64 64v469.333334c0 36.266667 27.733333 64 64 64h725.333334c36.266667 0 64-27.733333 64-64V277.333333c0-36.266667-27.733333-64-64-64H149.333333z" p-id="15437" fill="#707070"></path><path d="M270.933333 597.333333h-10.666666c-44.8 0-81.066667-36.266667-81.066667-81.066666v-10.666667c0-44.8 36.266667-81.066667 81.066667-81.066667h10.666666c44.8 0 81.066667 36.266667 81.066667 81.066667v10.666667c0 44.8-36.266667 81.066667-81.066667 81.066666zM512 597.333333c-46.933333 0-85.333333-38.4-85.333333-85.333333s38.4-85.333333 85.333333-85.333333 85.333333 38.4 85.333333 85.333333-38.4 85.333333-85.333333 85.333333zM757.333333 597.333333c-46.933333 0-85.333333-38.4-85.333333-85.333333s38.4-85.333333 85.333333-85.333333 85.333333 38.4 85.333334 85.333333-38.4 85.333333-85.333334 85.333333z" p-id="15438" fill="#707070"></path></svg>
\ No newline at end of file
This diff is collapsed.
/* You can add global styles to this file, and also import other style files */ /* You can add global styles to this file, and also import other style files */
@import "~ng-zorro-antd/style/index.min.css";
@import "~ng-zorro-antd/form/style/index.min.css";
@import "~ng-zorro-antd/icon/style/index.min.css";
@import "~ng-zorro-antd/input/style/index.min.css";
@import "~ng-zorro-antd/checkbox/style/index.min.css";
@import "~ng-zorro-antd/button/style/index.min.css";
@import "~ng-zorro-antd/select/style/index.min.css";
html,
body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
font-family: Helvetica, Tahoma, Arial, STXihei, "华文细黑", "Microsoft YaHei", "微软雅黑", SimSun, "宋体", Heiti, "黑体", sans-serif;
min-width: 1024px;
overflow-y: hidden;
}
.prefixSelect {
text-align: left;
position: relative;
&::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 60px;
height: 50px;
display: block;
background-size: 28px 28px;
background-repeat: no-repeat;
background-position: center;
z-index: 1;
}
&.roleSwitch::before {
background-image: url(assets/icons/role-switch.svg);
}
&.projSwitch::before {
background-image: url(assets/icons/proj-switch.svg);
}
.ant-select-selector {
height: 50px !important;
padding-left: 60px !important;
border-radius: 10px !important;
border: 0 !important;
box-shadow: 0 4px 10px 0 #70707080;
.ant-select-selection-search {
left: 60px;
.ant-select-selection-search-input {
height: 50px !important;
}
}
.ant-select-selection-item,
.ant-select-selection-placeholder {
line-height: 50px !important;
}
.ant-select-selection-item {
.label-main {
line-height: 20px !important;
padding-top: 5px;
}
.label-child {
line-height: 20px !important;
font-size: 12px;
font-family: Helvetica;
font-weight: 100;
color: #b3b3b3;
}
}
}
}
.login-select{
.ant-select-item-option {
&:not(:last-child) {
border-bottom: 1px solid #ccc;
}
}
.option-manage {
font-weight: 100;
}
.option-des {
font-weight: 100;
color: #bbb;
white-space: initial;
padding-bottom: 5px;
}
}
...@@ -181,6 +181,15 @@ ...@@ -181,6 +181,15 @@
dependencies: dependencies:
tslib "^2.0.0" tslib "^2.0.0"
"@angular/cdk@^11.0.2":
version "11.2.13"
resolved "https://registry.npmmirror.com/@angular/cdk/-/cdk-11.2.13.tgz#d54c9187e3b8cf3f8ba190b1edddc08ed2b740de"
integrity sha512-FkE4iCwoLbQxLDUOjV1I7M/6hmpyb7erAjEdWgch7nGRNxF1hqX5Bqf1lvLFKPNCbx5NRI5K7YVAdIUQUR8vug==
dependencies:
tslib "^2.0.0"
optionalDependencies:
parse5 "^5.0.0"
"@angular/cli@~11.2.12": "@angular/cli@~11.2.12":
version "11.2.19" version "11.2.19"
resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-11.2.19.tgz#b170e3007b9c014ff405ecb7a86b18adc6e74cc4" resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-11.2.19.tgz#b170e3007b9c014ff405ecb7a86b18adc6e74cc4"
...@@ -289,6 +298,21 @@ ...@@ -289,6 +298,21 @@
dependencies: dependencies:
tslib "^2.0.0" tslib "^2.0.0"
"@ant-design/colors@^5.0.0":
version "5.1.1"
resolved "https://registry.npmmirror.com/@ant-design/colors/-/colors-5.1.1.tgz#800b2186b1e27e66432e67d03ed96af3e21d8940"
integrity sha512-Txy4KpHrp3q4XZdfgOBqLl+lkQIc3tEvHXOimRN1giX1AEC7mGtyrO9p8iRGJ3FLuVMGa2gNEzQyghVymLttKQ==
dependencies:
"@ctrl/tinycolor" "^3.3.1"
"@ant-design/icons-angular@^11.0.1":
version "11.0.1"
resolved "https://registry.npmmirror.com/@ant-design/icons-angular/-/icons-angular-11.0.1.tgz#8ff3131f3d9b4b25fd28c64c4a9bdfe36da54942"
integrity sha512-WwxVx/aToxTjWmB5+O+3rOjSYdF8FC/Yd/8jF1ZGQMtLWAzP8/foQmKvPAktTUsh0/Ijhtur7LrHN2VuUedMcA==
dependencies:
"@ant-design/colors" "^5.0.0"
tslib "^2.0.0"
"@babel/code-frame@7.12.11": "@babel/code-frame@7.12.11":
version "7.12.11" version "7.12.11"
resolved "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" resolved "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"
...@@ -1175,6 +1199,11 @@ ...@@ -1175,6 +1199,11 @@
"@babel/helper-validator-identifier" "^7.16.7" "@babel/helper-validator-identifier" "^7.16.7"
to-fast-properties "^2.0.0" to-fast-properties "^2.0.0"
"@ctrl/tinycolor@^3.3.1":
version "3.4.1"
resolved "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.4.1.tgz#75b4c27948c81e88ccd3a8902047bcd797f38d32"
integrity sha512-ej5oVy6lykXsvieQtqZxCOaLT+xD4+QNarq78cIYISHmZXshCvROLudpQN3lfL8G0NL7plMSSK+zlyvCaIJ4Iw==
"@discoveryjs/json-ext@0.5.2": "@discoveryjs/json-ext@0.5.2":
version "0.5.2" version "0.5.2"
resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.2.tgz#8f03a22a04de437254e8ce8cc84ba39689288752" resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.2.tgz#8f03a22a04de437254e8ce8cc84ba39689288752"
...@@ -3297,6 +3326,11 @@ dashdash@^1.12.0: ...@@ -3297,6 +3326,11 @@ dashdash@^1.12.0:
dependencies: dependencies:
assert-plus "^1.0.0" assert-plus "^1.0.0"
date-fns@^2.10.0:
version "2.28.0"
resolved "https://registry.npmmirror.com/date-fns/-/date-fns-2.28.0.tgz#9570d656f5fc13143e50c975a3b6bbeb46cd08b2"
integrity sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==
date-format@^4.0.7: date-format@^4.0.7:
version "4.0.7" version "4.0.7"
resolved "https://registry.yarnpkg.com/date-format/-/date-format-4.0.7.tgz#aa1cf4400badfe693c8462bbfcba43ab821d7d14" resolved "https://registry.yarnpkg.com/date-format/-/date-format-4.0.7.tgz#aa1cf4400badfe693c8462bbfcba43ab821d7d14"
...@@ -6375,6 +6409,17 @@ neo-async@^2.5.0, neo-async@^2.6.1, neo-async@^2.6.2: ...@@ -6375,6 +6409,17 @@ neo-async@^2.5.0, neo-async@^2.6.1, neo-async@^2.6.2:
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
ng-zorro-antd@11.4.2:
version "11.4.2"
resolved "https://registry.npmmirror.com/ng-zorro-antd/-/ng-zorro-antd-11.4.2.tgz#c19f12fee9166cbed0b6c7c63fa37da0464413e7"
integrity sha512-1dMIz5zBma+CfUYYKmIKWIB9mXX837L+WKGGHhl2KrmIIbsbNLh3WTKudCBuyqL58EEgiVhTZYwl841xdz+vLw==
dependencies:
"@angular/cdk" "^11.0.2"
"@ant-design/icons-angular" "^11.0.1"
date-fns "^2.10.0"
resize-observer-polyfill "^1.5.1"
tslib "^2.0.0"
nice-try@^1.0.4: nice-try@^1.0.4:
version "1.0.5" version "1.0.5"
resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
...@@ -6935,6 +6980,11 @@ parse5-sax-parser@^6.0.1: ...@@ -6935,6 +6980,11 @@ parse5-sax-parser@^6.0.1:
dependencies: dependencies:
parse5 "^6.0.1" parse5 "^6.0.1"
parse5@^5.0.0:
version "5.1.1"
resolved "https://registry.npmmirror.com/parse5/-/parse5-5.1.1.tgz#f68e4e5ba1852ac2cadc00f4555fff6c2abb6178"
integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==
parse5@^6.0.1: parse5@^6.0.1:
version "6.0.1" version "6.0.1"
resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b"
...@@ -7849,6 +7899,11 @@ requires-port@^1.0.0: ...@@ -7849,6 +7899,11 @@ requires-port@^1.0.0:
resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=
resize-observer-polyfill@^1.5.1:
version "1.5.1"
resolved "https://registry.npmmirror.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==
resolve-cwd@^2.0.0: resolve-cwd@^2.0.0:
version "2.0.0" version "2.0.0"
resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment