@sachin9822/reports-lib 0.0.94 → 0.0.96
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/esm2020/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.mjs +4 -4
- package/esm2020/lib/models/app-config.model.mjs +2 -0
- package/esm2020/lib/reports-lib.module.mjs +26 -13
- package/esm2020/lib/services/config.service.mjs +39 -0
- package/esm2020/lib/services/report.service.mjs +16 -8
- package/esm2020/lib/shared/export.service.mjs +4 -16
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/sachin9822-reports-lib.mjs +78 -36
- package/fesm2015/sachin9822-reports-lib.mjs.map +1 -1
- package/fesm2020/sachin9822-reports-lib.mjs +81 -39
- package/fesm2020/sachin9822-reports-lib.mjs.map +1 -1
- package/lib/assets/config/app-config.frontend.json +37 -0
- package/lib/assets/config/app-config.json +5 -0
- package/lib/assets/config/app-config.release.json +40 -0
- package/lib/models/app-config.model.d.ts +48 -0
- package/lib/reports-lib.module.d.ts +5 -5
- package/lib/services/config.service.d.ts +20 -0
- package/lib/services/report.service.d.ts +6 -5
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/lib/assets/svg-loaders/audio.svg +0 -28
- package/lib/assets/svg-loaders/ball-triangle.svg +0 -46
- package/lib/assets/svg-loaders/bars.svg +0 -52
- package/lib/assets/svg-loaders/circles.svg +0 -20
- package/lib/assets/svg-loaders/grid.svg +0 -56
- package/lib/assets/svg-loaders/hearts.svg +0 -17
- package/lib/assets/svg-loaders/oval.svg +0 -16
- package/lib/assets/svg-loaders/puff.svg +0 -36
- package/lib/assets/svg-loaders/rings.svg +0 -41
- package/lib/assets/svg-loaders/spinning-circles.svg +0 -54
- package/lib/assets/svg-loaders/three-dots.svg +0 -32
@@ -0,0 +1,37 @@
|
|
1
|
+
{
|
2
|
+
"language": "en",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"auth": {
|
5
|
+
"issuer": "http://10.0.50.116:8080",
|
6
|
+
"redirectUri": "http://10.0.50.114:4200",
|
7
|
+
"silentRefreshRedirectUri": "http://10.0.50.114:4200/refresh-token.html",
|
8
|
+
"clientId": "jsfossil",
|
9
|
+
"logoutUrl": "http://10.0.50.114:4200",
|
10
|
+
"scope": "openid profile email fossil",
|
11
|
+
"requireHttps": false,
|
12
|
+
"requestAccessToken": true,
|
13
|
+
"showDebugInformation": true,
|
14
|
+
"oidc": true
|
15
|
+
},
|
16
|
+
"formatting": {
|
17
|
+
"shortDate": "DD/MM/YYYY",
|
18
|
+
"longDate": "LL",
|
19
|
+
"time": "LTS"
|
20
|
+
},
|
21
|
+
"logging": {
|
22
|
+
"levelMin": "Trace",
|
23
|
+
"levelMax": "Fatal"
|
24
|
+
},
|
25
|
+
"idle": {
|
26
|
+
"timeout": 12000000,
|
27
|
+
"countdown": 60000
|
28
|
+
},
|
29
|
+
"serviceUrl": "http://fossil-api.dev.bfccirrus.com:19081/SFA_BFC/BFC.Application.Services.Fossil",
|
30
|
+
"localChequeSettlementStockTypeCode":"CHQP",
|
31
|
+
"localCashSettlementStockTypeCode":"CASH",
|
32
|
+
"localSettlementDenomination": "MIXED",
|
33
|
+
"sysBaseRoundOff": "SysBaseRoundOff",
|
34
|
+
"sessionTimeoutMinutes": "59",
|
35
|
+
"directToAccount":"DTA,C2B",
|
36
|
+
"cashPayout":"CPO,C2C"
|
37
|
+
}
|
@@ -0,0 +1,40 @@
|
|
1
|
+
{
|
2
|
+
"language": "#{Language}",
|
3
|
+
"version": "#{ThisMustBeSetDuringBuildOnVSTS}",
|
4
|
+
"auth": {
|
5
|
+
"issuer": "#{Auth.Issuer}",
|
6
|
+
"redirectUri": "#{Auth.RedirectUri}",
|
7
|
+
"silentRefreshRedirectUri" : "#{Auth.SilentRefreshRedirectUri}",
|
8
|
+
"clientId": "#{Auth.ClientId}",
|
9
|
+
"logoutUrl":"#{Auth.LogoutUrl}",
|
10
|
+
"scope": "#{Auth.Scope}",
|
11
|
+
"requireHttps": "#{Auth.RequireHttps}",
|
12
|
+
"requestAccessToken": "#{Auth.RequestAccessToken}",
|
13
|
+
"showDebugInformation": "#{Auth.ShowDebugInformation}",
|
14
|
+
"oidc" : "#{Auth.Oidc}"
|
15
|
+
},
|
16
|
+
"formatting": {
|
17
|
+
"shortDate": "#{Formatting.ShortDate}",
|
18
|
+
"longDate": "#{Formatting.LongDate}",
|
19
|
+
"time": "#{Formatting.Time}"
|
20
|
+
},
|
21
|
+
"logging": {
|
22
|
+
"levelMin": "#{Logging.LevelMin}",
|
23
|
+
"levelMax": "#{Logging.LevelMax}"
|
24
|
+
},
|
25
|
+
"idle": {
|
26
|
+
"timeout": "#{Idle.Timeout}",
|
27
|
+
"countdown": "#{Idle.Countdown}"
|
28
|
+
},
|
29
|
+
"scriptxServiceUrl": "#{scriptxServiceUrl.Fossil}",
|
30
|
+
"selfHostedServiceUrl": "#{selfHostedServiceUrl.Fossil}",
|
31
|
+
"scriptxLicence": "#{scriptxLicence.Fossil}",
|
32
|
+
"serviceUrl": "#{ServiceUrls.Fossil}",
|
33
|
+
"localChequeSettlementStockTypeCode":"#{localChequeSettlementStockTypeCode}",
|
34
|
+
"localCashSettlementStockTypeCode":"#{localCashSettlementStockTypeCode}",
|
35
|
+
"localSettlementDenomination": "#{localSettlementDenomination}",
|
36
|
+
"sysBaseRoundOff": "SysBaseRoundOff",
|
37
|
+
"sessionTimeoutMinutes": "#{SessionTimeoutMinutes}",
|
38
|
+
"directToAccount":"#{directToAccount}",
|
39
|
+
"cashPayout":"#{cashPayout}"
|
40
|
+
}
|
@@ -0,0 +1,48 @@
|
|
1
|
+
export interface IAppConfig {
|
2
|
+
reportServiceUrl: string;
|
3
|
+
language?: string;
|
4
|
+
version?: string;
|
5
|
+
exceptionURLconfig?: string;
|
6
|
+
apiKey?: string;
|
7
|
+
readonly?: any;
|
8
|
+
auth?: {
|
9
|
+
issuer?: string;
|
10
|
+
redirectUri?: string;
|
11
|
+
silentRefreshRedirectUri?: string;
|
12
|
+
clientId?: string;
|
13
|
+
logoutUrl?: string;
|
14
|
+
scope?: string;
|
15
|
+
requireHttps?: boolean;
|
16
|
+
requestAccessToken?: boolean;
|
17
|
+
showDebugInformation?: boolean;
|
18
|
+
oidc?: boolean;
|
19
|
+
useSilentRefresh?: boolean;
|
20
|
+
};
|
21
|
+
formatting?: {
|
22
|
+
shortDate?: string;
|
23
|
+
longDate?: string;
|
24
|
+
time?: string;
|
25
|
+
timeZone?: string;
|
26
|
+
};
|
27
|
+
logging?: {
|
28
|
+
levelMin?: string;
|
29
|
+
levelMax?: string;
|
30
|
+
};
|
31
|
+
idle?: {
|
32
|
+
timeout?: number;
|
33
|
+
countdown?: number;
|
34
|
+
};
|
35
|
+
advertStorageUrl?: string;
|
36
|
+
scriptxServiceUrl?: string;
|
37
|
+
scriptxLicence?: string;
|
38
|
+
selfHostedServiceUrl?: string;
|
39
|
+
serviceUrl?: string;
|
40
|
+
localChequeSettlementStockTypeCode?: string;
|
41
|
+
localCashSettlementStockTypeCode?: string;
|
42
|
+
localSettlementDenomination?: string;
|
43
|
+
sysBaseRoundOff?: string;
|
44
|
+
sysBaseRoundOffVat?: string;
|
45
|
+
sessionTimeoutMinutes?: string;
|
46
|
+
directToAccount?: string;
|
47
|
+
cashPayout?: string;
|
48
|
+
}
|
@@ -1,15 +1,15 @@
|
|
1
|
+
import { ConfigService } from '../lib/services/config.service';
|
1
2
|
import * as i0 from "@angular/core";
|
2
3
|
import * as i1 from "./reports-lib.component";
|
3
4
|
import * as i2 from "./components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component";
|
4
5
|
import * as i3 from "ag-grid-angular";
|
5
6
|
import * as i4 from "./reports-lib-routing.module";
|
6
7
|
import * as i5 from "@angular/common";
|
7
|
-
import * as i6 from "@
|
8
|
-
import * as i7 from "angular
|
9
|
-
|
10
|
-
import * as i9 from "@angular/router";
|
8
|
+
import * as i6 from "@angular/forms";
|
9
|
+
import * as i7 from "@angular/router";
|
10
|
+
export declare function initializeApp(config: ConfigService): () => Promise<any>;
|
11
11
|
export declare class ReportsLibModule {
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReportsLibModule, never>;
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ReportsLibModule, [typeof i1.ReportsLibComponent, typeof i2.AccGlDetailsEnquiryReportComponent], [typeof i3.AgGridModule, typeof i4.ReportsLibRoutingModule, typeof i5.CommonModule, typeof i6.
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ReportsLibModule, [typeof i1.ReportsLibComponent, typeof i2.AccGlDetailsEnquiryReportComponent], [typeof i3.AgGridModule, typeof i4.ReportsLibRoutingModule, typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.RouterModule], [typeof i1.ReportsLibComponent, typeof i2.AccGlDetailsEnquiryReportComponent]>;
|
14
14
|
static ɵinj: i0.ɵɵInjectorDeclaration<ReportsLibModule>;
|
15
15
|
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { IAppConfig } from '../models/app-config.model';
|
2
|
+
import { HttpClient } from '@angular/common/http';
|
3
|
+
import { Observable, BehaviorSubject } from 'rxjs';
|
4
|
+
import * as i0 from "@angular/core";
|
5
|
+
export declare class ConfigService {
|
6
|
+
private http;
|
7
|
+
private config;
|
8
|
+
onConfigChanged: BehaviorSubject<any>;
|
9
|
+
constructor(http: HttpClient);
|
10
|
+
load(url: string): Observable<any>;
|
11
|
+
get get(): IAppConfig;
|
12
|
+
/**
|
13
|
+
* Set the new config from given object
|
14
|
+
*
|
15
|
+
* @param config
|
16
|
+
*/
|
17
|
+
setConfig(config: IAppConfig): void;
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfigService, never>;
|
19
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ConfigService>;
|
20
|
+
}
|
@@ -1,14 +1,15 @@
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
2
|
-
import { ErrorHandler, Injector } from '@angular/core';
|
3
2
|
import { AccGlDetailsEnquiryReportModel } from '../models/acc-gl-details-enquiry-report/accgl-details-enquiry-reportmodel';
|
4
3
|
import { Observable } from 'rxjs';
|
4
|
+
import { ConfigService } from './config.service';
|
5
5
|
import * as i0 from "@angular/core";
|
6
6
|
export declare class ReportService {
|
7
7
|
private http;
|
8
|
-
private
|
9
|
-
private
|
10
|
-
private
|
11
|
-
|
8
|
+
private config;
|
9
|
+
private reportServiceUrl;
|
10
|
+
private reportUrl;
|
11
|
+
private systemReportUrl;
|
12
|
+
constructor(http: HttpClient, config: ConfigService);
|
12
13
|
getAccGLDetailsReport(formattedDate: string | undefined, dateType: string, sysCompanyCode: string, sysUserId: string, companyName: string): Observable<AccGlDetailsEnquiryReportModel>;
|
13
14
|
getUserNameFromSessionStorage(): string;
|
14
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReportService, never>;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
@@ -2,3 +2,5 @@ export * from './lib/reports-lib.service';
|
|
2
2
|
export * from './lib/reports-lib.component';
|
3
3
|
export * from './lib/reports-lib.module';
|
4
4
|
export * from './lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component';
|
5
|
+
export * from './lib/services/config.service';
|
6
|
+
export * from './lib/models/app-config.model';
|
@@ -1,28 +0,0 @@
|
|
1
|
-
<svg width="55" height="80" viewBox="0 0 55 80" xmlns="http://www.w3.org/2000/svg" fill="#FFF">
|
2
|
-
<g transform="matrix(1 0 0 -1 0 80)">
|
3
|
-
<rect width="10" height="20" rx="3">
|
4
|
-
<animate attributeName="height"
|
5
|
-
begin="0s" dur="4.3s"
|
6
|
-
values="20;45;57;80;64;32;66;45;64;23;66;13;64;56;34;34;2;23;76;79;20" calcMode="linear"
|
7
|
-
repeatCount="indefinite" />
|
8
|
-
</rect>
|
9
|
-
<rect x="15" width="10" height="80" rx="3">
|
10
|
-
<animate attributeName="height"
|
11
|
-
begin="0s" dur="2s"
|
12
|
-
values="80;55;33;5;75;23;73;33;12;14;60;80" calcMode="linear"
|
13
|
-
repeatCount="indefinite" />
|
14
|
-
</rect>
|
15
|
-
<rect x="30" width="10" height="50" rx="3">
|
16
|
-
<animate attributeName="height"
|
17
|
-
begin="0s" dur="1.4s"
|
18
|
-
values="50;34;78;23;56;23;34;76;80;54;21;50" calcMode="linear"
|
19
|
-
repeatCount="indefinite" />
|
20
|
-
</rect>
|
21
|
-
<rect x="45" width="10" height="30" rx="3">
|
22
|
-
<animate attributeName="height"
|
23
|
-
begin="0s" dur="2s"
|
24
|
-
values="30;45;13;80;56;72;45;76;34;23;67;30" calcMode="linear"
|
25
|
-
repeatCount="indefinite" />
|
26
|
-
</rect>
|
27
|
-
</g>
|
28
|
-
</svg>
|
@@ -1,46 +0,0 @@
|
|
1
|
-
<!-- Todo: add easing -->
|
2
|
-
<svg width="57" height="57" viewBox="0 0 57 57" xmlns="http://www.w3.org/2000/svg" stroke="#fff">
|
3
|
-
<g fill="none" fill-rule="evenodd">
|
4
|
-
<g transform="translate(1 1)" stroke-width="2">
|
5
|
-
<circle cx="5" cy="50" r="5">
|
6
|
-
<animate attributeName="cy"
|
7
|
-
begin="0s" dur="2.2s"
|
8
|
-
values="50;5;50;50"
|
9
|
-
calcMode="linear"
|
10
|
-
repeatCount="indefinite" />
|
11
|
-
<animate attributeName="cx"
|
12
|
-
begin="0s" dur="2.2s"
|
13
|
-
values="5;27;49;5"
|
14
|
-
calcMode="linear"
|
15
|
-
repeatCount="indefinite" />
|
16
|
-
</circle>
|
17
|
-
<circle cx="27" cy="5" r="5">
|
18
|
-
<animate attributeName="cy"
|
19
|
-
begin="0s" dur="2.2s"
|
20
|
-
from="5" to="5"
|
21
|
-
values="5;50;50;5"
|
22
|
-
calcMode="linear"
|
23
|
-
repeatCount="indefinite" />
|
24
|
-
<animate attributeName="cx"
|
25
|
-
begin="0s" dur="2.2s"
|
26
|
-
from="27" to="27"
|
27
|
-
values="27;49;5;27"
|
28
|
-
calcMode="linear"
|
29
|
-
repeatCount="indefinite" />
|
30
|
-
</circle>
|
31
|
-
<circle cx="49" cy="50" r="5">
|
32
|
-
<animate attributeName="cy"
|
33
|
-
begin="0s" dur="2.2s"
|
34
|
-
values="50;50;5;50"
|
35
|
-
calcMode="linear"
|
36
|
-
repeatCount="indefinite" />
|
37
|
-
<animate attributeName="cx"
|
38
|
-
from="49" to="49"
|
39
|
-
begin="0s" dur="2.2s"
|
40
|
-
values="49;5;27;49"
|
41
|
-
calcMode="linear"
|
42
|
-
repeatCount="indefinite" />
|
43
|
-
</circle>
|
44
|
-
</g>
|
45
|
-
</g>
|
46
|
-
</svg>
|
@@ -1,52 +0,0 @@
|
|
1
|
-
<svg width="135" height="140" viewBox="0 0 135 140" xmlns="http://www.w3.org/2000/svg" fill="#2196f3">
|
2
|
-
<rect y="10" width="15" height="120" rx="6">
|
3
|
-
<animate attributeName="height"
|
4
|
-
begin="0.5s" dur="1s"
|
5
|
-
values="120;110;100;90;80;70;60;50;40;140;120" calcMode="linear"
|
6
|
-
repeatCount="indefinite" />
|
7
|
-
<animate attributeName="y"
|
8
|
-
begin="0.5s" dur="1s"
|
9
|
-
values="10;15;20;25;30;35;40;45;50;0;10" calcMode="linear"
|
10
|
-
repeatCount="indefinite" />
|
11
|
-
</rect>
|
12
|
-
<rect x="30" y="10" width="15" height="120" rx="6">
|
13
|
-
<animate attributeName="height"
|
14
|
-
begin="0.25s" dur="1s"
|
15
|
-
values="120;110;100;90;80;70;60;50;40;140;120" calcMode="linear"
|
16
|
-
repeatCount="indefinite" />
|
17
|
-
<animate attributeName="y"
|
18
|
-
begin="0.25s" dur="1s"
|
19
|
-
values="10;15;20;25;30;35;40;45;50;0;10" calcMode="linear"
|
20
|
-
repeatCount="indefinite" />
|
21
|
-
</rect>
|
22
|
-
<rect x="60" width="15" height="140" rx="6">
|
23
|
-
<animate attributeName="height"
|
24
|
-
begin="0s" dur="1s"
|
25
|
-
values="120;110;100;90;80;70;60;50;40;140;120" calcMode="linear"
|
26
|
-
repeatCount="indefinite" />
|
27
|
-
<animate attributeName="y"
|
28
|
-
begin="0s" dur="1s"
|
29
|
-
values="10;15;20;25;30;35;40;45;50;0;10" calcMode="linear"
|
30
|
-
repeatCount="indefinite" />
|
31
|
-
</rect>
|
32
|
-
<rect x="90" y="10" width="15" height="120" rx="6">
|
33
|
-
<animate attributeName="height"
|
34
|
-
begin="0.25s" dur="1s"
|
35
|
-
values="120;110;100;90;80;70;60;50;40;140;120" calcMode="linear"
|
36
|
-
repeatCount="indefinite" />
|
37
|
-
<animate attributeName="y"
|
38
|
-
begin="0.25s" dur="1s"
|
39
|
-
values="10;15;20;25;30;35;40;45;50;0;10" calcMode="linear"
|
40
|
-
repeatCount="indefinite" />
|
41
|
-
</rect>
|
42
|
-
<rect x="120" y="10" width="15" height="120" rx="6">
|
43
|
-
<animate attributeName="height"
|
44
|
-
begin="0.5s" dur="1s"
|
45
|
-
values="120;110;100;90;80;70;60;50;40;140;120" calcMode="linear"
|
46
|
-
repeatCount="indefinite" />
|
47
|
-
<animate attributeName="y"
|
48
|
-
begin="0.5s" dur="1s"
|
49
|
-
values="10;15;20;25;30;35;40;45;50;0;10" calcMode="linear"
|
50
|
-
repeatCount="indefinite" />
|
51
|
-
</rect>
|
52
|
-
</svg>
|
@@ -1,20 +0,0 @@
|
|
1
|
-
<svg width="135" height="135" viewBox="0 0 135 135" xmlns="http://www.w3.org/2000/svg" fill="#fff">
|
2
|
-
<path d="M67.447 58c5.523 0 10-4.477 10-10s-4.477-10-10-10-10 4.477-10 10 4.477 10 10 10zm9.448 9.447c0 5.523 4.477 10 10 10 5.522 0 10-4.477 10-10s-4.478-10-10-10c-5.523 0-10 4.477-10 10zm-9.448 9.448c-5.523 0-10 4.477-10 10 0 5.522 4.477 10 10 10s10-4.478 10-10c0-5.523-4.477-10-10-10zM58 67.447c0-5.523-4.477-10-10-10s-10 4.477-10 10 4.477 10 10 10 10-4.477 10-10z">
|
3
|
-
<animateTransform
|
4
|
-
attributeName="transform"
|
5
|
-
type="rotate"
|
6
|
-
from="0 67 67"
|
7
|
-
to="-360 67 67"
|
8
|
-
dur="2.5s"
|
9
|
-
repeatCount="indefinite"/>
|
10
|
-
</path>
|
11
|
-
<path d="M28.19 40.31c6.627 0 12-5.374 12-12 0-6.628-5.373-12-12-12-6.628 0-12 5.372-12 12 0 6.626 5.372 12 12 12zm30.72-19.825c4.686 4.687 12.284 4.687 16.97 0 4.686-4.686 4.686-12.284 0-16.97-4.686-4.687-12.284-4.687-16.97 0-4.687 4.686-4.687 12.284 0 16.97zm35.74 7.705c0 6.627 5.37 12 12 12 6.626 0 12-5.373 12-12 0-6.628-5.374-12-12-12-6.63 0-12 5.372-12 12zm19.822 30.72c-4.686 4.686-4.686 12.284 0 16.97 4.687 4.686 12.285 4.686 16.97 0 4.687-4.686 4.687-12.284 0-16.97-4.685-4.687-12.283-4.687-16.97 0zm-7.704 35.74c-6.627 0-12 5.37-12 12 0 6.626 5.373 12 12 12s12-5.374 12-12c0-6.63-5.373-12-12-12zm-30.72 19.822c-4.686-4.686-12.284-4.686-16.97 0-4.686 4.687-4.686 12.285 0 16.97 4.686 4.687 12.284 4.687 16.97 0 4.687-4.685 4.687-12.283 0-16.97zm-35.74-7.704c0-6.627-5.372-12-12-12-6.626 0-12 5.373-12 12s5.374 12 12 12c6.628 0 12-5.373 12-12zm-19.823-30.72c4.687-4.686 4.687-12.284 0-16.97-4.686-4.686-12.284-4.686-16.97 0-4.687 4.686-4.687 12.284 0 16.97 4.686 4.687 12.284 4.687 16.97 0z">
|
12
|
-
<animateTransform
|
13
|
-
attributeName="transform"
|
14
|
-
type="rotate"
|
15
|
-
from="0 67 67"
|
16
|
-
to="360 67 67"
|
17
|
-
dur="8s"
|
18
|
-
repeatCount="indefinite"/>
|
19
|
-
</path>
|
20
|
-
</svg>
|
@@ -1,56 +0,0 @@
|
|
1
|
-
<svg width="105" height="105" viewBox="0 0 105 105" xmlns="http://www.w3.org/2000/svg" fill="#fff">
|
2
|
-
<circle cx="12.5" cy="12.5" r="12.5">
|
3
|
-
<animate attributeName="fill-opacity"
|
4
|
-
begin="0s" dur="1s"
|
5
|
-
values="1;.2;1" calcMode="linear"
|
6
|
-
repeatCount="indefinite" />
|
7
|
-
</circle>
|
8
|
-
<circle cx="12.5" cy="52.5" r="12.5" fill-opacity=".5">
|
9
|
-
<animate attributeName="fill-opacity"
|
10
|
-
begin="100ms" dur="1s"
|
11
|
-
values="1;.2;1" calcMode="linear"
|
12
|
-
repeatCount="indefinite" />
|
13
|
-
</circle>
|
14
|
-
<circle cx="52.5" cy="12.5" r="12.5">
|
15
|
-
<animate attributeName="fill-opacity"
|
16
|
-
begin="300ms" dur="1s"
|
17
|
-
values="1;.2;1" calcMode="linear"
|
18
|
-
repeatCount="indefinite" />
|
19
|
-
</circle>
|
20
|
-
<circle cx="52.5" cy="52.5" r="12.5">
|
21
|
-
<animate attributeName="fill-opacity"
|
22
|
-
begin="600ms" dur="1s"
|
23
|
-
values="1;.2;1" calcMode="linear"
|
24
|
-
repeatCount="indefinite" />
|
25
|
-
</circle>
|
26
|
-
<circle cx="92.5" cy="12.5" r="12.5">
|
27
|
-
<animate attributeName="fill-opacity"
|
28
|
-
begin="800ms" dur="1s"
|
29
|
-
values="1;.2;1" calcMode="linear"
|
30
|
-
repeatCount="indefinite" />
|
31
|
-
</circle>
|
32
|
-
<circle cx="92.5" cy="52.5" r="12.5">
|
33
|
-
<animate attributeName="fill-opacity"
|
34
|
-
begin="400ms" dur="1s"
|
35
|
-
values="1;.2;1" calcMode="linear"
|
36
|
-
repeatCount="indefinite" />
|
37
|
-
</circle>
|
38
|
-
<circle cx="12.5" cy="92.5" r="12.5">
|
39
|
-
<animate attributeName="fill-opacity"
|
40
|
-
begin="700ms" dur="1s"
|
41
|
-
values="1;.2;1" calcMode="linear"
|
42
|
-
repeatCount="indefinite" />
|
43
|
-
</circle>
|
44
|
-
<circle cx="52.5" cy="92.5" r="12.5">
|
45
|
-
<animate attributeName="fill-opacity"
|
46
|
-
begin="500ms" dur="1s"
|
47
|
-
values="1;.2;1" calcMode="linear"
|
48
|
-
repeatCount="indefinite" />
|
49
|
-
</circle>
|
50
|
-
<circle cx="92.5" cy="92.5" r="12.5">
|
51
|
-
<animate attributeName="fill-opacity"
|
52
|
-
begin="200ms" dur="1s"
|
53
|
-
values="1;.2;1" calcMode="linear"
|
54
|
-
repeatCount="indefinite" />
|
55
|
-
</circle>
|
56
|
-
</svg>
|
@@ -1,17 +0,0 @@
|
|
1
|
-
<svg width="140" height="64" viewBox="0 0 140 64" xmlns="http://www.w3.org/2000/svg" fill="#fff">
|
2
|
-
<path d="M30.262 57.02L7.195 40.723c-5.84-3.976-7.56-12.06-3.842-18.063 3.715-6 11.467-7.65 17.306-3.68l4.52 3.76 2.6-5.274c3.717-6.002 11.47-7.65 17.305-3.68 5.84 3.97 7.56 12.054 3.842 18.062L34.49 56.118c-.897 1.512-2.793 1.915-4.228.9z" fill-opacity=".5">
|
3
|
-
<animate attributeName="fill-opacity"
|
4
|
-
begin="0s" dur="1.4s"
|
5
|
-
values="0.5;1;0.5"
|
6
|
-
calcMode="linear"
|
7
|
-
repeatCount="indefinite" />
|
8
|
-
</path>
|
9
|
-
<path d="M105.512 56.12l-14.44-24.272c-3.716-6.008-1.996-14.093 3.843-18.062 5.835-3.97 13.588-2.322 17.306 3.68l2.6 5.274 4.52-3.76c5.84-3.97 13.592-2.32 17.307 3.68 3.718 6.003 1.998 14.088-3.842 18.064L109.74 57.02c-1.434 1.014-3.33.61-4.228-.9z" fill-opacity=".5">
|
10
|
-
<animate attributeName="fill-opacity"
|
11
|
-
begin="0.7s" dur="1.4s"
|
12
|
-
values="0.5;1;0.5"
|
13
|
-
calcMode="linear"
|
14
|
-
repeatCount="indefinite" />
|
15
|
-
</path>
|
16
|
-
<path d="M67.408 57.834l-23.01-24.98c-5.864-6.15-5.864-16.108 0-22.248 5.86-6.14 15.37-6.14 21.234 0L70 16.168l4.368-5.562c5.863-6.14 15.375-6.14 21.235 0 5.863 6.14 5.863 16.098 0 22.247l-23.007 24.98c-1.43 1.556-3.757 1.556-5.188 0z" />
|
17
|
-
</svg>
|
@@ -1,16 +0,0 @@
|
|
1
|
-
<svg width="38" height="38" viewBox="0 0 38 38" xmlns="http://www.w3.org/2000/svg" stroke="#fff">
|
2
|
-
<g fill="none" fill-rule="evenodd">
|
3
|
-
<g transform="translate(1 1)" stroke-width="2">
|
4
|
-
<circle stroke-opacity=".5" cx="18" cy="18" r="18"/>
|
5
|
-
<path d="M36 18c0-9.94-8.06-18-18-18">
|
6
|
-
<animateTransform
|
7
|
-
attributeName="transform"
|
8
|
-
type="rotate"
|
9
|
-
from="0 18 18"
|
10
|
-
to="360 18 18"
|
11
|
-
dur="1s"
|
12
|
-
repeatCount="indefinite"/>
|
13
|
-
</path>
|
14
|
-
</g>
|
15
|
-
</g>
|
16
|
-
</svg>
|
@@ -1,36 +0,0 @@
|
|
1
|
-
<svg width="44" height="44" viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg" stroke="#fff">
|
2
|
-
<g fill="none" fill-rule="evenodd" stroke-width="2">
|
3
|
-
<circle cx="22" cy="22" r="1">
|
4
|
-
<animate attributeName="r"
|
5
|
-
begin="0s" dur="1.8s"
|
6
|
-
values="1; 20"
|
7
|
-
calcMode="spline"
|
8
|
-
keyTimes="0; 1"
|
9
|
-
keySplines="0.165, 0.84, 0.44, 1"
|
10
|
-
repeatCount="indefinite" />
|
11
|
-
<animate attributeName="stroke-opacity"
|
12
|
-
begin="0s" dur="1.8s"
|
13
|
-
values="1; 0"
|
14
|
-
calcMode="spline"
|
15
|
-
keyTimes="0; 1"
|
16
|
-
keySplines="0.3, 0.61, 0.355, 1"
|
17
|
-
repeatCount="indefinite" />
|
18
|
-
</circle>
|
19
|
-
<circle cx="22" cy="22" r="1">
|
20
|
-
<animate attributeName="r"
|
21
|
-
begin="-0.9s" dur="1.8s"
|
22
|
-
values="1; 20"
|
23
|
-
calcMode="spline"
|
24
|
-
keyTimes="0; 1"
|
25
|
-
keySplines="0.165, 0.84, 0.44, 1"
|
26
|
-
repeatCount="indefinite" />
|
27
|
-
<animate attributeName="stroke-opacity"
|
28
|
-
begin="-0.9s" dur="1.8s"
|
29
|
-
values="1; 0"
|
30
|
-
calcMode="spline"
|
31
|
-
keyTimes="0; 1"
|
32
|
-
keySplines="0.3, 0.61, 0.355, 1"
|
33
|
-
repeatCount="indefinite" />
|
34
|
-
</circle>
|
35
|
-
</g>
|
36
|
-
</svg>
|
@@ -1,41 +0,0 @@
|
|
1
|
-
<svg width="45" height="45" viewBox="0 0 45 45" xmlns="http://www.w3.org/2000/svg" stroke="#fff">
|
2
|
-
<g fill="none" fill-rule="evenodd" transform="translate(1 1)" stroke-width="2">
|
3
|
-
<circle cx="22" cy="22" r="6" stroke-opacity="0">
|
4
|
-
<animate attributeName="r"
|
5
|
-
begin="1.5s" dur="3s"
|
6
|
-
values="6;22"
|
7
|
-
calcMode="linear"
|
8
|
-
repeatCount="indefinite" />
|
9
|
-
<animate attributeName="stroke-opacity"
|
10
|
-
begin="1.5s" dur="3s"
|
11
|
-
values="1;0" calcMode="linear"
|
12
|
-
repeatCount="indefinite" />
|
13
|
-
<animate attributeName="stroke-width"
|
14
|
-
begin="1.5s" dur="3s"
|
15
|
-
values="2;0" calcMode="linear"
|
16
|
-
repeatCount="indefinite" />
|
17
|
-
</circle>
|
18
|
-
<circle cx="22" cy="22" r="6" stroke-opacity="0">
|
19
|
-
<animate attributeName="r"
|
20
|
-
begin="3s" dur="3s"
|
21
|
-
values="6;22"
|
22
|
-
calcMode="linear"
|
23
|
-
repeatCount="indefinite" />
|
24
|
-
<animate attributeName="stroke-opacity"
|
25
|
-
begin="3s" dur="3s"
|
26
|
-
values="1;0" calcMode="linear"
|
27
|
-
repeatCount="indefinite" />
|
28
|
-
<animate attributeName="stroke-width"
|
29
|
-
begin="3s" dur="3s"
|
30
|
-
values="2;0" calcMode="linear"
|
31
|
-
repeatCount="indefinite" />
|
32
|
-
</circle>
|
33
|
-
<circle cx="22" cy="22" r="8">
|
34
|
-
<animate attributeName="r"
|
35
|
-
begin="0s" dur="1.5s"
|
36
|
-
values="6;1;2;3;4;5;6"
|
37
|
-
calcMode="linear"
|
38
|
-
repeatCount="indefinite" />
|
39
|
-
</circle>
|
40
|
-
</g>
|
41
|
-
</svg>
|
@@ -1,54 +0,0 @@
|
|
1
|
-
<svg width="58" height="58" viewBox="0 0 58 58" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g fill="none" fill-rule="evenodd">
|
3
|
-
<g transform="translate(2 1)" stroke="#FFF" stroke-width="1.5">
|
4
|
-
<circle cx="42.601" cy="11.462" r="5" fill-opacity="1" fill="#fff">
|
5
|
-
<animate attributeName="fill-opacity"
|
6
|
-
begin="0s" dur="1.3s"
|
7
|
-
values="1;0;0;0;0;0;0;0" calcMode="linear"
|
8
|
-
repeatCount="indefinite" />
|
9
|
-
</circle>
|
10
|
-
<circle cx="49.063" cy="27.063" r="5" fill-opacity="0" fill="#fff">
|
11
|
-
<animate attributeName="fill-opacity"
|
12
|
-
begin="0s" dur="1.3s"
|
13
|
-
values="0;1;0;0;0;0;0;0" calcMode="linear"
|
14
|
-
repeatCount="indefinite" />
|
15
|
-
</circle>
|
16
|
-
<circle cx="42.601" cy="42.663" r="5" fill-opacity="0" fill="#fff">
|
17
|
-
<animate attributeName="fill-opacity"
|
18
|
-
begin="0s" dur="1.3s"
|
19
|
-
values="0;0;1;0;0;0;0;0" calcMode="linear"
|
20
|
-
repeatCount="indefinite" />
|
21
|
-
</circle>
|
22
|
-
<circle cx="27" cy="49.125" r="5" fill-opacity="0" fill="#fff">
|
23
|
-
<animate attributeName="fill-opacity"
|
24
|
-
begin="0s" dur="1.3s"
|
25
|
-
values="0;0;0;1;0;0;0;0" calcMode="linear"
|
26
|
-
repeatCount="indefinite" />
|
27
|
-
</circle>
|
28
|
-
<circle cx="11.399" cy="42.663" r="5" fill-opacity="0" fill="#fff">
|
29
|
-
<animate attributeName="fill-opacity"
|
30
|
-
begin="0s" dur="1.3s"
|
31
|
-
values="0;0;0;0;1;0;0;0" calcMode="linear"
|
32
|
-
repeatCount="indefinite" />
|
33
|
-
</circle>
|
34
|
-
<circle cx="4.938" cy="27.063" r="5" fill-opacity="0" fill="#fff">
|
35
|
-
<animate attributeName="fill-opacity"
|
36
|
-
begin="0s" dur="1.3s"
|
37
|
-
values="0;0;0;0;0;1;0;0" calcMode="linear"
|
38
|
-
repeatCount="indefinite" />
|
39
|
-
</circle>
|
40
|
-
<circle cx="11.399" cy="11.462" r="5" fill-opacity="0" fill="#fff">
|
41
|
-
<animate attributeName="fill-opacity"
|
42
|
-
begin="0s" dur="1.3s"
|
43
|
-
values="0;0;0;0;0;0;1;0" calcMode="linear"
|
44
|
-
repeatCount="indefinite" />
|
45
|
-
</circle>
|
46
|
-
<circle cx="27" cy="5" r="5" fill-opacity="0" fill="#fff">
|
47
|
-
<animate attributeName="fill-opacity"
|
48
|
-
begin="0s" dur="1.3s"
|
49
|
-
values="0;0;0;0;0;0;0;1" calcMode="linear"
|
50
|
-
repeatCount="indefinite" />
|
51
|
-
</circle>
|
52
|
-
</g>
|
53
|
-
</g>
|
54
|
-
</svg>
|
@@ -1,32 +0,0 @@
|
|
1
|
-
<svg width="120" height="30" viewBox="0 0 120 30" xmlns="http://www.w3.org/2000/svg" fill="#fff">
|
2
|
-
<circle cx="15" cy="15" r="15">
|
3
|
-
<animate attributeName="r" from="15" to="15"
|
4
|
-
begin="0s" dur="0.8s"
|
5
|
-
values="15;9;15" calcMode="linear"
|
6
|
-
repeatCount="indefinite" />
|
7
|
-
<animate attributeName="fill-opacity" from="1" to="1"
|
8
|
-
begin="0s" dur="0.8s"
|
9
|
-
values="1;.5;1" calcMode="linear"
|
10
|
-
repeatCount="indefinite" />
|
11
|
-
</circle>
|
12
|
-
<circle cx="60" cy="15" r="9" fill-opacity="0.3">
|
13
|
-
<animate attributeName="r" from="9" to="9"
|
14
|
-
begin="0s" dur="0.8s"
|
15
|
-
values="9;15;9" calcMode="linear"
|
16
|
-
repeatCount="indefinite" />
|
17
|
-
<animate attributeName="fill-opacity" from="0.5" to="0.5"
|
18
|
-
begin="0s" dur="0.8s"
|
19
|
-
values=".5;1;.5" calcMode="linear"
|
20
|
-
repeatCount="indefinite" />
|
21
|
-
</circle>
|
22
|
-
<circle cx="105" cy="15" r="15">
|
23
|
-
<animate attributeName="r" from="15" to="15"
|
24
|
-
begin="0s" dur="0.8s"
|
25
|
-
values="15;9;15" calcMode="linear"
|
26
|
-
repeatCount="indefinite" />
|
27
|
-
<animate attributeName="fill-opacity" from="1" to="1"
|
28
|
-
begin="0s" dur="0.8s"
|
29
|
-
values="1;.5;1" calcMode="linear"
|
30
|
-
repeatCount="indefinite" />
|
31
|
-
</circle>
|
32
|
-
</svg>
|