@devtron-labs/devtron-fe-common-lib 1.8.2-beta-4 → 1.8.2-beta-5

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.
Files changed (29) hide show
  1. package/dist/{@code-editor-DAX_tz5C.js → @code-editor-n5LXKVDW.js} +4143 -4130
  2. package/dist/{@common-rjsf-CVXN3g04.js → @common-rjsf-DhBG-a7N.js} +1 -1
  3. package/dist/Common/CodeEditor/types.d.ts +1 -1
  4. package/dist/Common/Common.service.d.ts +8 -1
  5. package/dist/Common/Constants.d.ts +12 -0
  6. package/dist/Common/Hooks/UseSuperAdmin/UseSuperAdmin.d.ts +6 -0
  7. package/dist/Common/Hooks/UseSuperAdmin/types.d.ts +3 -0
  8. package/dist/Common/Hooks/index.d.ts +1 -1
  9. package/dist/Common/Toggle/Toggle.d.ts +1 -2
  10. package/dist/Common/Types.d.ts +0 -19
  11. package/dist/Shared/Components/Icon/Icon.d.ts +6 -2
  12. package/dist/Shared/Components/SSOProviderIcon/SSOProviderIcon.d.ts +2 -0
  13. package/dist/Shared/Components/SSOProviderIcon/index.d.ts +2 -0
  14. package/dist/Shared/Components/SSOProviderIcon/types.d.ts +10 -0
  15. package/dist/Shared/Components/index.d.ts +1 -0
  16. package/dist/Shared/types.d.ts +3 -19
  17. package/dist/assets/ic-google.adce3079.svg +6 -0
  18. package/dist/assets/ic-ldap.1742ec39.svg +3 -0
  19. package/dist/assets/ic-login-devtron-logo.702a1d04.svg +22 -0
  20. package/dist/assets/ic-microsoft.4767e309.svg +6 -0
  21. package/dist/assets/ic-oidc.27839a0d.svg +4 -0
  22. package/dist/assets/ic-openshift.afcfadec.svg +10 -0
  23. package/dist/index.js +776 -775
  24. package/package.json +1 -1
  25. package/dist/Common/Hooks/UseGetUserRoles/UseGetUserRoles.d.ts +0 -7
  26. package/dist/Common/Hooks/UseGetUserRoles/index.d.ts +0 -1
  27. package/dist/Common/Hooks/UseGetUserRoles/types.d.ts +0 -7
  28. package/dist/assets/ic-crown.868ff2a9.svg +0 -3
  29. package/dist/assets/ic-user-key.523f6939.svg +0 -4
@@ -1,7 +1,7 @@
1
1
  import { j as n, J as y, e as k, b as W } from "./@vendor-CIA81cZg.js";
2
2
  import J, { forwardRef as V, useMemo as P } from "react";
3
3
  import K, { getDefaultRegistry as q } from "@rjsf/core";
4
- import { T as F, j as N, c as v, b as S, a as Y, i as z, d as w, e as E, S as G } from "./@code-editor-DAX_tz5C.js";
4
+ import { T as F, j as N, c as v, b as S, a as Y, i as z, d as w, e as E, S as G } from "./@code-editor-n5LXKVDW.js";
5
5
  import Q, { components as D } from "react-select";
6
6
  import { ReactComponent as X } from "./assets/ic-chevron-down.fc70d7a7.svg";
7
7
  import { getUiOptions as B, getTemplate as $, getSubmitButtonOptions as Z, ADDITIONAL_PROPERTY_FLAG as L, errorId as ee, englishStringTranslator as te, TranslatableString as ne, titleId as re, canExpand as se, deepEquals as ae } from "@rjsf/utils";
@@ -74,7 +74,7 @@ export interface CodeEditorHeaderComposition {
74
74
  ValidationError?: React.FC<any>;
75
75
  Clipboard?: React.FC<any>;
76
76
  }
77
- type ActionTypes = 'changeLanguage' | 'setDiff' | 'setTheme' | 'setCode' | 'setDefaultCode' | 'setHeight';
77
+ export type ActionTypes = 'changeLanguage' | 'setDiff' | 'setTheme' | 'setCode' | 'setDefaultCode' | 'setHeight';
78
78
  export interface Action {
79
79
  type: ActionTypes;
80
80
  value: any;
@@ -1,8 +1,14 @@
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 } from './Types';
3
+ import { TeamList, ResponseType, DeploymentNodeType, CDMaterialServiceEnum, CDMaterialServiceQueryParams, CDMaterialResponseType, CDMaterialFilterQuery, EnvironmentListHelmResponse, UserApprovalMetadataType, GlobalVariableOptionType } from './Types';
4
4
  import { ApiResourceType } from '../Pages';
