ca-components 0.0.69 → 0.0.70
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/esm2022/lib/animations/show.animation.mjs +2 -2
- package/esm2022/lib/components/ca-input/enums/input-string.enum.mjs +7 -1
- package/esm2022/lib/components/ca-input/services/ca-input-state.service.mjs +218 -22
- package/esm2022/lib/components/ca-input/utils/constants/index.mjs +2 -0
- package/esm2022/lib/components/ca-input/utils/constants/input-constants.mjs +18 -0
- package/esm2022/lib/components/ca-logo-change/ca-logo-change.component.mjs +108 -0
- package/esm2022/lib/components/ca-logo-change/pipes/logo-slider.pipe.mjs +17 -0
- package/esm2022/lib/components/ca-logo-change/utils/constants/logo-change.constants.mjs +17 -0
- package/esm2022/lib/components/ca-main-table/ca-main-table.component.mjs +10 -4
- package/esm2022/lib/components/ca-upload-files/ca-upload-files.component.mjs +335 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.mjs +311 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/config/dropzone-config.type.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/config/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/directives/template.directive.mjs +19 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-action.enum.mjs +8 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-type.enum.mjs +8 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/index.mjs +4 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/pages.enum.mjs +26 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/file.helper.mjs +23 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/drop-background-event.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/dropzone-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/dropzone-option-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/file-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/file-event.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/index.mjs +7 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/upload-file-templates.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-icons.constant.mjs +19 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-limit.constant.mjs +28 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/index.mjs +5 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/lottie-constant.mjs +9 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/supported-extension.constant.mjs +11 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/svg-routes/dropzone-svg.routes.mjs +4 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.mjs +351 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/enums/document-action.enum.mjs +10 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/enums/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/models/delete-action.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/models/file-action.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/models/index.mjs +3 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/pipes/byte-convert.pipe.mjs +22 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/pipes/file-name.pipe.mjs +22 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/pipes/index.mjs +5 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/pipes/ng-class.pipe.mjs +36 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/pipes/url-extension.pipe.mjs +21 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/services/document.service.mjs +19 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/services/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/utils/svg-routes/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/utils/svg-routes/upload-file.routes.mjs +10 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.mjs +159 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/carousel-action.enum.mjs +6 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/carousel-size.enum.mjs +10 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/index.mjs +3 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/models/carousel-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/models/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/constants/files-by-size.constant.mjs +16 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/constants/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/index.mjs +3 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/svg-routes/carousel-svg.routes.mjs +4 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/svg-routes/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/enums/file-size.enum.mjs +9 -0
- package/esm2022/lib/components/ca-upload-files/enums/file-types.enum.mjs +8 -0
- package/esm2022/lib/components/ca-upload-files/enums/index.mjs +3 -0
- package/esm2022/lib/components/ca-upload-files/models/document-review.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/models/file-option-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/models/index.mjs +5 -0
- package/esm2022/lib/components/ca-upload-files/models/review-file-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/models/slider.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/pipes/index.mjs +3 -0
- package/esm2022/lib/components/ca-upload-files/pipes/map-file.pipe.mjs +20 -0
- package/esm2022/lib/components/ca-upload-files/pipes/upload-class.pipe.mjs +43 -0
- package/esm2022/lib/components/ca-upload-files/services/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/services/upload-file.service.mjs +30 -0
- package/esm2022/lib/pipes/thousand-separator.pipe.mjs +6 -2
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/ca-components.mjs +1879 -30
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/components/ca-input/enums/input-string.enum.d.ts +7 -1
- package/lib/components/ca-input/services/ca-input-state.service.d.ts +19 -3
- package/lib/components/ca-input/utils/constants/index.d.ts +1 -0
- package/lib/components/ca-input/utils/constants/input-constants.d.ts +3 -0
- package/lib/components/ca-logo-change/ca-logo-change.component.d.ts +34 -0
- package/lib/components/ca-logo-change/pipes/logo-slider.pipe.d.ts +7 -0
- package/lib/components/ca-logo-change/utils/constants/logo-change.constants.d.ts +6 -0
- package/lib/components/ca-main-table/ca-main-table.component.d.ts +3 -1
- package/lib/components/ca-upload-files/ca-upload-files.component.d.ts +66 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.d.ts +53 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/config/dropzone-config.type.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/config/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/directives/template.directive.d.ts +9 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-action.enum.d.ts +6 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-type.enum.d.ts +6 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/index.d.ts +3 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/pages.enum.d.ts +24 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/file.helper.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/drop-background-event.model.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/dropzone-config.model.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/dropzone-option-config.model.d.ts +14 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/file-config.model.d.ts +19 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/file-event.model.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/index.d.ts +6 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/upload-file-templates.model.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-icons.constant.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-limit.constant.d.ts +5 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/index.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/lottie-constant.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/supported-extension.constant.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/svg-routes/dropzone-svg.routes.d.ts +3 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.d.ts +84 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/enums/document-action.enum.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/enums/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/models/delete-action.model.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/models/file-action.model.d.ts +5 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/models/index.d.ts +2 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/byte-convert.pipe.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/file-name.pipe.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/index.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/ng-class.pipe.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/url-extension.pipe.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/services/document.service.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/services/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/utils/svg-routes/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/utils/svg-routes/upload-file.routes.d.ts +9 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.d.ts +36 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/carousel-action.enum.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/carousel-size.enum.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/index.d.ts +2 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/models/carousel-config.model.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/models/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/constants/files-by-size.constant.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/constants/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/index.d.ts +2 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/svg-routes/carousel-svg.routes.d.ts +3 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/svg-routes/index.d.ts +1 -0
- package/lib/components/ca-upload-files/enums/file-size.enum.d.ts +7 -0
- package/lib/components/ca-upload-files/enums/file-types.enum.d.ts +6 -0
- package/lib/components/ca-upload-files/enums/index.d.ts +2 -0
- package/lib/components/ca-upload-files/models/document-review.model.d.ts +5 -0
- package/lib/components/ca-upload-files/models/file-option-config.model.d.ts +14 -0
- package/lib/components/ca-upload-files/models/index.d.ts +4 -0
- package/lib/components/ca-upload-files/models/review-file-config.model.d.ts +8 -0
- package/lib/components/ca-upload-files/models/slider.model.d.ts +4 -0
- package/lib/components/ca-upload-files/pipes/index.d.ts +2 -0
- package/lib/components/ca-upload-files/pipes/map-file.pipe.d.ts +9 -0
- package/lib/components/ca-upload-files/pipes/upload-class.pipe.d.ts +7 -0
- package/lib/components/ca-upload-files/services/index.d.ts +1 -0
- package/lib/components/ca-upload-files/services/upload-file.service.d.ts +18 -0
- package/lib/pipes/thousand-separator.pipe.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/src/assets/ca-components/svg/common/ic_forbidden.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_grid.svg +8 -0
- package/src/assets/ca-components/svg/common/ic_radial.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_reset.svg +3 -0
- package/src/assets/ca-components/svg/input/ic_email.svg +6 -0
- package/src/assets/ca-components/svg/input/ic_phone.svg +6 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_arrow-right.svg +11 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_arrow-up-rectangle.svg +11 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_arrow-up-right.svg +11 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_arrow-up.svg +11 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_circle-grey-filled.svg +4 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_circle-grey.svg +4 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_circle-orange.svg +4 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_circle-red-filled.svg +4 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_document.svg +3 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_eye-icon-closed.svg +3 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_eye-icon.svg +3 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_no-document.svg +7 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_rectangle-orange.svg +11 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_repair_engine.svg +3 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './upload-file.routes';
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { FilesCarouselConfig } from './models';
|
|
3
|
+
import { CarouselAction } from './enums';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CaUploadFilesCarouselComponent implements OnInit {
|
|
6
|
+
private ref;
|
|
7
|
+
fileSlider: ElementRef;
|
|
8
|
+
fileHolder: ElementRef;
|
|
9
|
+
slideWidth: number;
|
|
10
|
+
set config(data: FilesCarouselConfig);
|
|
11
|
+
activeSlide: EventEmitter<number>;
|
|
12
|
+
hoverArrowEmit: EventEmitter<boolean>;
|
|
13
|
+
carouselConfig: FilesCarouselConfig;
|
|
14
|
+
action: typeof CarouselAction;
|
|
15
|
+
currentSlide: number;
|
|
16
|
+
removePointers: boolean;
|
|
17
|
+
filesShown: number;
|
|
18
|
+
arrowSvg: string;
|
|
19
|
+
multipleCurrentSlide: number;
|
|
20
|
+
translateXMultipleSlides: number;
|
|
21
|
+
constructor(ref: ChangeDetectorRef);
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
private initializeCarousel;
|
|
24
|
+
calculateFilesShown(): number;
|
|
25
|
+
onAction(action: CarouselAction): void;
|
|
26
|
+
private handleSlideChange;
|
|
27
|
+
private goToPreviousSlide;
|
|
28
|
+
private goToNextSlide;
|
|
29
|
+
private resetMultipleSlides;
|
|
30
|
+
private updatePointerRemoval;
|
|
31
|
+
slideToFile(index: number): void;
|
|
32
|
+
hoverArrow(show: boolean): void;
|
|
33
|
+
identity(index: number): number;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaUploadFilesCarouselComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaUploadFilesCarouselComponent, "app-ca-upload-files-carousel", never, { "slideWidth": { "alias": "slideWidth"; "required": false; }; "config": { "alias": "config"; "required": false; }; }, { "activeSlide": "activeSlide"; "hoverArrowEmit": "hoverArrowEmit"; }, never, ["*"], true, never>;
|
|
36
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './carousel-config.model';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './files-by-size.constant';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './carousel-svg.routes';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { FileConfig } from "../components/ca-upload-dropzone/models";
|
|
2
|
+
export interface FileOptionConfig {
|
|
3
|
+
id: number;
|
|
4
|
+
customClassName?: string;
|
|
5
|
+
url?: string;
|
|
6
|
+
file: FileConfig;
|
|
7
|
+
hasTagsDropdown?: boolean;
|
|
8
|
+
hasNumberOfPages?: boolean;
|
|
9
|
+
activePage?: number;
|
|
10
|
+
type?: string;
|
|
11
|
+
hasLandscapeOption?: boolean;
|
|
12
|
+
tagsOptions?: any[];
|
|
13
|
+
tags?: any[];
|
|
14
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { FileOptionConfig } from '../models';
|
|
3
|
+
import { FileConfig } from '../components/ca-upload-dropzone/models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MapFilePipe implements PipeTransform {
|
|
6
|
+
transform(config: FileOptionConfig, file: FileConfig): any;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapFilePipe, never>;
|
|
8
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MapFilePipe, "mapFile", true>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class UploadClassPipe implements PipeTransform {
|
|
4
|
+
transform(filesLength: number | undefined, carouselSize: string | undefined, isReview: boolean | undefined, dontUseSlider: boolean): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UploadClassPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<UploadClassPipe, "uploadClass", true>;
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './upload-file.service';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { FileConfig } from '../components/ca-upload-dropzone/models';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CaUploadFileService {
|
|
4
|
+
private uploadDocumentsSubject;
|
|
5
|
+
private visibilityDropZoneSubject;
|
|
6
|
+
get visibilityDropZone$(): import("rxjs").Observable<boolean>;
|
|
7
|
+
visibilityDropZone(action: boolean): void;
|
|
8
|
+
get uploadedFiles$(): import("rxjs").Observable<{
|
|
9
|
+
files: FileConfig[];
|
|
10
|
+
action: string;
|
|
11
|
+
}>;
|
|
12
|
+
uploadFiles(data: {
|
|
13
|
+
files: FileConfig[];
|
|
14
|
+
action: string;
|
|
15
|
+
}): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaUploadFileService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CaUploadFileService>;
|
|
18
|
+
}
|
|
@@ -4,4 +4,5 @@ export declare class ThousandSeparatorPipe implements PipeTransform {
|
|
|
4
4
|
transform(value: any): any;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThousandSeparatorPipe, never>;
|
|
6
6
|
static ɵpipe: i0.ɵɵPipeDeclaration<ThousandSeparatorPipe, "thousandSeparator", true>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ThousandSeparatorPipe>;
|
|
7
8
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -25,4 +25,5 @@ export * from './lib/components/ca-rating-review/ca-rating-review.component';
|
|
|
25
25
|
export * from './lib/components/ca-map/models/map.model';
|
|
26
26
|
export * from './lib/components/ca-main-table/ca-main-table.component';
|
|
27
27
|
export * from './lib/components/ca-main-table/models/main-table.model';
|
|
28
|
+
export * from './lib/components/ca-upload-files/ca-upload-files.component';
|
|
28
29
|
export * from './lib/models';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M7.00117 0.350098C5.68586 0.34979 4.39999 0.739544 3.3062 1.47007C2.21241 2.20059 1.35982 3.23907 0.85626 4.45417C0.352699 5.66928 0.220785 7.00642 0.477201 8.29649C0.733617 9.58657 1.36685 10.7716 2.2968 11.7018C3.22676 12.632 4.41167 13.2655 5.70169 13.5222C6.99171 13.7789 8.32888 13.6473 9.5441 13.144C10.7593 12.6408 11.798 11.7884 12.5288 10.6948C13.2596 9.60118 13.6496 8.31541 13.6496 7.0001C13.6496 5.23641 12.949 3.54495 11.7019 2.29784C10.4548 1.05072 8.7633 0.350098 6.99961 0.350098H7.00117ZM3.50739 10.4908C2.6944 9.6766 2.19181 8.60369 2.08669 7.45792C1.98158 6.31216 2.28055 5.16572 2.93183 4.21721L9.8385 11.0204C8.89045 11.6936 7.73483 12.0097 6.57614 11.9127C5.41745 11.8158 4.33041 11.3121 3.50739 10.4908ZM11.0518 9.80943L4.13817 2.99454C5.08198 2.31966 6.23373 1.99962 7.39042 2.09083C8.5471 2.18204 9.63446 2.67864 10.4608 3.49311C11.2872 4.30758 11.7995 5.38762 11.9075 6.54286C12.0155 7.6981 11.7122 8.85438 11.0511 9.80788L11.0518 9.80943Z" fill="#6692F1"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="16" height="18" viewBox="0 0 16 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6.31412 0.896503H1.04212C0.916231 0.895713 0.791417 0.919744 0.67482 0.967221C0.558222 1.0147 0.452131 1.08469 0.362602 1.1732C0.273073 1.26171 0.201866 1.36699 0.153053 1.48304C0.104241 1.59908 0.0787796 1.72361 0.078125 1.8495V3.7555C0.0787796 3.8814 0.104241 4.00592 0.153053 4.12197C0.201866 4.23801 0.273073 4.3433 0.362602 4.43181C0.452131 4.52031 0.558222 4.59031 0.67482 4.63778C0.791417 4.68526 0.916231 4.70929 1.04212 4.7085H6.31412C6.5683 4.70983 6.8126 4.61021 6.99335 4.43151C7.17411 4.25282 7.27654 4.00967 7.27812 3.7555V1.8495C7.27654 1.59533 7.17411 1.35219 6.99335 1.17349C6.8126 0.9948 6.5683 0.895173 6.31412 0.896503Z" fill="#919191"/>
|
|
3
|
+
<path d="M14.9567 0.896498H9.6837C9.55789 0.895839 9.43319 0.919967 9.31671 0.967504C9.20023 1.01504 9.09424 1.08506 9.00482 1.17355C8.9154 1.26204 8.84428 1.36729 8.79553 1.48327C8.74678 1.59924 8.72136 1.72369 8.7207 1.8495V3.7555C8.72136 3.88139 8.74682 4.00592 8.79563 4.12196C8.84444 4.23801 8.91565 4.34329 9.00518 4.4318C9.09471 4.52031 9.2008 4.5903 9.3174 4.63778C9.434 4.68526 9.55881 4.70929 9.6847 4.7085H14.9567C15.2109 4.70983 15.4552 4.6102 15.6359 4.43151C15.8167 4.25281 15.9191 4.00967 15.9207 3.7555V1.8495C15.9191 1.59533 15.8167 1.35218 15.6359 1.17349C15.4552 0.994795 15.2109 0.895167 14.9567 0.896498Z" fill="#919191"/>
|
|
4
|
+
<path d="M1.04212 7.09572H6.31412C6.5683 7.09439 6.8126 7.19402 6.99335 7.37271C7.17411 7.55141 7.27654 7.79455 7.27812 8.04872V9.95472C7.27654 10.2089 7.17411 10.452 6.99335 10.6307C6.8126 10.8094 6.5683 10.9091 6.31412 10.9077H1.04212C0.916231 10.9085 0.791417 10.8845 0.67482 10.837C0.558222 10.7895 0.452131 10.7195 0.362602 10.631C0.273073 10.5425 0.201866 10.4372 0.153053 10.3212C0.104241 10.2051 0.0787796 10.0806 0.078125 9.95472V8.04872C0.0787796 7.92283 0.104241 7.7983 0.153053 7.68226C0.201866 7.56621 0.273073 7.46093 0.362602 7.37242C0.452131 7.28391 0.558222 7.21392 0.67482 7.16644C0.791417 7.11896 0.916231 7.09493 1.04212 7.09572Z" fill="#919191"/>
|
|
5
|
+
<path d="M14.9567 7.09572H9.6847C9.55881 7.09493 9.434 7.11896 9.3174 7.16644C9.2008 7.21392 9.09471 7.28391 9.00518 7.37242C8.91565 7.46093 8.84444 7.56621 8.79563 7.68226C8.74682 7.7983 8.72136 7.92283 8.7207 8.04872V9.95472C8.72136 10.0806 8.74682 10.2051 8.79563 10.3212C8.84444 10.4372 8.91565 10.5425 9.00518 10.631C9.09471 10.7195 9.2008 10.7895 9.3174 10.837C9.434 10.8845 9.55881 10.9085 9.6847 10.9077H14.9567C15.2109 10.9091 15.4552 10.8094 15.6359 10.6307C15.8167 10.452 15.9191 10.2089 15.9207 9.95472V8.04872C15.9191 7.79455 15.8167 7.55141 15.6359 7.37271C15.4552 7.19402 15.2109 7.09439 14.9567 7.09572Z" fill="#919191"/>
|
|
6
|
+
<path d="M1.04212 13.2891H6.31412C6.5683 13.2878 6.8126 13.3874 6.99335 13.5661C7.17411 13.7448 7.27654 13.9879 7.27812 14.2421V16.1481C7.27654 16.4023 7.17411 16.6454 6.99335 16.8241C6.8126 17.0028 6.5683 17.1024 6.31412 17.1011H1.04212C0.916231 17.1019 0.791417 17.0778 0.67482 17.0304C0.558222 16.9829 0.452131 16.9129 0.362602 16.8244C0.273073 16.7359 0.201866 16.6306 0.153053 16.5145C0.104241 16.3985 0.0787796 16.274 0.078125 16.1481V14.2421C0.0787796 14.1162 0.104241 13.9917 0.153053 13.8756C0.201866 13.7596 0.273073 13.6543 0.362602 13.5658C0.452131 13.4773 0.558222 13.4073 0.67482 13.3598C0.791417 13.3123 0.916231 13.2883 1.04212 13.2891Z" fill="#919191"/>
|
|
7
|
+
<path d="M14.9567 13.2891H9.6847C9.55881 13.2883 9.434 13.3123 9.3174 13.3598C9.2008 13.4073 9.09471 13.4773 9.00518 13.5658C8.91565 13.6543 8.84444 13.7596 8.79563 13.8756C8.74682 13.9917 8.72136 14.1162 8.7207 14.2421V16.1481C8.72136 16.274 8.74682 16.3985 8.79563 16.5145C8.84444 16.6306 8.91565 16.7359 9.00518 16.8244C9.09471 16.9129 9.2008 16.9829 9.3174 17.0304C9.434 17.0778 9.55881 17.1019 9.6847 17.1011H14.9567C15.2109 17.1024 15.4552 17.0028 15.6359 16.8241C15.8167 16.6454 15.9191 16.4023 15.9207 16.1481V14.2421C15.9191 13.9879 15.8167 13.7448 15.6359 13.5661C15.4552 13.3874 15.2109 13.2878 14.9567 13.2891Z" fill="#919191"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3.57144 15.0114L3.55544 15.0004C3.51876 14.9643 3.48964 14.9213 3.46976 14.8738C3.44987 14.8263 3.43964 14.7754 3.43964 14.7239C3.43964 14.6725 3.44987 14.6215 3.46976 14.574C3.48964 14.5266 3.51876 14.4835 3.55544 14.4474L4.85544 13.1474C4.92542 13.0771 5.01953 13.036 5.11869 13.0325C5.21784 13.0289 5.31463 13.0632 5.38944 13.1284C6.38569 14.0075 7.66978 14.4907 8.99844 14.4864C9.89209 14.4852 10.7719 14.2657 11.5614 13.847C12.3509 13.4283 13.0261 12.823 13.5284 12.0839C14.0307 11.3447 14.3448 10.4941 14.4434 9.6059C14.5421 8.71771 14.4222 7.81887 14.0943 6.98754C13.7664 6.15622 13.2404 5.41758 12.562 4.83587C11.8836 4.25415 11.0734 3.84696 10.2018 3.64972C9.33019 3.45248 8.42359 3.47115 7.56084 3.70411C6.69808 3.93707 5.90531 4.37727 5.25144 4.98642L3.39844 3.14242C4.53824 2.0532 5.97113 1.32028 7.5214 1.03354C9.07167 0.746798 10.6719 0.918706 12.1259 1.52818C13.5799 2.13765 14.8244 3.1582 15.7069 4.46466C16.5893 5.77112 17.0713 7.30671 17.0938 8.88312C17.1162 10.4595 16.6781 12.0082 15.8333 13.3393C14.9884 14.6703 13.7734 15.7259 12.3373 16.3765C10.9013 17.0271 9.30658 17.2445 7.74878 17.0021C6.19097 16.7596 4.73779 16.0677 3.56744 15.0114H3.57144ZM1.68244 7.69142C1.57971 7.69182 1.47791 7.67194 1.38287 7.63293C1.28783 7.59392 1.20143 7.53654 1.1286 7.46409C1.05577 7.39163 0.997956 7.30552 0.958461 7.21068C0.918965 7.11585 0.898568 7.01415 0.898438 6.91142V2.53042C0.898863 2.37536 0.945204 2.22389 1.03162 2.09513C1.11803 1.96637 1.24063 1.86609 1.38397 1.80694C1.52731 1.74778 1.68496 1.73241 1.83703 1.76275C1.9891 1.79309 2.12877 1.86779 2.23844 1.97742L6.61544 6.35442C6.7252 6.46405 6.79992 6.60381 6.83013 6.75597C6.86033 6.90813 6.84466 7.06584 6.78509 7.20908C6.72552 7.35232 6.62475 7.47464 6.49555 7.56051C6.36636 7.64639 6.21457 7.69195 6.05944 7.69142H1.68244Z" fill="#919191"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18">
|
|
2
|
+
<g id="Group_70913" data-name="Group 70913" transform="translate(-1319 -672.523)">
|
|
3
|
+
<rect id="Rectangle_57062" data-name="Rectangle 57062" width="18" height="18" transform="translate(1319 672.523)" fill="none"/>
|
|
4
|
+
<path id="Path_35732" data-name="Path 35732" d="M16.3,88.524H1.9a.915.915,0,0,0-.9.929V100.2a.915.915,0,0,0,.9.929H16.3a.915.915,0,0,0,.9-.929V89.453A.915.915,0,0,0,16.3,88.524ZM3.7,91.867a.62.62,0,0,1,.84-.249l.021.012a.633.633,0,0,1,.117.09l4.424,3.4,4.423-3.4a.617.617,0,0,1,.871.01l.019.02a.663.663,0,0,1-.028.918.639.639,0,0,1-.113.09l-2.694,2.07,2.694,2.07a.662.662,0,0,1,.226.889.616.616,0,0,1-.974.147l-2.993-2.3-1.056.81a.613.613,0,0,1-.749,0l-1.056-.81-2.993,2.3a.619.619,0,0,1-.851-.213l-.012-.02a.664.664,0,0,1,.114-.8l2.694-2.07-2.694-2.07a.66.66,0,0,1-.23-.89Z" transform="translate(1318.9 586.7)" fill="#aaa"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18">
|
|
2
|
+
<g id="Group_70911" data-name="Group 70911" transform="translate(-1319 -617.334)">
|
|
3
|
+
<rect id="Rectangle_57058" data-name="Rectangle 57058" width="18" height="18" transform="translate(1319 617.334)" fill="none"/>
|
|
4
|
+
<path id="Path_35729" data-name="Path 35729" d="M17.2,32.85A14.68,14.68,0,0,1,2.525,47.534H2.519a.759.759,0,0,1-.739-.589l-.409-1.769-.231-1-.122-.521a.769.769,0,0,1,.445-.875L5,41.261a.755.755,0,0,1,.886.218l.4.488.668.815.5.618a11.735,11.735,0,0,0,5.608-5.605l-.614-.5-.814-.669-.488-.4a.754.754,0,0,1-.218-.887l1.516-3.546a.762.762,0,0,1,.869-.436l.525.118,1,.23,1.764.408a.76.76,0,0,1,.588.74" transform="translate(1318.9 586.9)" fill="#aaa"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="14" height="14" rx="7" fill="#6692F1"/>
|
|
3
|
+
<g clip-path="url(#clip0_23743_6421)">
|
|
4
|
+
<path d="M10.7922 6.66148L5.02073 3.75177C4.94597 3.71386 4.86073 3.7019 4.77843 3.71776C4.69613 3.73363 4.62144 3.77641 4.56613 3.83938C4.51082 3.90235 4.47802 3.98194 4.4729 4.0656C4.46779 4.14925 4.49064 4.23224 4.53787 4.30148L6.08073 6.57348C6.16587 6.69881 6.2114 6.84682 6.2114 6.99834C6.2114 7.14985 6.16587 7.29787 6.08073 7.4232L4.53787 9.69748C4.49064 9.76672 4.46779 9.84971 4.4729 9.93337C4.47802 10.017 4.51082 10.0966 4.56613 10.1596C4.62144 10.2226 4.69613 10.2653 4.77843 10.2812C4.86073 10.2971 4.94597 10.2851 5.02073 10.2472L10.7922 7.33634C10.8547 7.3048 10.9072 7.25652 10.9439 7.1969C10.9806 7.13727 11 7.06864 11 6.99862C11 6.92861 10.9806 6.85997 10.9439 6.80035C10.9072 6.74073 10.8547 6.69245 10.7922 6.66091" fill="white"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_23743_6421">
|
|
8
|
+
<rect width="8" height="8" fill="white" transform="translate(11 3) rotate(90)"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.514648" y="9" width="12" height="12" rx="1" transform="rotate(-45 0.514648 9)" fill="#6692F1"/>
|
|
3
|
+
<g clip-path="url(#clip0_23743_3954)">
|
|
4
|
+
<path d="M8.6605 5.20785L5.75079 10.9793C5.71289 11.054 5.70093 11.1393 5.71679 11.2216C5.73265 11.3039 5.77543 11.3786 5.83841 11.4339C5.90138 11.4892 5.98096 11.522 6.06462 11.5271C6.14828 11.5322 6.23126 11.5094 6.30051 11.4621L8.5725 9.91927C8.69783 9.83413 8.84585 9.7886 8.99736 9.7886C9.14888 9.7886 9.29689 9.83413 9.42222 9.91927L11.6965 11.4621C11.7657 11.5094 11.8487 11.5322 11.9324 11.5271C12.016 11.522 12.0956 11.4892 12.1586 11.4339C12.2216 11.3786 12.2644 11.3039 12.2802 11.2216C12.2961 11.1393 12.2841 11.054 12.2462 10.9793L9.33536 5.20785C9.30382 5.14534 9.25555 5.09282 9.19592 5.05613C9.1363 5.01943 9.06766 5 8.99765 5C8.92764 5 8.859 5.01943 8.79937 5.05613C8.73975 5.09282 8.69148 5.14534 8.65993 5.20785" fill="white"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_23743_3954">
|
|
8
|
+
<rect width="8" height="8" fill="white" transform="translate(4.99902 5)"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="14" height="14" rx="7" fill="#6692F1"/>
|
|
3
|
+
<g clip-path="url(#clip0_23743_9925)">
|
|
4
|
+
<path d="M9.44231 4.07951L3.30382 6.10305C3.22415 6.12911 3.15542 6.18092 3.10844 6.25033C3.06146 6.31974 3.03891 6.40281 3.04432 6.48645C3.04974 6.57009 3.08282 6.64955 3.13836 6.71233C3.19389 6.7751 3.26873 6.81762 3.35109 6.83319L6.0486 7.34877C6.19743 7.37718 6.33429 7.44965 6.44142 7.55679C6.54856 7.66392 6.62103 7.80078 6.64944 7.94961L7.16664 10.6487C7.18221 10.7311 7.22472 10.8059 7.2875 10.8615C7.35027 10.917 7.42974 10.9501 7.51338 10.9555C7.59702 10.9609 7.68008 10.9384 7.74949 10.8914C7.8189 10.8444 7.87072 10.7757 7.89678 10.696L9.91951 4.55671C9.9414 4.49021 9.9444 4.41893 9.92819 4.35083C9.91198 4.28272 9.87718 4.22044 9.82768 4.17094C9.77817 4.12143 9.7159 4.08664 9.64779 4.07042C9.57968 4.05421 9.50841 4.05722 9.44191 4.07911" fill="white"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_23743_9925">
|
|
8
|
+
<rect width="8" height="8" fill="white" transform="translate(7 1.34326) rotate(45)"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="14" height="14" rx="7" fill="#6692F1"/>
|
|
3
|
+
<g clip-path="url(#clip0_23743_8472)">
|
|
4
|
+
<path d="M6.66148 3.20785L3.75177 8.97927C3.71386 9.05403 3.7019 9.13927 3.71776 9.22157C3.73363 9.30387 3.77641 9.37856 3.83938 9.43387C3.90236 9.48918 3.98194 9.52198 4.0656 9.5271C4.14925 9.53221 4.23224 9.50936 4.30148 9.46213L6.57348 7.91927C6.69881 7.83413 6.84683 7.7886 6.99834 7.7886C7.14985 7.7886 7.29787 7.83413 7.4232 7.91927L9.69748 9.46213C9.76672 9.50936 9.84971 9.53221 9.93337 9.5271C10.017 9.52198 10.0966 9.48918 10.1596 9.43387C10.2226 9.37856 10.2653 9.30387 10.2812 9.22157C10.2971 9.13927 10.2851 9.05403 10.2472 8.97927L7.33634 3.20785C7.3048 3.14534 7.25652 3.09282 7.1969 3.05613C7.13727 3.01943 7.06864 3 6.99862 3C6.92861 3 6.85997 3.01943 6.80035 3.05613C6.74073 3.09282 6.69245 3.14534 6.66091 3.20785" fill="white"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_23743_8472">
|
|
8
|
+
<rect width="8" height="8" fill="white" transform="translate(3 3)"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.7394 5.2615C9.43976 5.96106 9.83401 6.90982 9.83568 7.89966C9.83735 8.8895 9.44629 9.83959 8.74829 10.5415L8.7394 10.5504L7.08596 12.2044C6.38444 12.9059 5.43298 13.3 4.44089 13.3C3.44879 13.3 2.49733 12.9059 1.79582 12.2044C1.0943 11.503 0.700195 10.5516 0.700195 9.55961C0.700195 8.56761 1.0943 7.61624 1.79582 6.91479L2.70888 6.00181C2.76287 5.94781 2.8314 5.91069 2.90612 5.89496C2.98085 5.87924 3.05853 5.88558 3.12971 5.91323C3.20088 5.94089 3.26247 5.98864 3.30698 6.05069C3.35148 6.11273 3.37697 6.18638 3.38034 6.26266C3.39619 6.70451 3.47658 7.14167 3.61898 7.56025C3.64333 7.63033 3.64749 7.70584 3.63097 7.77817C3.61446 7.8505 3.57795 7.91673 3.5256 7.96931L3.20321 8.29167C3.02879 8.453 2.88861 8.64776 2.79099 8.86436C2.69337 9.08096 2.64031 9.31498 2.63497 9.5525C2.62963 9.79002 2.67211 10.0262 2.75989 10.247C2.84768 10.4677 2.97897 10.6686 3.14596 10.8376C3.31294 11.0066 3.51222 11.1403 3.73193 11.2308C3.95164 11.3212 4.1873 11.3666 4.42489 11.3641C4.66248 11.3616 4.89715 11.3114 5.11494 11.2165C5.33273 11.1215 5.52919 10.9837 5.69264 10.8112L7.34609 9.15796C7.51068 8.99348 7.64125 8.79819 7.73033 8.58323C7.81942 8.36828 7.86527 8.13788 7.86527 7.90521C7.86527 7.67253 7.81942 7.44213 7.73033 7.22718C7.64125 7.01223 7.51068 6.81693 7.34609 6.65245C7.26785 6.57458 7.18277 6.5039 7.09188 6.44125C7.04108 6.40646 6.99914 6.36025 6.96941 6.30633C6.93968 6.25241 6.92299 6.19228 6.92068 6.13075C6.91526 5.99523 6.93801 5.86005 6.98751 5.73377C7.037 5.60749 7.11216 5.49286 7.20824 5.39711L7.72703 4.87837C7.79296 4.81294 7.87986 4.77284 7.97243 4.76511C8.06501 4.75739 8.15734 4.78253 8.23321 4.83613C8.41353 4.96211 8.58241 5.10371 8.73792 5.25927L8.7394 5.2615ZM12.2071 1.79336C11.5051 1.09317 10.554 0.699951 9.56242 0.699951C8.57085 0.699951 7.61975 1.09317 6.91772 1.79336L5.26427 3.4474L5.25538 3.45629C4.87042 3.84348 4.57488 4.31024 4.38952 4.82379C4.20416 5.33734 4.13348 5.88524 4.18242 6.42901C4.23136 6.97279 4.39875 7.49926 4.67284 7.97147C4.94693 8.44367 5.32106 8.85016 5.76898 9.1624C5.84485 9.216 5.93719 9.24115 6.02976 9.23342C6.12234 9.2257 6.20923 9.1856 6.27517 9.12016L6.79395 8.60143C6.89003 8.50568 6.96519 8.39104 7.01469 8.26476C7.06418 8.13848 7.08694 8.00331 7.08151 7.86778C7.0792 7.80626 7.06252 7.74612 7.03279 7.6922C7.00306 7.63828 6.96111 7.59208 6.91031 7.55728C6.81942 7.49464 6.73434 7.42395 6.6561 7.34608C6.49151 7.1816 6.36094 6.98631 6.27186 6.77136C6.18278 6.5564 6.13693 6.32601 6.13693 6.09333C6.13693 5.86065 6.18278 5.63026 6.27186 5.4153C6.36094 5.20035 6.49151 5.00506 6.6561 4.84058L8.30955 3.18729C8.473 3.01486 8.66947 2.87706 8.88726 2.78208C9.10505 2.6871 9.33972 2.63689 9.57731 2.63443C9.8149 2.63198 10.0506 2.67732 10.2703 2.76777C10.49 2.85821 10.6892 2.99192 10.8562 3.16093C11.0232 3.32994 11.1545 3.5308 11.2423 3.75157C11.3301 3.97234 11.3726 4.20851 11.3672 4.44603C11.3619 4.68355 11.3088 4.91757 11.2112 5.13417C11.1136 5.35078 10.9734 5.54554 10.799 5.70687L10.4766 6.02923C10.4242 6.0818 10.3877 6.14804 10.3712 6.22037C10.3547 6.2927 10.3589 6.36821 10.3832 6.43829C10.5256 6.85687 10.606 7.29403 10.6219 7.73588C10.6252 7.81215 10.6507 7.8858 10.6952 7.94785C10.7397 8.00989 10.8013 8.05765 10.8725 8.0853C10.9437 8.11295 11.0213 8.1193 11.0961 8.10357C11.1708 8.08785 11.2393 8.05072 11.2933 7.99673L12.2064 7.08375C12.9068 6.38188 13.3002 5.43084 13.3002 4.4393C13.3002 3.44776 12.9068 2.49672 12.2064 1.79485L12.2071 1.79336Z" fill="#6692F1"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6.76315 8.12873C6.69166 8.12873 6.62109 8.11508 6.55504 8.08772C6.48898 8.06036 6.42938 8.01978 6.37882 7.96923C6.32827 7.91867 6.28769 7.85907 6.26033 7.79301C6.23297 7.72696 6.21932 7.65487 6.21932 7.58338V6.60356C6.21932 6.53206 6.23297 6.4615 6.26033 6.39544C6.28769 6.32939 6.32827 6.26978 6.37882 6.21923C6.42938 6.16867 6.48898 6.1281 6.55504 6.10074C6.62109 6.07338 6.69166 6.05972 6.76315 6.05972H7.22952C7.37391 6.05972 7.51327 6.11712 7.61537 6.21923C7.71747 6.32133 7.77487 6.45916 7.77487 6.60356V7.58338C7.77487 7.72777 7.71747 7.86712 7.61537 7.96923C7.51327 8.07133 7.37391 8.12873 7.22952 8.12873H6.76315ZM3.88598 7.62287L3.45152 7.46792C3.38411 7.44345 3.32209 7.4055 3.26923 7.35703C3.21637 7.30856 3.17336 7.25042 3.14315 7.18537C3.11294 7.12033 3.09595 7.04891 3.09302 6.97726C3.09008 6.9056 3.10164 6.83492 3.12644 6.76762L3.46064 5.84553C3.4848 5.77784 3.52168 5.71491 3.57001 5.66172C3.61835 5.60852 3.67659 5.56615 3.74167 5.53563C3.80675 5.50512 3.87798 5.48712 3.94979 5.48398C4.02159 5.48084 4.09345 5.49269 4.16094 5.5174L4.59996 5.67843C4.66724 5.70305 4.72956 5.73927 4.78225 5.7878C4.83495 5.83634 4.87828 5.89595 4.90834 5.96098C4.9384 6.02601 4.95412 6.09599 4.95695 6.16758C4.95978 6.23916 4.94836 6.31001 4.92353 6.37721L4.58933 7.30082C4.55021 7.4059 4.48082 7.49652 4.38881 7.56059C4.2968 7.62466 4.18647 7.65909 4.07435 7.65933C4.00867 7.65919 3.94427 7.64639 3.88295 7.62287H3.88598ZM9.41702 7.29323L9.08282 6.37569C9.05798 6.3085 9.04657 6.23612 9.0494 6.16454C9.05222 6.09296 9.06795 6.02297 9.09801 5.95794C9.12807 5.89291 9.1714 5.83482 9.22409 5.78628C9.27679 5.73775 9.33911 5.70001 9.40638 5.67539L9.84236 5.52044C9.90956 5.49561 9.98042 5.48419 10.052 5.48702C10.1236 5.48985 10.1936 5.50558 10.2586 5.53563C10.3236 5.56569 10.3832 5.60903 10.4318 5.66172C10.4803 5.71441 10.518 5.77673 10.5427 5.84401L10.8769 6.7661C10.9017 6.8334 10.9132 6.90408 10.9103 6.97574C10.9074 7.0474 10.8889 7.11881 10.8586 7.18385C10.8284 7.2489 10.7869 7.30704 10.7341 7.35551C10.6812 7.40398 10.6192 7.44194 10.5518 7.46641L10.1128 7.62135C10.0455 7.64615 9.97327 7.65771 9.90161 7.65477C9.82995 7.65184 9.76006 7.63485 9.69501 7.60464C9.62997 7.57443 9.57182 7.53142 9.52335 7.47856C9.47488 7.4257 9.43693 7.36368 9.41246 7.29627L9.41702 7.29323ZM0.91615 6.00352L0.5622 5.70273C0.50685 5.65753 0.460422 5.60184 0.427 5.53867C0.393579 5.47551 0.372471 5.4063 0.366236 5.33511C0.360002 5.26392 0.368608 5.19197 0.390542 5.12396C0.412475 5.05594 0.448709 4.99276 0.49536 4.93863L1.11667 4.18364C1.21048 4.07407 1.34363 4.00626 1.48733 3.99375C1.63103 3.98124 1.77401 4.02508 1.88533 4.1168L2.24384 4.41758C2.35346 4.51034 2.42272 4.64215 2.43525 4.7852C2.44777 4.92825 2.40251 5.07128 2.31068 5.18168L1.68026 5.93668C1.58656 6.04642 1.45335 6.11557 1.3096 6.12808C1.16584 6.14059 1.02284 6.09542 0.911592 6.00352H0.91615ZM12.3139 5.92604L11.6835 5.17561C11.5917 5.06521 11.5479 4.92217 11.5605 4.77912C11.573 4.63607 11.6407 4.50426 11.7504 4.4115L12.1089 4.11072C12.22 4.01862 12.363 3.97364 12.5069 3.98615C12.6507 3.99867 12.7839 4.06764 12.8775 4.17756L13.5004 4.92799C13.5465 4.98279 13.5805 5.04653 13.6021 5.11484C13.6238 5.18316 13.6327 5.25461 13.6264 5.326C13.6202 5.39739 13.5988 5.46753 13.5657 5.53108C13.5326 5.59463 13.4885 5.65067 13.4335 5.69666L13.0796 5.99288C12.9817 6.07632 12.8572 6.12212 12.7286 6.122C12.6493 6.12187 12.5711 6.10394 12.4993 6.07036C12.4274 6.03677 12.3634 5.98833 12.3124 5.92756L12.3139 5.92604ZM4.03486 4.44796C2.96286 3.91476 2.04888 3.11034 1.38403 2.11463C1.34082 2.05084 1.31098 1.97932 1.29744 1.90347C1.28391 1.82762 1.28656 1.74889 1.30504 1.67409C1.32352 1.59929 1.358 1.52983 1.4053 1.46901C1.4526 1.40819 1.51205 1.35798 1.58 1.32166L2.33347 0.916059C2.44875 0.850928 2.58399 0.831129 2.71324 0.859852C2.8425 0.888576 2.95692 0.96318 3.03377 1.07101C3.47095 1.72287 4.06097 2.25848 4.75339 2.62808C5.44581 2.99769 6.21828 3.19121 7.00317 3.19167C7.78806 3.19213 8.56162 2.99839 9.25447 2.6296C9.94733 2.26081 10.5392 1.72844 10.9771 1.07708C11.0513 0.968182 11.1633 0.889948 11.2916 0.859852C11.4199 0.829757 11.5549 0.849998 11.6698 0.91454L12.4279 1.31862C12.4955 1.35527 12.5557 1.40649 12.6026 1.46749C12.6495 1.52849 12.6817 1.59777 12.6998 1.67257C12.7178 1.74737 12.7198 1.82628 12.7059 1.90195C12.6919 1.97762 12.6628 2.04965 12.6193 2.11311C11.7174 3.47919 10.3494 4.46963 8.76988 4.89913C7.19031 5.32863 5.50732 5.16775 4.03789 4.44644L4.03486 4.44796Z" fill="#919191"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="14" height="10" viewBox="0 0 14 10" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.0845816 4.654C0.719258 3.39269 1.70364 2.33021 2.92601 1.58714C4.14837 0.844081 5.55977 0.450195 7 0.450195C8.44023 0.450195 9.85163 0.844081 11.074 1.58714C12.2964 2.33021 13.2807 3.39269 13.9154 4.654C13.971 4.76134 14 4.87993 14 5.0002C14 5.12047 13.971 5.23905 13.9154 5.34639C13.2807 6.6077 12.2964 7.67018 11.074 8.41325C9.85163 9.15631 8.44023 9.5502 7 9.5502C5.55977 9.5502 4.14837 9.15631 2.92601 8.41325C1.70364 7.67018 0.719258 6.6077 0.0845816 5.34639C0.0289719 5.23905 0 5.12047 0 5.0002C0 4.87993 0.0289719 4.76134 0.0845816 4.654ZM7 8.41616C7.69242 8.41616 8.36929 8.21584 8.94501 7.84054C9.52074 7.46524 9.96946 6.9318 10.2344 6.30769C10.4994 5.68359 10.5687 4.99683 10.4337 4.33428C10.2986 3.67173 9.96515 3.06315 9.47553 2.58547C8.98592 2.1078 8.36211 1.7825 7.683 1.65071C7.00388 1.51892 6.29996 1.58656 5.66025 1.84508C5.02054 2.10359 4.47377 2.54137 4.08908 3.10305C3.7044 3.66474 3.49907 4.32508 3.49907 5.00061C3.49907 5.44915 3.58962 5.8933 3.76556 6.30769C3.9415 6.72209 4.19938 7.0986 4.52447 7.41577C4.84956 7.73293 5.2355 7.98452 5.66025 8.15616C6.085 8.32781 6.54025 8.41616 7 8.41616ZM7 2.72359C7.20838 2.72652 7.41541 2.75689 7.61547 2.81384C7.4504 3.03248 7.37114 3.30162 7.39207 3.5724C7.413 3.84319 7.53274 4.09768 7.72956 4.2897C7.92638 4.48172 8.18724 4.59853 8.46479 4.61895C8.74235 4.63937 9.01821 4.56205 9.24232 4.401C9.36979 4.85966 9.34664 5.34578 9.17611 5.79093C9.00559 6.23607 8.69628 6.61785 8.29172 6.88253C7.88716 7.1472 7.40771 7.28145 6.92086 7.26638C6.434 7.25131 5.96424 7.08767 5.5777 6.79851C5.19115 6.50934 4.90727 6.10921 4.76601 5.65441C4.62476 5.1996 4.63323 4.71304 4.79025 4.26319C4.94727 3.81334 5.24492 3.42283 5.64131 3.14665C6.03771 2.87047 6.5129 2.72251 7 2.72359Z" fill="#919191"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.4867 6.93552L11.2198 8.19953L10.1005 7.08017L11.369 5.81475C11.7495 5.38312 11.9512 4.82269 11.933 4.24758C11.9148 3.67246 11.6781 3.1259 11.2711 2.71918C10.8641 2.31246 10.3174 2.07616 9.74223 2.05839C9.16711 2.04061 8.60683 2.24271 8.17548 2.62353L6.90868 3.88837L5.79238 2.77207L7.05937 1.50508C7.41457 1.14391 7.83777 0.856637 8.30456 0.659835C8.77134 0.463034 9.27247 0.360597 9.77904 0.358433C10.2856 0.35627 10.7876 0.454423 11.256 0.64723C11.7245 0.840037 12.1501 1.12368 12.5084 1.48181C12.8667 1.83993 13.1505 2.26545 13.3435 2.73381C13.5365 3.20218 13.6349 3.70412 13.633 4.21069C13.631 4.71726 13.5288 5.21844 13.3322 5.6853C13.1356 6.15217 12.8485 6.5755 12.4875 6.93086L12.4867 6.93552Z" fill="#CCCCCC"/>
|
|
3
|
+
<path d="M5.097 8.11966L7.96084 10.9835C7.78021 11.0271 7.59448 11.0485 7.40781 11.0469C6.7722 11.0462 6.16255 10.7947 5.71148 10.3469C5.27633 9.91185 5.03061 9.32258 5.02781 8.7073C5.02529 8.5088 5.04867 8.31128 5.097 8.11966Z" fill="#CCCCCC"/>
|
|
4
|
+
<path d="M2.77089 5.79355L3.88487 6.90752L2.62681 8.16364C2.21546 8.57591 1.97885 9.13089 1.96621 9.71314C1.95357 10.2954 2.16586 10.8601 2.55894 11.2899C2.95201 11.7196 3.49562 11.9813 4.07669 12.0205C4.65776 12.0597 5.23158 11.8734 5.67881 11.5003L5.85848 11.3541L6.06692 11.4606C6.32106 11.5822 6.59878 11.6464 6.88047 11.6489H6.9077L7.0547 11.6426C7.1146 11.6392 7.17411 11.6542 7.22521 11.6857C7.2763 11.7171 7.31652 11.7635 7.34043 11.8185C7.36434 11.8736 7.3708 11.9346 7.35892 11.9934C7.34705 12.0522 7.31742 12.106 7.27403 12.1474L6.94114 12.4811C6.58458 12.8374 6.16131 13.1201 5.69551 13.3129C5.22971 13.5057 4.73049 13.6048 4.22637 13.6047C3.72226 13.6045 3.2231 13.5051 2.75741 13.312C2.29172 13.119 1.86862 12.8361 1.51225 12.4795C1.15589 12.123 0.873248 11.6997 0.680463 11.2339C0.487679 10.7681 0.388528 10.2689 0.388672 9.76476C0.388816 9.26064 0.488255 8.76148 0.681306 8.29579C0.874357 7.8301 1.15724 7.407 1.51381 7.05064L2.77089 5.79355Z" fill="#CCCCCC"/>
|
|
5
|
+
<path d="M9.00938 5.98906L7.89478 4.87447L8.40492 4.36653C8.55488 4.22587 8.75385 4.14933 8.95942 4.15323C9.16499 4.15713 9.36091 4.24115 9.50543 4.3874C9.64995 4.53364 9.73165 4.73055 9.73311 4.93615C9.73457 5.14175 9.65568 5.3398 9.51325 5.48808L9.00938 5.98906Z" fill="#CCCCCC"/>
|
|
6
|
+
<path d="M1.19944 2.32986C1.06276 2.46654 1.06276 2.68815 1.19944 2.82483L10.9089 12.5343C11.0456 12.671 11.2672 12.671 11.4039 12.5343L12.5332 11.4051C12.6698 11.2684 12.6698 11.0468 12.5332 10.9101L2.82366 1.20061C2.68698 1.06393 2.46537 1.06393 2.32868 1.20061L1.19944 2.32986Z" fill="#CCCCCC"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_23743_2443)">
|
|
3
|
+
<rect x="0.22168" y="8" width="11" height="11" rx="1" transform="rotate(-45 0.22168 8)" fill="#FAB15C"/>
|
|
4
|
+
<rect x="3.76074" y="8" width="6" height="6" rx="1" transform="rotate(-45 3.76074 8)" fill="white"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_23743_2443">
|
|
8
|
+
<rect x="0.22168" y="8" width="11" height="11" rx="1" transform="rotate(-45 0.22168 8)" fill="white"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="14" height="10" viewBox="0 0 14 10" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13.2934 4.16389V7.765C13.3104 7.99716 13.2921 8.23057 13.2389 8.45722C13.1765 8.67215 13.0612 8.86802 12.9036 9.02697C12.746 9.18592 12.5511 9.30289 12.3367 9.36722C12.058 9.42426 11.7727 9.44258 11.4889 9.42166C11.3714 9.42166 11.2586 9.37496 11.1755 9.29181C11.0923 9.20867 11.0456 9.09591 11.0456 8.97833V7.64444H9.70006V8.24722C9.69908 8.30714 9.69388 8.36692 9.68451 8.42611C9.65353 8.6451 9.54266 8.84489 9.37323 8.98705C9.20379 9.1292 8.98777 9.20366 8.76673 9.19611H5.63228C5.39453 9.1973 5.16152 9.12963 4.96139 9.00127C4.76126 8.87292 4.60258 8.68936 4.50451 8.47277H3.78895C3.57176 8.4597 3.36675 8.36804 3.21218 8.2149C3.05761 8.06176 2.96404 7.85761 2.94895 7.64055V6.76944H2.04673C2.04673 7.21277 2.05451 7.64833 2.04673 8.09944C2.04693 8.18032 2.02444 8.25964 1.98182 8.32839C1.9392 8.39713 1.87815 8.45254 1.80562 8.48833C1.66899 8.53865 1.5221 8.55467 1.37784 8.535C1.23926 8.55341 1.09831 8.54011 0.965616 8.49611C0.889271 8.46077 0.824173 8.40503 0.777509 8.33503C0.730844 8.26503 0.704426 8.1835 0.701172 8.09944V4.10944C0.703733 3.99662 0.748132 3.88877 0.825746 3.80684C0.90336 3.72492 1.00865 3.67476 1.12117 3.66611C1.29228 3.65833 1.46339 3.65833 1.63451 3.66611C1.74703 3.67476 1.85232 3.72492 1.92993 3.80684C2.00755 3.88877 2.05194 3.99662 2.05451 4.10944V5.43944H2.94895C2.94895 4.825 2.94117 4.21833 2.94895 3.61166C2.96533 3.39506 3.0593 3.19164 3.21361 3.03876C3.36792 2.88588 3.57221 2.7938 3.78895 2.77944C4.41117 2.77166 5.03339 2.77944 5.64784 2.77944V1.90055H3.84339C3.72462 1.89778 3.61148 1.84937 3.52747 1.76536C3.44347 1.68135 3.39505 1.56821 3.39228 1.44944V1.42611C3.38858 1.24949 3.39637 1.07282 3.41562 0.897218H3.40784C3.43769 0.798305 3.49995 0.712308 3.58459 0.653058C3.66924 0.593808 3.77135 0.564748 3.87451 0.570552H8.78928C8.87388 0.571583 8.95651 0.596138 9.02794 0.641469C9.09937 0.686799 9.15678 0.751116 9.19373 0.827218C9.23247 0.931516 9.24838 1.04291 9.24039 1.15388C9.24039 1.27055 9.24039 1.38722 9.23262 1.51166C9.21894 1.61943 9.16631 1.71848 9.08464 1.79012C9.00297 1.86175 8.89792 1.90104 8.78928 1.90055H7.00039V2.77944H8.76595C9.00365 2.77224 9.23466 2.85869 9.40924 3.02017C9.58381 3.18165 9.68797 3.40524 9.69928 3.64277V4.55277H11.0448V3.22277C11.0452 3.13401 11.0721 3.04739 11.122 2.97396C11.1718 2.90054 11.2425 2.84364 11.3248 2.81055C11.4238 2.78491 11.5261 2.77442 11.6282 2.77944C11.8364 2.76888 12.0451 2.78192 12.2504 2.81833C12.4477 2.86272 12.6325 2.95073 12.7913 3.0759C12.9501 3.20107 13.0789 3.36022 13.1682 3.54166C13.2562 3.73697 13.2996 3.94973 13.2934 4.16389Z" fill="#919191"/>
|
|
3
|
+
</svg>
|