proicons 4.8.0 → 4.9.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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"proicons.js","sources":["../../src/categories.ts","../../src/interfaces.ts","../../bin/rename.js","../../src/getIconInfo.ts","../../src/replace.ts","../../src/search.ts"],"sourcesContent":["import icons from './configs/tags.json'\r\n\r\n/** List of all icon categories */\r\nconst categories = Object.values(icons).map((item) => item.category).filter((value, index, self) => self.indexOf(value) === index)\r\n\r\nexport default categories","export interface ProIconReplaceConfig {\r\n /** Determines the color of the icons. Defaults to `currentColor`. */\r\n color: string,\r\n /** Determines the default stroke width of the icon. Defaults to `1.5`. This only works on SVG elements with existing strokes; add `strokeFilledElements` for this property to affect such elements. */\r\n strokeWidth: number,\r\n /** Apply strokes to filled SVG elements, such as circles, by the provided amount with `1.5` (default stroke value) subtracted, if `strokeWidth` is set to a value above `1.5`. Defaults to `false`\r\n * @example If `strokeWidth` is set to `2`, filled SVG elements will have an additional `0.5`px stroke\r\n */\r\n strokeFilledElements: boolean\r\n /** Defaults to `round` */\r\n strokeCaps: 'round' | 'square' | 'butt',\r\n /** Defaults to `round` */\r\n strokeJoin: 'round' | 'miter' | 'bevel',\r\n /** Determines the corner radius of SVG elements. Does not apply to all rounded elements. */\r\n cornerRadius: number,\r\n /** The attribute name that is checked for when converting elements to icons. Defaults to `proicon`. */\r\n attributeName: string,\r\n /** Determines whether to overwrite elements when converting to icons. Setting this to `auto` will overwrite only if the element does not have any children. Defaults to `auto`. */\r\n overwrite: boolean | 'auto',\r\n /** Determines whether to apply existing HTMl attributes such as styles to the converted SVGs. Defaults to `true` */\r\n useAttributes: false\r\n}\r\n\r\nexport class ProIconInfo {\r\n name: string;\r\n kebabCase: string;\r\n camelCase: string;\r\n element: SVGSVGElement;\r\n category: string;\r\n tags: string[];\r\n /**\r\n * \r\n * @param name The name of the icon in Friendly Form\r\n * @param kebabCase The name of the icon in kebab-case\r\n * @param camelCase The name of the icon in camelCase\r\n * @param element The icon as an `SVGSVGElement`. Use the `outerHTML` property on this to return the icon as a string.\r\n * @param category The category of the icon.\r\n * @param tags An array of the icon's tags.\r\n */\r\n constructor(\r\n name: string,\r\n kebabCase: string,\r\n camelCase: string,\r\n element: SVGSVGElement,\r\n tags: string[],\r\n category: string\r\n ) {\r\n this.name = name;\r\n this.kebabCase = kebabCase;\r\n this.camelCase = camelCase;\r\n this.element = element;\r\n this.category = category;\r\n this.tags = tags;\r\n }\r\n}","function removeParenthesis(str) {\r\n return str.replace(/[()]/g, '')\r\n}\r\nfunction camelCase(str) {\r\n return removeParenthesis(str).split(' ').map((word, i) => i == 0 ? word.toLowerCase() : word.charAt(0).toUpperCase() + word.slice(1)).join('')\r\n}\r\nfunction kebabCase(str) {\r\n return removeParenthesis(str).replaceAll(' ', '-').toLowerCase()\r\n}\r\nexport default { camelCase, kebabCase };","import icons from './configs/icons.json';\r\nimport tags from './configs/tags.json';\r\nimport { ProIconInfo } from './interfaces';\r\nimport rename from '../bin/rename';\r\n\r\n/**\r\n * Returns information about an icon from the provided key.\r\n * Throws an error if the provided key does not match an icon name in Friendly Form, camelCase or kebab-case. Use the method `search` instead to return icons that contain a keyword inside its name or tags.\r\n * @param key The icon name in Friendly Form, camelCase or kebab-case. Throws an error if the provided key is invalid. Case-insensitive\r\n * @example The following keys are valid:\r\n * getIconInfo('Add Square')\r\n * getIconInfo('addSquare')\r\n * getIconInfo('add-square')\r\n */\r\nfunction getIconInfo(key: string): ProIconInfo {\r\n let prop: string;\r\n\r\n const isFriendly = (t: string) => t.toLowerCase() == key.toLowerCase();\r\n const isKebab = (t: string) => rename.kebabCase(t.toLowerCase()) == rename.kebabCase(key.toLowerCase());\r\n const isCamel = isFriendly\r\n\r\n if (Object.keys(tags).some(isFriendly)) {\r\n prop = rename.camelCase(Object.keys(tags).find(isFriendly));\r\n\r\n } else if (Object.keys(tags).some(isKebab)) {\r\n prop = rename.camelCase(Object.keys(tags).find(isKebab));\r\n\r\n } else if (Object.keys(icons).some(isCamel)) {\r\n // @ts-ignore\r\n prop = Object.keys(icons).find(isCamel);\r\n\r\n } else {\r\n throw new Error(`Invalid icon key '${key}': Icon not found`);\r\n }\r\n\r\n const friendlyName = Object.keys(tags).find((t) => {\r\n return rename.camelCase(t) == prop;\r\n });\r\n\r\n const domParser = new DOMParser();\r\n const parsed = domParser.parseFromString(icons[prop], 'image/svg+xml');\r\n\r\n const tagItem = tags[friendlyName]\r\n const info = new ProIconInfo(\r\n friendlyName, //friendly\r\n rename.kebabCase(friendlyName), //kebab\r\n prop, //camel\r\n parsed.querySelector('svg'), //svg\r\n tagItem.description?.split(',').map(m => m.trim()), //desc\r\n tagItem.category, //tags\r\n );\r\n return info;\r\n}\r\n\r\nexport default getIconInfo","// @ts-nocheck\r\nimport getIconInfo from './getIconInfo'\r\nimport { ProIconReplaceConfig, ProIconInfo } from './interfaces';\r\n\r\n/**\r\n * Converts all elements with the `proicon` attribute (which can be customised in the config) on the page to an icon corresponding to the attribute value.\r\n * @param rootElm The element to search inside for children with the `proicon` attribute. Defaults to `document.body`.\r\n * @param config An optional configuration to customise the behaviour of the replace method\r\n */\r\nfunction replace(rootElm?: Element, config?: ProIconReplaceConfig): void {\r\n if (!rootElm) rootElm = document.body;\r\n const useAttrs = config?.useAttributes ?? true\r\n\r\n const attr = config?.attributeName ?? 'proicon';\r\n rootElm.querySelectorAll(`[${attr}]`).forEach((element) => {\r\n let toReplace;\r\n switch (config?.overwrite) {\r\n case true: toReplace = true; break;\r\n case false: toReplace = false; break;\r\n case 'auto': toReplace = !element.hasChildNodes(); break;\r\n default: toReplace = !element.hasChildNodes(); break;\r\n }\r\n\r\n let iconName = element.getAttribute(attr).trim()\r\n let icon: SVGElement = getIconInfo(iconName).element\r\n\r\n const attributeList = {\r\n // HtmlAttribute, configKey, svgAttr\r\n \"color\": [\"color\", [\"stroke\", 'fill']],\r\n \"stroke-width\": [\"strokeWidth\", [\"stroke-width\"]],\r\n \"join\": [\"strokeCaps\", [\"stroke-linejoin\"]],\r\n \"caps\": [\"strokeJoin\", [\"stroke-linecap\"]],\r\n \"corner-radius\": [\"cornerRadius\", [\"rx\"]],\r\n \"outline\": [\"strokeFilledElements\", undefined]\r\n }\r\n if (config) {\r\n Object.values(attributeList)\r\n .map((v) => v[0])\r\n .forEach((c, i) => {\r\n const htmlAttr = Object.keys(attributeList)[i];\r\n let valueToUse\r\n\r\n if (useAttrs && element.hasAttribute(htmlAttr)) {\r\n valueToUse = element.getAttribute(htmlAttr)\r\n } else if (config[c]) {\r\n valueToUse = config[c]\r\n }\r\n\r\n if (valueToUse) {\r\n element.setAttribute(htmlAttr, valueToUse);\r\n }\r\n });\r\n }\r\n for (const attr of element.attributes) {\r\n const name = attr.name.toLowerCase()\r\n const value = attr.value\r\n\r\n if (Object.hasOwn(attributeList, name)) {\r\n if (name != 'outline') {\r\n if (value) {\r\n const n = attributeList[name][1]\r\n n.forEach(x => {\r\n icon.querySelectorAll(`[${x}]`).forEach(b => {\r\n b.setAttribute(x, value)\r\n })\r\n })\r\n }\r\n } else {\r\n // Behaviour for outlining\r\n const defaultStrokeWidth = 1.5\r\n const unstrokedElms = Array.from(icon.querySelectorAll('*')).filter(f => !f.hasAttribute('stroke'))\r\n\r\n unstrokedElms.forEach(elm => {\r\n const reducedStroke = +element.getAttribute('stroke-width') - defaultStrokeWidth\r\n if (reducedStroke > 0) {\r\n elm.setAttribute('stroke', element.getAttribute('color') ?? 'currentColor')\r\n elm.setAttribute('stroke-width', reducedStroke)\r\n elm.setAttribute('stroke-linejoin', element.getAttribute('strokeJoin') ?? 'round')\r\n elm.setAttribute('stroke-linecap', element.getAttribute('strokeCaps') ?? 'round')\r\n }\r\n })\r\n }\r\n } else {\r\n icon.setAttribute(name, value)\r\n }\r\n }\r\n\r\n\r\n icon.classList.add('proicon')\r\n icon.setAttribute('data-proicon-id', getIconInfo(iconName).kebabCase)\r\n\r\n toReplace == true ? element.replaceWith(icon)\r\n : element.insertBefore(icon, element.childNodes[0])\r\n });\r\n}\r\n\r\nexport default replace\r\n","import getIconInfo from \"./getIconInfo\"\r\nimport tags from './configs/tags.json'\r\nimport icons from './configs/icons.json'\r\nimport { ProIconInfo } from \"./interfaces\"\r\n\r\n/** Searches for icons with names or tags that contain `key` and returns them as `ProIconInfo`. */\r\nfunction search(key: string): ProIconInfo[] {\r\n const iconsAsInfo = Object.keys(icons).map((icon) => {\r\n // Don't index the element\r\n const j = getIconInfo(icon)\r\n delete j.element\r\n return j\r\n })\r\n const filtered = iconsAsInfo.filter((icon) => JSON.stringify(icon).includes(key))\r\n\r\n return filtered\r\n}\r\n\r\nexport default search"],"names":["categories","icons","item","value","index","self","ProIconInfo","name","kebabCase","camelCase","element","tags","category","removeParenthesis","str","word","i","rename","getIconInfo","key","prop","isFriendly","t","isKebab","isCamel","friendlyName","parsed","tagItem","_a","m","replace","rootElm","config","useAttrs","attr","_b","toReplace","iconName","icon","attributeList","v","c","htmlAttr","valueToUse","x","b","f","elm","reducedStroke","_c","search","j"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
package/dist/icons.json CHANGED
@@ -224,9 +224,9 @@
224
224
  "vehicleCar": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M3.75 11.75C3.75 10.6454 4.64543 9.75 5.75 9.75H18.25C19.3546 9.75 20.25 10.6454 20.25 11.75V17.75H3.75V11.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<circle cx=\"7\" cy=\"13\" r=\"1\" fill=\"currentColor\"/>\r\n<circle cx=\"17\" cy=\"13\" r=\"1\" fill=\"currentColor\"/>\r\n<path d=\"M10 14.75H14\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M6.27127 5.56651C6.55868 4.77613 7.30984 4.25 8.15085 4.25H15.8491C16.6902 4.25 17.4413 4.77614 17.7287 5.56651L19.25 9.75H4.75L6.27127 5.56651Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M3.75 17.75H7.1875V19.45C7.1875 20.168 6.60547 20.75 5.8875 20.75H5.05C4.33203 20.75 3.75 20.168 3.75 19.45V17.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M16.8125 17.75H20.25V19.45C20.25 20.168 19.668 20.75 18.95 20.75H18.1125C17.3945 20.75 16.8125 20.168 16.8125 19.45V17.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n</svg>\r\n",
225
225
  "barGraph": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M2.75 21H21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<rect x=\"4\" y=\"7.5\" width=\"6\" height=\"10\" rx=\"2\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<rect x=\"14\" y=\"2.5\" width=\"6\" height=\"15\" rx=\"2\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n</svg>\r\n",
226
226
  "boxMargins": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<rect x=\"3.75\" y=\"3.75\" width=\"16.5\" height=\"16.5\" rx=\"3\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M7.75 3.75L7.75 20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M16.25 20.25L16.25 3.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M3.75 7.75H20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M20.25 16.25H3.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n</svg>\r\n",
227
- "clipboard": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M20.1288 15.8682V8.13182C20.1288 6.24801 20.1288 5.3061 19.7622 4.58658C19.4397 3.95367 18.9251 3.4391 18.2922 3.11661C17.5727 2.75 16.6308 2.75 14.747 2.75H9.25303C7.36922 2.75 6.42731 2.75 5.70779 3.11661C5.07488 3.4391 4.56031 3.95367 4.23783 4.58658C3.87122 5.3061 3.87122 6.24801 3.87122 8.13182V15.8682C3.87122 17.752 3.87122 18.6939 4.23783 19.4134C4.56031 20.0463 5.07488 20.5609 5.70779 20.8834C6.42731 21.25 7.36922 21.25 9.25303 21.25H14.747C16.6308 21.25 17.5727 21.25 18.2922 20.8834C18.9251 20.5609 19.4397 20.0463 19.7622 19.4134C20.1288 18.6939 20.1288 17.752 20.1288 15.8682Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M8.07576 2.77644C8.07576 2.76718 8.07576 2.76256 8.07743 2.75902C8.0789 2.75591 8.08124 2.75339 8.08412 2.7518C8.0874 2.75 8.09169 2.75 8.10026 2.75H15.8997C15.9083 2.75 15.9126 2.75 15.9159 2.7518C15.9188 2.75339 15.9211 2.75591 15.9226 2.75902C15.9242 2.76256 15.9242 2.76718 15.9242 2.77644V3.98333C15.9242 4.92524 15.9242 5.39619 15.7409 5.75595C15.5797 6.07241 15.3224 6.32969 15.006 6.49094C14.6462 6.67424 14.1752 6.67424 13.2333 6.67424H10.7667C9.82476 6.67424 9.35381 6.67424 8.99405 6.49094C8.6776 6.32969 8.42031 6.07241 8.25907 5.75595C8.07576 5.39619 8.07576 4.92524 8.07576 3.98333V2.77644Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n</svg>\r\n",
228
- "clipboardPaste": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M9.24879 21.25H8.13302C6.24921 21.25 5.3073 21.25 4.58778 20.8834C3.95487 20.5609 3.4403 20.0463 3.11782 19.4134C2.75121 18.6939 2.75121 17.752 2.75121 15.8682V8.13182C2.75121 6.24801 2.75121 5.3061 3.11782 4.58658C3.4403 3.95367 3.95487 3.4391 4.58778 3.11661C5.3073 2.75 6.24921 2.75 8.13302 2.75H13.627C15.5108 2.75 16.4527 2.75 17.1722 3.11661C17.8051 3.4391 18.3197 3.95367 18.6422 4.58658C18.8833 5.05989 18.9659 5.62942 18.9941 6.5C18.9992 6.65654 19.0025 6.57281 19.0047 6.75L19 7.75M14.7797 2.75H6.98025C6.97168 2.75 6.96739 2.75 6.96411 2.7518C6.96123 2.75339 6.95889 2.75591 6.95742 2.75902C6.95575 2.76256 6.95575 2.76718 6.95575 2.77644V3.98333C6.95575 4.92524 6.95575 5.39619 7.13906 5.75595C7.3003 6.07241 7.55759 6.32969 7.87404 6.49094C8.17916 6.6464 8.56425 6.67001 9.24879 6.6736C9.37139 6.67424 9.50359 6.67424 9.64666 6.67424H12.1133C13.0552 6.67424 13.5262 6.67424 13.8859 6.49094C14.2024 6.32969 14.4597 6.07241 14.6209 5.75595C14.8042 5.39619 14.8042 4.92524 14.8042 3.98333V2.77644C14.8042 2.76718 14.8042 2.76256 14.8026 2.75902C14.8011 2.75591 14.7988 2.75339 14.7959 2.7518C14.7926 2.75 14.7883 2.75 14.7797 2.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M11.7488 12.75C11.7488 11.3693 12.8681 10.25 14.2488 10.25H18.7488C20.1295 10.25 21.2488 11.3693 21.2488 12.75V18.75C21.2488 20.1307 20.1295 21.25 18.7488 21.25H14.2488C12.8681 21.25 11.7488 20.1307 11.7488 18.75V12.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n</svg>\r\n",
229
- "clipboardSearch": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M8.67021 19.6702C10.2533 18.0871 10.2533 15.5204 8.67021 13.9373C7.08711 12.3542 4.52041 12.3542 2.93732 13.9373C1.35423 15.5204 1.35423 18.0871 2.93732 19.6702C4.52041 21.2533 7.08711 21.2533 8.67021 19.6702ZM8.67021 19.6702L11.25 22.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M3.87122 10.25V8.13182C3.87122 6.24801 3.87122 5.3061 4.23783 4.58658C4.56031 3.95367 5.07488 3.4391 5.70779 3.11661C6.42731 2.75 7.36922 2.75 9.25303 2.75H14.747C16.6308 2.75 17.5727 2.75 18.2922 3.11661C18.9251 3.4391 19.4397 3.95367 19.7622 4.58658C20.1288 5.3061 20.1288 6.24801 20.1288 8.13182V15.8682C20.1288 17.752 20.1288 18.6939 19.7622 19.4134C19.4397 20.0463 18.9251 20.5609 18.2922 20.8834C17.5727 21.25 16.6308 21.25 14.747 21.25H13.75M15.8997 2.75H8.10026C8.09169 2.75 8.0874 2.75 8.08412 2.7518C8.08124 2.75339 8.0789 2.75591 8.07743 2.75902C8.07576 2.76256 8.07576 2.76718 8.07576 2.77644V3.98333C8.07576 4.92524 8.07576 5.39619 8.25907 5.75595C8.42031 6.07241 8.6776 6.32969 8.99405 6.49094C9.35381 6.67424 9.82476 6.67424 10.7667 6.67424H13.2333C14.1752 6.67424 14.6462 6.67424 15.006 6.49094C15.3224 6.32969 15.5797 6.07241 15.7409 5.75595C15.9242 5.39619 15.9242 4.92524 15.9242 3.98333V2.77644C15.9242 2.76718 15.9242 2.76256 15.9226 2.75902C15.9211 2.75591 15.9188 2.75339 15.9159 2.7518C15.9126 2.75 15.9083 2.75 15.8997 2.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n</svg>\r\n",
227
+ "clipboard": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<rect x=\"3.75\" y=\"2.75\" width=\"16.5\" height=\"18.5\" rx=\"3.5\" stroke=\"currentColor\" stroke-width=\"1.5\"/>\n<path d=\"M8.25 2.75H15.75V5.25C15.75 6.35457 14.8546 7.25 13.75 7.25H10.25C9.14543 7.25 8.25 6.35457 8.25 5.25V2.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>\n</svg>\n",
228
+ "clipboardPaste": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M9.75 21.25H6.75C4.817 21.25 3.25 19.683 3.25 17.75V6.25C3.25 4.317 4.817 2.75 6.75 2.75H16.25C18.183 2.75 19.75 4.317 19.75 6.25V8.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n<path d=\"M7.75 2.75H15.25V5.25C15.25 6.35457 14.3546 7.25 13.25 7.25H9.75C8.64543 7.25 7.75 6.35457 7.75 5.25V2.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>\n<path d=\"M12.25 13.25C12.25 11.8693 13.3693 10.75 14.75 10.75H18.25C19.6307 10.75 20.75 11.8693 20.75 13.25V18.75C20.75 20.1307 19.6307 21.25 18.25 21.25H14.75C13.3693 21.25 12.25 20.1307 12.25 18.75V13.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n",
229
+ "clipboardSearch": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M14.25 21.25H17.25C19.183 21.25 20.75 19.683 20.75 17.75V6.25C20.75 4.317 19.183 2.75 17.25 2.75H7.75C5.817 2.75 4.25 4.317 4.25 6.25V10.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n<path d=\"M8.75 2.75H16.25V5.25C16.25 6.35457 15.3546 7.25 14.25 7.25H10.75C9.64543 7.25 8.75 6.35457 8.75 5.25V2.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>\n<path d=\"M9.17021 19.6702C10.7533 18.0871 10.7533 15.5204 9.17021 13.9373C7.58711 12.3542 5.02041 12.3542 3.43732 13.9373C1.85423 15.5204 1.85423 18.0871 3.43732 19.6702C5.02041 21.2533 7.58711 21.2533 9.17021 19.6702ZM9.17021 19.6702L11.75 22.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n",
230
230
  "compareSize": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M18.75 8.75C20.1307 8.75 21.25 9.86929 21.25 11.25V17.75C21.25 19.1307 20.1307 20.25 18.75 20.25H5.25C3.86929 20.25 2.75 19.1307 2.75 17.75V11.25C2.75 9.86929 3.86929 8.75 5.25 8.75H18.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M16.25 16.25L16.25 18.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M16.25 10.75L16.25 13.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M8.25 3.75L10.75 3.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M13.75 3.75L14.25 3.75C15.3546 3.75 16.25 4.64543 16.25 5.75V6.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M5.25 3.75H4.75C3.64543 3.75 2.75 4.64543 2.75 5.75V6.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n</svg>\r\n",
231
231
  "grid": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<rect x=\"3.75\" y=\"13.75\" width=\"6.5\" height=\"6.5\" rx=\"2\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<rect x=\"13.75\" y=\"13.75\" width=\"6.5\" height=\"6.5\" rx=\"2\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<rect x=\"3.75\" y=\"3.75\" width=\"6.5\" height=\"6.5\" rx=\"2\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<rect x=\"13.75\" y=\"3.75\" width=\"6.5\" height=\"6.5\" rx=\"2\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n</svg>\r\n",
232
232
  "gridDots": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<circle cx=\"5\" cy=\"5\" r=\"1.5\" fill=\"currentColor\"/>\r\n<circle cx=\"12\" cy=\"5\" r=\"1.5\" fill=\"currentColor\"/>\r\n<circle cx=\"19\" cy=\"5\" r=\"1.5\" fill=\"currentColor\"/>\r\n<circle cx=\"5\" cy=\"12\" r=\"1.5\" fill=\"currentColor\"/>\r\n<circle cx=\"12\" cy=\"12\" r=\"1.5\" fill=\"currentColor\"/>\r\n<circle cx=\"19\" cy=\"12\" r=\"1.5\" fill=\"currentColor\"/>\r\n<circle cx=\"5\" cy=\"19\" r=\"1.5\" fill=\"currentColor\"/>\r\n<circle cx=\"12\" cy=\"19\" r=\"1.5\" fill=\"currentColor\"/>\r\n<circle cx=\"19\" cy=\"19\" r=\"1.5\" fill=\"currentColor\"/>\r\n</svg>\r\n",
package/dist/tags.json CHANGED
@@ -400,7 +400,7 @@
400
400
  "category": "Status"
401
401
  },
402
402
  "Prohibited": {
403
- "description": "Not Allowed",
403
+ "description": "",
404
404
  "category": "Status"
405
405
  },
406
406
  "Spinner": {
@@ -972,6 +972,7 @@
972
972
  "category": "Design"
973
973
  },
974
974
  "Border All": {
975
+ "description": "Not to be confused with 'Microsoft'",
975
976
  "category": "Design"
976
977
  },
977
978
  "Color Palette": {