@ably/ui 17.12.0-dev.dcf685cd → 17.12.0

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 (42) hide show
  1. package/core/Accordion/types.js.map +1 -1
  2. package/core/Accordion.js +1 -1
  3. package/core/Accordion.js.map +1 -1
  4. package/core/Icon/components/icon-gui-checklist-checked.js +1 -1
  5. package/core/Icon/components/icon-gui-checklist-checked.js.map +1 -1
  6. package/core/Icon/components/icon-gui-code-doc.js +1 -1
  7. package/core/Icon/components/icon-gui-code-doc.js.map +1 -1
  8. package/core/Icon/components/icon-gui-cursor.js +1 -1
  9. package/core/Icon/components/icon-gui-cursor.js.map +1 -1
  10. package/core/Icon/components/icon-gui-expand.js +1 -1
  11. package/core/Icon/components/icon-gui-expand.js.map +1 -1
  12. package/core/Icon/components/icon-gui-filter-flow-step-0.js +1 -1
  13. package/core/Icon/components/icon-gui-filter-flow-step-0.js.map +1 -1
  14. package/core/Icon/components/icon-gui-flower-growth.js +1 -1
  15. package/core/Icon/components/icon-gui-flower-growth.js.map +1 -1
  16. package/core/Icon/components/icon-gui-glasses.js +1 -1
  17. package/core/Icon/components/icon-gui-glasses.js.map +1 -1
  18. package/core/Icon/components/icon-gui-mouse.js +1 -1
  19. package/core/Icon/components/icon-gui-mouse.js.map +1 -1
  20. package/core/Icon/components/icon-gui-pitfall.js +1 -1
  21. package/core/Icon/components/icon-gui-pitfall.js.map +1 -1
  22. package/core/Icon/components/icon-gui-quote-marks-fill.js +1 -1
  23. package/core/Icon/components/icon-gui-quote-marks-fill.js.map +1 -1
  24. package/core/Meganav.js +1 -1
  25. package/core/Meganav.js.map +1 -1
  26. package/core/Notice.js +1 -1
  27. package/core/Notice.js.map +1 -1
  28. package/core/icons/gui/icon-gui-checklist-checked.svg +1 -1
  29. package/core/icons/gui/icon-gui-code-doc.svg +1 -1
  30. package/core/icons/gui/icon-gui-cursor.svg +1 -1
  31. package/core/icons/gui/icon-gui-expand.svg +1 -1
  32. package/core/icons/gui/icon-gui-filter-flow-step-0.svg +3 -3
  33. package/core/icons/gui/icon-gui-flower-growth.svg +1 -1
  34. package/core/icons/gui/icon-gui-glasses.svg +1 -1
  35. package/core/icons/gui/icon-gui-mouse.svg +1 -1
  36. package/core/icons/gui/icon-gui-pitfall.svg +1 -1
  37. package/core/icons/gui/icon-gui-quote-marks-fill.svg +2 -2
  38. package/core/sprites-gui.svg +1 -1
  39. package/index.d.ts +7 -13
  40. package/package.json +3 -3
  41. package/core/Icon/components/icon-gui-square-3-stack-3d.js +0 -2
  42. package/core/Icon/components/icon-gui-square-3-stack-3d.js.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/core/Accordion/types.ts"],"sourcesContent":["import { ReactNode } from \"react\";\nimport { IconName, IconSize } from \"../Icon/types\";\nimport { ColorThemeSet } from \"../styles/colors/types\";\n\n/**\n * Represents the data structure for an Accordion component.\n */\nexport type AccordionData = {\n /**\n * The name of the accordion item.\n * @deprecated Use `heading` for custom heading content. This will be used as fallback if `heading` is not provided.\n */\n name: string;\n\n /**\n * Custom heading content. If provided, this will be used instead of `name`.\n * Can be a ReactNode or a function that receives the index and isOpen state and returns ReactNode.\n */\n heading?: ReactNode | ((index: number, isOpen: boolean) => ReactNode);\n\n /**\n * The optional icon name to be displayed alongside the accordion item.\n */\n icon?: IconName | AccordionIcon;\n\n /**\n * The content to be displayed when the accordion item is expanded.\n */\n content: ReactNode;\n\n /**\n * Optional click handler function that is called when the accordion item is clicked.\n * @param index - The index of the clicked accordion item.\n */\n onClick?: (index: number) => void;\n\n /**\n * Indicates whether the accordion item is interactive.\n * When false, the item cannot be expanded or collapsed by user interaction.\n * @default true\n */\n interactive?: boolean;\n};\n\nexport type AccordionIcon = {\n name: IconName;\n css?: string;\n};\n\nexport type AccordionIcons = {\n closed: AccordionIcon;\n open: AccordionIcon;\n};\n\nexport const accordionThemes = [\"default\", \"transparent\", \"static\"] as const;\n\nexport type AccordionTheme = (typeof accordionThemes)[number];\n\n/**\n * Represents the theme colors for an accordion component.\n */\nexport type AccordionThemeColors = {\n /**\n * Background color class for the accordion.\n */\n bg: ColorThemeSet;\n\n /**\n * Background color when the accordion item is hovered.\n */\n hoverBg: ColorThemeSet;\n\n /**\n * Text color class for the accordion.\n */\n text: ColorThemeSet;\n\n /**\n * Color class for the toggle icon of the accordion.\n */\n toggleIconColor: ColorThemeSet;\n\n /**\n * Optional background color class for selectable accordion items.\n */\n selectableBg?: ColorThemeSet;\n\n /**\n * Optional text color class for selectable accordion items.\n */\n selectableText?: ColorThemeSet;\n\n /**\n * Optional border color for the accordion.\n */\n border?: string;\n};\n\n/**\n * Options for configuring the Accordion component.\n */\nexport type AccordionOptions = {\n /**\n * If true, only one accordion item can be open at a time.\n * @default false\n */\n autoClose?: boolean;\n\n /**\n * If true, accordion items can be selected.\n * @default false\n */\n selectable?: boolean;\n\n /**\n * If true, the accordion header will stick to the top when scrolling.\n * @default false\n */\n sticky?: boolean;\n\n /**\n * An array of indexes indicating which accordion items should be open by default.\n * @default []\n */\n defaultOpenIndexes?: number[];\n\n /**\n * If true, all accordion items will be fully open.\n * @default false\n */\n fullyOpen?: boolean;\n\n /**\n * Custom CSS class to apply to the accordion header.\n * @default \"\"\n */\n headerCSS?: string;\n\n /**\n * If true, borders between accordion items will be hidden.\n * @default false\n */\n hideBorders?: boolean;\n\n /**\n * Size of the row icon.\n * @default \"32px\"\n */\n rowIconSize?: IconSize;\n\n /**\n * Size of the accordion icon.\n * @default \"16px\"\n */\n iconSize?: IconSize;\n\n /**\n * Custom CSS classes to apply to the selected accordion header.\n * @default \"\"\n */\n selectedHeaderCSS?: string;\n\n /**\n * Custom CSS classes to apply to the accordion content.\n * @default \"\"\n */\n contentCSS?: string;\n};\n"],"names":["accordionThemes"],"mappings":"AAsDA,OAAO,MAAMA,gBAAkB,CAAC,UAAW,cAAe,SAAS,AAAU"}
1
+ {"version":3,"sources":["../../../src/core/Accordion/types.ts"],"sourcesContent":["import { ReactNode } from \"react\";\nimport { IconName, IconSize } from \"../Icon/types\";\nimport { ColorThemeSet } from \"../styles/colors/types\";\n\n/**\n * Represents the data structure for an Accordion component.\n */\nexport type AccordionData = {\n /**\n * The name of the accordion item.\n */\n name: string;\n\n /**\n * Custom heading content. If provided, this will be used instead of `name`.\n * Can be a ReactNode or a function that receives the index and isOpen state\n * and returns ReactNode.\n */\n heading?: ReactNode | ((index: number, isOpen: boolean) => ReactNode);\n\n /**\n * The optional icon name to be displayed alongside the accordion item.\n */\n icon?: IconName | AccordionIcon;\n\n /**\n * The content to be displayed when the accordion item is expanded.\n */\n content: ReactNode;\n\n /**\n * Optional click handler function that is called when the accordion item is clicked.\n * @param index - The index of the clicked accordion item.\n */\n onClick?: (index: number) => void;\n\n /**\n * Indicates whether the accordion item is interactive.\n * When false, the item cannot be expanded or collapsed by user interaction.\n * @default true\n */\n interactive?: boolean;\n};\n\nexport type AccordionIcon = {\n name: IconName;\n css?: string;\n};\n\nexport type AccordionIcons = {\n closed: AccordionIcon;\n open: AccordionIcon;\n};\n\nexport const accordionThemes = [\"default\", \"transparent\", \"static\"] as const;\n\nexport type AccordionTheme = (typeof accordionThemes)[number];\n\n/**\n * Represents the theme colors for an accordion component.\n */\nexport type AccordionThemeColors = {\n /**\n * Background color class for the accordion.\n */\n bg: ColorThemeSet;\n\n /**\n * Background color when the accordion item is hovered.\n */\n hoverBg: ColorThemeSet;\n\n /**\n * Text color class for the accordion.\n */\n text: ColorThemeSet;\n\n /**\n * Color class for the toggle icon of the accordion.\n */\n toggleIconColor: ColorThemeSet;\n\n /**\n * Optional background color class for selectable accordion items.\n */\n selectableBg?: ColorThemeSet;\n\n /**\n * Optional text color class for selectable accordion items.\n */\n selectableText?: ColorThemeSet;\n\n /**\n * Optional border color for the accordion.\n */\n border?: string;\n};\n\n/**\n * Options for configuring the Accordion component.\n */\nexport type AccordionOptions = {\n /**\n * If true, only one accordion item can be open at a time.\n * @default false\n */\n autoClose?: boolean;\n\n /**\n * If true, accordion items can be selected.\n * @default false\n */\n selectable?: boolean;\n\n /**\n * If true, the accordion header will stick to the top when scrolling.\n * @default false\n */\n sticky?: boolean;\n\n /**\n * An array of indexes indicating which accordion items should be open by default.\n * @default []\n */\n defaultOpenIndexes?: number[];\n\n /**\n * If true, all accordion items will be fully open.\n * @default false\n */\n fullyOpen?: boolean;\n\n /**\n * Custom CSS class to apply to the accordion header.\n * @default \"\"\n */\n headerCSS?: string;\n\n /**\n * If true, borders between accordion items will be hidden.\n * @default false\n */\n hideBorders?: boolean;\n\n /**\n * Size of the row icon.\n * @default \"32px\"\n */\n rowIconSize?: IconSize;\n\n /**\n * Size of the accordion icon.\n * @default \"16px\"\n */\n iconSize?: IconSize;\n\n /**\n * Custom CSS classes to apply to the selected accordion header.\n * @default \"\"\n */\n selectedHeaderCSS?: string;\n\n /**\n * Custom CSS classes to apply to the accordion content.\n * @default \"\"\n */\n contentCSS?: string;\n\n /**\n * Custom CSS classes to apply to the accordion item wrapper when it is open/active.\n * @default \"\"\n */\n selectedItemCSS?: string;\n};\n"],"names":["accordionThemes"],"mappings":"AAsDA,OAAO,MAAMA,gBAAkB,CAAC,UAAW,cAAe,SAAS,AAAU"}
package/core/Accordion.js CHANGED
@@ -1,2 +1,2 @@
1
- import React,{useMemo,useState,forwardRef,useEffect}from"react";import{AccordionContent,AccordionItem,AccordionTrigger,Accordion as RadixAccordion}from"@radix-ui/react-accordion";import Icon from"./Icon";import{themeClasses,isNonTransparentTheme,isStaticTheme}from"./Accordion/utils";import cn from"./utils/cn";const AccordionRow=({name,heading,children,rowIcon,options,toggleIcons,theme,index,onClick,openRowValues,rowInteractive=true})=>{const{selectable,sticky}=options||{};const rowKey=`accordion-item-${index}`;const isOpen=openRowValues.includes(rowKey);const{text,bg,hoverBg,selectableBg,selectableText,border,toggleIconColor}=themeClasses[theme];const textClass=selectable&&isOpen&&selectableText||text;const renderHeading=()=>{if(heading){if(typeof heading==="function"){return heading(index,isOpen)}return heading}return React.createElement("span",null,name)};return React.createElement(AccordionItem,{value:rowKey,className:cn({[`${border}`]:border&&!options?.hideBorders})},React.createElement(AccordionTrigger,{onClick:onClick,className:cn({"flex w-full group/accordion-trigger py-4 ui-text-p1 font-bold text-left items-center gap-3 transition-colors focus:outline-none":true,"px-4 mb-4 rounded-lg":isNonTransparentTheme(theme),"px-0 rounded-none":!isNonTransparentTheme(theme),"pointer-events-none focus-visible:outline-none":isStaticTheme(theme),"focus-base":!isStaticTheme(theme),"sticky top-0":sticky,[`${bg} ${hoverBg} ${text}`]:!(selectable&&isOpen),[`${selectableBg} ${selectableText}`]:selectable&&isOpen,[options?.headerCSS??""]:options?.headerCSS,[options?.selectedHeaderCSS??""]:options?.selectedHeaderCSS&&isOpen})},rowIcon?React.createElement(Icon,{name:typeof rowIcon==="object"?rowIcon.name:rowIcon,color:textClass,additionalCSS:typeof rowIcon==="object"&&rowIcon.css?rowIcon.css:"",size:options?.rowIconSize??"32px"}):null,renderHeading(),!selectable&&!isStaticTheme(theme)&&rowInteractive?React.createElement("span",{className:"flex-1 justify-end flex items-center"},React.createElement(Icon,{name:isOpen?toggleIcons.open.name:toggleIcons.closed.name,color:toggleIconColor,size:options?.iconSize??"16px"})):null),rowInteractive&&React.createElement(AccordionContent,{className:cn({"ui-text-p2 overflow-hidden transition-all data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down":true,[options?.contentCSS??""]:options?.contentCSS})},React.createElement("div",{className:"pb-4"},children)))};const Accordion=forwardRef(({data,theme="transparent",icons={closed:{name:"icon-gui-plus-outline"},open:{name:"icon-gui-minus-outline"}},options,...props},ref)=>{const openIndexes=useMemo(()=>{const indexValues=data.map((_,i)=>`accordion-item-${i}`);return options?.fullyOpen?indexValues:indexValues.filter((_,index)=>options?.defaultOpenIndexes?.includes(index))},[data,options?.fullyOpen,options?.defaultOpenIndexes]);const[openRowValues,setOpenRowValues]=useState(openIndexes);useEffect(()=>{setOpenRowValues(openIndexes)},[openIndexes]);const innerAccordion=data.map((item,index)=>React.createElement(AccordionRow,{key:item.name,name:item.name,heading:item.heading,rowIcon:item.icon,toggleIcons:icons,theme:theme,options:options,index:index,onClick:()=>{item.onClick?.(index)},openRowValues:openRowValues,rowInteractive:item.interactive},item.content));return React.createElement("div",{ref:ref,...props},options?.autoClose?React.createElement(RadixAccordion,{type:"single",collapsible:true,value:openRowValues[0],onValueChange:values=>setOpenRowValues([values])},innerAccordion):React.createElement(RadixAccordion,{type:"multiple",value:openRowValues,onValueChange:values=>setOpenRowValues(values)},innerAccordion))});Accordion.displayName="Accordion";export default Accordion;
1
+ import React,{useMemo,useState,forwardRef,useEffect}from"react";import{AccordionContent,AccordionItem,AccordionTrigger,Accordion as RadixAccordion}from"@radix-ui/react-accordion";import Icon from"./Icon";import{themeClasses,isNonTransparentTheme,isStaticTheme}from"./Accordion/utils";import cn from"./utils/cn";const AccordionRow=({name,heading,children,rowIcon,options,toggleIcons,theme,index,onClick,openRowValues,rowInteractive=true})=>{const{selectable,sticky}=options||{};const rowKey=`accordion-item-${index}`;const isOpen=openRowValues.includes(rowKey);const{text,bg,hoverBg,selectableBg,selectableText,border,toggleIconColor}=themeClasses[theme];const textClass=selectable&&isOpen&&selectableText||text;const renderHeading=()=>{if(heading){if(typeof heading==="function"){return heading(index,isOpen)}return heading}return React.createElement("span",null,name)};return React.createElement(AccordionItem,{value:rowKey,className:cn({[`${border}`]:border&&!options?.hideBorders,[`${options?.selectedItemCSS}`]:options?.selectedItemCSS&&isOpen})},React.createElement(AccordionTrigger,{onClick:onClick,className:cn({"flex w-full group/accordion-trigger py-4 ui-text-p1 font-bold text-left items-center gap-3 transition-colors focus:outline-none":true,"px-4 mb-4 rounded-lg":isNonTransparentTheme(theme),"px-0 rounded-none":!isNonTransparentTheme(theme),"pointer-events-none focus-visible:outline-none":isStaticTheme(theme),"focus-base":!isStaticTheme(theme),"sticky top-0":sticky,[`${bg} ${hoverBg} ${text}`]:!(selectable&&isOpen),[`${selectableBg} ${selectableText}`]:selectable&&isOpen,[options?.headerCSS??""]:options?.headerCSS,[options?.selectedHeaderCSS??""]:options?.selectedHeaderCSS&&isOpen})},rowIcon?React.createElement(Icon,{name:typeof rowIcon==="object"?rowIcon.name:rowIcon,color:textClass,additionalCSS:typeof rowIcon==="object"&&rowIcon.css?rowIcon.css:"",size:options?.rowIconSize??"32px"}):null,renderHeading(),!selectable&&!isStaticTheme(theme)&&rowInteractive?React.createElement("span",{className:"flex-1 justify-end flex items-center"},React.createElement(Icon,{name:isOpen?toggleIcons.open.name:toggleIcons.closed.name,color:toggleIconColor,additionalCSS:isOpen?typeof toggleIcons.open==="object"&&toggleIcons.open.css||"":typeof toggleIcons.closed==="object"&&toggleIcons.closed.css||"",size:options?.iconSize??"16px"})):null),rowInteractive&&React.createElement(AccordionContent,{className:cn({"ui-text-p2 overflow-hidden transition-all data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down":true,[options?.contentCSS??""]:options?.contentCSS})},React.createElement("div",{className:"pb-4"},children)))};const Accordion=forwardRef(({data,theme="transparent",icons={closed:{name:"icon-gui-plus-outline"},open:{name:"icon-gui-minus-outline"}},options,...props},ref)=>{const openIndexes=useMemo(()=>{const indexValues=data.map((_,i)=>`accordion-item-${i}`);return options?.fullyOpen?indexValues:indexValues.filter((_,index)=>options?.defaultOpenIndexes?.includes(index))},[data,options?.fullyOpen,options?.defaultOpenIndexes]);const[openRowValues,setOpenRowValues]=useState(openIndexes);useEffect(()=>{setOpenRowValues(openIndexes)},[openIndexes]);const innerAccordion=data.map((item,index)=>React.createElement(AccordionRow,{key:item.name,name:item.name,heading:item.heading,rowIcon:item.icon,toggleIcons:icons,theme:theme,options:options,index:index,onClick:()=>{item.onClick?.(index)},openRowValues:openRowValues,rowInteractive:item.interactive},item.content));return React.createElement("div",{ref:ref,...props},options?.autoClose?React.createElement(RadixAccordion,{type:"single",collapsible:true,value:openRowValues[0],onValueChange:values=>setOpenRowValues([values])},innerAccordion):React.createElement(RadixAccordion,{type:"multiple",value:openRowValues,onValueChange:values=>setOpenRowValues(values)},innerAccordion))});Accordion.displayName="Accordion";export default Accordion;
2
2
  //# sourceMappingURL=Accordion.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/core/Accordion.tsx"],"sourcesContent":["import React, {\n ReactNode,\n useMemo,\n useState,\n forwardRef,\n useEffect,\n} from \"react\";\nimport {\n AccordionContent,\n AccordionItem,\n AccordionTrigger,\n Accordion as RadixAccordion,\n} from \"@radix-ui/react-accordion\";\n\nimport Icon from \"./Icon\";\nimport type { IconName } from \"./Icon/types\";\nimport type {\n AccordionData,\n AccordionIcon,\n AccordionIcons,\n AccordionOptions,\n AccordionTheme,\n} from \"./Accordion/types\";\nimport {\n themeClasses,\n isNonTransparentTheme,\n isStaticTheme,\n} from \"./Accordion/utils\";\nimport cn from \"./utils/cn\";\n\ntype AccordionRowProps = {\n children: ReactNode;\n name: string;\n heading?: ReactNode | ((index: number, isOpen: boolean) => ReactNode);\n rowIcon?: IconName | AccordionIcon;\n theme: AccordionTheme;\n toggleIcons: AccordionIcons;\n options?: AccordionOptions;\n index: number;\n onClick: () => void;\n openRowValues: string[];\n rowInteractive?: boolean;\n};\n\nexport type AccordionProps = {\n /**\n * The data for the accordion items.\n */\n data: AccordionData[];\n\n /**\n * Icons for the accordion toggle.\n */\n icons?: AccordionIcons;\n\n /**\n * Theme for the accordion.\n */\n theme?: AccordionTheme;\n\n /**\n * Options for the accordion behavior.\n */\n options?: AccordionOptions;\n} & React.HTMLAttributes<HTMLDivElement>;\n\nconst AccordionRow = ({\n name,\n heading,\n children,\n rowIcon,\n options,\n toggleIcons,\n theme,\n index,\n onClick,\n openRowValues,\n rowInteractive = true,\n}: AccordionRowProps) => {\n const { selectable, sticky } = options || {};\n const rowKey = `accordion-item-${index}`;\n const isOpen = openRowValues.includes(rowKey);\n\n const {\n text,\n bg,\n hoverBg,\n selectableBg,\n selectableText,\n border,\n toggleIconColor,\n } = themeClasses[theme];\n\n const textClass = (selectable && isOpen && selectableText) || text;\n\n // Render custom heading or fallback to name\n const renderHeading = () => {\n if (heading) {\n if (typeof heading === 'function') {\n return heading(index, isOpen);\n }\n return heading;\n }\n return <span>{name}</span>;\n };\n\n return (\n <AccordionItem\n value={rowKey}\n className={cn({\n [`${border}`]: border && !options?.hideBorders,\n })}\n >\n <AccordionTrigger\n onClick={onClick}\n className={cn({\n \"flex w-full group/accordion-trigger py-4 ui-text-p1 font-bold text-left items-center gap-3 transition-colors focus:outline-none\": true,\n \"px-4 mb-4 rounded-lg\": isNonTransparentTheme(theme),\n \"px-0 rounded-none\": !isNonTransparentTheme(theme),\n \"pointer-events-none focus-visible:outline-none\":\n isStaticTheme(theme),\n \"focus-base\": !isStaticTheme(theme),\n \"sticky top-0\": sticky,\n [`${bg} ${hoverBg} ${text}`]: !(selectable && isOpen),\n [`${selectableBg} ${selectableText}`]: selectable && isOpen,\n [options?.headerCSS ?? \"\"]: options?.headerCSS,\n [options?.selectedHeaderCSS ?? \"\"]:\n options?.selectedHeaderCSS && isOpen,\n })}\n >\n {rowIcon ? (\n <Icon\n name={typeof rowIcon === \"object\" ? rowIcon.name : rowIcon}\n color={textClass}\n additionalCSS={\n typeof rowIcon === \"object\" && rowIcon.css ? rowIcon.css : \"\"\n }\n size={options?.rowIconSize ?? \"32px\"}\n />\n ) : null}\n {renderHeading()}\n {!selectable && !isStaticTheme(theme) && rowInteractive ? (\n <span className=\"flex-1 justify-end flex items-center\">\n <Icon\n name={isOpen ? toggleIcons.open.name : toggleIcons.closed.name}\n color={toggleIconColor}\n size={options?.iconSize ?? \"16px\"}\n />\n </span>\n ) : null}\n </AccordionTrigger>\n {rowInteractive && (\n <AccordionContent\n className={cn({\n \"ui-text-p2 overflow-hidden transition-all data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down\": true,\n [options?.contentCSS ?? \"\"]: options?.contentCSS,\n })}\n >\n <div className=\"pb-4\">{children}</div>\n </AccordionContent>\n )}\n </AccordionItem>\n );\n};\n\nconst Accordion = forwardRef<HTMLDivElement, AccordionProps>(\n (\n {\n data,\n theme = \"transparent\",\n icons = {\n closed: { name: \"icon-gui-plus-outline\" },\n open: { name: \"icon-gui-minus-outline\" },\n },\n options,\n ...props\n },\n ref,\n ) => {\n const openIndexes = useMemo(() => {\n const indexValues = data.map((_, i) => `accordion-item-${i}`);\n return options?.fullyOpen\n ? indexValues\n : indexValues.filter((_, index) =>\n options?.defaultOpenIndexes?.includes(index),\n );\n }, [data, options?.fullyOpen, options?.defaultOpenIndexes]);\n\n const [openRowValues, setOpenRowValues] = useState<string[]>(openIndexes);\n\n useEffect(() => {\n setOpenRowValues(openIndexes);\n }, [openIndexes]);\n\n const innerAccordion = data.map((item, index) => (\n <AccordionRow\n key={item.name}\n name={item.name}\n heading={item.heading}\n rowIcon={item.icon}\n toggleIcons={icons}\n theme={theme}\n options={options}\n index={index}\n onClick={() => {\n item.onClick?.(index);\n }}\n openRowValues={openRowValues}\n rowInteractive={item.interactive}\n >\n {item.content}\n </AccordionRow>\n ));\n\n return (\n <div ref={ref} {...props}>\n {options?.autoClose ? (\n <RadixAccordion\n type=\"single\"\n collapsible\n value={openRowValues[0]}\n onValueChange={(values) => setOpenRowValues([values])}\n >\n {innerAccordion}\n </RadixAccordion>\n ) : (\n <RadixAccordion\n type=\"multiple\"\n value={openRowValues}\n onValueChange={(values) => setOpenRowValues(values)}\n >\n {innerAccordion}\n </RadixAccordion>\n )}\n </div>\n );\n },\n);\n\nAccordion.displayName = \"Accordion\";\n\nexport default Accordion;\n"],"names":["React","useMemo","useState","forwardRef","useEffect","AccordionContent","AccordionItem","AccordionTrigger","Accordion","RadixAccordion","Icon","themeClasses","isNonTransparentTheme","isStaticTheme","cn","AccordionRow","name","heading","children","rowIcon","options","toggleIcons","theme","index","onClick","openRowValues","rowInteractive","selectable","sticky","rowKey","isOpen","includes","text","bg","hoverBg","selectableBg","selectableText","border","toggleIconColor","textClass","renderHeading","span","value","className","hideBorders","headerCSS","selectedHeaderCSS","color","additionalCSS","css","size","rowIconSize","open","closed","iconSize","contentCSS","div","data","icons","props","ref","openIndexes","indexValues","map","_","i","fullyOpen","filter","defaultOpenIndexes","setOpenRowValues","innerAccordion","item","key","icon","interactive","content","autoClose","type","collapsible","onValueChange","values","displayName"],"mappings":"AAAA,OAAOA,OAELC,OAAO,CACPC,QAAQ,CACRC,UAAU,CACVC,SAAS,KACJ,OAAQ,AACf,QACEC,gBAAgB,CAChBC,aAAa,CACbC,gBAAgB,CAChBC,aAAaC,cAAc,KACtB,2BAA4B,AAEnC,QAAOC,SAAU,QAAS,AAS1B,QACEC,YAAY,CACZC,qBAAqB,CACrBC,aAAa,KACR,mBAAoB,AAC3B,QAAOC,OAAQ,YAAa,CAsC5B,MAAMC,aAAe,CAAC,CACpBC,IAAI,CACJC,OAAO,CACPC,QAAQ,CACRC,OAAO,CACPC,OAAO,CACPC,WAAW,CACXC,KAAK,CACLC,KAAK,CACLC,OAAO,CACPC,aAAa,CACbC,eAAiB,IAAI,CACH,IAClB,KAAM,CAAEC,UAAU,CAAEC,MAAM,CAAE,CAAGR,SAAW,CAAC,EAC3C,MAAMS,OAAS,CAAC,eAAe,EAAEN,MAAM,CAAC,CACxC,MAAMO,OAASL,cAAcM,QAAQ,CAACF,QAEtC,KAAM,CACJG,IAAI,CACJC,EAAE,CACFC,OAAO,CACPC,YAAY,CACZC,cAAc,CACdC,MAAM,CACNC,eAAe,CAChB,CAAG3B,YAAY,CAACW,MAAM,CAEvB,MAAMiB,UAAY,AAACZ,YAAcG,QAAUM,gBAAmBJ,KAG9D,MAAMQ,cAAgB,KACpB,GAAIvB,QAAS,CACX,GAAI,OAAOA,UAAY,WAAY,CACjC,OAAOA,QAAQM,MAAOO,OACxB,CACA,OAAOb,OACT,CACA,OAAO,oBAACwB,YAAMzB,KAChB,EAEA,OACE,oBAACV,eACCoC,MAAOb,OACPc,UAAW7B,GAAG,CACZ,CAAC,CAAC,EAAEuB,OAAO,CAAC,CAAC,CAAEA,QAAU,CAACjB,SAASwB,WACrC,IAEA,oBAACrC,kBACCiB,QAASA,QACTmB,UAAW7B,GAAG,CACZ,kIAAmI,KACnI,uBAAwBF,sBAAsBU,OAC9C,oBAAqB,CAACV,sBAAsBU,OAC5C,iDACET,cAAcS,OAChB,aAAc,CAACT,cAAcS,OAC7B,eAAgBM,OAChB,CAAC,CAAC,EAAEK,GAAG,CAAC,EAAEC,QAAQ,CAAC,EAAEF,KAAK,CAAC,CAAC,CAAE,CAAEL,CAAAA,YAAcG,MAAK,EACnD,CAAC,CAAC,EAAEK,aAAa,CAAC,EAAEC,eAAe,CAAC,CAAC,CAAET,YAAcG,OACrD,CAACV,SAASyB,WAAa,GAAG,CAAEzB,SAASyB,UACrC,CAACzB,SAAS0B,mBAAqB,GAAG,CAChC1B,SAAS0B,mBAAqBhB,MAClC,IAECX,QACC,oBAACT,MACCM,KAAM,OAAOG,UAAY,SAAWA,QAAQH,IAAI,CAAGG,QACnD4B,MAAOR,UACPS,cACE,OAAO7B,UAAY,UAAYA,QAAQ8B,GAAG,CAAG9B,QAAQ8B,GAAG,CAAG,GAE7DC,KAAM9B,SAAS+B,aAAe,SAE9B,KACHX,gBACA,CAACb,YAAc,CAACd,cAAcS,QAAUI,eACvC,oBAACe,QAAKE,UAAU,wCACd,oBAACjC,MACCM,KAAMc,OAAST,YAAY+B,IAAI,CAACpC,IAAI,CAAGK,YAAYgC,MAAM,CAACrC,IAAI,CAC9D+B,MAAOT,gBACPY,KAAM9B,SAASkC,UAAY,UAG7B,MAEL5B,gBACC,oBAACrB,kBACCsC,UAAW7B,GAAG,CACZ,8HAA+H,KAC/H,CAACM,SAASmC,YAAc,GAAG,CAAEnC,SAASmC,UACxC,IAEA,oBAACC,OAAIb,UAAU,QAAQzB,WAKjC,EAEA,MAAMV,UAAYL,WAChB,CACE,CACEsD,IAAI,CACJnC,MAAQ,aAAa,CACrBoC,MAAQ,CACNL,OAAQ,CAAErC,KAAM,uBAAwB,EACxCoC,KAAM,CAAEpC,KAAM,wBAAyB,CACzC,CAAC,CACDI,OAAO,CACP,GAAGuC,MACJ,CACDC,OAEA,MAAMC,YAAc5D,QAAQ,KAC1B,MAAM6D,YAAcL,KAAKM,GAAG,CAAC,CAACC,EAAGC,IAAM,CAAC,eAAe,EAAEA,EAAE,CAAC,EAC5D,OAAO7C,SAAS8C,UACZJ,YACAA,YAAYK,MAAM,CAAC,CAACH,EAAGzC,QACvBH,SAASgD,oBAAoBrC,SAASR,OAE5C,EAAG,CAACkC,KAAMrC,SAAS8C,UAAW9C,SAASgD,mBAAmB,EAE1D,KAAM,CAAC3C,cAAe4C,iBAAiB,CAAGnE,SAAmB2D,aAE7DzD,UAAU,KACRiE,iBAAiBR,YACnB,EAAG,CAACA,YAAY,EAEhB,MAAMS,eAAiBb,KAAKM,GAAG,CAAC,CAACQ,KAAMhD,QACrC,oBAACR,cACCyD,IAAKD,KAAKvD,IAAI,CACdA,KAAMuD,KAAKvD,IAAI,CACfC,QAASsD,KAAKtD,OAAO,CACrBE,QAASoD,KAAKE,IAAI,CAClBpD,YAAaqC,MACbpC,MAAOA,MACPF,QAASA,QACTG,MAAOA,MACPC,QAAS,KACP+C,KAAK/C,OAAO,GAAGD,MACjB,EACAE,cAAeA,cACfC,eAAgB6C,KAAKG,WAAW,EAE/BH,KAAKI,OAAO,GAIjB,OACE,oBAACnB,OAAII,IAAKA,IAAM,GAAGD,KAAK,EACrBvC,SAASwD,UACR,oBAACnE,gBACCoE,KAAK,SACLC,YAAAA,KACApC,MAAOjB,aAAa,CAAC,EAAE,CACvBsD,cAAe,AAACC,QAAWX,iBAAiB,CAACW,OAAO,GAEnDV,gBAGH,oBAAC7D,gBACCoE,KAAK,WACLnC,MAAOjB,cACPsD,cAAe,AAACC,QAAWX,iBAAiBW,SAE3CV,gBAKX,EAGF9D,CAAAA,UAAUyE,WAAW,CAAG,WAExB,gBAAezE,SAAU"}
