@devtron-labs/devtron-fe-common-lib 1.20.1-pre-4 → 1.20.1-pre-6
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/dist/{@code-editor-BIS90nLL.js → @code-editor-Ci1MfInx.js} +3428 -3392
- package/dist/{@common-rjsf-D6MpAfuH.js → @common-rjsf-D6ELt-TZ.js} +1 -1
- package/dist/Common/Common.service.d.ts +3 -1
- package/dist/Common/Types.d.ts +12 -1
- package/dist/Shared/Components/Charts/index.d.ts +1 -0
- package/dist/Shared/Components/Charts/types.d.ts +2 -2
- package/dist/Shared/Components/Charts/utils.d.ts +1 -0
- package/dist/Shared/Components/Icon/Icon.d.ts +5 -0
- package/dist/Shared/Components/TrailingItem/types.d.ts +4 -0
- package/dist/Shared/Hooks/useGetResourceKindsOptions/service.d.ts +0 -3
- package/dist/Shared/Hooks/useGetResourceKindsOptions/types.d.ts +4 -14
- package/dist/assets/ic-alibaba.518d61a4.svg +3 -0
- package/dist/assets/ic-aws.b094356f.svg +11 -0
- package/dist/assets/ic-google-cloud.a0198038.svg +6 -0
- package/dist/assets/ic-oracle-cloud.5a8ee45d.svg +3 -0
- package/dist/assets/ic-otc-cloud.43b31bd8.svg +5 -0
- package/dist/index.js +486 -483
- package/package.json +1 -1
@@ -1,7 +1,7 @@
|
|
1
1
|
import { j as n, aI as v, aK as W, aJ as K } from "./@vendor-DMIFbFhR.js";
|
2
2
|
import V, { useState as q, useEffect as Y, forwardRef as G, useMemo as E } from "react";
|
3
3
|
import z, { getDefaultRegistry as Q } from "@rjsf/core";
|
4
|
-
import { T as O, j as F, c as S, b as N, S as X, i as Z, g as ee, a as te, d as I, e as ne } from "./@code-editor-
|
4
|
+
import { T as O, j as F, c as S, b as N, S as X, i as Z, g as ee, a as te, d as I, e as ne } from "./@code-editor-Ci1MfInx.js";
|
5
5
|
import { getUiOptions as B, getTemplate as $, getSubmitButtonOptions as re, ADDITIONAL_PROPERTY_FLAG as L, errorId as se, englishStringTranslator as ae, TranslatableString as oe, titleId as le, canExpand as ie, deepEquals as ce } from "@rjsf/utils";
|
6
6
|
import { ReactComponent as de } from "./assets/ic-add.cfaa779b.svg";
|
7
7
|
import { ReactComponent as ue } from "./assets/ic-warning.ecf7ff97.svg";
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { MutableRefObject } from 'react';
|
2
2
|
import { RuntimeParamsAPIResponseType, RuntimePluginVariables } from '../Shared/types';
|
3
|
-
import { TeamList, ResponseType, DeploymentNodeType, CDMaterialServiceEnum, CDMaterialServiceQueryParams, CDMaterialResponseType, CDMaterialFilterQuery, EnvironmentListHelmResponse, UserApprovalMetadataType, GlobalVariableOptionType, UserRole, APIOptions, EnvAppsMetaDTO, GetAppsInfoForEnvProps } from './Types';
|
3
|
+
import { TeamList, ResponseType, DeploymentNodeType, CDMaterialServiceEnum, CDMaterialServiceQueryParams, CDMaterialResponseType, CDMaterialFilterQuery, EnvironmentListHelmResponse, UserApprovalMetadataType, GlobalVariableOptionType, UserRole, APIOptions, EnvAppsMetaDTO, GetAppsInfoForEnvProps, EnvironmentsGroupedByClustersType, AppsGroupedByProjectsType } from './Types';
|
4
4
|
import { ApiResourceType } from '../Pages';
|
5
5
|
export declare const getTeamListMin: () => Promise<TeamList>;
|
6
6
|
export declare const SourceTypeMap: {
|
@@ -36,3 +36,5 @@ export declare const getGlobalVariables: ({ appId, isCD, abortControllerRef, }:
|
|
36
36
|
abortControllerRef?: MutableRefObject<AbortController>;
|
37
37
|
}) => Promise<GlobalVariableOptionType[]>;
|
38
38
|
export declare const getAppsInfoForEnv: ({ envId, appIds }: GetAppsInfoForEnvProps) => Promise<EnvAppsMetaDTO>;
|
39
|
+
export declare const getAppOptionsGroupedByProjects: () => Promise<AppsGroupedByProjectsType>;
|
40
|
+
export declare const getEnvironmentOptionsGroupedByClusters: () => Promise<EnvironmentsGroupedByClustersType>;
|
package/dist/Common/Types.d.ts
CHANGED
@@ -2,7 +2,7 @@ import { default as React, ReactNode, CSSProperties, ReactElement, MutableRefObj
|
|
2
2
|
import { TippyProps } from '@tippyjs/react';
|
3
3
|
import { UserGroupDTO } from '../Pages/GlobalConfigurations';
|
4
4
|
import { ImageComment, ReleaseTag } from './ImageTags.Types';
|
5
|
-
import { MandatoryPluginBaseStateType, RegistryType, RuntimePluginVariables, Severity, PolicyBlockInfo, TargetPlatformItemDTO, ComponentLayoutType, StatusType, DocLinkProps, DeploymentStrategyType } from '../Shared';
|
5
|
+
import { MandatoryPluginBaseStateType, RegistryType, RuntimePluginVariables, Severity, PolicyBlockInfo, TargetPlatformItemDTO, ComponentLayoutType, StatusType, DocLinkProps, DeploymentStrategyType, EnvironmentType } from '../Shared';
|
6
6
|
import { ACTION_STATE, DEPLOYMENT_WINDOW_TYPE, DockerConfigOverrideType, RefVariableType, SortingOrder, TaskErrorObj, VariableTypeFormat } from '.';
|
7
7
|
import { IllustrationName } from '../Shared/Components';
|
8
8
|
/**
|
@@ -932,4 +932,15 @@ export interface ClusterEnvironmentCategoryDTO {
|
|
932
932
|
}
|
933
933
|
export interface ClusterEnvironmentCategoryType extends ClusterEnvironmentCategoryDTO {
|
934
934
|
}
|
935
|
+
export type AppsGroupedByProjectsType = {
|
936
|
+
projectId: number;
|
937
|
+
projectName: string;
|
938
|
+
appList: {
|
939
|
+
name: string;
|
940
|
+
}[];
|
941
|
+
}[];
|
942
|
+
export type EnvironmentsGroupedByClustersType = {
|
943
|
+
clusterName: EnvironmentType['cluster'];
|
944
|
+
envList: EnvironmentType[];
|
945
|
+
}[];
|
935
946
|
export {};
|
@@ -2,8 +2,8 @@ import { ChartOptions } from 'chart.js';
|
|
2
2
|
import { AppThemeType } from '../../Providers';
|
3
3
|
import { Never } from '../../types';
|
4
4
|
export type ChartType = 'area' | 'pie' | 'stackedBar' | 'stackedBarHorizontal' | 'line';
|
5
|
-
type ColorTokensType = 'DeepPlum' | 'Magenta' | 'Slate' | 'Lavender' | 'SkyBlue' | 'AquaTeal' | 'LimeGreen' | 'CoralRed' | 'GoldenYellow' | 'CharcoalGray' | 'Gray';
|
6
|
-
type VariantsType = 50 | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | 950;
|
5
|
+
export type ColorTokensType = 'DeepPlum' | 'Magenta' | 'Slate' | 'Lavender' | 'SkyBlue' | 'AquaTeal' | 'LimeGreen' | 'CoralRed' | 'GoldenYellow' | 'CharcoalGray' | 'Gray';
|
6
|
+
export type VariantsType = 50 | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | 950;
|
7
7
|
export type ChartColorKey = `${ColorTokensType}${VariantsType}`;
|
8
8
|
export type ChartTypeWithoutPie = Exclude<ChartType, 'pie'>;
|
9
9
|
interface BaseSimpleDataset {
|
@@ -10,3 +10,4 @@ export declare const transformDataForChart: (props: TransformDataForChartProps)
|
|
10
10
|
pointBackgroundColor: string | import('chart.js/dist/types/utils')._DeepPartialObject<CanvasGradient> | import('chart.js/dist/types/utils')._DeepPartialObject<CanvasPattern> | readonly (string | import('chart.js/dist/types/utils')._DeepPartialObject<CanvasGradient> | import('chart.js/dist/types/utils')._DeepPartialObject<CanvasPattern>)[] | ((ctx: import('chart.js').ScriptableContext<"line">, options: import('chart.js/dist/types/basic').AnyObject) => import('chart.js').Color);
|
11
11
|
pointBorderColor: string | import('chart.js/dist/types/utils')._DeepPartialObject<CanvasGradient> | import('chart.js/dist/types/utils')._DeepPartialObject<CanvasPattern> | readonly (string | import('chart.js/dist/types/utils')._DeepPartialObject<CanvasGradient> | import('chart.js/dist/types/utils')._DeepPartialObject<CanvasPattern>)[] | ((ctx: import('chart.js').ScriptableContext<"line">, options: import('chart.js/dist/types/basic').AnyObject) => import('chart.js').Color);
|
12
12
|
})[];
|
13
|
+
export declare function chartColorGenerator(): Generator<"DeepPlum500" | "DeepPlum300" | "DeepPlum100" | "DeepPlum50" | "DeepPlum600" | "DeepPlum400" | "DeepPlum200" | "DeepPlum700" | "DeepPlum800" | "DeepPlum900" | "DeepPlum950" | "Magenta500" | "Magenta300" | "Magenta100" | "Magenta50" | "Magenta600" | "Magenta400" | "Magenta200" | "Magenta700" | "Magenta800" | "Magenta900" | "Magenta950" | "Slate500" | "Slate300" | "Slate100" | "Slate50" | "Slate600" | "Slate400" | "Slate200" | "Slate700" | "Slate800" | "Slate900" | "Slate950" | "Lavender500" | "Lavender300" | "Lavender100" | "Lavender50" | "Lavender600" | "Lavender400" | "Lavender200" | "Lavender700" | "Lavender800" | "Lavender900" | "Lavender950" | "SkyBlue500" | "SkyBlue300" | "SkyBlue100" | "SkyBlue50" | "SkyBlue600" | "SkyBlue400" | "SkyBlue200" | "SkyBlue700" | "SkyBlue800" | "SkyBlue900" | "SkyBlue950" | "AquaTeal500" | "AquaTeal300" | "AquaTeal100" | "AquaTeal50" | "AquaTeal600" | "AquaTeal400" | "AquaTeal200" | "AquaTeal700" | "AquaTeal800" | "AquaTeal900" | "AquaTeal950" | "LimeGreen500" | "LimeGreen300" | "LimeGreen100" | "LimeGreen50" | "LimeGreen600" | "LimeGreen400" | "LimeGreen200" | "LimeGreen700" | "LimeGreen800" | "LimeGreen900" | "LimeGreen950" | "CoralRed500" | "CoralRed300" | "CoralRed100" | "CoralRed50" | "CoralRed600" | "CoralRed400" | "CoralRed200" | "CoralRed700" | "CoralRed800" | "CoralRed900" | "CoralRed950" | "GoldenYellow500" | "GoldenYellow300" | "GoldenYellow100" | "GoldenYellow50" | "GoldenYellow600" | "GoldenYellow400" | "GoldenYellow200" | "GoldenYellow700" | "GoldenYellow800" | "GoldenYellow900" | "GoldenYellow950" | "CharcoalGray500" | "CharcoalGray300" | "CharcoalGray100" | "CharcoalGray50" | "CharcoalGray600" | "CharcoalGray400" | "CharcoalGray200" | "CharcoalGray700" | "CharcoalGray800" | "CharcoalGray900" | "CharcoalGray950" | "Gray500" | "Gray300" | "Gray100" | "Gray50" | "Gray600" | "Gray400" | "Gray200" | "Gray700" | "Gray800" | "Gray900" | "Gray950", void, unknown>;
|
@@ -4,6 +4,7 @@ export declare const iconMap: {
|
|
4
4
|
'ic-aborted': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
5
5
|
'ic-activity': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
6
6
|
'ic-add': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
7
|
+
'ic-alibaba': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
7
8
|
'ic-amazon-eks': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
8
9
|
'ic-app-group': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
9
10
|
'ic-app-template': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
@@ -16,6 +17,7 @@ export declare const iconMap: {
|
|
16
17
|
'ic-asterisk': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
17
18
|
'ic-ather': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
18
19
|
'ic-aws-codecommit': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
20
|
+
'ic-aws': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
19
21
|
'ic-azure-aks': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
20
22
|
'ic-azure': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
21
23
|
'ic-bg-build': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
@@ -124,6 +126,7 @@ export declare const iconMap: {
|
|
124
126
|
'ic-github': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
125
127
|
'ic-gitlab': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
126
128
|
'ic-google-artifact-registry': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
129
|
+
'ic-google-cloud': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
127
130
|
'ic-google-container-registry': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
128
131
|
'ic-google-gke': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
129
132
|
'ic-google': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
@@ -188,6 +191,8 @@ export declare const iconMap: {
|
|
188
191
|
'ic-open-in-new': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
189
192
|
'ic-openai': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
190
193
|
'ic-openshift': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
194
|
+
'ic-oracle-cloud': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
195
|
+
'ic-otc-cloud': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
191
196
|
'ic-out-of-sync': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
192
197
|
'ic-paper-plane-color': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
193
198
|
'ic-paper-plane': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import { ReactElement } from 'react';
|
2
2
|
import { OmitNever } from '../../types';
|
3
|
+
import { ActionMenuProps } from '../ActionMenu';
|
3
4
|
import { ButtonProps } from '../Button';
|
4
5
|
import { IconsProps } from '../Icon';
|
5
6
|
import { NumbersCountProps } from '../NumbersCount';
|
@@ -30,6 +31,9 @@ export type TrailingItemType = {
|
|
30
31
|
config: OmitNever<Omit<Extract<ButtonProps, {
|
31
32
|
icon: ReactElement;
|
32
33
|
}>, 'size' | 'variant'>>;
|
34
|
+
} | {
|
35
|
+
type: 'action-menu';
|
36
|
+
config: ActionMenuProps;
|
33
37
|
};
|
34
38
|
export type TrailingItemProps = TrailingItemType & {
|
35
39
|
/**
|
@@ -1,5 +1,2 @@
|
|
1
1
|
import { Teams } from '../../../Common/Types';
|
2
|
-
import { AppsGroupedByProjectsType, EnvironmentsGroupedByClustersType } from './types';
|
3
|
-
export declare const getAppOptionsGroupedByProjects: () => Promise<AppsGroupedByProjectsType>;
|
4
2
|
export declare const getProjectOptions: () => Promise<Pick<Teams, "id" | "name">[]>;
|
5
|
-
export declare const getEnvironmentOptionsGroupedByClusters: () => Promise<EnvironmentsGroupedByClustersType>;
|
@@ -1,19 +1,9 @@
|
|
1
|
+
import { getAppOptionsGroupedByProjects } from '../../../Common/Common.service';
|
1
2
|
import { ServerErrors } from '../../../Common/ServerError';
|
3
|
+
import { EnvironmentsGroupedByClustersType } from '../../../Common/Types';
|
2
4
|
import { getClusterOptions } from '../../index';
|
3
|
-
import {
|
4
|
-
import {
|
5
|
-
export interface AppType {
|
6
|
-
name: string;
|
7
|
-
}
|
8
|
-
export type AppsGroupedByProjectsType = {
|
9
|
-
projectId: number;
|
10
|
-
projectName: string;
|
11
|
-
appList: AppType[];
|
12
|
-
}[];
|
13
|
-
export type EnvironmentsGroupedByClustersType = {
|
14
|
-
clusterName: EnvironmentType['cluster'];
|
15
|
-
envList: EnvironmentType[];
|
16
|
-
}[];
|
5
|
+
import { ResourceKindType } from '../../types';
|
6
|
+
import { getProjectOptions } from './service';
|
17
7
|
export interface UseGetResourceKindsOptionsProps {
|
18
8
|
resourcesToFetch: Extract<ResourceKindType, ResourceKindType.devtronApplication | ResourceKindType.project | ResourceKindType.cluster | ResourceKindType.environment>[];
|
19
9
|
}
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
2
|
+
<path d="M13.3731 6.99902C15.5376 6.98146 17.6318 7.66777 17.4913 9.74414C17.4209 11.3456 15.1334 13.6162 13.919 15.2354C13.4086 15.9393 13.3027 16.4151 14.2003 16.3623C17.4033 16.1511 20.3074 15.0414 23.0001 13.8799C21.1698 15.1294 11.7367 19.8464 11.7012 16.626C11.7188 16.2212 11.9118 15.7808 12.211 15.3232C12.5102 14.8657 12.9332 14.3911 13.3555 13.8984C14.0067 13.1593 15.6078 11.3812 16.1358 10.3252C16.2238 10.114 16.2764 9.92011 16.3116 9.76172C16.3817 8.77647 15.168 8.40678 13.3204 7.89648L12.9678 8.10742L13.672 8.61816C10.6098 9.16373 8.74392 9.76178 6.50887 10.5361L6.80867 11.3457L5.6993 12.4551C6.12165 12.5959 6.57961 12.666 7.05476 12.666C8.16352 12.666 9.18467 12.2791 9.97664 11.6104C9.76545 11.3112 9.48347 11.1875 9.48347 11.1875C9.48347 11.1875 10.029 11.1703 10.3282 11.6631C10.3326 11.6695 10.5212 11.9492 10.4864 12.3145H10.1524C10.17 12.1737 10.1525 12.0324 10.1173 11.9092C9.25492 12.6307 8.14604 13.0703 6.93172 13.0703C6.29822 13.0703 5.69991 12.9475 5.1368 12.7363V14.1445C4.38008 14.4085 3.02466 15.253 3.04207 16.0625C3.09487 16.4497 3.28893 16.5907 3.46492 16.6963C5.16781 17.679 9.82909 16.3517 9.83601 16.3447C8.14648 17.2071 6.5265 17.8934 4.045 17.999C0.807049 17.9285 0.29712 15.7634 1.8282 13.4932C3.28895 11.1877 5.5768 9.12849 9.25496 7.82617C10.3109 7.4566 11.8597 7.01662 13.3731 6.99902ZM20.3253 16.4854C20.7477 16.4854 21.0821 16.8374 21.0645 17.2422C21.0643 17.6644 20.7299 17.999 20.3253 17.999C19.9207 17.999 19.5862 17.6643 19.586 17.2422C19.586 16.8198 19.9205 16.4854 20.3253 16.4854ZM20.3253 16.6084C19.9733 16.6085 19.6915 16.8902 19.6915 17.2422C19.6917 17.594 19.9735 17.8749 20.3253 17.875C20.6771 17.875 20.9589 17.594 20.9591 17.2422C20.9591 16.8902 20.6773 16.6084 20.3253 16.6084ZM20.3604 16.8545C20.4307 16.8545 20.4834 16.8545 20.5186 16.8721C20.5538 16.8897 20.5889 16.9072 20.6065 16.9424C20.6241 16.9776 20.6427 17.0126 20.6427 17.0654C20.6426 17.1182 20.6241 17.1709 20.5889 17.2061C20.5537 17.2411 20.501 17.2588 20.4307 17.2764C20.4658 17.2939 20.4835 17.2942 20.5011 17.3115C20.5362 17.3291 20.5712 17.3643 20.5538 17.417L20.6954 17.6289H20.5714L20.4659 17.4697C20.4482 17.4172 20.4131 17.3818 20.3956 17.3643L20.3428 17.3115C20.3253 17.3114 20.3077 17.2939 20.2901 17.2939H20.1143V17.6465H20.0089V16.8545H20.3604ZM20.1319 17.1885H20.3604C20.413 17.1885 20.4482 17.1711 20.4659 17.1709L20.5186 17.1182C20.5362 17.1006 20.5362 17.0655 20.5362 17.0479C20.5362 17.0127 20.5187 16.9776 20.5011 16.96C20.4834 16.9424 20.4307 16.9248 20.378 16.9248H20.1319V17.1885Z" fill="#FF6A00"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path
|
3
|
+
d="M7.25285 10.8057C7.25285 11.0735 7.2818 11.2906 7.33246 11.4498C7.39035 11.609 7.46272 11.7827 7.56403 11.9709C7.60022 12.0288 7.61469 12.0867 7.61469 12.1373C7.61469 12.2097 7.57127 12.2821 7.47719 12.3544L7.02127 12.6584C6.95614 12.7018 6.89101 12.7235 6.83311 12.7235C6.76075 12.7235 6.68838 12.6873 6.61601 12.6222C6.51469 12.5136 6.42785 12.3978 6.35548 12.2821C6.28311 12.159 6.21075 12.0215 6.13114 11.8551C5.56667 12.5209 4.85746 12.8538 4.00351 12.8538C3.39561 12.8538 2.91075 12.6801 2.55614 12.3327C2.20154 11.9853 2.02061 11.5222 2.02061 10.9432C2.02061 10.3281 2.23772 9.82876 2.67917 9.45245C3.12061 9.07613 3.7068 8.88797 4.45219 8.88797C4.69825 8.88797 4.95154 8.90968 5.2193 8.94587C5.48706 8.98205 5.76206 9.03995 6.05154 9.10508V8.57679C6.05154 8.02679 5.93575 7.64324 5.7114 7.41889C5.47982 7.19455 5.08904 7.086 4.5318 7.086C4.27851 7.086 4.01798 7.11495 3.75022 7.18008C3.48246 7.24521 3.22193 7.32482 2.96864 7.42613C2.85285 7.47679 2.76601 7.50574 2.71535 7.52021C2.66469 7.53468 2.62851 7.54192 2.59956 7.54192C2.49825 7.54192 2.44759 7.46955 2.44759 7.31758V6.96297C2.44759 6.84718 2.46206 6.76034 2.49825 6.70968C2.53443 6.65903 2.59956 6.60837 2.70088 6.55771C2.95417 6.42745 3.25811 6.31889 3.61272 6.23205C3.96732 6.13797 4.34364 6.09455 4.74167 6.09455C5.60285 6.09455 6.23246 6.28995 6.63772 6.68074C7.03575 7.07153 7.23838 7.66495 7.23838 8.461V10.8057H7.25285ZM4.31469 11.9057C4.55351 11.9057 4.79956 11.8623 5.06009 11.7755C5.32061 11.6886 5.55219 11.5294 5.74759 11.3123C5.86338 11.1748 5.95022 11.0228 5.99364 10.8492C6.03706 10.6755 6.06601 10.4656 6.06601 10.2196V9.9156C5.85614 9.86495 5.6318 9.82153 5.40022 9.79258C5.16864 9.76363 4.9443 9.74916 4.71996 9.74916C4.23509 9.74916 3.88048 9.84324 3.64167 10.0386C3.40285 10.234 3.28706 10.509 3.28706 10.8709C3.28706 11.211 3.3739 11.4643 3.55482 11.638C3.72851 11.8189 3.9818 11.9057 4.31469 11.9057ZM10.1259 12.6873C9.99561 12.6873 9.90877 12.6656 9.85088 12.6149C9.79298 12.5715 9.74232 12.4702 9.6989 12.3327L7.99825 6.73863C7.95482 6.59389 7.93311 6.49981 7.93311 6.44916C7.93311 6.33337 7.99101 6.26824 8.1068 6.26824H8.81601C8.95351 6.26824 9.04759 6.28995 9.09825 6.3406C9.15614 6.38403 9.19956 6.48534 9.24298 6.62284L10.4588 11.4136L11.5877 6.62284C11.6239 6.4781 11.6673 6.38403 11.7252 6.3406C11.7831 6.29718 11.8844 6.26824 12.0147 6.26824H12.5936C12.7311 6.26824 12.8252 6.28995 12.8831 6.3406C12.941 6.38403 12.9917 6.48534 13.0206 6.62284L14.164 11.4715L15.416 6.62284C15.4594 6.4781 15.5101 6.38403 15.5607 6.3406C15.6186 6.29718 15.7127 6.26824 15.843 6.26824H16.516C16.6318 6.26824 16.6969 6.32613 16.6969 6.44916C16.6969 6.48534 16.6897 6.52153 16.6825 6.56495C16.6752 6.60837 16.6607 6.66626 16.6318 6.74587L14.8877 12.3399C14.8443 12.4847 14.7936 12.5788 14.7357 12.6222C14.6778 12.6656 14.5838 12.6946 14.4607 12.6946H13.8384C13.7009 12.6946 13.6068 12.6728 13.5489 12.6222C13.491 12.5715 13.4403 12.4774 13.4114 12.3327L12.2897 7.66495L11.1752 12.3255C11.139 12.4702 11.0956 12.5643 11.0377 12.6149C10.9798 12.6656 10.8785 12.6873 10.7482 12.6873H10.1259ZM19.4252 12.8827C19.0489 12.8827 18.6726 12.8393 18.3107 12.7524C17.9489 12.6656 17.6667 12.5715 17.4785 12.463C17.3627 12.3978 17.2831 12.3255 17.2542 12.2603C17.2252 12.1952 17.2107 12.1228 17.2107 12.0577V11.6886C17.2107 11.5367 17.2686 11.4643 17.3772 11.4643C17.4206 11.4643 17.464 11.4715 17.5075 11.486C17.5509 11.5005 17.616 11.5294 17.6884 11.5584C17.9344 11.6669 18.2022 11.7538 18.4844 11.8117C18.7739 11.8696 19.0561 11.8985 19.3456 11.8985C19.8015 11.8985 20.1561 11.8189 20.4022 11.6597C20.6482 11.5005 20.7785 11.2689 20.7785 10.9722C20.7785 10.7696 20.7134 10.6031 20.5831 10.4656C20.4529 10.3281 20.2068 10.2051 19.8522 10.0893L18.8028 9.76363C18.2746 9.59718 17.8838 9.35113 17.645 9.02547C17.4061 8.70705 17.2831 8.35245 17.2831 7.97613C17.2831 7.67218 17.3482 7.40442 17.4785 7.17284C17.6088 6.94126 17.7825 6.73863 17.9996 6.57942C18.2167 6.41297 18.4627 6.28995 18.7522 6.2031C19.0417 6.11626 19.3456 6.08008 19.664 6.08008C19.8232 6.08008 19.9897 6.08731 20.1489 6.10903C20.3153 6.13074 20.4673 6.15968 20.6193 6.18863C20.764 6.22481 20.9015 6.261 21.0318 6.30442C21.1621 6.34784 21.2634 6.39126 21.3357 6.43468C21.4371 6.49258 21.5094 6.55047 21.5528 6.6156C21.5963 6.6735 21.618 6.7531 21.618 6.85442V7.19455C21.618 7.34653 21.5601 7.42613 21.4515 7.42613C21.3936 7.42613 21.2996 7.39718 21.1765 7.33929C20.764 7.15113 20.3009 7.05705 19.7871 7.05705C19.3746 7.05705 19.0489 7.12218 18.8246 7.25968C18.6002 7.39718 18.4844 7.60705 18.4844 7.90376C18.4844 8.10639 18.5568 8.28008 18.7015 8.41758C18.8463 8.55508 19.114 8.69258 19.4976 8.8156L20.5252 9.14126C21.0463 9.30771 21.4226 9.53929 21.6469 9.836C21.8713 10.1327 21.9798 10.4728 21.9798 10.8492C21.9798 11.1603 21.9147 11.4426 21.7917 11.6886C21.6614 11.9347 21.4877 12.1518 21.2634 12.3255C21.039 12.5064 20.7713 12.6367 20.4601 12.7307C20.1344 12.8321 19.7943 12.8827 19.4252 12.8827Z"
|
4
|
+
fill="#1D2730" />
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
6
|
+
d="M20.7928 16.4002C18.4118 18.1588 14.9526 19.0923 11.9783 19.0923C7.80987 19.0923 4.05395 17.5509 1.21711 14.989C0.992766 14.7864 1.1954 14.5114 1.46316 14.6706C4.53158 16.4509 8.31645 17.5291 12.2316 17.5291C14.873 17.5291 17.775 16.9791 20.4454 15.8502C20.8434 15.6693 21.1836 16.1107 20.7928 16.4002Z"
|
7
|
+
fill="#FF9900" />
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
9
|
+
d="M21.7842 15.2712C21.4803 14.8804 19.7724 15.0831 18.998 15.1772C18.7664 15.2061 18.7303 15.0035 18.9401 14.8515C20.3007 13.8962 22.5368 14.1712 22.7974 14.4897C23.0579 14.8153 22.725 17.0515 21.4513 18.1225C21.2559 18.289 21.0678 18.2022 21.1546 17.985C21.4441 17.2686 22.0882 15.6548 21.7842 15.2712Z"
|
10
|
+
fill="#FF9900" />
|
11
|
+
</svg>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M15.631 7.88275L17.5433 5.97042L17.6708 5.1652C14.1859 1.99649 8.64629 2.35578 5.50484 5.91491C4.63223 6.90343 3.98486 8.13584 3.63964 9.40846L4.32457 9.31196L8.14923 8.68127L8.44451 8.37929C10.1458 6.51087 13.0224 6.25951 14.9868 7.84924L15.631 7.88275Z" fill="#EA4335"/>
|
3
|
+
<path d="M20.2676 9.35299C19.828 7.7343 18.9256 6.27914 17.6708 5.16602L14.9868 7.84997C16.1201 8.77601 16.7658 10.1711 16.7381 11.6343V12.1108C18.0574 12.1108 19.1269 13.1802 19.1269 14.4994C19.1269 15.8187 18.0574 16.8614 16.7381 16.8614H11.9539L11.4841 17.3713V20.2364L11.9539 20.686H16.7381C20.1696 20.7127 22.9731 17.9795 22.9998 14.5481C23.016 12.4682 21.9905 10.5183 20.2676 9.35299Z" fill="#4285F4"/>
|
4
|
+
<path d="M7.17649 20.6848H11.954V16.8602H7.17649C6.83609 16.8601 6.50644 16.787 6.19689 16.6455L5.5191 16.8535L3.59332 18.7658L3.42557 19.4167C4.50555 20.2321 5.82323 20.6907 7.17649 20.6848Z" fill="#34A853"/>
|
5
|
+
<path d="M7.17637 8.27934C3.74479 8.29979 0.97966 11.0982 1.00011 14.5296C1.01154 16.4458 1.9065 18.2496 3.42545 19.4178L6.19677 16.6466C4.99441 16.1034 4.46014 14.6884 5.00335 13.4862C5.54648 12.284 6.96153 11.7497 8.16371 12.2928C8.69352 12.5321 9.11779 12.9565 9.35713 13.4862L12.1285 10.715C10.9493 9.17359 9.11711 8.27238 7.17637 8.27934Z" fill="#FBBC05"/>
|
6
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
2
|
+
<path d="M8.14664 19H16.2282C20.0698 18.9057 23.0916 15.6773 22.9979 11.8361C22.9042 8.08921 19.9058 5.0964 16.2282 5.00213H8.14664C4.305 4.90787 1.09582 7.94781 1.00212 11.8125C0.908423 15.6773 3.9302 18.8822 7.77185 18.9764C7.88897 19 8.00609 19 8.14664 19ZM16.0408 16.5256H8.31062C5.8276 16.4549 3.88335 14.3576 3.95363 11.8597C4.04733 9.47957 5.94473 7.5472 8.31062 7.4765H16.0408C18.5238 7.40581 20.6086 9.36174 20.6788 11.8597C20.7491 14.3576 18.8049 16.4549 16.3218 16.5256C16.2282 16.5256 16.1345 16.5256 16.0408 16.5256Z" fill="#C74634"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
2
|
+
<path d="M20.5 8.88879H19.1278L19.109 8.2923C19.0846 7.51248 19.0138 7.0873 18.8177 6.52742C18.5881 5.87257 18.2362 5.31567 17.7437 4.82779C16.685 3.77878 15.2587 3.51792 13.8277 3.51792C13.8277 8.37073 13.7765 13.2259 13.8506 18.0783C13.8525 18.2032 13.8543 18.2734 13.8559 18.2887C13.9338 19.062 14.2863 19.7101 14.7821 20.0253C15.2351 20.3135 15.8143 20.4442 16.6912 20.4442H17.2563C17.2596 20.9629 17.2563 21.4814 17.2563 22H6.74374C6.74374 21.4814 6.74043 20.9629 6.74374 20.4442H7.30881C8.18571 20.4442 8.76487 20.3135 9.21791 20.0253C9.7137 19.7101 10.0662 19.062 10.1442 18.2887C10.1457 18.2734 10.1475 18.2032 10.1494 18.0783C10.2235 13.2259 10.1723 8.37073 10.1723 3.51792C8.74133 3.51792 7.31495 3.77878 6.25627 4.82779C5.76379 5.31567 5.41192 5.87257 5.18231 6.52742C4.98623 7.0873 4.91544 7.51248 4.89097 8.2923L4.87219 8.88879H3.5C3.5 8.88879 3.5002 4.23767 3.5 2H20.5C20.4998 4.23767 20.5 8.88879 20.5 8.88879Z" fill="#D40074"/>
|
3
|
+
<path d="M7.70606 15.2591H3.5V11.111H7.70606V15.2591Z" fill="#D40074"/>
|
4
|
+
<path d="M20.4745 15.2591H16.2684V11.111H20.4745V15.2591Z" fill="#D40074"/>
|
5
|
+
</svg>
|