@devtron-labs/devtron-fe-common-lib 1.5.14 → 1.6.0-patch-2

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 (62) hide show
  1. package/dist/@code-editor-BBhEJtNT.js +23000 -0
  2. package/dist/{@common-rjsf-D0VNXpZS.js → @common-rjsf-E7Bgu9Dc.js} +83 -79
  3. package/dist/{@framer-motion-CpA7HTl-.js → @framer-motion-CbfcgbXI.js} +70 -70
  4. package/dist/@monaco-editor-CVagbUeH.js +138960 -0
  5. package/dist/{@react-dates-CaRoxjcN.js → @react-dates-CHLhA4kl.js} +14 -14
  6. package/dist/{@react-select-D4CIuOAx.js → @react-select-CgLj7C5f.js} +1 -1
  7. package/dist/{@react-virtualized-sticky-tree-CZZtnJ_O.js → @react-virtualized-sticky-tree-Cj8etBAu.js} +1 -1
  8. package/dist/@vendor-ROKJESOw.js +22734 -0
  9. package/dist/Common/CodeEditor/CodeEditor.d.ts +3 -13
  10. package/dist/Common/CodeEditor/CodeEditor.reducer.d.ts +47 -3
  11. package/dist/Common/CodeEditor/index.d.ts +1 -1
  12. package/dist/Common/CodeEditor/types.d.ts +76 -83
  13. package/dist/Common/CodeEditor/utils.d.ts +3 -13
  14. package/dist/Common/Hooks/UseRegisterShortcut/types.d.ts +1 -1
  15. package/dist/Common/Hooks/UseRegisterShortcut/utils.d.ts +1 -1
  16. package/dist/Common/ResizableTextarea.d.ts +3 -0
  17. package/dist/Common/Types.d.ts +13 -0
  18. package/dist/Common/index.d.ts +1 -0
  19. package/dist/Shared/Components/CICDHistory/DeploymentHistoryConfigDiff/DeploymentHistoryDiffView.d.ts +1 -1
  20. package/dist/Shared/Components/CICDHistory/types.d.ts +1 -0
  21. package/dist/Shared/Components/Collapse/Collapse.d.ts +1 -0
  22. package/dist/Shared/Components/EditableTextArea/types.d.ts +1 -0
  23. package/dist/Shared/Components/Header/index.d.ts +1 -0
  24. package/dist/Shared/Components/Header/utils.d.ts +1 -1
  25. package/dist/Shared/Components/SelectPicker/SelectPicker.component.d.ts +1 -1
  26. package/dist/Shared/Components/SelectPicker/type.d.ts +13 -2
  27. package/dist/Shared/Components/ThemeSwitcher/index.d.ts +0 -1
  28. package/dist/Shared/Components/index.d.ts +0 -2
  29. package/dist/Shared/constants.d.ts +0 -4
  30. package/dist/Shared/types.d.ts +0 -8
  31. package/dist/assets/@code-editor.css +1 -1
  32. package/dist/assets/@monaco-editor.css +1 -0
  33. package/dist/assets/codicon.ecfbfe4b.ttf +0 -0
  34. package/dist/assets/{ic-warning.a842ba2a.svg → ic-warning.10bcf8bd.svg} +1 -1
  35. package/dist/index.js +558 -557
  36. package/package.json +7 -14
  37. package/dist/@code-editor-DPKpPiDK.js +0 -41877
  38. package/dist/@vendor-CKSERKp7.js +0 -42519
  39. package/dist/Common/ClipboardButton/index.d.ts +0 -1
  40. package/dist/Common/CodeEditor/CodeEditor.components.d.ts +0 -11
  41. package/dist/Common/CodeEditor/CodeEditor.constants.d.ts +0 -7
  42. package/dist/Common/CodeEditor/CodeEditor.context.d.ts +0 -3
  43. package/dist/Common/CodeEditor/CodeEditor.theme.d.ts +0 -1
  44. package/dist/Common/CodeEditor/CodeEditorRenderer.d.ts +0 -2
  45. package/dist/Common/CodeEditor/Extensions/findAndReplace.d.ts +0 -2
  46. package/dist/Common/CodeEditor/Extensions/index.d.ts +0 -3
  47. package/dist/Common/CodeEditor/Extensions/readOnlyTooltip.d.ts +0 -6
  48. package/dist/Common/CodeEditor/Extensions/yamlParseLinter.d.ts +0 -3
  49. package/dist/Shared/Components/FormFieldWrapper/FormFieldInfo.d.ts +0 -3
  50. package/dist/Shared/Components/FormFieldWrapper/FormFieldLabel.d.ts +0 -3
  51. package/dist/Shared/Components/FormFieldWrapper/FormFieldWrapper.d.ts +0 -3
  52. package/dist/Shared/Components/FormFieldWrapper/index.d.ts +0 -3
  53. package/dist/Shared/Components/FormFieldWrapper/types.d.ts +0 -75
  54. package/dist/Shared/Components/FormFieldWrapper/utils.d.ts +0 -18
  55. package/dist/Shared/Components/Textarea/Textarea.component.d.ts +0 -3
  56. package/dist/Shared/Components/Textarea/constants.d.ts +0 -4
  57. package/dist/Shared/Components/Textarea/index.d.ts +0 -2
  58. package/dist/Shared/Components/Textarea/types.d.ts +0 -17
  59. package/dist/assets/ic-match-case.702186fe.svg +0 -3
  60. package/dist/assets/ic-match-word.991dea5a.svg +0 -3
  61. package/dist/assets/ic-replace-all-text.7ebbab01.svg +0 -3
  62. package/dist/assets/ic-replace-text.5de817d2.svg +0 -3
