@amboss/design-system 3.3.1 → 3.3.3
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/build/cjs/components/EntityList/BaseEntityList.js +1 -1
- package/build/cjs/components/EntityList/EntityItemBody.d.ts +1 -1
- package/build/cjs/components/EntityList/EntityItemBody.js +1 -1
- package/build/cjs/components/EntityList/EntityList.d.ts +1 -1
- package/build/cjs/components/EntityList/EntityList.js +1 -1
- package/build/cjs/components/EntityList/EntityListItem.d.ts +1 -1
- package/build/cjs/components/EntityList/EntityListItem.js +1 -1
- package/build/cjs/components/EntityList/EntityListItemExpandButton.d.ts +5 -0
- package/build/cjs/components/EntityList/EntityListItemExpandButton.js +1 -0
- package/build/cjs/components/EntityList/styled-components.js +1 -1
- package/build/cjs/components/EntityList/types.d.ts +18 -2
- package/build/cjs/components/EntityTree/BaseEntityTree.js +1 -1
- package/build/cjs/components/EntityTree/EntityTreeItem.d.ts +1 -1
- package/build/cjs/components/EntityTree/EntityTreeItem.js +1 -1
- package/build/cjs/components/EntityTree/useEntityTreeKeyboard.d.ts +9 -0
- package/build/cjs/components/EntityTree/useEntityTreeKeyboard.js +1 -0
- package/build/cjs/components/Form/Checkbox/Checkbox.d.ts +3 -0
- package/build/cjs/components/Form/Checkbox/Checkbox.js +1 -1
- package/build/cjs/components/Patterns/Modal/Modal.d.ts +3 -2
- package/build/cjs/components/Patterns/Modal/Modal.js +3 -3
- package/build/cjs/shared/useKeyboard.d.ts +2 -1
- package/build/cjs/shared/useKeyboard.js +1 -1
- package/build/cjs/shared/useOutsideClick.js +1 -1
- package/build/cjs/web-tokens/assets/icons.json +1 -0
- package/build/cjs/web-tokens/assets/icons16.json +1 -0
- package/build/esm/components/EntityList/BaseEntityList.js +1 -1
- package/build/esm/components/EntityList/EntityItemBody.d.ts +1 -1
- package/build/esm/components/EntityList/EntityItemBody.js +1 -1
- package/build/esm/components/EntityList/EntityList.d.ts +1 -1
- package/build/esm/components/EntityList/EntityList.js +1 -1
- package/build/esm/components/EntityList/EntityListItem.d.ts +1 -1
- package/build/esm/components/EntityList/EntityListItem.js +1 -1
- package/build/esm/components/EntityList/EntityListItemExpandButton.d.ts +5 -0
- package/build/esm/components/EntityList/EntityListItemExpandButton.js +1 -0
- package/build/esm/components/EntityList/styled-components.js +1 -1
- package/build/esm/components/EntityList/types.d.ts +18 -2
- package/build/esm/components/EntityTree/BaseEntityTree.js +1 -1
- package/build/esm/components/EntityTree/EntityTreeItem.d.ts +1 -1
- package/build/esm/components/EntityTree/EntityTreeItem.js +1 -1
- package/build/esm/components/EntityTree/useEntityTreeKeyboard.d.ts +9 -0
- package/build/esm/components/EntityTree/useEntityTreeKeyboard.js +1 -0
- package/build/esm/components/Form/Checkbox/Checkbox.d.ts +3 -0
- package/build/esm/components/Form/Checkbox/Checkbox.js +1 -1
- package/build/esm/components/Patterns/Modal/Modal.d.ts +3 -2
- package/build/esm/components/Patterns/Modal/Modal.js +3 -3
- package/build/esm/shared/useKeyboard.d.ts +2 -1
- package/build/esm/shared/useKeyboard.js +1 -1
- package/build/esm/shared/useOutsideClick.js +1 -1
- package/build/esm/web-tokens/assets/icons.json +1 -0
- package/build/esm/web-tokens/assets/icons16.json +1 -0
- package/package.json +1 -1
|
@@ -14,4 +14,5 @@ import type { RefObject } from "react";
|
|
|
14
14
|
*
|
|
15
15
|
* This mean that these keyboard shortcuts will be applied on menuRef when the menu is opened.
|
|
16
16
|
*/
|
|
17
|
-
export
|
|
17
|
+
export type KeyboardConfig = Record<string, (e: KeyboardEvent) => void | boolean>;
|
|
18
|
+
export declare function useKeyboard(config: KeyboardConfig, ref: RefObject<any>, isActive: boolean, onlyRefIsActive?: boolean): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{useEffect}from"react";import{useDocument}from"./useDocument";export function useKeyboard(config,ref,isActive){let document=useDocument(),handleKeyboard=event=>{if(!isActive||document.activeElement!==ref.current&&!ref.current?.contains(document.activeElement))return;let targetConfigKey=Object.keys(config).find(targetKeys=>targetKeys.split(" ").includes(event.code));targetConfigKey&&(event.preventDefault(),!1===config[targetConfigKey](event)&&event.stopPropagation())};useEffect(()=>(document.addEventListener("keydown",handleKeyboard),()=>{document.removeEventListener("keydown",handleKeyboard)}))}
|
|
1
|
+
import{useEffect}from"react";import{useDocument}from"./useDocument";export function useKeyboard(config,ref,isActive,onlyRefIsActive=!1){let document=useDocument(),handleKeyboard=event=>{if(!isActive||onlyRefIsActive&&document.activeElement!==ref.current||!onlyRefIsActive&&document.activeElement!==ref.current&&!ref.current?.contains(document.activeElement))return;let targetConfigKey=Object.keys(config).find(targetKeys=>targetKeys.split(" ").includes(event.code));targetConfigKey&&(event.preventDefault(),!1===config[targetConfigKey](event)&&event.stopPropagation())};useEffect(()=>(document.addEventListener("keydown",handleKeyboard),()=>{document.removeEventListener("keydown",handleKeyboard)}))}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{useEffect,useCallback}from"react";import{useWindow}from"./useWindow";export const useOutsideClick=(ref,handler,isActive)=>{let window=useWindow(),outsideClickEvent=useCallback(e=>{let target=e.target;target&&target.isConnected&&ref&&ref.current&&!ref.current.contains(target)&&handler(e)},[handler,ref]);useEffect(()=>(isActive&&window.addEventListener("click",outsideClickEvent),()=>{window.removeEventListener("click",outsideClickEvent)}),[isActive,window,outsideClickEvent])};
|
|
1
|
+
import{useEffect,useCallback}from"react";import{useWindow}from"./useWindow";export const useOutsideClick=(ref,handler,isActive)=>{let window=useWindow(),outsideClickEvent=useCallback(e=>{let target=e.target;target&&target.isConnected&&ref&&ref.current&&!ref.current.contains(target)&&handler(e)},[handler,ref]);useEffect(()=>(isActive&&setTimeout(()=>window.addEventListener("click",outsideClickEvent)),()=>{window.removeEventListener("click",outsideClickEvent)}),[isActive,window,outsideClickEvent])};
|
|
@@ -62,6 +62,7 @@
|
|
|
62
62
|
"effigos": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\" d=\"M3.06 10.74c-.3 3.83.35 7.24 3.96 9.38.11.09.24.13.37.17.11.04.22.08.33.15 2.72.95 5.32.68 6.28-.73-1.1.07-2.2.08-3.31.02-3.06-.16-5.2-1.79-6.02-4.68a10.9 10.9 0 0 1-.02-5.65 6.06 6.06 0 0 1 3.18-4c2.32-1.22 4.76-1.22 7.2-.54 2.8.77 4.42 2.84 4.65 5.76.17 2.03-.9 3.4-2.9 3.68-1.6.21-3.21.25-4.81.12-1.69-.12-2.03-.53-2.03-2.25v-.85c.06-.7.48-1.2 1.18-1.26a9.84 9.84 0 0 1 1.88 0c.68.06 1.12.48 1.18 1.18.03.59.03 1.17 0 1.76v.04c0 .28-.02.57.39.54h.25c.31.02.65.03.69-.44v-.01c.08-.81.15-1.64-.05-2.44-.28-1.08-.95-1.77-2.07-1.94a9.12 9.12 0 0 0-2.44-.04C9.6 8.87 8.7 9.83 8.6 11.25c-.04.61-.04 1.22.02 1.83.15 1.52.97 2.4 2.49 2.56 2.11.21 4.23.24 6.34-.14 1.77-.32 3.02-1.37 3.38-3.21a7.01 7.01 0 0 0-2.11-6.87C16.1 3 12.94 2.62 9.6 3.3a8.03 8.03 0 0 0-6.55 7.43Zm6.73 7.4c2.04.46 4.15.42 6.16-.13l.26-.14c.16-.08.3-.16.44-.27a.73.73 0 0 1 .18-.17c.13-.1.26-.21.28-.42h-.59c-1.83.2-3.67.2-5.5.02-2.2-.23-3.56-1.45-3.84-3.58a9.95 9.95 0 0 1 0-2.67 3.92 3.92 0 0 1 3.22-3.53 8.45 8.45 0 0 1 3.6.06 4.03 4.03 0 0 1 3.05 3.92v1.33l-.02.18c-.03.18-.06.36.18.43.26.07.43-.16.56-.35a2 2 0 0 0 .26-.57 4.84 4.84 0 0 0-2.41-5.55 7.97 7.97 0 0 0-6.45-.31 4.71 4.71 0 0 0-3.14 3.67 10.7 10.7 0 0 0-.05 4 4.67 4.67 0 0 0 3.81 4.08Z\" clip-rule=\"evenodd\"/>\n</svg>",
|
|
63
63
|
"emergency": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M4.73204 15.7496L4.73204 14.7496L4.73204 14.7496L4.73204 15.7496ZM2.73204 13.7496L1.73204 13.7496L2.73204 13.7496ZM8.03524 15.7496L9.03524 15.7496L9.03524 14.7496L8.03524 14.7496L8.03524 15.7496ZM8.03524 19.2068L7.03524 19.2068L7.03524 19.2068L8.03524 19.2068ZM10.0352 21.2068L10.0352 22.2068L10.0352 22.2068L10.0352 21.2068ZM13.6885 21.2068L13.6885 22.2068L13.6885 22.2068L13.6885 21.2068ZM15.6885 19.2068L16.6885 19.2068L16.6885 19.2068L15.6885 19.2068ZM15.6885 15.7496L15.6885 14.7496L14.6885 14.7496L14.6885 15.7496L15.6885 15.7496ZM19.0691 15.7496L19.0691 14.7496L19.0691 14.7496L19.0691 15.7496ZM21.0691 13.7496L22.0691 13.7496V13.7496L21.0691 13.7496ZM21.0691 10.0964L22.0691 10.0964L21.0691 10.0964ZM19.0691 8.09638L19.0691 9.09638L19.0691 9.09638L19.0691 8.09638ZM15.6885 8.09638L14.6885 8.09638L14.6885 9.09638H15.6885V8.09638ZM15.6885 4.86979L14.6885 4.86978L14.6885 4.86979L15.6885 4.86979ZM13.6885 2.86978L13.6885 1.86978L13.6885 1.86978L13.6885 2.86978ZM10.0352 2.86979L10.0352 3.86979L10.0352 3.86979L10.0352 2.86979ZM8.03524 4.86978L7.03524 4.86978L7.03524 4.86978L8.03524 4.86978ZM8.03524 8.09638L8.03524 9.09638L9.03524 9.09638L9.03524 8.09638L8.03524 8.09638ZM4.73204 8.09638L4.73204 7.09638L4.73204 7.09638L4.73204 8.09638ZM2.73204 10.0964L3.73204 10.0964V10.0964L2.73204 10.0964ZM4.73204 14.7496C4.17976 14.7496 3.73204 14.3019 3.73204 13.7496L1.73204 13.7496C1.73204 15.4065 3.07519 16.7496 4.73204 16.7496L4.73204 14.7496ZM8.03524 14.7496L4.73204 14.7496L4.73204 16.7496L8.03524 16.7496L8.03524 14.7496ZM9.03524 19.2068L9.03524 15.7496L7.03524 15.7496L7.03524 19.2068L9.03524 19.2068ZM10.0352 20.2068C9.48295 20.2068 9.03524 19.7591 9.03524 19.2068L7.03524 19.2068C7.03524 20.8637 8.37838 22.2068 10.0352 22.2068L10.0352 20.2068ZM13.6885 20.2068L10.0352 20.2068L10.0352 22.2068L13.6885 22.2068L13.6885 20.2068ZM14.6885 19.2068C14.6885 19.7591 14.2407 20.2068 13.6885 20.2068L13.6885 22.2068C15.3453 22.2068 16.6885 20.8637 16.6885 19.2068L14.6885 19.2068ZM14.6885 15.7496L14.6885 19.2068L16.6885 19.2068L16.6885 15.7496L14.6885 15.7496ZM19.0691 14.7496L15.6885 14.7496L15.6885 16.7496L19.0691 16.7496L19.0691 14.7496ZM20.0691 13.7496C20.0691 14.3019 19.6214 14.7496 19.0691 14.7496L19.0691 16.7496C20.7259 16.7496 22.0691 15.4065 22.0691 13.7496L20.0691 13.7496ZM20.0691 10.0964L20.0691 13.7496L22.0691 13.7496L22.0691 10.0964L20.0691 10.0964ZM19.0691 9.09638C19.6214 9.09638 20.0691 9.5441 20.0691 10.0964L22.0691 10.0964C22.0691 8.43953 20.7259 7.09638 19.0691 7.09638L19.0691 9.09638ZM15.6885 9.09638H19.0691V7.09638L15.6885 7.09638V9.09638ZM14.6885 4.86979L14.6885 8.09638L16.6885 8.09638L16.6885 4.86979L14.6885 4.86979ZM13.6885 3.86978C14.2407 3.86979 14.6885 4.3175 14.6885 4.86978L16.6885 4.86979C16.6885 3.21293 15.3453 1.86979 13.6885 1.86978L13.6885 3.86978ZM10.0352 3.86979L13.6885 3.86978L13.6885 1.86978L10.0352 1.86979L10.0352 3.86979ZM9.03524 4.86978C9.03524 4.3175 9.48295 3.86978 10.0352 3.86979L10.0352 1.86979C8.37839 1.86978 7.03524 3.21293 7.03524 4.86978L9.03524 4.86978ZM9.03524 8.09638L9.03524 4.86978L7.03524 4.86978L7.03524 8.09638L9.03524 8.09638ZM4.73204 9.09638L8.03524 9.09638L8.03524 7.09638L4.73204 7.09638L4.73204 9.09638ZM3.73204 10.0964C3.73204 9.5441 4.17976 9.09638 4.73204 9.09638L4.73204 7.09638C3.07519 7.09638 1.73204 8.43953 1.73204 10.0964L3.73204 10.0964ZM3.73204 13.7496L3.73204 10.0964L1.73204 10.0964L1.73204 13.7496L3.73204 13.7496Z\" fill=\"currentColor\"/>\n</svg>\n",
|
|
64
64
|
"expand": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\"\n stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\">\n <path d=\"M9 19.7l3 2.3 3-2.3M12 18v4m3-17.7L12 2 9 4.3M12 6V2m-7 8h14M5 14h14\" />\n</svg>",
|
|
65
|
+
"expand-left": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 13H8V11H21C21.5523 11 22 11.4477 22 12C22 12.5523 21.5523 13 21 13Z\" fill=\"currentColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 2C3.55228 2 4 2.44772 4 3V21C4 21.5523 3.55228 22 3 22C2.44772 22 2 21.5523 2 21V3C2 2.44772 2.44772 2 3 2Z\" fill=\"currentColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7071 17.7071C12.3166 18.0976 11.6834 18.0976 11.2929 17.7071L6.29289 12.7071C6.10536 12.5196 6 12.2652 6 12C6 11.7348 6.10536 11.4804 6.29289 11.2929L11.2929 6.29289C11.6834 5.90237 12.3166 5.90237 12.7071 6.29289C13.0976 6.68342 13.0976 7.31658 12.7071 7.70711L8.41421 12L12.7071 16.2929C13.0976 16.6834 13.0976 17.3166 12.7071 17.7071Z\" fill=\"currentColor\"/>\n</svg>\n",
|
|
65
66
|
"external-link": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-external-link\"><path d=\"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6\"></path><polyline points=\"15 3 21 3 21 9\"></polyline><line x1=\"10\" y1=\"14\" x2=\"21\" y2=\"3\"></line></svg>",
|
|
66
67
|
"eye": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-eye\"><path d=\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z\"></path><circle cx=\"12\" cy=\"12\" r=\"3\"></circle></svg>",
|
|
67
68
|
"eye-off": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-eye-off\"><path d=\"M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24\"></path><line x1=\"1\" y1=\"1\" x2=\"23\" y2=\"23\"></line></svg>",
|
|
@@ -64,6 +64,7 @@
|
|
|
64
64
|
"effigos": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\">\n <path d=\"M2.04 7.16c-.2 2.55.23 4.82 2.64 6.25.07.06.16.09.24.12.08.02.15.05.22.1 1.82.63 3.56.45 4.2-.5-.74.06-1.48.07-2.21.02-2.04-.1-3.47-1.19-4.01-3.12a7.23 7.23 0 0 1-.02-3.76c.3-1.2 1.03-2.1 2.12-2.67a6.32 6.32 0 0 1 4.8-.36 4.07 4.07 0 0 1 3.1 3.84c.11 1.35-.6 2.27-1.94 2.46-1.06.14-2.13.16-3.2.07-1.13-.08-1.36-.35-1.36-1.5V8l.01-.44c.04-.47.32-.8.78-.85.42-.03.84-.03 1.26 0 .45.05.74.33.78.8.02.38.02.77 0 1.16v.03c0 .2 0 .38.26.36h.17c.21.01.43.02.46-.29.05-.55.1-1.1-.04-1.63-.18-.72-.62-1.18-1.37-1.3a6.15 6.15 0 0 0-1.63-.02c-.9.1-1.5.74-1.57 1.7-.03.4-.03.8 0 1.21.1 1.01.66 1.6 1.67 1.7 1.4.15 2.82.17 4.22-.08 1.19-.22 2.02-.92 2.26-2.15a4.67 4.67 0 0 0-1.41-4.58C10.73 2 8.62 1.74 6.4 2.21a5.35 5.35 0 0 0-4.37 4.95Zm4.5 4.93a8.5 8.5 0 0 0 4.1-.08l.17-.1c.1-.05.2-.1.29-.18.03-.04.08-.07.12-.1.08-.08.17-.15.19-.29h-.39c-1.22.13-2.45.14-3.67.01-1.47-.15-2.38-.96-2.56-2.38a6.7 6.7 0 0 1 0-1.79 2.6 2.6 0 0 1 2.14-2.34 5.6 5.6 0 0 1 2.41.04c1.2.3 2 1.35 2.02 2.6V8.5c-.03.11-.05.23.11.28.17.04.3-.1.38-.23.08-.12.13-.25.17-.38a3.23 3.23 0 0 0-1.6-3.7 5.32 5.32 0 0 0-4.3-.21 3.14 3.14 0 0 0-2.1 2.45 7.19 7.19 0 0 0-.03 2.66 3.12 3.12 0 0 0 2.54 2.72Zm0 0\" fill-rule=\"evenodd\" fill=\"#607585\" fill-opacity=\"1\"/>\n</svg>",
|
|
65
65
|
"emergency": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M3.20848 10.7665L3.20848 11.7665L3.20848 11.7665L3.20848 10.7665ZM1.20848 8.76651L2.20848 8.76651L2.20848 8.76651L1.20848 8.76651ZM5.12135 10.7665L6.12135 10.7665L6.12135 9.76651L5.12135 9.76651L5.12135 10.7665ZM5.12135 12.7929L6.12135 12.7929L6.12135 12.7929L5.12135 12.7929ZM7.12135 14.7929L7.12135 15.7929H7.12135L7.12135 14.7929ZM8.76792 14.7929L8.76792 15.7929L8.76792 15.7929L8.76792 14.7929ZM10.7679 12.7929L9.76792 12.7929L9.76792 12.7929L10.7679 12.7929ZM10.7679 10.7665V9.76651L9.76792 9.76651L9.76792 10.7665H10.7679ZM12.7376 10.7665L12.7376 11.7665L12.7376 11.7665L12.7376 10.7665ZM12.7376 5.11994L12.7376 4.11994L12.7376 4.11994L12.7376 5.11994ZM10.7679 5.11994L9.76792 5.11994L9.76792 6.11994L10.7679 6.11994L10.7679 5.11994ZM10.7679 3.26381L11.7679 3.26381L10.7679 3.26381ZM8.76792 1.26381L8.76792 0.263808L8.76792 1.26381ZM7.12135 1.26381L7.12135 2.26381L7.12135 2.26381L7.12135 1.26381ZM5.12135 3.26381L4.12135 3.26381L4.12135 3.26381L5.12135 3.26381ZM5.12135 5.11994L5.12135 6.11994L6.12135 6.11994L6.12135 5.11994L5.12135 5.11994ZM3.20848 5.11994L3.20848 4.11994L3.20848 4.11994L3.20848 5.11994ZM1.20848 7.11994L0.208484 7.11994L0.208484 7.11994L1.20848 7.11994ZM3.20848 9.76651C2.6562 9.76651 2.20848 9.3188 2.20848 8.76651L0.208484 8.76651C0.208484 10.4234 1.55163 11.7665 3.20848 11.7665L3.20848 9.76651ZM5.12135 9.76651L3.20848 9.76651L3.20848 11.7665L5.12135 11.7665L5.12135 9.76651ZM6.12135 12.7929L6.12135 10.7665L4.12135 10.7665L4.12135 12.7929L6.12135 12.7929ZM7.12135 13.7929C6.56907 13.7929 6.12135 13.3452 6.12135 12.7929L4.12135 12.7929C4.12135 14.4498 5.4645 15.7929 7.12135 15.7929L7.12135 13.7929ZM8.76792 13.7929L7.12135 13.7929L7.12135 15.7929L8.76792 15.7929L8.76792 13.7929ZM9.76792 12.7929C9.76792 13.3452 9.32021 13.7929 8.76792 13.7929L8.76792 15.7929C10.4248 15.7929 11.7679 14.4498 11.7679 12.7929L9.76792 12.7929ZM9.76792 10.7665V12.7929H11.7679V10.7665H9.76792ZM12.7376 9.76651L10.7679 9.76651V11.7665L12.7376 11.7665L12.7376 9.76651ZM13.7376 8.76652C13.7376 9.3188 13.2899 9.76651 12.7376 9.76651L12.7376 11.7665C14.3945 11.7665 15.7376 10.4234 15.7376 8.76652H13.7376ZM13.7376 7.11994V8.76652H15.7376V7.11994H13.7376ZM12.7376 6.11994C13.2899 6.11994 13.7376 6.56766 13.7376 7.11994H15.7376C15.7376 5.46309 14.3945 4.11994 12.7376 4.11994L12.7376 6.11994ZM10.7679 6.11994L12.7376 6.11994L12.7376 4.11994L10.7679 4.11994L10.7679 6.11994ZM9.76792 3.26381L9.76792 5.11994L11.7679 5.11994L11.7679 3.26381L9.76792 3.26381ZM8.76792 2.26381C9.32021 2.26381 9.76792 2.71152 9.76792 3.26381H11.7679C11.7679 1.60695 10.4248 0.263808 8.76792 0.263808L8.76792 2.26381ZM7.12135 2.26381L8.76792 2.26381L8.76792 0.263808L7.12135 0.263808L7.12135 2.26381ZM6.12135 3.26381C6.12135 2.71152 6.56907 2.26381 7.12135 2.26381L7.12135 0.263808C5.4645 0.263809 4.12135 1.60695 4.12135 3.26381L6.12135 3.26381ZM6.12135 5.11994L6.12135 3.26381L4.12135 3.26381L4.12135 5.11994L6.12135 5.11994ZM3.20848 6.11994L5.12135 6.11994L5.12135 4.11994L3.20848 4.11994L3.20848 6.11994ZM2.20848 7.11994C2.20848 6.56766 2.6562 6.11994 3.20848 6.11994L3.20848 4.11994C1.55163 4.11994 0.208484 5.46309 0.208484 7.11994L2.20848 7.11994ZM2.20848 8.76651L2.20848 7.11994L0.208484 7.11994L0.208484 8.76651L2.20848 8.76651Z\" fill=\"currentColor\"/>\n</svg>\n",
|
|
66
66
|
"expand": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"bevel\" stroke-width=\"2\" d=\"M3 6h10M3 10h10\" />\n <g fill=\"currentColor\">\n <path d=\"M8 16l-3-3h6zM8 0l3 3H5z\" />\n </g>\n</svg>",
|
|
67
|
+
"expand-left": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14 9H6V7H14C14.5523 7 15 7.44772 15 8C15 8.55228 14.5523 9 14 9Z\" fill=\"currentColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 1C2.55228 1 3 1.44772 3 2V14C3 14.5523 2.55228 15 2 15C1.44772 15 1 14.5523 1 14V2C1 1.44772 1.44772 1 2 1Z\" fill=\"currentColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.70711 11.7071C8.31658 12.0976 7.68342 12.0976 7.29289 11.7071L4.29289 8.70711C3.90237 8.31658 3.90237 7.68342 4.29289 7.29289L7.29289 4.29289C7.68342 3.90237 8.31658 3.90237 8.70711 4.29289C9.09763 4.68342 9.09763 5.31658 8.70711 5.70711L6.41421 8L8.70711 10.2929C9.09763 10.6834 9.09763 11.3166 8.70711 11.7071Z\" fill=\"currentColor\"/>\n</svg>\n",
|
|
67
68
|
"external-link": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\">\n <path\n d=\"M13 9v2.667c0 .736-.597 1.333-1.333 1.333H4.333A1.333 1.333 0 013 11.667V4.333C3 3.597 3.597 3 4.333 3H7\" />\n <g stroke-linecap=\"round\">\n <path d=\"M10 2h4v4M8 8l6-6\" />\n </g>\n </g>\n</svg>",
|
|
68
69
|
"eye": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <g fill-rule=\"evenodd\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\n clip-rule=\"evenodd\">\n <path d=\"M1 8s2.545-5 7-5 7 5 7 5-2.546 5-7 5c-4.455 0-7-5-7-5z\" />\n <path d=\"M8 10a2 2 0 100-4 2 2 0 000 4z\" />\n </g>\n</svg>",
|
|
69
70
|
"eye-off": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\"\n d=\"M12.3 12.57l2.286 2.344L16 13.5 2.914.086 1.5 1.5l2.013 2.063c-.537.396-1.007.827-1.407 1.246a13.327 13.327 0 00-1.65 2.135 2 2 0 000 2.112c.053.084.111.176.176.275.332.505.826 1.18 1.474 1.86C3.387 12.531 5.381 14 8 14c1.707 0 3.148-.623 4.3-1.43zm-1.42-1.455l-.868-.89a3 3 0 01-4.187-4.292l-.899-.92c-.509.345-.968.753-1.373 1.177A11.328 11.328 0 002.155 8c.044.07.093.148.148.232.284.432.705 1.007 1.25 1.577C4.66 10.97 6.165 12 8 12c1.078 0 2.043-.355 2.88-.884zM7.225 7.368A1 1 0 008.613 8.79zm-.016-5.323l2.146 2.146c1.231.35 2.271 1.14 3.092 2A11.335 11.335 0 0113.845 8a10.71 10.71 0 01-.269.412l1.435 1.435a13.598 13.598 0 00.533-.791 2 2 0 000-2.112 13.314 13.314 0 00-1.65-2.135C12.613 3.467 10.619 2 8 2c-.27 0-.534.017-.79.046z\"\n clip-rule=\"evenodd\" />\n</svg>",
|