1
+ {"version":3,"sources":["../../src/core/Accordion.tsx"],"sourcesContent":["import React, {\n ReactNode,\n useMemo,\n useState,\n forwardRef,\n useEffect,\n} from \"react\";\nimport {\n AccordionContent,\n AccordionItem,\n AccordionTrigger,\n Accordion as RadixAccordion,\n} from \"@radix-ui/react-accordion\";\n\nimport Icon from \"./Icon\";\nimport type { IconName } from \"./Icon/types\";\nimport type {\n AccordionData,\n AccordionIcon,\n AccordionIcons,\n AccordionOptions,\n AccordionTheme,\n} from \"./Accordion/types\";\nimport {\n themeClasses,\n isNonTransparentTheme,\n isStaticTheme,\n} from \"./Accordion/utils\";\nimport cn from \"./utils/cn\";\n\ntype AccordionRowProps = {\n children: ReactNode;\n name: string;\n heading?: ReactNode | ((index: number, isOpen: boolean) => ReactNode);\n rowIcon?: IconName | AccordionIcon;\n theme: AccordionTheme;\n toggleIcons: AccordionIcons;\n options?: AccordionOptions;\n index: number;\n onClick: () => void;\n openRowValues: string[];\n rowInteractive?: boolean;\n};\n\nexport type AccordionProps = {\n /**\n * The data for the accordion items.\n */\n data: AccordionData[];\n\n /**\n * Icons for the accordion toggle.\n */\n icons?: AccordionIcons;\n\n /**\n * Theme for the accordion.\n */\n theme?: AccordionTheme;\n\n /**\n * Options for the accordion behavior.\n */\n options?: AccordionOptions;\n} & React.HTMLAttributes<HTMLDivElement>;\n\nconst AccordionRow = ({\n name,\n heading,\n children,\n rowIcon,\n options,\n toggleIcons,\n theme,\n index,\n onClick,\n openRowValues,\n rowInteractive = true,\n}: AccordionRowProps) => {\n const { selectable, sticky } = options || {};\n const rowKey = `accordion-item-${index}`;\n const isOpen = openRowValues.includes(rowKey);\n\n const {\n text,\n bg,\n hoverBg,\n selectableBg,\n selectableText,\n border,\n toggleIconColor,\n } = themeClasses[theme];\n\n const textClass = (selectable && isOpen && selectableText) || text;\n\n // Render custom heading or fallback to name\n const renderHeading = () => {\n if (heading) {\n if (typeof heading === \"function\") {\n return heading(index, isOpen);\n }\n return heading;\n }\n return <span>{name}</span>;\n };\n\n return (\n <AccordionItem\n value={rowKey}\n className={cn({\n [`${border}`]: border && !options?.hideBorders,\n [`${options?.selectedItemCSS}`]: options?.selectedItemCSS && isOpen,\n })}\n >\n <AccordionTrigger\n onClick={onClick}\n className={cn({\n \"flex w-full group/accordion-trigger py-4 ui-text-p1 font-bold text-left items-center gap-3 transition-colors focus:outline-none\": true,\n \"px-4 mb-4 rounded-lg\": isNonTransparentTheme(theme),\n \"px-0 rounded-none\": !isNonTransparentTheme(theme),\n \"pointer-events-none focus-visible:outline-none\":\n isStaticTheme(theme),\n \"focus-base\": !isStaticTheme(theme),\n \"sticky top-0\": sticky,\n [`${bg} ${hoverBg} ${text}`]: !(selectable && isOpen),\n [`${selectableBg} ${selectableText}`]: selectable && isOpen,\n [options?.headerCSS ?? \"\"]: options?.headerCSS,\n [options?.selectedHeaderCSS ?? \"\"]:\n options?.selectedHeaderCSS && isOpen,\n })}\n >\n {rowIcon ? (\n <Icon\n name={typeof rowIcon === \"object\" ? rowIcon.name : rowIcon}\n color={textClass}\n additionalCSS={\n typeof rowIcon === \"object\" && rowIcon.css ? rowIcon.css : \"\"\n }\n size={options?.rowIconSize ?? \"32px\"}\n />\n ) : null}\n {renderHeading()}\n {!selectable && !isStaticTheme(theme) && rowInteractive ? (\n <span className=\"flex-1 justify-end flex items-center\">\n <Icon\n name={isOpen ? toggleIcons.open.name : toggleIcons.closed.name}\n color={toggleIconColor}\n additionalCSS={\n isOpen\n ? (typeof toggleIcons.open === \"object\" &&\n toggleIcons.open.css) ||\n \"\"\n : (typeof toggleIcons.closed === \"object\" &&\n toggleIcons.closed.css) ||\n \"\"\n }\n size={options?.iconSize ?? \"16px\"}\n />\n </span>\n ) : null}\n </AccordionTrigger>\n {rowInteractive && (\n <AccordionContent\n className={cn({\n \"ui-text-p2 overflow-hidden transition-all data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down\": true,\n [options?.contentCSS ?? \"\"]: options?.contentCSS,\n })}\n >\n <div className=\"pb-4\">{children}</div>\n </AccordionContent>\n )}\n </AccordionItem>\n );\n};\n\nconst Accordion = forwardRef<HTMLDivElement, AccordionProps>(\n (\n {\n data,\n theme = \"transparent\",\n icons = {\n closed: { name: \"icon-gui-plus-outline\" },\n open: { name: \"icon-gui-minus-outline\" },\n },\n options,\n ...props\n },\n ref,\n ) => {\n const openIndexes = useMemo(() => {\n const indexValues = data.map((_, i) => `accordion-item-${i}`);\n return options?.fullyOpen\n ? indexValues\n : indexValues.filter((_, index) =>\n options?.defaultOpenIndexes?.includes(index),\n );\n }, [data, options?.fullyOpen, options?.defaultOpenIndexes]);\n\n const [openRowValues, setOpenRowValues] = useState<string[]>(openIndexes);\n\n useEffect(() => {\n setOpenRowValues(openIndexes);\n }, [openIndexes]);\n\n const innerAccordion = data.map((item, index) => (\n <AccordionRow\n key={item.name}\n name={item.name}\n heading={item.heading}\n rowIcon={item.icon}\n toggleIcons={icons}\n theme={theme}\n options={options}\n index={index}\n onClick={() => {\n item.onClick?.(index);\n }}\n openRowValues={openRowValues}\n rowInteractive={item.interactive}\n >\n {item.content}\n </AccordionRow>\n ));\n\n return (\n <div ref={ref} {...props}>\n {options?.autoClose ? (\n <RadixAccordion\n type=\"single\"\n collapsible\n value={openRowValues[0]}\n onValueChange={(values) => setOpenRowValues([values])}\n >\n {innerAccordion}\n </RadixAccordion>\n ) : (\n <RadixAccordion\n type=\"multiple\"\n value={openRowValues}\n onValueChange={(values) => setOpenRowValues(values)}\n >\n {innerAccordion}\n </RadixAccordion>\n )}\n </div>\n );\n },\n);\n\nAccordion.displayName = \"Accordion\";\n\nexport default Accordion;\n"],"names":["React","useMemo","useState","forwardRef","useEffect","AccordionContent","AccordionItem","AccordionTrigger","Accordion","RadixAccordion","Icon","themeClasses","isNonTransparentTheme","isStaticTheme","cn","AccordionRow","name","heading","children","rowIcon","options","toggleIcons","theme","index","onClick","openRowValues","rowInteractive","selectable","sticky","rowKey","isOpen","includes","text","bg","hoverBg","selectableBg","selectableText","border","toggleIconColor","textClass","renderHeading","span","value","className","hideBorders","selectedItemCSS","headerCSS","selectedHeaderCSS","color","additionalCSS","css","size","rowIconSize","open","closed","iconSize","contentCSS","div","data","icons","props","ref","openIndexes","indexValues","map","_","i","fullyOpen","filter","defaultOpenIndexes","setOpenRowValues","innerAccordion","item","key","icon","interactive","content","autoClose","type","collapsible","onValueChange","values","displayName"],"mappings":"AAAA,OAAOA,OAELC,OAAO,CACPC,QAAQ,CACRC,UAAU,CACVC,SAAS,KACJ,OAAQ,AACf,QACEC,gBAAgB,CAChBC,aAAa,CACbC,gBAAgB,CAChBC,aAAaC,cAAc,KACtB,2BAA4B,AAEnC,QAAOC,SAAU,QAAS,AAS1B,QACEC,YAAY,CACZC,qBAAqB,CACrBC,aAAa,KACR,mBAAoB,AAC3B,QAAOC,OAAQ,YAAa,CAsC5B,MAAMC,aAAe,CAAC,CACpBC,IAAI,CACJC,OAAO,CACPC,QAAQ,CACRC,OAAO,CACPC,OAAO,CACPC,WAAW,CACXC,KAAK,CACLC,KAAK,CACLC,OAAO,CACPC,aAAa,CACbC,eAAiB,IAAI,CACH,IAClB,KAAM,CAAEC,UAAU,CAAEC,MAAM,CAAE,CAAGR,SAAW,CAAC,EAC3C,MAAMS,OAAS,CAAC,eAAe,EAAEN,MAAM,CAAC,CACxC,MAAMO,OAASL,cAAcM,QAAQ,CAACF,QAEtC,KAAM,CACJG,IAAI,CACJC,EAAE,CACFC,OAAO,CACPC,YAAY,CACZC,cAAc,CACdC,MAAM,CACNC,eAAe,CAChB,CAAG3B,YAAY,CAACW,MAAM,CAEvB,MAAMiB,UAAY,AAACZ,YAAcG,QAAUM,gBAAmBJ,KAG9D,MAAMQ,cAAgB,KACpB,GAAIvB,QAAS,CACX,GAAI,OAAOA,UAAY,WAAY,CACjC,OAAOA,QAAQM,MAAOO,OACxB,CACA,OAAOb,OACT,CACA,OAAO,oBAACwB,YAAMzB,KAChB,EAEA,OACE,oBAACV,eACCoC,MAAOb,OACPc,UAAW7B,GAAG,CACZ,CAAC,CAAC,EAAEuB,OAAO,CAAC,CAAC,CAAEA,QAAU,CAACjB,SAASwB,YACnC,CAAC,CAAC,EAAExB,SAASyB,gBAAgB,CAAC,CAAC,CAAEzB,SAASyB,iBAAmBf,MAC/D,IAEA,oBAACvB,kBACCiB,QAASA,QACTmB,UAAW7B,GAAG,CACZ,kIAAmI,KACnI,uBAAwBF,sBAAsBU,OAC9C,oBAAqB,CAACV,sBAAsBU,OAC5C,iDACET,cAAcS,OAChB,aAAc,CAACT,cAAcS,OAC7B,eAAgBM,OAChB,CAAC,CAAC,EAAEK,GAAG,CAAC,EAAEC,QAAQ,CAAC,EAAEF,KAAK,CAAC,CAAC,CAAE,CAAEL,CAAAA,YAAcG,MAAK,EACnD,CAAC,CAAC,EAAEK,aAAa,CAAC,EAAEC,eAAe,CAAC,CAAC,CAAET,YAAcG,OACrD,CAACV,SAAS0B,WAAa,GAAG,CAAE1B,SAAS0B,UACrC,CAAC1B,SAAS2B,mBAAqB,GAAG,CAChC3B,SAAS2B,mBAAqBjB,MAClC,IAECX,QACC,oBAACT,MACCM,KAAM,OAAOG,UAAY,SAAWA,QAAQH,IAAI,CAAGG,QACnD6B,MAAOT,UACPU,cACE,OAAO9B,UAAY,UAAYA,QAAQ+B,GAAG,CAAG/B,QAAQ+B,GAAG,CAAG,GAE7DC,KAAM/B,SAASgC,aAAe,SAE9B,KACHZ,gBACA,CAACb,YAAc,CAACd,cAAcS,QAAUI,eACvC,oBAACe,QAAKE,UAAU,wCACd,oBAACjC,MACCM,KAAMc,OAAST,YAAYgC,IAAI,CAACrC,IAAI,CAAGK,YAAYiC,MAAM,CAACtC,IAAI,CAC9DgC,MAAOV,gBACPW,cACEnB,OACI,AAAC,OAAOT,YAAYgC,IAAI,GAAK,UAC3BhC,YAAYgC,IAAI,CAACH,GAAG,EACtB,GACA,AAAC,OAAO7B,YAAYiC,MAAM,GAAK,UAC7BjC,YAAYiC,MAAM,CAACJ,GAAG,EACxB,GAENC,KAAM/B,SAASmC,UAAY,UAG7B,MAEL7B,gBACC,oBAACrB,kBACCsC,UAAW7B,GAAG,CACZ,8HAA+H,KAC/H,CAACM,SAASoC,YAAc,GAAG,CAAEpC,SAASoC,UACxC,IAEA,oBAACC,OAAId,UAAU,QAAQzB,WAKjC,EAEA,MAAMV,UAAYL,WAChB,CACE,CACEuD,IAAI,CACJpC,MAAQ,aAAa,CACrBqC,MAAQ,CACNL,OAAQ,CAAEtC,KAAM,uBAAwB,EACxCqC,KAAM,CAAErC,KAAM,wBAAyB,CACzC,CAAC,CACDI,OAAO,CACP,GAAGwC,MACJ,CACDC,OAEA,MAAMC,YAAc7D,QAAQ,KAC1B,MAAM8D,YAAcL,KAAKM,GAAG,CAAC,CAACC,EAAGC,IAAM,CAAC,eAAe,EAAEA,EAAE,CAAC,EAC5D,OAAO9C,SAAS+C,UACZJ,YACAA,YAAYK,MAAM,CAAC,CAACH,EAAG1C,QACrBH,SAASiD,oBAAoBtC,SAASR,OAE9C,EAAG,CAACmC,KAAMtC,SAAS+C,UAAW/C,SAASiD,mBAAmB,EAE1D,KAAM,CAAC5C,cAAe6C,iBAAiB,CAAGpE,SAAmB4D,aAE7D1D,UAAU,KACRkE,iBAAiBR,YACnB,EAAG,CAACA,YAAY,EAEhB,MAAMS,eAAiBb,KAAKM,GAAG,CAAC,CAACQ,KAAMjD,QACrC,oBAACR,cACC0D,IAAKD,KAAKxD,IAAI,CACdA,KAAMwD,KAAKxD,IAAI,CACfC,QAASuD,KAAKvD,OAAO,CACrBE,QAASqD,KAAKE,IAAI,CAClBrD,YAAasC,MACbrC,MAAOA,MACPF,QAASA,QACTG,MAAOA,MACPC,QAAS,KACPgD,KAAKhD,OAAO,GAAGD,MACjB,EACAE,cAAeA,cACfC,eAAgB8C,KAAKG,WAAW,EAE/BH,KAAKI,OAAO,GAIjB,OACE,oBAACnB,OAAII,IAAKA,IAAM,GAAGD,KAAK,EACrBxC,SAASyD,UACR,oBAACpE,gBACCqE,KAAK,SACLC,YAAAA,KACArC,MAAOjB,aAAa,CAAC,EAAE,CACvBuD,cAAe,AAACC,QAAWX,iBAAiB,CAACW,OAAO,GAEnDV,gBAGH,oBAAC9D,gBACCqE,KAAK,WACLpC,MAAOjB,cACPuD,cAAe,AAACC,QAAWX,iBAAiBW,SAE3CV,gBAKX,EAGF/D,CAAAA,UAAU0E,WAAW,CAAG,WAExB,gBAAe1E,SAAU"}
@@ -1,2 +1,2 @@
1
- import*as React from"react";import{forwardRef}from"react";const IconGuiChecklistChecked=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{fill:"#03020D",fillRule:"evenodd",d:"M2.75 4c0-.69.56-1.25 1.25-1.25h11a.75.75 0 0 0 0-1.5H4A2.75 2.75 0 0 0 1.25 4v16A2.75 2.75 0 0 0 4 22.75h16A2.75 2.75 0 0 0 22.75 20V9.476a.75.75 0 0 0-1.5 0V20c0 .69-.56 1.25-1.25 1.25H4c-.69 0-1.25-.56-1.25-1.25zm17.874-.584a.75.75 0 1 0-1.248-.832l-7.431 11.147-3.36-4.2a.75.75 0 0 0-1.17.938l4 5a.75.75 0 0 0 1.209-.053z",clipRule:"evenodd"}));const ForwardRef=forwardRef(IconGuiChecklistChecked);export default ForwardRef;
1
+ import*as React from"react";import{forwardRef}from"react";const IconGuiChecklistChecked=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.75 4c0-.69.56-1.25 1.25-1.25h11a.75.75 0 0 0 0-1.5H4A2.75 2.75 0 0 0 1.25 4v16A2.75 2.75 0 0 0 4 22.75h16A2.75 2.75 0 0 0 22.75 20V9.476a.75.75 0 0 0-1.5 0V20c0 .69-.56 1.25-1.25 1.25H4c-.69 0-1.25-.56-1.25-1.25zm17.874-.584a.75.75 0 1 0-1.248-.832l-7.431 11.147-3.36-4.2a.75.75 0 0 0-1.17.938l4 5a.75.75 0 0 0 1.209-.053z",clipRule:"evenodd"}));const ForwardRef=forwardRef(IconGuiChecklistChecked);export default ForwardRef;
2
2
  //# sourceMappingURL=icon-gui-checklist-checked.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-checklist-checked.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiChecklistChecked = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill=\"#03020D\" fillRule=\"evenodd\" d=\"M2.75 4c0-.69.56-1.25 1.25-1.25h11a.75.75 0 0 0 0-1.5H4A2.75 2.75 0 0 0 1.25 4v16A2.75 2.75 0 0 0 4 22.75h16A2.75 2.75 0 0 0 22.75 20V9.476a.75.75 0 0 0-1.5 0V20c0 .69-.56 1.25-1.25 1.25H4c-.69 0-1.25-.56-1.25-1.25zm17.874-.584a.75.75 0 1 0-1.248-.832l-7.431 11.147-3.36-4.2a.75.75 0 0 0-1.17.938l4 5a.75.75 0 0 0 1.209-.053z\" clipRule=\"evenodd\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiChecklistChecked);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiChecklistChecked","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","fillRule","d","clipRule","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,wBAA0B,CAAC,CAC/BC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKJ,KAAK,UAAUK,SAAS,UAAUC,EAAE,wUAAwUC,SAAS,aACjoB,MAAMC,WAAalB,WAAWC,wBAC9B,gBAAeiB,UAAW"}
1
+ {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-checklist-checked.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiChecklistChecked = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill=\"currentColor\" fillRule=\"evenodd\" d=\"M2.75 4c0-.69.56-1.25 1.25-1.25h11a.75.75 0 0 0 0-1.5H4A2.75 2.75 0 0 0 1.25 4v16A2.75 2.75 0 0 0 4 22.75h16A2.75 2.75 0 0 0 22.75 20V9.476a.75.75 0 0 0-1.5 0V20c0 .69-.56 1.25-1.25 1.25H4c-.69 0-1.25-.56-1.25-1.25zm17.874-.584a.75.75 0 1 0-1.248-.832l-7.431 11.147-3.36-4.2a.75.75 0 0 0-1.17.938l4 5a.75.75 0 0 0 1.209-.053z\" clipRule=\"evenodd\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiChecklistChecked);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiChecklistChecked","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","fillRule","d","clipRule","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,wBAA0B,CAAC,CAC/BC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKJ,KAAK,eAAeK,SAAS,UAAUC,EAAE,wUAAwUC,SAAS,aACtoB,MAAMC,WAAalB,WAAWC,wBAC9B,gBAAeiB,UAAW"}
@@ -1,2 +1,2 @@
1
- import*as React from"react";import{forwardRef}from"react";const IconGuiCodeDoc=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{fill:"#03020D",fillRule:"evenodd",d:"M20 22.5H4a.5.5 0 0 1-.5-.5V2a.5.5 0 0 1 .5-.5h10.757a1.5 1.5 0 0 1 1.061.44l4.243 4.242a1.5 1.5 0 0 1 .439 1.06V22a.5.5 0 0 1-.5.5m1.121-17.379L16.88.88A3 3 0 0 0 14.757 0H4a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7.243a3 3 0 0 0-.879-2.122M9.481 8.076a.75.75 0 0 0-.961-1.152l-3 2.5a.75.75 0 0 0 0 1.152l3 2.5a.75.75 0 1 0 .96-1.152L7.172 10zm4.235-1.794a.75.75 0 0 1 .502.933l-3 10a.75.75 0 0 1-1.436-.43l3-10a.75.75 0 0 1 .934-.503m.804 5.794a.75.75 0 0 1 .96-1.152l3 2.5a.75.75 0 0 1 0 1.152l-3 2.5a.75.75 0 1 1-.96-1.152L16.828 14z",clipRule:"evenodd"}));const ForwardRef=forwardRef(IconGuiCodeDoc);export default ForwardRef;
1
+ import*as React from"react";import{forwardRef}from"react";const IconGuiCodeDoc=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M20 22.5H4a.5.5 0 0 1-.5-.5V2a.5.5 0 0 1 .5-.5h10.757a1.5 1.5 0 0 1 1.061.44l4.243 4.242a1.5 1.5 0 0 1 .439 1.06V22a.5.5 0 0 1-.5.5m1.121-17.379L16.88.88A3 3 0 0 0 14.757 0H4a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7.243a3 3 0 0 0-.879-2.122M9.481 8.076a.75.75 0 0 0-.961-1.152l-3 2.5a.75.75 0 0 0 0 1.152l3 2.5a.75.75 0 1 0 .96-1.152L7.172 10zm4.235-1.794a.75.75 0 0 1 .502.933l-3 10a.75.75 0 0 1-1.436-.43l3-10a.75.75 0 0 1 .934-.503m.804 5.794a.75.75 0 0 1 .96-1.152l3 2.5a.75.75 0 0 1 0 1.152l-3 2.5a.75.75 0 1 1-.96-1.152L16.828 14z",clipRule:"evenodd"}));const ForwardRef=forwardRef(IconGuiCodeDoc);export default ForwardRef;
2
2
  //# sourceMappingURL=icon-gui-code-doc.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-code-doc.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiCodeDoc = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill=\"#03020D\" fillRule=\"evenodd\" d=\"M20 22.5H4a.5.5 0 0 1-.5-.5V2a.5.5 0 0 1 .5-.5h10.757a1.5 1.5 0 0 1 1.061.44l4.243 4.242a1.5 1.5 0 0 1 .439 1.06V22a.5.5 0 0 1-.5.5m1.121-17.379L16.88.88A3 3 0 0 0 14.757 0H4a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7.243a3 3 0 0 0-.879-2.122M9.481 8.076a.75.75 0 0 0-.961-1.152l-3 2.5a.75.75 0 0 0 0 1.152l3 2.5a.75.75 0 1 0 .96-1.152L7.172 10zm4.235-1.794a.75.75 0 0 1 .502.933l-3 10a.75.75 0 0 1-1.436-.43l3-10a.75.75 0 0 1 .934-.503m.804 5.794a.75.75 0 0 1 .96-1.152l3 2.5a.75.75 0 0 1 0 1.152l-3 2.5a.75.75 0 1 1-.96-1.152L16.828 14z\" clipRule=\"evenodd\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiCodeDoc);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiCodeDoc","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","fillRule","d","clipRule","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,eAAiB,CAAC,CACtBC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKJ,KAAK,UAAUK,SAAS,UAAUC,EAAE,oiBAAoiBC,SAAS,aAC71B,MAAMC,WAAalB,WAAWC,eAC9B,gBAAeiB,UAAW"}
1
+ {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-code-doc.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiCodeDoc = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill=\"currentColor\" fillRule=\"evenodd\" d=\"M20 22.5H4a.5.5 0 0 1-.5-.5V2a.5.5 0 0 1 .5-.5h10.757a1.5 1.5 0 0 1 1.061.44l4.243 4.242a1.5 1.5 0 0 1 .439 1.06V22a.5.5 0 0 1-.5.5m1.121-17.379L16.88.88A3 3 0 0 0 14.757 0H4a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7.243a3 3 0 0 0-.879-2.122M9.481 8.076a.75.75 0 0 0-.961-1.152l-3 2.5a.75.75 0 0 0 0 1.152l3 2.5a.75.75 0 1 0 .96-1.152L7.172 10zm4.235-1.794a.75.75 0 0 1 .502.933l-3 10a.75.75 0 0 1-1.436-.43l3-10a.75.75 0 0 1 .934-.503m.804 5.794a.75.75 0 0 1 .96-1.152l3 2.5a.75.75 0 0 1 0 1.152l-3 2.5a.75.75 0 1 1-.96-1.152L16.828 14z\" clipRule=\"evenodd\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiCodeDoc);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiCodeDoc","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","fillRule","d","clipRule","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,eAAiB,CAAC,CACtBC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKJ,KAAK,eAAeK,SAAS,UAAUC,EAAE,oiBAAoiBC,SAAS,aACl2B,MAAMC,WAAalB,WAAWC,eAC9B,gBAAeiB,UAAW"}
@@ -1,2 +1,2 @@
1
- import*as React from"react";import{forwardRef}from"react";const IconGuiCursor=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{stroke:"#03020D",strokeLinejoin:"round",strokeWidth:1.5,d:"m3.135 2.056 18.315 6.96c.703.268.742 1.277.06 1.6l-7.14 3.387a.86.86 0 0 0-.442.503l-2.325 6.911a.833.833 0 0 1-1.562.071L2.076 3.223c-.305-.7.36-1.433 1.06-1.167Z"}));const ForwardRef=forwardRef(IconGuiCursor);export default ForwardRef;
1
+ import*as React from"react";import{forwardRef}from"react";const IconGuiCursor=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:1.5,d:"m3.135 2.056 18.315 6.96c.703.268.742 1.277.06 1.6l-7.14 3.387a.86.86 0 0 0-.442.503l-2.325 6.911a.833.833 0 0 1-1.562.071L2.076 3.223c-.305-.7.36-1.433 1.06-1.167Z"}));const ForwardRef=forwardRef(IconGuiCursor);export default ForwardRef;
2
2
  //# sourceMappingURL=icon-gui-cursor.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-cursor.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiCursor = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path stroke=\"#03020D\" strokeLinejoin=\"round\" strokeWidth={1.5} d=\"m3.135 2.056 18.315 6.96c.703.268.742 1.277.06 1.6l-7.14 3.387a.86.86 0 0 0-.442.503l-2.325 6.911a.833.833 0 0 1-1.562.071L2.076 3.223c-.305-.7.36-1.433 1.06-1.167Z\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiCursor);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiCursor","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","stroke","strokeLinejoin","strokeWidth","d","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,cAAgB,CAAC,CACrBC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKC,OAAO,UAAUC,eAAe,QAAQC,YAAa,IAAKC,EAAE,0KACxU,MAAMC,WAAanB,WAAWC,cAC9B,gBAAekB,UAAW"}
1
+ {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-cursor.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiCursor = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path stroke=\"currentColor\" strokeLinejoin=\"round\" strokeWidth={1.5} d=\"m3.135 2.056 18.315 6.96c.703.268.742 1.277.06 1.6l-7.14 3.387a.86.86 0 0 0-.442.503l-2.325 6.911a.833.833 0 0 1-1.562.071L2.076 3.223c-.305-.7.36-1.433 1.06-1.167Z\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiCursor);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiCursor","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","stroke","strokeLinejoin","strokeWidth","d","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,cAAgB,CAAC,CACrBC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKC,OAAO,eAAeC,eAAe,QAAQC,YAAa,IAAKC,EAAE,0KAC7U,MAAMC,WAAanB,WAAWC,cAC9B,gBAAekB,UAAW"}
@@ -1,2 +1,2 @@
1
- import*as React from"react";import{forwardRef}from"react";const IconGuiExpand=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{fill:"#03020D",fillRule:"evenodd",d:"M16.117 16.434a.801.801 0 1 0 1.191 1.072l4.474-4.971a.8.8 0 0 0 .01-1.088l-4.484-4.982a.801.801 0 1 0-1.19 1.072l3.282 3.648H6.246a.801.801 0 0 0 0 1.602H19.4z",clipRule:"evenodd"}),React.createElement("path",{stroke:"#000",strokeLinecap:"round",strokeWidth:1.5,d:"M2 18.7V5.223"}));const ForwardRef=forwardRef(IconGuiExpand);export default ForwardRef;
1
+ import*as React from"react";import{forwardRef}from"react";const IconGuiExpand=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M16.117 16.434a.801.801 0 1 0 1.191 1.072l4.474-4.971a.8.8 0 0 0 .01-1.088l-4.484-4.982a.801.801 0 1 0-1.19 1.072l3.282 3.648H6.246a.801.801 0 0 0 0 1.602H19.4z",clipRule:"evenodd"}),React.createElement("path",{stroke:"#000",strokeLinecap:"round",strokeWidth:1.5,d:"M2 18.7V5.223"}));const ForwardRef=forwardRef(IconGuiExpand);export default ForwardRef;
2
2
  //# sourceMappingURL=icon-gui-expand.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-expand.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiExpand = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill=\"#03020D\" fillRule=\"evenodd\" d=\"M16.117 16.434a.801.801 0 1 0 1.191 1.072l4.474-4.971a.8.8 0 0 0 .01-1.088l-4.484-4.982a.801.801 0 1 0-1.19 1.072l3.282 3.648H6.246a.801.801 0 0 0 0 1.602H19.4z\" clipRule=\"evenodd\" /><path stroke=\"#000\" strokeLinecap=\"round\" strokeWidth={1.5} d=\"M2 18.7V5.223\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiExpand);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiExpand","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","fillRule","d","clipRule","stroke","strokeLinecap","strokeWidth","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,cAAgB,CAAC,CACrBC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKJ,KAAK,UAAUK,SAAS,UAAUC,EAAE,mKAAmKC,SAAS,YAAY,oBAACH,QAAKI,OAAO,OAAOC,cAAc,QAAQC,YAAa,IAAKJ,EAAE,mBACtiB,MAAMK,WAAarB,WAAWC,cAC9B,gBAAeoB,UAAW"}
1
+ {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-expand.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiExpand = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill=\"currentColor\" fillRule=\"evenodd\" d=\"M16.117 16.434a.801.801 0 1 0 1.191 1.072l4.474-4.971a.8.8 0 0 0 .01-1.088l-4.484-4.982a.801.801 0 1 0-1.19 1.072l3.282 3.648H6.246a.801.801 0 0 0 0 1.602H19.4z\" clipRule=\"evenodd\" /><path stroke=\"#000\" strokeLinecap=\"round\" strokeWidth={1.5} d=\"M2 18.7V5.223\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiExpand);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiExpand","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","fillRule","d","clipRule","stroke","strokeLinecap","strokeWidth","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,cAAgB,CAAC,CACrBC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKJ,KAAK,eAAeK,SAAS,UAAUC,EAAE,mKAAmKC,SAAS,YAAY,oBAACH,QAAKI,OAAO,OAAOC,cAAc,QAAQC,YAAa,IAAKJ,EAAE,mBAC3iB,MAAMK,WAAarB,WAAWC,cAC9B,gBAAeoB,UAAW"}
@@ -1,2 +1,2 @@
1
- import*as React from"react";import{forwardRef}from"react";const IconGuiFilterFlowStep0=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{fill:"#03020D",fillRule:"evenodd",d:"M22.394 2.248H1.682zm-20.712 0H1.68m20.712 0c.26 0 .51.076.725.212.214.137.383.327.497.545a1.53 1.53 0 0 1 .006 1.404l-.004.007-2.071 3.932a.75.75 0 0 1-.664.4H3.195a.75.75 0 0 1-.663-.4L.458 4.412A1.52 1.52 0 0 1 .46 3.008c.114-.218.282-.409.496-.546s.465-.214.725-.214m20.594 1.5H1.805l1.843 3.5H20.43zM3.565 10.248H20.51c.236 0 .464.067.66.19a1.3 1.3 0 0 1 .457.49 1.36 1.36 0 0 1 .006 1.273l-.004.008-1.694 3.145a.75.75 0 0 1-.66.394H4.802a.75.75 0 0 1-.66-.394l-1.697-3.15a1.36 1.36 0 0 1 .002-1.274 1.3 1.3 0 0 1 .456-.491c.196-.123.424-.19.66-.191m16.61 1.5-1.348 2.5H5.252l-1.347-2.5zM5.447 17.248zh13.18a1.15 1.15 0 0 1 1.01.599 1.2 1.2 0 0 1 .006 1.15l-.004.008-1.318 2.359a.75.75 0 0 1-.655.384H6.411a.75.75 0 0 1-.655-.384L4.436 19a1.193 1.193 0 0 1 .42-1.587c.177-.107.381-.165.59-.165m12.618 1.5H6.013l.838 1.5h10.376z",clipRule:"evenodd"}));const ForwardRef=forwardRef(IconGuiFilterFlowStep0);export default ForwardRef;
1
+ import*as React from"react";import{forwardRef}from"react";const IconGuiFilterFlowStep0=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M22.394 2.248H1.682zm-20.712 0H1.68m20.712 0c.26 0 .51.076.725.212.214.137.383.327.497.545a1.53 1.53 0 0 1 .006 1.404l-.004.007-2.071 3.932a.75.75 0 0 1-.664.4H3.195a.75.75 0 0 1-.663-.4L.458 4.412A1.52 1.52 0 0 1 .46 3.008c.114-.218.282-.409.496-.546s.465-.214.725-.214m20.594 1.5H1.805l1.843 3.5H20.43zM3.565 10.248H20.51c.236 0 .464.067.66.19a1.3 1.3 0 0 1 .457.49 1.36 1.36 0 0 1 .006 1.273l-.004.008-1.694 3.145a.75.75 0 0 1-.66.394H4.802a.75.75 0 0 1-.66-.394l-1.697-3.15a1.36 1.36 0 0 1 .002-1.274 1.3 1.3 0 0 1 .456-.491c.196-.123.424-.19.66-.191m16.61 1.5-1.348 2.5H5.252l-1.347-2.5zM5.447 17.248zh13.18a1.15 1.15 0 0 1 1.01.599 1.2 1.2 0 0 1 .006 1.15l-.004.008-1.318 2.359a.75.75 0 0 1-.655.384H6.411a.75.75 0 0 1-.655-.384L4.436 19a1.193 1.193 0 0 1 .42-1.587c.177-.107.381-.165.59-.165m12.618 1.5H6.013l.838 1.5h10.376z",clipRule:"evenodd"}));const ForwardRef=forwardRef(IconGuiFilterFlowStep0);export default ForwardRef;
2
2
  //# sourceMappingURL=icon-gui-filter-flow-step-0.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-filter-flow-step-0.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiFilterFlowStep0 = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill=\"#03020D\" fillRule=\"evenodd\" d=\"M22.394 2.248H1.682zm-20.712 0H1.68m20.712 0c.26 0 .51.076.725.212.214.137.383.327.497.545a1.53 1.53 0 0 1 .006 1.404l-.004.007-2.071 3.932a.75.75 0 0 1-.664.4H3.195a.75.75 0 0 1-.663-.4L.458 4.412A1.52 1.52 0 0 1 .46 3.008c.114-.218.282-.409.496-.546s.465-.214.725-.214m20.594 1.5H1.805l1.843 3.5H20.43zM3.565 10.248H20.51c.236 0 .464.067.66.19a1.3 1.3 0 0 1 .457.49 1.36 1.36 0 0 1 .006 1.273l-.004.008-1.694 3.145a.75.75 0 0 1-.66.394H4.802a.75.75 0 0 1-.66-.394l-1.697-3.15a1.36 1.36 0 0 1 .002-1.274 1.3 1.3 0 0 1 .456-.491c.196-.123.424-.19.66-.191m16.61 1.5-1.348 2.5H5.252l-1.347-2.5zM5.447 17.248zh13.18a1.15 1.15 0 0 1 1.01.599 1.2 1.2 0 0 1 .006 1.15l-.004.008-1.318 2.359a.75.75 0 0 1-.655.384H6.411a.75.75 0 0 1-.655-.384L4.436 19a1.193 1.193 0 0 1 .42-1.587c.177-.107.381-.165.59-.165m12.618 1.5H6.013l.838 1.5h10.376z\" clipRule=\"evenodd\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiFilterFlowStep0);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiFilterFlowStep0","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","fillRule","d","clipRule","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,uBAAyB,CAAC,CAC9BC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKJ,KAAK,UAAUK,SAAS,UAAUC,EAAE,m0BAAm0BC,SAAS,aAC5nC,MAAMC,WAAalB,WAAWC,uBAC9B,gBAAeiB,UAAW"}