5
5
  export declare const getTeamListMin: () => Promise<TeamList>;
6
+ interface UserRole extends ResponseType {
7
+ result?: {
8
+ roles: string[];
9
+ superAdmin: boolean;
10
+ };
11
+ }
6
12
  export declare const SourceTypeMap: {
7
13
  BranchFixed: string;
8
14
  WEBHOOK: string;
@@ -35,3 +41,4 @@ export declare const getGlobalVariables: ({ appId, isCD, abortControllerRef, }:
35
41
  isCD?: boolean;
36
42
  abortControllerRef?: MutableRefObject<AbortController>;
37
43
  }) => Promise<GlobalVariableOptionType[]>;
44
+ export {};
@@ -336,3 +336,15 @@ export declare enum GitProviderType {
336
336
  */
337
337
  export declare const getFormattedSchema: (schema?: string) => string;
338
338
  export declare const UNCHANGED_ARRAY_ELEMENT_SYMBOL: unique symbol;
339
+ /**
340
+ * Authorization config types for SSO Login
341
+ */
342
+ export declare enum SSOProvider {
343
+ google = "google",
344
+ github = "github",
345
+ gitlab = "gitlab",
346
+ microsoft = "microsoft",
347
+ ldap = "ldap",
348
+ oidc = "oidc",
349
+ openshift = "openshift"
350
+ }
@@ -0,0 +1,6 @@
1
+ import { useSuperAdminType } from './types';
2
+ /**
3
+ * @description It will return isSuperAdmin and would be set to false by default, might need few optimizations like dep, etc
4
+ * @returns {useSuperAdminType} isSuperAdmin
5
+ */
6
+ export declare const useSuperAdmin: () => useSuperAdminType;
@@ -0,0 +1,3 @@
1
+ export interface useSuperAdminType {
2
+ isSuperAdmin: boolean;
3
+ }
@@ -1,4 +1,4 @@
1
- export { useGetUserRoles } from './UseGetUserRoles';
1
+ export { useSuperAdmin } from './UseSuperAdmin/UseSuperAdmin';
2
2
  export { useClickOutside } from './UseClickOutside/UseClickOutside';
3
3
  export { useWindowSize } from './UseWindowSize/UseWindowSize';
4
4
  export * from './useUrlFilters';
@@ -1,4 +1,4 @@
1
- declare const Toggle: ({ selected, onSelect, color, rootClassName, disabled, dataTestId, Icon, iconClass, throttleOnChange, shouldToggleValueOnLabelClick, ...props }: {
1
+ declare const Toggle: ({ selected, onSelect, color, rootClassName, disabled, dataTestId, Icon, iconClass, throttleOnChange, ...props }: {
2
2
  [x: string]: any;
3
3
  selected?: boolean;
4
4
  onSelect?: any;
@@ -9,6 +9,5 @@ declare const Toggle: ({ selected, onSelect, color, rootClassName, disabled, dat
9
9
  Icon?: any;
10
10
  iconClass?: string;
11
11
  throttleOnChange?: boolean;
12
- shouldToggleValueOnLabelClick?: boolean;
13
12
  }) => JSX.Element;
14
13
  export default Toggle;
@@ -917,23 +917,4 @@ export type GlobalVariableOptionType = Omit<GlobalVariableDTO, 'name'> & {
917
917
  value: string;
918
918
  variableType: Extract<RefVariableType, RefVariableType.GLOBAL>;
919
919
  };
920
- export interface UserRole extends ResponseType {
921
- result?: {
922
- roles: string[];
923
- superAdmin: boolean;
924
- /**
925
- * Defines if a user is access manager and can manage all access
926
- */
927
- canManageAllAccess?: boolean;
928
- };
929
- }
930
- export declare enum ActionTypes {
931
- MANAGER = "manager",
932
- ADMIN = "admin",
933
- TRIGGER = "trigger",
934
- VIEW = "view",
935
- UPDATE = "update",
936
- EDIT = "edit",
937
- APPROVER = "approver"
938
- }
939
920
  export {};
@@ -15,7 +15,6 @@ export declare const iconMap: {
15
15
  'ic-close-small': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
16
16
  'ic-code': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
17
17
  'ic-container': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
18
- 'ic-crown': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
19
18
  'ic-cube': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
20
19
  'ic-dockerhub': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
21
20
  'ic-ecr': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -28,6 +27,7 @@ export declare const iconMap: {
28
27
  'ic-gitlab': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
29
28
  'ic-google-artifact-registry': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
30
29
  'ic-google-container-registry': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
30
+ 'ic-google': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
31
31
  'ic-grid-view': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
32
32
  'ic-heart-green': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
33
33
  'ic-heart-red-animated': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -40,11 +40,16 @@ export declare const iconMap: {
40
40
  'ic-info-outline': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
41
41
  'ic-job-color': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
42
42
  'ic-k8s-job': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
43
+ 'ic-ldap': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
44
+ 'ic-login-devtron-logo': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
45
+ 'ic-microsoft': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
43
46
  'ic-missing': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
44
47
  'ic-monitoring': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
45
48
  'ic-node-script': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
49
+ 'ic-oidc': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
46
50
  'ic-open-box': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
47
51
  'ic-open-in-new': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
52
+ 'ic-openshift': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
48
53
  'ic-out-of-sync': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
49
54
  'ic-paper-plane-color': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
50
55
  'ic-quay': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -54,7 +59,6 @@ export declare const iconMap: {
54
59
  'ic-suspended': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
55
60
  'ic-timeout-two-dash': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
56
61
  'ic-unknown': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
57
- 'ic-user-key': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
58
62
  'ic-warning': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
59
63
  };
60
64
  export type IconName = keyof typeof iconMap;
@@ -0,0 +1,2 @@
1
+ import { SSOProviderIconProps } from './types';
2
+ export declare const SSOProviderIcon: ({ provider, size }: SSOProviderIconProps) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ export * from './SSOProviderIcon';
2
+ export * from './types';
@@ -0,0 +1,10 @@
1
+ import { SSOProvider } from '../../../Common/Constants';
2
+ import { IconsProps } from '../Icon';
3
+ export interface SSOProviderIconProps {
4
+ provider: SSOProvider;
5
+ /**
6
+ * The size of the icon in pixels.
7
+ * @default 20
8
+ */
9
+ size?: IconsProps['size'];
10
+ }
@@ -65,3 +65,4 @@ export * from './RegistryIcon';
65
65
  export * from './GitProviderIcon';
66
66
  export * from './CustomInput';
67
67
  export * from './InfoBlock';
68
+ export * from './SSOProviderIcon';
@@ -2,7 +2,6 @@ import { Dayjs } from 'dayjs';
2
2
  import { APIOptions, ApprovalConfigDataType } from '../Common/Types';
3
3
  import { OptionType, CommonNodeAttr, VulnerabilityType, DeploymentAppTypes, ServerErrors, SortingParams, TriggerBlockType, ValueConstraintType, VariableType, RefVariableType, PluginType } from '../Common';
4
4
  import { BASE_CONFIGURATION_ENV_ID, EnvironmentTypeEnum, PatchOperationType } from './constants';
5
- import { SelectPickerOptionType } from './Components';
6
5
  export declare enum EnvType {
7
6
  CHART = "helm_charts",
8
7
  APPLICATION = "apps"
@@ -641,26 +640,11 @@ export type MetaPossibleRoles = Record<CustomRoles['roleName'], {
641
640
  }>;
642
641
  export interface CustomRoleAndMeta {
643
642
  customRoles: CustomRoles[];
644
- possibleRolesMetaForDevtron: MetaPossibleRoles;
645
- possibleJobRoles: SelectPickerOptionType<string>[];
643
+ possibleRolesMeta: MetaPossibleRoles;
644
+ possibleRolesMetaForHelm: MetaPossibleRoles;
646
645
  possibleRolesMetaForCluster: MetaPossibleRoles;
646
+ possibleRolesMetaForJob: MetaPossibleRoles;
647
647
  }
648
- export interface UserRoleConfig {
649
- baseRole: string;
650
- /**
651
- * Only for devtron apps
652
- */
653
- additionalRoles?: Set<string>;
654
- /**
655
- * Only for devtron apps
656
- */
657
- accessManagerRoles?: Set<string>;
658
- }
659
- export type RoleType = keyof UserRoleConfig;
660
- export type RoleSelectorOptionType = Pick<SelectPickerOptionType, 'label' | 'description'> & {
661
- value: string;
662
- roleType: RoleType;
663
- };
664
648
  interface CommonTabArgsType {
665
649
  /**
666
650
  * Name for the tab.
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path data-style-override="false" fill="#4285F4" d="M21.575 12.225c0-.659-.058-1.284-.158-1.892H12v3.758h5.392c-.242 1.234-.95 2.275-2 2.984v2.5h3.216c1.884-1.742 2.967-4.309 2.967-7.35Z"/>
3
+ <path data-style-override="false" fill="#34A853" d="M12 22c2.7 0 4.958-.9 6.608-2.425l-3.216-2.5c-.9.6-2.042.966-3.392.966-2.608 0-4.817-1.758-5.608-4.133H3.075v2.575C4.717 19.75 8.092 22 12 22Z"/>
4
+ <path data-style-override="false" fill="#FBBC05" d="M6.392 13.908A5.803 5.803 0 0 1 6.075 12c0-.667.117-1.308.317-1.908V7.517H3.075a9.884 9.884 0 0 0 0 8.966l3.317-2.575Z"/>
5
+ <path data-style-override="false" fill="#EA4335" d="M12 5.958c1.475 0 2.792.509 3.833 1.5l2.85-2.85C16.958 2.992 14.7 2 12 2 8.092 2 4.717 4.25 3.075 7.517l3.317 2.575c.791-2.375 3-4.134 5.608-4.134Z"/>
6
+ </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 data-style-override="false" fill="#CB2026" d="M13.636 8.134c.017.006 1.298 2.22 2.576 4.44l.306.531c1.168 2.03 2.246 3.913 2.246 3.933 0 .021-2.867.054-5.71.068l-.516.002-1.507.004h-.475c-1.273 0-2.097-.014-2.09-.032.007-.02.144-.261.368-.655l.184-.322c.433-.755 1.07-1.862 1.734-3.011l.307-.533c1.285-2.222 2.567-4.428 2.578-4.425Zm-7.434-1.28c.014-.003.606.999 1.312 2.229l.27.467.272.474 1.287 2.243.546.952-.745 1.294-.749 1.298-3.697.01L1 15.83l.11-.186.946-1.645.28-.486c1.872-3.25 3.846-6.652 3.866-6.658Zm11.628-.01c.013 0 1.104 1.874 2.28 3.905l.309.533c1.286 2.224 2.572 4.458 2.58 4.497.01.036-.19.046-1.286.049h-2.842l-.05-.078c-.16-.256-3.052-5.309-3.052-5.337 0-.047 2.036-3.57 2.06-3.57ZM9.84 5c.006-.002.109.163.268.427l.178.296c.676 1.132 1.887 3.21 1.939 3.342.014.035-.318.642-.899 1.654-.506.877-.945 1.644-.98 1.701l-.061.1-.09-.136c-.08-.13-.553-.949-1.049-1.814l-.23-.4A104.288 104.288 0 0 1 7.89 8.351c0-.054 1.91-3.341 1.95-3.352Z"/>
3
+ </svg>
@@ -0,0 +1,22 @@
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 xmlns="http://www.w3.org/2000/svg" width="142" height="100" viewBox="0 0 142 100">
18
+ <g fill="none" fill-rule="evenodd">
19
+ <path fill="var(--B500)" d="M101.522 25.335L89.882 7.188a3.34 3.34 0 0 0-3.593-1.828c-1.402.24-2.521 1.411-2.713 2.82a3.338 3.338 0 0 0 .278 1.867l-.004.018.05.077c.1.199.22.387.356.561l1.315 2.068 7.008 10.898-.025.012c.73 1.018.814 2.356.172 3.431-1.991 3.331-6.352 10.438-7.336 11.6a3.705 3.705 0 0 1-2.766.963l-5.467-.391a1.611 1.611 0 0 1-1.165-2.494l2.258-3.486a2.88 2.88 0 0 0 .31-.48l.005-.006.001-.004a2.916 2.916 0 0 0 .239-1.992 2.882 2.882 0 0 0-2.15-2.146 2.904 2.904 0 0 0-3.282 1.569L58.54 52.94c-1.149 1.758.012 4.155 2.11 4.253.048.003.096.004.144.004l21.518-.02a5.249 5.249 0 0 0 4.473-2.51l14.796-24.191a4.835 4.835 0 0 0-.06-5.142M39.759 32.757l11.56 18.198a3.339 3.339 0 0 0 3.584 1.845c1.402-.234 2.527-1.4 2.725-2.807a3.337 3.337 0 0 0-.27-1.87l.004-.017-.049-.077c-.1-.2-.218-.388-.354-.563l-1.305-2.073-6.96-10.93.025-.012c-.725-1.02-.803-2.36-.156-3.432 2.006-3.322 6.399-10.409 7.388-11.566a3.7 3.7 0 0 1 2.77-.951l5.465.415a1.611 1.611 0 0 1 1.154 2.5l-2.274 3.476a2.963 2.963 0 0 0-.313.478l-.003.005-.002.005a2.917 2.917 0 0 0-.248 1.99 2.882 2.882 0 0 0 2.14 2.156 2.903 2.903 0 0 0 3.29-1.554l14.933-22.63c1.157-1.753.006-4.154-2.092-4.262a2.735 2.735 0 0 0-.144-.004L59.11 1a5.248 5.248 0 0 0-4.484 2.49L39.722 27.615a4.836 4.836 0 0 0 .037 5.142"/>
20
+ <path fill="var(--N900)" d="M10.357 94.952c1.077 0 1.945-.218 2.6-.655a4.696 4.696 0 0 0 1.53-1.639 6.307 6.307 0 0 0 .72-2.12c.117-.757.175-1.456.175-2.097 0-.64-.058-1.34-.175-2.098a6.312 6.312 0 0 0-.72-2.119 4.696 4.696 0 0 0-1.53-1.639c-.655-.437-1.523-.655-2.6-.655-1.078 0-1.945.218-2.6.655a4.496 4.496 0 0 0-1.508 1.639 6.595 6.595 0 0 0-.7 2.12 13.85 13.85 0 0 0-.174 2.097c0 .641.058 1.34.175 2.097a6.59 6.59 0 0 0 .7 2.12c.349.656.851 1.202 1.507 1.639.655.437 1.522.655 2.6.655zm5.025-15.038V70h5.2v18.397c0 1.515-.146 2.84-.437 3.977-.291 1.136-.677 2.12-1.158 2.95-.48.83-1.026 1.515-1.638 2.054-.612.539-1.239.983-1.88 1.332-1.514.787-3.219 1.195-5.112 1.224-1.952-.03-3.686-.437-5.2-1.224-.641-.35-1.275-.793-1.901-1.332-.627-.54-1.18-1.217-1.66-2.032-.482-.816-.868-1.792-1.16-2.928C.147 91.282 0 89.956 0 88.44c0-1.515.138-2.84.415-3.977.277-1.136.64-2.119 1.093-2.95.451-.83.961-1.521 1.53-2.075a8.815 8.815 0 0 1 1.769-1.355c1.398-.815 3-1.252 4.807-1.31a9.117 9.117 0 0 1 2.622.655c.728.32 1.47.808 2.229 1.464.504.437.81.777.917 1.02zM38.5 85.6a11.23 11.23 0 0 0-.547-1.398 4.48 4.48 0 0 0-.896-1.267 4.152 4.152 0 0 0-1.355-.896c-.524-.218-1.136-.328-1.835-.328-.7 0-1.311.11-1.835.328a4.143 4.143 0 0 0-1.355.896 4.854 4.854 0 0 0-.918 1.267 6.798 6.798 0 0 0-.524 1.399h9.264zm5.505 0c.058.437.11.89.153 1.355.044.467.066.962.066 1.486v.786H28.929c.058.496.13.999.218 1.508.088.51.233 1.013.437 1.508.32.758.816 1.428 1.486 2.01.67.583 1.602.874 2.797.874 1.194 0 2.126-.29 2.797-.874a5.48 5.48 0 0 0 1.485-2.01h5.681c-.233 1.02-.561 1.908-.983 2.665-.423.758-.889 1.414-1.398 1.967a7.982 7.982 0 0 1-1.639 1.377 12.06 12.06 0 0 1-1.704.895c-1.34.525-2.753.787-4.239.787-1.952-.03-3.686-.437-5.2-1.224a10.973 10.973 0 0 1-1.901-1.332c-.627-.54-1.18-1.217-1.66-2.032-.482-.816-.868-1.792-1.159-2.928-.291-1.136-.437-2.462-.437-3.977 0-1.515.146-2.84.437-3.977.291-1.136.677-2.119 1.158-2.95.48-.83 1.034-1.521 1.66-2.075a10.416 10.416 0 0 1 1.902-1.355c1.514-.815 3.248-1.252 5.2-1.31 1.602.058 3.102.393 4.501 1.004.582.263 1.172.605 1.77 1.027.597.423 1.15.947 1.66 1.574.51.626.962 1.37 1.355 2.228.393.86.677 1.857.852 2.994zM57.245 99.497h-3.583l-7.21-22.156h5.375l5.418 16.563 5.42-16.563h5.374l-7.21 22.156zM75.73 82.542v9.745c.087.35.247.67.48.961.204.234.488.452.853.656.364.204.837.305 1.42.305h3.321v5.288h-5.331c-1.136-.116-2.156-.437-3.059-.961-.758-.437-1.45-1.085-2.076-1.945-.626-.86-.94-2.047-.94-3.562V74.335h5.332v3.006h5.026v5.2H75.73zM84.295 83.809c0-1.515.32-2.702.961-3.561.64-.86 1.34-1.508 2.098-1.945.903-.525 1.923-.845 3.059-.962h6.118v5.288h-4.108c-.583 0-1.056.102-1.42.306-.365.204-.649.423-.852.655a2.488 2.488 0 0 0-.481.962v14.945h-5.375V83.809zM109.203 81.93c-1.078 0-1.945.218-2.6.655a4.5 4.5 0 0 0-1.508 1.639 6.594 6.594 0 0 0-.699 2.12 13.847 13.847 0 0 0-.175 2.097c0 .641.059 1.34.175 2.098.116.758.35 1.463.7 2.119a4.5 4.5 0 0 0 1.507 1.639c.655.437 1.522.655 2.6.655s1.945-.218 2.6-.655a4.496 4.496 0 0 0 1.508-1.639c.35-.656.582-1.361.699-2.12.116-.757.175-1.456.175-2.097 0-.64-.059-1.34-.175-2.097a6.608 6.608 0 0 0-.7-2.12 4.496 4.496 0 0 0-1.507-1.639c-.655-.437-1.522-.655-2.6-.655M98.846 88.44c0-1.514.146-2.84.437-3.977.291-1.136.678-2.119 1.158-2.95.481-.83 1.034-1.521 1.66-2.075a10.44 10.44 0 0 1 1.902-1.355c1.514-.815 3.248-1.252 5.2-1.31 1.923.058 3.642.495 5.157 1.31.64.35 1.274.802 1.9 1.355.627.554 1.18 1.245 1.661 2.076.48.83.874 1.813 1.18 2.95.306 1.135.459 2.462.459 3.976 0 1.515-.153 2.84-.459 3.977-.306 1.136-.7 2.112-1.18 2.928-.48.816-1.034 1.493-1.66 2.032-.627.539-1.261.983-1.901 1.332-1.515.787-3.234 1.195-5.157 1.224-1.952-.03-3.686-.437-5.2-1.224a10.984 10.984 0 0 1-1.901-1.332c-.627-.54-1.18-1.216-1.66-2.032-.481-.816-.868-1.792-1.159-2.928-.291-1.137-.437-2.462-.437-3.977M131.927 76.773c.087 0 .4.015.94.044.538.03 1.172.153 1.9.371.728.22 1.5.562 2.316 1.027.815.467 1.573 1.137 2.273 2.01.699.874 1.274 1.975 1.726 3.3.451 1.326.677 2.964.677 4.916v11.056h-5.331V88.44c0-.64-.059-1.296-.175-1.966a5.534 5.534 0 0 0-.656-1.836 3.962 3.962 0 0 0-1.354-1.376c-.583-.364-1.355-.547-2.316-.547-.962 0-1.734.183-2.316.547a3.95 3.95 0 0 0-1.355 1.376 5.496 5.496 0 0 0-.655 1.836c-.117.67-.175 1.325-.175 1.966v11.056h-5.332V88.44c0-1.952.226-3.59.678-4.916.451-1.325 1.027-2.426 1.726-3.3.7-.873 1.456-1.543 2.272-2.01.815-.465 1.588-.808 2.316-1.027.728-.218 1.355-.342 1.88-.37.524-.03.844-.045.96-.045"/>
21
+ </g>
22
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20">
2
+ <path data-style-override="false" fill="#F35325" d="M0 0h9.524v9.524H0V0Z"/>
3
+ <path data-style-override="false" fill="#81BC06" d="M10.476 0H20v9.524h-9.524V0Z"/>
4
+ <path data-style-override="false" fill="#05A6F0" d="M0 10.477h9.524V20H0v-9.523Z"/>
5
+ <path data-style-override="false" fill="#FFBA08" d="M10.476 10.477H20V20h-9.524v-9.523Z"/>
6
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path data-style-override="false" fill="#F8931E" d="M11.01 4.621v16.875l3-1.412V3.156l-3 1.465Z"/>
3
+ <path data-style-override="false" fill="#B3B3B3" d="M11.01 21.496v-1.88c-3.424-.43-6-2.3-6-4.543 0-2.125 2.315-3.915 5.473-4.462V8.706c-4.83.583-8.474 3.212-8.474 6.367 0 3.27 3.912 5.973 9 6.423Zm10.803-7.625-.414-4.3-1.543.87-.217-.131c-1.4-.801-3.156-1.368-5.103-1.604v1.905c1.175.204 2.235.579 3.101 1.08l-1.626.918 5.802 1.262Z"/>
4
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path data-style-override="false" fill="#DA2430" d="m7.388 11.16-3.533 1.285c.046.566.143 1.125.28 1.674l3.356-1.222a6.656 6.656 0 0 1-.102-1.738M23 7.253c-.247-.508-.532-1-.862-1.462l-3.531 1.285c.41.42.755.893 1.038 1.399L23 7.253Z"/>
3
+ <path data-style-override="false" fill="#DA2430" d="M16.733 7.232a6.46 6.46 0 0 0-1.505-.979 6.57 6.57 0 0 0-8.95 3.735 6.748 6.748 0 0 0-.346 1.69l-.012.004-.001.013-2.126.774-1.368.505v-.008l-.038.014a10.039 10.039 0 0 1 1.23-5.675C6.13 2.627 11.844.67 16.663 2.955a9.969 9.969 0 0 1 2.642 1.82c.51.473.966.994 1.364 1.551l-3.532 1.286a5.84 5.84 0 0 0-.055-.055l-.01.003a6.816 6.816 0 0 0-.339-.328Z"/>
4
+ <path data-style-override="false" fill="#E82429" d="m2.584 18.68-.006.002A10.235 10.235 0 0 1 1 15.262l3.356-1.223.002.011.022-.008v.001a6.741 6.741 0 0 0 1.055 2.55c.2.285.422.554.668.806l-.014.005.026.027-3.5 1.294-.031-.045Z"/>
5
+ <path data-style-override="false" fill="#DA2430" d="M15.914 17.776a6.563 6.563 0 0 1-6.234.373 6.494 6.494 0 0 1-1.912-1.356l-3.524 1.283.027.037-.002.001a9.984 9.984 0 0 0 3.913 3.31c3.498 1.657 7.467 1.081 10.341-1.148a10.043 10.043 0 0 0 3.087-3.805 10.003 10.003 0 0 0 .91-5.046l-.099.035-.004-.054-3.5 1.293a6.609 6.609 0 0 1-.588 2.288 6.548 6.548 0 0 1-2.415 2.79Z"/>
6
+ <path data-style-override="false" fill="#E82429" d="m19.81 8.414.053-.02c.553 1.136.89 2.371.99 3.636l-3.524 1.282.002-.026-.067.024a6.73 6.73 0 0 0-.815-3.727L19.78 8.35l.03.063Z"/>
7
+ <path data-style-override="false" fill="#C22035" d="m7.393 11.138-3.508 1.296c.045.572.141 1.136.278 1.689l3.332-1.233a6.699 6.699 0 0 1-.101-1.752M22.895 7.2a10.23 10.23 0 0 0-.856-1.475L18.532 7.02c.408.424.75.9 1.03 1.41l3.333-1.23Z"/>
8
+ <path data-style-override="false" fill="#AC223B" d="m3.884 12.435 3.5-1.282-.015.703-3.376 1.275-.109-.697v.001ZM18.533 7.01l3.554-1.219.369.557-3.453 1.221-.47-.559Z"/>
9
+ <path data-style-override="false" fill="#B92135" d="m4.27 18.101 3.503-1.275 1.06 1-3.674 1.38-.89-1.105Zm18.206-6.685-3.559 1.283-.262 1.425 3.794-1.353.027-1.355Z"/>
10
+ </svg>