@devtron-labs/devtron-fe-common-lib 1.13.0-pre-3 → 1.13.0-pre-4
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/{@common-rjsf-D8Qtr4tq.js → @common-rjsf-B9RVxEzF.js} +3101 -3066
- package/dist/{@framer-motion-vKlTvuNq.js → @framer-motion-Hh5HoZEj.js} +1 -1
- package/dist/{@react-dates-DsYJWeMo.js → @react-dates-RAg1eRYJ.js} +14 -14
- package/dist/{@react-select-D3FsD2uq.js → @react-select-Cyc43HrK.js} +1 -1
- package/dist/{@react-virtualized-sticky-tree-DWN3dQyp.js → @react-virtualized-sticky-tree-Cby7tsJ8.js} +1 -1
- package/dist/{@vendor-BZ1WgRCl.js → @vendor-BZpoz8Ez.js} +9980 -9990
- package/dist/Common/Common.service.d.ts +2 -2
- package/dist/Pages/GlobalConfigurations/ClustersAndEnvironments/index.d.ts +1 -0
- package/dist/Pages/GlobalConfigurations/ClustersAndEnvironments/types.d.ts +8 -0
- package/dist/Pages/GlobalConfigurations/index.d.ts +1 -0
- package/dist/Pages/ResourceBrowser/service.d.ts +1 -1
- package/dist/Pages/ResourceBrowser/types.d.ts +38 -0
- package/dist/Shared/Components/Icon/Icon.d.ts +4 -1
- package/dist/Shared/Components/LoginBanner/Testimonials.components.d.ts +3 -0
- package/dist/Shared/Components/LoginBanner/index.d.ts +2 -0
- package/dist/Shared/Components/SelectPicker/common.d.ts +1 -0
- package/dist/Shared/Components/SelectPicker/index.d.ts +1 -0
- package/dist/Shared/Components/StatusComponent/types.d.ts +2 -1
- package/dist/Shared/Components/index.d.ts +0 -1
- package/dist/Shared/types.d.ts +5 -0
- package/dist/assets/ic-cluster.71ba9e26.svg +3 -0
- package/dist/assets/ic-delete-dots.5380e0d0.svg +62 -0
- package/dist/assets/ic-enterprise-feat.5ee25d5b.svg +3 -0
- package/dist/assets/ic-enterprise-tag.209dd129.svg +43 -0
- package/dist/index.js +666 -662
- package/package.json +1 -1
- package/dist/Shared/Components/EnterpriseTag/EnterpriseTag.component.d.ts +0 -2
- package/dist/Shared/Components/EnterpriseTag/index.d.ts +0 -1
- package/dist/assets/ic-login-devtron-logo.702a1d04.svg +0 -22
- package/dist/assets/ic-medal.a2e911f5.svg +0 -19
@@ -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, EnvAppsMetaDTO, GetAppsInfoForEnvProps } from './Types';
|
3
|
+
import { TeamList, ResponseType, DeploymentNodeType, CDMaterialServiceEnum, CDMaterialServiceQueryParams, CDMaterialResponseType, CDMaterialFilterQuery, EnvironmentListHelmResponse, UserApprovalMetadataType, GlobalVariableOptionType, UserRole, APIOptions, EnvAppsMetaDTO, GetAppsInfoForEnvProps } from './Types';
|
4
4
|
import { ApiResourceType } from '../Pages';
|
5
5
|
export declare const getTeamListMin: () => Promise<TeamList>;
|
6
6
|
export declare const SourceTypeMap: {
|
@@ -21,7 +21,7 @@ export declare const getDefaultConfig: () => Promise<ResponseType>;
|
|
21
21
|
export declare function getEnvironmentListMinPublic(includeAllowedDeploymentTypes?: boolean): Promise<ResponseType<any>>;
|
22
22
|
export declare function getClusterListMin(): Promise<ResponseType<any>>;
|
23
23
|
export declare const getResourceGroupListRaw: (clusterId: string) => Promise<ResponseType<ApiResourceType>>;
|
24
|
-
export declare function getNamespaceListMin(clusterIdsCsv: string): Promise<EnvironmentListHelmResponse>;
|
24
|
+
export declare function getNamespaceListMin(clusterIdsCsv: string, abortControllerRef?: APIOptions['abortControllerRef']): Promise<EnvironmentListHelmResponse>;
|
25
25
|
export declare function getWebhookEventsForEventId(eventId: string | number): Promise<ResponseType<any>>;
|
26
26
|
/**
|
27
27
|
*
|
@@ -0,0 +1 @@
|
|
1
|
+
export type { NewClusterFormFooterProps, NewClusterFormProps } from './types';
|
@@ -0,0 +1,8 @@
|
|
1
|
+
export interface NewClusterFormFooterProps {
|
2
|
+
apiCallInProgress: boolean;
|
3
|
+
handleModalClose: () => void;
|
4
|
+
closeButtonText?: string;
|
5
|
+
}
|
6
|
+
export interface NewClusterFormProps extends Pick<NewClusterFormFooterProps, 'handleModalClose'> {
|
7
|
+
FooterComponent: React.FunctionComponent<NewClusterFormFooterProps> & Record<'CTA' | 'Start', React.FunctionComponent<{}>>;
|
8
|
+
}
|
@@ -7,4 +7,4 @@ export declare const deleteResource: (resourceListPayload: ResourceListPayloadTy
|
|
7
7
|
export declare const deleteNodeCapacity: (requestPayload: NodeActionRequest, abortControllerRef?: APIOptions["abortControllerRef"]) => Promise<ResponseType>;
|
8
8
|
export declare const cordonNodeCapacity: (requestPayload: NodeCordonRequest, abortControllerRef?: APIOptions["abortControllerRef"]) => Promise<ResponseType>;
|
9
9
|
export declare const drainNodeCapacity: (requestPayload: NodeActionRequest, abortControllerRef?: APIOptions["abortControllerRef"]) => Promise<ResponseType>;
|
10
|
-
export declare const getClusterListRaw: () => Promise<ResponseType<ClusterDetail[]>>;
|
10
|
+
export declare const getClusterListRaw: (abortControllerRef?: APIOptions["abortControllerRef"]) => Promise<ResponseType<ClusterDetail[]>>;
|
@@ -1,10 +1,20 @@
|
|
1
1
|
import { Dispatch, ReactElement, SetStateAction } from 'react';
|
2
|
+
import { InstallationClusterType } from '../../Shared/types';
|
2
3
|
import { NodeActionRequest } from './ResourceBrowser.Types';
|
3
4
|
export declare enum ClusterFiltersType {
|
4
5
|
ALL_CLUSTERS = "all",
|
5
6
|
HEALTHY = "healthy",
|
6
7
|
UNHEALTHY = "unhealthy"
|
7
8
|
}
|
9
|
+
export declare enum InstallationClusterStatus {
|
10
|
+
Creating = "Creating",
|
11
|
+
Updated = "Updated",
|
12
|
+
Updating = "Updating",
|
13
|
+
Installed = "Installed",
|
14
|
+
Failed = "Failed",
|
15
|
+
Deleting = "Deleting",
|
16
|
+
Deleted = "Deleted"
|
17
|
+
}
|
8
18
|
export declare enum ClusterStatusType {
|
9
19
|
HEALTHY = "healthy",
|
10
20
|
UNHEALTHY = "unhealthy",
|
@@ -42,6 +52,7 @@ export interface ClusterCapacityType {
|
|
42
52
|
nodeErrors: Record<string, string>[];
|
43
53
|
status?: ClusterStatusType;
|
44
54
|
isProd: boolean;
|
55
|
+
installationId?: number;
|
45
56
|
}
|
46
57
|
export interface ClusterDetail extends ClusterCapacityType {
|
47
58
|
id: number;
|
@@ -70,4 +81,31 @@ export interface AdditionalConfirmationModalOptionsProps<T = unknown> {
|
|
70
81
|
setOptionsData: Dispatch<SetStateAction<T>>;
|
71
82
|
children?: ReactElement;
|
72
83
|
}
|
84
|
+
export interface InstallationClusterStepType {
|
85
|
+
lastTransitionTime: string;
|
86
|
+
lastProbeTime: string;
|
87
|
+
message: string;
|
88
|
+
reason: string;
|
89
|
+
status: 'False' | 'True' | 'Unknown';
|
90
|
+
type: string;
|
91
|
+
}
|
92
|
+
export interface InstallationClusterConfigDTO {
|
93
|
+
installationId: number;
|
94
|
+
installationStatus: InstallationClusterStatus;
|
95
|
+
name: string;
|
96
|
+
values: string;
|
97
|
+
valuesSchema: string;
|
98
|
+
isProd: boolean;
|
99
|
+
installationType: InstallationClusterType;
|
100
|
+
conditions: InstallationClusterStepType[];
|
101
|
+
installedEntityId: number | 0;
|
102
|
+
}
|
103
|
+
export interface InstallationClusterConfigType extends Pick<InstallationClusterConfigDTO, 'installationType' | 'conditions'> {
|
104
|
+
schema: object;
|
105
|
+
values: object;
|
106
|
+
installationId: number;
|
107
|
+
name: string;
|
108
|
+
status: InstallationClusterStatus;
|
109
|
+
correspondingClusterId: number | 0;
|
110
|
+
}
|
73
111
|
export {};
|
@@ -36,6 +36,7 @@ export declare const iconMap: {
|
|
36
36
|
'ic-close-large': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
37
37
|
'ic-close-small': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
38
38
|
'ic-cloud-vms': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
39
|
+
'ic-cluster': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
39
40
|
'ic-code': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
40
41
|
'ic-container': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
41
42
|
'ic-cookr': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
@@ -43,6 +44,7 @@ export declare const iconMap: {
|
|
43
44
|
'ic-cpu': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
44
45
|
'ic-crown': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
45
46
|
'ic-cube': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
47
|
+
'ic-delete-dots': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
46
48
|
'ic-delete-lightning': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
47
49
|
'ic-delete': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
48
50
|
'ic-delhivery': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
@@ -51,6 +53,8 @@ export declare const iconMap: {
|
|
51
53
|
'ic-disconnect': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
52
54
|
'ic-dockerhub': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
53
55
|
'ic-ecr': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
56
|
+
'ic-enterprise-feat': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
57
|
+
'ic-enterprise-tag': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
54
58
|
'ic-env': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
55
59
|
'ic-error': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
56
60
|
'ic-expand-right-sm': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
@@ -91,7 +95,6 @@ export declare const iconMap: {
|
|
91
95
|
'ic-lightning-fill': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
92
96
|
'ic-lightning': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
93
97
|
'ic-livspace': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
94
|
-
'ic-login-devtron-logo': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
95
98
|
'ic-logout': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
96
99
|
'ic-medium-delete': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
97
100
|
'ic-medium-paintbucket': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
@@ -13,3 +13,4 @@ export declare const SelectPickerMultiValueLabel: <OptionValue, IsMulti extends
|
|
13
13
|
export declare const SelectPickerMultiValueRemove: (props: MultiValueRemoveProps) => JSX.Element;
|
14
14
|
export declare const SelectPickerGroupHeading: <OptionValue>({ isGroupHeadingSelectable, ...props }: SelectPickerGroupHeadingProps<OptionValue>) => JSX.Element;
|
15
15
|
export declare const renderLoadingMessage: () => JSX.Element;
|
16
|
+
export declare const ValueContainerWithLoadingShimmer: (props: ValueContainerProps) => JSX.Element;
|
@@ -16,7 +16,8 @@ export declare enum StatusType {
|
|
16
16
|
PROGRESSING = "PROGRESSING",
|
17
17
|
INPROGRESS = "INPROGRESS",
|
18
18
|
HIBERNATING = "HIBERNATING",
|
19
|
-
TIMED_OUT = "TIMED_OUT"
|
19
|
+
TIMED_OUT = "TIMED_OUT",
|
20
|
+
DELETING = "DELETING"
|
20
21
|
}
|
21
22
|
export interface StatusComponentProps {
|
22
23
|
/** The status to display, either a predefined StatusType or a custom string. */
|
@@ -29,7 +29,6 @@ export * from './DiffViewer';
|
|
29
29
|
export * from './DynamicDataTable';
|
30
30
|
export * from './EditableTextArea';
|
31
31
|
export * from './EditImageFormField';
|
32
|
-
export * from './EnterpriseTag';
|
33
32
|
export * from './EnvironmentSelector';
|
34
33
|
export * from './Error';
|
35
34
|
export * from './ExcludedImageNode';
|
package/dist/Shared/types.d.ts
CHANGED
@@ -410,6 +410,7 @@ export declare enum ResourceKindType {
|
|
410
410
|
releaseChannel = "release-channel",
|
411
411
|
tenant = "tenant",
|
412
412
|
installation = "installation",
|
413
|
+
infrastructureInstallation = "installations",
|
413
414
|
environment = "environment",
|
414
415
|
cdPipeline = "cd-pipeline",
|
415
416
|
ciPipeline = "ci-pipeline",
|
@@ -946,6 +947,10 @@ export type CountryISO2Type = ParsedCountry['iso2'];
|
|
946
947
|
export declare enum ResponseHeaders {
|
947
948
|
LICENSE_STATUS = "X-License-Status"
|
948
949
|
}
|
950
|
+
export declare enum InstallationClusterType {
|
951
|
+
EKS_AUTO_CLUSTER = "eksAutoCluster",
|
952
|
+
EKS_MANUAL_CLUSTER = "eksManualCluster"
|
953
|
+
}
|
949
954
|
export type IconBaseSizeType = 6 | 8 | 10 | 12 | 14 | 16 | 18 | 20 | 22 | 24 | 28 | 30 | 32 | 34 | 36 | 40 | 42 | 44 | 48 | 72 | 80;
|
950
955
|
export type IconBaseColorType = `${'B' | 'N' | 'G' | 'Y' | 'R' | 'V' | 'O'}${`${1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9}00` | '50' | '0'}` | 'white' | 'black' | null;
|
951
956
|
export interface GetTimeDifferenceParamsType {
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" vector-effect="non-scaling-effect">
|
2
|
+
<path d="M13.6084 8.75V4.58333L9.99998 2.5L6.39154 4.58333V8.75M13.6084 8.75L9.99998 10.8333M13.6084 8.75L17.2167 10.8333V15L13.6083 17.0833L10.0001 15M9.99998 10.8333L6.39154 8.75M9.99998 10.8333L10.0001 15M6.39154 8.75L2.7832 10.8333V15L6.39164 17.0833L10.0001 15" fill="none" stroke="#fff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
3
|
+
</svg>
|
@@ -0,0 +1,62 @@
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<style>
|
3
|
+
@keyframes move-02 {
|
4
|
+
0%,
|
5
|
+
10%,
|
6
|
+
to {
|
7
|
+
transform: translateX(-4px);
|
8
|
+
}
|
9
|
+
20%,
|
10
|
+
90% {
|
11
|
+
transform: translateX(0);
|
12
|
+
}
|
13
|
+
}
|
14
|
+
@keyframes move-03 {
|
15
|
+
0%,
|
16
|
+
10%,
|
17
|
+
to {
|
18
|
+
transform: translateX(-8px);
|
19
|
+
}
|
20
|
+
20%,
|
21
|
+
25%,
|
22
|
+
90% {
|
23
|
+
transform: translateX(-4px);
|
24
|
+
}
|
25
|
+
30%,
|
26
|
+
80% {
|
27
|
+
transform: translateX(0);
|
28
|
+
}
|
29
|
+
}
|
30
|
+
</style>
|
31
|
+
<path
|
32
|
+
d="M3 6h2m0 0h16M5 6v14a2 2 0 0 0 2 2h6M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2m-6 5v4m4-4v4m5-9v9"
|
33
|
+
stroke="#3B444C"
|
34
|
+
stroke-width="1.5"
|
35
|
+
stroke-linecap="round"
|
36
|
+
stroke-linejoin="round"
|
37
|
+
/>
|
38
|
+
<path
|
39
|
+
class="dot-01"
|
40
|
+
d="M15 18.5v.5"
|
41
|
+
stroke="#3B444C"
|
42
|
+
stroke-width="1.5"
|
43
|
+
stroke-linecap="round"
|
44
|
+
stroke-linejoin="round"
|
45
|
+
/>
|
46
|
+
<path
|
47
|
+
d="M19 18.5v.5"
|
48
|
+
stroke="#3B444C"
|
49
|
+
stroke-width="1.5"
|
50
|
+
stroke-linecap="round"
|
51
|
+
stroke-linejoin="round"
|
52
|
+
style="animation: move-02 3s infinite linear"
|
53
|
+
/>
|
54
|
+
<path
|
55
|
+
d="M23 18.5v.5"
|
56
|
+
stroke="#3B444C"
|
57
|
+
stroke-width="1.5"
|
58
|
+
stroke-linecap="round"
|
59
|
+
stroke-linejoin="round"
|
60
|
+
style="animation: move-03 3s infinite linear"
|
61
|
+
/>
|
62
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
2
|
+
<path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M12 21.75a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0-10 7.755-3.525a.844.844 0 0 0 .495-.769V2.844A.844.844 0 0 0 19.406 2H4.594a.844.844 0 0 0-.844.844v4.612a.844.844 0 0 0 .495.769L12 11.75ZM15.75 2v8.046M8.25 2v8.046" vector-effect="non-scaling-stroke"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,43 @@
|
|
1
|
+
<svg width="118" height="28" viewBox="0 0 118 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<style>
|
3
|
+
.shine {
|
4
|
+
animation: shine 4s infinite ease-in-out;
|
5
|
+
opacity: 0.8;
|
6
|
+
}
|
7
|
+
|
8
|
+
@keyframes shine {
|
9
|
+
0% {
|
10
|
+
transform: translateX(-40px);
|
11
|
+
}
|
12
|
+
100% {
|
13
|
+
transform: translateX(140px);
|
14
|
+
}
|
15
|
+
}
|
16
|
+
</style>
|
17
|
+
<g clip-path="url(#clip0_10285_60941)">
|
18
|
+
<rect width="118" height="28" rx="6" fill="url(#paint0_linear_10285_60941)"/>
|
19
|
+
<g class="shine" opacity="0.8" filter="url(#filter0_f_10285_60941)">
|
20
|
+
<path d="M10 -2H33.652L44.782 30H21.13L10 -2Z" fill="white" fill-opacity="0.9"/>
|
21
|
+
</g>
|
22
|
+
<path d="M15.9998 20.4999C17.8408 20.4999 19.3332 19.0075 19.3332 17.1666C19.3332 15.3256 17.8408 13.8333 15.9998 13.8333C14.1589 13.8333 12.6665 15.3256 12.6665 17.1666C12.6665 19.0075 14.1589 20.4999 15.9998 20.4999Z" stroke="#433000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
23
|
+
<path d="M16 13.8333L21.17 11.4833C21.2684 11.4386 21.3519 11.3665 21.4104 11.2756C21.469 11.1847 21.5001 11.0789 21.5 10.9708V7.89575C21.5 7.74657 21.4407 7.60349 21.3352 7.498C21.2298 7.39252 21.0867 7.33325 20.9375 7.33325H11.0625C10.9133 7.33325 10.7702 7.39252 10.6648 7.498C10.5593 7.60349 10.5 7.74657 10.5 7.89575V10.9708C10.4999 11.0789 10.531 11.1847 10.5896 11.2756C10.6481 11.3665 10.7316 11.4386 10.83 11.4833L16 13.8333Z" stroke="#433000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
24
|
+
<path d="M18.5 7.33325V12.697" stroke="#433000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
25
|
+
<path d="M13.5 7.33325V12.697" stroke="#433000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
26
|
+
<path d="M31.066 19V9.926H37.046V11.447H32.782V13.644H36.552V15.165H32.782V17.479H37.046V19H31.066ZM41.4609 14.346L40.5249 12.461H40.4859V19H38.8609V9.926H40.7459L43.4759 14.58L44.4119 16.465H44.4509V9.926H46.0759V19H44.1909L41.4609 14.346ZM51.7667 11.447V19H50.0507V11.447H47.4767V9.926H54.3407V11.447H51.7667ZM55.7457 19V9.926H61.7257V11.447H57.4617V13.644H61.2317V15.165H57.4617V17.479H61.7257V19H55.7457ZM65.2566 19H63.5406V9.926H67.6356C68.0516 9.926 68.4243 9.991 68.7536 10.121C69.0829 10.251 69.3603 10.4417 69.5856 10.693C69.8196 10.9357 69.9973 11.2303 70.1186 11.577C70.2486 11.9237 70.3136 12.3093 70.3136 12.734C70.3136 13.358 70.1706 13.8953 69.8846 14.346C69.6073 14.7967 69.1869 15.1173 68.6236 15.308L70.4826 19H68.5716L66.8816 15.503H65.2566V19ZM67.4666 14.06C67.7959 14.06 68.0559 13.9733 68.2466 13.8C68.4373 13.618 68.5326 13.3623 68.5326 13.033V12.435C68.5326 12.1057 68.4373 11.8543 68.2466 11.681C68.0559 11.5077 67.7959 11.421 67.4666 11.421H65.2566V14.06H67.4666ZM72.1734 19V9.926H76.2554C76.6714 9.926 77.0441 9.99533 77.3734 10.134C77.7114 10.264 77.9974 10.4547 78.2314 10.706C78.4654 10.9487 78.6431 11.2433 78.7644 11.59C78.8858 11.9367 78.9464 12.318 78.9464 12.734C78.9464 13.1587 78.8858 13.5443 78.7644 13.891C78.6431 14.229 78.4654 14.5237 78.2314 14.775C77.9974 15.0177 77.7114 15.2083 77.3734 15.347C77.0441 15.477 76.6714 15.542 76.2554 15.542H73.8894V19H72.1734ZM73.8894 14.06H76.0994C76.4288 14.06 76.6888 13.9733 76.8794 13.8C77.0701 13.618 77.1654 13.3623 77.1654 13.033V12.435C77.1654 12.1057 77.0701 11.8543 76.8794 11.681C76.6888 11.5077 76.4288 11.421 76.0994 11.421H73.8894V14.06ZM82.2175 19H80.5015V9.926H84.5965C85.0125 9.926 85.3852 9.991 85.7145 10.121C86.0439 10.251 86.3212 10.4417 86.5465 10.693C86.7805 10.9357 86.9582 11.2303 87.0795 11.577C87.2095 11.9237 87.2745 12.3093 87.2745 12.734C87.2745 13.358 87.1315 13.8953 86.8455 14.346C86.5682 14.7967 86.1479 15.1173 85.5845 15.308L87.4435 19H85.5325L83.8425 15.503H82.2175V19ZM84.4275 14.06C84.7569 14.06 85.0169 13.9733 85.2075 13.8C85.3982 13.618 85.4935 13.3623 85.4935 13.033V12.435C85.4935 12.1057 85.3982 11.8543 85.2075 11.681C85.0169 11.5077 84.7569 11.421 84.4275 11.421H82.2175V14.06H84.4275ZM88.7574 19V17.622H89.9534V11.304H88.7574V9.926H92.8784V11.304H91.6694V17.622H92.8784V19H88.7574ZM97.4524 19.156C96.6724 19.156 96.0094 19.0173 95.4634 18.74C94.9261 18.4627 94.4624 18.0987 94.0724 17.648L95.2294 16.53C95.5414 16.894 95.8881 17.1713 96.2694 17.362C96.6594 17.5527 97.0884 17.648 97.5564 17.648C98.0851 17.648 98.4838 17.5353 98.7524 17.31C99.0211 17.076 99.1554 16.764 99.1554 16.374C99.1554 16.0707 99.0688 15.8237 98.8954 15.633C98.7221 15.4423 98.3971 15.3037 97.9204 15.217L97.0624 15.087C95.2511 14.801 94.3454 13.9213 94.3454 12.448C94.3454 12.0407 94.4191 11.6723 94.5664 11.343C94.7224 11.0137 94.9434 10.732 95.2294 10.498C95.5154 10.264 95.8578 10.0863 96.2564 9.965C96.6638 9.835 97.1231 9.77 97.6344 9.77C98.3191 9.77 98.9171 9.88267 99.4284 10.108C99.9398 10.3333 100.377 10.667 100.741 11.109L99.5714 12.214C99.3461 11.9367 99.0731 11.7113 98.7524 11.538C98.4318 11.3647 98.0288 11.278 97.5434 11.278C97.0494 11.278 96.6768 11.3733 96.4254 11.564C96.1828 11.746 96.0614 12.006 96.0614 12.344C96.0614 12.6907 96.1611 12.9463 96.3604 13.111C96.5598 13.2757 96.8804 13.397 97.3224 13.475L98.1674 13.631C99.0861 13.7957 99.7621 14.0903 100.195 14.515C100.637 14.931 100.858 15.516 100.858 16.27C100.858 16.7033 100.78 17.0977 100.624 17.453C100.477 17.7997 100.256 18.103 99.9614 18.363C99.6754 18.6143 99.3201 18.8093 98.8954 18.948C98.4794 19.0867 97.9984 19.156 97.4524 19.156ZM102.579 19V9.926H108.559V11.447H104.295V13.644H108.065V15.165H104.295V17.479H108.559V19H102.579Z" fill="#433000"/>
|
27
|
+
</g>
|
28
|
+
<rect x="0.5" y="0.5" width="117" height="27" rx="5.5" stroke="black" stroke-opacity="0.1"/>
|
29
|
+
<defs>
|
30
|
+
<filter id="filter0_f_10285_60941" x="-2" y="-14" width="58.7822" height="56" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
31
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
32
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
33
|
+
<feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_10285_60941"/>
|
34
|
+
</filter>
|
35
|
+
<linearGradient id="paint0_linear_10285_60941" x1="118" y1="15.8918" x2="20.8544" y2="-37.7599" gradientUnits="userSpaceOnUse">
|
36
|
+
<stop stop-color="#DFB74F"/>
|
37
|
+
<stop offset="1" stop-color="#FFECA8"/>
|
38
|
+
</linearGradient>
|
39
|
+
<clipPath id="clip0_10285_60941">
|
40
|
+
<rect width="118" height="28" rx="6" fill="white"/>
|
41
|
+
</clipPath>
|
42
|
+
</defs>
|
43
|
+
</svg>
|