@@ -1 +0,0 @@
1
- export * from './ClipboardButton';
@@ -1,11 +0,0 @@
1
- import { ReactNode } from 'react';
2
- import { CodeEditorHeaderProps, CodeEditorStatusBarProps } from './types';
3
- export declare const Header: ({ children, className, hideDefaultSplitHeader }: CodeEditorHeaderProps) => JSX.Element;
4
- export declare const Warning: ({ className, text, children }: CodeEditorStatusBarProps) => JSX.Element;
5
- export declare const ErrorBar: ({ className, text, children }: CodeEditorStatusBarProps) => JSX.Element;
6
- export declare const Information: ({ className, children, text }: CodeEditorStatusBarProps) => JSX.Element;
7
- export declare const Clipboard: () => JSX.Element;
8
- export declare const Container: ({ children, flexExpand }: {
9
- children: ReactNode;
10
- flexExpand?: boolean;
11
- }) => JSX.Element;
@@ -1,7 +0,0 @@
1
- import { SupportedKeyboardKeysType } from '@Common/Hooks/UseRegisterShortcut/types';
2
- export declare const PREVIOUS_MATCH_SHORTCUT_KEYS: SupportedKeyboardKeysType[];
3
- export declare const NEXT_MATCH_SHORTCUT_KEYS: SupportedKeyboardKeysType[];
4
- export declare const REPLACE_SHORTCUT_KEYS: SupportedKeyboardKeysType[];
5
- export declare const REPLACE_ALL_SHORTCUT_KEYS: SupportedKeyboardKeysType[];
6
- export declare const SELECT_ALL_SHORTCUT_KEYS: SupportedKeyboardKeysType[];
7
- export declare const CLOSE_SEARCH_SHORTCUT_KEYS: SupportedKeyboardKeysType[];
@@ -1,3 +0,0 @@
1
- import { CodeEditorContextProps } from './types';
2
- export declare const CodeEditorContext: import('react').Context<CodeEditorContextProps>;
3
- export declare const useCodeEditorContext: () => CodeEditorContextProps;
@@ -1 +0,0 @@
1
- export declare const getCodeEditorTheme: (isDark: boolean) => import('@codemirror/state').Extension;
@@ -1,2 +0,0 @@
1
- import { CodeEditorRendererProps } from './types';
2
- export declare const CodeEditorRenderer: ({ loading, customLoader, height, state, codeEditorTheme, codemirrorMergeKey, isDarkTheme, readOnly, isOriginalModifiable, handleLhsOnChange, originalViewExtensions, handleOnChange, modifiedViewExtensions, codeMirrorParentDivRef, shebang, placeholder, onFocus, onBlur, extensions, autoFocus, }: CodeEditorRendererProps) => JSX.Element;
@@ -1,2 +0,0 @@
1
- import { EditorView, Panel } from '@uiw/react-codemirror';
2
- export declare const codeEditorFindReplace: (view: EditorView) => Panel;
@@ -1,3 +0,0 @@
1
- export * from './yamlParseLinter';
2
- export * from './readOnlyTooltip';
3
- export * from './findAndReplace';
@@ -1,6 +0,0 @@
1
- import { Extension } from '@uiw/react-codemirror';
2
- /**
3
- * The read-only tooltip extension for CodeMirror. \
4
- * Displays a tooltip at the cursor position when the editor is read-only and focused.
5
- */
6
- export declare const readOnlyTooltip: Extension;
@@ -1,3 +0,0 @@
1
- import { EditorView } from '@uiw/react-codemirror';
2
- import { Diagnostic } from '@codemirror/lint';
3
- export declare const yamlParseLinter: () => (view: EditorView) => Diagnostic[];
@@ -1,3 +0,0 @@
1
- import { FormFieldInfoProps } from './types';
2
- declare const FormFieldInfo: ({ error, helperText, warningText, inputId }: FormFieldInfoProps) => JSX.Element;
3
- export default FormFieldInfo;
@@ -1,3 +0,0 @@
1
- import { FormFieldLabelProps } from './types';
2
- declare const FormFieldLabel: ({ label, inputId, required, layout }: FormFieldLabelProps) => JSX.Element;
3
- export default FormFieldLabel;
@@ -1,3 +0,0 @@
1
- import { FormFieldWrapperProps } from './types';
2
- declare const FormFieldWrapper: ({ layout, fullWidth, label, inputId, error, helperText, warningText, required, children, }: Required<FormFieldWrapperProps>) => JSX.Element;
3
- export default FormFieldWrapper;
@@ -1,3 +0,0 @@
1
- export { default as FormFieldWrapper } from './FormFieldWrapper';
2
- export type { FormFieldWrapperProps } from './types';
3
- export { getFormFieldAriaAttributes } from './utils';
@@ -1,75 +0,0 @@
1
- import { ReactElement, ReactNode } from 'react';
2
- export type LabelOrAriaLabelType = {
3
- label: ReactNode;
4
- ariaLabel?: never;
5
- } | {
6
- label?: never;
7
- ariaLabel: string;
8
- };
9
- export type FormFieldLabelProps = LabelOrAriaLabelType & {
10
- /**
11
- * If true, the field is required and * is shown with the label
12
- */
13
- required?: boolean;
14
- /**
15
- * Id of the input element
16
- */
17
- inputId: string;
18
- /**
19
- * Layout of the field
20
- */
21
- layout?: 'row' | 'column';
22
- };
23
- export interface FormFieldInfoProps extends Pick<FormFieldLabelProps, 'inputId'> {
24
- /**
25
- * Error message for the field
26
- */
27
- error?: ReactNode;
28
- /**
29
- * Helper text for the field
30
- */
31
- helperText?: ReactNode;
32
- /**
33
- * Warning message for the field
34
- */
35
- warningText?: ReactNode;
36
- }
37
- export interface FormInfoItemProps {
38
- id: FormFieldLabelProps['inputId'];
39
- text: FormFieldInfoProps['error'];
40
- textClass: string;
41
- icon: ReactElement;
42
- }
43
- export interface FormFieldWrapperProps extends Pick<FormFieldLabelProps, 'label' | 'required' | 'ariaLabel' | 'layout'>, FormFieldInfoProps {
44
- /**
45
- * If true, the field takes the full width of the parent
46
- */
47
- fullWidth?: boolean;
48
- children: ReactElement;
49
- borderRadiusConfig?: {
50
- /**
51
- * If false, the top border radius is not applied
52
- *
53
- * @default true
54
- */
55
- top?: boolean;
56
- /**
57
- * If false, the right border radius is not applied
58
- *
59
- * @default true
60
- */
61
- right?: boolean;
62
- /**
63
- * If false, the bottom border radius is not applied
64
- *
65
- * @default true
66
- */
67
- bottom?: boolean;
68
- /**
69
- * If false, the left border radius is not applied
70
- *
71
- * @default true
72
- */
73
- left?: boolean;
74
- };
75
- }
@@ -1,18 +0,0 @@
1
- import { FormFieldInfoProps, FormFieldLabelProps, FormFieldWrapperProps } from './types';
2
- export declare const getFormErrorElementId: (inputId: FormFieldLabelProps["inputId"]) => string;
3
- export declare const getFormLabelElementId: (inputId: FormFieldLabelProps["inputId"]) => string;
4
- export declare const getFormHelperTextElementId: (inputId: FormFieldLabelProps["inputId"]) => string;
5
- export declare const getFormFieldAriaAttributes: ({ inputId, label, ariaLabel, required, error, helperText, }: Required<Pick<FormFieldLabelProps, "label" | "ariaLabel" | "required" | "inputId"> & Pick<FormFieldInfoProps, "error" | "helperText">>) => {
6
- 'aria-labelledby': string;
7
- 'aria-errormessage'?: string;
8
- 'aria-invalid'?: boolean;
9
- 'aria-describedby'?: string;
10
- 'aria-required': boolean;
11
- } | {
12
- 'aria-label': string;
13
- 'aria-errormessage'?: string;
14
- 'aria-invalid'?: boolean;
15
- 'aria-describedby'?: string;
16
- 'aria-required': boolean;
17
- };
18
- export declare const getFormFieldBorderClassName: (borderRadiusConfig?: FormFieldWrapperProps["borderRadiusConfig"]) => string;
@@ -1,3 +0,0 @@
1
- import { TextareaProps } from './types';
2
- declare const Textarea: ({ name, label, fullWidth, error, helperText, warningText, layout, required, onBlur, shouldTrim, size, ariaLabel, borderRadiusConfig, ...props }: TextareaProps) => JSX.Element;
3
- export default Textarea;
@@ -1,4 +0,0 @@
1
- export declare const TEXTAREA_CONSTRAINTS: {
2
- MIN_HEIGHT: number;
3
- AUTO_EXPANSION_MAX_HEIGHT: number;
4
- };
@@ -1,2 +0,0 @@
1
- export { default as Textarea } from './Textarea.component';
2
- export type { TextareaProps } from './types';
@@ -1,17 +0,0 @@
1
- import { TextareaHTMLAttributes } from 'react';
2
- import { ComponentSizeType } from '../../constants';
3
- import { FormFieldWrapperProps } from '../FormFieldWrapper';
4
- export interface TextareaProps extends Omit<FormFieldWrapperProps, 'children' | 'inputId'>, Pick<TextareaHTMLAttributes<HTMLTextAreaElement>, 'onBlur' | 'disabled' | 'autoFocus' | 'onFocus'>, Required<Pick<TextareaHTMLAttributes<HTMLTextAreaElement>, 'placeholder' | 'onChange' | 'value' | 'name'>> {
5
- /**
6
- * If false, the input is not trimmed on blur
7
- *
8
- * @default true
9
- */
10
- shouldTrim?: boolean;
11
- /**
12
- * Size of the textarea
13
- *
14
- * @default ComponentSizeType.large
15
- */
16
- size?: Extract<ComponentSizeType, ComponentSizeType.medium | ComponentSizeType.large>;
17
- }
@@ -1,3 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">
2
- <path stroke="#C8CBCE" stroke-linecap="round" stroke-linejoin="round" d="m6.75 9-3-6.375L.75 9m10.125 0V6.187c0-.724-.672-1.312-1.5-1.312-.448 0-.85.102-1.125.375M5.868 7.125H1.632m9.243.563c0 .724-.672 1.312-1.5 1.312s-1.5-.588-1.5-1.313c0-.724.672-1.312 1.5-1.312s1.5.588 1.5 1.313Z" vector-effect="non-scaling-stroke"/>
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">
2
- <path stroke="#C8CBCE" stroke-linecap="round" stroke-linejoin="round" d="M4.875 9V6.187c0-.724-.672-1.312-1.5-1.312-.448 0-.85.102-1.125.375m4.5-2.625V9m0-2.375c0-.611.8-1.75 1.75-1.75.966 0 1.75.923 1.75 2.063C10.25 8.076 9.466 9 8.5 9c-.95 0-1.75-.89-1.75-1.502M.5 9.5V11h11V9.5M4.875 7.687c0 .725-.672 1.313-1.5 1.313s-1.5-.588-1.5-1.313c0-.724.672-1.312 1.5-1.312s1.5.588 1.5 1.313Z" vector-effect="non-scaling-stroke"/>
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M17.4 4.0155C17.6205 3.5505 17.934 3.318 18.339 3.318C18.711 3.318 18.999 3.495 19.1985 3.8475C19.3995 4.2015 19.5 4.683 19.5 5.2965C19.5 5.961 19.383 6.4935 19.1475 6.897C18.9135 7.299 18.6 7.5 18.207 7.5C17.8515 7.5 17.583 7.3125 17.4015 6.939H17.3895V7.404H16.5V1.5H17.3895V4.0155H17.4ZM17.376 5.6655C17.3672 5.88948 17.4229 6.11127 17.5365 6.3045C17.643 6.474 17.781 6.558 17.9475 6.558C18.1515 6.558 18.3075 6.45 18.4185 6.234C18.531 6.0165 18.588 5.709 18.588 5.3115C18.588 4.9815 18.5355 4.7265 18.432 4.5405C18.3315 4.3545 18.186 4.26 17.997 4.26C17.817 4.26 17.6685 4.353 17.5515 4.5375C17.4259 4.75601 17.365 5.00571 17.376 5.2575V5.6655ZM6.18 11.5425L3 8.352L3.993 7.359L5.502 8.859V6.594C5.50082 6.31982 5.55372 6.04809 5.65769 5.79438C5.76166 5.54067 5.91465 5.30996 6.1079 5.11545C6.30115 4.92095 6.53087 4.76647 6.7839 4.66086C7.03694 4.55525 7.30831 4.50059 7.5825 4.5H11.1V5.8575H7.5825C7.39256 5.86603 7.21332 5.94783 7.08242 6.08573C6.95152 6.22362 6.87914 6.40687 6.8805 6.597L6.891 8.847L8.3145 7.431L9.2985 8.415L6.18 11.5425ZM14.034 7.395H15V4.83C15 3.612 14.5275 3 13.584 3C13.3815 3 13.1565 3.036 12.909 3.1095C12.7038 3.16402 12.5077 3.24842 12.327 3.36V4.3575C12.6825 4.053 13.0575 3.9015 13.452 3.9015C13.8435 3.9015 14.04 4.1355 14.04 4.605L13.14 4.7595C12.381 4.8885 12 5.3685 12 6.201C12 6.5955 12.0915 6.9105 12.2745 7.1475C12.364 7.2626 12.4797 7.35464 12.612 7.41596C12.7443 7.47727 12.8893 7.50609 13.035 7.5C13.47 7.5 13.7985 7.26 14.0205 6.78H14.034V7.395ZM14.04 5.3625V5.652C14.0487 5.88333 13.9859 6.11171 13.86 6.306C13.8097 6.38477 13.7403 6.44949 13.6582 6.49409C13.576 6.53869 13.4839 6.56171 13.3905 6.561C13.3283 6.56358 13.2664 6.5521 13.2092 6.52743C13.1521 6.50276 13.1013 6.46553 13.0605 6.4185C12.9779 6.31252 12.9354 6.18077 12.9405 6.0465C12.9405 5.7135 13.1055 5.52 13.4385 5.463L14.04 5.3625ZM10.5 19.395H9.534V18.78H9.5205C9.2985 19.26 8.97 19.5 8.535 19.5C8.38932 19.5061 8.2443 19.4773 8.11201 19.416C7.97973 19.3546 7.86401 19.2626 7.7745 19.1475C7.5915 18.9105 7.5 18.5955 7.5 18.2025C7.5 17.3685 7.881 16.8885 8.64 16.7595L9.54 16.605C9.54 16.1355 9.345 15.9 8.952 15.9C8.5575 15.9 8.1825 16.053 7.827 16.3575V15.36C7.9695 15.2655 8.163 15.1815 8.409 15.1095C8.6565 15.036 8.8815 15 9.084 15C10.029 15 10.5 15.6105 10.5 16.83V19.395ZM9.54 17.652V17.3625L8.94 17.4645C8.607 17.52 8.4405 17.7135 8.4405 18.0465C8.4405 18.1965 8.481 18.321 8.5605 18.4185C8.60126 18.4655 8.65209 18.5028 8.70923 18.5274C8.76636 18.5521 8.82832 18.5636 8.8905 18.561C8.98369 18.5615 9.07548 18.5383 9.15731 18.4937C9.23915 18.4491 9.30836 18.3846 9.3585 18.306C9.4785 18.132 9.54 17.916 9.54 17.652ZM13.893 19.5C14.3745 19.5 14.745 19.413 15 19.2405V18.1755C14.7667 18.369 14.475 18.4784 14.172 18.486C14.0307 18.4929 13.8896 18.4675 13.7597 18.4116C13.6297 18.3557 13.5142 18.2708 13.422 18.1635C13.242 17.946 13.1505 17.646 13.1505 17.2665C13.1505 16.8765 13.245 16.5705 13.434 16.3485C13.5293 16.2379 13.6485 16.1503 13.7826 16.0923C13.9166 16.0344 14.0621 16.0076 14.208 16.014C14.499 16.014 14.763 16.1175 15 16.3245V15.201C14.8065 15.066 14.493 15 14.061 15C13.4355 15 12.9345 15.21 12.5595 15.633C12.186 16.053 12 16.626 12 17.355C12 17.985 12.174 18.501 12.5235 18.9C12.8715 19.3005 13.329 19.5 13.893 19.5ZM3 13.5L4.5 12H18L19.5 13.5V21L18 22.5H4.5L3 21V13.5ZM4.5 13.5V21H18V13.5H4.5ZM9 10.5L10.5 9H21L22.5 10.5V18L21 19.5V10.5H9Z" fill="#C8CBCE"/>
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M4.8315 5.6085L8.223 9.012L11.55 5.676L10.5 4.626L8.982 6.1365L8.97 3.7365C8.96864 3.5335 9.04602 3.33788 9.18588 3.19075C9.32574 3.04361 9.51719 2.95642 9.72 2.9475H12V1.5H9.72C9.42744 1.50039 9.13783 1.55853 8.86778 1.67108C8.59774 1.78363 8.35256 1.94837 8.14632 2.15587C7.94007 2.36337 7.77682 2.60954 7.66591 2.88026C7.555 3.15099 7.49862 3.44094 7.5 3.7335V6.15L5.8905 4.5495L4.8315 5.6085ZM14.8365 8.2995H14.8515C15.126 8.766 15.528 9 16.0605 9C16.65 9 17.1195 8.748 17.4705 8.2455C17.8245 7.743 18 7.0755 18 6.246C18 5.4795 17.85 4.8765 17.5485 4.4355C17.247 3.993 16.8165 3.7725 16.2585 3.7725C15.651 3.7725 15.1815 4.0635 14.8515 4.644H14.8365V1.5H13.5V8.8785H14.835L14.8365 8.2995ZM14.814 6.708V6.198C14.814 5.826 14.901 5.526 15.0765 5.2965C15.1516 5.18935 15.2516 5.102 15.3678 5.04192C15.4841 4.98184 15.6131 4.95081 15.744 4.9515C15.8742 4.94656 16.0034 4.97632 16.1183 5.03773C16.2332 5.09914 16.3298 5.19 16.398 5.301C16.554 5.532 16.6305 5.853 16.6305 6.2655C16.6305 6.7605 16.5465 7.146 16.377 7.4175C16.3076 7.54286 16.2052 7.64686 16.0809 7.71824C15.9567 7.78962 15.8153 7.82567 15.672 7.8225C15.5512 7.82386 15.432 7.79574 15.3246 7.74059C15.2171 7.68543 15.1248 7.60491 15.0555 7.506C14.8887 7.27423 14.8027 6.99333 14.814 6.708ZM13.5 19.1535C13.116 19.3845 12.5625 19.5 11.838 19.5C10.9935 19.5 10.308 19.233 9.7845 18.7005C9.261 18.168 9 17.481 9 16.6395C9 15.6675 9.279 14.9025 9.84 14.3445C10.401 13.7805 11.1525 13.5 12.09 13.5C12.7395 13.5 13.209 13.59 13.5 13.7685V15.2655C13.1629 14.9959 12.7437 14.8498 12.312 14.8515C11.8245 14.8515 11.4375 15.0015 11.151 15.2985C10.866 15.5925 10.7265 16.0005 10.7265 16.5225C10.7265 17.0295 10.8615 17.427 11.1345 17.718C11.4075 18.0045 11.781 18.1485 12.258 18.1485C12.681 18.1485 13.095 18.0105 13.5 17.7345V19.1535ZM6 10.5L4.5 12V21L6 22.5H16.5L18 21V12L16.5 10.5H6ZM6 12H16.5V21H6V12Z" fill="#C8CBCE"/>
3
- </svg>