@sachin9822/reports-lib 0.0.84 → 0.0.86

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sachin9822/reports-lib",
3
- "version": "0.0.84",
3
+ "version": "0.0.86",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.2.0",
6
6
  "@angular/core": "^14.2.0"
@@ -8,12 +8,23 @@
8
8
  "dependencies": {
9
9
  "tslib": "^2.3.0"
10
10
  },
11
+ "typings": "index.d.ts",
12
+ "files": [
13
+ "bundles",
14
+ "fesm2015",
15
+ "fesm2020",
16
+ "esm2020",
17
+ "esm2015",
18
+ "assets",
19
+ "package.json",
20
+ "README.md",
21
+ "public-api.d.ts"
22
+ ],
11
23
  "module": "fesm2015/sachin9822-reports-lib.mjs",
12
24
  "es2020": "fesm2020/sachin9822-reports-lib.mjs",
13
25
  "esm2020": "esm2020/sachin9822-reports-lib.mjs",
14
26
  "fesm2020": "fesm2020/sachin9822-reports-lib.mjs",
15
27
  "fesm2015": "fesm2015/sachin9822-reports-lib.mjs",
16
- "typings": "index.d.ts",
17
28
  "exports": {
18
29
  "./package.json": {
19
30
  "default": "./package.json"
package/index.d.ts DELETED
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@sachin9822/reports-lib" />
5
- export * from './public-api';
@@ -1,62 +0,0 @@
1
- import { ErrorHandler, Injector, OnInit } from '@angular/core';
2
- import { ReportService } from '../../services/report.service';
3
- import { AccGlDetailsEnquiryReportModel } from '../../models/acc-gl-details-enquiry-report/accgl-details-enquiry-reportmodel';
4
- import { ColDef, ColumnApi, GridApi, GridReadyEvent } from 'ag-grid-community';
5
- import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
6
- import { HttpClient } from '@angular/common/http';
7
- import 'jspdf-autotable';
8
- import { ExportService } from '../../shared/export.service';
9
- import * as i0 from "@angular/core";
10
- declare module 'jspdf' {
11
- interface jsPDF {
12
- autoTable: (options: any) => jsPDF;
13
- }
14
- }
15
- export declare class AccGlDetailsEnquiryReportComponent implements OnInit {
16
- private exportService;
17
- private reportService;
18
- private http;
19
- private sanitizer;
20
- private errorHandler;
21
- private injector;
22
- searchText: string;
23
- gridApi: GridApi<any>;
24
- gridColumnApi: ColumnApi;
25
- selectedExportOption: string;
26
- pageSize: number;
27
- svgLoader: SafeHtml;
28
- loading: boolean;
29
- dataReady: boolean;
30
- dateTypeFilter: number;
31
- dateType: any;
32
- sysCompanyCode: any;
33
- sysUserId: any;
34
- companyName: any;
35
- reportUser: any;
36
- reportTime: any;
37
- date: any;
38
- currentReportFormattedDate: any;
39
- accGlDetailsEnquiryReportModel: AccGlDetailsEnquiryReportModel;
40
- rowData: any[];
41
- defaultColDef: ColDef;
42
- columnDefs: ColDef[];
43
- constructor(exportService: ExportService, reportService: ReportService, http: HttpClient, sanitizer: DomSanitizer, errorHandler: ErrorHandler, injector: Injector);
44
- ngOnInit(): void;
45
- getAccGLDetailsReport(): void;
46
- formatDate(params: any): string;
47
- convertToDateFromDatepicker(): string | undefined;
48
- onDateChange(event: Event): void;
49
- onEnterKey(event: Event): void;
50
- onEnterhandleExport(event: Event): void;
51
- onGridReady(params: GridReadyEvent): void;
52
- onPageSizeChanged(): void;
53
- getRowHeight(params: any): number;
54
- formatNumber(params: any): string;
55
- onSearch(): void;
56
- handleExport(): void;
57
- exportToPdf(): Promise<void>;
58
- exportToExcel(): void;
59
- exportToCsv(): void;
60
- static ɵfac: i0.ɵɵFactoryDeclaration<AccGlDetailsEnquiryReportComponent, never>;
61
- static ɵcmp: i0.ɵɵComponentDeclaration<AccGlDetailsEnquiryReportComponent, "lib-acc-gl-details-enquiry-report", never, {}, {}, never, never, false>;
62
- }
@@ -1,8 +0,0 @@
1
- import { journalVoucherEntryModel } from "./journal-voucher-entry-model";
2
- export interface AccGlDetailsEnquiryReportModel {
3
- companyName: string;
4
- reportUser: string;
5
- reportTime: string;
6
- date: Date;
7
- journalVoucherEntries: [journalVoucherEntryModel];
8
- }
@@ -1,18 +0,0 @@
1
- export interface journalVoucherEntryModel {
2
- journalID: string;
3
- transactionNo: string;
4
- transactionCode: string;
5
- journalType: string;
6
- postingDate: string;
7
- valueDate: Date;
8
- description: string;
9
- accountCode: string;
10
- currency: string;
11
- rate: string;
12
- forexDebit: string;
13
- localDebit: string;
14
- forexCredit: string;
15
- localCredit: string;
16
- id: number;
17
- rateDecimal: number;
18
- }
@@ -1,6 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class ReportsLibRoutingModule {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<ReportsLibRoutingModule, never>;
4
- static ɵmod: i0.ɵɵNgModuleDeclaration<ReportsLibRoutingModule, never, never, never>;
5
- static ɵinj: i0.ɵɵInjectorDeclaration<ReportsLibRoutingModule>;
6
- }
@@ -1,8 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class ReportsLibComponent implements OnInit {
4
- constructor();
5
- ngOnInit(): void;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<ReportsLibComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<ReportsLibComponent, "lib-reports-lib", never, {}, {}, never, never, false>;
8
- }
@@ -1,15 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./reports-lib.component";
3
- import * as i2 from "./components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component";
4
- import * as i3 from "ag-grid-angular";
5
- import * as i4 from "./reports-lib-routing.module";
6
- import * as i5 from "@angular/common";
7
- import * as i6 from "@ng-idle/core";
8
- import * as i7 from "angular-oauth2-oidc";
9
- import * as i8 from "@angular/forms";
10
- import * as i9 from "@angular/router";
11
- export declare class ReportsLibModule {
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.NgIdleModule, typeof i7.OAuthModule, typeof i8.FormsModule, typeof i9.RouterModule], [typeof i1.ReportsLibComponent, typeof i2.AccGlDetailsEnquiryReportComponent]>;
14
- static ɵinj: i0.ɵɵInjectorDeclaration<ReportsLibModule>;
15
- }
@@ -1,6 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class ReportsLibService {
3
- constructor();
4
- static ɵfac: i0.ɵɵFactoryDeclaration<ReportsLibService, never>;
5
- static ɵprov: i0.ɵɵInjectableDeclaration<ReportsLibService>;
6
- }
@@ -1,16 +0,0 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { ErrorHandler, Injector } from '@angular/core';
3
- import { AccGlDetailsEnquiryReportModel } from '../models/acc-gl-details-enquiry-report/accgl-details-enquiry-reportmodel';
4
- import { Observable } from 'rxjs';
5
- import * as i0 from "@angular/core";
6
- export declare class ReportService {
7
- private http;
8
- private errorHandler;
9
- private injector;
10
- private serviceUrl;
11
- constructor(http: HttpClient, errorHandler: ErrorHandler, injector: Injector);
12
- getAccGLDetailsReport(formattedDate: string | undefined, dateType: string, sysCompanyCode: string, sysUserId: string, companyName: string): Observable<AccGlDetailsEnquiryReportModel>;
13
- getUserNameFromSessionStorage(): string;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<ReportService, never>;
15
- static ɵprov: i0.ɵɵInjectableDeclaration<ReportService>;
16
- }
@@ -1,31 +0,0 @@
1
- import 'jspdf-autotable';
2
- import * as i0 from "@angular/core";
3
- declare module 'jspdf' {
4
- interface jsPDF {
5
- autoTable: (options: any) => jsPDF;
6
- }
7
- }
8
- export declare class ExportService {
9
- private readonly pdfFontSize;
10
- private readonly pdfLineHeight;
11
- private readonly pdfLeftMargin;
12
- private logoBase64;
13
- constructor();
14
- private loadImageAsBase64;
15
- formatDate(value: any): string;
16
- formatDateTime(date: Date): string;
17
- generateReportMetadata(metadata: [string, string][]): [string, string][];
18
- prepareExportTable(data: any[], columnDefs: any[], options?: {
19
- excludeFields?: string[];
20
- currencyFields?: string[];
21
- }): {
22
- headers: string[];
23
- rows: any[][];
24
- };
25
- exportToPdfUniversal(title: string, metadata: [string, string][], headers: string[], rows: any[][], fileName: string): Promise<void>;
26
- exportToExcelUniversal(title: string, metadata: [string, string][], headers: string[], rows: any[][], fileName: string): void;
27
- exportToCsvUniversal(title: string, metadata: [string, string][], headers: string[], rows: any[][], fileName: string): void;
28
- private downloadFile;
29
- static ɵfac: i0.ɵɵFactoryDeclaration<ExportService, never>;
30
- static ɵprov: i0.ɵɵInjectableDeclaration<ExportService>;
31
- }
@@ -1,10 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="22px" height="23px" viewBox="0 0 22 23" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <!-- Generator: Sketch 46.2 (44496) - http://www.bohemiancoding.com/sketch -->
4
- <title>Search</title>
5
- <desc>Created with Sketch.</desc>
6
- <defs></defs>
7
- <g id="BFC" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
8
- <path d="M15.6218838,15.1278344 C15.5300122,15.2308419 15.4399966,15.3366335 15.3425571,15.4350011 C15.1495339,15.6298802 14.9472308,15.8145514 14.7347197,15.9880866 C14.6354241,16.0706783 14.5277766,16.14399 14.4238411,16.2210136 C14.2744337,16.3314451 14.1231704,16.4381647 13.9663391,16.5374602 C13.8596195,16.6052039 13.751972,16.6720197 13.6415405,16.7341954 C13.4345974,16.8529789 13.2220863,16.9615544 13.0049353,17.059922 C12.9436875,17.0877618 12.8861518,17.1202417 12.824904,17.1471536 C12.5418653,17.2668651 12.2504745,17.3670886 11.9535158,17.4533922 C11.8681402,17.4784481 11.7799806,17.4979361 11.692749,17.520208 C11.46075,17.5795997 11.225967,17.6278555 10.9874721,17.6659033 C10.8965285,17.6807513 10.8065128,17.6965272 10.7155692,17.7076631 C10.3954106,17.747567 10.0715401,17.7744788 9.74395748,17.7744788 C9.41637491,17.7744788 9.09250432,17.747567 8.77327372,17.7076631 C8.68140212,17.6965272 8.59138651,17.6807513 8.50044291,17.6659033 C8.26194795,17.6278555 8.02716497,17.5795997 7.79516598,17.520208 C7.70793437,17.4979361 7.61977475,17.4784481 7.53439912,17.4533922 C7.23744042,17.3670886 6.94604969,17.2668651 6.66301093,17.1462256 C6.60176319,17.1202417 6.54422744,17.0877618 6.48390771,17.06085 C6.26582866,16.9615544 6.05331759,16.8529789 5.84637449,16.7341954 C5.73594297,16.6720197 5.62829544,16.6052039 5.52157591,16.5374602 C5.36474459,16.4381647 5.21348125,16.3314451 5.0640739,16.2210136 C4.96013836,16.14399 4.85341882,16.0706783 4.75319526,15.9880866 C4.54068419,15.8145514 4.33838107,15.6298802 4.14442992,15.4340731 C4.04791834,15.3366335 3.95883073,15.2308419 3.86695913,15.1278344 C3.74910364,14.996987 3.63496014,14.8624276 3.52638461,14.7223002 C3.44193698,14.6146526 3.35841735,14.5060771 3.27953769,14.3928616 C3.13662631,14.1877745 3.0020669,13.9752634 2.87771544,13.7544004 C2.22997427,12.6101814 1.8559919,11.2914991 1.8559919,9.88651326 C1.8559919,8.08156114 2.47218121,6.42137638 3.49576075,5.09063019 C3.58670435,4.97277471 3.67857595,4.85677521 3.77508753,4.7444877 C3.86603113,4.63962416 3.95975872,4.53661661 4.0553423,4.43639305 C4.16484583,4.32132155 4.27898933,4.21274602 4.39406083,4.10602649 C4.48500443,4.02250685 4.57316404,3.93713122 4.66689164,3.85825157 C4.8580588,3.69770827 5.05572194,3.54551693 5.26080904,3.40446155 C5.28586493,3.38682963 5.30813684,3.36734171 5.33319273,3.34970979 C5.57354368,3.1873105 5.82503058,3.04068714 6.08208546,2.90612772 C6.13962121,2.87550386 6.20086894,2.84951997 6.26026068,2.8198241 C6.46441979,2.71867254 6.67229088,2.62494495 6.88480196,2.54235331 C6.95811364,2.51358544 7.03235331,2.48760155 7.10659299,2.46161766 C7.31168009,2.38830598 7.52047918,2.32427426 7.73113426,2.26859451 C7.81094192,2.2472506 7.88889358,2.22590669 7.96870123,2.20734677 C8.18585228,2.156307 8.40578732,2.11825916 8.62757835,2.0867073 C8.70181803,2.07649934 8.7760577,2.06072341 8.85122538,2.05237145 C9.14632809,2.01896359 9.44421479,1.99854768 9.74395748,1.99854768 C10.0437002,1.99854768 10.3415869,2.01896359 10.6366896,2.05237145 C10.7118573,2.06072341 10.7860969,2.07649934 10.8603366,2.0867073 C11.0821276,2.11825916 11.3020627,2.156307 11.5182857,2.20734677 C11.5990214,2.22590669 11.677901,2.2472506 11.7567807,2.26859451 C11.9674358,2.32427426 12.1762349,2.38830598 12.381322,2.46161766 C12.4555616,2.48760155 12.5298013,2.51358544 12.603113,2.54235331 C12.8156241,2.62587295 13.0234952,2.71867254 13.2267263,2.8198241 C13.286118,2.84951997 13.3482938,2.87550386 13.4067575,2.90612772 C13.6638124,3.04068714 13.9134433,3.1873105 14.1547222,3.34970979 C14.1807061,3.36734171 14.203906,3.38868562 14.2298899,3.40631754 C14.433121,3.54737293 14.6298562,3.69770827 14.8200953,3.85732357 C14.9147509,3.93713122 15.0038385,4.02343485 15.0947821,4.10695448 C15.2098536,4.21367402 15.3230691,4.32132155 15.4316447,4.43546505 C15.5281562,4.53568861 15.6218838,4.63962416 15.7137554,4.7454157 C15.809339,4.85677521 15.9012106,4.97277471 15.9912262,5.0897022 C17.0157337,6.42044839 17.6319231,8.08063314 17.6319231,9.88651326 C17.6319231,11.2924271 17.2579407,12.6101814 16.6101995,13.7553284 C16.4858481,13.9752634 16.3512886,14.1877745 16.2083773,14.3928616 C16.1294976,14.5060771 16.045978,14.6146526 15.9615303,14.7232282 C15.8529548,14.8624276 15.7388113,14.996059 15.6218838,15.1278344 L15.6218838,15.1278344 Z M17.2551567,16.0855262 C17.6105792,15.6567921 17.9223858,15.1927941 18.1998566,14.7074522 C18.2406884,14.6378525 18.2889442,14.5738208 18.326992,14.5032931 L18.32328,14.5005091 C18.558063,14.065279 18.7520142,13.605921 18.9199814,13.1335711 C19.1306365,12.5387257 19.2846838,11.9188244 19.3765554,11.2775792 C19.4210993,10.9713405 19.4498671,10.6623179 19.4647151,10.3477273 C19.471211,10.1936799 19.487915,10.0424166 19.487915,9.88651326 C19.487915,8.47595942 19.1798203,7.13778926 18.6378707,5.92582655 C18.3733918,5.33283713 18.0504492,4.77232758 17.6773949,4.24893786 L17.6876028,4.24244189 C17.6217151,4.1496423 17.5446914,4.06983465 17.4769477,3.98074703 C17.3581643,3.82577171 17.2375248,3.67358037 17.1103893,3.52788501 C17.0008858,3.40074957 16.8885983,3.27639811 16.7735268,3.15575863 C16.6371114,3.01377525 16.496056,2.87921584 16.3522166,2.74558442 C16.2399291,2.64257687 16.1304256,2.53678534 16.0134981,2.43841776 C15.7861391,2.2472506 15.5504281,2.06629139 15.3072932,1.89739613 C15.2673894,1.86955625 15.2302695,1.83707639 15.1894377,1.80923651 C14.894335,1.61064538 14.5871683,1.43061416 14.2725777,1.26543088 C14.1946261,1.22459906 14.1138904,1.19026321 14.0359388,1.15128738 C13.7881638,1.02971991 13.5376049,0.917432401 13.281478,0.816280843 C13.1868225,0.780089001 13.0912389,0.745753151 12.9956553,0.712345296 C12.7460244,0.623257685 12.4917535,0.545306025 12.2346986,0.476634325 C12.134475,0.450650438 12.0351795,0.42281056 11.9340279,0.399610661 C11.6686211,0.337434932 11.3995023,0.291035135 11.1275994,0.252059305 C11.0338719,0.239067362 10.9410723,0.219579447 10.8454887,0.208443495 C10.4817143,0.166683677 10.1142279,0.142555783 9.74395748,0.142555783 C9.3736871,0.142555783 9.0062007,0.166683677 8.64242629,0.208443495 C8.5468427,0.219579447 8.45404311,0.239067362 8.36031552,0.252059305 C8.08841271,0.291035135 7.81929388,0.337434932 7.55388704,0.399610661 C7.45273548,0.42281056 7.35343991,0.450650438 7.25321635,0.476634325 C6.99616147,0.545306025 6.74189058,0.623257685 6.49225967,0.712345296 C6.39667609,0.745753151 6.3010925,0.780089001 6.20643692,0.817208839 C5.95031004,0.917432401 5.69975113,1.02971991 5.45290421,1.15035939 C5.37495255,1.19026321 5.2932889,1.22459906 5.21533724,1.26543088 C4.90074661,1.43154216 4.59357996,1.61064538 4.29847724,1.80923651 C4.25764542,1.83707639 4.22145358,1.86955625 4.18062176,1.89739613 C3.93748682,2.06629139 3.70177585,2.2472506 3.47441684,2.43841776 C3.35748935,2.53678534 3.24798583,2.64164888 3.13662631,2.74558442 C2.99278694,2.87828784 2.85080356,3.01377525 2.71438816,3.15668663 C2.59838866,3.27639811 2.48702915,3.40074957 2.37752563,3.52788501 C2.25039018,3.67358037 2.12975071,3.82669971 2.01096722,3.98167503 C1.94322352,4.06983465 1.86619986,4.15057029 1.80031214,4.24244189 L1.8105201,4.24893786 C0.675581052,5.84230691 0,7.78460244 0,9.88651326 C0,11.55505 0.423166153,13.1261471 1.16463492,14.5005091 L1.16092293,14.5032931 C1.19897077,14.5719648 1.24537057,14.6341405 1.2843464,14.7028122 C1.56367318,15.1900101 1.87640781,15.6549361 2.23275826,16.0855262 C2.62808453,16.5634441 3.06702662,17.0033142 3.54494453,17.3977125 C3.73703969,17.5563998 3.93934281,17.7030232 4.14350192,17.8468625 C4.16855781,17.8644945 4.19175771,17.8839824 4.2168136,17.9016143 C4.38292487,18.0166858 4.55646012,18.1206213 4.72906736,18.2245569 C4.80701902,18.2718847 4.88311469,18.3219965 4.96292234,18.3665403 C5.12532163,18.4584119 5.2932889,18.5419315 5.46032817,18.6245231 C5.55869574,18.6727789 5.65613532,18.7219627 5.75543089,18.7665065 C5.91597418,18.8398182 6.08022947,18.9057059 6.24448475,18.9697376 C6.36048425,19.0142814 6.47648374,19.0569692 6.59433922,19.0978011 C6.75117054,19.1516248 6.90892985,19.2017366 7.06854516,19.2472084 C7.20681655,19.2871122 7.34694394,19.3223761 7.48707133,19.3557839 C7.63369469,19.3910478 7.77939005,19.4253836 7.92694141,19.4541515 C8.10233264,19.4875594 8.28143586,19.5116873 8.45961109,19.5358152 C8.58025056,19.5515911 8.69810604,19.572007 8.81874552,19.583143 C9.12405619,19.6119108 9.43215084,19.6304707 9.74395748,19.6304707 C10.0557641,19.6304707 10.3638588,19.6119108 10.6691694,19.583143 C10.7898089,19.572007 10.9076644,19.5515911 11.0283039,19.5358152 C11.2064791,19.5116873 11.3855823,19.4875594 11.5609736,19.4541515 C11.7085249,19.4253836 11.8551483,19.3910478 12.0008436,19.3557839 C12.141899,19.3223761 12.2810984,19.2871122 12.4193698,19.2472084 C12.5789851,19.2017366 12.7367444,19.1516248 12.8935757,19.0978011 C13.0114312,19.0569692 13.1274307,19.0142814 13.2434302,18.9697376 C13.4086135,18.9057059 13.5719408,18.8398182 13.7324841,18.7665065 C13.8317796,18.7219627 13.9292192,18.6727789 14.0266588,18.6254511 C14.1946261,18.5419315 14.3625933,18.4584119 14.5249926,18.3665403 C14.6048003,18.3219965 14.6799679,18.2718847 14.7579196,18.2254849 C14.9314548,18.1206213 15.1049901,18.0166858 15.2711014,17.9016143 C15.2961573,17.8839824 15.3202851,17.8635665 15.345341,17.8459345 C15.5485722,17.7020952 15.7518033,17.5563998 15.9429704,17.3977125 L20.6878137,22.1416278 L22,20.8303695 L17.2551567,16.0855262 Z" id="Search" fill="#FFFFFF"></path>
9
- </g>
10
- </svg>
Binary file
@@ -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,31 +0,0 @@
1
- <svg width="38" height="38" viewBox="0 0 38 38" xmlns="http://www.w3.org/2000/svg">
2
- <defs>
3
- <linearGradient x1="8.042%" y1="0%" x2="65.682%" y2="23.865%" id="a">
4
- <stop stop-color="#2196f3" stop-opacity="0" offset="0%"/>
5
- <stop stop-color="#2196f3" stop-opacity=".631" offset="63.146%"/>
6
- <stop stop-color="#2196f3" offset="100%"/>
7
- </linearGradient>
8
- </defs>
9
- <g fill="none" fill-rule="evenodd">
10
- <g transform="translate(1 1)">
11
- <path d="M36 18c0-9.94-8.06-18-18-18" id="Oval-2" stroke="url(#a)" stroke-width="2">
12
- <animateTransform
13
- attributeName="transform"
14
- type="rotate"
15
- from="0 18 18"
16
- to="360 18 18"
17
- dur="0.9s"
18
- repeatCount="indefinite" />
19
- </path>
20
- <circle fill="#fff" cx="36" cy="18" r="1">
21
- <animateTransform
22
- attributeName="transform"
23
- type="rotate"
24
- from="0 18 18"
25
- to="360 18 18"
26
- dur="0.9s"
27
- repeatCount="indefinite" />
28
- </circle>
29
- </g>
30
- </g>
31
- </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>