@amboss/design-system 3.13.14 → 3.13.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/components/Box/Box.d.ts +4 -0
- package/build/cjs/components/Box/Box.js +1 -1
- package/build/cjs/components/Button/Button.js +1 -1
- package/build/cjs/components/InteractiveBox/InteractiveBox.d.ts +15 -0
- package/build/cjs/components/InteractiveBox/InteractiveBox.js +1 -0
- package/build/cjs/index.d.ts +1 -0
- package/build/cjs/index.js +1 -1
- package/build/cjs/shared/mixins/getBaseButtonStyles.d.ts +7 -0
- package/build/cjs/shared/mixins/getBaseButtonStyles.js +1 -0
- package/build/cjs/shared/mixins/getButtonAppearanceReset.d.ts +2 -0
- package/build/cjs/shared/mixins/getButtonAppearanceReset.js +1 -0
- package/build/cjs/shared/mixins/getDisabledStyles.d.ts +6 -0
- package/build/cjs/shared/mixins/getDisabledStyles.js +1 -0
- package/build/cjs/shared/mixins/getFocusStyles.d.ts +2 -0
- package/build/cjs/shared/mixins/getFocusStyles.js +1 -0
- package/build/cjs/shared/mixins/getVariantStyles.d.ts +9 -0
- package/build/cjs/shared/mixins/getVariantStyles.js +1 -0
- package/build/cjs/shared/mixins/index.d.ts +5 -0
- package/build/cjs/shared/mixins/index.js +1 -0
- package/build/cjs/web-tokens/assets/icons.json +3 -1
- package/build/cjs/web-tokens/assets/icons16.json +3 -1
- package/build/esm/components/Box/Box.d.ts +4 -0
- package/build/esm/components/Box/Box.js +1 -1
- package/build/esm/components/Button/Button.js +1 -1
- package/build/esm/components/InteractiveBox/InteractiveBox.d.ts +15 -0
- package/build/esm/components/InteractiveBox/InteractiveBox.js +1 -0
- package/build/esm/index.d.ts +1 -0
- package/build/esm/index.js +1 -1
- package/build/esm/shared/mixins/getBaseButtonStyles.d.ts +7 -0
- package/build/esm/shared/mixins/getBaseButtonStyles.js +1 -0
- package/build/esm/shared/mixins/getButtonAppearanceReset.d.ts +2 -0
- package/build/esm/shared/mixins/getButtonAppearanceReset.js +1 -0
- package/build/esm/shared/mixins/getDisabledStyles.d.ts +6 -0
- package/build/esm/shared/mixins/getDisabledStyles.js +1 -0
- package/build/esm/shared/mixins/getFocusStyles.d.ts +2 -0
- package/build/esm/shared/mixins/getFocusStyles.js +1 -0
- package/build/esm/shared/mixins/getVariantStyles.d.ts +9 -0
- package/build/esm/shared/mixins/getVariantStyles.js +1 -0
- package/build/esm/shared/mixins/index.d.ts +5 -0
- package/build/esm/shared/mixins/index.js +1 -0
- package/build/esm/web-tokens/assets/icons.json +3 -1
- package/build/esm/web-tokens/assets/icons16.json +3 -1
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { CSSObject, Theme } from "@emotion/react";
|
|
2
|
+
import type { ButtonProps } from "../../components/Button/Button";
|
|
3
|
+
type VariantProps = Pick<ButtonProps, "disabled" | "destructive" | "size"> & {
|
|
4
|
+
theme: Theme;
|
|
5
|
+
};
|
|
6
|
+
export declare function getPrimaryVariantStyles({ theme, destructive, disabled, }: VariantProps): CSSObject;
|
|
7
|
+
export declare function getSecondaryVariantStyles({ theme, disabled, size, }: VariantProps): CSSObject;
|
|
8
|
+
export declare function getTertiaryVariantStyles({ theme, destructive, disabled, size, }: VariantProps): CSSObject;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function getPrimaryVariantStyles({theme,destructive,disabled}){return{backgroundColor:destructive?theme.values.color.background.error.default:theme.values.color.background.accent.default,color:theme.values.color.text.onAccent.default,...!disabled&&{"&:hover":{backgroundColor:destructive?theme.values.color.background.error.hover:theme.values.color.background.accent.hover},"&:active":{backgroundColor:destructive?theme.values.color.background.error.active:theme.values.color.background.accent.active}}}}export function getSecondaryVariantStyles({theme,disabled,size}){return{border:"1px solid",backgroundColor:theme.values.color.background.transparent.default,borderColor:theme.values.color.border.primary.default,color:theme.values.color.text.secondary.default,...!disabled&&{"&:hover":{borderColor:theme.values.color.border.primary.hover,backgroundColor:theme.values.color.background.transparent.hover},"&:active":{backgroundColor:theme.values.color.background.transparent.active,borderColor:theme.values.color.border.primary.active}},..."s"===size&&{padding:`${parseInt(theme.variables.size.spacing.xs,10)-1}px ${parseInt(theme.variables.size.spacing.m,10)-1}px`},..."m"===size&&{padding:`${parseInt(theme.variables.size.spacing.s,10)-1}px ${parseInt(theme.variables.size.spacing.l,10)-1}px`},..."l"===size&&{padding:`${parseInt(theme.variables.size.spacing.m,10)-1}px ${parseInt(theme.variables.size.spacing.xl,10)-1}px`}}}export function getTertiaryVariantStyles({theme,destructive,disabled,size}){return{color:destructive?theme.values.color.text.error.default:theme.values.color.text.secondary.default,backgroundColor:theme.values.color.background.transparent.default,...!disabled&&{"&:hover":{backgroundColor:destructive?theme.values.color.destructiveTertiaryButton.background.hover:theme.values.color.background.transparent.hover},"&:active":{color:destructive?theme.values.color.text.error.default:theme.values.color.text.primary.default,backgroundColor:destructive?theme.values.color.destructiveTertiaryButton.background.active:theme.values.color.background.transparent.active}},..."s"===size&&{padding:theme.variables.size.spacing.xs},..."m"===size&&{padding:theme.variables.size.spacing.s},..."l"===size&&{padding:theme.variables.size.spacing.m}}}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { getFocusStyles } from "./getFocusStyles";
|
|
2
|
+
export { getDisabledStyles } from "./getDisabledStyles";
|
|
3
|
+
export { getButtonAppearanceReset } from "./getButtonAppearanceReset";
|
|
4
|
+
export { getBaseButtonStyles } from "./getBaseButtonStyles";
|
|
5
|
+
export { getPrimaryVariantStyles, getSecondaryVariantStyles, getTertiaryVariantStyles, } from "./getVariantStyles";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{getFocusStyles}from"./getFocusStyles";export{getDisabledStyles}from"./getDisabledStyles";export{getButtonAppearanceReset}from"./getButtonAppearanceReset";export{getBaseButtonStyles}from"./getBaseButtonStyles";export{getPrimaryVariantStyles,getSecondaryVariantStyles,getTertiaryVariantStyles}from"./getVariantStyles";
|
|
@@ -160,7 +160,8 @@
|
|
|
160
160
|
"quiz": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M12 8a1 1 0 1 0-2 0v4a1 1 0 0 0 2 0z\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M8 2a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2v.723a9.02 9.02 0 0 1 6.197 5.056 3.121 3.121 0 0 1 3.63 5.045h-.002l-10.197 8.947a1 1 0 0 1-.665.248L8.494 23a1 1 0 0 1-.969-1.223l.192-.839-.013-.005C4.374 19.653 2 16.353 2 12.5a9 9 0 0 1 7-8.777V3a1 1 0 0 1-1-1m3 3.5a7 7 0 0 1 6.583 4.613l-8.987 7.835a1 1 0 0 0-.318.531l-.11.484C5.739 17.91 4 15.42 4 12.5a7 7 0 0 1 7-7m9.85 4.853a1.12 1.12 0 0 0-.813.274l-7.521 6.557 1.611 1.612 7.382-6.477.002-.002a1.121 1.121 0 0 0-.66-1.964Zm-8.23 9.764-1.615-1.615-.85.74-.402 1.765 1.842.01z\" clip-rule=\"evenodd\"/></svg>",
|
|
161
161
|
"rotate-ccw": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\"><path d=\"M1 4v6h6\"/><path d=\"M3.51 15a9 9 0 1 0 2.13-9.36L1 10\"/></svg>",
|
|
162
162
|
"rotate-cw": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\"><path d=\"M23 4v6h-6\"/><path d=\"M20.49 15a9 9 0 1 1-2.12-9.36L23 10\"/></svg>",
|
|
163
|
-
"
|
|
163
|
+
"scissors": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\"><path fill-rule=\"evenodd\" d=\"M5 1a4 4 0 0 1 3.445 6.031L12 10.585l8.294-8.292.076-.07a1 1 0 0 1 1.406 1.409l-.068.075-13.262 13.26a4 4 0 1 1-1.414-1.414L10.585 12 7.03 8.445A4 4 0 1 1 5 1m0 16a2 2 0 1 0 0 4 2 2 0 0 0 0-4M5 3a2 2 0 1 0 0 4 2 2 0 0 0 0-4\" clip-rule=\"evenodd\"/><path d=\"M13.793 13.793a1 1 0 0 1 1.414 0l6.5 6.5.068.075a1.001 1.001 0 0 1-1.406 1.408l-.076-.069-6.5-6.5a1 1 0 0 1 0-1.414\"/></svg>",
|
|
164
|
+
"search": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\"><path fill-rule=\"evenodd\" d=\"M10.5 2a8.5 8.5 0 0 1 8.5 8.5 8.46 8.46 0 0 1-1.826 5.26l4.533 4.533a1 1 0 1 1-1.414 1.414l-4.533-4.533A8.46 8.46 0 0 1 10.5 19a8.5 8.5 0 0 1 0-17m0 2a6.5 6.5 0 1 0 4.547 11.144q.022-.027.046-.051l.05-.046A6.5 6.5 0 0 0 10.5 4\" clip-rule=\"evenodd\"/></svg>",
|
|
164
165
|
"search-ai": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M10.5 2a8.5 8.5 0 0 1 8.5 8.5 8.46 8.46 0 0 1-1.826 5.26l4.533 4.533a1 1 0 1 1-1.414 1.414l-4.533-4.533a8.46 8.46 0 0 1-3.756 1.69l1.063-2.392a6.5 6.5 0 0 0 1.98-1.328q.022-.027.046-.051l.05-.046A6.5 6.5 0 1 0 4.12 9.245l-2.116 1.059A8.5 8.5 0 0 1 10.5 2m-.625 10.125L14 14l-4.125 1.875L8 20l-1.875-4.125L2 14l4.125-1.875L8 8zm-2.617 1.133L5.622 14l1.636.742L8 16.378l.742-1.636L10.378 14l-1.636-.742L8 11.622z\"/></svg>",
|
|
165
166
|
"search-list": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 6h16m-5 6h5m-4 6h4\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M7.125 19.5a4.375 4.375 0 1 0 0-8.75 4.375 4.375 0 0 0 0 8.75\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m13.25 21.25-3.033-3.033\"/></svg>",
|
|
166
167
|
"send": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M22.727 1.314a1 1 0 0 0-1.079-.25L1.67 8.055a1 1 0 0 0-.076 1.858l8.648 3.844 3.844 8.648a1 1 0 0 0 1.858-.076L22.937 2.35a1 1 0 0 0-.21-1.037ZM18.194 4.39 4.711 9.111l6.067 2.696 7.416-7.416Zm-6.001 8.83 7.415-7.415-4.719 13.483z\" clip-rule=\"evenodd\"/></svg>",
|
|
@@ -188,6 +189,7 @@
|
|
|
188
189
|
"sun": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\"><path d=\"M12 20a1 1 0 0 1 1 1v2a1 1 0 1 1-2 0v-2a1 1 0 0 1 1-1m-7.067-2.347a1 1 0 1 1 1.414 1.414l-1.42 1.42a1 1 0 0 1-1.414-1.414zm12.72 0a1 1 0 0 1 1.414 0l1.42 1.42a1 1 0 0 1-1.414 1.414l-1.42-1.42a1 1 0 0 1 0-1.414\"/><path fill-rule=\"evenodd\" d=\"M12 6a6 6 0 1 1 0 12 6 6 0 0 1 0-12m0 2a4 4 0 1 0 0 8 4 4 0 0 0 0-8\" clip-rule=\"evenodd\"/><path d=\"M3 11a1 1 0 1 1 0 2H1a1 1 0 1 1 0-2zm20 0a1 1 0 1 1 0 2h-2a1 1 0 1 1 0-2zM3.513 3.513a1 1 0 0 1 1.414 0l1.42 1.42a1 1 0 1 1-1.414 1.414l-1.42-1.42a1 1 0 0 1 0-1.414m15.56 0a1 1 0 0 1 1.414 1.414l-1.42 1.42a1 1 0 0 1-1.414-1.414zM12 0a1 1 0 0 1 1 1v2a1 1 0 1 1-2 0V1a1 1 0 0 1 1-1\"/></svg>",
|
|
189
190
|
"table": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\"><path d=\"M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18\"/></svg>",
|
|
190
191
|
"tag": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\"><path d=\"m20.59 13.41-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82M7 7h.01\"/></svg>",
|
|
192
|
+
"target": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\"><path d=\"M12 1c1.18 0 2.316.188 3.382.531l-.486.497c-.344.35-.594.775-.733 1.235a9 9 0 1 0 6.564 6.533 3 3 0 0 0 1.243-.758l.31-.315.001-.001.165-.169C22.804 9.637 23 10.796 23 12c0 6.075-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1\"/><path d=\"M12 5c.586 0 1.154.074 1.698.21L11.941 7l-.05.001-.199.008-.025.002a5 5 0 0 0-.717.099l-.03.006q-.345.076-.671.199l-.038.014a5 5 0 0 0-.405.176l-.06.031a5 5 0 0 0-1.281.928l-.02.02-.011.012a5 5 0 0 0-1.183 1.939 5 5 0 0 0 .2 3.638l.023.052.061.123.046.091.07.127q.024.044.05.086.037.063.076.124l.04.063q.047.072.098.143l.044.06a5 5 0 0 0 .748.818l.034.03q.068.058.135.112.032.027.064.05l.12.09.063.046q.066.046.133.09l.07.046.124.076.09.05a5 5 0 0 0 .331.174l.086.039a5 5 0 0 0 .284.117l.05.018a5 5 0 0 0 .374.12l.1.027.135.031.112.025q.078.016.158.028l.072.013.132.016q.1.013.201.022.088.008.176.013L12 17a5 5 0 0 0 .625-.04l.132-.017.072-.013.158-.028.112-.025.134-.031.101-.027a5 5 0 0 0 .374-.12l.05-.018a5 5 0 0 0 .284-.117l.086-.04a5 5 0 0 0 .332-.172l.089-.051.124-.076.07-.045.133-.09.063-.047.12-.09q.032-.023.064-.05.068-.054.135-.112l.034-.03a5 5 0 0 0 .499-.503 5 5 0 0 0 .249-.314l.044-.061q.051-.07.099-.143l.04-.063q.039-.06.076-.124l.049-.086a5 5 0 0 0 .177-.34l.024-.053A4.9 4.9 0 0 0 17 12q-.001-.092-.005-.183l1.729-1.761A6.998 6.998 0 0 1 12 19a7 7 0 0 1 0-14\"/><path d=\"M19.83.164a.502.502 0 0 1 .855.292l.273 2.326 2.344.277a.5.5 0 0 1 .297.846L20.602 6.95c-.218.22-.525.329-.832.292l-1.578-.185-3.52 3.586c.208.408.328.868.328 1.357a3 3 0 1 1-1.774-2.737l3.53-3.599-.192-1.648c-.035-.3.068-.6.28-.815z\"/></svg>",
|
|
191
193
|
"text-zoom": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"currentColor\" viewBox=\"0 0 24 24\"><path fill-rule=\"evenodd\" d=\"M12.509 18H9.454l-.9-2H4.447l-.9 2H1.354l4.234-9.41h1.824l3.56 7.91 4.607-10.89h1.842L22.663 18H20.49l-1.269-3h-5.444zM6.5 11.437 7.654 14H5.347zM18.376 13 16.5 8.566 14.624 13z\" clip-rule=\"evenodd\"/></svg>",
|
|
192
194
|
"thumbs-down": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M21 4.077A1.31 1.31 0 0 0 19.688 3H18v9h1.688A1.31 1.31 0 0 0 21 10.923zm-5 8.71V3H5.709a1 1 0 0 0-1 .85l-1.38 9a1 1 0 0 0 1 1.15H10a1 1 0 0 1 1 1v4a2 2 0 0 0 1.392 1.906zM17.65 14l-3.736 8.406A1 1 0 0 1 13 23a4 4 0 0 1-4-4v-3H4.345a3 3 0 0 1-2.994-3.45l1.38-9A3 3 0 0 1 5.725 1h13.937a3.31 3.31 0 0 1 3.329 2.866Q23 3.933 23 4v7q0 .068-.009.134A3.31 3.31 0 0 1 19.661 14z\" clip-rule=\"evenodd\"/></svg>",
|
|
193
195
|
"thumbs-up": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\"><path d=\"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3\"/></svg>",
|
|
@@ -160,7 +160,8 @@
|
|
|
160
160
|
"quiz": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"17\" height=\"16\" fill=\"none\" viewBox=\"0 0 17 16\"><path fill=\"currentColor\" d=\"M6 1a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2H7a1 1 0 0 1-1-1m3 5a1 1 0 0 0-2 0v2h2z\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M8 2a6 6 0 0 1 5.827 4.565 2.414 2.414 0 0 1 1.384 4.226l-.007.006L9.4 15.76a1 1 0 0 1-.65.24H6.5a1 1 0 0 1-.98-1.197l.248-1.232A6.002 6.002 0 0 1 8 2M4 8a4 4 0 0 1 7.92-.801l.009.045-5.348 4.543.015-.04A4 4 0 0 1 4 8m9.353.659a.414.414 0 0 1 .547.622L8.38 14h-.659l.135-.671 5.487-4.662z\" clip-rule=\"evenodd\"/></svg>",
|
|
161
161
|
"rotate-ccw": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M2 3v4h4M3.859 5.437a4.93 4.93 0 1 1-.165 4.927\"/></svg>",
|
|
162
162
|
"rotate-cw": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14 3v4h-4m2.141-1.563a4.93 4.93 0 1 0 .165 4.927\"/></svg>",
|
|
163
|
-
"
|
|
163
|
+
"scissors": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\" viewBox=\"0 0 16 16\"><path fill-rule=\"evenodd\" d=\"M13.339 1.246a.974.974 0 0 1 1.325.007c.405.376.436 1.016.07 1.429L7.541 10.77a3.5 3.5 0 1 1-1.445-1.386l.88-.991-.814-.815A3.5 3.5 0 1 1 7.58 6.163l.73.73 4.958-5.575zM4.5 11a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m0-8a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3\" clip-rule=\"evenodd\"/><path d=\"m14.692 13.277.07.075c.32.393.303.979-.056 1.353a.976.976 0 0 1-1.324.087l-.074-.068-3.706-3.706 1.385-1.448z\"/></svg>",
|
|
164
|
+
"search": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\" viewBox=\"0 0 16 16\"><path fill-rule=\"evenodd\" d=\"M6.667 1a5.667 5.667 0 1 0 3.237 10.318l3.389 3.39a1 1 0 0 0 1.414-1.415l-3.389-3.389A5.667 5.667 0 0 0 6.666 1M3 6.667a3.667 3.667 0 1 1 7.333 0 3.667 3.667 0 0 1-7.333 0\" clip-rule=\"evenodd\"/></svg>",
|
|
164
165
|
"search-ai": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\"><path fill=\"currentColor\" d=\"M6.667 1a5.667 5.667 0 0 1 4.651 8.904l3.389 3.389a1 1 0 1 1-1.414 1.414l-3.389-3.389a5.64 5.64 0 0 1-3.107 1.012l.96-2.162a3.668 3.668 0 1 0-4.642-4.42L1.003 6.805 1 6.667A5.667 5.667 0 0 1 6.667 1m-.573 6.406L8.5 8.5 6.094 9.594 5 12 3.906 9.594 1.5 8.5l2.406-1.094L5 5z\"/></svg>",
|
|
165
166
|
"search-list": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\"><g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M2 3h12m-3 4h3m-2 4h2\"/><path d=\"M4.5 14a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7\" clip-rule=\"evenodd\"/><path d=\"m9 15-2-2\"/></g></svg>",
|
|
166
167
|
"send": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\"><g clip-path=\"url(#a)\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M15.374.626a1 1 0 0 1 .236 1.038l-4.666 13.333a1 1 0 0 1-1.858.076l-2.51-5.649-5.649-2.51a1 1 0 0 1 .076-1.858L14.336.39a1 1 0 0 1 1.038.237ZM8.526 8.888l1.363 3.068 2.386-6.817zm2.335-5.163L4.044 6.11l3.068 1.363 3.749-3.75Z\" clip-rule=\"evenodd\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h16v16H0z\"/></clipPath></defs></svg>",
|
|
@@ -189,6 +190,7 @@
|
|
|
189
190
|
"superscript": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\"><g fill=\"currentColor\"><path d=\"M9.753 4.659a1 1 0 1 0-1.506-1.317zm-8.506 6.683a1 1 0 0 0 1.506 1.316zm7-8-7 8 1.506 1.316 7-8z\"/><path d=\"M2.753 3.341a1 1 0 1 0-1.506 1.317zm5.494 9.317a1 1 0 0 0 1.506-1.316zm-7-8 7 8 1.506-1.316-7-8zM11.124 7V5.844l2.37-1.827a6 6 0 0 0 .403-.34 1.3 1.3 0 0 0 .26-.333.8.8 0 0 0 .094-.379.67.67 0 0 0-.39-.639.95.95 0 0 0-.423-.089q-.24 0-.422.09a.65.65 0 0 0-.279.263.84.84 0 0 0-.1.422H11q0-.625.3-1.076.302-.45.85-.693C12.698 1 12.947 1 13.439 1q.764 0 1.321.228.562.226.866.636.307.411.307.963 0 .34-.152.679-.152.334-.546.743-.394.407-1.12.97l-.595.463v.035H16V7z\"/></g></svg>",
|
|
190
191
|
"table": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M1 3a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2zm8 0h4v2H9zm0 4h4v2H9zM7 9V7H3v2zm-4 2h4v2H3zm6 0h4v2H9zM7 3v2H3V3z\" clip-rule=\"evenodd\"/></svg>",
|
|
191
192
|
"tag": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9.632 14.864a.46.46 0 0 1-.652 0h0L2 7.89V2h5.888l6.978 6.98s0 0 0 0a.46.46 0 0 1 0 .649s0 0 0 0z\"/></svg>",
|
|
193
|
+
"target": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\" viewBox=\"0 0 16 16\"><path d=\"M8 0a8 8 0 0 1 3.225.679l-.682.693-.157.18a2 2 0 0 0-.368.797A6 6 0 1 0 13.71 6.16c.37-.063.72-.228 1.006-.484l.09-.085.601-.612A8 8 0 1 1 8 0\"/><path d=\"M8 3c.664 0 1.298.13 1.878.365L8.263 5.012A3 3 0 1 0 11 8l-.002-.065 1.677-1.71A5 5 0 1 1 8 3\"/><path d=\"M12.933.367a.501.501 0 0 1 .85.264l.253 1.45 1.47.255a.5.5 0 0 1 .272.842L14.093 4.89c-.23.234-.562.341-.887.285l-.768-.135-2.486 2.533Q10 7.78 10 8a2 2 0 1 1-1.396-1.907l2.488-2.535-.108-.615a1 1 0 0 1 .272-.87z\"/></svg>",
|
|
192
194
|
"text-zoom": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M8.372 13h-2.81l-.596-1.6H2.293L1.697 13H0l2.885-7.75h1.488l2.32 6.231L10.063 3h1.967L16 13h-2.282l-.848-2.134H9.22zM3.63 7.81 4.47 10H2.79zM12.15 9l-1.105-2.73L9.92 9z\" clip-rule=\"evenodd\"/></svg>",
|
|
193
195
|
"thumbs-down": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\"><path fill=\"currentColor\" d=\"M6 10.98h1a1 1 0 0 0-1-1zm0 2.4H5zM8 15v1a1 1 0 0 0 .937-.65zm2.014-5.4.937.35a1 1 0 0 0 .063-.35zm0-6.6h1a1 1 0 0 0-1-1zM3.1 3l-.011 1h.01zM1.874 4.02l-.989-.153zm-.86 5.58.988.153zm1.226 1.38v-1h-.011zM10.014 3V2a1 1 0 0 0-1 1zm0 7h-1a1 1 0 0 0 1 1zM5 10.98v2.4h2v-2.4zm0 2.4c0 .863.438 1.546 1.018 1.982C6.583 15.787 7.3 16 8 16v-2c-.315 0-.598-.1-.78-.236-.166-.126-.22-.253-.22-.384zm3.937 1.97 2.014-5.4-1.874-.7-2.014 5.4zm2.077-5.75V3h-2v6.6zm-1-7.6H3.1v2h6.914zM3.11 2A2.22 2.22 0 0 0 .885 3.867l1.977.306C2.875 4.09 2.959 4 3.089 4zM.885 3.868l-.86 5.58 1.977.304.86-5.58zm-.86 5.579c-.1.646.096 1.298.528 1.785l1.495-1.329a.18.18 0 0 1-.046-.15zm.528 1.785a2.24 2.24 0 0 0 1.698.748l-.022-2a.24.24 0 0 1-.18-.077zm1.687.748H6v-2H2.24zM10.014 4h2.4V2h-2.4zm2.4 0c.232 0 .409.076.509.155a.3.3 0 0 1 .082.092c.01.017.009.024.009.026h2c0-1.457-1.39-2.273-2.6-2.273zm.6.273v4.454h2V4.273zm0 4.454c0 .002 0 .01-.009.026a.3.3 0 0 1-.082.092.83.83 0 0 1-.51.155v2c1.211 0 2.6-.816 2.6-2.273zm-.6.273h-2.4v2h2.4zm-1.4 1V3h-2v7z\"/></svg>",
|
|
194
196
|
"thumbs-up": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" viewBox=\"0 0 16 16\"><path fill=\"currentColor\" d=\"M10 5.02H9a1 1 0 0 0 1 1zm0-2.4h1zM8 1V0a1 1 0 0 0-.938.653zM6 6.4l-.938-.347A1 1 0 0 0 5 6.4zM6 13H5a1 1 0 0 0 1 1zm6.914 0 .011-1h-.01zm1.226-1.02.988.153zM15 6.4l-.988-.153zm-1.226-1.38v1h.011zM6 13v1a1 1 0 0 0 1-1zm0-7h1a1 1 0 0 0-1-1zm5-.98v-2.4H9v2.4zm0-2.4c0-.863-.438-1.546-1.018-1.982C9.417.213 8.7 0 8 0v2c.315 0 .598.1.78.236.166.126.22.253.22.384zM7.062.653l-2 5.4 1.876.694 2-5.4zM5 6.4V13h2V6.4zM6 14h6.914v-2H6zm6.903 0a2.22 2.22 0 0 0 2.225-1.867l-1.976-.306c-.013.084-.097.174-.227.173zm2.225-1.868.86-5.58-1.976-.304-.86 5.58zm.86-5.579a2.18 2.18 0 0 0-.527-1.785l-1.496 1.329c.04.045.055.1.047.15zm-.527-1.785a2.24 2.24 0 0 0-1.698-.748l.022 2c.074 0 .14.03.18.077zm-1.687-.748H10v2h3.774zM6 12H3.6v2H6zm-2.4 0a.83.83 0 0 1-.509-.155.3.3 0 0 1-.082-.092c-.01-.017-.009-.024-.009-.026H1C1 13.184 2.39 14 3.6 14zm-.6-.273V7.273H1v4.454zm0-4.454c0-.002 0-.01.009-.026a.3.3 0 0 1 .082-.092c.1-.08.277-.155.509-.155V5C2.39 5 1 5.816 1 7.273zM3.6 7H6V5H3.6zM5 6v7h2V6z\"/></svg>",
|