@devtron-labs/devtron-fe-common-lib 1.19.0-pre-4 → 1.19.0-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.
@@ -1,7 +1,7 @@
1
1
  import { j as n, au as T, aw as J, av as K } from "./@vendor-3ORIJA0h.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 w, b as N, S as X, i as Z, g as ee, a as te, d as R, e as ne } from "./@code-editor-CEy6Pmw3.js";
4
+ import { T as O, j as F, c as w, b as N, S as X, i as Z, g as ee, a as te, d as R, e as ne } from "./@code-editor-C4ZrS_SZ.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";
@@ -18,7 +18,7 @@ export declare function extractImage(image: string): string;
18
18
  export declare function createGitCommitUrl(url: string, revision: string): string;
19
19
  export declare function fetchChartTemplateVersions(): Promise<ResponseType<any>>;
20
20
  export declare const getDefaultConfig: () => Promise<ResponseType>;
21
- export declare function getEnvironmentListMinPublic(includeAllowedDeploymentTypes?: boolean): Promise<ResponseType<any>>;
21
+ export declare function getEnvironmentListMinPublic(includeAllowedDeploymentTypes?: boolean, options?: APIOptions): Promise<ResponseType<any>>;
22
22
  export declare function getClusterListMin(): Promise<ResponseType<any>>;
23
23
  export declare const getResourceGroupListRaw: (clusterId: string) => Promise<ResponseType<ApiResourceType>>;
24
24
  export declare function getNamespaceListMin(clusterIdsCsv: string, abortControllerRef?: APIOptions['abortControllerRef']): Promise<EnvironmentListHelmResponse>;
@@ -27,6 +27,7 @@ export declare const KEYBOARD_KEYS_MAP: {
27
27
  readonly Delete: "⌦";
28
28
  readonly '.': ".";
29
29
  readonly Space: "Space";
30
+ readonly '>': ">";
30
31
  };
31
32
  export type SupportedKeyboardKeysType = keyof typeof KEYBOARD_KEYS_MAP;