1
+ {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-filter-flow-step-0.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiFilterFlowStep0 = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill=\"currentColor\" fillRule=\"evenodd\" d=\"M22.394 2.248H1.682zm-20.712 0H1.68m20.712 0c.26 0 .51.076.725.212.214.137.383.327.497.545a1.53 1.53 0 0 1 .006 1.404l-.004.007-2.071 3.932a.75.75 0 0 1-.664.4H3.195a.75.75 0 0 1-.663-.4L.458 4.412A1.52 1.52 0 0 1 .46 3.008c.114-.218.282-.409.496-.546s.465-.214.725-.214m20.594 1.5H1.805l1.843 3.5H20.43zM3.565 10.248H20.51c.236 0 .464.067.66.19a1.3 1.3 0 0 1 .457.49 1.36 1.36 0 0 1 .006 1.273l-.004.008-1.694 3.145a.75.75 0 0 1-.66.394H4.802a.75.75 0 0 1-.66-.394l-1.697-3.15a1.36 1.36 0 0 1 .002-1.274 1.3 1.3 0 0 1 .456-.491c.196-.123.424-.19.66-.191m16.61 1.5-1.348 2.5H5.252l-1.347-2.5zM5.447 17.248zh13.18a1.15 1.15 0 0 1 1.01.599 1.2 1.2 0 0 1 .006 1.15l-.004.008-1.318 2.359a.75.75 0 0 1-.655.384H6.411a.75.75 0 0 1-.655-.384L4.436 19a1.193 1.193 0 0 1 .42-1.587c.177-.107.381-.165.59-.165m12.618 1.5H6.013l.838 1.5h10.376z\" clipRule=\"evenodd\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiFilterFlowStep0);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiFilterFlowStep0","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","fillRule","d","clipRule","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,uBAAyB,CAAC,CAC9BC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKJ,KAAK,eAAeK,SAAS,UAAUC,EAAE,m0BAAm0BC,SAAS,aACjoC,MAAMC,WAAalB,WAAWC,uBAC9B,gBAAeiB,UAAW"}
@@ -1,2 +1,2 @@
1
- import*as React from"react";import{forwardRef}from"react";const IconGuiFlowerGrowth=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{fill:"#03020D",fillRule:"evenodd",d:"M17.036 2.107a.75.75 0 1 0-.882-1.213c-2.475 1.8-3.756 4.449-4.4 6.988-.546 2.153-.647 4.275-.61 5.845H4.655a.75.75 0 0 0 0 1.5h1.39l.419 4.693a2.826 2.826 0 0 0 2.815 2.575h5.286a2.826 2.826 0 0 0 2.815-2.575l.419-4.693h1.39a.75.75 0 1 0 0-1.5h-6.546c-.037-1.483.057-3.476.564-5.476.593-2.34 1.735-4.622 3.828-6.144m-5.123 13.12h4.381l-.407 4.56a1.326 1.326 0 0 1-1.321 1.208H9.28c-.687 0-1.26-.525-1.32-1.209l-.408-4.559zm-1.48-6.399-.39-.64.741-.12c.048.302-.09.602-.35.76m-8.89-4.563-.203-.722h.002l.003-.001.01-.003.038-.01.139-.037A19.001 19.001 0 0 1 3.68 3.08a12.6 12.6 0 0 1 2.088-.113c.703.028 1.438.14 2.067.43 1.269.586 1.994 1.835 2.394 2.797a9.5 9.5 0 0 1 .546 1.826l.006.034.002.01v.005l-.74.12.39.64-.001.001-.003.002-.01.005-.029.018-.104.06a9.509 9.509 0 0 1-1.64.71c-.991.32-2.412.577-3.68-.008-.63-.29-1.193-.777-1.67-1.293A12.6 12.6 0 0 1 2.028 6.66 19 19 0 0 1 .885 4.629L.87 4.594l-.005-.01-.001-.003V4.58H.861zm0 0-.203-.722A.75.75 0 0 0 .862 4.58zm1.105.51c.17.31.387.682.638 1.069.327.504.706 1.021 1.112 1.461.412.446.819.775 1.196.95.744.342 1.705.227 2.592-.06a8 8 0 0 0 1.002-.402 8 8 0 0 0-.344-1.024c-.358-.86-.894-1.667-1.637-2.01-.377-.174-.892-.27-1.499-.294a11 11 0 0 0-1.833.102c-.457.06-.88.136-1.227.208m13.259 1.979-.496-.563a.75.75 0 0 0-.213.809zm7.061 1.862.616-.428v-.001l-.002-.003-.005-.007-.019-.026a11 11 0 0 0-.31-.415 15 15 0 0 0-.856-1.007 10 10 0 0 0-1.22-1.124c-.445-.339-.964-.65-1.516-.796-1.115-.294-2.219.121-2.948.507a7.6 7.6 0 0 0-1.265.847l-.021.019-.007.006-.002.002h-.001l.495.564-.709.246v.002l.002.003.003.008.01.027a5 5 0 0 0 .164.4c.114.253.286.598.518.96.444.696 1.2 1.6 2.315 1.895.552.145 1.157.13 1.71.055a10 10 0 0 0 1.617-.377 15 15 0 0 0 1.716-.662l.028-.014.009-.004.002-.001h.001zm0 0 .616-.428a.75.75 0 0 1-.29 1.103zm-1.673-.864c.178.191.341.38.484.55-.208.079-.443.162-.693.24-.441.14-.916.26-1.367.321-.459.062-.843.056-1.127-.019-.556-.146-1.048-.649-1.433-1.251a6 6 0 0 1-.333-.596c.162-.112.361-.237.584-.355.632-.334 1.307-.53 1.864-.382.283.074.62.258.99.539.361.275.715.614 1.03.953",clipRule:"evenodd"}));const ForwardRef=forwardRef(IconGuiFlowerGrowth);export default ForwardRef;
1
+ import*as React from"react";import{forwardRef}from"react";const IconGuiFlowerGrowth=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M17.036 2.107a.75.75 0 1 0-.882-1.213c-2.475 1.8-3.756 4.449-4.4 6.988-.546 2.153-.647 4.275-.61 5.845H4.655a.75.75 0 0 0 0 1.5h1.39l.419 4.693a2.826 2.826 0 0 0 2.815 2.575h5.286a2.826 2.826 0 0 0 2.815-2.575l.419-4.693h1.39a.75.75 0 1 0 0-1.5h-6.546c-.037-1.483.057-3.476.564-5.476.593-2.34 1.735-4.622 3.828-6.144m-5.123 13.12h4.381l-.407 4.56a1.326 1.326 0 0 1-1.321 1.208H9.28c-.687 0-1.26-.525-1.32-1.209l-.408-4.559zm-1.48-6.399-.39-.64.741-.12c.048.302-.09.602-.35.76m-8.89-4.563-.203-.722h.002l.003-.001.01-.003.038-.01.139-.037A19.001 19.001 0 0 1 3.68 3.08a12.6 12.6 0 0 1 2.088-.113c.703.028 1.438.14 2.067.43 1.269.586 1.994 1.835 2.394 2.797a9.5 9.5 0 0 1 .546 1.826l.006.034.002.01v.005l-.74.12.39.64-.001.001-.003.002-.01.005-.029.018-.104.06a9.509 9.509 0 0 1-1.64.71c-.991.32-2.412.577-3.68-.008-.63-.29-1.193-.777-1.67-1.293A12.6 12.6 0 0 1 2.028 6.66 19 19 0 0 1 .885 4.629L.87 4.594l-.005-.01-.001-.003V4.58H.861zm0 0-.203-.722A.75.75 0 0 0 .862 4.58zm1.105.51c.17.31.387.682.638 1.069.327.504.706 1.021 1.112 1.461.412.446.819.775 1.196.95.744.342 1.705.227 2.592-.06a8 8 0 0 0 1.002-.402 8 8 0 0 0-.344-1.024c-.358-.86-.894-1.667-1.637-2.01-.377-.174-.892-.27-1.499-.294a11 11 0 0 0-1.833.102c-.457.06-.88.136-1.227.208m13.259 1.979-.496-.563a.75.75 0 0 0-.213.809zm7.061 1.862.616-.428v-.001l-.002-.003-.005-.007-.019-.026a11 11 0 0 0-.31-.415 15 15 0 0 0-.856-1.007 10 10 0 0 0-1.22-1.124c-.445-.339-.964-.65-1.516-.796-1.115-.294-2.219.121-2.948.507a7.6 7.6 0 0 0-1.265.847l-.021.019-.007.006-.002.002h-.001l.495.564-.709.246v.002l.002.003.003.008.01.027a5 5 0 0 0 .164.4c.114.253.286.598.518.96.444.696 1.2 1.6 2.315 1.895.552.145 1.157.13 1.71.055a10 10 0 0 0 1.617-.377 15 15 0 0 0 1.716-.662l.028-.014.009-.004.002-.001h.001zm0 0 .616-.428a.75.75 0 0 1-.29 1.103zm-1.673-.864c.178.191.341.38.484.55-.208.079-.443.162-.693.24-.441.14-.916.26-1.367.321-.459.062-.843.056-1.127-.019-.556-.146-1.048-.649-1.433-1.251a6 6 0 0 1-.333-.596c.162-.112.361-.237.584-.355.632-.334 1.307-.53 1.864-.382.283.074.62.258.99.539.361.275.715.614 1.03.953",clipRule:"evenodd"}));const ForwardRef=forwardRef(IconGuiFlowerGrowth);export default ForwardRef;
2
2
  //# sourceMappingURL=icon-gui-flower-growth.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-flower-growth.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiFlowerGrowth = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill=\"#03020D\" fillRule=\"evenodd\" d=\"M17.036 2.107a.75.75 0 1 0-.882-1.213c-2.475 1.8-3.756 4.449-4.4 6.988-.546 2.153-.647 4.275-.61 5.845H4.655a.75.75 0 0 0 0 1.5h1.39l.419 4.693a2.826 2.826 0 0 0 2.815 2.575h5.286a2.826 2.826 0 0 0 2.815-2.575l.419-4.693h1.39a.75.75 0 1 0 0-1.5h-6.546c-.037-1.483.057-3.476.564-5.476.593-2.34 1.735-4.622 3.828-6.144m-5.123 13.12h4.381l-.407 4.56a1.326 1.326 0 0 1-1.321 1.208H9.28c-.687 0-1.26-.525-1.32-1.209l-.408-4.559zm-1.48-6.399-.39-.64.741-.12c.048.302-.09.602-.35.76m-8.89-4.563-.203-.722h.002l.003-.001.01-.003.038-.01.139-.037A19.001 19.001 0 0 1 3.68 3.08a12.6 12.6 0 0 1 2.088-.113c.703.028 1.438.14 2.067.43 1.269.586 1.994 1.835 2.394 2.797a9.5 9.5 0 0 1 .546 1.826l.006.034.002.01v.005l-.74.12.39.64-.001.001-.003.002-.01.005-.029.018-.104.06a9.509 9.509 0 0 1-1.64.71c-.991.32-2.412.577-3.68-.008-.63-.29-1.193-.777-1.67-1.293A12.6 12.6 0 0 1 2.028 6.66 19 19 0 0 1 .885 4.629L.87 4.594l-.005-.01-.001-.003V4.58H.861zm0 0-.203-.722A.75.75 0 0 0 .862 4.58zm1.105.51c.17.31.387.682.638 1.069.327.504.706 1.021 1.112 1.461.412.446.819.775 1.196.95.744.342 1.705.227 2.592-.06a8 8 0 0 0 1.002-.402 8 8 0 0 0-.344-1.024c-.358-.86-.894-1.667-1.637-2.01-.377-.174-.892-.27-1.499-.294a11 11 0 0 0-1.833.102c-.457.06-.88.136-1.227.208m13.259 1.979-.496-.563a.75.75 0 0 0-.213.809zm7.061 1.862.616-.428v-.001l-.002-.003-.005-.007-.019-.026a11 11 0 0 0-.31-.415 15 15 0 0 0-.856-1.007 10 10 0 0 0-1.22-1.124c-.445-.339-.964-.65-1.516-.796-1.115-.294-2.219.121-2.948.507a7.6 7.6 0 0 0-1.265.847l-.021.019-.007.006-.002.002h-.001l.495.564-.709.246v.002l.002.003.003.008.01.027a5 5 0 0 0 .164.4c.114.253.286.598.518.96.444.696 1.2 1.6 2.315 1.895.552.145 1.157.13 1.71.055a10 10 0 0 0 1.617-.377 15 15 0 0 0 1.716-.662l.028-.014.009-.004.002-.001h.001zm0 0 .616-.428a.75.75 0 0 1-.29 1.103zm-1.673-.864c.178.191.341.38.484.55-.208.079-.443.162-.693.24-.441.14-.916.26-1.367.321-.459.062-.843.056-1.127-.019-.556-.146-1.048-.649-1.433-1.251a6 6 0 0 1-.333-.596c.162-.112.361-.237.584-.355.632-.334 1.307-.53 1.864-.382.283.074.62.258.99.539.361.275.715.614 1.03.953\" clipRule=\"evenodd\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiFlowerGrowth);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiFlowerGrowth","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","fillRule","d","clipRule","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,oBAAsB,CAAC,CAC3BC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKJ,KAAK,UAAUK,SAAS,UAAUC,EAAE,shEAAshEC,SAAS,aAC/0E,MAAMC,WAAalB,WAAWC,oBAC9B,gBAAeiB,UAAW"}
1
+ {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-flower-growth.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiFlowerGrowth = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill=\"currentColor\" fillRule=\"evenodd\" d=\"M17.036 2.107a.75.75 0 1 0-.882-1.213c-2.475 1.8-3.756 4.449-4.4 6.988-.546 2.153-.647 4.275-.61 5.845H4.655a.75.75 0 0 0 0 1.5h1.39l.419 4.693a2.826 2.826 0 0 0 2.815 2.575h5.286a2.826 2.826 0 0 0 2.815-2.575l.419-4.693h1.39a.75.75 0 1 0 0-1.5h-6.546c-.037-1.483.057-3.476.564-5.476.593-2.34 1.735-4.622 3.828-6.144m-5.123 13.12h4.381l-.407 4.56a1.326 1.326 0 0 1-1.321 1.208H9.28c-.687 0-1.26-.525-1.32-1.209l-.408-4.559zm-1.48-6.399-.39-.64.741-.12c.048.302-.09.602-.35.76m-8.89-4.563-.203-.722h.002l.003-.001.01-.003.038-.01.139-.037A19.001 19.001 0 0 1 3.68 3.08a12.6 12.6 0 0 1 2.088-.113c.703.028 1.438.14 2.067.43 1.269.586 1.994 1.835 2.394 2.797a9.5 9.5 0 0 1 .546 1.826l.006.034.002.01v.005l-.74.12.39.64-.001.001-.003.002-.01.005-.029.018-.104.06a9.509 9.509 0 0 1-1.64.71c-.991.32-2.412.577-3.68-.008-.63-.29-1.193-.777-1.67-1.293A12.6 12.6 0 0 1 2.028 6.66 19 19 0 0 1 .885 4.629L.87 4.594l-.005-.01-.001-.003V4.58H.861zm0 0-.203-.722A.75.75 0 0 0 .862 4.58zm1.105.51c.17.31.387.682.638 1.069.327.504.706 1.021 1.112 1.461.412.446.819.775 1.196.95.744.342 1.705.227 2.592-.06a8 8 0 0 0 1.002-.402 8 8 0 0 0-.344-1.024c-.358-.86-.894-1.667-1.637-2.01-.377-.174-.892-.27-1.499-.294a11 11 0 0 0-1.833.102c-.457.06-.88.136-1.227.208m13.259 1.979-.496-.563a.75.75 0 0 0-.213.809zm7.061 1.862.616-.428v-.001l-.002-.003-.005-.007-.019-.026a11 11 0 0 0-.31-.415 15 15 0 0 0-.856-1.007 10 10 0 0 0-1.22-1.124c-.445-.339-.964-.65-1.516-.796-1.115-.294-2.219.121-2.948.507a7.6 7.6 0 0 0-1.265.847l-.021.019-.007.006-.002.002h-.001l.495.564-.709.246v.002l.002.003.003.008.01.027a5 5 0 0 0 .164.4c.114.253.286.598.518.96.444.696 1.2 1.6 2.315 1.895.552.145 1.157.13 1.71.055a10 10 0 0 0 1.617-.377 15 15 0 0 0 1.716-.662l.028-.014.009-.004.002-.001h.001zm0 0 .616-.428a.75.75 0 0 1-.29 1.103zm-1.673-.864c.178.191.341.38.484.55-.208.079-.443.162-.693.24-.441.14-.916.26-1.367.321-.459.062-.843.056-1.127-.019-.556-.146-1.048-.649-1.433-1.251a6 6 0 0 1-.333-.596c.162-.112.361-.237.584-.355.632-.334 1.307-.53 1.864-.382.283.074.62.258.99.539.361.275.715.614 1.03.953\" clipRule=\"evenodd\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiFlowerGrowth);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiFlowerGrowth","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","fillRule","d","clipRule","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,oBAAsB,CAAC,CAC3BC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKJ,KAAK,eAAeK,SAAS,UAAUC,EAAE,shEAAshEC,SAAS,aACp1E,MAAMC,WAAalB,WAAWC,oBAC9B,gBAAeiB,UAAW"}
@@ -1,2 +1,2 @@
1
- import*as React from"react";import{forwardRef}from"react";const IconGuiGlasses=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{fill:"#03020D",fillRule:"evenodd",d:"M2.35 5.5a1.75 1.75 0 1 1 3.5 0V7a.75.75 0 1 0 1.5 0V5.5a3.25 3.25 0 0 0-6.5 0V18a.75.75 0 0 0 1.4.374V19A2.75 2.75 0 0 0 5 21.75h3A2.75 2.75 0 0 0 10.75 19v-.25h2.5V19A2.75 2.75 0 0 0 16 21.75h3A2.75 2.75 0 0 0 21.75 19v-.625a.75.75 0 0 0 1.4-.375V5.5a3.25 3.25 0 1 0-6.5 0V7a.75.75 0 0 0 1.5 0V5.5a1.75 1.75 0 1 1 3.5 0v10.762A2.75 2.75 0 0 0 19 14.25h-3A2.75 2.75 0 0 0 13.25 17v.25h-2.5V17A2.75 2.75 0 0 0 8 14.25H5a2.75 2.75 0 0 0-2.65 2.012zM3.75 17c0-.69.56-1.25 1.25-1.25h3c.69 0 1.25.56 1.25 1.25v2c0 .69-.56 1.25-1.25 1.25H5c-.69 0-1.25-.56-1.25-1.25zM16 15.75c-.69 0-1.25.56-1.25 1.25v2c0 .69.56 1.25 1.25 1.25h3c.69 0 1.25-.56 1.25-1.25v-2c0-.69-.56-1.25-1.25-1.25z",clipRule:"evenodd"}));const ForwardRef=forwardRef(IconGuiGlasses);export default ForwardRef;
1
+ import*as React from"react";import{forwardRef}from"react";const IconGuiGlasses=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.35 5.5a1.75 1.75 0 1 1 3.5 0V7a.75.75 0 1 0 1.5 0V5.5a3.25 3.25 0 0 0-6.5 0V18a.75.75 0 0 0 1.4.374V19A2.75 2.75 0 0 0 5 21.75h3A2.75 2.75 0 0 0 10.75 19v-.25h2.5V19A2.75 2.75 0 0 0 16 21.75h3A2.75 2.75 0 0 0 21.75 19v-.625a.75.75 0 0 0 1.4-.375V5.5a3.25 3.25 0 1 0-6.5 0V7a.75.75 0 0 0 1.5 0V5.5a1.75 1.75 0 1 1 3.5 0v10.762A2.75 2.75 0 0 0 19 14.25h-3A2.75 2.75 0 0 0 13.25 17v.25h-2.5V17A2.75 2.75 0 0 0 8 14.25H5a2.75 2.75 0 0 0-2.65 2.012zM3.75 17c0-.69.56-1.25 1.25-1.25h3c.69 0 1.25.56 1.25 1.25v2c0 .69-.56 1.25-1.25 1.25H5c-.69 0-1.25-.56-1.25-1.25zM16 15.75c-.69 0-1.25.56-1.25 1.25v2c0 .69.56 1.25 1.25 1.25h3c.69 0 1.25-.56 1.25-1.25v-2c0-.69-.56-1.25-1.25-1.25z",clipRule:"evenodd"}));const ForwardRef=forwardRef(IconGuiGlasses);export default ForwardRef;
2
2
  //# sourceMappingURL=icon-gui-glasses.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-glasses.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiGlasses = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill=\"#03020D\" fillRule=\"evenodd\" d=\"M2.35 5.5a1.75 1.75 0 1 1 3.5 0V7a.75.75 0 1 0 1.5 0V5.5a3.25 3.25 0 0 0-6.5 0V18a.75.75 0 0 0 1.4.374V19A2.75 2.75 0 0 0 5 21.75h3A2.75 2.75 0 0 0 10.75 19v-.25h2.5V19A2.75 2.75 0 0 0 16 21.75h3A2.75 2.75 0 0 0 21.75 19v-.625a.75.75 0 0 0 1.4-.375V5.5a3.25 3.25 0 1 0-6.5 0V7a.75.75 0 0 0 1.5 0V5.5a1.75 1.75 0 1 1 3.5 0v10.762A2.75 2.75 0 0 0 19 14.25h-3A2.75 2.75 0 0 0 13.25 17v.25h-2.5V17A2.75 2.75 0 0 0 8 14.25H5a2.75 2.75 0 0 0-2.65 2.012zM3.75 17c0-.69.56-1.25 1.25-1.25h3c.69 0 1.25.56 1.25 1.25v2c0 .69-.56 1.25-1.25 1.25H5c-.69 0-1.25-.56-1.25-1.25zM16 15.75c-.69 0-1.25.56-1.25 1.25v2c0 .69.56 1.25 1.25 1.25h3c.69 0 1.25-.56 1.25-1.25v-2c0-.69-.56-1.25-1.25-1.25z\" clipRule=\"evenodd\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiGlasses);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiGlasses","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","fillRule","d","clipRule","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,eAAiB,CAAC,CACtBC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKJ,KAAK,UAAUK,SAAS,UAAUC,EAAE,wqBAAwqBC,SAAS,aACj+B,MAAMC,WAAalB,WAAWC,eAC9B,gBAAeiB,UAAW"}
1
+ {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-glasses.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiGlasses = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill=\"currentColor\" fillRule=\"evenodd\" d=\"M2.35 5.5a1.75 1.75 0 1 1 3.5 0V7a.75.75 0 1 0 1.5 0V5.5a3.25 3.25 0 0 0-6.5 0V18a.75.75 0 0 0 1.4.374V19A2.75 2.75 0 0 0 5 21.75h3A2.75 2.75 0 0 0 10.75 19v-.25h2.5V19A2.75 2.75 0 0 0 16 21.75h3A2.75 2.75 0 0 0 21.75 19v-.625a.75.75 0 0 0 1.4-.375V5.5a3.25 3.25 0 1 0-6.5 0V7a.75.75 0 0 0 1.5 0V5.5a1.75 1.75 0 1 1 3.5 0v10.762A2.75 2.75 0 0 0 19 14.25h-3A2.75 2.75 0 0 0 13.25 17v.25h-2.5V17A2.75 2.75 0 0 0 8 14.25H5a2.75 2.75 0 0 0-2.65 2.012zM3.75 17c0-.69.56-1.25 1.25-1.25h3c.69 0 1.25.56 1.25 1.25v2c0 .69-.56 1.25-1.25 1.25H5c-.69 0-1.25-.56-1.25-1.25zM16 15.75c-.69 0-1.25.56-1.25 1.25v2c0 .69.56 1.25 1.25 1.25h3c.69 0 1.25-.56 1.25-1.25v-2c0-.69-.56-1.25-1.25-1.25z\" clipRule=\"evenodd\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiGlasses);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiGlasses","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","fillRule","d","clipRule","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,eAAiB,CAAC,CACtBC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKJ,KAAK,eAAeK,SAAS,UAAUC,EAAE,wqBAAwqBC,SAAS,aACt+B,MAAMC,WAAalB,WAAWC,eAC9B,gBAAeiB,UAAW"}
@@ -1,2 +1,2 @@
1
- import*as React from"react";import{forwardRef}from"react";const IconGuiMouse=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{fill:"#03020D",fillRule:"evenodd",d:"M12 .25A7.75 7.75 0 0 0 4.25 8v8a7.75 7.75 0 0 0 15.5 0V8A7.75 7.75 0 0 0 12 .25M5.75 8a6.25 6.25 0 1 1 12.5 0v8a6.25 6.25 0 1 1-12.5 0zM12 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3",clipRule:"evenodd"}));const ForwardRef=forwardRef(IconGuiMouse);export default ForwardRef;
1
+ import*as React from"react";import{forwardRef}from"react";const IconGuiMouse=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M12 .25A7.75 7.75 0 0 0 4.25 8v8a7.75 7.75 0 0 0 15.5 0V8A7.75 7.75 0 0 0 12 .25M5.75 8a6.25 6.25 0 1 1 12.5 0v8a6.25 6.25 0 1 1-12.5 0zM12 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3",clipRule:"evenodd"}));const ForwardRef=forwardRef(IconGuiMouse);export default ForwardRef;
2
2
  //# sourceMappingURL=icon-gui-mouse.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-mouse.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiMouse = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill=\"#03020D\" fillRule=\"evenodd\" d=\"M12 .25A7.75 7.75 0 0 0 4.25 8v8a7.75 7.75 0 0 0 15.5 0V8A7.75 7.75 0 0 0 12 .25M5.75 8a6.25 6.25 0 1 1 12.5 0v8a6.25 6.25 0 1 1-12.5 0zM12 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3\" clipRule=\"evenodd\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiMouse);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiMouse","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","fillRule","d","clipRule","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,aAAe,CAAC,CACpBC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKJ,KAAK,UAAUK,SAAS,UAAUC,EAAE,oLAAoLC,SAAS,aAC7e,MAAMC,WAAalB,WAAWC,aAC9B,gBAAeiB,UAAW"}
1
+ {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-mouse.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiMouse = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill=\"currentColor\" fillRule=\"evenodd\" d=\"M12 .25A7.75 7.75 0 0 0 4.25 8v8a7.75 7.75 0 0 0 15.5 0V8A7.75 7.75 0 0 0 12 .25M5.75 8a6.25 6.25 0 1 1 12.5 0v8a6.25 6.25 0 1 1-12.5 0zM12 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3\" clipRule=\"evenodd\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiMouse);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiMouse","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","fillRule","d","clipRule","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,aAAe,CAAC,CACpBC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKJ,KAAK,eAAeK,SAAS,UAAUC,EAAE,oLAAoLC,SAAS,aAClf,MAAMC,WAAalB,WAAWC,aAC9B,gBAAeiB,UAAW"}
@@ -1,2 +1,2 @@
1
- import*as React from"react";import{forwardRef}from"react";const IconGuiPitfall=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{fill:"#03020D",fillRule:"evenodd",d:"M.55 4.284A3.426 3.426 0 0 1 3.976.858h13.38a3.426 3.426 0 0 1 3.426 3.426v6.104a.75.75 0 0 1-1.5 0V6.602H2.05v11.061c0 1.064.862 1.926 1.926 1.926h4.348a.75.75 0 0 1 0 1.5H3.976A3.426 3.426 0 0 1 .55 17.663zm1.5.818h17.232v-.818a1.926 1.926 0 0 0-1.926-1.926H3.976A1.926 1.926 0 0 0 2.05 4.284zm12.918 6.217c.774-1.34 2.71-1.34 3.483 0l4.745 8.218c.773 1.34-.194 3.016-1.742 3.016h-9.489c-1.548 0-2.515-1.676-1.741-3.016zm2.184.75a.51.51 0 0 0-.885 0l-4.744 8.218a.51.51 0 0 0 .442.766h9.49a.51.51 0 0 0 .442-.766zM16 17.65a.75.75 0 0 0 1.5 0v-3.5a.75.75 0 0 0-1.5 0zm1.468 1.951a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0M5.4 3.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5",clipRule:"evenodd"}));const ForwardRef=forwardRef(IconGuiPitfall);export default ForwardRef;
1
+ import*as React from"react";import{forwardRef}from"react";const IconGuiPitfall=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{fill:"currentColor",fillRule:"evenodd",d:"M.55 4.284A3.426 3.426 0 0 1 3.976.858h13.38a3.426 3.426 0 0 1 3.426 3.426v6.104a.75.75 0 0 1-1.5 0V6.602H2.05v11.061c0 1.064.862 1.926 1.926 1.926h4.348a.75.75 0 0 1 0 1.5H3.976A3.426 3.426 0 0 1 .55 17.663zm1.5.818h17.232v-.818a1.926 1.926 0 0 0-1.926-1.926H3.976A1.926 1.926 0 0 0 2.05 4.284zm12.918 6.217c.774-1.34 2.71-1.34 3.483 0l4.745 8.218c.773 1.34-.194 3.016-1.742 3.016h-9.489c-1.548 0-2.515-1.676-1.741-3.016zm2.184.75a.51.51 0 0 0-.885 0l-4.744 8.218a.51.51 0 0 0 .442.766h9.49a.51.51 0 0 0 .442-.766zM16 17.65a.75.75 0 0 0 1.5 0v-3.5a.75.75 0 0 0-1.5 0zm1.468 1.951a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0M5.4 3.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5",clipRule:"evenodd"}));const ForwardRef=forwardRef(IconGuiPitfall);export default ForwardRef;
2
2
  //# sourceMappingURL=icon-gui-pitfall.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-pitfall.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiPitfall = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill=\"#03020D\" fillRule=\"evenodd\" d=\"M.55 4.284A3.426 3.426 0 0 1 3.976.858h13.38a3.426 3.426 0 0 1 3.426 3.426v6.104a.75.75 0 0 1-1.5 0V6.602H2.05v11.061c0 1.064.862 1.926 1.926 1.926h4.348a.75.75 0 0 1 0 1.5H3.976A3.426 3.426 0 0 1 .55 17.663zm1.5.818h17.232v-.818a1.926 1.926 0 0 0-1.926-1.926H3.976A1.926 1.926 0 0 0 2.05 4.284zm12.918 6.217c.774-1.34 2.71-1.34 3.483 0l4.745 8.218c.773 1.34-.194 3.016-1.742 3.016h-9.489c-1.548 0-2.515-1.676-1.741-3.016zm2.184.75a.51.51 0 0 0-.885 0l-4.744 8.218a.51.51 0 0 0 .442.766h9.49a.51.51 0 0 0 .442-.766zM16 17.65a.75.75 0 0 0 1.5 0v-3.5a.75.75 0 0 0-1.5 0zm1.468 1.951a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0M5.4 3.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5\" clipRule=\"evenodd\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiPitfall);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiPitfall","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","fillRule","d","clipRule","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,eAAiB,CAAC,CACtBC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKJ,KAAK,UAAUK,SAAS,UAAUC,EAAE,ysBAAysBC,SAAS,aAClgC,MAAMC,WAAalB,WAAWC,eAC9B,gBAAeiB,UAAW"}
1
+ {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-pitfall.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiPitfall = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill=\"currentColor\" fillRule=\"evenodd\" d=\"M.55 4.284A3.426 3.426 0 0 1 3.976.858h13.38a3.426 3.426 0 0 1 3.426 3.426v6.104a.75.75 0 0 1-1.5 0V6.602H2.05v11.061c0 1.064.862 1.926 1.926 1.926h4.348a.75.75 0 0 1 0 1.5H3.976A3.426 3.426 0 0 1 .55 17.663zm1.5.818h17.232v-.818a1.926 1.926 0 0 0-1.926-1.926H3.976A1.926 1.926 0 0 0 2.05 4.284zm12.918 6.217c.774-1.34 2.71-1.34 3.483 0l4.745 8.218c.773 1.34-.194 3.016-1.742 3.016h-9.489c-1.548 0-2.515-1.676-1.741-3.016zm2.184.75a.51.51 0 0 0-.885 0l-4.744 8.218a.51.51 0 0 0 .442.766h9.49a.51.51 0 0 0 .442-.766zM16 17.65a.75.75 0 0 0 1.5 0v-3.5a.75.75 0 0 0-1.5 0zm1.468 1.951a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0M5.4 3.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5\" clipRule=\"evenodd\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiPitfall);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiPitfall","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","fillRule","d","clipRule","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,eAAiB,CAAC,CACtBC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKJ,KAAK,eAAeK,SAAS,UAAUC,EAAE,ysBAAysBC,SAAS,aACvgC,MAAMC,WAAalB,WAAWC,eAC9B,gBAAeiB,UAAW"}
@@ -1,2 +1,2 @@
1
- import*as React from"react";import{forwardRef}from"react";const IconGuiQuoteMarksFill=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{fill:"#03020D",d:"M22.467 21.167a1 1 0 0 1-1 1h-6.468a1 1 0 0 1-1-1v-5.7q0-4.1.695-6.434.73-2.332 2.65-4.2 1.644-1.57 3.992-2.575c.5-.213 1.066.047 1.263.553l.405 1.046c.207.532-.076 1.124-.591 1.37-1.39.662-2.478 1.63-3.146 2.54-.65.91-1.206 2.466-1.41 4.013-.074.556.381 1.02.943 1.02h2.667a1 1 0 0 1 1 1zM9.068 21.167a1 1 0 0 1-1 1H1.6a1 1 0 0 1-1-1v-5.7q0-4.1.695-6.434.73-2.332 2.65-4.2 1.644-1.57 3.992-2.575c.5-.213 1.066.047 1.263.553l.405 1.046c.207.532-.076 1.124-.591 1.37-1.39.662-2.478 1.63-3.146 2.54-.65.91-1.206 2.466-1.41 4.013-.074.556.381 1.02.943 1.02h2.667a1 1 0 0 1 1 1z"}));const ForwardRef=forwardRef(IconGuiQuoteMarksFill);export default ForwardRef;
1
+ import*as React from"react";import{forwardRef}from"react";const IconGuiQuoteMarksFill=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{fill:"currentColor",d:"M22.467 21.167a1 1 0 0 1-1 1h-6.468a1 1 0 0 1-1-1v-5.7q0-4.1.695-6.434.73-2.332 2.65-4.2 1.644-1.57 3.992-2.575c.5-.213 1.066.047 1.263.553l.405 1.046c.207.532-.076 1.124-.591 1.37-1.39.662-2.478 1.63-3.146 2.54-.65.91-1.206 2.466-1.41 4.013-.074.556.381 1.02.943 1.02h2.667a1 1 0 0 1 1 1zM9.068 21.167a1 1 0 0 1-1 1H1.6a1 1 0 0 1-1-1v-5.7q0-4.1.695-6.434.73-2.332 2.65-4.2 1.644-1.57 3.992-2.575c.5-.213 1.066.047 1.263.553l.405 1.046c.207.532-.076 1.124-.591 1.37-1.39.662-2.478 1.63-3.146 2.54-.65.91-1.206 2.466-1.41 4.013-.074.556.381 1.02.943 1.02h2.667a1 1 0 0 1 1 1z"}));const ForwardRef=forwardRef(IconGuiQuoteMarksFill);export default ForwardRef;
2
2
  //# sourceMappingURL=icon-gui-quote-marks-fill.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-quote-marks-fill.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiQuoteMarksFill = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill=\"#03020D\" d=\"M22.467 21.167a1 1 0 0 1-1 1h-6.468a1 1 0 0 1-1-1v-5.7q0-4.1.695-6.434.73-2.332 2.65-4.2 1.644-1.57 3.992-2.575c.5-.213 1.066.047 1.263.553l.405 1.046c.207.532-.076 1.124-.591 1.37-1.39.662-2.478 1.63-3.146 2.54-.65.91-1.206 2.466-1.41 4.013-.074.556.381 1.02.943 1.02h2.667a1 1 0 0 1 1 1zM9.068 21.167a1 1 0 0 1-1 1H1.6a1 1 0 0 1-1-1v-5.7q0-4.1.695-6.434.73-2.332 2.65-4.2 1.644-1.57 3.992-2.575c.5-.213 1.066.047 1.263.553l.405 1.046c.207.532-.076 1.124-.591 1.37-1.39.662-2.478 1.63-3.146 2.54-.65.91-1.206 2.466-1.41 4.013-.074.556.381 1.02.943 1.02h2.667a1 1 0 0 1 1 1z\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiQuoteMarksFill);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiQuoteMarksFill","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","d","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,sBAAwB,CAAC,CAC7BC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKJ,KAAK,UAAUK,EAAE,okBAC7R,MAAMC,WAAahB,WAAWC,sBAC9B,gBAAee,UAAW"}
