@devtron-labs/devtron-fe-common-lib 1.17.0-pre-9 → 1.17.1
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-DcQ7PPhd.js → @code-editor-CXQ0yUkc.js} +8989 -9605
- package/dist/@common-rjsf-CDMxkHD5.js +609 -0
- package/dist/Common/Hooks/index.d.ts +0 -1
- package/dist/Common/RJSF/constants.d.ts +0 -1
- package/dist/Common/RJSF/utils.d.ts +1 -1
- package/dist/Common/Tooltip/constants.d.ts +1 -0
- package/dist/Pages/ResourceBrowser/ResourceBrowser.Types.d.ts +1 -0
- package/dist/Shared/Components/ActionMenu/types.d.ts +33 -2
- package/dist/Shared/Components/CollapsibleList/CollapsibleList.component.d.ts +0 -3
- package/dist/Shared/Components/Icon/Icon.d.ts +0 -4
- package/dist/Shared/Components/Security/SecurityModal/config/Sidebar.d.ts +3 -6
- package/dist/Shared/Components/Security/SecurityModal/config/index.d.ts +1 -1
- package/dist/Shared/Components/Security/SecurityModal/index.d.ts +2 -2
- package/dist/Shared/Components/Security/SecurityModal/types.d.ts +6 -0
- package/dist/Shared/Components/Security/types.d.ts +1 -5
- package/dist/Shared/Components/SelectPicker/SelectPicker.component.d.ts +1 -1
- package/dist/Shared/Components/SelectPicker/index.d.ts +0 -1
- package/dist/Shared/Components/SelectPicker/type.d.ts +2 -7
- package/dist/Shared/Components/index.d.ts +0 -2
- package/dist/Shared/Hooks/index.d.ts +1 -0
- package/dist/Shared/Hooks/useIsSecureConnection/index.d.ts +1 -0
- package/dist/Shared/Hooks/useIsSecureConnection/useIsSecureConnection.d.ts +1 -0
- package/dist/Shared/Hooks/useUserPreferences/constants.d.ts +0 -2
- package/dist/Shared/Hooks/useUserPreferences/index.d.ts +1 -1
- package/dist/Shared/Hooks/useUserPreferences/service.d.ts +2 -22
- package/dist/Shared/Hooks/useUserPreferences/types.d.ts +11 -24
- package/dist/Shared/Hooks/useUserPreferences/useUserPrefrences.d.ts +3 -5
- package/dist/Shared/Hooks/useUserPreferences/utils.d.ts +4 -3
- package/dist/assets/@code-editor.css +1 -1
- package/dist/assets/@common-rjsf.css +1 -1
- package/dist/index.d.ts +0 -6
- package/dist/index.js +783 -791
- package/package.json +1 -1
- package/dist/@common-rjsf-DMiOG5j_.js +0 -598
- package/dist/Common/Hooks/UseIsTextTruncated/UseIsTextTruncated.d.ts +0 -5
- package/dist/Common/Hooks/UseIsTextTruncated/constants.d.ts +0 -1
- package/dist/Common/Hooks/UseIsTextTruncated/index.d.ts +0 -1
- package/dist/Shared/Components/ContextSwitcher/ContextSwitcher.d.ts +0 -2
- package/dist/Shared/Components/ContextSwitcher/index.d.ts +0 -3
- package/dist/Shared/Components/ContextSwitcher/types.d.ts +0 -14
- package/dist/Shared/Components/ContextSwitcher/utils.d.ts +0 -5
- package/dist/Shared/Components/SelectPicker/GroupedFilterSelectPicker.d.ts +0 -2
- package/dist/Shared/Components/TrailingItem/TrailingItem.component.d.ts +0 -3
- package/dist/Shared/Components/TrailingItem/index.d.ts +0 -2
- package/dist/Shared/Components/TrailingItem/types.d.ts +0 -39
- package/dist/Shared/Components/TreeView/TreeView.component.d.ts +0 -3
- package/dist/Shared/Components/TreeView/TreeViewNodeContent.d.ts +0 -3
- package/dist/Shared/Components/TreeView/constants.d.ts +0 -4
- package/dist/Shared/Components/TreeView/index.d.ts +0 -2
- package/dist/Shared/Components/TreeView/types.d.ts +0 -204
- package/dist/Shared/Components/TreeView/utils.d.ts +0 -22
- package/dist/assets/ic-activity.abf111c7.svg +0 -3
- package/dist/assets/ic-folder.8038c019.svg +0 -3
- package/dist/assets/ic-helm-app.a20cfeb3.svg +0 -4
- package/dist/assets/ic-namespace.8980221f.svg +0 -3
@@ -1,39 +0,0 @@
|
|
1
|
-
import { ReactElement } from 'react';
|
2
|
-
import { OmitNever } from '../../types';
|
3
|
-
import { ButtonProps } from '../Button';
|
4
|
-
import { IconsProps } from '../Icon';
|
5
|
-
import { NumbersCountProps } from '../NumbersCount';
|
6
|
-
import { DTSwitchProps } from '../Switch';
|
7
|
-
export type ActionMenuItemIconType = Pick<IconsProps, 'name'> & {
|
8
|
-
/** @default 'N800' */
|
9
|
-
color?: IconsProps['color'];
|
10
|
-
};
|
11
|
-
export type TrailingItemType = {
|
12
|
-
type: 'icon';
|
13
|
-
config: ActionMenuItemIconType;
|
14
|
-
} | {
|
15
|
-
type: 'text';
|
16
|
-
config: {
|
17
|
-
value: string;
|
18
|
-
icon?: ActionMenuItemIconType;
|
19
|
-
};
|
20
|
-
} | {
|
21
|
-
type: 'counter';
|
22
|
-
config: {
|
23
|
-
value: NumbersCountProps['count'];
|
24
|
-
} & Pick<NumbersCountProps, 'isSelected'>;
|
25
|
-
} | {
|
26
|
-
type: 'switch';
|
27
|
-
config: Pick<DTSwitchProps, 'ariaLabel' | 'isChecked' | 'indeterminate' | 'isDisabled' | 'isLoading' | 'name' | 'onChange' | 'tooltipContent'>;
|
28
|
-
} | {
|
29
|
-
type: 'button';
|
30
|
-
config: OmitNever<Omit<Extract<ButtonProps, {
|
31
|
-
icon: ReactElement;
|
32
|
-
}>, 'size' | 'variant'>>;
|
33
|
-
};
|
34
|
-
export type TrailingItemProps = TrailingItemType & {
|
35
|
-
/**
|
36
|
-
* @default 'neutral'
|
37
|
-
*/
|
38
|
-
variant?: 'neutral' | 'negative';
|
39
|
-
};
|
@@ -1,3 +0,0 @@
|
|
1
|
-
import { TreeViewProps } from './types';
|
2
|
-
declare const TreeView: <DataAttributeType = null>({ nodes, isControlled, expandedMap: expandedMapProp, selectedId, onToggle: onToggleProp, onSelect, depth, mode, flatNodeList: flatNodeListProp, getUpdateItemsRefMap: getUpdateItemsRefMapProp, variant, defaultExpandedMap, }: TreeViewProps<DataAttributeType>) => JSX.Element;
|
3
|
-
export default TreeView;
|
@@ -1,4 +0,0 @@
|
|
1
|
-
import { TreeViewProps } from './types';
|
2
|
-
export declare const DEFAULT_NO_ITEMS_TEXT = "No items found";
|
3
|
-
export declare const VARIANT_TO_BG_CLASS_MAP: Record<TreeViewProps['variant'], string>;
|
4
|
-
export declare const VARIANT_TO_HOVER_CLASS_MAP: Record<TreeViewProps['variant'], string>;
|
@@ -1,204 +0,0 @@
|
|
1
|
-
import { SyntheticEvent } from 'react';
|
2
|
-
import { TooltipProps } from '../../../Common/Tooltip';
|
3
|
-
import { DataAttributes, Never } from '../../types';
|
4
|
-
import { IconsProps } from '../Icon';
|
5
|
-
import { TrailingItemProps } from '../TrailingItem';
|
6
|
-
export type TreeNode<DataAttributeType = null> = TreeHeading<DataAttributeType> | TreeItem<DataAttributeType>;
|
7
|
-
/**
|
8
|
-
* Represents a base node structure for a tree view component.
|
9
|
-
*
|
10
|
-
* @typeParam DataAttributeType - The type for data attributes, defaults to null. If it extends `DataAttributes`, the node can have `dataAttributes` of this type.
|
11
|
-
*
|
12
|
-
* @property id - Unique identifier for the node.
|
13
|
-
* @property title - The main title text displayed for the node.
|
14
|
-
* @property subtitle - Optional subtitle text for the node.
|
15
|
-
* @property customTooltipConfig - Optional configuration for a custom tooltip.
|
16
|
-
* @property strikeThrough - If true, the title will be rendered with a line-through style.
|
17
|
-
* @property startIconConfig - Optional configuration for a start icon, which can be either a standard icon (with `name` and `color`) or a custom JSX element.
|
18
|
-
* @property trailingItem - Optional configuration for a trailing item (e.g., button, icon) displayed at the end of the node.
|
19
|
-
* @property dataAttributes - Optional data attributes, present only if `DataAttributeType` extends `DataAttributes`.
|
20
|
-
*/
|
21
|
-
type BaseNode<DataAttributeType = null> = {
|
22
|
-
/**
|
23
|
-
* id - Unique identifier for the node.
|
24
|
-
*/
|
25
|
-
id: string;
|
26
|
-
/**
|
27
|
-
* The title of the list item.
|
28
|
-
*/
|
29
|
-
title: string;
|
30
|
-
/**
|
31
|
-
* The subtitle of the list item.
|
32
|
-
*/
|
33
|
-
subtitle?: string;
|
34
|
-
/**
|
35
|
-
* Optional configuration for a custom tooltip.
|
36
|
-
*/
|
37
|
-
customTooltipConfig?: TooltipProps;
|
38
|
-
/**
|
39
|
-
* If true, the title will be rendered with line-through.
|
40
|
-
*/
|
41
|
-
strikeThrough?: boolean;
|
42
|
-
/**
|
43
|
-
* Optional configuration for a start icon, which can be either a standard icon (with `name` and `color`) or a custom JSX element.
|
44
|
-
*/
|
45
|
-
startIconConfig?: {
|
46
|
-
tooltipContent?: string;
|
47
|
-
} & ((Pick<IconsProps, 'name' | 'color'> & {
|
48
|
-
customIcon?: never;
|
49
|
-
}) | (Never<Pick<IconsProps, 'name' | 'color'>> & {
|
50
|
-
customIcon?: JSX.Element;
|
51
|
-
}));
|
52
|
-
trailingItem?: TrailingItemProps;
|
53
|
-
} & (DataAttributeType extends DataAttributes ? {
|
54
|
-
dataAttributes?: DataAttributeType;
|
55
|
-
} : {
|
56
|
-
dataAttributes?: never;
|
57
|
-
});
|
58
|
-
export type TreeHeading<DataAttributeType = null> = BaseNode<DataAttributeType> & {
|
59
|
-
type: 'heading';
|
60
|
-
items?: TreeNode<DataAttributeType>[];
|
61
|
-
/**
|
62
|
-
* Text to display when there are no items in the list.
|
63
|
-
* @default DEFAULT_NO_ITEMS_TEXT
|
64
|
-
*/
|
65
|
-
noItemsText?: string;
|
66
|
-
};
|
67
|
-
export type NodeElementType = HTMLDivElement | HTMLButtonElement | HTMLAnchorElement;
|
68
|
-
/**
|
69
|
-
* Represents an item node in a tree structure, supporting different rendering modes.
|
70
|
-
*
|
71
|
-
* @template DataAttributeType - The type for custom data attributes, defaults to null.
|
72
|
-
*
|
73
|
-
* A `TreeItem` can be rendered as a button, link, or div, each with its own set of properties:
|
74
|
-
* - When `as` is `'button'` (default), it can have an `onClick` handler.
|
75
|
-
* - When `as` is `'link'`, it requires an `href`, can have an `onClick` handler, and supports clearing query parameters on navigation.
|
76
|
-
* - When `as` is `'div'`, it is a non-interactive container.
|
77
|
-
*
|
78
|
-
* @property {'item'} type - Identifies the node as an item.
|
79
|
-
* @property {boolean} [isDisabled=false] - If true, disables the item.
|
80
|
-
* @property {'button' | 'link' | 'div'} [as] - Determines the rendered element type.
|
81
|
-
* @property {(e: SyntheticEvent) => void} [onClick] - Callback for click events (button or link only).
|
82
|
-
* @property {string} [href] - The navigation URL (link only).
|
83
|
-
* @property {boolean} [clearQueryParamsOnNavigation=false] - If true, clears query parameters during navigation (link only).
|
84
|
-
*/
|
85
|
-
export type TreeItem<DataAttributeType = null> = BaseNode<DataAttributeType> & {
|
86
|
-
type: 'item';
|
87
|
-
/**
|
88
|
-
* @default false
|
89
|
-
*/
|
90
|
-
isDisabled?: boolean;
|
91
|
-
} & ({
|
92
|
-
as?: 'button';
|
93
|
-
/**
|
94
|
-
* The callback function to handle click events on the button.
|
95
|
-
*/
|
96
|
-
onClick?: (e: SyntheticEvent) => void;
|
97
|
-
href?: never;
|
98
|
-
clearQueryParamsOnNavigation?: never;
|
99
|
-
} | {
|
100
|
-
as: 'link';
|
101
|
-
href: string;
|
102
|
-
/**
|
103
|
-
* The callback function to handle click events on the nav link.
|
104
|
-
*/
|
105
|
-
onClick?: (e: SyntheticEvent) => void;
|
106
|
-
/**
|
107
|
-
* If `true`, clears query parameters during navigation.
|
108
|
-
* @default false
|
109
|
-
*/
|
110
|
-
clearQueryParamsOnNavigation?: boolean;
|
111
|
-
} | {
|
112
|
-
as: 'div';
|
113
|
-
href?: never;
|
114
|
-
onClick?: never;
|
115
|
-
clearQueryParamsOnNavigation?: never;
|
116
|
-
});
|
117
|
-
/**
|
118
|
-
* Props for the TreeView component.
|
119
|
-
*
|
120
|
-
* @template DataAttributeType - The type for data attributes associated with tree nodes.
|
121
|
-
*
|
122
|
-
* @property nodes - An array of tree nodes to be rendered in the tree view.
|
123
|
-
* @property selectedId - (Optional) The ID of the currently selected tree item.
|
124
|
-
* @property onSelect - (Optional) Callback invoked when a tree item is selected.
|
125
|
-
* @property mode - (Optional) Determines the navigation mode of the tree view.
|
126
|
-
* - `'navigation'`: Enables keyboard navigation and focuses only the selected item.
|
127
|
-
* - `'form'`: Leaves navigation to the browser.
|
128
|
-
* - @default 'navigation'
|
129
|
-
* @property variant - (Optional) Visual variant of the tree view.
|
130
|
-
* - `'primary'`: Uses primary background and hover colors.
|
131
|
-
* - `'secondary'`: Uses secondary background and hover colors.
|
132
|
-
* - @default 'primary'
|
133
|
-
* @property defaultExpandedMap - (Optional) Initial map of node IDs to their expanded state.
|
134
|
-
* - @default {}
|
135
|
-
*
|
136
|
-
* @property depth - (Internal use only) The current depth level in the tree.
|
137
|
-
* @property getUpdateItemsRefMap - (Internal use only) Function to update the ref map for item buttons/anchors.
|
138
|
-
* @property flatNodeList - (Internal use only) List of all visible node IDs for keyboard navigation.
|
139
|
-
* @property onToggle - (Internal use only) Callback invoked when a tree heading is toggled.
|
140
|
-
* @property expandedMap - (Internal use only) Map of node IDs to their expanded state.
|
141
|
-
* @property isControlled - (Internal use only) Indicates if the tree view is controlled.
|
142
|
-
*/
|
143
|
-
export type TreeViewProps<DataAttributeType = null> = {
|
144
|
-
nodes: TreeNode<DataAttributeType>[];
|
145
|
-
selectedId?: string;
|
146
|
-
onSelect?: (item: TreeItem<DataAttributeType>) => void;
|
147
|
-
/**
|
148
|
-
* If navigation mode, the tree view will provide navigation through keyboard actions and make the only selected item focusable.
|
149
|
-
* If form mode, will leave the navigation to browser.
|
150
|
-
* @default 'navigation'
|
151
|
-
*/
|
152
|
-
mode?: 'navigation' | 'form';
|
153
|
-
/**
|
154
|
-
* If primary the background color will be bg__primary and bg__hover--opaque, if secondary the background color will be bg__secondary bg__hover-secondary--opaque.
|
155
|
-
* @default 'primary'
|
156
|
-
*/
|
157
|
-
variant?: 'primary' | 'secondary';
|
158
|
-
/**
|
159
|
-
* @default {}
|
160
|
-
*/
|
161
|
-
defaultExpandedMap?: Record<string, boolean>;
|
162
|
-
} /**
|
163
|
-
* WARNING: For internal use only.
|
164
|
-
*/ & ({
|
165
|
-
depth: number;
|
166
|
-
/**
|
167
|
-
* Would pass this to item button/ref and store it in out ref map through this function.
|
168
|
-
*/
|
169
|
-
getUpdateItemsRefMap: (id: string) => (element: NodeElementType) => void;
|
170
|
-
/**
|
171
|
-
* List of all nodes visible in tree view for keyboard navigation.
|
172
|
-
*/
|
173
|
-
flatNodeList: string[];
|
174
|
-
/**
|
175
|
-
* Would be called when the user toggles a heading.
|
176
|
-
*/
|
177
|
-
onToggle: (item: TreeHeading<DataAttributeType>) => void;
|
178
|
-
/**
|
179
|
-
* Map of id to whether the item is expanded or not.
|
180
|
-
*/
|
181
|
-
expandedMap: Record<string, boolean>;
|
182
|
-
isControlled: true;
|
183
|
-
} | {
|
184
|
-
depth?: never;
|
185
|
-
getUpdateItemsRefMap?: never;
|
186
|
-
flatNodeList?: never;
|
187
|
-
onToggle?: never;
|
188
|
-
expandedMap?: never;
|
189
|
-
isControlled?: false;
|
190
|
-
});
|
191
|
-
export interface TreeViewNodeContentProps extends Pick<BaseNode, 'startIconConfig' | 'title' | 'subtitle' | 'customTooltipConfig' | 'strikeThrough'> {
|
192
|
-
type: 'heading' | 'item';
|
193
|
-
isSelected: boolean;
|
194
|
-
}
|
195
|
-
export interface GetSelectedIdParentNodesProps<DataAttributeType = null> extends Pick<TreeViewProps<DataAttributeType>, 'nodes' | 'selectedId'> {
|
196
|
-
}
|
197
|
-
export interface FindSelectedIdParentNodesProps<DataAttributeType = null> extends Pick<GetSelectedIdParentNodesProps<DataAttributeType>, 'selectedId'> {
|
198
|
-
node: TreeNode<DataAttributeType>;
|
199
|
-
onFindParentNode: (id: string) => void;
|
200
|
-
}
|
201
|
-
export interface GetVisibleNodesProps<DataAttributeType = null> extends Pick<TreeViewProps<DataAttributeType>, 'expandedMap'> {
|
202
|
-
nodeList: TreeNode<DataAttributeType>[];
|
203
|
-
}
|
204
|
-
export {};
|
@@ -1,22 +0,0 @@
|
|
1
|
-
import { GetSelectedIdParentNodesProps, GetVisibleNodesProps } from './types';
|
2
|
-
/**
|
3
|
-
* Retrieves an array of parent node IDs for the currently selected node.
|
4
|
-
*
|
5
|
-
* Iterates through the provided tree nodes and collects the IDs of all parent nodes
|
6
|
-
* leading to the node identified by `selectedId`. If no node is selected, returns an empty array.
|
7
|
-
*
|
8
|
-
* @returns {string[]} An array of parent node IDs for the selected node, or an empty array if no node is selected.
|
9
|
-
*/
|
10
|
-
export declare const getSelectedIdParentNodes: <DataAttributeType = null>({ nodes, selectedId, }: GetSelectedIdParentNodesProps<DataAttributeType>) => string[];
|
11
|
-
/**
|
12
|
-
* Recursively traverses a list of tree nodes and returns an array of all node IDs that are present in DOM.
|
13
|
-
*
|
14
|
-
* For each node in the provided list:
|
15
|
-
* - Adds the node's `id` to the result array.
|
16
|
-
* - If the node is of type `'heading'`, is expanded (as per `expandedMap`), and has child items,
|
17
|
-
* recursively traverses its child items and includes their IDs as well.
|
18
|
-
*
|
19
|
-
* @param nodeList - The list of nodes to traverse.
|
20
|
-
* @returns An array of strings representing the IDs of all traversed nodes.
|
21
|
-
*/
|
22
|
-
export declare const getVisibleNodes: <DataAttributeType = null>({ nodeList, expandedMap, }: GetVisibleNodesProps<DataAttributeType>) => string[];
|
@@ -1,3 +0,0 @@
|
|
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="M2 6.984v12.564a.771.771 0 0 0 .77.77h18.49a.74.74 0 0 0 .74-.742V7.817a.833.833 0 0 0-.833-.833H2Zm0 0v-2.5a.833.833 0 0 1 .833-.834h5.488a.833.833 0 0 1 .59.244L12 6.984" vector-effect="non-scaling-stroke"/>
|
3
|
-
</svg>
|
@@ -1,4 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
2
|
-
<rect width="24" height="24" rx="6" fill="#F3F0FF"/>
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 4.5C12.345 4.5 12.625 4.78 12.625 5.125V6.41C13.71 6.529 14.703 6.958 15.513 7.607L15.536 7.581L16.419 6.697C16.5362 6.57977 16.6952 6.51392 16.861 6.51392C17.0268 6.51392 17.1858 6.57977 17.303 6.697C17.4202 6.81423 17.4861 6.97322 17.4861 7.139C17.4861 7.30478 17.4202 7.46377 17.303 7.581L16.419 8.464C16.4112 8.47221 16.4032 8.48022 16.395 8.488C17.0599 9.31791 17.4747 10.32 17.591 11.377L17.625 11.375H18.875C19.0408 11.375 19.1997 11.4408 19.3169 11.5581C19.4342 11.6753 19.5 11.8342 19.5 12C19.5 12.1658 19.4342 12.3247 19.3169 12.4419C19.1997 12.5592 19.0408 12.625 18.875 12.625H17.625L17.59 12.624C17.4743 13.6816 17.059 14.6843 16.393 15.514L16.419 15.536L17.303 16.419C17.4202 16.5362 17.4861 16.6952 17.4861 16.861C17.4861 17.0268 17.4202 17.1858 17.303 17.303C17.1858 17.4202 17.0268 17.4861 16.861 17.4861C16.6952 17.4861 16.5362 17.4202 16.419 17.303L15.536 16.419C15.5278 16.4112 15.5198 16.4032 15.512 16.395C14.6821 17.0599 13.68 17.4747 12.623 17.591L12.625 17.625V18.875C12.625 19.0408 12.5592 19.1997 12.4419 19.3169C12.3247 19.4342 12.1658 19.5 12 19.5C11.8342 19.5 11.6753 19.4342 11.5581 19.3169C11.4408 19.1997 11.375 19.0408 11.375 18.875V17.625L11.376 17.59C10.3184 17.4743 9.31573 17.059 8.486 16.393L8.464 16.419L7.581 17.303C7.46377 17.4202 7.30478 17.4861 7.139 17.4861C6.97322 17.4861 6.81423 17.4202 6.697 17.303C6.57977 17.1858 6.51392 17.0268 6.51392 16.861C6.51392 16.6952 6.57977 16.5362 6.697 16.419L7.581 15.536C7.58878 15.5278 7.59679 15.5198 7.605 15.512C6.94012 14.6821 6.52528 13.68 6.409 12.623L6.375 12.625H5.125C4.95924 12.625 4.80027 12.5592 4.68306 12.4419C4.56585 12.3247 4.5 12.1658 4.5 12C4.5 11.8342 4.56585 11.6753 4.68306 11.5581C4.80027 11.4408 4.95924 11.375 5.125 11.375H6.41C6.52643 10.3181 6.94165 9.31635 7.607 8.487L7.581 8.464L6.697 7.581C6.57977 7.46377 6.51392 7.30478 6.51392 7.139C6.51392 6.97322 6.57977 6.81423 6.697 6.697C6.81423 6.57977 6.97322 6.51392 7.139 6.51392C7.30478 6.51392 7.46377 6.57977 7.581 6.697L8.464 7.581C8.47221 7.58878 8.48022 7.59679 8.488 7.605C9.31791 6.94012 10.32 6.52528 11.377 6.409L11.375 6.375V5.125C11.375 4.78 11.655 4.5 12 4.5ZM12 7.625C10.8397 7.625 9.72688 8.08594 8.90641 8.90641C8.08594 9.72688 7.625 10.8397 7.625 12C7.625 13.1603 8.08594 14.2731 8.90641 15.0936C9.72688 15.9141 10.8397 16.375 12 16.375C13.1603 16.375 14.2731 15.9141 15.0936 15.0936C15.9141 14.2731 16.375 13.1603 16.375 12C16.375 10.8397 15.9141 9.72688 15.0936 8.90641C14.2731 8.08594 13.1603 7.625 12 7.625ZM12 8.875C12.8288 8.875 13.6237 9.20424 14.2097 9.79029C14.7958 10.3763 15.125 11.1712 15.125 12C15.125 12.8288 14.7958 13.6237 14.2097 14.2097C13.6237 14.7958 12.8288 15.125 12 15.125C11.1712 15.125 10.3763 14.7958 9.79029 14.2097C9.20424 13.6237 8.875 12.8288 8.875 12C8.875 11.1712 9.20424 10.3763 9.79029 9.79029C10.3763 9.20424 11.1712 8.875 12 8.875ZM12 10.125C11.7538 10.125 11.51 10.1735 11.2825 10.2677C11.055 10.362 10.8483 10.5001 10.6742 10.6742C10.5001 10.8483 10.362 11.055 10.2677 11.2825C10.1735 11.51 10.125 11.7538 10.125 12C10.125 12.2462 10.1735 12.49 10.2677 12.7175C10.362 12.945 10.5001 13.1517 10.6742 13.3258C10.8483 13.4999 11.055 13.638 11.2825 13.7323C11.51 13.8265 11.7538 13.875 12 13.875C12.4973 13.875 12.9742 13.6775 13.3258 13.3258C13.6775 12.9742 13.875 12.4973 13.875 12C13.875 11.5027 13.6775 11.0258 13.3258 10.6742C12.9742 10.3225 12.4973 10.125 12 10.125Z" fill="#664BEE"/>
|
4
|
-
</svg>
|
@@ -1,3 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
2
|
-
<rect width="18" height="18" x="3" y="3" stroke="#3B444C" stroke-dasharray="3 3" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" rx="1" vector-effect="non-scaling-stroke"/>
|
3
|
-
</svg>
|