32
33
  export interface ShortcutType {
@@ -1,6 +1,6 @@
1
1
  import { ShortcutType } from './types';
2
2
  export declare const preprocessKeys: (keys: ShortcutType["keys"]) => {
3
- keys: ("N" | "R" | "Enter" | "/" | "Alt" | "F" | "E" | "K" | "X" | "A" | "S" | "Home" | "End" | "." | "Space" | "Control" | "Shift" | "Meta" | "Escape" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "ArrowDown" | "PageUp" | "PageDown" | "Backspace" | "Delete")[];
3
+ keys: ("N" | "R" | "Enter" | "/" | "Alt" | "F" | "E" | "K" | "X" | "A" | "S" | "Home" | "End" | "." | "Space" | ">" | "Control" | "Shift" | "Meta" | "Escape" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "ArrowDown" | "PageUp" | "PageDown" | "Backspace" | "Delete")[];
4
4
  id: string;
5
5
  };
6
6
  export declare const verifyCallbackStack: (stack: ShortcutType["callbackStack"]) => void;
@@ -26,9 +26,6 @@ export interface ResponseType<T = any> {
26
26
  }
27
27
  export interface APIOptions {
28
28
  timeout?: number;
29
- /**
30
- * @deprecated Use abortController instead
31
- */
32
29
  signal?: AbortSignal;
33
30
  abortControllerRef?: MutableRefObject<AbortController>;
34
31
  /**
@@ -393,6 +390,8 @@ export interface CDMaterialListModalServiceUtilProps {
393
390
  artifactId?: number;
394
391
  artifactStatus?: string;
395
392
  disableDefaultSelection?: boolean;
393
+ isExceptionUser: boolean;
394
+ isApprovalConfigured: boolean;
396
395
  }
397
396
  export interface CDMaterialType {
398
397
  index: number;
@@ -1,6 +1,15 @@
1
- import { MouseEvent, ReactNode } from 'react';
1
+ import { MouseEvent, ReactNode, SyntheticEvent } from 'react';
2
2
  import { DTFocusTrapType } from '../DTFocusTrap';
3
- export interface BackdropProps extends Pick<DTFocusTrapType, 'deactivateFocusOnEscape' | 'initialFocus' | 'onEscape'> {
3
+ export interface BackdropProps extends Pick<DTFocusTrapType, 'deactivateFocusOnEscape' | 'initialFocus'> {
4
+ /**
5
+ * Callback function that gets triggered when the Escape key is pressed. \
6
+ * Should be wrapped in useCallback to prevent unnecessary re-renders.
7
+ * @example
8
+ * const handleEscape = useCallback(() => {
9
+ * // Handle escape key press
10
+ * }, []);
11
+ */
12
+ onEscape: (e?: SyntheticEvent) => void;
4
13
  /**
5
14
  * The content to be rendered within the backdrop component.
6
15
  */
@@ -4,5 +4,5 @@ export declare const useFocusTrapControl: () => {
4
4
  disableFocusTrap: typeof noop;
5
5
  resumeFocusTrap: typeof noop;
6
6
  };
7
- declare const DTFocusTrap: ({ onEscape, deactivateFocusOnEscape, children, initialFocus, }: DTFocusTrapType) => JSX.Element;
7
+ declare const DTFocusTrap: ({ deactivateFocusOnEscape, children, initialFocus }: DTFocusTrapType) => JSX.Element;
8
8
  export default DTFocusTrap;
@@ -8,15 +8,6 @@ type FocusTargetValueOrFalse = FocusTargetValue | false;
8
8
  */
9
9
  type FocusTargetOrFalse = FocusTargetValueOrFalse | (() => FocusTargetValueOrFalse);
10
10
  export interface DTFocusTrapType {
11
- /**
12
- * Callback function that gets triggered when the Escape key is pressed. \
13
- * Should be wrapped in useCallback to prevent unnecessary re-renders.
14
- * @example
15
- * const handleEscape = useCallback(() => {
16
- * // Handle escape key press
17
- * }, []);
18
- */
19
- onEscape: (e?: KeyboardEvent | MouseEvent) => void;
20
11
  /**
21
12
  * If focus should be deactivated on escape, pass false when escape is disabled or has no action
22
13
  * true for cases when we are closing modals or dialogs
@@ -1,5 +1,6 @@
1
1
  import { IllustrationBaseProps } from './types';
2
2
  export declare const illustrationMap: {
3
+ 'img-mechanical-operation': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
3
4
  'img-code': string;
4
5
  'img-man-on-rocket': string;
5
6
  'img-no-result': string;
@@ -0,0 +1,3 @@
1
+ import { KeyboardShortcutProps } from './types';
2
+ declare const KeyboardShortcut: ({ keyboardKey }: KeyboardShortcutProps) => JSX.Element;
3
+ export default KeyboardShortcut;
@@ -0,0 +1 @@
1
+ export { default as KeyboardShortcut } from './KeyboardShortcut.component';
@@ -0,0 +1,4 @@
1
+ import { SupportedKeyboardKeysType } from '../../../Common/Hooks/UseRegisterShortcut/types';
2
+ export interface KeyboardShortcutProps {
3
+ keyboardKey: SupportedKeyboardKeysType;
4
+ }
@@ -59,6 +59,7 @@ export * from './ImageWithFallback';
59
59
  export * from './InfoBlock';
60
60
  export * from './InfoIconTippy';
61
61
  export * from './InvalidYAMLTippy';
62
+ export * from './KeyboardShortcut';
62
63
  export * from './KeyValueTable';
63
64
  export * from './License';
64
65
  export { default as LoadingCard } from './LoadingCard';
@@ -4,7 +4,7 @@ import { PreferredResourceKindType, UserPreferenceFilteredListTypes, UserPrefere
4
4
  * @description This function fetches the user preferences from the server. It uses the `get` method to make a request to the server and retrieves the user preferences based on the `USER_PREFERENCES_ATTRIBUTE_KEY`. The result is parsed and returned as a `UserPreferencesType` object.
5
5
  * @throws Will throw an error if the request fails or if the result is not in the expected format.
6
6
  */
7
- export declare const getUserPreferences: () => Promise<UserPreferencesType>;
7
+ export declare const getUserPreferences: (signal?: AbortSignal) => Promise<UserPreferencesType>;
8
8
  export declare const updateUserPreferences: ({ path, value, resourceKind, shouldThrowError, userPreferencesResponse, }: UserPreferenceResourceProps) => Promise<boolean>;
9
9
  /**
10
10
  * Optimized function to get updated user preferences with resource filtering
@@ -1,6 +1,8 @@
1
1
  import { USER_PREFERENCES_ATTRIBUTE_KEY } from './constants';
2
2
  import { AppThemeType, ThemeConfigType, ThemePreferenceType } from '../../Providers/ThemeProvider/types';
3
3
  import { ResourceKindType } from '../../types';
4
+ export type NavigationItemID = 'application-management-overview' | 'application-management-applications' | 'application-management-application-groups' | 'application-management-chart-store' | 'application-management-bulk-edit' | 'application-management-configurations' | 'application-management-policies' | 'application-management-others' | 'infrastructure-management-overview' | 'infrastructure-management-resource-browser' | 'infrastructure-management-intercepted-changes' | 'infrastructure-management-resource-watcher' | 'infrastructure-management-catalog-framework' | 'software-release-management-overview' | 'software-release-management-software-release' | 'cost-visibility-overview' | 'cost-visibility-trends' | 'cost-visibility-cost-breakdown' | 'cost-visibility-configurations' | 'security-center-overview' | 'security-center-application-security' | 'security-center-security-policies' | 'automation-and-enablement-jobs' | 'automation-and-enablement-alerting' | 'automation-and-enablement-incident-response' | 'automation-and-enablement-api-portal' | 'automation-and-enablement-runbook-automation' | 'global-configuration-sso-login-services' | 'global-configuration-host-urls' | 'global-configuration-cluster-and-environments' | 'global-configuration-container-oci-registry' | 'global-configuration-authorization';
5
+ export type NavigationSubMenuItemID = 'application-management-configurations-gitops' | 'application-management-configurations-git-accounts' | 'application-management-configurations-external-links' | 'application-management-configurations-chart-repository' | 'application-management-configurations-deployment-charts' | 'application-management-configurations-notifications' | 'application-management-configurations-catalog-frameworks' | 'application-management-configurations-scoped-variables' | 'application-management-configurations-build-infra' | 'application-management-policies-deployment-window' | 'application-management-policies-approval-policy' | 'application-management-policies-plugin-policy' | 'application-management-policies-pull-image-digest' | 'application-management-policies-tag-policy' | 'application-management-policies-filter-conditions' | 'application-management-policies-lock-deployment-configuration' | 'application-management-others-application-templates' | 'application-management-others-projects' | 'cost-visibility-cost-breakdown-clusters' | 'cost-visibility-cost-breakdown-environments' | 'cost-visibility-cost-breakdown-projects' | 'cost-visibility-cost-breakdown-applications' | 'global-configuration-authorization-user-permissions' | 'global-configuration-authorization-permission-groups' | 'global-configuration-authorization-api-tokens';
4
6
  export interface GetUserPreferencesQueryParamsType {
5
7
  key: typeof USER_PREFERENCES_ATTRIBUTE_KEY;
6
8
  }
@@ -36,13 +38,18 @@ export interface GetUserPreferencesParsedDTO {
36
38
  *
37
39
  */
38
40
  resources?: UserPreferenceResourceType;
41
+ commandBar: {
42
+ recentNavigationActions: {
43
+ id: NavigationItemID | NavigationSubMenuItemID;
44
+ }[];
45
+ };
39
46
  }
40
47
  export interface UserPreferencesPayloadValueType extends GetUserPreferencesParsedDTO {
41
48
  }
42
49
  export interface UpdateUserPreferencesPayloadType extends Pick<GetUserPreferencesQueryParamsType, 'key'> {
43
50
  value: string;
44
51
  }
45
- export interface UserPreferencesType {
52
+ export interface UserPreferencesType extends Pick<GetUserPreferencesParsedDTO, 'commandBar'> {
46
53
  /**
47
54
  * Preferred theme for the user
48
55
  * If null, would forcibly show user theme switcher dialog for user to select
@@ -69,7 +76,7 @@ export interface UseUserPreferencesProps {
69
76
  migrateUserPreferences?: (userPreferencesResponse: UserPreferencesType) => Promise<UserPreferencesType>;
70
77
  recentlyVisitedFetchConfig?: RecentlyVisitedFetchConfigType;
71
78
  }
72
- export type UserPathValueMapType = {
79
+ type UserPathValueMapType = {
73
80
  path: 'themePreference';
74
81
  value: Required<Pick<UpdatedUserPreferencesType, 'themePreference' | 'appTheme'>>;
75
82
  resourceKind?: never;
@@ -84,7 +91,28 @@ export type UserPathValueMapType = {
84
91
  value: Required<BaseRecentlyVisitedEntitiesTypes[]>;
85
92
  resourceKind: PreferredResourceKindType;
86
93
  userPreferencesResponse?: UserPreferencesType;
94
+ } | {
95
+ path: 'commandBar.recentNavigationActions';
96
+ value: UserPreferencesType['commandBar']['recentNavigationActions'];
97
+ resourceKind?: never;
98
+ userPreferencesResponse?: never;
87
99
  };
100
+ export type GetUserPreferencePayloadParams = {
101
+ userPreferencesResponse: UserPreferencesType;
102
+ resourceKind?: PreferredResourceKindType;
103
+ } & ({
104
+ path: 'themePreference';
105
+ value: Required<Pick<UpdatedUserPreferencesType, 'themePreference' | 'appTheme'>>;
106
+ } | {
107
+ path: 'pipelineRBACViewSelectedTab';
108
+ value: Required<Pick<UserPreferencesType, 'pipelineRBACViewSelectedTab'>>;
109
+ } | {
110
+ path: 'resources';
111
+ value: Required<BaseRecentlyVisitedEntitiesTypes[]>;
112
+ } | {
113
+ path: 'commandBar.recentNavigationActions';
114
+ value: UserPreferencesType['commandBar']['recentNavigationActions'];
115
+ });
88
116
  export type UserPreferenceResourceProps = UserPathValueMapType & {
89
117
  shouldThrowError?: boolean;
90
118
  userPreferencesResponse?: UserPreferencesType;
@@ -92,3 +120,4 @@ export type UserPreferenceResourceProps = UserPathValueMapType & {
92
120
  export interface UserPreferenceFilteredListTypes extends UserPreferenceRecentlyVisitedAppsTypes {
93
121
  userPreferencesResponse?: UserPreferencesType;
94
122
  }
123
+ export {};
@@ -0,0 +1,17 @@
1
+ <!--
2
+ - Copyright (c) 2024. Devtron Inc.
3
+ -
4
+ - Licensed under the Apache License, Version 2.0 (the "License");
5
+ - you may not use this file except in compliance with the License.
6
+ - You may obtain a copy of the License at
7
+ -
8
+ - http://www.apache.org/licenses/LICENSE-2.0
9
+ -
10
+ - Unless required by applicable law or agreed to in writing, software
11
+ - distributed under the License is distributed on an "AS IS" BASIS,
12
+ - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ - See the License for the specific language governing permissions and
14
+ - limitations under the License.
15
+ -->
16
+
17
+ <svg width="250" height="200" viewBox="0 0 250 200" fill="none" xmlns="http://www.w3.org/2000/svg"><style>@keyframes rotate-clockwise{0%{transform:rotate(0deg)}to{transform:rotate(360deg)}}@keyframes rotate-counter-clockwise{0%{transform:rotate(360deg)}to{transform:rotate(0deg)}}</style><path d="M65.56 191.308c0-.116 1.153-3.288 2.538-7.095l2.538-6.922 6.46-.173 6.403-.173 2.768 2.307c2.308 1.962 12.796 7.547 14.132 8.307q1.337.759 3.526 3.864-38.365-.058-38.365-.115" fill="#80AEF2"/><path d="M32 191.308c0-.116 1.154-3.288 2.538-7.095l2.538-6.922 6.46-.173 6.403-.173 2.769 2.307c2.307 1.962 12.795 7.547 14.132 8.307q1.336.759 3.525 3.864Q32 191.365 32 191.308" fill="#94BBF8"/><path d="M75.655 109.836q1.635 4.737 2.208 8.22.57 3.482 6.411 59.5H66.296q-2.166-3.927-2.166-5.518c0-1.59.913-3.77.913-6.068q0-2.299-6.104-15.871l3.931-39.349z" fill="#1D225F"/><path fill-rule="evenodd" clip-rule="evenodd" d="M50.554 177.555H33.76q-.6-2.078-1.175-5.606c-.75-4.788-.18-7.96 3.05-14.536 3.23-6.518 4.866-10.072 4.866-13.764.058-5.768 1.222-11.316 4.28-17.315 2.364-4.73 3.495-5.086 3.725-7.97l.42-6.202h21.078q.769 2.15.55 7.925t-20 57.468" fill="url(#paint0_linear_2664_5084)"/><path d="m95.94 50.818 16.84-20.83h20.191l-17.439 20.83z" fill="#98BDF9"/><path d="M118.14 27.384a2.6 2.6 0 0 1 2.597 2.425l.006.179h-.578a2.025 2.025 0 1 0-2.191 2.018l.166.007v.578a2.603 2.603 0 1 1 0-5.207m6.943 0a2.604 2.604 0 0 1 2.598 2.425l.006.179h-.579a2.024 2.024 0 1 0-2.191 2.018l.166.007v.578a2.603 2.603 0 1 1 0-5.207" fill="#2174DB"/><path d="M94.472 54.83q4.21-1.444 8.242-4.012h6.871q-3.562 3.255-4.791 4.61t-5.068 5.205q-1.636 8.672-3.487 7.285c-1.85-1.386-7.939-10.897-1.767-13.09z" fill="#F3A29D"/><path d="M98.254 60.654q6.545-2.502 8.447-3.567c1.5-.865 2.077-1.673 3.807-5.307.23-.46.692-2.365 1.096-4.153.923-4.557 2.423-4.326 2.538.346.058 1.27.346 2.423.692 2.538.288.116 1.961-1.5 3.634-3.576s3.288-3.75 3.576-3.75c.692 0 .692 5.307-.057 7.153-.289.865-4.73 5.71-9.864 10.844q-5.133 5.134-15.026 13.937z" fill="#FAB6AF"/><path d="M78.581 35.774q1.157-4.629 2.315-5.787c-1.157-1.157-2.315-2.314-4.63-3.47q-1.156 2.313-4.628 4.628 0 3.47 2.314 4.63 2.314 1.155 4.63 0" fill="#F3A29D"/><path d="M49.308 112.98c-2.365-.174-6.23-.981-8.48-1.731l-4.21-1.385-.115-4.326c-.289-11.94.577-20.65 3.288-31.782C43.482 58.47 54.096 42.84 66.96 33.667c4.96-3.576 5.076-3.576 6.518-1.153.634 1.153 1.96 2.307 2.884 2.653l2.161.594q-4.57 43.986 3.531 72.917c-1.157 1.158-1.946 1.682-2.808 2.052-1.039.403-2.365.807-3.057.865-.693.058-3 .519-5.25 1.038-4.21.923-13.382 1.096-21.63.346z" fill="url(#paint1_linear_2664_5084)"/><path fill-rule="evenodd" clip-rule="evenodd" d="M94.472 54.828 96.24 66.14l-19.972 2.645 1.106-15.653q3.212 2.602 6.608 3.123t10.49-1.426z" fill="#D6D7D8"/><path d="m98.254 60.653 4.903 23.145q-.853 1.736-4.324 2.314c-5.208.579-10.415-1.736-16.78-1.736s-6.09 4.05-15.348.58q-9.258-3.472-7.523-31.246l18.054-1.73q-.117 8.673 2.198 10.409 2.269 1.701 18.17-1.6z" fill="#E9E9E9"/><path d="M90.305 15.444q1.605 2.28 1.253 6.049c-.062.656-.376.883-.376 2.052q0 1.68.212 4.157l-2.317.16q-3.333 3.618-7.055 3.208-3.72-.412-5.31-3.207-3.269-6.035 1.675-10.262 4.945-4.227 11.918-2.157" fill="#FAB6AF"/><path fill-rule="evenodd" clip-rule="evenodd" d="M79.646 8c2.598 0 5.717 1.017 7.994 2.74 2.277 1.722 3.845 3.02 4.55 5.097q.705 2.076-.664 5.791.195-3.517-.533-3.906c-.67 1.653-1.595 1.987-2.703 2.787-.62.448-2.791.518-4.917.897-2.628 1.722-4.303 3.33-4.867 4.86-.448 1.218-.402 2.608.148 4.177l.126.339-.54.21c-.714-1.833-.81-3.478-.277-4.925.522-1.417 1.85-2.838 3.894-4.321-1.09.307-2.051.754-2.634 1.449q-1.919 2.29-2.246 6.716-4.149-.75-7.617-2.8t-6.398-5.483q.595-1.251 1.521-2.07c.671-.592 1.935-1.108 3.169-1.822l-.065.021-1.204.401c-1.26.424-1.956.713-2.395 1.032-.83.601-1.26 1.275-1.313 2.032l-.005.191-.579.007c-.012-1.039.516-1.943 1.557-2.699.427-.31 1.013-.573 1.983-.916l1.756-.59.61-.213a15 15 0 0 0 1.439-.584c1.296-1.399 2.17-3.971 4.09-5.678C75.641 8.855 77.048 8 79.645 8z" fill="#E94A47"/><path d="M84.36 21.575c.597-1.64 2.17-2.597 3.535-2.1 1.06.386 1.654 1.524 1.586 2.781q.54-.136.988-.136l.208.007q.382.029.636.114c.512-1.27 1.708-2.023 2.75-1.644 1.07.39 1.498 1.803 1.012 3.14-.487 1.337-1.723 2.144-2.794 1.754-.953-.347-1.397-1.504-1.14-2.697a2 2 0 0 0-.508-.09q-.501-.037-1.208.165l-.031.01a4 4 0 0 1-.14.477c-.597 1.64-2.17 2.597-3.536 2.1s-1.955-2.24-1.358-3.88m9.504-.434c-.73-.266-1.664.343-2.052 1.408-.387 1.066-.064 2.132.667 2.398.73.266 1.664-.343 2.052-1.408s.064-2.132-.667-2.398m-6.167-1.122c-1.036-.377-2.297.39-2.793 1.754s-.024 2.762 1.012 3.14c1.036.376 2.298-.392 2.794-1.755s.023-2.762-1.013-3.14z" fill="#222768"/><path d="M153.783 115.079c-.449-.4-.897-2.243-1.097-4.187-.399-3.938-.698-4.486-3.589-6.031l-2.093-1.147-3.788 1.545c-2.094.848-4.087 1.446-4.436 1.296-.947-.349-6.78-10.716-6.78-12.012 0-.698 1.048-1.894 3.24-3.589l3.24-2.542V82.93l-3.24-2.542c-2.043-1.595-3.24-2.89-3.24-3.539 0-1.047 5.085-10.417 6.331-11.663.598-.549 1.196-.499 4.037.598 4.736 1.844 5.085 1.894 7.627.25 2.243-1.447 2.292-1.546 2.641-4.637.648-5.93-.15-5.383 8.075-5.383 8.324 0 7.776-.349 8.424 5.533l.349 3.24 2.592 1.395 2.592 1.396 3.19-1.296c4.037-1.645 5.183-1.645 6.38.1 2.093 3.04 5.582 9.57 5.582 10.467 0 .648-1.196 1.894-3.24 3.39l-3.19 2.442v2.99l-.05 2.991 3.24 2.443c2.044 1.545 3.24 2.79 3.24 3.39 0 1.046-5.582 10.915-6.679 11.812-.548.449-1.645.2-4.586-.997l-3.937-1.545-2.542 1.396-2.542 1.395-.599 3.988c-.348 2.691-.847 4.237-1.395 4.685-1.296.947-12.81.848-13.757-.15m11.414-19.639c6.58-2.99 8.374-11.265 3.639-16.698-6.28-7.128-17.844-3.29-18.792 6.23-.398 4.287 2.991 9.371 7.377 11.066 1.595.598 5.832.3 7.776-.598" fill="var(--B700)" style="animation:rotate-clockwise 2s infinite linear;transform-origin:center;transform-box:fill-box"/><path d="M176.263 146.231c-1.845-1.146-3.49-2.243-3.64-2.442-.149-.25.2-1.545.749-2.841.996-2.293.996-2.443.15-4.038-.699-1.345-1.197-1.644-3.141-1.894-3.639-.498-3.49-.249-3.49-5.433v-4.735l1.895-.299c3.589-.598 3.838-.698 4.785-2.243.897-1.545.847-1.595-.15-4.037-.598-1.346-.947-2.692-.797-2.891.299-.549 7.128-4.536 7.726-4.536.249 0 1.296.997 2.342 2.243 1.446 1.744 2.194 2.243 3.39 2.243s1.944-.499 3.39-2.243c1.046-1.246 2.093-2.243 2.342-2.243.598 0 7.427 3.987 7.726 4.536.15.2-.2 1.545-.748 2.89-.997 2.293-1.047 2.543-.299 3.988.798 1.496 1.196 1.695 4.935 2.293l1.844.3v4.734c0 5.184.15 4.935-3.49 5.433-1.893.25-2.442.549-3.14 1.894-.797 1.546-.797 1.695.15 4.187l.997 2.592-1.396.947c-2.542 1.745-6.03 3.589-6.729 3.589-.448 0-1.445-.947-2.292-2.044-1.247-1.744-1.795-2.093-3.29-2.143s-1.944.25-3.34 2.094c-.847 1.146-1.944 2.093-2.342 2.093-.449 0-2.293-.897-4.137-1.994m13.109-10.716c4.486-2.343 4.486-9.371-.1-11.813-5.832-3.14-12.212 3.19-9.171 9.121 1.595 3.09 6.03 4.337 9.27 2.692z" fill="var(--R500)" style="animation:rotate-counter-clockwise 2s infinite linear;transform-origin:center;transform-box:fill-box"/><defs><linearGradient id="paint0_linear_2664_5084" x1="53.366" y1="112.162" x2="38.26" y2="175.224" gradientUnits="userSpaceOnUse"><stop stop-color="#2A318C"/><stop offset="1" stop-color="#1D225F"/></linearGradient><linearGradient id="paint1_linear_2664_5084" x1="59.252" y1="30.82" x2="59.252" y2="113.448" gradientUnits="userSpaceOnUse"><stop stop-color="#EEE"/><stop offset="1" stop-color="#D6D7D8"/></linearGradient></defs></svg>