1
+ {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-quote-marks-fill.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiQuoteMarksFill = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"none\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill=\"currentColor\" d=\"M22.467 21.167a1 1 0 0 1-1 1h-6.468a1 1 0 0 1-1-1v-5.7q0-4.1.695-6.434.73-2.332 2.65-4.2 1.644-1.57 3.992-2.575c.5-.213 1.066.047 1.263.553l.405 1.046c.207.532-.076 1.124-.591 1.37-1.39.662-2.478 1.63-3.146 2.54-.65.91-1.206 2.466-1.41 4.013-.074.556.381 1.02.943 1.02h2.667a1 1 0 0 1 1 1zM9.068 21.167a1 1 0 0 1-1 1H1.6a1 1 0 0 1-1-1v-5.7q0-4.1.695-6.434.73-2.332 2.65-4.2 1.644-1.57 3.992-2.575c.5-.213 1.066.047 1.263.553l.405 1.046c.207.532-.076 1.124-.591 1.37-1.39.662-2.478 1.63-3.146 2.54-.65.91-1.206 2.466-1.41 4.013-.074.556.381 1.02.943 1.02h2.667a1 1 0 0 1 1 1z\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiQuoteMarksFill);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiQuoteMarksFill","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","d","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,sBAAwB,CAAC,CAC7BC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,OAAOC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKJ,KAAK,eAAeK,EAAE,okBAClS,MAAMC,WAAahB,WAAWC,sBAC9B,gBAAee,UAAW"}
package/core/Meganav.js CHANGED
@@ -1,2 +1,2 @@
1
- import React,{useEffect,useMemo}from"react";import Header from"./Header";import Flyout from"./Flyout";import{MeganavMobile}from"./Meganav/MeganavMobile";import Notice from"./Notice";import{HEADER_HEIGHT}from"./utils/heights";import{getMenuItemsForHeader}from"./Meganav/utils/getMenuItemsForHeader";const Meganav=({sessionState,notice,theme,themedScrollpoints,onNoticeClose,blogPosts})=>{const[noticeHeight,setNoticeHeight]=React.useState(0);const finalNoticeHeight=notice?noticeHeight:0;const headerMenuItems=useMemo(()=>getMenuItemsForHeader(blogPosts),[blogPosts]);const mobileNavItems=useMemo(()=>headerMenuItems.filter(item=>!item.isHiddenMobile).map(({name,link,content})=>({name,link,content})),[headerMenuItems]);const defaultThemedScrollpoints=[{id:"meganav",className:"ui-theme-light !bg-transparent !border-none"},{id:"meganav-theme-dark",className:"ui-theme-dark !bg-transparent !border-none"},{id:"main",className:"ui-theme-light bg-neutral-000 dark:bg-neutral-1300 border-b"},{id:"main-theme-dark",className:"ui-theme-dark bg-neutral-000 dark:bg-neutral-1300 border-b"}];useEffect(()=>{if(!notice){if(noticeHeight!==0){setNoticeHeight(0)}return}const noticeElement=document.querySelector('[data-id="ui-notice"]');if(!noticeElement)return;const updateNoticeHeight=()=>{setNoticeHeight(noticeElement.getBoundingClientRect().height)};const observer=new ResizeObserver(updateNoticeHeight);observer.observe(noticeElement);const timeoutId=setTimeout(updateNoticeHeight,0);window.addEventListener("resize",updateNoticeHeight);return()=>{clearTimeout(timeoutId);observer.disconnect();window.removeEventListener("resize",updateNoticeHeight)}},[notice]);return React.createElement(React.Fragment,null,React.createElement("div",{className:"absolute inset-0 w-full z-50",id:theme==="dark"?"meganav-theme-dark":"meganav","data-testid":"meganav",style:{height:HEADER_HEIGHT+finalNoticeHeight}},notice&&React.createElement(Notice,{...notice.props,config:notice.config,onClose:onNoticeClose}),React.createElement(Header,{className:"max-w-screen-xl mx-auto",isNoticeBannerEnabled:!!notice,noticeHeight:finalNoticeHeight,nav:React.createElement(Flyout,{menuItems:headerMenuItems,className:"justify-left z-40",flyOutClassName:"flex justify-left",viewPortClassName:"ui-shadow-lg-medium border border-neutral-200 dark:border-neutral-1100 rounded-2xl -mt-1 bg-neutral-000 dark:bg-neutral-1300"}),mobileNav:React.createElement(MeganavMobile,{navItems:mobileNavItems}),headerLinks:[{href:"/contact",label:"Contact us"}],headerLinksClassName:"md:gap-x-6 ",sessionState:sessionState,themedScrollpoints:themedScrollpoints??defaultThemedScrollpoints})))};export default Meganav;
1
+ import React,{useEffect,useMemo}from"react";import Header from"./Header";import Flyout from"./Flyout";import{MeganavMobile}from"./Meganav/MeganavMobile";import Notice from"./Notice";import{HEADER_HEIGHT}from"./utils/heights";import{getMenuItemsForHeader}from"./Meganav/utils/getMenuItemsForHeader";const Meganav=({sessionState,notice,theme,themedScrollpoints,onNoticeClose,blogPosts})=>{const[noticeHeight,setNoticeHeight]=React.useState(0);const finalNoticeHeight=notice?noticeHeight:0;const headerMenuItems=useMemo(()=>getMenuItemsForHeader(blogPosts),[blogPosts]);const mobileNavItems=useMemo(()=>headerMenuItems.filter(item=>!item.isHiddenMobile).map(({name,link,content})=>({name,link,content})),[headerMenuItems]);const defaultThemedScrollpoints=[{id:"meganav",className:"ui-theme-light !bg-transparent !border-none"},{id:"meganav-theme-dark",className:"ui-theme-dark !bg-transparent !border-none"},{id:"main",className:"ui-theme-light bg-neutral-000 dark:bg-neutral-1300 border-b"},{id:"main-theme-dark",className:"ui-theme-dark bg-neutral-000 dark:bg-neutral-1300 border-b"}];useEffect(()=>{if(!notice){if(noticeHeight!==0){setNoticeHeight(0)}return}const noticeElement=document.querySelector('[data-id="ui-notice"]');if(!noticeElement)return;const updateNoticeHeight=()=>{setNoticeHeight(noticeElement.getBoundingClientRect().height)};const observer=new ResizeObserver(updateNoticeHeight);observer.observe(noticeElement);const timeoutId=setTimeout(updateNoticeHeight,0);window.addEventListener("resize",updateNoticeHeight);return()=>{clearTimeout(timeoutId);observer.disconnect();window.removeEventListener("resize",updateNoticeHeight)}},[notice]);return React.createElement(React.Fragment,null,React.createElement("div",{className:"absolute top-0 left-0 right-0 w-full z-50",id:theme==="dark"?"meganav-theme-dark":"meganav","data-testid":"meganav",style:{height:HEADER_HEIGHT+finalNoticeHeight}},notice&&React.createElement(Notice,{...notice.props,config:notice.config,onClose:onNoticeClose}),React.createElement(Header,{className:"max-w-screen-xl mx-auto",isNoticeBannerEnabled:!!notice,noticeHeight:finalNoticeHeight,nav:React.createElement(Flyout,{menuItems:headerMenuItems,className:"justify-left z-40",flyOutClassName:"flex justify-left",viewPortClassName:"ui-shadow-lg-medium border border-neutral-200 dark:border-neutral-1100 rounded-2xl -mt-1 bg-neutral-000 dark:bg-neutral-1300"}),mobileNav:React.createElement(MeganavMobile,{navItems:mobileNavItems}),headerLinks:[{href:"/contact",label:"Contact us"}],headerLinksClassName:"md:gap-x-6 ",sessionState:sessionState,themedScrollpoints:themedScrollpoints??defaultThemedScrollpoints})))};export default Meganav;
2
2
  //# sourceMappingURL=Meganav.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/core/Meganav.tsx"],"sourcesContent":["import React, { useEffect, useMemo } from \"react\";\nimport Header, { HeaderSessionState, ThemedScrollpoint } from \"./Header\";\nimport Flyout from \"./Flyout\";\nimport { MeganavMobile } from \"./Meganav/MeganavMobile\";\nimport Notice from \"./Notice\";\nimport { HEADER_HEIGHT } from \"./utils/heights\";\nimport { BlogPost } from \"./Meganav/MeganavBlog\";\nimport { getMenuItemsForHeader } from \"./Meganav/utils/getMenuItemsForHeader\";\n\nexport type MeganavNoticeBannerProps = {\n props: {\n title: string;\n bodyText: string;\n buttonLink: string;\n buttonLabel: string;\n closeBtn: boolean;\n };\n config: {\n cookieId: string;\n noticeId: string | number;\n options: {\n collapse: boolean;\n };\n };\n};\n\nexport type MeganavProps = {\n sessionState: HeaderSessionState;\n blogPosts: BlogPost[];\n notice?: MeganavNoticeBannerProps;\n theme?: string;\n themedScrollpoints?: ThemedScrollpoint[];\n onNoticeClose?: () => void;\n};\n\nconst Meganav = ({\n sessionState,\n notice,\n theme,\n themedScrollpoints,\n onNoticeClose,\n blogPosts,\n}: MeganavProps) => {\n const [noticeHeight, setNoticeHeight] = React.useState(0);\n\n const finalNoticeHeight = notice ? noticeHeight : 0;\n\n const headerMenuItems = useMemo(\n () => getMenuItemsForHeader(blogPosts),\n [blogPosts],\n );\n\n const mobileNavItems = useMemo(\n () =>\n headerMenuItems\n .filter((item) => !item.isHiddenMobile)\n .map(({ name, link, content }) => ({ name, link, content })),\n [headerMenuItems],\n );\n\n const defaultThemedScrollpoints = [\n {\n id: \"meganav\",\n className: \"ui-theme-light !bg-transparent !border-none\",\n },\n {\n id: \"meganav-theme-dark\",\n className: \"ui-theme-dark !bg-transparent !border-none\",\n },\n {\n id: \"main\",\n className: \"ui-theme-light bg-neutral-000 dark:bg-neutral-1300 border-b\",\n },\n {\n id: \"main-theme-dark\",\n className: \"ui-theme-dark bg-neutral-000 dark:bg-neutral-1300 border-b\",\n },\n ];\n\n useEffect(() => {\n if (!notice) {\n if (noticeHeight !== 0) {\n setNoticeHeight(0);\n }\n return;\n }\n\n const noticeElement = document.querySelector('[data-id=\"ui-notice\"]');\n if (!noticeElement) return;\n\n const updateNoticeHeight = () => {\n setNoticeHeight(noticeElement.getBoundingClientRect().height);\n };\n\n const observer = new ResizeObserver(updateNoticeHeight);\n observer.observe(noticeElement);\n\n const timeoutId = setTimeout(updateNoticeHeight, 0);\n window.addEventListener(\"resize\", updateNoticeHeight);\n\n return () => {\n clearTimeout(timeoutId);\n observer.disconnect();\n window.removeEventListener(\"resize\", updateNoticeHeight);\n };\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [notice]);\n\n return (\n <>\n <div\n className=\"absolute inset-0 w-full z-50\"\n id={theme === \"dark\" ? \"meganav-theme-dark\" : \"meganav\"}\n data-testid=\"meganav\"\n style={{ height: HEADER_HEIGHT + finalNoticeHeight }}\n >\n {notice && (\n <Notice\n {...notice.props}\n config={notice.config}\n onClose={onNoticeClose}\n />\n )}\n <Header\n className=\"max-w-screen-xl mx-auto\"\n isNoticeBannerEnabled={!!notice}\n noticeHeight={finalNoticeHeight}\n nav={\n <Flyout\n menuItems={headerMenuItems}\n className=\"justify-left z-40\"\n flyOutClassName=\"flex justify-left\"\n viewPortClassName=\"ui-shadow-lg-medium border border-neutral-200 dark:border-neutral-1100 rounded-2xl -mt-1 bg-neutral-000 dark:bg-neutral-1300\"\n />\n }\n mobileNav={<MeganavMobile navItems={mobileNavItems} />}\n headerLinks={[{ href: \"/contact\", label: \"Contact us\" }]}\n headerLinksClassName=\"md:gap-x-6 \"\n sessionState={sessionState}\n themedScrollpoints={themedScrollpoints ?? defaultThemedScrollpoints}\n />\n </div>\n </>\n );\n};\n\nexport default Meganav;\n"],"names":["React","useEffect","useMemo","Header","Flyout","MeganavMobile","Notice","HEADER_HEIGHT","getMenuItemsForHeader","Meganav","sessionState","notice","theme","themedScrollpoints","onNoticeClose","blogPosts","noticeHeight","setNoticeHeight","useState","finalNoticeHeight","headerMenuItems","mobileNavItems","filter","item","isHiddenMobile","map","name","link","content","defaultThemedScrollpoints","id","className","noticeElement","document","querySelector","updateNoticeHeight","getBoundingClientRect","height","observer","ResizeObserver","observe","timeoutId","setTimeout","window","addEventListener","clearTimeout","disconnect","removeEventListener","div","data-testid","style","props","config","onClose","isNoticeBannerEnabled","nav","menuItems","flyOutClassName","viewPortClassName","mobileNav","navItems","headerLinks","href","label","headerLinksClassName"],"mappings":"AAAA,OAAOA,OAASC,SAAS,CAAEC,OAAO,KAAQ,OAAQ,AAClD,QAAOC,WAAuD,UAAW,AACzE,QAAOC,WAAY,UAAW,AAC9B,QAASC,aAAa,KAAQ,yBAA0B,AACxD,QAAOC,WAAY,UAAW,AAC9B,QAASC,aAAa,KAAQ,iBAAkB,AAEhD,QAASC,qBAAqB,KAAQ,uCAAwC,CA4B9E,MAAMC,QAAU,CAAC,CACfC,YAAY,CACZC,MAAM,CACNC,KAAK,CACLC,kBAAkB,CAClBC,aAAa,CACbC,SAAS,CACI,IACb,KAAM,CAACC,aAAcC,gBAAgB,CAAGjB,MAAMkB,QAAQ,CAAC,GAEvD,MAAMC,kBAAoBR,OAASK,aAAe,EAElD,MAAMI,gBAAkBlB,QACtB,IAAMM,sBAAsBO,WAC5B,CAACA,UAAU,EAGb,MAAMM,eAAiBnB,QACrB,IACEkB,gBACGE,MAAM,CAAC,AAACC,MAAS,CAACA,KAAKC,cAAc,EACrCC,GAAG,CAAC,CAAC,CAAEC,IAAI,CAAEC,IAAI,CAAEC,OAAO,CAAE,GAAM,CAAA,CAAEF,KAAMC,KAAMC,OAAQ,CAAA,GAC7D,CAACR,gBAAgB,EAGnB,MAAMS,0BAA4B,CAChC,CACEC,GAAI,UACJC,UAAW,6CACb,EACA,CACED,GAAI,qBACJC,UAAW,4CACb,EACA,CACED,GAAI,OACJC,UAAW,6DACb,EACA,CACED,GAAI,kBACJC,UAAW,4DACb,EACD,CAED9B,UAAU,KACR,GAAI,CAACU,OAAQ,CACX,GAAIK,eAAiB,EAAG,CACtBC,gBAAgB,EAClB,CACA,MACF,CAEA,MAAMe,cAAgBC,SAASC,aAAa,CAAC,yBAC7C,GAAI,CAACF,cAAe,OAEpB,MAAMG,mBAAqB,KACzBlB,gBAAgBe,cAAcI,qBAAqB,GAAGC,MAAM,CAC9D,EAEA,MAAMC,SAAW,IAAIC,eAAeJ,oBACpCG,SAASE,OAAO,CAACR,eAEjB,MAAMS,UAAYC,WAAWP,mBAAoB,GACjDQ,OAAOC,gBAAgB,CAAC,SAAUT,oBAElC,MAAO,KACLU,aAAaJ,WACbH,SAASQ,UAAU,GACnBH,OAAOI,mBAAmB,CAAC,SAAUZ,mBACvC,CAEF,EAAG,CAACxB,OAAO,EAEX,OACE,wCACE,oBAACqC,OACCjB,UAAU,+BACVD,GAAIlB,QAAU,OAAS,qBAAuB,UAC9CqC,cAAY,UACZC,MAAO,CAAEb,OAAQ9B,cAAgBY,iBAAkB,GAElDR,QACC,oBAACL,QACE,GAAGK,OAAOwC,KAAK,CAChBC,OAAQzC,OAAOyC,MAAM,CACrBC,QAASvC,gBAGb,oBAACX,QACC4B,UAAU,0BACVuB,sBAAuB,CAAC,CAAC3C,OACzBK,aAAcG,kBACdoC,IACE,oBAACnD,QACCoD,UAAWpC,gBACXW,UAAU,oBACV0B,gBAAgB,oBAChBC,kBAAkB,iIAGtBC,UAAW,oBAACtD,eAAcuD,SAAUvC,iBACpCwC,YAAa,CAAC,CAAEC,KAAM,WAAYC,MAAO,YAAa,EAAE,CACxDC,qBAAqB,cACrBtD,aAAcA,aACdG,mBAAoBA,oBAAsBgB,6BAKpD,CAEA,gBAAepB,OAAQ"}
1
+ {"version":3,"sources":["../../src/core/Meganav.tsx"],"sourcesContent":["import React, { useEffect, useMemo } from \"react\";\nimport Header, { HeaderSessionState, ThemedScrollpoint } from \"./Header\";\nimport Flyout from \"./Flyout\";\nimport { MeganavMobile } from \"./Meganav/MeganavMobile\";\nimport Notice from \"./Notice\";\nimport { HEADER_HEIGHT } from \"./utils/heights\";\nimport { BlogPost } from \"./Meganav/MeganavBlog\";\nimport { getMenuItemsForHeader } from \"./Meganav/utils/getMenuItemsForHeader\";\n\nexport type MeganavNoticeBannerProps = {\n props: {\n title: string;\n bodyText: string;\n buttonLink: string;\n buttonLabel: string;\n closeBtn: boolean;\n };\n config: {\n cookieId: string;\n noticeId: string | number;\n options: {\n collapse: boolean;\n };\n };\n};\n\nexport type MeganavProps = {\n sessionState: HeaderSessionState;\n blogPosts: BlogPost[];\n notice?: MeganavNoticeBannerProps;\n theme?: string;\n themedScrollpoints?: ThemedScrollpoint[];\n onNoticeClose?: () => void;\n};\n\nconst Meganav = ({\n sessionState,\n notice,\n theme,\n themedScrollpoints,\n onNoticeClose,\n blogPosts,\n}: MeganavProps) => {\n const [noticeHeight, setNoticeHeight] = React.useState(0);\n\n const finalNoticeHeight = notice ? noticeHeight : 0;\n\n const headerMenuItems = useMemo(\n () => getMenuItemsForHeader(blogPosts),\n [blogPosts],\n );\n\n const mobileNavItems = useMemo(\n () =>\n headerMenuItems\n .filter((item) => !item.isHiddenMobile)\n .map(({ name, link, content }) => ({ name, link, content })),\n [headerMenuItems],\n );\n\n const defaultThemedScrollpoints = [\n {\n id: \"meganav\",\n className: \"ui-theme-light !bg-transparent !border-none\",\n },\n {\n id: \"meganav-theme-dark\",\n className: \"ui-theme-dark !bg-transparent !border-none\",\n },\n {\n id: \"main\",\n className: \"ui-theme-light bg-neutral-000 dark:bg-neutral-1300 border-b\",\n },\n {\n id: \"main-theme-dark\",\n className: \"ui-theme-dark bg-neutral-000 dark:bg-neutral-1300 border-b\",\n },\n ];\n\n useEffect(() => {\n if (!notice) {\n if (noticeHeight !== 0) {\n setNoticeHeight(0);\n }\n return;\n }\n\n const noticeElement = document.querySelector('[data-id=\"ui-notice\"]');\n if (!noticeElement) return;\n\n const updateNoticeHeight = () => {\n setNoticeHeight(noticeElement.getBoundingClientRect().height);\n };\n\n const observer = new ResizeObserver(updateNoticeHeight);\n observer.observe(noticeElement);\n\n const timeoutId = setTimeout(updateNoticeHeight, 0);\n window.addEventListener(\"resize\", updateNoticeHeight);\n\n return () => {\n clearTimeout(timeoutId);\n observer.disconnect();\n window.removeEventListener(\"resize\", updateNoticeHeight);\n };\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [notice]);\n\n return (\n <>\n <div\n className=\"absolute top-0 left-0 right-0 w-full z-50\"\n id={theme === \"dark\" ? \"meganav-theme-dark\" : \"meganav\"}\n data-testid=\"meganav\"\n style={{ height: HEADER_HEIGHT + finalNoticeHeight }}\n >\n {notice && (\n <Notice\n {...notice.props}\n config={notice.config}\n onClose={onNoticeClose}\n />\n )}\n <Header\n className=\"max-w-screen-xl mx-auto\"\n isNoticeBannerEnabled={!!notice}\n noticeHeight={finalNoticeHeight}\n nav={\n <Flyout\n menuItems={headerMenuItems}\n className=\"justify-left z-40\"\n flyOutClassName=\"flex justify-left\"\n viewPortClassName=\"ui-shadow-lg-medium border border-neutral-200 dark:border-neutral-1100 rounded-2xl -mt-1 bg-neutral-000 dark:bg-neutral-1300\"\n />\n }\n mobileNav={<MeganavMobile navItems={mobileNavItems} />}\n headerLinks={[{ href: \"/contact\", label: \"Contact us\" }]}\n headerLinksClassName=\"md:gap-x-6 \"\n sessionState={sessionState}\n themedScrollpoints={themedScrollpoints ?? defaultThemedScrollpoints}\n />\n </div>\n </>\n );\n};\n\nexport default Meganav;\n"],"names":["React","useEffect","useMemo","Header","Flyout","MeganavMobile","Notice","HEADER_HEIGHT","getMenuItemsForHeader","Meganav","sessionState","notice","theme","themedScrollpoints","onNoticeClose","blogPosts","noticeHeight","setNoticeHeight","useState","finalNoticeHeight","headerMenuItems","mobileNavItems","filter","item","isHiddenMobile","map","name","link","content","defaultThemedScrollpoints","id","className","noticeElement","document","querySelector","updateNoticeHeight","getBoundingClientRect","height","observer","ResizeObserver","observe","timeoutId","setTimeout","window","addEventListener","clearTimeout","disconnect","removeEventListener","div","data-testid","style","props","config","onClose","isNoticeBannerEnabled","nav","menuItems","flyOutClassName","viewPortClassName","mobileNav","navItems","headerLinks","href","label","headerLinksClassName"],"mappings":"AAAA,OAAOA,OAASC,SAAS,CAAEC,OAAO,KAAQ,OAAQ,AAClD,QAAOC,WAAuD,UAAW,AACzE,QAAOC,WAAY,UAAW,AAC9B,QAASC,aAAa,KAAQ,yBAA0B,AACxD,QAAOC,WAAY,UAAW,AAC9B,QAASC,aAAa,KAAQ,iBAAkB,AAEhD,QAASC,qBAAqB,KAAQ,uCAAwC,CA4B9E,MAAMC,QAAU,CAAC,CACfC,YAAY,CACZC,MAAM,CACNC,KAAK,CACLC,kBAAkB,CAClBC,aAAa,CACbC,SAAS,CACI,IACb,KAAM,CAACC,aAAcC,gBAAgB,CAAGjB,MAAMkB,QAAQ,CAAC,GAEvD,MAAMC,kBAAoBR,OAASK,aAAe,EAElD,MAAMI,gBAAkBlB,QACtB,IAAMM,sBAAsBO,WAC5B,CAACA,UAAU,EAGb,MAAMM,eAAiBnB,QACrB,IACEkB,gBACGE,MAAM,CAAC,AAACC,MAAS,CAACA,KAAKC,cAAc,EACrCC,GAAG,CAAC,CAAC,CAAEC,IAAI,CAAEC,IAAI,CAAEC,OAAO,CAAE,GAAM,CAAA,CAAEF,KAAMC,KAAMC,OAAQ,CAAA,GAC7D,CAACR,gBAAgB,EAGnB,MAAMS,0BAA4B,CAChC,CACEC,GAAI,UACJC,UAAW,6CACb,EACA,CACED,GAAI,qBACJC,UAAW,4CACb,EACA,CACED,GAAI,OACJC,UAAW,6DACb,EACA,CACED,GAAI,kBACJC,UAAW,4DACb,EACD,CAED9B,UAAU,KACR,GAAI,CAACU,OAAQ,CACX,GAAIK,eAAiB,EAAG,CACtBC,gBAAgB,EAClB,CACA,MACF,CAEA,MAAMe,cAAgBC,SAASC,aAAa,CAAC,yBAC7C,GAAI,CAACF,cAAe,OAEpB,MAAMG,mBAAqB,KACzBlB,gBAAgBe,cAAcI,qBAAqB,GAAGC,MAAM,CAC9D,EAEA,MAAMC,SAAW,IAAIC,eAAeJ,oBACpCG,SAASE,OAAO,CAACR,eAEjB,MAAMS,UAAYC,WAAWP,mBAAoB,GACjDQ,OAAOC,gBAAgB,CAAC,SAAUT,oBAElC,MAAO,KACLU,aAAaJ,WACbH,SAASQ,UAAU,GACnBH,OAAOI,mBAAmB,CAAC,SAAUZ,mBACvC,CAEF,EAAG,CAACxB,OAAO,EAEX,OACE,wCACE,oBAACqC,OACCjB,UAAU,4CACVD,GAAIlB,QAAU,OAAS,qBAAuB,UAC9CqC,cAAY,UACZC,MAAO,CAAEb,OAAQ9B,cAAgBY,iBAAkB,GAElDR,QACC,oBAACL,QACE,GAAGK,OAAOwC,KAAK,CAChBC,OAAQzC,OAAOyC,MAAM,CACrBC,QAASvC,gBAGb,oBAACX,QACC4B,UAAU,0BACVuB,sBAAuB,CAAC,CAAC3C,OACzBK,aAAcG,kBACdoC,IACE,oBAACnD,QACCoD,UAAWpC,gBACXW,UAAU,oBACV0B,gBAAgB,oBAChBC,kBAAkB,iIAGtBC,UAAW,oBAACtD,eAAcuD,SAAUvC,iBACpCwC,YAAa,CAAC,CAAEC,KAAM,WAAYC,MAAO,YAAa,EAAE,CACxDC,qBAAqB,cACrBtD,aAAcA,aACdG,mBAAoBA,oBAAsBgB,6BAKpD,CAEA,gBAAepB,OAAQ"}
package/core/Notice.js CHANGED
@@ -1,2 +1,2 @@
1
- import React,{useEffect,useRef,useState}from"react";import DOMPurify from"dompurify";import Icon from"./Icon";import cn from"./utils/cn.js";import NoticeScripts from"./Notice/component.js";import useRailsUjsLinks from"./hooks/use-rails-ujs-hooks";const defaultTextColor="text-neutral-1300 dark:text-neutral-000";const contentWrapperClasses="w-full pr-2 ui-text-p4 self-center";const ContentWrapper=({buttonLink,textColor=defaultTextColor,children})=>buttonLink?React.createElement("a",{href:buttonLink,className:cn(contentWrapperClasses,textColor)},children):React.createElement("div",{className:cn(contentWrapperClasses,textColor)},children);const Notice=({buttonLink,buttonLabel,bodyText,title,config,closeBtn,bgColor="bg-orange-100 dark:bg-orange-1100",textColor=defaultTextColor,onClose})=>{const contentRef=useRef(null);const[isClosing,setIsClosing]=useState(false);useRailsUjsLinks(contentRef);useEffect(()=>{const cleanup=NoticeScripts({bannerContainer:document.querySelector('[data-id="ui-notice"]'),cookieId:config?.cookieId,noticeId:config?.noticeId,options:{collapse:config?.options?.collapse||false}});return cleanup},[config?.cookieId,config?.noticeId,config?.options?.collapse]);const safeContent=DOMPurify.sanitize(bodyText??"",{ALLOWED_TAGS:["a"],ALLOWED_ATTR:["href","data-method"],ALLOWED_URI_REGEXP:/^\/[^/]/});return React.createElement("div",{className:cn("ui-announcement relative z-[60]",isClosing?"ui-announcement-hidden max-h-0 -translate-y-full opacity-0 overflow-hidden":"ui-announcement-visible",bgColor,textColor),"data-id":"ui-notice"},React.createElement("div",{className:"ui-grid-px py-4 max-w-screen-xl mx-auto flex items-start"},React.createElement(ContentWrapper,{buttonLink:buttonLink??"#"},React.createElement("strong",{className:"font-bold whitespace-nowrap pr-1"},title),React.createElement("span",{ref:contentRef,className:"pr-1",dangerouslySetInnerHTML:{__html:safeContent}}),buttonLabel&&React.createElement("span",{className:"cursor-pointer whitespace-nowrap text-gui-blue-default-light dark:text-gui-blue-default-dark"},buttonLabel)),closeBtn&&React.createElement("button",{type:"button",className:"ml-auto h-5 w-5 border-none bg-none self-baseline outline-none focus:outline-none focus:ring-0 focus:border-transparent",onClick:()=>{setIsClosing(true);setTimeout(()=>{document.dispatchEvent(new CustomEvent("notice-closed"));onClose?.()},300)}},React.createElement(Icon,{name:"icon-gui-x-mark-outline",size:"1.25rem",color:textColor}))))};export default Notice;
1
+ import React,{useEffect,useRef,useState}from"react";import DOMPurify from"dompurify";import Icon from"./Icon";import cn from"./utils/cn.js";import NoticeScripts from"./Notice/component.js";import useRailsUjsLinks from"./hooks/use-rails-ujs-hooks";const defaultTextColor="text-neutral-1300 dark:text-neutral-000";const contentWrapperClasses="w-full pr-2 ui-text-p4 self-center";const Notice=({buttonLink,buttonLabel,bodyText,title,config,closeBtn,bgColor="bg-orange-100 dark:bg-orange-1100",textColor=defaultTextColor,onClose})=>{const contentRef=useRef(null);const[isClosing,setIsClosing]=useState(false);useRailsUjsLinks(contentRef);useEffect(()=>{const cleanup=NoticeScripts({bannerContainer:document.querySelector('[data-id="ui-notice"]'),cookieId:config?.cookieId,noticeId:config?.noticeId,options:{collapse:config?.options?.collapse||false}});return cleanup},[config?.cookieId,config?.noticeId,config?.options?.collapse]);const safeContent=DOMPurify.sanitize(bodyText??"",{ALLOWED_TAGS:["a"],ALLOWED_ATTR:["href","data-method"],ALLOWED_URI_REGEXP:/^\/[^/]/});const isSafeButtonLink=typeof buttonLink==="string"&&(/^\/(?!\/)/.test(buttonLink)||/^https?:\/\//.test(buttonLink));return React.createElement("div",{className:cn("ui-announcement relative z-[60]",isClosing?"ui-announcement-hidden max-h-0 -translate-y-full opacity-0 overflow-hidden":"ui-announcement-visible",bgColor,textColor),"data-id":"ui-notice"},React.createElement("div",{className:"ui-grid-px py-4 max-w-screen-xl mx-auto flex items-start"},React.createElement("div",{className:cn(contentWrapperClasses,textColor)},React.createElement("strong",{className:"font-bold whitespace-nowrap pr-1"},title),React.createElement("span",{ref:contentRef,className:"pr-1",dangerouslySetInnerHTML:{__html:safeContent}}),buttonLabel&&(isSafeButtonLink?React.createElement("a",{href:buttonLink,className:"focus-base transition-colors cursor-pointer whitespace-nowrap text-gui-blue-default-light dark:text-gui-blue-default-dark"},buttonLabel):React.createElement("span",{className:"focus-base transition-colors cursor-pointer whitespace-nowrap text-gui-blue-default-light dark:text-gui-blue-default-dark"},buttonLabel))),closeBtn&&React.createElement("button",{type:"button",className:"ml-auto h-5 w-5 border-none bg-none self-baseline outline-none focus:outline-none focus:ring-0 focus:border-transparent",onClick:()=>{setIsClosing(true);setTimeout(()=>{document.dispatchEvent(new CustomEvent("notice-closed"));onClose?.()},300)}},React.createElement(Icon,{name:"icon-gui-x-mark-outline",size:"1.25rem",color:textColor}))))};export default Notice;
2
2
  //# sourceMappingURL=Notice.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/core/Notice.tsx"],"sourcesContent":["import React, { ReactNode, useEffect, useRef, useState } from \"react\";\nimport DOMPurify from \"dompurify\";\n\nimport { ColorClass, ColorThemeSet } from \"./styles/colors/types\";\nimport Icon from \"./Icon\";\nimport cn from \"./utils/cn.js\";\nimport NoticeScripts from \"./Notice/component.js\";\nimport useRailsUjsLinks from \"./hooks/use-rails-ujs-hooks\";\n\ntype ContentWrapperProps = {\n buttonLink: string;\n children: ReactNode;\n textColor?: ColorClass | ColorThemeSet;\n};\n\n// TODO(jamiehenson):\n// This type is a bit messed up currently due to the NoticeScripts import being interpreted as NoticeProps.\n// Plan is to TS-ify the JS assets too, so this can be rectified then. The NoticeScripts-oriented props are\n// the ones after the line break.\nexport type NoticeProps = {\n buttonLink?: string;\n buttonLabel?: string;\n bodyText?: string;\n title?: string;\n closeBtn?: boolean;\n config?: {\n options: {\n collapse: boolean;\n };\n noticeId: string | number;\n cookieId: string;\n };\n bgColor?: string;\n textColor?: ColorClass | ColorThemeSet;\n onClose?: () => void;\n\n bannerContainer?: Element | null;\n cookieId?: string;\n noticeId?: string;\n options?: { collapse: boolean };\n};\n\nconst defaultTextColor = \"text-neutral-1300 dark:text-neutral-000\";\n\nconst contentWrapperClasses = \"w-full pr-2 ui-text-p4 self-center\";\n\nconst ContentWrapper = ({\n buttonLink,\n textColor = defaultTextColor,\n children,\n}: ContentWrapperProps) =>\n buttonLink ? (\n <a href={buttonLink} className={cn(contentWrapperClasses, textColor)}>\n {children}\n </a>\n ) : (\n <div className={cn(contentWrapperClasses, textColor)}>{children}</div>\n );\n\nconst Notice = ({\n buttonLink,\n buttonLabel,\n bodyText,\n title,\n config,\n closeBtn,\n bgColor = \"bg-orange-100 dark:bg-orange-1100\",\n textColor = defaultTextColor,\n onClose,\n}: NoticeProps) => {\n const contentRef = useRef<HTMLSpanElement>(null);\n const [isClosing, setIsClosing] = useState(false);\n useRailsUjsLinks(contentRef);\n\n useEffect(() => {\n const cleanup = NoticeScripts({\n bannerContainer: document.querySelector('[data-id=\"ui-notice\"]'),\n cookieId: config?.cookieId,\n noticeId: config?.noticeId,\n options: {\n collapse: config?.options?.collapse || false,\n },\n });\n\n return cleanup;\n }, [config?.cookieId, config?.noticeId, config?.options?.collapse]);\n\n const safeContent = DOMPurify.sanitize(bodyText ?? \"\", {\n ALLOWED_TAGS: [\"a\"],\n ALLOWED_ATTR: [\"href\", \"data-method\"],\n ALLOWED_URI_REGEXP: /^\\/[^/]/,\n });\n\n // have to add the style classes here as src/core/Notice/component.css is not being properly imported or distributed when ably-ui is used as a package.\n return (\n <div\n className={cn(\n \"ui-announcement relative z-[60]\",\n isClosing\n ? \"ui-announcement-hidden max-h-0 -translate-y-full opacity-0 overflow-hidden\"\n : \"ui-announcement-visible\",\n bgColor,\n textColor,\n )}\n data-id=\"ui-notice\"\n >\n <div className=\"ui-grid-px py-4 max-w-screen-xl mx-auto flex items-start\">\n <ContentWrapper buttonLink={buttonLink ?? \"#\"}>\n <strong className=\"font-bold whitespace-nowrap pr-1\">{title}</strong>\n <span\n ref={contentRef}\n className=\"pr-1\"\n dangerouslySetInnerHTML={{\n __html: safeContent,\n }}\n ></span>\n {buttonLabel && (\n <span className=\"cursor-pointer whitespace-nowrap text-gui-blue-default-light dark:text-gui-blue-default-dark\">\n {buttonLabel}\n </span>\n )}\n </ContentWrapper>\n\n {closeBtn && (\n <button\n type=\"button\"\n className=\"ml-auto h-5 w-5 border-none bg-none self-baseline outline-none focus:outline-none focus:ring-0 focus:border-transparent\"\n onClick={() => {\n setIsClosing(true);\n setTimeout(() => {\n document.dispatchEvent(new CustomEvent(\"notice-closed\"));\n onClose?.();\n }, 300);\n }}\n >\n <Icon\n name=\"icon-gui-x-mark-outline\"\n size=\"1.25rem\"\n color={textColor}\n />\n </button>\n )}\n </div>\n </div>\n );\n};\n\nexport default Notice;\n"],"names":["React","useEffect","useRef","useState","DOMPurify","Icon","cn","NoticeScripts","useRailsUjsLinks","defaultTextColor","contentWrapperClasses","ContentWrapper","buttonLink","textColor","children","a","href","className","div","Notice","buttonLabel","bodyText","title","config","closeBtn","bgColor","onClose","contentRef","isClosing","setIsClosing","cleanup","bannerContainer","document","querySelector","cookieId","noticeId","options","collapse","safeContent","sanitize","ALLOWED_TAGS","ALLOWED_ATTR","ALLOWED_URI_REGEXP","data-id","strong","span","ref","dangerouslySetInnerHTML","__html","button","type","onClick","setTimeout","dispatchEvent","CustomEvent","name","size","color"],"mappings":"AAAA,OAAOA,OAAoBC,SAAS,CAAEC,MAAM,CAAEC,QAAQ,KAAQ,OAAQ,AACtE,QAAOC,cAAe,WAAY,AAGlC,QAAOC,SAAU,QAAS,AAC1B,QAAOC,OAAQ,eAAgB,AAC/B,QAAOC,kBAAmB,uBAAwB,AAClD,QAAOC,qBAAsB,6BAA8B,CAmC3D,MAAMC,iBAAmB,0CAEzB,MAAMC,sBAAwB,qCAE9B,MAAMC,eAAiB,CAAC,CACtBC,UAAU,CACVC,UAAYJ,gBAAgB,CAC5BK,QAAQ,CACY,GACpBF,WACE,oBAACG,KAAEC,KAAMJ,WAAYK,UAAWX,GAAGI,sBAAuBG,YACvDC,UAGH,oBAACI,OAAID,UAAWX,GAAGI,sBAAuBG,YAAaC,UAG3D,MAAMK,OAAS,CAAC,CACdP,UAAU,CACVQ,WAAW,CACXC,QAAQ,CACRC,KAAK,CACLC,MAAM,CACNC,QAAQ,CACRC,QAAU,mCAAmC,CAC7CZ,UAAYJ,gBAAgB,CAC5BiB,OAAO,CACK,IACZ,MAAMC,WAAazB,OAAwB,MAC3C,KAAM,CAAC0B,UAAWC,aAAa,CAAG1B,SAAS,OAC3CK,iBAAiBmB,YAEjB1B,UAAU,KACR,MAAM6B,QAAUvB,cAAc,CAC5BwB,gBAAiBC,SAASC,aAAa,CAAC,yBACxCC,SAAUX,QAAQW,SAClBC,SAAUZ,QAAQY,SAClBC,QAAS,CACPC,SAAUd,QAAQa,SAASC,UAAY,KACzC,CACF,GAEA,OAAOP,OACT,EAAG,CAACP,QAAQW,SAAUX,QAAQY,SAAUZ,QAAQa,SAASC,SAAS,EAElE,MAAMC,YAAclC,UAAUmC,QAAQ,CAAClB,UAAY,GAAI,CACrDmB,aAAc,CAAC,IAAI,CACnBC,aAAc,CAAC,OAAQ,cAAc,CACrCC,mBAAoB,SACtB,GAGA,OACE,oBAACxB,OACCD,UAAWX,GACT,kCACAsB,UACI,6EACA,0BACJH,QACAZ,WAEF8B,UAAQ,aAER,oBAACzB,OAAID,UAAU,4DACb,oBAACN,gBAAeC,WAAYA,YAAc,KACxC,oBAACgC,UAAO3B,UAAU,oCAAoCK,OACtD,oBAACuB,QACCC,IAAKnB,WACLV,UAAU,OACV8B,wBAAyB,CACvBC,OAAQV,WACV,IAEDlB,aACC,oBAACyB,QAAK5B,UAAU,gGACbG,cAKNI,UACC,oBAACyB,UACCC,KAAK,SACLjC,UAAU,0HACVkC,QAAS,KACPtB,aAAa,MACbuB,WAAW,KACTpB,SAASqB,aAAa,CAAC,IAAIC,YAAY,kBACvC5B,WACF,EAAG,IACL,GAEA,oBAACrB,MACCkD,KAAK,0BACLC,KAAK,UACLC,MAAO5C,cAOrB,CAEA,gBAAeM,MAAO"}
1
+ {"version":3,"sources":["../../src/core/Notice.tsx"],"sourcesContent":["import React, { useEffect, useRef, useState } from \"react\";\nimport DOMPurify from \"dompurify\";\n\nimport { ColorClass, ColorThemeSet } from \"./styles/colors/types\";\nimport Icon from \"./Icon\";\nimport cn from \"./utils/cn.js\";\nimport NoticeScripts from \"./Notice/component.js\";\nimport useRailsUjsLinks from \"./hooks/use-rails-ujs-hooks\";\n\n// TODO(jamiehenson):\n// This type is a bit messed up currently due to the NoticeScripts import being interpreted as NoticeProps.\n// Plan is to TS-ify the JS assets too, so this can be rectified then. The NoticeScripts-oriented props are\n// the ones after the line break.\nexport type NoticeProps = {\n buttonLink?: string;\n buttonLabel?: string;\n bodyText?: string;\n title?: string;\n closeBtn?: boolean;\n config?: {\n options: {\n collapse: boolean;\n };\n noticeId: string | number;\n cookieId: string;\n };\n bgColor?: string;\n textColor?: ColorClass | ColorThemeSet;\n onClose?: () => void;\n\n bannerContainer?: Element | null;\n cookieId?: string;\n noticeId?: string;\n options?: { collapse: boolean };\n};\n\nconst defaultTextColor = \"text-neutral-1300 dark:text-neutral-000\";\n\nconst contentWrapperClasses = \"w-full pr-2 ui-text-p4 self-center\";\n\nconst Notice = ({\n buttonLink,\n buttonLabel,\n bodyText,\n title,\n config,\n closeBtn,\n bgColor = \"bg-orange-100 dark:bg-orange-1100\",\n textColor = defaultTextColor,\n onClose,\n}: NoticeProps) => {\n const contentRef = useRef<HTMLSpanElement>(null);\n const [isClosing, setIsClosing] = useState(false);\n useRailsUjsLinks(contentRef);\n\n useEffect(() => {\n const cleanup = NoticeScripts({\n bannerContainer: document.querySelector('[data-id=\"ui-notice\"]'),\n cookieId: config?.cookieId,\n noticeId: config?.noticeId,\n options: {\n collapse: config?.options?.collapse || false,\n },\n });\n\n return cleanup;\n }, [config?.cookieId, config?.noticeId, config?.options?.collapse]);\n\n const safeContent = DOMPurify.sanitize(bodyText ?? \"\", {\n ALLOWED_TAGS: [\"a\"],\n ALLOWED_ATTR: [\"href\", \"data-method\"],\n ALLOWED_URI_REGEXP: /^\\/[^/]/,\n });\n\n const isSafeButtonLink =\n typeof buttonLink === \"string\" &&\n (/^\\/(?!\\/)/.test(buttonLink) || /^https?:\\/\\//.test(buttonLink));\n\n // have to add the style classes here as src/core/Notice/component.css is not being properly imported or distributed when ably-ui is used as a package.\n return (\n <div\n className={cn(\n \"ui-announcement relative z-[60]\",\n isClosing\n ? \"ui-announcement-hidden max-h-0 -translate-y-full opacity-0 overflow-hidden\"\n : \"ui-announcement-visible\",\n bgColor,\n textColor,\n )}\n data-id=\"ui-notice\"\n >\n <div className=\"ui-grid-px py-4 max-w-screen-xl mx-auto flex items-start\">\n <div className={cn(contentWrapperClasses, textColor)}>\n <strong className=\"font-bold whitespace-nowrap pr-1\">{title}</strong>\n <span\n ref={contentRef}\n className=\"pr-1\"\n dangerouslySetInnerHTML={{\n __html: safeContent,\n }}\n ></span>\n {buttonLabel &&\n (isSafeButtonLink ? (\n <a\n href={buttonLink}\n className=\"focus-base transition-colors cursor-pointer whitespace-nowrap text-gui-blue-default-light dark:text-gui-blue-default-dark\"\n >\n {buttonLabel}\n </a>\n ) : (\n <span className=\"focus-base transition-colors cursor-pointer whitespace-nowrap text-gui-blue-default-light dark:text-gui-blue-default-dark\">\n {buttonLabel}\n </span>\n ))}\n </div>\n\n {closeBtn && (\n <button\n type=\"button\"\n className=\"ml-auto h-5 w-5 border-none bg-none self-baseline outline-none focus:outline-none focus:ring-0 focus:border-transparent\"\n onClick={() => {\n setIsClosing(true);\n setTimeout(() => {\n document.dispatchEvent(new CustomEvent(\"notice-closed\"));\n onClose?.();\n }, 300);\n }}\n >\n <Icon\n name=\"icon-gui-x-mark-outline\"\n size=\"1.25rem\"\n color={textColor}\n />\n </button>\n )}\n </div>\n </div>\n );\n};\n\nexport default Notice;\n"],"names":["React","useEffect","useRef","useState","DOMPurify","Icon","cn","NoticeScripts","useRailsUjsLinks","defaultTextColor","contentWrapperClasses","Notice","buttonLink","buttonLabel","bodyText","title","config","closeBtn","bgColor","textColor","onClose","contentRef","isClosing","setIsClosing","cleanup","bannerContainer","document","querySelector","cookieId","noticeId","options","collapse","safeContent","sanitize","ALLOWED_TAGS","ALLOWED_ATTR","ALLOWED_URI_REGEXP","isSafeButtonLink","test","div","className","data-id","strong","span","ref","dangerouslySetInnerHTML","__html","a","href","button","type","onClick","setTimeout","dispatchEvent","CustomEvent","name","size","color"],"mappings":"AAAA,OAAOA,OAASC,SAAS,CAAEC,MAAM,CAAEC,QAAQ,KAAQ,OAAQ,AAC3D,QAAOC,cAAe,WAAY,AAGlC,QAAOC,SAAU,QAAS,AAC1B,QAAOC,OAAQ,eAAgB,AAC/B,QAAOC,kBAAmB,uBAAwB,AAClD,QAAOC,qBAAsB,6BAA8B,CA6B3D,MAAMC,iBAAmB,0CAEzB,MAAMC,sBAAwB,qCAE9B,MAAMC,OAAS,CAAC,CACdC,UAAU,CACVC,WAAW,CACXC,QAAQ,CACRC,KAAK,CACLC,MAAM,CACNC,QAAQ,CACRC,QAAU,mCAAmC,CAC7CC,UAAYV,gBAAgB,CAC5BW,OAAO,CACK,IACZ,MAAMC,WAAanB,OAAwB,MAC3C,KAAM,CAACoB,UAAWC,aAAa,CAAGpB,SAAS,OAC3CK,iBAAiBa,YAEjBpB,UAAU,KACR,MAAMuB,QAAUjB,cAAc,CAC5BkB,gBAAiBC,SAASC,aAAa,CAAC,yBACxCC,SAAUZ,QAAQY,SAClBC,SAAUb,QAAQa,SAClBC,QAAS,CACPC,SAAUf,QAAQc,SAASC,UAAY,KACzC,CACF,GAEA,OAAOP,OACT,EAAG,CAACR,QAAQY,SAAUZ,QAAQa,SAAUb,QAAQc,SAASC,SAAS,EAElE,MAAMC,YAAc5B,UAAU6B,QAAQ,CAACnB,UAAY,GAAI,CACrDoB,aAAc,CAAC,IAAI,CACnBC,aAAc,CAAC,OAAQ,cAAc,CACrCC,mBAAoB,SACtB,GAEA,MAAMC,iBACJ,OAAOzB,aAAe,UACrB,CAAA,YAAY0B,IAAI,CAAC1B,aAAe,eAAe0B,IAAI,CAAC1B,WAAU,EAGjE,OACE,oBAAC2B,OACCC,UAAWlC,GACT,kCACAgB,UACI,6EACA,0BACJJ,QACAC,WAEFsB,UAAQ,aAER,oBAACF,OAAIC,UAAU,4DACb,oBAACD,OAAIC,UAAWlC,GAAGI,sBAAuBS,YACxC,oBAACuB,UAAOF,UAAU,oCAAoCzB,OACtD,oBAAC4B,QACCC,IAAKvB,WACLmB,UAAU,OACVK,wBAAyB,CACvBC,OAAQd,WACV,IAEDnB,aACEwB,CAAAA,iBACC,oBAACU,KACCC,KAAMpC,WACN4B,UAAU,6HAET3B,aAGH,oBAAC8B,QAAKH,UAAU,6HACb3B,YAEL,GAGHI,UACC,oBAACgC,UACCC,KAAK,SACLV,UAAU,0HACVW,QAAS,KACP5B,aAAa,MACb6B,WAAW,KACT1B,SAAS2B,aAAa,CAAC,IAAIC,YAAY,kBACvClC,WACF,EAAG,IACL,GAEA,oBAACf,MACCkD,KAAK,0BACLC,KAAK,UACLC,MAAOtC,cAOrB,CAEA,gBAAeR,MAAO"}
@@ -1,3 +1,3 @@
1
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="M2.75 4C2.75 3.30964 3.30964 2.75 4 2.75H15C15.4142 2.75 15.75 2.41421 15.75 2C15.75 1.58579 15.4142 1.25 15 1.25H4C2.48122 1.25 1.25 2.48122 1.25 4V20C1.25 21.5188 2.48122 22.75 4 22.75H20C21.5188 22.75 22.75 21.5188 22.75 20V9.47619C22.75 9.06198 22.4142 8.72619 22 8.72619C21.5858 8.72619 21.25 9.06198 21.25 9.47619V20C21.25 20.6904 20.6904 21.25 20 21.25H4C3.30964 21.25 2.75 20.6904 2.75 20V4ZM20.624 3.41603C20.8538 3.07138 20.7607 2.60573 20.416 2.37596C20.0714 2.1462 19.6057 2.23933 19.376 2.58397L11.9449 13.7306L8.58565 9.53148C8.32689 9.20803 7.85493 9.15559 7.53148 9.41435C7.20803 9.67311 7.15559 10.1451 7.41435 10.4685L11.4143 15.4685C11.5638 15.6554 11.7935 15.7597 12.0325 15.7493C12.2716 15.7389 12.4913 15.6151 12.624 15.416L20.624 3.41603Z" fill="#03020D"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.75 4C2.75 3.30964 3.30964 2.75 4 2.75H15C15.4142 2.75 15.75 2.41421 15.75 2C15.75 1.58579 15.4142 1.25 15 1.25H4C2.48122 1.25 1.25 2.48122 1.25 4V20C1.25 21.5188 2.48122 22.75 4 22.75H20C21.5188 22.75 22.75 21.5188 22.75 20V9.47619C22.75 9.06198 22.4142 8.72619 22 8.72619C21.5858 8.72619 21.25 9.06198 21.25 9.47619V20C21.25 20.6904 20.6904 21.25 20 21.25H4C3.30964 21.25 2.75 20.6904 2.75 20V4ZM20.624 3.41603C20.8538 3.07138 20.7607 2.60573 20.416 2.37596C20.0714 2.1462 19.6057 2.23933 19.376 2.58397L11.9449 13.7306L8.58565 9.53148C8.32689 9.20803 7.85493 9.15559 7.53148 9.41435C7.20803 9.67311 7.15559 10.1451 7.41435 10.4685L11.4143 15.4685C11.5638 15.6554 11.7935 15.7597 12.0325 15.7493C12.2716 15.7389 12.4913 15.6151 12.624 15.416L20.624 3.41603Z" fill="currentColor"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
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="M20 22.5H4C3.72386 22.5 3.5 22.2761 3.5 22V2C3.5 1.72386 3.72386 1.5 4 1.5H14.7574C15.1552 1.5 15.5367 1.65804 15.818 1.93934L20.0607 6.18198C20.342 6.46328 20.5 6.84482 20.5 7.24264V22C20.5 22.2761 20.2761 22.5 20 22.5ZM21.1213 5.12132L16.8787 0.87868C16.3161 0.316071 15.553 0 14.7574 0H4C2.89543 0 2 0.89543 2 2V22C2 23.1046 2.89543 24 4 24H20C21.1046 24 22 23.1046 22 22V7.24264C22 6.44699 21.6839 5.68393 21.1213 5.12132ZM9.48014 8.07619C9.79835 7.81101 9.84134 7.33809 9.57617 7.01988C9.31099 6.70167 8.83807 6.65868 8.51986 6.92385L5.51986 9.42385C5.34887 9.56635 5.25 9.77743 5.25 10C5.25 10.2226 5.34887 10.4337 5.51986 10.5762L8.51986 13.0762C8.83807 13.3414 9.31099 13.2984 9.57617 12.9802C9.84134 12.6619 9.79835 12.189 9.48014 11.9239L7.17154 10L9.48014 8.07619ZM13.7155 6.28158C14.1123 6.40061 14.3374 6.81872 14.2184 7.21546L11.2184 17.2155C11.0994 17.6122 10.6812 17.8373 10.2845 17.7183C9.88776 17.5993 9.66262 17.1812 9.78164 16.7844L12.7816 6.78444C12.9007 6.3877 13.3188 6.16256 13.7155 6.28158ZM14.5199 12.0762C14.2017 11.811 14.1587 11.3381 14.4238 11.0199C14.689 10.7017 15.1619 10.6587 15.4801 10.9239L18.4801 13.4239C18.6511 13.5663 18.75 13.7774 18.75 14C18.75 14.2226 18.6511 14.4337 18.4801 14.5762L15.4801 17.0762C15.1619 17.3414 14.689 17.2984 14.4238 16.9802C14.1587 16.6619 14.2017 16.189 14.5199 15.9239L16.8285 14L14.5199 12.0762Z" fill="#03020D"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M20 22.5H4C3.72386 22.5 3.5 22.2761 3.5 22V2C3.5 1.72386 3.72386 1.5 4 1.5H14.7574C15.1552 1.5 15.5367 1.65804 15.818 1.93934L20.0607 6.18198C20.342 6.46328 20.5 6.84482 20.5 7.24264V22C20.5 22.2761 20.2761 22.5 20 22.5ZM21.1213 5.12132L16.8787 0.87868C16.3161 0.316071 15.553 0 14.7574 0H4C2.89543 0 2 0.89543 2 2V22C2 23.1046 2.89543 24 4 24H20C21.1046 24 22 23.1046 22 22V7.24264C22 6.44699 21.6839 5.68393 21.1213 5.12132ZM9.48014 8.07619C9.79835 7.81101 9.84134 7.33809 9.57617 7.01988C9.31099 6.70167 8.83807 6.65868 8.51986 6.92385L5.51986 9.42385C5.34887 9.56635 5.25 9.77743 5.25 10C5.25 10.2226 5.34887 10.4337 5.51986 10.5762L8.51986 13.0762C8.83807 13.3414 9.31099 13.2984 9.57617 12.9802C9.84134 12.6619 9.79835 12.189 9.48014 11.9239L7.17154 10L9.48014 8.07619ZM13.7155 6.28158C14.1123 6.40061 14.3374 6.81872 14.2184 7.21546L11.2184 17.2155C11.0994 17.6122 10.6812 17.8373 10.2845 17.7183C9.88776 17.5993 9.66262 17.1812 9.78164 16.7844L12.7816 6.78444C12.9007 6.3877 13.3188 6.16256 13.7155 6.28158ZM14.5199 12.0762C14.2017 11.811 14.1587 11.3381 14.4238 11.0199C14.689 10.7017 15.1619 10.6587 15.4801 10.9239L18.4801 13.4239C18.6511 13.5663 18.75 13.7774 18.75 14C18.75 14.2226 18.6511 14.4337 18.4801 14.5762L15.4801 17.0762C15.1619 17.3414 14.689 17.2984 14.4238 16.9802C14.1587 16.6619 14.2017 16.189 14.5199 15.9239L16.8285 14L14.5199 12.0762Z" fill="currentColor"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M3.13514 2.05579L21.45 9.0167C22.1532 9.28395 22.1915 10.2931 21.5107 10.616L14.3709 14.0027C14.1629 14.1014 14.0029 14.2832 13.9279 14.506L11.6035 21.4172C11.3542 22.1584 10.3529 22.2041 10.0409 21.4885L2.07622 3.22313C1.77086 2.52285 2.43569 1.78995 3.13514 2.05579Z" stroke="#03020D" stroke-width="1.5" stroke-linejoin="round"/>
2
+ <path d="M3.13514 2.05579L21.45 9.0167C22.1532 9.28395 22.1915 10.2931 21.5107 10.616L14.3709 14.0027C14.1629 14.1014 14.0029 14.2832 13.9279 14.506L11.6035 21.4172C11.3542 22.1584 10.3529 22.2041 10.0409 21.4885L2.07622 3.22313C1.77086 2.52285 2.43569 1.78995 3.13514 2.05579Z" stroke="currentColor" stroke-width="1.5" stroke-linejoin="round"/>
3
3
  </svg>
@@ -1,4 +1,4 @@
1
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="M16.1174 16.434C15.8214 16.7628 15.8481 17.2694 16.1769 17.5653C16.5058 17.8613 17.0123 17.8346 17.3082 17.5058L21.7821 12.5348C21.9172 12.3914 22 12.1982 22 11.9856C22 11.7782 21.9212 11.5892 21.7919 11.4469L17.3082 6.46514C17.0123 6.13629 16.5058 6.10963 16.1769 6.4056C15.8481 6.70156 15.8214 7.20807 16.1174 7.53691L19.4002 11.1845L6.24565 11.1845C5.80323 11.1845 5.44458 11.5432 5.44458 11.9856C5.44458 12.428 5.80323 12.7867 6.24565 12.7867L19.4 12.7867L16.1174 16.434Z" fill="#03020D"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M16.1174 16.434C15.8214 16.7628 15.8481 17.2694 16.1769 17.5653C16.5058 17.8613 17.0123 17.8346 17.3082 17.5058L21.7821 12.5348C21.9172 12.3914 22 12.1982 22 11.9856C22 11.7782 21.9212 11.5892 21.7919 11.4469L17.3082 6.46514C17.0123 6.13629 16.5058 6.10963 16.1769 6.4056C15.8481 6.70156 15.8214 7.20807 16.1174 7.53691L19.4002 11.1845L6.24565 11.1845C5.80323 11.1845 5.44458 11.5432 5.44458 11.9856C5.44458 12.428 5.80323 12.7867 6.24565 12.7867L19.4 12.7867L16.1174 16.434Z" fill="currentColor"/>
3
3
  <path d="M2 18.6998L2 5.22314" stroke="black" stroke-width="1.5" stroke-linecap="round"/>
4
4
  </svg>
@@ -1,5 +1,5 @@
1
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="M22.3939 2.24805H1.68177H22.3939ZM1.68177 2.24805L1.68055 2.24805L1.68177 2.24805ZM22.3939 2.24805C22.6537 2.24792 22.904 2.32367 23.1188 2.46046C23.3329 2.59689 23.5018 2.78725 23.6159 3.00505C23.7297 3.22241 23.7879 3.46429 23.7888 3.70656C23.7898 3.94884 23.7337 4.1907 23.6217 4.40889L23.618 4.41617L21.547 8.34759C21.4173 8.59388 21.1618 8.74805 20.8834 8.74805H3.19527C2.9169 8.74805 2.66144 8.59388 2.5317 8.34759L0.458356 4.41162C0.345453 4.19369 0.288521 3.95179 0.28885 3.70936C0.289179 3.46693 0.346784 3.22517 0.460324 3.00753C0.573994 2.78964 0.742361 2.59905 0.95604 2.46221C1.17052 2.32486 1.4206 2.24847 1.68055 2.24805M22.2745 3.74805H1.8042L3.64789 7.24805H20.4308L22.2745 3.74805ZM22.395 3.74805C22.3947 3.74805 22.3953 3.74805 22.395 3.74805V3.74805Z" fill="#03020D"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M3.56487 10.248H20.5111C20.511 10.248 20.5112 10.248 20.5111 10.248C20.7467 10.2479 20.9747 10.3151 21.1711 10.4374C21.3671 10.5595 21.5228 10.7307 21.6285 10.9279C21.7338 11.1246 21.788 11.3441 21.7888 11.5642C21.7897 11.7844 21.7375 12.0038 21.6339 12.2013L21.6301 12.2086L19.9356 15.3538C19.8048 15.5966 19.5512 15.748 19.2753 15.748H4.80319C4.52734 15.748 4.27375 15.5966 4.14292 15.3538L2.44603 12.204C2.34149 12.0067 2.28854 11.7872 2.28885 11.5669C2.28916 11.3465 2.34273 11.1271 2.44786 10.9301C2.55312 10.7328 2.70839 10.5615 2.90399 10.439C3.10017 10.3161 3.32785 10.2484 3.56368 10.248L3.56487 10.248ZM20.1743 11.748L18.8275 14.248H5.25105L3.9042 11.748H20.1743ZM20.5122 11.748C20.5119 11.748 20.5125 11.748 20.5122 11.748V11.748Z" fill="#03020D"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M5.44683 17.248L5.44798 17.248L18.6283 17.248C18.6282 17.248 18.6284 17.248 18.6283 17.248C18.8378 17.248 19.0419 17.3055 19.2194 17.4121C19.3969 17.5187 19.5404 17.6697 19.6389 17.8468C19.7369 18.0234 19.788 18.2218 19.7888 18.4218C19.7897 18.6218 19.7404 18.8202 19.6439 18.9976L19.6399 19.005L18.322 21.3638C18.1894 21.6011 17.939 21.748 17.6672 21.748H6.41112C6.13938 21.748 5.88891 21.6011 5.75637 21.3638L4.43591 19.0004C4.33852 18.8231 4.28856 18.6246 4.28885 18.4244C4.28914 18.2241 4.33968 18.0258 4.4376 17.8488C4.53563 17.6716 4.67876 17.5204 4.85587 17.4135C5.03327 17.3063 5.23716 17.2484 5.44683 17.248ZM18.0652 18.748H6.01317L6.85121 20.248H17.2271L18.0652 18.748Z" fill="#03020D"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M22.3939 2.24805H1.68177H22.3939ZM1.68177 2.24805L1.68055 2.24805L1.68177 2.24805ZM22.3939 2.24805C22.6537 2.24792 22.904 2.32367 23.1188 2.46046C23.3329 2.59689 23.5018 2.78725 23.6159 3.00505C23.7297 3.22241 23.7879 3.46429 23.7888 3.70656C23.7898 3.94884 23.7337 4.1907 23.6217 4.40889L23.618 4.41617L21.547 8.34759C21.4173 8.59388 21.1618 8.74805 20.8834 8.74805H3.19527C2.9169 8.74805 2.66144 8.59388 2.5317 8.34759L0.458356 4.41162C0.345453 4.19369 0.288521 3.95179 0.28885 3.70936C0.289179 3.46693 0.346784 3.22517 0.460324 3.00753C0.573994 2.78964 0.742361 2.59905 0.95604 2.46221C1.17052 2.32486 1.4206 2.24847 1.68055 2.24805M22.2745 3.74805H1.8042L3.64789 7.24805H20.4308L22.2745 3.74805ZM22.395 3.74805C22.3947 3.74805 22.3953 3.74805 22.395 3.74805V3.74805Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.56487 10.248H20.5111C20.511 10.248 20.5112 10.248 20.5111 10.248C20.7467 10.2479 20.9747 10.3151 21.1711 10.4374C21.3671 10.5595 21.5228 10.7307 21.6285 10.9279C21.7338 11.1246 21.788 11.3441 21.7888 11.5642C21.7897 11.7844 21.7375 12.0038 21.6339 12.2013L21.6301 12.2086L19.9356 15.3538C19.8048 15.5966 19.5512 15.748 19.2753 15.748H4.80319C4.52734 15.748 4.27375 15.5966 4.14292 15.3538L2.44603 12.204C2.34149 12.0067 2.28854 11.7872 2.28885 11.5669C2.28916 11.3465 2.34273 11.1271 2.44786 10.9301C2.55312 10.7328 2.70839 10.5615 2.90399 10.439C3.10017 10.3161 3.32785 10.2484 3.56368 10.248L3.56487 10.248ZM20.1743 11.748L18.8275 14.248H5.25105L3.9042 11.748H20.1743ZM20.5122 11.748C20.5119 11.748 20.5125 11.748 20.5122 11.748V11.748Z" fill="currentColor"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.44683 17.248L5.44798 17.248L18.6283 17.248C18.6282 17.248 18.6284 17.248 18.6283 17.248C18.8378 17.248 19.0419 17.3055 19.2194 17.4121C19.3969 17.5187 19.5404 17.6697 19.6389 17.8468C19.7369 18.0234 19.788 18.2218 19.7888 18.4218C19.7897 18.6218 19.7404 18.8202 19.6439 18.9976L19.6399 19.005L18.322 21.3638C18.1894 21.6011 17.939 21.748 17.6672 21.748H6.41112C6.13938 21.748 5.88891 21.6011 5.75637 21.3638L4.43591 19.0004C4.33852 18.8231 4.28856 18.6246 4.28885 18.4244C4.28914 18.2241 4.33968 18.0258 4.4376 17.8488C4.53563 17.6716 4.67876 17.5204 4.85587 17.4135C5.03327 17.3063 5.23716 17.2484 5.44683 17.248ZM18.0652 18.748H6.01317L6.85121 20.248H17.2271L18.0652 18.748Z" fill="currentColor"/>
5
5
  </svg>
@@ -1,3 +1,3 @@
1
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.0359 2.1066C17.3709 1.86298 17.445 1.39391 17.2013 1.05892C16.9577 0.723935 16.4886 0.649872 16.1537 0.893501C13.6789 2.6933 12.3979 5.3426 11.754 7.88226C11.2082 10.035 11.1072 12.1566 11.1432 13.7273H6.73206H5.91212H4.65568C4.24146 13.7273 3.90568 14.0631 3.90568 14.4773C3.90568 14.8916 4.24146 15.2273 4.65568 15.2273H6.04604L6.465 19.9196C6.59515 21.3774 7.81662 22.4947 9.28017 22.4947H14.5658C16.0294 22.4947 17.2508 21.3774 17.381 19.9196L17.7999 15.2273H19.1903C19.6045 15.2273 19.9403 14.8916 19.9403 14.4773C19.9403 14.0631 19.6045 13.7273 19.1903 13.7273H17.9339H17.1139H12.6436C12.6075 12.2443 12.701 10.2507 13.208 8.25091C13.8012 5.91109 14.9426 3.62901 17.0359 2.1066ZM11.9129 15.2273H11.9318H16.294L15.8869 19.7862C15.8259 20.4703 15.2526 20.9947 14.5658 20.9947H9.28017C8.59335 20.9947 8.02013 20.4703 7.95905 19.7862L7.55201 15.2273H11.9129ZM10.4336 8.82808L10.0434 8.18755L10.784 8.06874C10.8322 8.36952 10.6938 8.66961 10.4336 8.82808ZM1.54297 4.26526C1.33985 3.54329 1.33999 3.54325 1.34015 3.54321L1.34053 3.5431L1.34157 3.54281L1.34473 3.54193L1.35534 3.53899L1.39319 3.5287C1.42564 3.51997 1.47231 3.50763 1.53175 3.49245C1.65057 3.46211 1.82074 3.42036 2.03057 3.37348C2.44924 3.27993 3.03066 3.16488 3.68005 3.07978C4.32721 2.99497 5.05673 2.93789 5.76785 2.96607C6.47061 2.99392 7.20624 3.10662 7.83527 3.39686C9.1036 3.9821 9.82908 5.23084 10.2292 6.1928C10.4363 6.6906 10.5736 7.15363 10.6593 7.49166C10.7023 7.66139 10.7328 7.80146 10.7528 7.90095C10.7628 7.95075 10.7703 7.99051 10.7754 8.0189L10.7813 8.05281L10.7831 8.06309L10.7836 8.0665L10.7838 8.06777L10.7839 8.06829C10.7839 8.06852 10.784 8.06874 10.0434 8.18755C10.4336 8.82808 10.4334 8.8282 10.4332 8.82832L10.4328 8.82859L10.4317 8.82926L10.4287 8.83105L10.4198 8.8364L10.3901 8.85389C10.3652 8.86843 10.3301 8.88858 10.2857 8.91326C10.197 8.96257 10.0707 9.03027 9.9136 9.10768C9.6008 9.26183 9.15942 9.45786 8.6463 9.62335C7.65473 9.94315 6.23384 10.2015 4.96551 9.61628C4.33648 9.32604 3.77336 8.83946 3.29613 8.32284C2.81322 7.80008 2.38325 7.20798 2.02781 6.66055C1.67115 6.11124 1.38139 5.59421 1.18087 5.21496C1.08038 5.02489 1.00172 4.86832 0.947696 4.75823C0.920673 4.70316 0.899778 4.65964 0.885361 4.62928L0.868627 4.5938L0.863978 4.58383L0.862597 4.58085L0.862144 4.57987L0.861977 4.57951C0.86191 4.57937 0.86185 4.57923 1.54297 4.26526ZM1.54297 4.26526L1.33985 3.54329C1.12857 3.60273 0.953927 3.75174 0.861969 3.95104C0.770011 4.15033 0.769967 4.37991 0.86185 4.57923L1.54297 4.26526ZM2.64785 4.77507C2.81878 5.08581 3.03489 5.45713 3.28589 5.84371C3.61314 6.34773 3.9916 6.86512 4.39796 7.30502C4.81 7.75106 5.21698 8.08033 5.59396 8.25428C6.33763 8.59742 7.2986 8.48192 8.18588 8.19576C8.57968 8.06875 8.9274 7.9183 9.18783 7.79275C9.11435 7.51313 9.00318 7.15094 8.84426 6.7689C8.48621 5.90811 7.95048 5.10201 7.20681 4.75886C6.82983 4.58492 6.31521 4.48894 5.70845 4.4649C5.11005 4.44118 4.4708 4.48898 3.87496 4.56706C3.41795 4.62695 2.99519 4.70348 2.64785 4.77507ZM9.65423 7.54645C9.65438 7.54636 9.65436 7.54637 9.65419 7.54648L9.65423 7.54645ZM15.9067 6.75421L15.4112 6.19118C15.1825 6.39243 15.0982 6.71201 15.198 6.99983L15.9067 6.75421ZM22.9682 8.61561C23.5844 8.18811 23.5843 8.18799 23.5842 8.18786L23.584 8.18756L23.5835 8.18678L23.5819 8.18449L23.5767 8.17708L23.5585 8.15129C23.5429 8.12939 23.5205 8.09822 23.4919 8.05898C23.4346 7.98054 23.352 7.86958 23.2479 7.73573C23.0403 7.46881 22.7444 7.10692 22.3918 6.72874C22.0407 6.35219 21.6232 5.9485 21.1715 5.60482C20.7265 5.26622 20.2081 4.95467 19.656 4.80915C18.5409 4.51522 17.4373 4.93046 16.7083 5.31611C16.3277 5.51745 16.0083 5.73253 15.7842 5.89672C15.6716 5.97926 15.5816 6.05007 15.5182 6.10149C15.4865 6.12722 15.4614 6.14819 15.4434 6.16343L15.4218 6.18192L15.4151 6.18775L15.4128 6.18977L15.4119 6.19055L15.4115 6.19088C15.4113 6.19103 15.4112 6.19118 15.9067 6.75421C15.198 6.99983 15.1981 7.00004 15.1982 7.00026L15.1983 7.00073L15.1987 7.00185L15.1997 7.00475L15.2027 7.01313L15.2124 7.03988C15.2205 7.06201 15.2321 7.09263 15.2469 7.13065C15.2767 7.20659 15.3201 7.3126 15.3774 7.43992C15.4914 7.69322 15.6633 8.03779 15.8952 8.40059C16.3394 9.09551 17.0949 10.0008 18.21 10.2948C18.7621 10.4403 19.3667 10.4248 19.9208 10.3495C20.4832 10.2732 21.0455 10.1277 21.5366 9.9732C22.0298 9.81798 22.4656 9.64896 22.7778 9.51904C22.9343 9.45388 23.0609 9.39808 23.1494 9.35807C23.1937 9.33805 23.2285 9.32195 23.2529 9.31057L23.2814 9.29712L23.2896 9.29323L23.2921 9.29203L23.293 9.29161L23.2933 9.29145C23.2935 9.29139 23.2936 9.29133 22.9682 8.61561ZM22.9682 8.61561L23.5844 8.18811C23.7095 8.36844 23.7493 8.59454 23.6934 8.80678C23.6374 9.01901 23.4913 9.19609 23.2936 9.29133L22.9682 8.61561ZM21.2947 7.75168C21.4733 7.94321 21.6365 8.13111 21.7787 8.30206C21.5707 8.38072 21.3361 8.46376 21.0863 8.54237C20.6446 8.68138 20.1696 8.80198 19.719 8.86316C19.2601 8.92548 18.876 8.91907 18.5924 8.8443C18.036 8.69765 17.5443 8.1953 17.1591 7.5927C17.0234 7.38046 16.9122 7.17335 16.826 6.99655C16.9881 6.8852 17.187 6.75982 17.4097 6.64203C18.0418 6.30762 18.7173 6.11295 19.2737 6.2596C19.5573 6.33437 19.8947 6.51813 20.2632 6.79855C20.6251 7.07392 20.9789 7.41299 21.2947 7.75168Z" fill="#03020D"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M17.0359 2.1066C17.3709 1.86298 17.445 1.39391 17.2013 1.05892C16.9577 0.723935 16.4886 0.649872 16.1537 0.893501C13.6789 2.6933 12.3979 5.3426 11.754 7.88226C11.2082 10.035 11.1072 12.1566 11.1432 13.7273H6.73206H5.91212H4.65568C4.24146 13.7273 3.90568 14.0631 3.90568 14.4773C3.90568 14.8916 4.24146 15.2273 4.65568 15.2273H6.04604L6.465 19.9196C6.59515 21.3774 7.81662 22.4947 9.28017 22.4947H14.5658C16.0294 22.4947 17.2508 21.3774 17.381 19.9196L17.7999 15.2273H19.1903C19.6045 15.2273 19.9403 14.8916 19.9403 14.4773C19.9403 14.0631 19.6045 13.7273 19.1903 13.7273H17.9339H17.1139H12.6436C12.6075 12.2443 12.701 10.2507 13.208 8.25091C13.8012 5.91109 14.9426 3.62901 17.0359 2.1066ZM11.9129 15.2273H11.9318H16.294L15.8869 19.7862C15.8259 20.4703 15.2526 20.9947 14.5658 20.9947H9.28017C8.59335 20.9947 8.02013 20.4703 7.95905 19.7862L7.55201 15.2273H11.9129ZM10.4336 8.82808L10.0434 8.18755L10.784 8.06874C10.8322 8.36952 10.6938 8.66961 10.4336 8.82808ZM1.54297 4.26526C1.33985 3.54329 1.33999 3.54325 1.34015 3.54321L1.34053 3.5431L1.34157 3.54281L1.34473 3.54193L1.35534 3.53899L1.39319 3.5287C1.42564 3.51997 1.47231 3.50763 1.53175 3.49245C1.65057 3.46211 1.82074 3.42036 2.03057 3.37348C2.44924 3.27993 3.03066 3.16488 3.68005 3.07978C4.32721 2.99497 5.05673 2.93789 5.76785 2.96607C6.47061 2.99392 7.20624 3.10662 7.83527 3.39686C9.1036 3.9821 9.82908 5.23084 10.2292 6.1928C10.4363 6.6906 10.5736 7.15363 10.6593 7.49166C10.7023 7.66139 10.7328 7.80146 10.7528 7.90095C10.7628 7.95075 10.7703 7.99051 10.7754 8.0189L10.7813 8.05281L10.7831 8.06309L10.7836 8.0665L10.7838 8.06777L10.7839 8.06829C10.7839 8.06852 10.784 8.06874 10.0434 8.18755C10.4336 8.82808 10.4334 8.8282 10.4332 8.82832L10.4328 8.82859L10.4317 8.82926L10.4287 8.83105L10.4198 8.8364L10.3901 8.85389C10.3652 8.86843 10.3301 8.88858 10.2857 8.91326C10.197 8.96257 10.0707 9.03027 9.9136 9.10768C9.6008 9.26183 9.15942 9.45786 8.6463 9.62335C7.65473 9.94315 6.23384 10.2015 4.96551 9.61628C4.33648 9.32604 3.77336 8.83946 3.29613 8.32284C2.81322 7.80008 2.38325 7.20798 2.02781 6.66055C1.67115 6.11124 1.38139 5.59421 1.18087 5.21496C1.08038 5.02489 1.00172 4.86832 0.947696 4.75823C0.920673 4.70316 0.899778 4.65964 0.885361 4.62928L0.868627 4.5938L0.863978 4.58383L0.862597 4.58085L0.862144 4.57987L0.861977 4.57951C0.86191 4.57937 0.86185 4.57923 1.54297 4.26526ZM1.54297 4.26526L1.33985 3.54329C1.12857 3.60273 0.953927 3.75174 0.861969 3.95104C0.770011 4.15033 0.769967 4.37991 0.86185 4.57923L1.54297 4.26526ZM2.64785 4.77507C2.81878 5.08581 3.03489 5.45713 3.28589 5.84371C3.61314 6.34773 3.9916 6.86512 4.39796 7.30502C4.81 7.75106 5.21698 8.08033 5.59396 8.25428C6.33763 8.59742 7.2986 8.48192 8.18588 8.19576C8.57968 8.06875 8.9274 7.9183 9.18783 7.79275C9.11435 7.51313 9.00318 7.15094 8.84426 6.7689C8.48621 5.90811 7.95048 5.10201 7.20681 4.75886C6.82983 4.58492 6.31521 4.48894 5.70845 4.4649C5.11005 4.44118 4.4708 4.48898 3.87496 4.56706C3.41795 4.62695 2.99519 4.70348 2.64785 4.77507ZM9.65423 7.54645C9.65438 7.54636 9.65436 7.54637 9.65419 7.54648L9.65423 7.54645ZM15.9067 6.75421L15.4112 6.19118C15.1825 6.39243 15.0982 6.71201 15.198 6.99983L15.9067 6.75421ZM22.9682 8.61561C23.5844 8.18811 23.5843 8.18799 23.5842 8.18786L23.584 8.18756L23.5835 8.18678L23.5819 8.18449L23.5767 8.17708L23.5585 8.15129C23.5429 8.12939 23.5205 8.09822 23.4919 8.05898C23.4346 7.98054 23.352 7.86958 23.2479 7.73573C23.0403 7.46881 22.7444 7.10692 22.3918 6.72874C22.0407 6.35219 21.6232 5.9485 21.1715 5.60482C20.7265 5.26622 20.2081 4.95467 19.656 4.80915C18.5409 4.51522 17.4373 4.93046 16.7083 5.31611C16.3277 5.51745 16.0083 5.73253 15.7842 5.89672C15.6716 5.97926 15.5816 6.05007 15.5182 6.10149C15.4865 6.12722 15.4614 6.14819 15.4434 6.16343L15.4218 6.18192L15.4151 6.18775L15.4128 6.18977L15.4119 6.19055L15.4115 6.19088C15.4113 6.19103 15.4112 6.19118 15.9067 6.75421C15.198 6.99983 15.1981 7.00004 15.1982 7.00026L15.1983 7.00073L15.1987 7.00185L15.1997 7.00475L15.2027 7.01313L15.2124 7.03988C15.2205 7.06201 15.2321 7.09263 15.2469 7.13065C15.2767 7.20659 15.3201 7.3126 15.3774 7.43992C15.4914 7.69322 15.6633 8.03779 15.8952 8.40059C16.3394 9.09551 17.0949 10.0008 18.21 10.2948C18.7621 10.4403 19.3667 10.4248 19.9208 10.3495C20.4832 10.2732 21.0455 10.1277 21.5366 9.9732C22.0298 9.81798 22.4656 9.64896 22.7778 9.51904C22.9343 9.45388 23.0609 9.39808 23.1494 9.35807C23.1937 9.33805 23.2285 9.32195 23.2529 9.31057L23.2814 9.29712L23.2896 9.29323L23.2921 9.29203L23.293 9.29161L23.2933 9.29145C23.2935 9.29139 23.2936 9.29133 22.9682 8.61561ZM22.9682 8.61561L23.5844 8.18811C23.7095 8.36844 23.7493 8.59454 23.6934 8.80678C23.6374 9.01901 23.4913 9.19609 23.2936 9.29133L22.9682 8.61561ZM21.2947 7.75168C21.4733 7.94321 21.6365 8.13111 21.7787 8.30206C21.5707 8.38072 21.3361 8.46376 21.0863 8.54237C20.6446 8.68138 20.1696 8.80198 19.719 8.86316C19.2601 8.92548 18.876 8.91907 18.5924 8.8443C18.036 8.69765 17.5443 8.1953 17.1591 7.5927C17.0234 7.38046 16.9122 7.17335 16.826 6.99655C16.9881 6.8852 17.187 6.75982 17.4097 6.64203C18.0418 6.30762 18.7173 6.11295 19.2737 6.2596C19.5573 6.33437 19.8947 6.51813 20.2632 6.79855C20.6251 7.07392 20.9789 7.41299 21.2947 7.75168Z" fill="currentColor"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
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="M2.35001 5.5C2.35001 4.5335 3.13351 3.75 4.10001 3.75C5.0665 3.75 5.85001 4.5335 5.85001 5.5V7C5.85001 7.41421 6.18579 7.75 6.60001 7.75C7.01422 7.75 7.35001 7.41421 7.35001 7V5.5C7.35001 3.70507 5.89493 2.25 4.10001 2.25C2.30508 2.25 0.850006 3.70508 0.850006 5.5V18C0.850006 18.4142 1.18579 18.75 1.60001 18.75C1.87785 18.75 2.1204 18.5989 2.25 18.3744V19C2.25 20.5188 3.48122 21.75 5 21.75H8C9.51878 21.75 10.75 20.5188 10.75 19V18.75H13.25V19C13.25 20.5188 14.4812 21.75 16 21.75H19C20.5188 21.75 21.75 20.5188 21.75 19V18.3745C21.8796 18.599 22.1221 18.75 22.3999 18.75C22.8141 18.75 23.1499 18.4142 23.1499 18V5.5C23.1499 3.70508 21.6949 2.25 19.8999 2.25C18.105 2.25 16.6499 3.70507 16.6499 5.5V7C16.6499 7.41421 16.9857 7.75 17.3999 7.75C17.8141 7.75 18.1499 7.41421 18.1499 7V5.5C18.1499 4.5335 18.9334 3.75 19.8999 3.75C20.8664 3.75 21.6499 4.5335 21.6499 5.5V16.2623C21.3276 15.1018 20.2632 14.25 19 14.25H16C14.4812 14.25 13.25 15.4812 13.25 17V17.25H10.75V17C10.75 15.4812 9.51878 14.25 8 14.25H5C3.73667 14.25 2.67231 15.1019 2.35001 16.2625V5.5ZM3.75 17C3.75 16.3096 4.30964 15.75 5 15.75H8C8.69036 15.75 9.25 16.3096 9.25 17V19C9.25 19.6904 8.69036 20.25 8 20.25H5C4.30964 20.25 3.75 19.6904 3.75 19V17ZM16 15.75C15.3096 15.75 14.75 16.3096 14.75 17V19C14.75 19.6904 15.3096 20.25 16 20.25H19C19.6904 20.25 20.25 19.6904 20.25 19V17C20.25 16.3096 19.6904 15.75 19 15.75H16Z" fill="#03020D"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.35001 5.5C2.35001 4.5335 3.13351 3.75 4.10001 3.75C5.0665 3.75 5.85001 4.5335 5.85001 5.5V7C5.85001 7.41421 6.18579 7.75 6.60001 7.75C7.01422 7.75 7.35001 7.41421 7.35001 7V5.5C7.35001 3.70507 5.89493 2.25 4.10001 2.25C2.30508 2.25 0.850006 3.70508 0.850006 5.5V18C0.850006 18.4142 1.18579 18.75 1.60001 18.75C1.87785 18.75 2.1204 18.5989 2.25 18.3744V19C2.25 20.5188 3.48122 21.75 5 21.75H8C9.51878 21.75 10.75 20.5188 10.75 19V18.75H13.25V19C13.25 20.5188 14.4812 21.75 16 21.75H19C20.5188 21.75 21.75 20.5188 21.75 19V18.3745C21.8796 18.599 22.1221 18.75 22.3999 18.75C22.8141 18.75 23.1499 18.4142 23.1499 18V5.5C23.1499 3.70508 21.6949 2.25 19.8999 2.25C18.105 2.25 16.6499 3.70507 16.6499 5.5V7C16.6499 7.41421 16.9857 7.75 17.3999 7.75C17.8141 7.75 18.1499 7.41421 18.1499 7V5.5C18.1499 4.5335 18.9334 3.75 19.8999 3.75C20.8664 3.75 21.6499 4.5335 21.6499 5.5V16.2623C21.3276 15.1018 20.2632 14.25 19 14.25H16C14.4812 14.25 13.25 15.4812 13.25 17V17.25H10.75V17C10.75 15.4812 9.51878 14.25 8 14.25H5C3.73667 14.25 2.67231 15.1019 2.35001 16.2625V5.5ZM3.75 17C3.75 16.3096 4.30964 15.75 5 15.75H8C8.69036 15.75 9.25 16.3096 9.25 17V19C9.25 19.6904 8.69036 20.25 8 20.25H5C4.30964 20.25 3.75 19.6904 3.75 19V17ZM16 15.75C15.3096 15.75 14.75 16.3096 14.75 17V19C14.75 19.6904 15.3096 20.25 16 20.25H19C19.6904 20.25 20.25 19.6904 20.25 19V17C20.25 16.3096 19.6904 15.75 19 15.75H16Z" fill="currentColor"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
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="M12 0.25C7.71979 0.25 4.25 3.71979 4.25 8V16C4.25 20.2802 7.71979 23.75 12 23.75C16.2802 23.75 19.75 20.2802 19.75 16V8C19.75 3.71979 16.2802 0.25 12 0.25ZM5.75 8C5.75 4.54822 8.54822 1.75 12 1.75C15.4518 1.75 18.25 4.54822 18.25 8V16C18.25 19.4518 15.4518 22.25 12 22.25C8.54822 22.25 5.75 19.4518 5.75 16V8ZM12 8C12.8284 8 13.5 7.32843 13.5 6.5C13.5 5.67157 12.8284 5 12 5C11.1716 5 10.5 5.67157 10.5 6.5C10.5 7.32843 11.1716 8 12 8Z" fill="#03020D"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12 0.25C7.71979 0.25 4.25 3.71979 4.25 8V16C4.25 20.2802 7.71979 23.75 12 23.75C16.2802 23.75 19.75 20.2802 19.75 16V8C19.75 3.71979 16.2802 0.25 12 0.25ZM5.75 8C5.75 4.54822 8.54822 1.75 12 1.75C15.4518 1.75 18.25 4.54822 18.25 8V16C18.25 19.4518 15.4518 22.25 12 22.25C8.54822 22.25 5.75 19.4518 5.75 16V8ZM12 8C12.8284 8 13.5 7.32843 13.5 6.5C13.5 5.67157 12.8284 5 12 5C11.1716 5 10.5 5.67157 10.5 6.5C10.5 7.32843 11.1716 8 12 8Z" fill="currentColor"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
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="M0.550049 4.28362C0.550049 2.39152 2.0839 0.857666 3.97601 0.857666H17.3558C19.2479 0.857666 20.7818 2.39152 20.7818 4.28362V10.3882C20.7818 10.8024 20.446 11.1382 20.0318 11.1382C19.6175 11.1382 19.2818 10.8024 19.2818 10.3882V6.60156H2.05005V17.6634C2.05005 18.7271 2.91233 19.5894 3.97601 19.5894H8.32444C8.73865 19.5894 9.07444 19.9252 9.07444 20.3394C9.07444 20.7536 8.73865 21.0894 8.32444 21.0894H3.97601C2.0839 21.0894 0.550049 19.5555 0.550049 17.6634V4.28362ZM2.05005 5.10156H19.2818V4.28362C19.2818 3.21995 18.4195 2.35767 17.3558 2.35767H3.97601C2.91233 2.35767 2.05005 3.21995 2.05005 4.28362V5.10156ZM14.9683 11.3192C15.7423 9.97863 17.6772 9.97864 18.4511 11.3192L23.1956 19.5368C23.9695 20.8773 23.0021 22.553 21.4542 22.553H11.9653C10.4174 22.553 9.44992 20.8773 10.2239 19.5368L14.9683 11.3192ZM17.1521 12.0692C16.9555 11.7286 16.464 11.7286 16.2674 12.0692L11.5229 20.2868C11.3263 20.6273 11.5721 21.053 11.9653 21.053H21.4542C21.8474 21.053 22.0931 20.6273 21.8965 20.2868L17.1521 12.0692ZM16 17.6504C16 18.0646 16.3358 18.4004 16.75 18.4004C17.1642 18.4004 17.5 18.0646 17.5 17.6504V14.1504C17.5 13.7362 17.1642 13.4004 16.75 13.4004C16.3358 13.4004 16 13.7362 16 14.1504V17.6504ZM17.4683 19.6013C17.4683 20.0155 17.1325 20.3513 16.7183 20.3513C16.304 20.3513 15.9683 20.0155 15.9683 19.6013C15.9683 19.1871 16.304 18.8513 16.7183 18.8513C17.1325 18.8513 17.4683 19.1871 17.4683 19.6013ZM5.40002 3.75C5.40002 4.16421 5.06424 4.5 4.65002 4.5C4.23581 4.5 3.90002 4.16421 3.90002 3.75C3.90002 3.33579 4.23581 3 4.65002 3C5.06424 3 5.40002 3.33579 5.40002 3.75ZM7.15002 4.5C7.56424 4.5 7.90002 4.16421 7.90002 3.75C7.90002 3.33579 7.56424 3 7.15002 3C6.73581 3 6.40002 3.33579 6.40002 3.75C6.40002 4.16421 6.73581 4.5 7.15002 4.5Z" fill="#03020D"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M0.550049 4.28362C0.550049 2.39152 2.0839 0.857666 3.97601 0.857666H17.3558C19.2479 0.857666 20.7818 2.39152 20.7818 4.28362V10.3882C20.7818 10.8024 20.446 11.1382 20.0318 11.1382C19.6175 11.1382 19.2818 10.8024 19.2818 10.3882V6.60156H2.05005V17.6634C2.05005 18.7271 2.91233 19.5894 3.97601 19.5894H8.32444C8.73865 19.5894 9.07444 19.9252 9.07444 20.3394C9.07444 20.7536 8.73865 21.0894 8.32444 21.0894H3.97601C2.0839 21.0894 0.550049 19.5555 0.550049 17.6634V4.28362ZM2.05005 5.10156H19.2818V4.28362C19.2818 3.21995 18.4195 2.35767 17.3558 2.35767H3.97601C2.91233 2.35767 2.05005 3.21995 2.05005 4.28362V5.10156ZM14.9683 11.3192C15.7423 9.97863 17.6772 9.97864 18.4511 11.3192L23.1956 19.5368C23.9695 20.8773 23.0021 22.553 21.4542 22.553H11.9653C10.4174 22.553 9.44992 20.8773 10.2239 19.5368L14.9683 11.3192ZM17.1521 12.0692C16.9555 11.7286 16.464 11.7286 16.2674 12.0692L11.5229 20.2868C11.3263 20.6273 11.5721 21.053 11.9653 21.053H21.4542C21.8474 21.053 22.0931 20.6273 21.8965 20.2868L17.1521 12.0692ZM16 17.6504C16 18.0646 16.3358 18.4004 16.75 18.4004C17.1642 18.4004 17.5 18.0646 17.5 17.6504V14.1504C17.5 13.7362 17.1642 13.4004 16.75 13.4004C16.3358 13.4004 16 13.7362 16 14.1504V17.6504ZM17.4683 19.6013C17.4683 20.0155 17.1325 20.3513 16.7183 20.3513C16.304 20.3513 15.9683 20.0155 15.9683 19.6013C15.9683 19.1871 16.304 18.8513 16.7183 18.8513C17.1325 18.8513 17.4683 19.1871 17.4683 19.6013ZM5.40002 3.75C5.40002 4.16421 5.06424 4.5 4.65002 4.5C4.23581 4.5 3.90002 4.16421 3.90002 3.75C3.90002 3.33579 4.23581 3 4.65002 3C5.06424 3 5.40002 3.33579 5.40002 3.75ZM7.15002 4.5C7.56424 4.5 7.90002 4.16421 7.90002 3.75C7.90002 3.33579 7.56424 3 7.15002 3C6.73581 3 6.40002 3.33579 6.40002 3.75C6.40002 4.16421 6.73581 4.5 7.15002 4.5Z" fill="currentColor"/>
3
3
  </svg>
@@ -1,4 +1,4 @@
1
1
  <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M22.4668 21.1668C22.4668 21.7191 22.0191 22.1668 21.4668 22.1668H14.999C14.4467 22.1668 13.999 21.7191 13.999 21.1668V15.4668C13.999 12.7334 14.2308 10.589 14.6944 9.03341C15.1802 7.47784 16.0633 6.07783 17.3439 4.83338C18.4401 3.78616 19.7708 2.92778 21.336 2.25824C21.8356 2.04452 22.4023 2.3047 22.5988 2.81132L23.0044 3.85684C23.2107 4.38869 22.9277 4.9807 22.4128 5.22638C21.0236 5.88934 19.9351 6.85778 19.2668 7.76673C18.6163 8.67613 18.0613 10.2331 17.857 11.7796C17.7834 12.3365 18.2382 12.8001 18.7998 12.8001H21.4668C22.0191 12.8001 22.4668 13.2478 22.4668 13.8001V21.1668Z" fill="#03020D"/>
3
- <path d="M9.06783 21.1668C9.06783 21.7191 8.62012 22.1668 8.06783 22.1668H1.59998C1.04769 22.1668 0.599976 21.7191 0.599976 21.1668V15.4668C0.599976 12.7334 0.831801 10.589 1.29545 9.03341C1.78118 7.47784 2.66433 6.07783 3.94489 4.83338C5.04107 3.78616 6.37177 2.92778 7.93699 2.25824C8.43661 2.04452 9.00333 2.3047 9.19984 2.81132L9.60539 3.85684C9.81169 4.38869 9.5287 4.9807 9.01385 5.22638C7.62458 5.88934 6.53608 6.85778 5.8678 7.76673C5.21727 8.67613 4.66228 10.2331 4.45799 11.7796C4.38444 12.3365 4.83917 12.8001 5.40083 12.8001H8.06783C8.62012 12.8001 9.06783 13.2478 9.06783 13.8001V21.1668Z" fill="#03020D"/>
2
+ <path d="M22.4668 21.1668C22.4668 21.7191 22.0191 22.1668 21.4668 22.1668H14.999C14.4467 22.1668 13.999 21.7191 13.999 21.1668V15.4668C13.999 12.7334 14.2308 10.589 14.6944 9.03341C15.1802 7.47784 16.0633 6.07783 17.3439 4.83338C18.4401 3.78616 19.7708 2.92778 21.336 2.25824C21.8356 2.04452 22.4023 2.3047 22.5988 2.81132L23.0044 3.85684C23.2107 4.38869 22.9277 4.9807 22.4128 5.22638C21.0236 5.88934 19.9351 6.85778 19.2668 7.76673C18.6163 8.67613 18.0613 10.2331 17.857 11.7796C17.7834 12.3365 18.2382 12.8001 18.7998 12.8001H21.4668C22.0191 12.8001 22.4668 13.2478 22.4668 13.8001V21.1668Z" fill="currentColor"/>
3
+ <path d="M9.06783 21.1668C9.06783 21.7191 8.62012 22.1668 8.06783 22.1668H1.59998C1.04769 22.1668 0.599976 21.7191 0.599976 21.1668V15.4668C0.599976 12.7334 0.831801 10.589 1.29545 9.03341C1.78118 7.47784 2.66433 6.07783 3.94489 4.83338C5.04107 3.78616 6.37177 2.92778 7.93699 2.25824C8.43661 2.04452 9.00333 2.3047 9.19984 2.81132L9.60539 3.85684C9.81169 4.38869 9.5287 4.9807 9.01385 5.22638C7.62458 5.88934 6.53608 6.85778 5.8678 7.76673C5.21727 8.67613 4.66228 10.2331 4.45799 11.7796C4.38444 12.3365 4.83917 12.8001 5.40083 12.8001H8.06783C8.62012 12.8001 9.06783 13.2478 9.06783 13.8001V21.1668Z" fill="currentColor"/>
4
4
  </svg>
@@ -1 +1 @@
1
- <svg width="0" height="0" style="position:absolute"><defs><clipPath id="ama"><path fill="#fff" d="M0 0h24v24H0z"/></clipPath><clipPath id="bka"><path fill="currentColor" d="M0 0h24v24H0z"/></clipPath></defs><symbol viewBox="0 0 24 24" id="sprite-icon-gui-ably-badge" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" fill="currentColor" d="M2.77 19.614 11.849 3H9.4L1 18.373l1.77 1.241Zm18.282 0L11.975 3h2.449l8.399 15.373-1.77 1.241Zm-9.14-6.962 9.014 7.06L19.086 21l-7.174-5.617L4.737 21l-1.84-1.288 9.014-7.06Z"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-check-circled-fill" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="m17.832 7.555-6.667 10-1.613.07-3.333-4.167 1.562-1.25 2.479 3.1 5.908-8.863 1.664 1.11Z" fill="var(--ui-icon-secondary-color)"/></symbol><symbol fill="none" viewBox="0 0 12 12" id="sprite-icon-gui-check-lotus-circled" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 6.375 5.625 7.5 7.5 4.875M10.5 6c0 .634-.315 1.195-.796 1.534a1.872 1.872 0 0 1-1.282 2.11c-.287.091-.592.111-.888.06A1.872 1.872 0 0 1 6 10.5a1.873 1.873 0 0 1-1.534-.796 1.873 1.873 0 0 1-2.17-2.17A1.872 1.872 0 0 1 1.5 6c0-.634.315-1.195.796-1.534a1.872 1.872 0 0 1 1.282-2.11c.287-.091.592-.111.888-.06a1.873 1.873 0 0 1 3.068 0 1.873 1.873 0 0 1 2.17 2.17A1.872 1.872 0 0 1 10.5 6Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-checklist-checked" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.75 4c0-.69.56-1.25 1.25-1.25h11a.75.75 0 0 0 0-1.5H4A2.75 2.75 0 0 0 1.25 4v16A2.75 2.75 0 0 0 4 22.75h16A2.75 2.75 0 0 0 22.75 20V9.476a.75.75 0 0 0-1.5 0V20c0 .69-.56 1.25-1.25 1.25H4c-.69 0-1.25-.56-1.25-1.25V4Zm17.874-.584a.75.75 0 1 0-1.248-.832l-7.431 11.147-3.36-4.2a.75.75 0 0 0-1.17.938l4 5a.75.75 0 0 0 1.209-.053l8-12Z" fill="#03020D"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-code-doc" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M20 22.5H4a.5.5 0 0 1-.5-.5V2a.5.5 0 0 1 .5-.5h10.757a1.5 1.5 0 0 1 1.061.44l4.243 4.242a1.5 1.5 0 0 1 .439 1.06V22a.5.5 0 0 1-.5.5Zm1.121-17.379L16.88.88A3 3 0 0 0 14.757 0H4a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7.243a3 3 0 0 0-.879-2.122ZM9.481 8.076a.75.75 0 0 0-.961-1.152l-3 2.5a.75.75 0 0 0 0 1.152l3 2.5a.75.75 0 1 0 .96-1.152L7.172 10 9.48 8.076Zm4.235-1.794a.75.75 0 0 1 .502.933l-3 10a.75.75 0 0 1-1.436-.43l3-10a.75.75 0 0 1 .934-.503Zm.804 5.794a.75.75 0 0 1 .96-1.152l3 2.5a.75.75 0 0 1 0 1.152l-3 2.5a.75.75 0 1 1-.96-1.152L16.828 14l-2.308-1.924Z" fill="#03020D"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-cursor" xmlns="http://www.w3.org/2000/svg"><path d="m3.135 2.056 18.315 6.96c.703.268.742 1.277.06 1.6l-7.14 3.387a.858.858 0 0 0-.442.503l-2.325 6.911a.833.833 0 0 1-1.562.071L2.076 3.223c-.305-.7.36-1.433 1.06-1.167Z" stroke="#03020D" stroke-width="1.5" stroke-linejoin="round"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-expand" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.117 16.434a.801.801 0 1 0 1.191 1.072l4.474-4.971a.798.798 0 0 0 .01-1.088l-4.484-4.982a.801.801 0 1 0-1.19 1.072l3.282 3.647H6.246a.801.801 0 0 0 0 1.603H19.4l-3.283 3.647Z" fill="#03020D"/><path d="M2 18.7V5.223" stroke="#000" stroke-width="1.5" stroke-linecap="round"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-filter-flow-step-0" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M22.394 2.248H1.682h20.712Zm-20.712 0H1.68Zm20.712 0c.26 0 .51.076.725.212.214.137.383.327.497.545a1.527 1.527 0 0 1 .006 1.404l-.004.007-2.071 3.932a.75.75 0 0 1-.664.4H3.195a.75.75 0 0 1-.663-.4L.458 4.412A1.524 1.524 0 0 1 .46 3.008c.114-.218.282-.409.496-.546.215-.137.465-.214.725-.214m20.593 1.5H1.805l1.844 3.5H20.43l1.843-3.5Zm.121 0ZM3.565 10.248H20.51c.236 0 .464.067.66.19a1.3 1.3 0 0 1 .457.49 1.36 1.36 0 0 1 .006 1.273l-.004.008-1.694 3.145a.75.75 0 0 1-.66.394H4.802a.75.75 0 0 1-.66-.394l-1.697-3.15a1.358 1.358 0 0 1 .002-1.274 1.3 1.3 0 0 1 .456-.491c.196-.123.424-.19.66-.191Zm16.61 1.5-1.348 2.5H5.252l-1.347-2.5h16.27Zm.337 0ZM5.447 17.248h13.181a1.148 1.148 0 0 1 1.01.599 1.196 1.196 0 0 1 .006 1.15l-.004.008-1.318 2.359a.75.75 0 0 1-.655.384H6.411a.75.75 0 0 1-.655-.384L4.436 19a1.193 1.193 0 0 1 .42-1.587c.177-.107.381-.165.59-.165Zm12.618 1.5H6.013l.838 1.5h10.376l.838-1.5Z" fill="#03020D"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-filter-flow-step-1" xmlns="http://www.w3.org/2000/svg"><path d="M1.682 2.248h20.712c.26 0 .51.076.725.212.214.137.383.327.497.545a1.528 1.528 0 0 1 .006 1.404l-.004.007-2.071 3.932a.75.75 0 0 1-.664.4H3.195a.75.75 0 0 1-.663-.4L.458 4.412A1.524 1.524 0 0 1 .46 3.008c.114-.218.282-.409.496-.546.214-.137.465-.214.725-.214Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3.565 10.248H20.51c.236 0 .464.067.66.19a1.3 1.3 0 0 1 .457.49 1.362 1.362 0 0 1 .006 1.273l-.004.008-1.694 3.145a.75.75 0 0 1-.66.394H4.802a.75.75 0 0 1-.66-.394l-1.697-3.15a1.358 1.358 0 0 1 .002-1.274 1.3 1.3 0 0 1 .456-.491c.196-.123.424-.19.66-.191Zm16.61 1.5-1.348 2.5H5.251l-1.347-2.5h16.27Zm.337 0ZM5.447 17.248h13.181a1.149 1.149 0 0 1 1.01.599 1.195 1.195 0 0 1 .006 1.15l-.004.008-1.318 2.359a.75.75 0 0 1-.655.384H6.411a.75.75 0 0 1-.655-.384L4.436 19a1.193 1.193 0 0 1 .42-1.587c.177-.107.381-.165.59-.165Zm12.618 1.5H6.013l.838 1.5h10.376l.838-1.5Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-filter-flow-step-2" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M22.394 2.248H1.682Zm-20.712 0H1.68Zm20.712 0c.26 0 .51.076.725.212.214.137.383.327.497.545a1.528 1.528 0 0 1 .006 1.404l-.004.007-2.071 3.932a.75.75 0 0 1-.664.4H3.195a.75.75 0 0 1-.663-.4L.458 4.412A1.524 1.524 0 0 1 .46 3.008c.114-.218.282-.409.496-.546.214-.137.465-.214.725-.214m20.593 1.5H1.805l1.844 3.5H20.43l1.843-3.5Zm.121 0ZM3.565 10.248H20.51c.236 0 .464.067.66.19a1.3 1.3 0 0 1 .457.49 1.362 1.362 0 0 1 .006 1.273l-.004.008-1.694 3.145a.75.75 0 0 1-.66.394H4.802a.75.75 0 0 1-.66-.394l-1.697-3.15a1.358 1.358 0 0 1 .002-1.274 1.3 1.3 0 0 1 .456-.491c.196-.123.424-.19.66-.191ZM5.447 17.248h13.181a1.149 1.149 0 0 1 1.01.599 1.195 1.195 0 0 1 .006 1.15l-.004.008-1.318 2.359a.75.75 0 0 1-.655.384H6.411a.75.75 0 0 1-.655-.384L4.436 19a1.193 1.193 0 0 1 .42-1.587c.177-.107.381-.165.59-.165Zm12.618 1.5H6.013l.838 1.5h10.376l.838-1.5Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-filter-flow-step-3" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M22.394 2.248H1.682Zm-20.712 0H1.68Zm20.712 0c.26 0 .51.076.725.212.214.137.383.327.497.545a1.528 1.528 0 0 1 .006 1.404l-.004.007-2.071 3.932a.75.75 0 0 1-.664.4H3.195a.75.75 0 0 1-.663-.4L.458 4.412A1.524 1.524 0 0 1 .46 3.008c.114-.218.282-.409.496-.546.214-.137.465-.214.725-.214m20.593 1.5H1.805l1.844 3.5H20.43l1.843-3.5Zm.121 0ZM3.565 10.248H20.51c.236 0 .464.067.66.19a1.3 1.3 0 0 1 .457.49 1.362 1.362 0 0 1 .006 1.273l-.004.008-1.694 3.145a.75.75 0 0 1-.66.394H4.802a.75.75 0 0 1-.66-.394l-1.697-3.15a1.358 1.358 0 0 1 .002-1.274 1.3 1.3 0 0 1 .456-.491c.196-.123.424-.19.66-.191Zm16.61 1.5-1.348 2.5H5.251l-1.347-2.5h16.27Zm.337 0ZM5.447 17.248h13.181a1.149 1.149 0 0 1 1.01.599 1.195 1.195 0 0 1 .006 1.15l-.004.008-1.318 2.359a.75.75 0 0 1-.655.384H6.411a.75.75 0 0 1-.655-.384L4.436 19a1.193 1.193 0 0 1 .42-1.587c.177-.107.381-.165.59-.165Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-flower-growth" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M17.036 2.107a.75.75 0 1 0-.882-1.213c-2.475 1.8-3.756 4.449-4.4 6.988-.546 2.153-.647 4.275-.61 5.845H4.655a.75.75 0 0 0 0 1.5h1.39l.419 4.693a2.826 2.826 0 0 0 2.815 2.575h5.286a2.826 2.826 0 0 0 2.815-2.575l.419-4.693h1.39a.75.75 0 1 0 0-1.5H12.644c-.037-1.483.057-3.476.564-5.476.593-2.34 1.735-4.622 3.828-6.144Zm-5.123 13.12h4.381l-.407 4.56a1.326 1.326 0 0 1-1.321 1.208H9.28c-.687 0-1.26-.525-1.32-1.209l-.408-4.559h4.36Zm-1.48-6.399-.39-.64.741-.12c.048.302-.09.602-.35.76Zm-8.89-4.563-.203-.722h.002l.003-.001.01-.003.038-.01.139-.037A19.001 19.001 0 0 1 3.68 3.08a12.547 12.547 0 0 1 2.088-.113c.703.028 1.438.14 2.067.43 1.269.586 1.994 1.835 2.394 2.797a9.505 9.505 0 0 1 .546 1.826l.006.034.002.01v.005l-.74.12.39.64-.001.001-.003.002-.01.005-.029.018-.104.06a9.509 9.509 0 0 1-1.64.71c-.991.32-2.412.577-3.68-.008-.63-.29-1.193-.777-1.67-1.293A12.546 12.546 0 0 1 2.028 6.66 19.005 19.005 0 0 1 .885 4.629L.87 4.594l-.005-.01-.001-.003V4.58H.861l.681-.315Zm0 0-.203-.722A.75.75 0 0 0 .862 4.58l.681-.314Zm1.105.51c.17.31.387.682.638 1.069.327.504.706 1.021 1.112 1.461.412.446.819.775 1.196.95.744.342 1.705.227 2.592-.06a7.98 7.98 0 0 0 1.002-.402 7.979 7.979 0 0 0-.344-1.024c-.358-.86-.894-1.667-1.637-2.01-.377-.174-.892-.27-1.499-.294a11.062 11.062 0 0 0-1.833.102c-.457.06-.88.136-1.227.208Zm7.006 2.771Zm6.253-.792-.496-.563a.75.75 0 0 0-.213.809l.709-.246Zm7.061 1.862.616-.428v-.001l-.002-.003-.005-.007-.019-.026a10.658 10.658 0 0 0-.31-.415 15.013 15.013 0 0 0-.856-1.007 9.948 9.948 0 0 0-1.22-1.124c-.445-.339-.964-.65-1.516-.796-1.115-.294-2.219.121-2.948.507a7.59 7.59 0 0 0-1.265.847l-.021.019-.007.006-.002.002h-.001l.495.564-.709.246v.002l.002.003.003.008.01.027a5 5 0 0 0 .164.4c.114.253.286.598.518.96.444.696 1.2 1.6 2.315 1.895.552.145 1.157.13 1.71.055a9.948 9.948 0 0 0 1.617-.377 15 15 0 0 0 1.716-.662l.028-.014.009-.004.002-.001h.001l-.325-.676Zm0 0 .616-.428a.75.75 0 0 1-.29 1.103l-.326-.675Zm-1.673-.864c.178.191.341.38.484.55-.208.079-.443.162-.693.24-.441.14-.916.26-1.367.321-.459.062-.843.056-1.127-.019-.556-.146-1.048-.649-1.433-1.251a5.979 5.979 0 0 1-.333-.596c.162-.112.361-.237.584-.355.632-.334 1.307-.53 1.864-.382.283.074.62.258.99.539.361.275.715.614 1.03.953Z" fill="#03020D"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-further-reading" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#ama)" stroke="#03020D" stroke-width="1.5" stroke-linecap="round"><rect x="1.65" y="5.429" width="17" height="17" rx="2.353"/><path d="M5.45 5.243v-1.29c0-1.3 1.054-2.353 2.353-2.353h12.294c1.3 0 2.353 1.053 2.353 2.353v12.294c0 1.3-1.053 2.353-2.353 2.353h-1.29M6.656 9.934h7M6.656 13.934h7M6.656 17.934h4"/></g></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-glasses" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.35 5.5a1.75 1.75 0 1 1 3.5 0V7a.75.75 0 1 0 1.5 0V5.5a3.25 3.25 0 0 0-6.5 0V18a.75.75 0 0 0 1.4.374V19A2.75 2.75 0 0 0 5 21.75h3A2.75 2.75 0 0 0 10.75 19v-.25h2.5V19A2.75 2.75 0 0 0 16 21.75h3A2.75 2.75 0 0 0 21.75 19v-.625a.75.75 0 0 0 1.4-.375V5.5a3.25 3.25 0 1 0-6.5 0V7a.75.75 0 0 0 1.5 0V5.5a1.75 1.75 0 1 1 3.5 0v10.762A2.751 2.751 0 0 0 19 14.25h-3A2.75 2.75 0 0 0 13.25 17v.25h-2.5V17A2.75 2.75 0 0 0 8 14.25H5a2.751 2.751 0 0 0-2.65 2.012V5.5ZM3.75 17c0-.69.56-1.25 1.25-1.25h3c.69 0 1.25.56 1.25 1.25v2c0 .69-.56 1.25-1.25 1.25H5c-.69 0-1.25-.56-1.25-1.25v-2ZM16 15.75c-.69 0-1.25.56-1.25 1.25v2c0 .69.56 1.25 1.25 1.25h3c.69 0 1.25-.56 1.25-1.25v-2c0-.69-.56-1.25-1.25-1.25h-3Z" fill="#03020D"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-heartbeat-outline" xmlns="http://www.w3.org/2000/svg"><path d="M20.564 11c.276-.87.436-1.788.436-2.75 0-2.485-2.099-4.5-4.688-4.5-1.935 0-3.597 1.126-4.312 2.733-.715-1.607-2.377-2.733-4.313-2.733C5.1 3.75 3 5.765 3 8.25c0 .962.16 1.88.437 2.75m15.96 2.5C16.81 17.695 12 20.25 12 20.25s-4.81-2.555-7.398-6.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M2 13.44h3.785l1.97-2.45 1.97 4.384L11.697 10l1.97 3.617 1.971-2.626 1.97 2.448H22" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-heartbeat-solid" xmlns="http://www.w3.org/2000/svg"><path d="M3.302 12.683c.25.522.537 1.022.847 1.5H2a.75.75 0 0 1 0-1.5h1.302Zm18.774.004a.75.75 0 0 1 0 1.492l-.076.004h-2.15c.311-.478.598-.978.848-1.5H22l.076.004Z" fill="currentColor"/><path d="M13.008 13.969a.751.751 0 0 0 1.259.091l1.39-1.855 1.366 1.697a.75.75 0 0 0 .584.28h2.244c-.836 1.285-1.85 2.401-2.84 3.324a25.175 25.175 0 0 1-4.244 3.17c-.128.076-.23.134-.3.174l-.083.044-.023.013-.006.004-.003.001a.753.753 0 0 1-.704 0h-.003l-.006-.005-.023-.012-.083-.045a22.81 22.81 0 0 1-1.355-.835 25.176 25.176 0 0 1-3.19-2.51c-.99-.922-2.003-2.038-2.839-3.322h1.636a.75.75 0 0 0 .584-.28l1.203-1.497 1.47 3.269a.75.75 0 0 0 1.388-.05l1.4-3.82 1.178 2.164ZM16.313 3c2.973 0 5.437 2.322 5.437 5.25 0 1.609-.41 3.093-1.052 4.433h-2.731l-1.745-2.17a.75.75 0 0 0-1.13-.045l-.055.066-1.27 1.693-1.412-2.592a.75.75 0 0 0-1.318 0l-.045.1-1.338 3.645-1.215-2.703a.75.75 0 0 0-1.203-.235l-.065.072-1.745 2.169H3.302C2.66 11.343 2.25 9.859 2.25 8.25 2.25 5.322 4.714 3 7.688 3A5.5 5.5 0 0 1 12 5.052 5.5 5.5 0 0 1 16.313 3Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-history" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10a1 1 0 1 1 2 0c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0a1 1 0 1 1 0 2Zm0 2a1 1 0 0 1 1 1v6.08a1 1 0 0 0 .35.76l2.8 2.4a1 1 0 0 1-1.3 1.52l-2.802-2.402A3 3 0 0 1 11 11.08V5a1 1 0 0 1 1-1Zm7.75 1.25a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM17.5 2a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM22 8.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-live-chat" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M15 1a3 3 0 0 1 3 3v3h3a3 3 0 0 1 3 3v11.506c0 1.024-1.165 1.614-1.99 1.006l-2.938-2.16H9a3 3 0 0 1-3-3v-3H4.928l-2.937 2.16C1.165 17.12 0 16.53 0 15.506V4a3 3 0 0 1 3-3h12ZM8 14.351v3a1 1 0 0 0 1 1h10.728L22 20.023V10a1 1 0 0 0-1-1h-3v2.351a3 3 0 0 1-3 3H8ZM16 9v2.351a1 1 0 0 1-1 1H8V10a1 1 0 0 1 1-1h7Zm0-2H9a3 3 0 0 0-3 3v2.351H4.272L2 14.023V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-mouse" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 .25A7.75 7.75 0 0 0 4.25 8v8a7.75 7.75 0 0 0 15.5 0V8A7.75 7.75 0 0 0 12 .25ZM5.75 8a6.25 6.25 0 1 1 12.5 0v8a6.25 6.25 0 1 1-12.5 0V8ZM12 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" fill="#03020D"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-partial" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 12c0 5.799 4.701 10.5 10.5 10.5S22.5 17.799 22.5 12 17.799 1.5 12 1.5 1.5 6.201 1.5 12ZM0 12c0 6.627 5.373 12 12 12s12-5.373 12-12S18.627 0 12 0 0 5.373 0 12Z" fill="currentColor"/><path d="M11.583 23.576C5.38 23.356.417 18.258.417 12 .417 5.742 5.379.643 11.583.424v23.152Z" fill="currentColor" stroke="currentColor" stroke-width=".833"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-pitfall" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M.55 4.284A3.426 3.426 0 0 1 3.976.858h13.38a3.426 3.426 0 0 1 3.426 3.426v6.104a.75.75 0 0 1-1.5 0V6.602H2.05v11.061c0 1.064.862 1.926 1.926 1.926h4.348a.75.75 0 0 1 0 1.5H3.976A3.426 3.426 0 0 1 .55 17.663V4.283Zm1.5.818h17.232v-.818a1.926 1.926 0 0 0-1.926-1.926H3.976A1.926 1.926 0 0 0 2.05 4.284v.818Zm12.918 6.217c.774-1.34 2.71-1.34 3.483 0l4.745 8.218c.773 1.34-.194 3.016-1.742 3.016h-9.489c-1.548 0-2.515-1.676-1.741-3.016l4.744-8.218Zm2.184.75a.51.51 0 0 0-.885 0l-4.744 8.218a.51.51 0 0 0 .442.766h9.49a.51.51 0 0 0 .442-.766l-4.745-8.218ZM16 17.65a.75.75 0 0 0 1.5 0v-3.5a.75.75 0 0 0-1.5 0v3.5Zm1.468 1.951a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM5.4 3.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z" fill="#03020D"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-ai-transport-outline" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M11.498 1.016c.334 0 .628.221.72.543l.811 2.841A3.743 3.743 0 0 0 15.6 6.971l2.841.812a.749.749 0 0 1 0 1.44l-2.84.811a3.743 3.743 0 0 0-2.572 2.572l-.812 2.84a.749.749 0 0 1-1.44 0l-.811-2.84a3.743 3.743 0 0 0-2.571-2.572l-2.841-.811a.749.749 0 0 1 0-1.44l2.84-.812a3.743 3.743 0 0 0 2.572-2.57l.812-2.842a.749.749 0 0 1 .72-.543Z" stroke="currentColor" stroke-width="1.307" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.455 14.642 3.56 18.536M5.059 12.995l-2.097 2.097" stroke="currentColor" stroke-width="1.307" stroke-linecap="round" stroke-linejoin="round"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-ai-transport-solid" xmlns="http://www.w3.org/2000/svg"><path d="M19.638 8.502c0 .626-.415 1.177-1.017 1.349l-2.841.812a3.09 3.09 0 0 0-2.122 2.121l-.812 2.842a1.402 1.402 0 0 1-2.697 0l-.812-2.841a3.09 3.09 0 0 0-2.121-2.122L4.374 9.85a1.402 1.402 0 0 1 0-2.697l2.842-.812A3.09 3.09 0 0 0 9.337 4.22l.812-2.841a1.402 1.402 0 0 1 2.697 0l.812 2.841a3.09 3.09 0 0 0 2.122 2.122l2.841.812a1.403 1.403 0 0 1 1.017 1.348ZM6.993 14.18a.653.653 0 1 1 .924.924l-3.894 3.893a.653.653 0 0 1-.924-.924l3.894-3.893ZM4.597 12.533a.653.653 0 1 1 .924.924l-2.097 2.096a.653.653 0 1 1-.924-.924l2.097-2.096Z" fill="#FF5416"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-asset-tracking-outline" xmlns="http://www.w3.org/2000/svg"><path d="m13.32 20.397.558.5-.558-.5Zm-2.64 0-.558.5.558-.5Zm7.807-10.167c0 .644-.2 1.42-.571 2.292-.369.865-.888 1.779-1.482 2.685-1.189 1.813-2.64 3.538-3.672 4.69l1.116 1c1.056-1.176 2.563-2.964 3.81-4.867.624-.952 1.193-1.947 1.608-2.92.411-.965.69-1.953.69-2.88h-1.5ZM12 3.743a6.487 6.487 0 0 1 6.487 6.487h1.5A7.987 7.987 0 0 0 12 2.243v1.5ZM5.513 10.23A6.487 6.487 0 0 1 12 3.743v-1.5a7.987 7.987 0 0 0-7.987 7.987h1.5Zm5.726 9.666c-1.033-1.151-2.484-2.876-3.673-4.689-.594-.906-1.113-1.82-1.482-2.685-.371-.871-.57-1.648-.57-2.292h-1.5c0 .927.279 1.915.69 2.88.415.973.984 1.968 1.608 2.92 1.248 1.903 2.755 3.691 3.81 4.868l1.117-1.002Zm1.523 0a1.009 1.009 0 0 1-1.524 0l-1.116 1.002a2.509 2.509 0 0 0 3.756 0l-1.116-1.002Zm1.383-9.666c0 1.185-.96 2.145-2.145 2.145v1.5a3.645 3.645 0 0 0 3.645-3.645h-1.5ZM12 8.085c1.184 0 2.145.96 2.145 2.145h1.5A3.645 3.645 0 0 0 12 6.585v1.5ZM9.855 10.23c0-1.184.96-2.145 2.145-2.145v-1.5a3.645 3.645 0 0 0-3.645 3.645h1.5ZM12 12.375a2.145 2.145 0 0 1-2.145-2.145h-1.5A3.645 3.645 0 0 0 12 13.875v-1.5Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-asset-tracking-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.013 10.23a7.987 7.987 0 0 1 15.974 0c0 .927-.28 1.915-.691 2.88-.415.973-.984 1.968-1.608 2.92-1.247 1.903-2.754 3.691-3.81 4.868a2.509 2.509 0 0 1-3.756 0c-1.055-1.177-2.562-2.965-3.81-4.868-.624-.952-1.193-1.947-1.608-2.92-.411-.965-.69-1.953-.69-2.88Zm4.342 0a3.645 3.645 0 1 1 7.29 0 3.645 3.645 0 0 1-7.29 0Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-chat-outline" xmlns="http://www.w3.org/2000/svg"><path d="M7 3h10a3.333 3.333 0 0 1 3.333 3.333v12.402c0 .869-1.031 1.324-1.673.739l-3.802-3.467a.667.667 0 0 0-.45-.174H7A3.333 3.333 0 0 1 3.667 12.5V6.333A3.333 3.333 0 0 1 7 3Z" stroke="currentColor" stroke-width="1.5"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-chat-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.917 6.333A4.083 4.083 0 0 1 7 2.25h10a4.083 4.083 0 0 1 4.083 4.083v12.402c0 1.52-1.805 2.318-2.929 1.293l-3.778-3.445H7A4.083 4.083 0 0 1 2.917 12.5V6.333Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-liveobjects-outline" xmlns="http://www.w3.org/2000/svg"><path d="M14.038 3h2.886A4.076 4.076 0 0 1 21 7.075v2.887M9.962 3H7.075A4.075 4.075 0 0 0 3 7.075v2.887m0 4.076v2.886A4.076 4.076 0 0 0 7.075 21h2.887M21 14.038v2.886A4.076 4.076 0 0 1 16.924 21h-2.886" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/><path d="m8.434 12.34 2.887 2.886 4.415-6.452" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-liveobjects-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7 2a5 5 0 0 0-5 5v10a5 5 0 0 0 5 5h10a5 5 0 0 0 5-5V7a5 5 0 0 0-5-5H7Zm9.355 7.197a.75.75 0 0 0-1.238-.847l-3.905 5.707-2.248-2.248a.75.75 0 1 0-1.06 1.06l2.886 2.888a.75.75 0 0 0 1.15-.107l4.415-6.453Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-livesync-outline" xmlns="http://www.w3.org/2000/svg"><path d="M19.703 20H12v-5.884c0-.125.143-.196.242-.12l7.552 5.733a.151.151 0 0 1-.091.271ZM4 10.188v3.774A6.038 6.038 0 0 0 10.038 20H12M4.297 4H12v5.884a.151.151 0 0 1-.242.12L4.206 4.272A.15.15 0 0 1 4.297 4ZM20 13.812v-3.774A6.038 6.038 0 0 0 13.962 4H12" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-livesync-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M20 14.561a.75.75 0 0 1-.75-.75v-3.773a5.288 5.288 0 0 0-5.288-5.288H12.75v5.134a.9.9 0 0 1-1.446.718L3.753 4.868c-.688-.522-.319-1.618.544-1.618h9.665a6.788 6.788 0 0 1 6.788 6.788v3.773a.75.75 0 0 1-.75.75ZM4 9.438a.75.75 0 0 1 .75.75v3.774a5.288 5.288 0 0 0 5.288 5.288h1.212v-5.134a.901.901 0 0 1 1.446-.718l7.551 5.733c.688.523.319 1.619-.544 1.619h-9.665a6.788 6.788 0 0 1-6.788-6.788v-3.774a.75.75 0 0 1 .75-.75Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-pubsub-outline" xmlns="http://www.w3.org/2000/svg"><path d="M10.994 3.328 4.106 14.403a.692.692 0 0 0 .587 1.058h7.235c.191 0 .346.155.346.347v4.498c0 .697.913.957 1.28.366l6.889-11.076a.692.692 0 0 0-.588-1.057H12.62a.346.346 0 0 1-.346-.347V3.694c0-.697-.912-.957-1.28-.366Z" stroke="currentColor" stroke-width="1.5"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-pubsub-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.357 2.932c.766-1.232 2.667-.69 2.667.762v4.095h6.831a1.442 1.442 0 0 1 1.225 2.204L14.19 21.068c-.766 1.232-2.667.69-2.667-.761v-4.095h-6.83a1.442 1.442 0 0 1-1.225-2.204l6.888-11.076Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-spaces-outline" xmlns="http://www.w3.org/2000/svg"><path d="M8.262 19.89 4.292 5.543a1.018 1.018 0 0 1 1.252-1.252l14.345 3.97c.941.26 1.011 1.568.104 1.928l-6.475 2.567a1.358 1.358 0 0 0-.761.761l-2.567 6.475c-.36.907-1.667.837-1.928-.104Z" stroke="currentColor" stroke-width="1.5"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-spaces-solid" xmlns="http://www.w3.org/2000/svg"><path d="M3.569 5.744C3.203 4.42 4.42 3.203 5.744 3.57l14.345 3.97c1.634.453 1.756 2.723.18 3.348l-6.474 2.567a.607.607 0 0 0-.34.34l-2.568 6.476c-.625 1.575-2.895 1.453-3.348-.18L3.57 5.743Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-quote-marks-fill" xmlns="http://www.w3.org/2000/svg"><path d="M22.467 21.167a1 1 0 0 1-1 1h-6.468a1 1 0 0 1-1-1v-5.7c0-2.734.232-4.878.695-6.434.486-1.555 1.37-2.955 2.65-4.2 1.096-1.047 2.427-1.905 3.992-2.575.5-.213 1.066.047 1.263.553l.405 1.046c.207.532-.076 1.124-.591 1.37-1.39.662-2.478 1.63-3.146 2.54-.65.91-1.206 2.466-1.41 4.013-.074.556.381 1.02.943 1.02h2.667a1 1 0 0 1 1 1v7.367ZM9.068 21.167a1 1 0 0 1-1 1H1.6a1 1 0 0 1-1-1v-5.7c0-2.734.232-4.878.695-6.434.486-1.555 1.37-2.955 2.65-4.2C5.04 3.786 6.372 2.928 7.937 2.258c.5-.213 1.066.047 1.263.553l.405 1.046c.207.532-.076 1.124-.591 1.37-1.39.662-2.478 1.63-3.146 2.54-.65.91-1.206 2.466-1.41 4.013-.074.556.381 1.02.943 1.02h2.667a1 1 0 0 1 1 1v7.367Z" fill="#03020D"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-refresh" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#bka)"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.65.24a1 1 0 0 0-1.3 1.52l1.522 1.305C5.92 3.635 2 7.909 2 13c0 5.472 4.528 10 10 10s10-4.528 10-10a1 1 0 1 0-2 0c0 4.368-3.632 8-8 8s-8-3.632-8-8c0-4.038 3.105-7.448 7.025-7.94L9.293 6.794a1 1 0 1 0 1.414 1.414l3.5-3.5a1 1 0 0 0-.056-1.466l-3.5-3Z" fill="currentColor"/></g></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-resources" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M5 1.5c-.69 0-1.25.56-1.25 1.25v1H5a.75.75 0 0 1 0 1.5H3.75v1.5H5a.75.75 0 0 1 0 1.5H3.75v1.5H5a.75.75 0 0 1 0 1.5H3.75v1.5H5a.75.75 0 0 1 0 1.5H3.75v1.5H5a.75.75 0 0 1 0 1.5H3.75v1.5H5a.75.75 0 0 1 0 1.5H3.75v1c0 .69.56 1.25 1.25 1.25h13.5c.69 0 1.25-.56 1.25-1.25v-1.5H12A2.75 2.75 0 0 1 9.25 17v-5A2.75 2.75 0 0 1 12 9.25h7.75v-5.5A2.25 2.25 0 0 0 17.5 1.5H5ZM2.25 2.75v1H1a.75.75 0 0 0 0 1.5h1.25v1.5H1a.75.75 0 0 0 0 1.5h1.25v1.5H1a.75.75 0 0 0 0 1.5h1.25v1.5H1a.75.75 0 0 0 0 1.5h1.25v1.5H1a.75.75 0 0 0 0 1.5h1.25v1.5H1a.75.75 0 0 0 0 1.5h1.25v1A2.75 2.75 0 0 0 5 24h13.5a2.75 2.75 0 0 0 2.75-2.75v-1.511A2.75 2.75 0 0 0 23.75 17v-5a2.75 2.75 0 0 0-2.5-2.739V3.75A3.75 3.75 0 0 0 17.5 0H5a2.75 2.75 0 0 0-2.75 2.75Zm18.25 8H12c-.69 0-1.25.56-1.25 1.25v5c0 .69.56 1.25 1.25 1.25h9c.69 0 1.25-.56 1.25-1.25v-5c0-.69-.56-1.25-1.25-1.25h-.5Zm-8-6.5a1.5 1.5 0 0 1 1.5-1.5h3a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1-1.5 1.5h-3a1.5 1.5 0 0 1-1.5-1.5v-1Zm1.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-3Zm1.5 9.508 1.975 1.241L15.5 15.74v-2.482Zm2.542 2.066a.971.971 0 0 0 0-1.65l-2.024-1.272c-.641-.402-1.518.034-1.518.825v2.545c0 .79.877 1.227 1.518.824l2.024-1.272Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-spinner-dark" xmlns="http://www.w3.org/2000/svg"><path d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 18a8 8 0 1 1 0-16 8 8 0 0 1 0 16Z" fill="#687288"/><path d="M20 12h2A10 10 0 0 0 12 2v2a8 8 0 0 1 8 8Z" fill="#FF5416"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-spinner-light" xmlns="http://www.w3.org/2000/svg"><path d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 18a8 8 0 1 1 0-16 8 8 0 0 1 0 16Z" fill="#EEF1F6"/><path d="M20 12h2A10 10 0 0 0 12 2v2a8 8 0 0 1 8 8Z" fill="#FF5416"/></symbol></svg>
1
+ <svg width="0" height="0" style="position:absolute"><defs><clipPath id="ama"><path fill="#fff" d="M0 0h24v24H0z"/></clipPath><clipPath id="bka"><path fill="currentColor" d="M0 0h24v24H0z"/></clipPath></defs><symbol viewBox="0 0 24 24" id="sprite-icon-gui-ably-badge" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" fill="currentColor" d="M2.77 19.614 11.849 3H9.4L1 18.373l1.77 1.241Zm18.282 0L11.975 3h2.449l8.399 15.373-1.77 1.241Zm-9.14-6.962 9.014 7.06L19.086 21l-7.174-5.617L4.737 21l-1.84-1.288 9.014-7.06Z"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-check-circled-fill" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="m17.832 7.555-6.667 10-1.613.07-3.333-4.167 1.562-1.25 2.479 3.1 5.908-8.863 1.664 1.11Z" fill="var(--ui-icon-secondary-color)"/></symbol><symbol fill="none" viewBox="0 0 12 12" id="sprite-icon-gui-check-lotus-circled" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 6.375 5.625 7.5 7.5 4.875M10.5 6c0 .634-.315 1.195-.796 1.534a1.872 1.872 0 0 1-1.282 2.11c-.287.091-.592.111-.888.06A1.872 1.872 0 0 1 6 10.5a1.873 1.873 0 0 1-1.534-.796 1.873 1.873 0 0 1-2.17-2.17A1.872 1.872 0 0 1 1.5 6c0-.634.315-1.195.796-1.534a1.872 1.872 0 0 1 1.282-2.11c.287-.091.592-.111.888-.06a1.873 1.873 0 0 1 3.068 0 1.873 1.873 0 0 1 2.17 2.17A1.872 1.872 0 0 1 10.5 6Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-checklist-checked" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.75 4c0-.69.56-1.25 1.25-1.25h11a.75.75 0 0 0 0-1.5H4A2.75 2.75 0 0 0 1.25 4v16A2.75 2.75 0 0 0 4 22.75h16A2.75 2.75 0 0 0 22.75 20V9.476a.75.75 0 0 0-1.5 0V20c0 .69-.56 1.25-1.25 1.25H4c-.69 0-1.25-.56-1.25-1.25V4Zm17.874-.584a.75.75 0 1 0-1.248-.832l-7.431 11.147-3.36-4.2a.75.75 0 0 0-1.17.938l4 5a.75.75 0 0 0 1.209-.053l8-12Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-code-doc" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M20 22.5H4a.5.5 0 0 1-.5-.5V2a.5.5 0 0 1 .5-.5h10.757a1.5 1.5 0 0 1 1.061.44l4.243 4.242a1.5 1.5 0 0 1 .439 1.06V22a.5.5 0 0 1-.5.5Zm1.121-17.379L16.88.88A3 3 0 0 0 14.757 0H4a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7.243a3 3 0 0 0-.879-2.122ZM9.481 8.076a.75.75 0 0 0-.961-1.152l-3 2.5a.75.75 0 0 0 0 1.152l3 2.5a.75.75 0 1 0 .96-1.152L7.172 10 9.48 8.076Zm4.235-1.794a.75.75 0 0 1 .502.933l-3 10a.75.75 0 0 1-1.436-.43l3-10a.75.75 0 0 1 .934-.503Zm.804 5.794a.75.75 0 0 1 .96-1.152l3 2.5a.75.75 0 0 1 0 1.152l-3 2.5a.75.75 0 1 1-.96-1.152L16.828 14l-2.308-1.924Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-cursor" xmlns="http://www.w3.org/2000/svg"><path d="m3.135 2.056 18.315 6.96c.703.268.742 1.277.06 1.6l-7.14 3.387a.858.858 0 0 0-.442.503l-2.325 6.911a.833.833 0 0 1-1.562.071L2.076 3.223c-.305-.7.36-1.433 1.06-1.167Z" stroke="currentColor" stroke-width="1.5" stroke-linejoin="round"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-expand" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.117 16.434a.801.801 0 1 0 1.191 1.072l4.474-4.971a.798.798 0 0 0 .01-1.088l-4.484-4.982a.801.801 0 1 0-1.19 1.072l3.282 3.647H6.246a.801.801 0 0 0 0 1.603H19.4l-3.283 3.647Z" fill="currentColor"/><path d="M2 18.7V5.223" stroke="#000" stroke-width="1.5" stroke-linecap="round"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-filter-flow-step-0" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M22.394 2.248H1.682h20.712Zm-20.712 0H1.68Zm20.712 0c.26 0 .51.076.725.212.214.137.383.327.497.545a1.527 1.527 0 0 1 .006 1.404l-.004.007-2.071 3.932a.75.75 0 0 1-.664.4H3.195a.75.75 0 0 1-.663-.4L.458 4.412A1.524 1.524 0 0 1 .46 3.008c.114-.218.282-.409.496-.546.215-.137.465-.214.725-.214m20.593 1.5H1.805l1.844 3.5H20.43l1.843-3.5Zm.121 0ZM3.565 10.248H20.51c.236 0 .464.067.66.19a1.3 1.3 0 0 1 .457.49 1.36 1.36 0 0 1 .006 1.273l-.004.008-1.694 3.145a.75.75 0 0 1-.66.394H4.802a.75.75 0 0 1-.66-.394l-1.697-3.15a1.358 1.358 0 0 1 .002-1.274 1.3 1.3 0 0 1 .456-.491c.196-.123.424-.19.66-.191Zm16.61 1.5-1.348 2.5H5.252l-1.347-2.5h16.27Zm.337 0ZM5.447 17.248h13.181a1.148 1.148 0 0 1 1.01.599 1.196 1.196 0 0 1 .006 1.15l-.004.008-1.318 2.359a.75.75 0 0 1-.655.384H6.411a.75.75 0 0 1-.655-.384L4.436 19a1.193 1.193 0 0 1 .42-1.587c.177-.107.381-.165.59-.165Zm12.618 1.5H6.013l.838 1.5h10.376l.838-1.5Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-filter-flow-step-1" xmlns="http://www.w3.org/2000/svg"><path d="M1.682 2.248h20.712c.26 0 .51.076.725.212.214.137.383.327.497.545a1.528 1.528 0 0 1 .006 1.404l-.004.007-2.071 3.932a.75.75 0 0 1-.664.4H3.195a.75.75 0 0 1-.663-.4L.458 4.412A1.524 1.524 0 0 1 .46 3.008c.114-.218.282-.409.496-.546.214-.137.465-.214.725-.214Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3.565 10.248H20.51c.236 0 .464.067.66.19a1.3 1.3 0 0 1 .457.49 1.362 1.362 0 0 1 .006 1.273l-.004.008-1.694 3.145a.75.75 0 0 1-.66.394H4.802a.75.75 0 0 1-.66-.394l-1.697-3.15a1.358 1.358 0 0 1 .002-1.274 1.3 1.3 0 0 1 .456-.491c.196-.123.424-.19.66-.191Zm16.61 1.5-1.348 2.5H5.251l-1.347-2.5h16.27Zm.337 0ZM5.447 17.248h13.181a1.149 1.149 0 0 1 1.01.599 1.195 1.195 0 0 1 .006 1.15l-.004.008-1.318 2.359a.75.75 0 0 1-.655.384H6.411a.75.75 0 0 1-.655-.384L4.436 19a1.193 1.193 0 0 1 .42-1.587c.177-.107.381-.165.59-.165Zm12.618 1.5H6.013l.838 1.5h10.376l.838-1.5Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-filter-flow-step-2" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M22.394 2.248H1.682Zm-20.712 0H1.68Zm20.712 0c.26 0 .51.076.725.212.214.137.383.327.497.545a1.528 1.528 0 0 1 .006 1.404l-.004.007-2.071 3.932a.75.75 0 0 1-.664.4H3.195a.75.75 0 0 1-.663-.4L.458 4.412A1.524 1.524 0 0 1 .46 3.008c.114-.218.282-.409.496-.546.214-.137.465-.214.725-.214m20.593 1.5H1.805l1.844 3.5H20.43l1.843-3.5Zm.121 0ZM3.565 10.248H20.51c.236 0 .464.067.66.19a1.3 1.3 0 0 1 .457.49 1.362 1.362 0 0 1 .006 1.273l-.004.008-1.694 3.145a.75.75 0 0 1-.66.394H4.802a.75.75 0 0 1-.66-.394l-1.697-3.15a1.358 1.358 0 0 1 .002-1.274 1.3 1.3 0 0 1 .456-.491c.196-.123.424-.19.66-.191ZM5.447 17.248h13.181a1.149 1.149 0 0 1 1.01.599 1.195 1.195 0 0 1 .006 1.15l-.004.008-1.318 2.359a.75.75 0 0 1-.655.384H6.411a.75.75 0 0 1-.655-.384L4.436 19a1.193 1.193 0 0 1 .42-1.587c.177-.107.381-.165.59-.165Zm12.618 1.5H6.013l.838 1.5h10.376l.838-1.5Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-filter-flow-step-3" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M22.394 2.248H1.682Zm-20.712 0H1.68Zm20.712 0c.26 0 .51.076.725.212.214.137.383.327.497.545a1.528 1.528 0 0 1 .006 1.404l-.004.007-2.071 3.932a.75.75 0 0 1-.664.4H3.195a.75.75 0 0 1-.663-.4L.458 4.412A1.524 1.524 0 0 1 .46 3.008c.114-.218.282-.409.496-.546.214-.137.465-.214.725-.214m20.593 1.5H1.805l1.844 3.5H20.43l1.843-3.5Zm.121 0ZM3.565 10.248H20.51c.236 0 .464.067.66.19a1.3 1.3 0 0 1 .457.49 1.362 1.362 0 0 1 .006 1.273l-.004.008-1.694 3.145a.75.75 0 0 1-.66.394H4.802a.75.75 0 0 1-.66-.394l-1.697-3.15a1.358 1.358 0 0 1 .002-1.274 1.3 1.3 0 0 1 .456-.491c.196-.123.424-.19.66-.191Zm16.61 1.5-1.348 2.5H5.251l-1.347-2.5h16.27Zm.337 0ZM5.447 17.248h13.181a1.149 1.149 0 0 1 1.01.599 1.195 1.195 0 0 1 .006 1.15l-.004.008-1.318 2.359a.75.75 0 0 1-.655.384H6.411a.75.75 0 0 1-.655-.384L4.436 19a1.193 1.193 0 0 1 .42-1.587c.177-.107.381-.165.59-.165Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-flower-growth" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M17.036 2.107a.75.75 0 1 0-.882-1.213c-2.475 1.8-3.756 4.449-4.4 6.988-.546 2.153-.647 4.275-.61 5.845H4.655a.75.75 0 0 0 0 1.5h1.39l.419 4.693a2.826 2.826 0 0 0 2.815 2.575h5.286a2.826 2.826 0 0 0 2.815-2.575l.419-4.693h1.39a.75.75 0 1 0 0-1.5H12.644c-.037-1.483.057-3.476.564-5.476.593-2.34 1.735-4.622 3.828-6.144Zm-5.123 13.12h4.381l-.407 4.56a1.326 1.326 0 0 1-1.321 1.208H9.28c-.687 0-1.26-.525-1.32-1.209l-.408-4.559h4.36Zm-1.48-6.399-.39-.64.741-.12c.048.302-.09.602-.35.76Zm-8.89-4.563-.203-.722h.002l.003-.001.01-.003.038-.01.139-.037A19.001 19.001 0 0 1 3.68 3.08a12.547 12.547 0 0 1 2.088-.113c.703.028 1.438.14 2.067.43 1.269.586 1.994 1.835 2.394 2.797a9.505 9.505 0 0 1 .546 1.826l.006.034.002.01v.005l-.74.12.39.64-.001.001-.003.002-.01.005-.029.018-.104.06a9.509 9.509 0 0 1-1.64.71c-.991.32-2.412.577-3.68-.008-.63-.29-1.193-.777-1.67-1.293A12.546 12.546 0 0 1 2.028 6.66 19.005 19.005 0 0 1 .885 4.629L.87 4.594l-.005-.01-.001-.003V4.58H.861l.681-.315Zm0 0-.203-.722A.75.75 0 0 0 .862 4.58l.681-.314Zm1.105.51c.17.31.387.682.638 1.069.327.504.706 1.021 1.112 1.461.412.446.819.775 1.196.95.744.342 1.705.227 2.592-.06a7.98 7.98 0 0 0 1.002-.402 7.979 7.979 0 0 0-.344-1.024c-.358-.86-.894-1.667-1.637-2.01-.377-.174-.892-.27-1.499-.294a11.062 11.062 0 0 0-1.833.102c-.457.06-.88.136-1.227.208Zm7.006 2.771Zm6.253-.792-.496-.563a.75.75 0 0 0-.213.809l.709-.246Zm7.061 1.862.616-.428v-.001l-.002-.003-.005-.007-.019-.026a10.658 10.658 0 0 0-.31-.415 15.013 15.013 0 0 0-.856-1.007 9.948 9.948 0 0 0-1.22-1.124c-.445-.339-.964-.65-1.516-.796-1.115-.294-2.219.121-2.948.507a7.59 7.59 0 0 0-1.265.847l-.021.019-.007.006-.002.002h-.001l.495.564-.709.246v.002l.002.003.003.008.01.027a5 5 0 0 0 .164.4c.114.253.286.598.518.96.444.696 1.2 1.6 2.315 1.895.552.145 1.157.13 1.71.055a9.948 9.948 0 0 0 1.617-.377 15 15 0 0 0 1.716-.662l.028-.014.009-.004.002-.001h.001l-.325-.676Zm0 0 .616-.428a.75.75 0 0 1-.29 1.103l-.326-.675Zm-1.673-.864c.178.191.341.38.484.55-.208.079-.443.162-.693.24-.441.14-.916.26-1.367.321-.459.062-.843.056-1.127-.019-.556-.146-1.048-.649-1.433-1.251a5.979 5.979 0 0 1-.333-.596c.162-.112.361-.237.584-.355.632-.334 1.307-.53 1.864-.382.283.074.62.258.99.539.361.275.715.614 1.03.953Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-further-reading" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#ama)" stroke="#03020D" stroke-width="1.5" stroke-linecap="round"><rect x="1.65" y="5.429" width="17" height="17" rx="2.353"/><path d="M5.45 5.243v-1.29c0-1.3 1.054-2.353 2.353-2.353h12.294c1.3 0 2.353 1.053 2.353 2.353v12.294c0 1.3-1.053 2.353-2.353 2.353h-1.29M6.656 9.934h7M6.656 13.934h7M6.656 17.934h4"/></g></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-glasses" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.35 5.5a1.75 1.75 0 1 1 3.5 0V7a.75.75 0 1 0 1.5 0V5.5a3.25 3.25 0 0 0-6.5 0V18a.75.75 0 0 0 1.4.374V19A2.75 2.75 0 0 0 5 21.75h3A2.75 2.75 0 0 0 10.75 19v-.25h2.5V19A2.75 2.75 0 0 0 16 21.75h3A2.75 2.75 0 0 0 21.75 19v-.625a.75.75 0 0 0 1.4-.375V5.5a3.25 3.25 0 1 0-6.5 0V7a.75.75 0 0 0 1.5 0V5.5a1.75 1.75 0 1 1 3.5 0v10.762A2.751 2.751 0 0 0 19 14.25h-3A2.75 2.75 0 0 0 13.25 17v.25h-2.5V17A2.75 2.75 0 0 0 8 14.25H5a2.751 2.751 0 0 0-2.65 2.012V5.5ZM3.75 17c0-.69.56-1.25 1.25-1.25h3c.69 0 1.25.56 1.25 1.25v2c0 .69-.56 1.25-1.25 1.25H5c-.69 0-1.25-.56-1.25-1.25v-2ZM16 15.75c-.69 0-1.25.56-1.25 1.25v2c0 .69.56 1.25 1.25 1.25h3c.69 0 1.25-.56 1.25-1.25v-2c0-.69-.56-1.25-1.25-1.25h-3Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-heartbeat-outline" xmlns="http://www.w3.org/2000/svg"><path d="M20.564 11c.276-.87.436-1.788.436-2.75 0-2.485-2.099-4.5-4.688-4.5-1.935 0-3.597 1.126-4.312 2.733-.715-1.607-2.377-2.733-4.313-2.733C5.1 3.75 3 5.765 3 8.25c0 .962.16 1.88.437 2.75m15.96 2.5C16.81 17.695 12 20.25 12 20.25s-4.81-2.555-7.398-6.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M2 13.44h3.785l1.97-2.45 1.97 4.384L11.697 10l1.97 3.617 1.971-2.626 1.97 2.448H22" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-heartbeat-solid" xmlns="http://www.w3.org/2000/svg"><path d="M3.302 12.683c.25.522.537 1.022.847 1.5H2a.75.75 0 0 1 0-1.5h1.302Zm18.774.004a.75.75 0 0 1 0 1.492l-.076.004h-2.15c.311-.478.598-.978.848-1.5H22l.076.004Z" fill="currentColor"/><path d="M13.008 13.969a.751.751 0 0 0 1.259.091l1.39-1.855 1.366 1.697a.75.75 0 0 0 .584.28h2.244c-.836 1.285-1.85 2.401-2.84 3.324a25.175 25.175 0 0 1-4.244 3.17c-.128.076-.23.134-.3.174l-.083.044-.023.013-.006.004-.003.001a.753.753 0 0 1-.704 0h-.003l-.006-.005-.023-.012-.083-.045a22.81 22.81 0 0 1-1.355-.835 25.176 25.176 0 0 1-3.19-2.51c-.99-.922-2.003-2.038-2.839-3.322h1.636a.75.75 0 0 0 .584-.28l1.203-1.497 1.47 3.269a.75.75 0 0 0 1.388-.05l1.4-3.82 1.178 2.164ZM16.313 3c2.973 0 5.437 2.322 5.437 5.25 0 1.609-.41 3.093-1.052 4.433h-2.731l-1.745-2.17a.75.75 0 0 0-1.13-.045l-.055.066-1.27 1.693-1.412-2.592a.75.75 0 0 0-1.318 0l-.045.1-1.338 3.645-1.215-2.703a.75.75 0 0 0-1.203-.235l-.065.072-1.745 2.169H3.302C2.66 11.343 2.25 9.859 2.25 8.25 2.25 5.322 4.714 3 7.688 3A5.5 5.5 0 0 1 12 5.052 5.5 5.5 0 0 1 16.313 3Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-history" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10a1 1 0 1 1 2 0c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0a1 1 0 1 1 0 2Zm0 2a1 1 0 0 1 1 1v6.08a1 1 0 0 0 .35.76l2.8 2.4a1 1 0 0 1-1.3 1.52l-2.802-2.402A3 3 0 0 1 11 11.08V5a1 1 0 0 1 1-1Zm7.75 1.25a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM17.5 2a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM22 8.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-live-chat" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M15 1a3 3 0 0 1 3 3v3h3a3 3 0 0 1 3 3v11.506c0 1.024-1.165 1.614-1.99 1.006l-2.938-2.16H9a3 3 0 0 1-3-3v-3H4.928l-2.937 2.16C1.165 17.12 0 16.53 0 15.506V4a3 3 0 0 1 3-3h12ZM8 14.351v3a1 1 0 0 0 1 1h10.728L22 20.023V10a1 1 0 0 0-1-1h-3v2.351a3 3 0 0 1-3 3H8ZM16 9v2.351a1 1 0 0 1-1 1H8V10a1 1 0 0 1 1-1h7Zm0-2H9a3 3 0 0 0-3 3v2.351H4.272L2 14.023V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-mouse" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 .25A7.75 7.75 0 0 0 4.25 8v8a7.75 7.75 0 0 0 15.5 0V8A7.75 7.75 0 0 0 12 .25ZM5.75 8a6.25 6.25 0 1 1 12.5 0v8a6.25 6.25 0 1 1-12.5 0V8ZM12 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-partial" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 12c0 5.799 4.701 10.5 10.5 10.5S22.5 17.799 22.5 12 17.799 1.5 12 1.5 1.5 6.201 1.5 12ZM0 12c0 6.627 5.373 12 12 12s12-5.373 12-12S18.627 0 12 0 0 5.373 0 12Z" fill="currentColor"/><path d="M11.583 23.576C5.38 23.356.417 18.258.417 12 .417 5.742 5.379.643 11.583.424v23.152Z" fill="currentColor" stroke="currentColor" stroke-width=".833"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-pitfall" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M.55 4.284A3.426 3.426 0 0 1 3.976.858h13.38a3.426 3.426 0 0 1 3.426 3.426v6.104a.75.75 0 0 1-1.5 0V6.602H2.05v11.061c0 1.064.862 1.926 1.926 1.926h4.348a.75.75 0 0 1 0 1.5H3.976A3.426 3.426 0 0 1 .55 17.663V4.283Zm1.5.818h17.232v-.818a1.926 1.926 0 0 0-1.926-1.926H3.976A1.926 1.926 0 0 0 2.05 4.284v.818Zm12.918 6.217c.774-1.34 2.71-1.34 3.483 0l4.745 8.218c.773 1.34-.194 3.016-1.742 3.016h-9.489c-1.548 0-2.515-1.676-1.741-3.016l4.744-8.218Zm2.184.75a.51.51 0 0 0-.885 0l-4.744 8.218a.51.51 0 0 0 .442.766h9.49a.51.51 0 0 0 .442-.766l-4.745-8.218ZM16 17.65a.75.75 0 0 0 1.5 0v-3.5a.75.75 0 0 0-1.5 0v3.5Zm1.468 1.951a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM5.4 3.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-ai-transport-outline" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M11.498 1.016c.334 0 .628.221.72.543l.811 2.841A3.743 3.743 0 0 0 15.6 6.971l2.841.812a.749.749 0 0 1 0 1.44l-2.84.811a3.743 3.743 0 0 0-2.572 2.572l-.812 2.84a.749.749 0 0 1-1.44 0l-.811-2.84a3.743 3.743 0 0 0-2.571-2.572l-2.841-.811a.749.749 0 0 1 0-1.44l2.84-.812a3.743 3.743 0 0 0 2.572-2.57l.812-2.842a.749.749 0 0 1 .72-.543Z" stroke="currentColor" stroke-width="1.307" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.455 14.642 3.56 18.536M5.059 12.995l-2.097 2.097" stroke="currentColor" stroke-width="1.307" stroke-linecap="round" stroke-linejoin="round"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-ai-transport-solid" xmlns="http://www.w3.org/2000/svg"><path d="M19.638 8.502c0 .626-.415 1.177-1.017 1.349l-2.841.812a3.09 3.09 0 0 0-2.122 2.121l-.812 2.842a1.402 1.402 0 0 1-2.697 0l-.812-2.841a3.09 3.09 0 0 0-2.121-2.122L4.374 9.85a1.402 1.402 0 0 1 0-2.697l2.842-.812A3.09 3.09 0 0 0 9.337 4.22l.812-2.841a1.402 1.402 0 0 1 2.697 0l.812 2.841a3.09 3.09 0 0 0 2.122 2.122l2.841.812a1.403 1.403 0 0 1 1.017 1.348ZM6.993 14.18a.653.653 0 1 1 .924.924l-3.894 3.893a.653.653 0 0 1-.924-.924l3.894-3.893ZM4.597 12.533a.653.653 0 1 1 .924.924l-2.097 2.096a.653.653 0 1 1-.924-.924l2.097-2.096Z" fill="#FF5416"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-asset-tracking-outline" xmlns="http://www.w3.org/2000/svg"><path d="m13.32 20.397.558.5-.558-.5Zm-2.64 0-.558.5.558-.5Zm7.807-10.167c0 .644-.2 1.42-.571 2.292-.369.865-.888 1.779-1.482 2.685-1.189 1.813-2.64 3.538-3.672 4.69l1.116 1c1.056-1.176 2.563-2.964 3.81-4.867.624-.952 1.193-1.947 1.608-2.92.411-.965.69-1.953.69-2.88h-1.5ZM12 3.743a6.487 6.487 0 0 1 6.487 6.487h1.5A7.987 7.987 0 0 0 12 2.243v1.5ZM5.513 10.23A6.487 6.487 0 0 1 12 3.743v-1.5a7.987 7.987 0 0 0-7.987 7.987h1.5Zm5.726 9.666c-1.033-1.151-2.484-2.876-3.673-4.689-.594-.906-1.113-1.82-1.482-2.685-.371-.871-.57-1.648-.57-2.292h-1.5c0 .927.279 1.915.69 2.88.415.973.984 1.968 1.608 2.92 1.248 1.903 2.755 3.691 3.81 4.868l1.117-1.002Zm1.523 0a1.009 1.009 0 0 1-1.524 0l-1.116 1.002a2.509 2.509 0 0 0 3.756 0l-1.116-1.002Zm1.383-9.666c0 1.185-.96 2.145-2.145 2.145v1.5a3.645 3.645 0 0 0 3.645-3.645h-1.5ZM12 8.085c1.184 0 2.145.96 2.145 2.145h1.5A3.645 3.645 0 0 0 12 6.585v1.5ZM9.855 10.23c0-1.184.96-2.145 2.145-2.145v-1.5a3.645 3.645 0 0 0-3.645 3.645h1.5ZM12 12.375a2.145 2.145 0 0 1-2.145-2.145h-1.5A3.645 3.645 0 0 0 12 13.875v-1.5Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-asset-tracking-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.013 10.23a7.987 7.987 0 0 1 15.974 0c0 .927-.28 1.915-.691 2.88-.415.973-.984 1.968-1.608 2.92-1.247 1.903-2.754 3.691-3.81 4.868a2.509 2.509 0 0 1-3.756 0c-1.055-1.177-2.562-2.965-3.81-4.868-.624-.952-1.193-1.947-1.608-2.92-.411-.965-.69-1.953-.69-2.88Zm4.342 0a3.645 3.645 0 1 1 7.29 0 3.645 3.645 0 0 1-7.29 0Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-chat-outline" xmlns="http://www.w3.org/2000/svg"><path d="M7 3h10a3.333 3.333 0 0 1 3.333 3.333v12.402c0 .869-1.031 1.324-1.673.739l-3.802-3.467a.667.667 0 0 0-.45-.174H7A3.333 3.333 0 0 1 3.667 12.5V6.333A3.333 3.333 0 0 1 7 3Z" stroke="currentColor" stroke-width="1.5"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-chat-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.917 6.333A4.083 4.083 0 0 1 7 2.25h10a4.083 4.083 0 0 1 4.083 4.083v12.402c0 1.52-1.805 2.318-2.929 1.293l-3.778-3.445H7A4.083 4.083 0 0 1 2.917 12.5V6.333Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-liveobjects-outline" xmlns="http://www.w3.org/2000/svg"><path d="M14.038 3h2.886A4.076 4.076 0 0 1 21 7.075v2.887M9.962 3H7.075A4.075 4.075 0 0 0 3 7.075v2.887m0 4.076v2.886A4.076 4.076 0 0 0 7.075 21h2.887M21 14.038v2.886A4.076 4.076 0 0 1 16.924 21h-2.886" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/><path d="m8.434 12.34 2.887 2.886 4.415-6.452" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-liveobjects-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7 2a5 5 0 0 0-5 5v10a5 5 0 0 0 5 5h10a5 5 0 0 0 5-5V7a5 5 0 0 0-5-5H7Zm9.355 7.197a.75.75 0 0 0-1.238-.847l-3.905 5.707-2.248-2.248a.75.75 0 1 0-1.06 1.06l2.886 2.888a.75.75 0 0 0 1.15-.107l4.415-6.453Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-livesync-outline" xmlns="http://www.w3.org/2000/svg"><path d="M19.703 20H12v-5.884c0-.125.143-.196.242-.12l7.552 5.733a.151.151 0 0 1-.091.271ZM4 10.188v3.774A6.038 6.038 0 0 0 10.038 20H12M4.297 4H12v5.884a.151.151 0 0 1-.242.12L4.206 4.272A.15.15 0 0 1 4.297 4ZM20 13.812v-3.774A6.038 6.038 0 0 0 13.962 4H12" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-livesync-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M20 14.561a.75.75 0 0 1-.75-.75v-3.773a5.288 5.288 0 0 0-5.288-5.288H12.75v5.134a.9.9 0 0 1-1.446.718L3.753 4.868c-.688-.522-.319-1.618.544-1.618h9.665a6.788 6.788 0 0 1 6.788 6.788v3.773a.75.75 0 0 1-.75.75ZM4 9.438a.75.75 0 0 1 .75.75v3.774a5.288 5.288 0 0 0 5.288 5.288h1.212v-5.134a.901.901 0 0 1 1.446-.718l7.551 5.733c.688.523.319 1.619-.544 1.619h-9.665a6.788 6.788 0 0 1-6.788-6.788v-3.774a.75.75 0 0 1 .75-.75Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-pubsub-outline" xmlns="http://www.w3.org/2000/svg"><path d="M10.994 3.328 4.106 14.403a.692.692 0 0 0 .587 1.058h7.235c.191 0 .346.155.346.347v4.498c0 .697.913.957 1.28.366l6.889-11.076a.692.692 0 0 0-.588-1.057H12.62a.346.346 0 0 1-.346-.347V3.694c0-.697-.912-.957-1.28-.366Z" stroke="currentColor" stroke-width="1.5"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-pubsub-solid" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.357 2.932c.766-1.232 2.667-.69 2.667.762v4.095h6.831a1.442 1.442 0 0 1 1.225 2.204L14.19 21.068c-.766 1.232-2.667.69-2.667-.761v-4.095h-6.83a1.442 1.442 0 0 1-1.225-2.204l6.888-11.076Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-spaces-outline" xmlns="http://www.w3.org/2000/svg"><path d="M8.262 19.89 4.292 5.543a1.018 1.018 0 0 1 1.252-1.252l14.345 3.97c.941.26 1.011 1.568.104 1.928l-6.475 2.567a1.358 1.358 0 0 0-.761.761l-2.567 6.475c-.36.907-1.667.837-1.928-.104Z" stroke="currentColor" stroke-width="1.5"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-prod-spaces-solid" xmlns="http://www.w3.org/2000/svg"><path d="M3.569 5.744C3.203 4.42 4.42 3.203 5.744 3.57l14.345 3.97c1.634.453 1.756 2.723.18 3.348l-6.474 2.567a.607.607 0 0 0-.34.34l-2.568 6.476c-.625 1.575-2.895 1.453-3.348-.18L3.57 5.743Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-quote-marks-fill" xmlns="http://www.w3.org/2000/svg"><path d="M22.467 21.167a1 1 0 0 1-1 1h-6.468a1 1 0 0 1-1-1v-5.7c0-2.734.232-4.878.695-6.434.486-1.555 1.37-2.955 2.65-4.2 1.096-1.047 2.427-1.905 3.992-2.575.5-.213 1.066.047 1.263.553l.405 1.046c.207.532-.076 1.124-.591 1.37-1.39.662-2.478 1.63-3.146 2.54-.65.91-1.206 2.466-1.41 4.013-.074.556.381 1.02.943 1.02h2.667a1 1 0 0 1 1 1v7.367ZM9.068 21.167a1 1 0 0 1-1 1H1.6a1 1 0 0 1-1-1v-5.7c0-2.734.232-4.878.695-6.434.486-1.555 1.37-2.955 2.65-4.2C5.04 3.786 6.372 2.928 7.937 2.258c.5-.213 1.066.047 1.263.553l.405 1.046c.207.532-.076 1.124-.591 1.37-1.39.662-2.478 1.63-3.146 2.54-.65.91-1.206 2.466-1.41 4.013-.074.556.381 1.02.943 1.02h2.667a1 1 0 0 1 1 1v7.367Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-refresh" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#bka)"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.65.24a1 1 0 0 0-1.3 1.52l1.522 1.305C5.92 3.635 2 7.909 2 13c0 5.472 4.528 10 10 10s10-4.528 10-10a1 1 0 1 0-2 0c0 4.368-3.632 8-8 8s-8-3.632-8-8c0-4.038 3.105-7.448 7.025-7.94L9.293 6.794a1 1 0 1 0 1.414 1.414l3.5-3.5a1 1 0 0 0-.056-1.466l-3.5-3Z" fill="currentColor"/></g></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-resources" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M5 1.5c-.69 0-1.25.56-1.25 1.25v1H5a.75.75 0 0 1 0 1.5H3.75v1.5H5a.75.75 0 0 1 0 1.5H3.75v1.5H5a.75.75 0 0 1 0 1.5H3.75v1.5H5a.75.75 0 0 1 0 1.5H3.75v1.5H5a.75.75 0 0 1 0 1.5H3.75v1.5H5a.75.75 0 0 1 0 1.5H3.75v1c0 .69.56 1.25 1.25 1.25h13.5c.69 0 1.25-.56 1.25-1.25v-1.5H12A2.75 2.75 0 0 1 9.25 17v-5A2.75 2.75 0 0 1 12 9.25h7.75v-5.5A2.25 2.25 0 0 0 17.5 1.5H5ZM2.25 2.75v1H1a.75.75 0 0 0 0 1.5h1.25v1.5H1a.75.75 0 0 0 0 1.5h1.25v1.5H1a.75.75 0 0 0 0 1.5h1.25v1.5H1a.75.75 0 0 0 0 1.5h1.25v1.5H1a.75.75 0 0 0 0 1.5h1.25v1.5H1a.75.75 0 0 0 0 1.5h1.25v1A2.75 2.75 0 0 0 5 24h13.5a2.75 2.75 0 0 0 2.75-2.75v-1.511A2.75 2.75 0 0 0 23.75 17v-5a2.75 2.75 0 0 0-2.5-2.739V3.75A3.75 3.75 0 0 0 17.5 0H5a2.75 2.75 0 0 0-2.75 2.75Zm18.25 8H12c-.69 0-1.25.56-1.25 1.25v5c0 .69.56 1.25 1.25 1.25h9c.69 0 1.25-.56 1.25-1.25v-5c0-.69-.56-1.25-1.25-1.25h-.5Zm-8-6.5a1.5 1.5 0 0 1 1.5-1.5h3a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1-1.5 1.5h-3a1.5 1.5 0 0 1-1.5-1.5v-1Zm1.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-3Zm1.5 9.508 1.975 1.241L15.5 15.74v-2.482Zm2.542 2.066a.971.971 0 0 0 0-1.65l-2.024-1.272c-.641-.402-1.518.034-1.518.825v2.545c0 .79.877 1.227 1.518.824l2.024-1.272Z" fill="currentColor"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-spinner-dark" xmlns="http://www.w3.org/2000/svg"><path d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 18a8 8 0 1 1 0-16 8 8 0 0 1 0 16Z" fill="#687288"/><path d="M20 12h2A10 10 0 0 0 12 2v2a8 8 0 0 1 8 8Z" fill="#FF5416"/></symbol><symbol fill="none" viewBox="0 0 24 24" id="sprite-icon-gui-spinner-light" xmlns="http://www.w3.org/2000/svg"><path d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 18a8 8 0 1 1 0-16 8 8 0 0 1 0 16Z" fill="#EEF1F6"/><path d="M20 12h2A10 10 0 0 0 12 2v2a8 8 0 0 1 8 8Z" fill="#FF5416"/></symbol></svg>
package/index.d.ts CHANGED
@@ -10,12 +10,12 @@ import { ColorThemeSet } from ".@ably/ui/core/styles/colors/types";
10
10
  export type AccordionData = {
11
11
  /**
12
12
  * The name of the accordion item.
13
- * @deprecated Use `heading` for custom heading content. This will be used as fallback if `heading` is not provided.
14
13
  */
15
14
  name: string;
16
15
  /**
17
16
  * Custom heading content. If provided, this will be used instead of `name`.
18
- * Can be a ReactNode or a function that receives the index and isOpen state and returns ReactNode.
17
+ * Can be a ReactNode or a function that receives the index and isOpen state
18
+ * and returns ReactNode.
19
19
  */
20
20
  heading?: ReactNode | ((index: number, isOpen: boolean) => ReactNode);
21
21
  /**
@@ -140,6 +140,11 @@ export type AccordionOptions = {
140
140
  * @default ""
141
141
  */
142
142
  contentCSS?: string;
143
+ /**
144
+ * Custom CSS classes to apply to the accordion item wrapper when it is open/active.
145
+ * @default ""
146
+ */
147
+ selectedItemCSS?: string;
143
148
  };
144
149
  //# sourceMappingURL=types.d.ts.map
145
150
  }
@@ -2485,17 +2490,6 @@ export default ForwardRef;
2485
2490
  //# sourceMappingURL=icon-gui-spinner-light.d.ts.map
2486
2491
  }
2487
2492
 
2488
- declare module '@ably/ui/core/Icon/components/icon-gui-square-3-stack-3d' {
2489
- import * as React from "react";
2490
- interface SVGRProps {
2491
- title?: string;
2492
- titleId?: string;
2493
- }
2494
- const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2495
- export default ForwardRef;
2496
- //# sourceMappingURL=icon-gui-square-3-stack-3d.d.ts.map
2497
- }
2498
-
2499
2493
  declare module '@ably/ui/core/Icon/components/icon-product-ai-transport-mono' {
2500
2494
  import * as React from "react";
2501
2495
  interface SVGRProps {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ably/ui",
3
- "version": "17.12.0-dev.dcf685cd",
3
+ "version": "17.12.0",
4
4
  "description": "Home of the Ably design system library ([design.ably.com](https://design.ably.com)). It provides a showcase, development/test environment and a publishing pipeline for different distributables.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -56,7 +56,7 @@
56
56
  "msw": "2.12.0",
57
57
  "msw-storybook-addon": "^2.0.5",
58
58
  "playwright": "^1.49.1",
59
- "posthog-js": "^1.321.0",
59
+ "posthog-js": "^1.328.0",
60
60
  "prettier": "^3.8.0",
61
61
  "storybook": "^10.1.10",
62
62
  "svg-sprite": "^2.0.4",
@@ -81,7 +81,7 @@
81
81
  "embla-carousel": "^8.6.0",
82
82
  "embla-carousel-autoplay": "^8.6.0",
83
83
  "embla-carousel-react": "^8.6.0",
84
- "es-toolkit": "^1.43.0",
84
+ "es-toolkit": "^1.44.0",
85
85
  "highlight.js": "^11.11.1",
86
86
  "highlightjs-curl": "^1.3.0",
87
87
  "js-cookie": "^3.0.5",
@@ -1,2 +0,0 @@
1
- import*as React from"react";import{forwardRef}from"react";const IconGuiSquare3Stack3d=({title,titleId,...props},ref)=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"currentColor",viewBox:"0 0 24 24",ref:ref,"aria-labelledby":titleId,...props},title?React.createElement("title",{id:titleId},title):null,React.createElement("path",{stroke:"#03020D",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M6.429 9.75 2.25 12l4.179 2.25m0-4.5 5.571 3 5.571-3m-11.142 0L2.25 7.5 12 2.25l9.75 5.25-4.179 2.25m0 0L21.75 12l-4.179 2.25m0 0 4.179 2.25L12 21.75 2.25 16.5l4.179-2.25m11.142 0-5.571 3-5.571-3"}));const ForwardRef=forwardRef(IconGuiSquare3Stack3d);export default ForwardRef;
2
- //# sourceMappingURL=icon-gui-square-3-stack-3d.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../../../src/core/Icon/components/icon-gui-square-3-stack-3d.tsx"],"sourcesContent":["import * as React from \"react\";\nimport type { SVGProps } from \"react\";\nimport { Ref, forwardRef } from \"react\";\ninterface SVGRProps {\n title?: string;\n titleId?: string;\n}\nconst IconGuiSquare3Stack3d = ({\n title,\n titleId,\n ...props\n}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => <svg xmlns=\"http://www.w3.org/2000/svg\" width={24} height={24} fill=\"currentColor\" viewBox=\"0 0 24 24\" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path stroke=\"#03020D\" strokeLinecap=\"round\" strokeLinejoin=\"round\" strokeWidth={1.5} d=\"M6.429 9.75 2.25 12l4.179 2.25m0-4.5 5.571 3 5.571-3m-11.142 0L2.25 7.5 12 2.25l9.75 5.25-4.179 2.25m0 0L21.75 12l-4.179 2.25m0 0 4.179 2.25L12 21.75 2.25 16.5l4.179-2.25m11.142 0-5.571 3-5.571-3\" /></svg>;\nconst ForwardRef = forwardRef(IconGuiSquare3Stack3d);\nexport default ForwardRef;"],"names":["React","forwardRef","IconGuiSquare3Stack3d","title","titleId","props","ref","svg","xmlns","width","height","fill","viewBox","aria-labelledby","id","path","stroke","strokeLinecap","strokeLinejoin","strokeWidth","d","ForwardRef"],"mappings":"AAAA,UAAYA,UAAW,OAAQ,AAE/B,QAAcC,UAAU,KAAQ,OAAQ,CAKxC,MAAMC,sBAAwB,CAAC,CAC7BC,KAAK,CACLC,OAAO,CACP,GAAGC,MACiC,CAAEC,MAA4B,oBAACC,OAAIC,MAAM,6BAA6BC,MAAO,GAAIC,OAAQ,GAAIC,KAAK,eAAeC,QAAQ,YAAYN,IAAKA,IAAKO,kBAAiBT,QAAU,GAAGC,KAAK,EAAGF,MAAQ,oBAACA,SAAMW,GAAIV,SAAUD,OAAiB,KAAK,oBAACY,QAAKC,OAAO,UAAUC,cAAc,QAAQC,eAAe,QAAQC,YAAa,IAAKC,EAAE,yMACtW,MAAMC,WAAapB,WAAWC,sBAC9B,gBAAemB,UAAW"}