@ultraviolet/ui 3.0.0-beta.4 → 3.0.0-beta.5
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/dist/components/Alert/index.cjs +8 -76
- package/dist/components/Alert/index.d.ts +1 -2
- package/dist/components/Alert/index.js +8 -74
- package/dist/components/Alert/styles.css.cjs +14 -0
- package/dist/components/Alert/styles.css.d.ts +35 -0
- package/dist/components/Alert/styles.css.js +14 -0
- package/dist/components/Alert/type.d.ts +2 -0
- package/dist/components/Banner/index.cjs +13 -69
- package/dist/components/Banner/index.d.ts +3 -5
- package/dist/components/Banner/index.js +9 -63
- package/dist/components/Banner/styles.css.cjs +12 -0
- package/dist/components/Banner/styles.css.d.ts +18 -0
- package/dist/components/Banner/styles.css.js +12 -0
- package/dist/components/Button/styles.css.cjs +0 -2
- package/dist/components/Button/styles.css.js +0 -2
- package/dist/components/Chip/index.d.ts +1 -1
- package/dist/components/Dialog/index.cjs +2 -2
- package/dist/components/Dialog/index.js +2 -2
- package/dist/components/Key/index.cjs +85 -0
- package/dist/components/Key/index.d.ts +23 -0
- package/dist/components/Key/index.js +83 -0
- package/dist/components/SearchInput/KeyGroup.cjs +5 -5
- package/dist/components/SearchInput/KeyGroup.d.ts +1 -1
- package/dist/components/SearchInput/KeyGroup.js +3 -3
- package/dist/components/Text/constant.d.ts +6 -0
- package/dist/components/Text/index.cjs +15 -59
- package/dist/components/Text/index.d.ts +2 -7
- package/dist/components/Text/index.js +15 -57
- package/dist/components/Text/style.css.cjs +6 -0
- package/dist/components/Text/style.css.d.ts +52 -0
- package/dist/components/Text/style.css.js +6 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.cjs +102 -100
- package/dist/index.js +2 -0
- package/dist/ui.css +1 -1
- package/package.json +3 -3
- package/dist/components/SearchInput/Key.cjs +0 -55
- package/dist/components/SearchInput/Key.d.ts +0 -21
- package/dist/components/SearchInput/Key.js +0 -53
|
@@ -1,68 +1,14 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx } from "@emotion/react/jsx-runtime";
|
|
3
|
-
import _styled from "@emotion/styled/base";
|
|
4
3
|
import { useRef } from "react";
|
|
5
4
|
import recursivelyGetChildrenString from "../../helpers/recursivelyGetChildrenString.js";
|
|
6
5
|
import { useIsOverflowing } from "../../hooks/useIsOverflowing.js";
|
|
7
|
-
import capitalize from "../../utils/capitalize.js";
|
|
8
6
|
import { Tooltip } from "../Tooltip/index.js";
|
|
9
|
-
|
|
10
|
-
default: "",
|
|
11
|
-
strong: "strong",
|
|
12
|
-
stronger: "stronger",
|
|
13
|
-
weak: "weak"
|
|
14
|
-
};
|
|
15
|
-
const generateStyles = ({
|
|
16
|
-
placement,
|
|
17
|
-
prominence,
|
|
18
|
-
sentiment,
|
|
19
|
-
variant,
|
|
20
|
-
theme,
|
|
21
|
-
oneLine,
|
|
22
|
-
disabled,
|
|
23
|
-
italic,
|
|
24
|
-
underline,
|
|
25
|
-
whiteSpace,
|
|
26
|
-
strikeThrough
|
|
27
|
-
}) => {
|
|
28
|
-
const definedProminence = sentiment !== "neutral" && prominence === "stronger" ? capitalize(PROMINENCES.default) : capitalize(PROMINENCES[prominence]);
|
|
29
|
-
const isSentimentMonochrome = sentiment === "black" || sentiment === "white";
|
|
30
|
-
sentiment && !isSentimentMonochrome ? theme.colors[sentiment] : void 0;
|
|
31
|
-
const text = `text${definedProminence}${disabled ? "Disabled" : ""}`;
|
|
32
|
-
const textColor = sentiment && !isSentimentMonochrome ? theme.colors[sentiment][text] : void 0;
|
|
33
|
-
return `
|
|
34
|
-
${sentiment ? `color: ${!isSentimentMonochrome ? textColor : theme.colors.other.monochrome[sentiment].text};` : ""}
|
|
35
|
-
|
|
36
|
-
font-size: ${theme.typography[variant].fontSize};
|
|
37
|
-
font-family: ${theme.typography[variant].fontFamily};
|
|
38
|
-
font-weight: ${theme.typography[variant].weight};
|
|
39
|
-
letter-spacing: ${theme.typography[variant].letterSpacing};
|
|
40
|
-
line-height: ${theme.typography[variant].lineHeight};
|
|
41
|
-
text-transform: ${theme.typography[variant].textCase};
|
|
42
|
-
text-decoration: ${theme.typography[variant].textDecoration};
|
|
43
|
-
${placement ? ` text-align: ${placement};` : ""}
|
|
44
|
-
${whiteSpace ? `white-space: ${whiteSpace};` : ""}
|
|
45
|
-
|
|
46
|
-
${oneLine ? `white-space: nowrap;
|
|
47
|
-
text-overflow: ellipsis;
|
|
48
|
-
overflow: hidden;` : ""}
|
|
49
|
-
${italic ? `font-style: italic;` : ""}
|
|
50
|
-
${underline ? `text-decoration: underline;` : ""}
|
|
51
|
-
${strikeThrough ? `text-decoration: line-through;` : ""}
|
|
52
|
-
`;
|
|
53
|
-
};
|
|
54
|
-
const StyledText = /* @__PURE__ */ _styled("div", process.env.NODE_ENV === "production" ? {
|
|
55
|
-
shouldForwardProp: (prop) => !["as", "placement", "variant", "sentiment", "prominence", "oneLine", "disabled", "italic", "underline", "strikeThrough", "whiteSpace"].includes(prop),
|
|
56
|
-
target: "e13y3mga0"
|
|
57
|
-
} : {
|
|
58
|
-
shouldForwardProp: (prop) => !["as", "placement", "variant", "sentiment", "prominence", "oneLine", "disabled", "italic", "underline", "strikeThrough", "whiteSpace"].includes(prop),
|
|
59
|
-
target: "e13y3mga0",
|
|
60
|
-
label: "StyledText"
|
|
61
|
-
})(generateStyles, process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi9ob21lL3J1bm5lci93b3JrL3VsdHJhdmlvbGV0L3VsdHJhdmlvbGV0L3BhY2thZ2VzL3VpL3NyYy9jb21wb25lbnRzL1RleHQvaW5kZXgudHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQWlJbUIiLCJmaWxlIjoiL2hvbWUvcnVubmVyL3dvcmsvdWx0cmF2aW9sZXQvdWx0cmF2aW9sZXQvcGFja2FnZXMvdWkvc3JjL2NvbXBvbmVudHMvVGV4dC9pbmRleC50c3giLCJzb3VyY2VzQ29udGVudCI6WyIndXNlIGNsaWVudCdcblxuaW1wb3J0IHR5cGUgeyBUaGVtZSB9IGZyb20gJ0BlbW90aW9uL3JlYWN0J1xuaW1wb3J0IHN0eWxlZCBmcm9tICdAZW1vdGlvbi9zdHlsZWQnXG5pbXBvcnQgdHlwZSB7IENTU1Byb3BlcnRpZXMsIEVsZW1lbnRUeXBlLCBSZWFjdE5vZGUgfSBmcm9tICdyZWFjdCdcbmltcG9ydCB7IHVzZVJlZiB9IGZyb20gJ3JlYWN0J1xuaW1wb3J0IHJlY3Vyc2l2ZWx5R2V0Q2hpbGRyZW5TdHJpbmcgZnJvbSAnLi4vLi4vaGVscGVycy9yZWN1cnNpdmVseUdldENoaWxkcmVuU3RyaW5nJ1xuaW1wb3J0IHsgdXNlSXNPdmVyZmxvd2luZyB9IGZyb20gJy4uLy4uL2hvb2tzL3VzZUlzT3ZlcmZsb3dpbmcnXG5pbXBvcnQgdHlwZSB7IEV4dGVuZGVkQ29sb3IgfSBmcm9tICcuLi8uLi90aGVtZSdcbmltcG9ydCB7IHR5cG9ncmFwaHkgfSBmcm9tICcuLi8uLi90aGVtZSdcbmltcG9ydCBjYXBpdGFsaXplIGZyb20gJy4uLy4uL3V0aWxzL2NhcGl0YWxpemUnXG5pbXBvcnQgeyBUb29sdGlwIH0gZnJvbSAnLi4vVG9vbHRpcCdcblxuY29uc3QgUFJPTUlORU5DRVMgPSB7XG4gIGRlZmF1bHQ6ICcnLFxuICBzdHJvbmc6ICdzdHJvbmcnLFxuICBzdHJvbmdlcjogJ3N0cm9uZ2VyJyxcbiAgd2VhazogJ3dlYWsnLFxufVxuXG50eXBlIFByb21pbmVuY2VQcm9wcyA9IGtleW9mIHR5cGVvZiBQUk9NSU5FTkNFU1xudHlwZSBQbGFjZW1lbnRQcm9wcyA9IENTU1Byb3BlcnRpZXNbJ3RleHRBbGlnbiddXG50eXBlIFdoaXRlU3BhY2VQcm9wcyA9IENTU1Byb3BlcnRpZXNbJ3doaXRlU3BhY2UnXVxudHlwZSBUZXh0VmFyaWFudCA9IGtleW9mIHR5cGVvZiB0eXBvZ3JhcGh5XG5leHBvcnQgY29uc3QgdGV4dFZhcmlhbnRzID0gT2JqZWN0LmtleXModHlwb2dyYXBoeSkgYXMgVGV4dFZhcmlhbnRbXVxuXG4vKipcbiAqIEdlbmVyYXRlIGFsbCBzdHlsZXMgYXZhaWxhYmxlIGZvciB0ZXh0IGJhc2VkIG9uIHByb21pbmVuY2UgYW5kIHZhcmlhbnRzXG4gKi9cbmNvbnN0IGdlbmVyYXRlU3R5bGVzID0gKHtcbiAgcGxhY2VtZW50LFxuICBwcm9taW5lbmNlLFxuICBzZW50aW1lbnQsXG4gIHZhcmlhbnQsXG4gIHRoZW1lLFxuICBvbmVMaW5lLFxuICBkaXNhYmxlZCxcbiAgaXRhbGljLFxuICB1bmRlcmxpbmUsXG4gIHdoaXRlU3BhY2UsXG4gIHN0cmlrZVRocm91Z2gsXG59OiB7XG4gIHBsYWNlbWVudD86IFBsYWNlbWVudFByb3BzXG4gIHByb21pbmVuY2U6IFByb21pbmVuY2VQcm9wc1xuICB0aGVtZTogVGhlbWVcbiAgdmFyaWFudDogVGV4dFZhcmlhbnRcbiAgc2VudGltZW50PzogRXh0ZW5kZWRDb2xvclxuICBvbmVMaW5lOiBib29sZWFuXG4gIGRpc2FibGVkOiBib29sZWFuXG4gIGl0YWxpYzogYm9vbGVhblxuICB1bmRlcmxpbmU6IGJvb2xlYW5cbiAgd2hpdGVTcGFjZT86IFdoaXRlU3BhY2VQcm9wc1xuICBzdHJpa2VUaHJvdWdoPzogYm9vbGVhblxufSk6IHN0cmluZyA9PiB7XG4gIC8vIHN0cm9uZ2VyIGlzIGF2YWlsYWJsZSBvbmx5IGZvciBuZXV0cmFsIHNlbnRpbWVudFxuICBjb25zdCBkZWZpbmVkUHJvbWluZW5jZSA9XG4gICAgc2VudGltZW50ICE9PSAnbmV1dHJhbCcgJiYgcHJvbWluZW5jZSA9PT0gJ3N0cm9uZ2VyJ1xuICAgICAgPyBjYXBpdGFsaXplKFBST01JTkVOQ0VTLmRlZmF1bHQpXG4gICAgICA6IGNhcGl0YWxpemUoUFJPTUlORU5DRVNbcHJvbWluZW5jZV0pXG5cbiAgY29uc3QgaXNTZW50aW1lbnRNb25vY2hyb21lID0gc2VudGltZW50ID09PSAnYmxhY2snIHx8IHNlbnRpbWVudCA9PT0gJ3doaXRlJ1xuXG4gIGNvbnN0IHRoZW1lQ29sb3IgPVxuICAgIHNlbnRpbWVudCAmJiAhaXNTZW50aW1lbnRNb25vY2hyb21lID8gdGhlbWUuY29sb3JzW3NlbnRpbWVudF0gOiB1bmRlZmluZWRcblxuICBjb25zdCB0ZXh0ID0gYHRleHQke2RlZmluZWRQcm9taW5lbmNlfSR7XG4gICAgZGlzYWJsZWQgPyAnRGlzYWJsZWQnIDogJydcbiAgfWAgYXMga2V5b2YgdHlwZW9mIHRoZW1lQ29sb3JcblxuICBjb25zdCB0ZXh0Q29sb3IgPVxuICAgIHNlbnRpbWVudCAmJiAhaXNTZW50aW1lbnRNb25vY2hyb21lXG4gICAgICA/IHRoZW1lLmNvbG9yc1tzZW50aW1lbnRdW3RleHRdXG4gICAgICA6IHVuZGVmaW5lZFxuXG4gIHJldHVybiBgXG4gICAgJHtcbiAgICAgIHNlbnRpbWVudFxuICAgICAgICA/IGBjb2xvcjogJHtcbiAgICAgICAgICAgICFpc1NlbnRpbWVudE1vbm9jaHJvbWVcbiAgICAgICAgICAgICAgPyB0ZXh0Q29sb3JcbiAgICAgICAgICAgICAgOiB0aGVtZS5jb2xvcnMub3RoZXIubW9ub2Nocm9tZVtzZW50aW1lbnRdLnRleHRcbiAgICAgICAgICB9O2BcbiAgICAgICAgOiAnJ1xuICAgIH1cblxuICAgIGZvbnQtc2l6ZTogJHt0aGVtZS50eXBvZ3JhcGh5W3ZhcmlhbnRdLmZvbnRTaXplfTtcbiAgICBmb250LWZhbWlseTogJHt0aGVtZS50eXBvZ3JhcGh5W3ZhcmlhbnRdLmZvbnRGYW1pbHl9O1xuICAgIGZvbnQtd2VpZ2h0OiAke3RoZW1lLnR5cG9ncmFwaHlbdmFyaWFudF0ud2VpZ2h0fTtcbiAgICBsZXR0ZXItc3BhY2luZzogJHt0aGVtZS50eXBvZ3JhcGh5W3ZhcmlhbnRdLmxldHRlclNwYWNpbmd9O1xuICAgIGxpbmUtaGVpZ2h0OiAke3RoZW1lLnR5cG9ncmFwaHlbdmFyaWFudF0ubGluZUhlaWdodH07XG4gICAgdGV4dC10cmFuc2Zvcm06ICR7dGhlbWUudHlwb2dyYXBoeVt2YXJpYW50XS50ZXh0Q2FzZX07XG4gICAgdGV4dC1kZWNvcmF0aW9uOiAke3RoZW1lLnR5cG9ncmFwaHlbdmFyaWFudF0udGV4dERlY29yYXRpb259O1xuICAgICR7cGxhY2VtZW50ID8gYCB0ZXh0LWFsaWduOiAke3BsYWNlbWVudH07YCA6ICcnfVxuICAgICR7d2hpdGVTcGFjZSA/IGB3aGl0ZS1zcGFjZTogJHt3aGl0ZVNwYWNlfTtgIDogJyd9XG5cbiAgICAke1xuICAgICAgb25lTGluZVxuICAgICAgICA/IGB3aGl0ZS1zcGFjZTogbm93cmFwO1xuICAgIHRleHQtb3ZlcmZsb3c6IGVsbGlwc2lzO1xuICAgIG92ZXJmbG93OiBoaWRkZW47YFxuICAgICAgICA6ICcnXG4gICAgfVxuICAgICR7aXRhbGljID8gYGZvbnQtc3R5bGU6IGl0YWxpYztgIDogJyd9XG4gICAgJHt1bmRlcmxpbmUgPyBgdGV4dC1kZWNvcmF0aW9uOiB1bmRlcmxpbmU7YCA6ICcnfVxuICAgICR7c3RyaWtlVGhyb3VnaCA/IGB0ZXh0LWRlY29yYXRpb246IGxpbmUtdGhyb3VnaDtgIDogJyd9XG4gIGBcbn1cblxudHlwZSBUZXh0UHJvcHMgPSB7XG4gIGNsYXNzTmFtZT86IHN0cmluZ1xuICBjaGlsZHJlbjogUmVhY3ROb2RlXG4gIHBsYWNlbWVudD86IFBsYWNlbWVudFByb3BzXG4gIHZhcmlhbnQ6IFRleHRWYXJpYW50XG4gIHNlbnRpbWVudD86IEV4dGVuZGVkQ29sb3JcbiAgcHJvbWluZW5jZT86IFByb21pbmVuY2VQcm9wc1xuICBhczogRWxlbWVudFR5cGVcbiAgb25lTGluZT86IGJvb2xlYW5cbiAgZGlzYWJsZWQ/OiBib29sZWFuXG4gIGl0YWxpYz86IGJvb2xlYW5cbiAgdW5kZXJsaW5lPzogYm9vbGVhblxuICBpZD86IHN0cmluZ1xuICBkaXI/OiAnbHRyJyB8ICdydGwnIHwgJ2F1dG8nXG4gIGh0bWxGb3I/OiBzdHJpbmdcbiAgJ2RhdGEtdGVzdGlkJz86IHN0cmluZ1xuICAnYXJpYS1oaWRkZW4nPzogYm9vbGVhblxuICBzdHJpa2VUaHJvdWdoPzogYm9vbGVhblxuICB3aGl0ZVNwYWNlPzogV2hpdGVTcGFjZVByb3BzXG59XG5cbmNvbnN0IFN0eWxlZFRleHQgPSBzdHlsZWQoJ2RpdicsIHtcbiAgc2hvdWxkRm9yd2FyZFByb3A6IHByb3AgPT5cbiAgICAhW1xuICAgICAgJ2FzJyxcbiAgICAgICdwbGFjZW1lbnQnLFxuICAgICAgJ3ZhcmlhbnQnLFxuICAgICAgJ3NlbnRpbWVudCcsXG4gICAgICAncHJvbWluZW5jZScsXG4gICAgICAnb25lTGluZScsXG4gICAgICAnZGlzYWJsZWQnLFxuICAgICAgJ2l0YWxpYycsXG4gICAgICAndW5kZXJsaW5lJyxcbiAgICAgICdzdHJpa2VUaHJvdWdoJyxcbiAgICAgICd3aGl0ZVNwYWNlJyxcbiAgICBdLmluY2x1ZGVzKHByb3ApLFxufSk8e1xuICBwbGFjZW1lbnQ/OiBQbGFjZW1lbnRQcm9wc1xuICBzZW50aW1lbnQ/OiBFeHRlbmRlZENvbG9yXG4gIHByb21pbmVuY2U6IFByb21pbmVuY2VQcm9wc1xuICB2YXJpYW50OiBUZXh0VmFyaWFudFxuICBvbmVMaW5lOiBib29sZWFuXG4gIGRpc2FibGVkOiBib29sZWFuXG4gIGl0YWxpYzogYm9vbGVhblxuICB1bmRlcmxpbmU6IGJvb2xlYW5cbiAgaHRtbEZvcj86IHN0cmluZ1xuICBzdHJpa2VUaHJvdWdoPzogYm9vbGVhblxuICB3aGl0ZVNwYWNlPzogV2hpdGVTcGFjZVByb3BzXG59PihnZW5lcmF0ZVN0eWxlcylcblxuLyoqXG4gKiBUZXh0IGNvbXBvbmVudCBpcyB1c2VkIHRvIGRpc3BsYXkgdGV4dCB3aXRoIGRpZmZlcmVudCB2YXJpYW50cyBhbmQgc2VudGltZW50cy5cbiAqL1xuZXhwb3J0IGNvbnN0IFRleHQgPSAoe1xuICB2YXJpYW50LFxuICBjaGlsZHJlbixcbiAgYXMsXG4gIHNlbnRpbWVudCxcbiAgb25lTGluZSA9IGZhbHNlLFxuICBwbGFjZW1lbnQsXG4gIHByb21pbmVuY2UgPSAnZGVmYXVsdCcsXG4gIGNsYXNzTmFtZSxcbiAgZGlzYWJsZWQgPSBmYWxzZSxcbiAgaXRhbGljID0gZmFsc2UsXG4gIHVuZGVybGluZSA9IGZhbHNlLFxuICBzdHJpa2VUaHJvdWdoID0gZmFsc2UsXG4gIGlkLFxuICBkaXIsXG4gIHdoaXRlU3BhY2UsXG4gIGh0bWxGb3IsXG4gICdkYXRhLXRlc3RpZCc6IGRhdGFUZXN0SWQsXG4gICdhcmlhLWhpZGRlbic6IGFyaWFIaWRkZW4sXG59OiBUZXh0UHJvcHMpID0+IHtcbiAgY29uc3QgZWxlbWVudFJlZiA9IHVzZVJlZihudWxsKVxuICBjb25zdCBpc092ZXJmbG93aW5nID0gdXNlSXNPdmVyZmxvd2luZyhlbGVtZW50UmVmKVxuXG4gIGNvbnN0IGZpbmFsU3RyaW5nQ2hpbGRyZW4gPSByZWN1cnNpdmVseUdldENoaWxkcmVuU3RyaW5nKGNoaWxkcmVuKVxuXG4gIHJldHVybiAoXG4gICAgPFRvb2x0aXAgdGV4dD17b25lTGluZSAmJiBpc092ZXJmbG93aW5nID8gZmluYWxTdHJpbmdDaGlsZHJlbiA6ICcnfT5cbiAgICAgIDxTdHlsZWRUZXh0XG4gICAgICAgIGFyaWEtaGlkZGVuPXthcmlhSGlkZGVufVxuICAgICAgICBhcz17YXN9XG4gICAgICAgIGNsYXNzTmFtZT17Y2xhc3NOYW1lfVxuICAgICAgICBkYXRhLXRlc3RpZD17ZGF0YVRlc3RJZH1cbiAgICAgICAgZGlyPXtkaXJ9XG4gICAgICAgIGRpc2FibGVkPXtkaXNhYmxlZH1cbiAgICAgICAgaHRtbEZvcj17aHRtbEZvcn1cbiAgICAgICAgaWQ9e2lkfVxuICAgICAgICBpdGFsaWM9e2l0YWxpY31cbiAgICAgICAgb25lTGluZT17b25lTGluZX1cbiAgICAgICAgcGxhY2VtZW50PXtwbGFjZW1lbnR9XG4gICAgICAgIHByb21pbmVuY2U9e3Byb21pbmVuY2V9XG4gICAgICAgIHJlZj17ZWxlbWVudFJlZn1cbiAgICAgICAgc2VudGltZW50PXtzZW50aW1lbnR9XG4gICAgICAgIHN0cmlrZVRocm91Z2g9e3N0cmlrZVRocm91Z2h9XG4gICAgICAgIHVuZGVybGluZT17dW5kZXJsaW5lfVxuICAgICAgICB2YXJpYW50PXt2YXJpYW50fVxuICAgICAgICB3aGl0ZVNwYWNlPXt3aGl0ZVNwYWNlfVxuICAgICAgPlxuICAgICAgICB7Y2hpbGRyZW59XG4gICAgICA8L1N0eWxlZFRleHQ+XG4gICAgPC9Ub29sdGlwPlxuICApXG59XG4iXX0= */");
|
|
7
|
+
import { text } from "./style.css.js";
|
|
62
8
|
const Text = ({
|
|
63
9
|
variant,
|
|
64
10
|
children,
|
|
65
|
-
as,
|
|
11
|
+
as: Component = "div",
|
|
66
12
|
sentiment,
|
|
67
13
|
oneLine = false,
|
|
68
14
|
placement,
|
|
@@ -82,7 +28,19 @@ const Text = ({
|
|
|
82
28
|
const elementRef = useRef(null);
|
|
83
29
|
const isOverflowing = useIsOverflowing(elementRef);
|
|
84
30
|
const finalStringChildren = recursivelyGetChildrenString(children);
|
|
85
|
-
return /* @__PURE__ */ jsx(Tooltip, { text: oneLine && isOverflowing ? finalStringChildren : "", children: /* @__PURE__ */ jsx(
|
|
31
|
+
return /* @__PURE__ */ jsx(Tooltip, { text: oneLine && isOverflowing ? finalStringChildren : "", children: /* @__PURE__ */ jsx(Component, { "aria-hidden": ariaHidden, className: `${className ? `${className} ` : ""}${text({
|
|
32
|
+
disabled,
|
|
33
|
+
italic,
|
|
34
|
+
oneLine,
|
|
35
|
+
prominence,
|
|
36
|
+
sentiment,
|
|
37
|
+
strikeThrough,
|
|
38
|
+
underline,
|
|
39
|
+
variant
|
|
40
|
+
})}`, "data-testid": dataTestId, dir, htmlFor, id, ref: elementRef, style: {
|
|
41
|
+
textAlign: placement,
|
|
42
|
+
whiteSpace
|
|
43
|
+
}, children }) });
|
|
86
44
|
};
|
|
87
45
|
export {
|
|
88
46
|
Text
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
;/* empty css */
|
|
4
|
+
const createRuntimeFn = require("@vanilla-extract/recipes/createRuntimeFn");
|
|
5
|
+
var text = createRuntimeFn.createRuntimeFn({ defaultClassName: "uv_m4c9ow0", variantClassNames: { strikeThrough: { true: "uv_m4c9ow1", false: "uv_m4c9ow2" }, italic: { true: "uv_m4c9ow3", false: "uv_m4c9ow4" }, underline: { true: "uv_m4c9ow5", false: "uv_m4c9ow6" }, oneLine: { true: "uv_m4c9ow7", false: "uv_m4c9ow8" }, sentiment: { primary: "uv_m4c9ow9", secondary: "uv_m4c9owa", neutral: "uv_m4c9owb", success: "uv_m4c9owc", danger: "uv_m4c9owd", warning: "uv_m4c9owe", info: "uv_m4c9owf", black: "uv_m4c9owg", white: "uv_m4c9owh" }, prominence: { "default": "uv_m4c9owi", strong: "uv_m4c9owj", stronger: "uv_m4c9owk", weak: "uv_m4c9owl" }, variant: { body: "uv_m4c9owm", bodySmall: "uv_m4c9own", bodySmallStrong: "uv_m4c9owo", bodySmallStronger: "uv_m4c9owp", bodyStrong: "uv_m4c9owq", bodyStronger: "uv_m4c9owr", caption: "uv_m4c9ows", captionSmall: "uv_m4c9owt", captionSmallStrong: "uv_m4c9owu", captionSmallStronger: "uv_m4c9owv", captionStrong: "uv_m4c9oww", captionStronger: "uv_m4c9owx", code: "uv_m4c9owy", codeStrong: "uv_m4c9owz", codeStronger: "uv_m4c9ow10", heading: "uv_m4c9ow11", headingLarge: "uv_m4c9ow12", headingLargeStrong: "uv_m4c9ow13", headingLargeStronger: "uv_m4c9ow14", headingSmall: "uv_m4c9ow15", headingSmallStrong: "uv_m4c9ow16", headingSmallStronger: "uv_m4c9ow17", headingStrong: "uv_m4c9ow18", headingStronger: "uv_m4c9ow19" }, disabled: { true: "uv_m4c9ow1a", false: "uv_m4c9ow1b" } }, defaultVariants: { strikeThrough: false, italic: false, underline: false, oneLine: false, sentiment: void 0, prominence: "default", variant: "body", disabled: false }, compoundVariants: [[{ sentiment: "primary", prominence: "default", disabled: false }, "uv_m4c9ow1c"], [{ sentiment: "primary", prominence: "strong", disabled: false }, "uv_m4c9ow1d"], [{ sentiment: "primary", prominence: "stronger", disabled: false }, "uv_m4c9ow1e"], [{ sentiment: "primary", prominence: "weak", disabled: false }, "uv_m4c9ow1f"], [{ sentiment: "secondary", prominence: "default", disabled: false }, "uv_m4c9ow1g"], [{ sentiment: "secondary", prominence: "strong", disabled: false }, "uv_m4c9ow1h"], [{ sentiment: "secondary", prominence: "stronger", disabled: false }, "uv_m4c9ow1i"], [{ sentiment: "secondary", prominence: "weak", disabled: false }, "uv_m4c9ow1j"], [{ sentiment: "danger", prominence: "default", disabled: false }, "uv_m4c9ow1k"], [{ sentiment: "danger", prominence: "strong", disabled: false }, "uv_m4c9ow1l"], [{ sentiment: "danger", prominence: "stronger", disabled: false }, "uv_m4c9ow1m"], [{ sentiment: "danger", prominence: "weak", disabled: false }, "uv_m4c9ow1n"], [{ sentiment: "info", prominence: "default", disabled: false }, "uv_m4c9ow1o"], [{ sentiment: "info", prominence: "strong", disabled: false }, "uv_m4c9ow1p"], [{ sentiment: "info", prominence: "stronger", disabled: false }, "uv_m4c9ow1q"], [{ sentiment: "info", prominence: "weak", disabled: false }, "uv_m4c9ow1r"], [{ sentiment: "success", prominence: "default", disabled: false }, "uv_m4c9ow1s"], [{ sentiment: "success", prominence: "strong", disabled: false }, "uv_m4c9ow1t"], [{ sentiment: "success", prominence: "stronger", disabled: false }, "uv_m4c9ow1u"], [{ sentiment: "success", prominence: "weak", disabled: false }, "uv_m4c9ow1v"], [{ sentiment: "warning", prominence: "default", disabled: false }, "uv_m4c9ow1w"], [{ sentiment: "warning", prominence: "strong", disabled: false }, "uv_m4c9ow1x"], [{ sentiment: "warning", prominence: "stronger", disabled: false }, "uv_m4c9ow1y"], [{ sentiment: "warning", prominence: "weak", disabled: false }, "uv_m4c9ow1z"], [{ sentiment: "neutral", prominence: "default", disabled: false }, "uv_m4c9ow20"], [{ sentiment: "neutral", prominence: "strong", disabled: false }, "uv_m4c9ow21"], [{ sentiment: "neutral", prominence: "stronger", disabled: false }, "uv_m4c9ow22"], [{ sentiment: "neutral", prominence: "weak", disabled: false }, "uv_m4c9ow23"], [{ sentiment: "black", prominence: "default", disabled: false }, "uv_m4c9ow24"], [{ sentiment: "black", prominence: "strong", disabled: false }, "uv_m4c9ow25"], [{ sentiment: "black", prominence: "stronger", disabled: false }, "uv_m4c9ow26"], [{ sentiment: "black", prominence: "weak", disabled: false }, "uv_m4c9ow27"], [{ sentiment: "white", prominence: "default", disabled: false }, "uv_m4c9ow28"], [{ sentiment: "white", prominence: "strong", disabled: false }, "uv_m4c9ow29"], [{ sentiment: "white", prominence: "stronger", disabled: false }, "uv_m4c9ow2a"], [{ sentiment: "white", prominence: "weak", disabled: false }, "uv_m4c9ow2b"], [{ sentiment: "primary", prominence: "default", disabled: true }, "uv_m4c9ow2c"], [{ sentiment: "primary", prominence: "strong", disabled: true }, "uv_m4c9ow2d"], [{ sentiment: "primary", prominence: "stronger", disabled: true }, "uv_m4c9ow2e"], [{ sentiment: "primary", prominence: "weak", disabled: true }, "uv_m4c9ow2f"], [{ sentiment: "secondary", prominence: "default", disabled: true }, "uv_m4c9ow2g"], [{ sentiment: "secondary", prominence: "strong", disabled: true }, "uv_m4c9ow2h"], [{ sentiment: "secondary", prominence: "stronger", disabled: true }, "uv_m4c9ow2i"], [{ sentiment: "secondary", prominence: "weak", disabled: true }, "uv_m4c9ow2j"], [{ sentiment: "danger", prominence: "default", disabled: true }, "uv_m4c9ow2k"], [{ sentiment: "danger", prominence: "strong", disabled: true }, "uv_m4c9ow2l"], [{ sentiment: "danger", prominence: "stronger", disabled: true }, "uv_m4c9ow2m"], [{ sentiment: "danger", prominence: "weak", disabled: true }, "uv_m4c9ow2n"], [{ sentiment: "info", prominence: "default", disabled: true }, "uv_m4c9ow2o"], [{ sentiment: "info", prominence: "strong", disabled: true }, "uv_m4c9ow2p"], [{ sentiment: "info", prominence: "stronger", disabled: true }, "uv_m4c9ow2q"], [{ sentiment: "info", prominence: "weak", disabled: true }, "uv_m4c9ow2r"], [{ sentiment: "success", prominence: "default", disabled: true }, "uv_m4c9ow2s"], [{ sentiment: "success", prominence: "strong", disabled: true }, "uv_m4c9ow2t"], [{ sentiment: "success", prominence: "stronger", disabled: true }, "uv_m4c9ow2u"], [{ sentiment: "success", prominence: "weak", disabled: true }, "uv_m4c9ow2v"], [{ sentiment: "warning", prominence: "default", disabled: true }, "uv_m4c9ow2w"], [{ sentiment: "warning", prominence: "strong", disabled: true }, "uv_m4c9ow2x"], [{ sentiment: "warning", prominence: "stronger", disabled: true }, "uv_m4c9ow2y"], [{ sentiment: "warning", prominence: "weak", disabled: true }, "uv_m4c9ow2z"], [{ sentiment: "neutral", prominence: "default", disabled: true }, "uv_m4c9ow30"], [{ sentiment: "neutral", prominence: "strong", disabled: true }, "uv_m4c9ow31"], [{ sentiment: "neutral", prominence: "stronger", disabled: true }, "uv_m4c9ow32"], [{ sentiment: "neutral", prominence: "weak", disabled: true }, "uv_m4c9ow33"], [{ sentiment: "black", prominence: "default", disabled: true }, "uv_m4c9ow34"], [{ sentiment: "black", prominence: "strong", disabled: true }, "uv_m4c9ow35"], [{ sentiment: "black", prominence: "stronger", disabled: true }, "uv_m4c9ow36"], [{ sentiment: "black", prominence: "weak", disabled: true }, "uv_m4c9ow37"], [{ sentiment: "white", prominence: "default", disabled: true }, "uv_m4c9ow38"], [{ sentiment: "white", prominence: "strong", disabled: true }, "uv_m4c9ow39"], [{ sentiment: "white", prominence: "stronger", disabled: true }, "uv_m4c9ow3a"], [{ sentiment: "white", prominence: "weak", disabled: true }, "uv_m4c9ow3b"], [{ prominence: "default", disabled: false }, "uv_m4c9ow3c"], [{ prominence: "strong", disabled: false }, "uv_m4c9ow3d"], [{ prominence: "stronger", disabled: false }, "uv_m4c9ow3e"], [{ prominence: "weak", disabled: false }, "uv_m4c9ow3f"]] });
|
|
6
|
+
exports.text = text;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import type { RecipeVariants } from '@vanilla-extract/recipes';
|
|
2
|
+
export declare const text: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
3
|
+
strikeThrough: {
|
|
4
|
+
true: {
|
|
5
|
+
textDecoration: "line-through";
|
|
6
|
+
};
|
|
7
|
+
false: {};
|
|
8
|
+
};
|
|
9
|
+
italic: {
|
|
10
|
+
true: {
|
|
11
|
+
fontStyle: "italic";
|
|
12
|
+
};
|
|
13
|
+
false: {};
|
|
14
|
+
};
|
|
15
|
+
underline: {
|
|
16
|
+
true: {
|
|
17
|
+
textDecoration: "underline";
|
|
18
|
+
};
|
|
19
|
+
false: {};
|
|
20
|
+
};
|
|
21
|
+
oneLine: {
|
|
22
|
+
true: {
|
|
23
|
+
whiteSpace: "nowrap";
|
|
24
|
+
textOverflow: "ellipsis";
|
|
25
|
+
overflow: "hidden";
|
|
26
|
+
};
|
|
27
|
+
false: {};
|
|
28
|
+
};
|
|
29
|
+
sentiment: {
|
|
30
|
+
primary: {};
|
|
31
|
+
secondary: {};
|
|
32
|
+
neutral: {};
|
|
33
|
+
success: {};
|
|
34
|
+
danger: {};
|
|
35
|
+
warning: {};
|
|
36
|
+
info: {};
|
|
37
|
+
black: {};
|
|
38
|
+
white: {};
|
|
39
|
+
};
|
|
40
|
+
prominence: {
|
|
41
|
+
default: {};
|
|
42
|
+
strong: {};
|
|
43
|
+
stronger: {};
|
|
44
|
+
weak: {};
|
|
45
|
+
};
|
|
46
|
+
variant: Record<"body" | "bodySmall" | "bodySmallStrong" | "bodySmallStronger" | "bodyStrong" | "bodyStronger" | "caption" | "captionSmall" | "captionSmallStrong" | "captionSmallStronger" | "captionStrong" | "captionStronger" | "code" | "codeStrong" | "codeStronger" | "heading" | "headingLarge" | "headingLargeStrong" | "headingLargeStronger" | "headingSmall" | "headingSmallStrong" | "headingSmallStronger" | "headingStrong" | "headingStronger", object>;
|
|
47
|
+
disabled: {
|
|
48
|
+
true: {};
|
|
49
|
+
false: {};
|
|
50
|
+
};
|
|
51
|
+
}>;
|
|
52
|
+
export type TextVariants = NonNullable<RecipeVariants<typeof text>>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/* empty css */
|
|
2
|
+
import { createRuntimeFn } from "@vanilla-extract/recipes/createRuntimeFn";
|
|
3
|
+
var text = createRuntimeFn({ defaultClassName: "uv_m4c9ow0", variantClassNames: { strikeThrough: { true: "uv_m4c9ow1", false: "uv_m4c9ow2" }, italic: { true: "uv_m4c9ow3", false: "uv_m4c9ow4" }, underline: { true: "uv_m4c9ow5", false: "uv_m4c9ow6" }, oneLine: { true: "uv_m4c9ow7", false: "uv_m4c9ow8" }, sentiment: { primary: "uv_m4c9ow9", secondary: "uv_m4c9owa", neutral: "uv_m4c9owb", success: "uv_m4c9owc", danger: "uv_m4c9owd", warning: "uv_m4c9owe", info: "uv_m4c9owf", black: "uv_m4c9owg", white: "uv_m4c9owh" }, prominence: { "default": "uv_m4c9owi", strong: "uv_m4c9owj", stronger: "uv_m4c9owk", weak: "uv_m4c9owl" }, variant: { body: "uv_m4c9owm", bodySmall: "uv_m4c9own", bodySmallStrong: "uv_m4c9owo", bodySmallStronger: "uv_m4c9owp", bodyStrong: "uv_m4c9owq", bodyStronger: "uv_m4c9owr", caption: "uv_m4c9ows", captionSmall: "uv_m4c9owt", captionSmallStrong: "uv_m4c9owu", captionSmallStronger: "uv_m4c9owv", captionStrong: "uv_m4c9oww", captionStronger: "uv_m4c9owx", code: "uv_m4c9owy", codeStrong: "uv_m4c9owz", codeStronger: "uv_m4c9ow10", heading: "uv_m4c9ow11", headingLarge: "uv_m4c9ow12", headingLargeStrong: "uv_m4c9ow13", headingLargeStronger: "uv_m4c9ow14", headingSmall: "uv_m4c9ow15", headingSmallStrong: "uv_m4c9ow16", headingSmallStronger: "uv_m4c9ow17", headingStrong: "uv_m4c9ow18", headingStronger: "uv_m4c9ow19" }, disabled: { true: "uv_m4c9ow1a", false: "uv_m4c9ow1b" } }, defaultVariants: { strikeThrough: false, italic: false, underline: false, oneLine: false, sentiment: void 0, prominence: "default", variant: "body", disabled: false }, compoundVariants: [[{ sentiment: "primary", prominence: "default", disabled: false }, "uv_m4c9ow1c"], [{ sentiment: "primary", prominence: "strong", disabled: false }, "uv_m4c9ow1d"], [{ sentiment: "primary", prominence: "stronger", disabled: false }, "uv_m4c9ow1e"], [{ sentiment: "primary", prominence: "weak", disabled: false }, "uv_m4c9ow1f"], [{ sentiment: "secondary", prominence: "default", disabled: false }, "uv_m4c9ow1g"], [{ sentiment: "secondary", prominence: "strong", disabled: false }, "uv_m4c9ow1h"], [{ sentiment: "secondary", prominence: "stronger", disabled: false }, "uv_m4c9ow1i"], [{ sentiment: "secondary", prominence: "weak", disabled: false }, "uv_m4c9ow1j"], [{ sentiment: "danger", prominence: "default", disabled: false }, "uv_m4c9ow1k"], [{ sentiment: "danger", prominence: "strong", disabled: false }, "uv_m4c9ow1l"], [{ sentiment: "danger", prominence: "stronger", disabled: false }, "uv_m4c9ow1m"], [{ sentiment: "danger", prominence: "weak", disabled: false }, "uv_m4c9ow1n"], [{ sentiment: "info", prominence: "default", disabled: false }, "uv_m4c9ow1o"], [{ sentiment: "info", prominence: "strong", disabled: false }, "uv_m4c9ow1p"], [{ sentiment: "info", prominence: "stronger", disabled: false }, "uv_m4c9ow1q"], [{ sentiment: "info", prominence: "weak", disabled: false }, "uv_m4c9ow1r"], [{ sentiment: "success", prominence: "default", disabled: false }, "uv_m4c9ow1s"], [{ sentiment: "success", prominence: "strong", disabled: false }, "uv_m4c9ow1t"], [{ sentiment: "success", prominence: "stronger", disabled: false }, "uv_m4c9ow1u"], [{ sentiment: "success", prominence: "weak", disabled: false }, "uv_m4c9ow1v"], [{ sentiment: "warning", prominence: "default", disabled: false }, "uv_m4c9ow1w"], [{ sentiment: "warning", prominence: "strong", disabled: false }, "uv_m4c9ow1x"], [{ sentiment: "warning", prominence: "stronger", disabled: false }, "uv_m4c9ow1y"], [{ sentiment: "warning", prominence: "weak", disabled: false }, "uv_m4c9ow1z"], [{ sentiment: "neutral", prominence: "default", disabled: false }, "uv_m4c9ow20"], [{ sentiment: "neutral", prominence: "strong", disabled: false }, "uv_m4c9ow21"], [{ sentiment: "neutral", prominence: "stronger", disabled: false }, "uv_m4c9ow22"], [{ sentiment: "neutral", prominence: "weak", disabled: false }, "uv_m4c9ow23"], [{ sentiment: "black", prominence: "default", disabled: false }, "uv_m4c9ow24"], [{ sentiment: "black", prominence: "strong", disabled: false }, "uv_m4c9ow25"], [{ sentiment: "black", prominence: "stronger", disabled: false }, "uv_m4c9ow26"], [{ sentiment: "black", prominence: "weak", disabled: false }, "uv_m4c9ow27"], [{ sentiment: "white", prominence: "default", disabled: false }, "uv_m4c9ow28"], [{ sentiment: "white", prominence: "strong", disabled: false }, "uv_m4c9ow29"], [{ sentiment: "white", prominence: "stronger", disabled: false }, "uv_m4c9ow2a"], [{ sentiment: "white", prominence: "weak", disabled: false }, "uv_m4c9ow2b"], [{ sentiment: "primary", prominence: "default", disabled: true }, "uv_m4c9ow2c"], [{ sentiment: "primary", prominence: "strong", disabled: true }, "uv_m4c9ow2d"], [{ sentiment: "primary", prominence: "stronger", disabled: true }, "uv_m4c9ow2e"], [{ sentiment: "primary", prominence: "weak", disabled: true }, "uv_m4c9ow2f"], [{ sentiment: "secondary", prominence: "default", disabled: true }, "uv_m4c9ow2g"], [{ sentiment: "secondary", prominence: "strong", disabled: true }, "uv_m4c9ow2h"], [{ sentiment: "secondary", prominence: "stronger", disabled: true }, "uv_m4c9ow2i"], [{ sentiment: "secondary", prominence: "weak", disabled: true }, "uv_m4c9ow2j"], [{ sentiment: "danger", prominence: "default", disabled: true }, "uv_m4c9ow2k"], [{ sentiment: "danger", prominence: "strong", disabled: true }, "uv_m4c9ow2l"], [{ sentiment: "danger", prominence: "stronger", disabled: true }, "uv_m4c9ow2m"], [{ sentiment: "danger", prominence: "weak", disabled: true }, "uv_m4c9ow2n"], [{ sentiment: "info", prominence: "default", disabled: true }, "uv_m4c9ow2o"], [{ sentiment: "info", prominence: "strong", disabled: true }, "uv_m4c9ow2p"], [{ sentiment: "info", prominence: "stronger", disabled: true }, "uv_m4c9ow2q"], [{ sentiment: "info", prominence: "weak", disabled: true }, "uv_m4c9ow2r"], [{ sentiment: "success", prominence: "default", disabled: true }, "uv_m4c9ow2s"], [{ sentiment: "success", prominence: "strong", disabled: true }, "uv_m4c9ow2t"], [{ sentiment: "success", prominence: "stronger", disabled: true }, "uv_m4c9ow2u"], [{ sentiment: "success", prominence: "weak", disabled: true }, "uv_m4c9ow2v"], [{ sentiment: "warning", prominence: "default", disabled: true }, "uv_m4c9ow2w"], [{ sentiment: "warning", prominence: "strong", disabled: true }, "uv_m4c9ow2x"], [{ sentiment: "warning", prominence: "stronger", disabled: true }, "uv_m4c9ow2y"], [{ sentiment: "warning", prominence: "weak", disabled: true }, "uv_m4c9ow2z"], [{ sentiment: "neutral", prominence: "default", disabled: true }, "uv_m4c9ow30"], [{ sentiment: "neutral", prominence: "strong", disabled: true }, "uv_m4c9ow31"], [{ sentiment: "neutral", prominence: "stronger", disabled: true }, "uv_m4c9ow32"], [{ sentiment: "neutral", prominence: "weak", disabled: true }, "uv_m4c9ow33"], [{ sentiment: "black", prominence: "default", disabled: true }, "uv_m4c9ow34"], [{ sentiment: "black", prominence: "strong", disabled: true }, "uv_m4c9ow35"], [{ sentiment: "black", prominence: "stronger", disabled: true }, "uv_m4c9ow36"], [{ sentiment: "black", prominence: "weak", disabled: true }, "uv_m4c9ow37"], [{ sentiment: "white", prominence: "default", disabled: true }, "uv_m4c9ow38"], [{ sentiment: "white", prominence: "strong", disabled: true }, "uv_m4c9ow39"], [{ sentiment: "white", prominence: "stronger", disabled: true }, "uv_m4c9ow3a"], [{ sentiment: "white", prominence: "weak", disabled: true }, "uv_m4c9ow3b"], [{ prominence: "default", disabled: false }, "uv_m4c9ow3c"], [{ prominence: "strong", disabled: false }, "uv_m4c9ow3d"], [{ prominence: "stronger", disabled: false }, "uv_m4c9ow3e"], [{ prominence: "weak", disabled: false }, "uv_m4c9ow3f"]] });
|
|
4
|
+
export {
|
|
5
|
+
text
|
|
6
|
+
};
|
|
@@ -22,6 +22,7 @@ export { Expandable } from './Expandable';
|
|
|
22
22
|
export { ExpandableCard } from './ExpandableCard';
|
|
23
23
|
export { GlobalAlert } from './GlobalAlert';
|
|
24
24
|
export { InfiniteScroll } from './InfiniteScroll';
|
|
25
|
+
export { Key } from './Key';
|
|
25
26
|
export { Label } from './Label';
|
|
26
27
|
export { LineChart } from './LineChart';
|
|
27
28
|
export { Link } from './Link';
|
package/dist/index.cjs
CHANGED
|
@@ -32,55 +32,56 @@ const index$l = require("./components/Expandable/index.cjs");
|
|
|
32
32
|
const index$m = require("./components/ExpandableCard/index.cjs");
|
|
33
33
|
const index$n = require("./components/GlobalAlert/index.cjs");
|
|
34
34
|
const index$o = require("./components/InfiniteScroll/index.cjs");
|
|
35
|
-
const index$p = require("./components/
|
|
36
|
-
const index$q = require("./components/
|
|
37
|
-
const index$r = require("./components/
|
|
38
|
-
const index$s = require("./components/
|
|
39
|
-
const index$t = require("./components/
|
|
40
|
-
const index$u = require("./components/
|
|
41
|
-
const index$v = require("./components/
|
|
42
|
-
const index$w = require("./components/
|
|
43
|
-
const index$x = require("./components/
|
|
44
|
-
const index$y = require("./components/
|
|
45
|
-
const index$z = require("./components/
|
|
46
|
-
const index$A = require("./components/
|
|
47
|
-
const index$B = require("./components/
|
|
48
|
-
const index$C = require("./components/
|
|
49
|
-
const index$D = require("./components/
|
|
50
|
-
const index$E = require("./components/
|
|
51
|
-
const index$F = require("./components/
|
|
52
|
-
const index$G = require("./components/
|
|
53
|
-
const index$H = require("./components/
|
|
54
|
-
const index$I = require("./components/
|
|
55
|
-
const index$J = require("./components/
|
|
56
|
-
const index$K = require("./components/
|
|
57
|
-
const index$L = require("./components/
|
|
58
|
-
const index$M = require("./components/
|
|
59
|
-
const index$N = require("./components/
|
|
60
|
-
const index$O = require("./components/
|
|
61
|
-
const index$P = require("./components/
|
|
62
|
-
const index$Q = require("./components/
|
|
63
|
-
const index$R = require("./components/
|
|
64
|
-
const index$S = require("./components/
|
|
65
|
-
const index$T = require("./components/
|
|
66
|
-
const index$U = require("./components/
|
|
67
|
-
const index$V = require("./components/
|
|
68
|
-
const index$W = require("./components/
|
|
69
|
-
const index$X = require("./components/
|
|
70
|
-
const index$Y = require("./components/
|
|
71
|
-
const index$Z = require("./components/
|
|
72
|
-
const index$_ = require("./components/
|
|
73
|
-
const index$$ = require("./components/
|
|
74
|
-
const index$10 = require("./components/
|
|
75
|
-
const index$11 = require("./components/
|
|
76
|
-
const index$12 = require("./components/
|
|
77
|
-
const index$13 = require("./components/
|
|
78
|
-
const index$14 = require("./components/
|
|
79
|
-
const index$15 = require("./components/
|
|
80
|
-
const index$16 = require("./components/
|
|
81
|
-
const index$17 = require("./components/
|
|
82
|
-
const index$18 = require("./components/
|
|
83
|
-
const index$19 = require("./components/
|
|
35
|
+
const index$p = require("./components/Key/index.cjs");
|
|
36
|
+
const index$q = require("./components/Label/index.cjs");
|
|
37
|
+
const index$r = require("./components/LineChart/index.cjs");
|
|
38
|
+
const index$s = require("./components/Link/index.cjs");
|
|
39
|
+
const index$t = require("./components/List/index.cjs");
|
|
40
|
+
const index$u = require("./components/Loader/index.cjs");
|
|
41
|
+
const index$v = require("./components/Menu/index.cjs");
|
|
42
|
+
const index$w = require("./components/Meter/index.cjs");
|
|
43
|
+
const index$x = require("./components/Modal/index.cjs");
|
|
44
|
+
const index$y = require("./components/Notice/index.cjs");
|
|
45
|
+
const index$z = require("./components/Notification/index.cjs");
|
|
46
|
+
const index$A = require("./components/NumberInput/index.cjs");
|
|
47
|
+
const index$B = require("./components/Pagination/index.cjs");
|
|
48
|
+
const index$C = require("./components/PasswordCheck/index.cjs");
|
|
49
|
+
const index$D = require("./components/PieChart/index.cjs");
|
|
50
|
+
const index$E = require("./components/Popover/index.cjs");
|
|
51
|
+
const index$F = require("./components/Popup/index.cjs");
|
|
52
|
+
const index$G = require("./components/ProgressBar/index.cjs");
|
|
53
|
+
const index$H = require("./components/Radio/index.cjs");
|
|
54
|
+
const index$I = require("./components/RadioGroup/index.cjs");
|
|
55
|
+
const index$J = require("./components/Row/index.cjs");
|
|
56
|
+
const index$K = require("./components/SearchInput/index.cjs");
|
|
57
|
+
const index$L = require("./components/SelectableCard/index.cjs");
|
|
58
|
+
const index$M = require("./components/SelectableCardGroup/index.cjs");
|
|
59
|
+
const index$N = require("./components/SelectableCardOptionGroup/index.cjs");
|
|
60
|
+
const index$O = require("./components/SelectInput/index.cjs");
|
|
61
|
+
const index$P = require("./components/Separator/index.cjs");
|
|
62
|
+
const index$Q = require("./components/Skeleton/index.cjs");
|
|
63
|
+
const index$R = require("./components/Slider/index.cjs");
|
|
64
|
+
const index$S = require("./components/Snippet/index.cjs");
|
|
65
|
+
const index$T = require("./components/Stack/index.cjs");
|
|
66
|
+
const index$U = require("./components/Status/index.cjs");
|
|
67
|
+
const index$V = require("./components/StepList/index.cjs");
|
|
68
|
+
const index$W = require("./components/Stepper/index.cjs");
|
|
69
|
+
const index$X = require("./components/SwitchButton/index.cjs");
|
|
70
|
+
const index$Y = require("./components/Table/index.cjs");
|
|
71
|
+
const index$Z = require("./components/Tabs/index.cjs");
|
|
72
|
+
const index$_ = require("./components/Tag/index.cjs");
|
|
73
|
+
const index$$ = require("./components/TagInput/index.cjs");
|
|
74
|
+
const index$10 = require("./components/TagList/index.cjs");
|
|
75
|
+
const index$11 = require("./components/Text/index.cjs");
|
|
76
|
+
const index$12 = require("./components/TextArea/index.cjs");
|
|
77
|
+
const index$13 = require("./components/TextInput/index.cjs");
|
|
78
|
+
const index$14 = require("./components/TimeInput/index.cjs");
|
|
79
|
+
const index$15 = require("./components/Toaster/index.cjs");
|
|
80
|
+
const index$16 = require("./components/Toggle/index.cjs");
|
|
81
|
+
const index$17 = require("./components/ToggleGroup/index.cjs");
|
|
82
|
+
const index$18 = require("./components/Tooltip/index.cjs");
|
|
83
|
+
const index$19 = require("./components/UnitInput/index.cjs");
|
|
84
|
+
const index$1a = require("./components/VerificationCode/index.cjs");
|
|
84
85
|
exports.extendTheme = index.extendTheme;
|
|
85
86
|
exports.Breakpoint = Breakpoint;
|
|
86
87
|
exports.normalize = normalize;
|
|
@@ -149,54 +150,55 @@ exports.Expandable = index$l.Expandable;
|
|
|
149
150
|
exports.ExpandableCard = index$m.ExpandableCard;
|
|
150
151
|
exports.GlobalAlert = index$n.GlobalAlert;
|
|
151
152
|
exports.InfiniteScroll = index$o.InfiniteScroll;
|
|
152
|
-
exports.
|
|
153
|
-
exports.
|
|
154
|
-
exports.
|
|
155
|
-
exports.
|
|
156
|
-
exports.
|
|
157
|
-
exports.
|
|
158
|
-
exports.
|
|
159
|
-
exports.
|
|
160
|
-
exports.
|
|
161
|
-
exports.
|
|
162
|
-
exports.
|
|
163
|
-
exports.
|
|
164
|
-
exports.
|
|
165
|
-
exports.
|
|
166
|
-
exports.
|
|
167
|
-
exports.
|
|
168
|
-
exports.
|
|
169
|
-
exports.
|
|
170
|
-
exports.
|
|
171
|
-
exports.
|
|
172
|
-
exports.
|
|
173
|
-
exports.
|
|
174
|
-
exports.
|
|
175
|
-
exports.
|
|
176
|
-
exports.
|
|
177
|
-
exports.
|
|
178
|
-
exports.
|
|
179
|
-
exports.
|
|
180
|
-
exports.
|
|
181
|
-
exports.
|
|
182
|
-
exports.
|
|
183
|
-
exports.
|
|
184
|
-
exports.
|
|
185
|
-
exports.
|
|
186
|
-
exports.
|
|
187
|
-
exports.
|
|
188
|
-
exports.
|
|
189
|
-
exports.
|
|
190
|
-
exports.
|
|
191
|
-
exports.
|
|
192
|
-
exports.
|
|
193
|
-
exports.
|
|
194
|
-
exports.
|
|
195
|
-
exports.
|
|
196
|
-
exports.
|
|
197
|
-
exports.
|
|
198
|
-
exports.
|
|
199
|
-
exports.
|
|
200
|
-
exports.
|
|
201
|
-
exports.
|
|
202
|
-
exports.
|
|
153
|
+
exports.Key = index$p.Key;
|
|
154
|
+
exports.Label = index$q.Label;
|
|
155
|
+
exports.LineChart = index$r.LineChart;
|
|
156
|
+
exports.Link = index$s.Link;
|
|
157
|
+
exports.List = index$t.List;
|
|
158
|
+
exports.Loader = index$u.Loader;
|
|
159
|
+
exports.Menu = index$v.Menu;
|
|
160
|
+
exports.Meter = index$w.Meter;
|
|
161
|
+
exports.Modal = index$x.Modal;
|
|
162
|
+
exports.Notice = index$y.Notice;
|
|
163
|
+
exports.NotificationContainer = index$z.NotificationContainer;
|
|
164
|
+
exports.notification = index$z.notification;
|
|
165
|
+
exports.NumberInput = index$A.NumberInput;
|
|
166
|
+
exports.Pagination = index$B.Pagination;
|
|
167
|
+
exports.PasswordCheck = index$C.PasswordCheck;
|
|
168
|
+
exports.PieChart = index$D.PieChart;
|
|
169
|
+
exports.Popover = index$E.Popover;
|
|
170
|
+
exports.Popup = index$F.Popup;
|
|
171
|
+
exports.ProgressBar = index$G.ProgressBar;
|
|
172
|
+
exports.Radio = index$H.Radio;
|
|
173
|
+
exports.RadioGroup = index$I.RadioGroup;
|
|
174
|
+
exports.Row = index$J.Row;
|
|
175
|
+
exports.SearchInput = index$K.SearchInput;
|
|
176
|
+
exports.SelectableCard = index$L.SelectableCard;
|
|
177
|
+
exports.SelectableCardGroup = index$M.SelectableCardGroup;
|
|
178
|
+
exports.SelectableCardOptionGroup = index$N.SelectableCardOptionGroup;
|
|
179
|
+
exports.SelectInput = index$O.SelectInput;
|
|
180
|
+
exports.Separator = index$P.Separator;
|
|
181
|
+
exports.Skeleton = index$Q.Skeleton;
|
|
182
|
+
exports.Slider = index$R.Slider;
|
|
183
|
+
exports.Snippet = index$S.Snippet;
|
|
184
|
+
exports.Stack = index$T.Stack;
|
|
185
|
+
exports.Status = index$U.Status;
|
|
186
|
+
exports.StepList = index$V.StepList;
|
|
187
|
+
exports.Stepper = index$W.Stepper;
|
|
188
|
+
exports.SwitchButton = index$X.SwitchButton;
|
|
189
|
+
exports.Table = index$Y.Table;
|
|
190
|
+
exports.Tabs = index$Z.Tabs;
|
|
191
|
+
exports.Tag = index$_.Tag;
|
|
192
|
+
exports.TagInput = index$$.TagInput;
|
|
193
|
+
exports.TagList = index$10.TagList;
|
|
194
|
+
exports.Text = index$11.Text;
|
|
195
|
+
exports.TextArea = index$12.TextArea;
|
|
196
|
+
exports.TextInput = index$13.TextInput;
|
|
197
|
+
exports.TimeInput = index$14.TimeInput;
|
|
198
|
+
exports.ToastContainer = index$15.ToastContainer;
|
|
199
|
+
exports.toast = index$15.toast;
|
|
200
|
+
exports.Toggle = index$16.Toggle;
|
|
201
|
+
exports.ToggleGroup = index$17.ToggleGroup;
|
|
202
|
+
exports.Tooltip = index$18.Tooltip;
|
|
203
|
+
exports.UnitInput = index$19.UnitInput;
|
|
204
|
+
exports.VerificationCode = index$1a.VerificationCode;
|
package/dist/index.js
CHANGED
|
@@ -30,6 +30,7 @@ import { Expandable } from "./components/Expandable/index.js";
|
|
|
30
30
|
import { ExpandableCard } from "./components/ExpandableCard/index.js";
|
|
31
31
|
import { GlobalAlert } from "./components/GlobalAlert/index.js";
|
|
32
32
|
import { InfiniteScroll } from "./components/InfiniteScroll/index.js";
|
|
33
|
+
import { Key } from "./components/Key/index.js";
|
|
33
34
|
import { Label } from "./components/Label/index.js";
|
|
34
35
|
import { LineChart } from "./components/LineChart/index.js";
|
|
35
36
|
import { Link } from "./components/Link/index.js";
|
|
@@ -106,6 +107,7 @@ export {
|
|
|
106
107
|
ExpandableCard,
|
|
107
108
|
GlobalAlert,
|
|
108
109
|
InfiniteScroll,
|
|
110
|
+
Key,
|
|
109
111
|
Label,
|
|
110
112
|
LineChart,
|
|
111
113
|
Link,
|
package/dist/ui.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@keyframes uv_1af1o4g0{0%{opacity:0}to{opacity:1}}.uv_1p607tg0{height:100%;padding:0 var(--rwwhsl9v)}.uv_1p607tg1{animation:uv_1af1o4g0 .2s ease-in-out;background-color:var(--rwwhsl3b);border-radius:var(--rwwhsl85);box-shadow:var(--rwwhsl8f),var(--rwwhsl8g);height:var(--rwwhsl9l);left:50%;position:fixed;transform:translate(-50%);width:37.5rem}.uv_e1wcoe0{display:inline-flex;position:relative;flex-direction:row;box-sizing:border-box;align-items:center;justify-content:center;outline-offset:2px;white-space:nowrap;text-decoration:none;border-radius:var(--rwwhsl85)}.uv_e1wcoe0:hover{text-decoration:none}.uv_e1wcoe1{height:var(--rwwhsl9k);padding-left:var(--rwwhsl9v);padding-right:var(--rwwhsl9v);gap:var(--rwwhsl9u);font-size:var(--rwwhslb9);font-family:var(--rwwhslb8);font-weight:var(--rwwhslbg);letter-spacing:var(--rwwhslbb);line-height:var(--rwwhslbc)}.uv_e1wcoe2{height:var(--rwwhsl9j);padding-left:var(--rwwhsla6);padding-right:var(--rwwhsla6);gap:var(--rwwhsl9u);font-size:var(--rwwhslar);font-family:var(--rwwhslaq);font-weight:var(--rwwhslay);letter-spacing:var(--rwwhslat);line-height:var(--rwwhslau)}.uv_e1wcoe3{height:var(--rwwhsl9h);padding-left:var(--rwwhsl9u);padding-right:var(--rwwhsl9u);gap:var(--rwwhsl9u);font-size:var(--rwwhslar);font-family:var(--rwwhslaq);font-weight:var(--rwwhslay);letter-spacing:var(--rwwhslat);line-height:var(--rwwhslau)}.uv_e1wcoe4{height:var(--rwwhsl9f);padding-left:var(--rwwhsla4);padding-right:var(--rwwhsla4);gap:var(--rwwhsla4);font-size:var(--rwwhslar);font-family:var(--rwwhslaq);font-weight:var(--rwwhslay);letter-spacing:var(--rwwhslat);line-height:var(--rwwhslau)}.uv_e1wcoe5{width:100%}.uv_e1wcoe6{width:auto}.uv_e1wcoej{cursor:not-allowed}.uv_e1wcoek{cursor:pointer}.uv_e1wcoel{background:var(--rwwhsl5j);color:var(--rwwhsl61);border:none}.uv_e1wcoel:hover,.uv_e1wcoel:active{background:var(--rwwhsl5l);color:var(--rwwhsl63)}.uv_e1wcoel:disabled{background:var(--rwwhsl5k);color:var(--rwwhsl62)}.uv_e1wcoem{background:var(--rwwhsl67);color:var(--rwwhsl6p);border:none}.uv_e1wcoem:hover,.uv_e1wcoem:active{background:var(--rwwhsl69);color:var(--rwwhsl6r)}.uv_e1wcoem:disabled{background:var(--rwwhsl68);color:var(--rwwhsl6q)}.uv_e1wcoen{background:var(--rwwhsl9);color:var(--rwwhslr);border:none}.uv_e1wcoen:hover,.uv_e1wcoen:active{background:var(--rwwhslb);color:var(--rwwhslt)}.uv_e1wcoen:disabled{background:var(--rwwhsla);color:var(--rwwhsls)}.uv_e1wcoeo{background:var(--rwwhslx);color:var(--rwwhsl1f);border:none}.uv_e1wcoeo:hover,.uv_e1wcoeo:active{background:var(--rwwhslz);color:var(--rwwhsl1h)}.uv_e1wcoeo:disabled{background:var(--rwwhsly);color:var(--rwwhsl1g)}.uv_e1wcoep{background:var(--rwwhsl6v);color:var(--rwwhsl7d);border:none}.uv_e1wcoep:hover,.uv_e1wcoep:active{background:var(--rwwhsl6x);color:var(--rwwhsl7f)}.uv_e1wcoep:disabled{background:var(--rwwhsl6w);color:var(--rwwhsl7e)}.uv_e1wcoeq{background:var(--rwwhsl7j);color:var(--rwwhsl81);border:none}.uv_e1wcoeq:hover,.uv_e1wcoeq:active{background:var(--rwwhsl7l);color:var(--rwwhsl83)}.uv_e1wcoeq:disabled{background:var(--rwwhsl7k);color:var(--rwwhsl82)}.uv_e1wcoer{background:var(--rwwhsl1l);color:var(--rwwhsl2m);border:none}.uv_e1wcoer:hover,.uv_e1wcoer:active{background:var(--rwwhsl1q);color:var(--rwwhsl2r)}.uv_e1wcoer:disabled{background:var(--rwwhsl1m);color:var(--rwwhsl2n)}.uv_e1wcoes{background:var(--rwwhsl4r);color:var(--rwwhsl5c);border:none}.uv_e1wcoes:hover,.uv_e1wcoes:active{background:var(--rwwhsl4t);color:var(--rwwhsl5e)}.uv_e1wcoes:disabled{background:var(--rwwhsl4s);color:var(--rwwhsl51)}.uv_e1wcoet{background:var(--rwwhsl53);color:var(--rwwhsl50);border:none}.uv_e1wcoet:hover,.uv_e1wcoet:active{background:var(--rwwhsl55);color:var(--rwwhsl52)}.uv_e1wcoet:disabled{background:var(--rwwhsl54);color:var(--rwwhsl5d)}.uv_e1wcoeu{background:none;color:var(--rwwhsl5y);border:1px solid var(--rwwhsl5m)}.uv_e1wcoeu:hover,.uv_e1wcoeu:active{background:var(--rwwhsl5i);color:var(--rwwhsl60);border:1px solid var(--rwwhsl5o)}.uv_e1wcoeu:disabled{color:var(--rwwhsl5z);border:1px solid var(--rwwhsl5n)}.uv_e1wcoev{background:none;color:var(--rwwhsl6m);border:1px solid var(--rwwhsl6a)}.uv_e1wcoev:hover,.uv_e1wcoev:active{background:var(--rwwhsl66);color:var(--rwwhsl6o);border:1px solid var(--rwwhsl6c)}.uv_e1wcoev:disabled{color:var(--rwwhsl6n);border:1px solid var(--rwwhsl6b)}.uv_e1wcoew{background:none;color:var(--rwwhslo);border:1px solid var(--rwwhslc)}.uv_e1wcoew:hover,.uv_e1wcoew:active{background:var(--rwwhsl8);color:var(--rwwhslq);border:1px solid var(--rwwhsle)}.uv_e1wcoew:disabled{color:var(--rwwhslp);border:1px solid var(--rwwhsld)}.uv_e1wcoex{background:none;color:var(--rwwhsl1c);border:1px solid var(--rwwhsl10)}.uv_e1wcoex:hover,.uv_e1wcoex:active{background:var(--rwwhslw);color:var(--rwwhsl1e);border:1px solid var(--rwwhsl12)}.uv_e1wcoex:disabled{color:var(--rwwhsl1d);border:1px solid var(--rwwhsl11)}.uv_e1wcoey{background:none;color:var(--rwwhsl7a);border:1px solid var(--rwwhsl6y)}.uv_e1wcoey:hover,.uv_e1wcoey:active{background:var(--rwwhsl6u);color:var(--rwwhsl7c);border:1px solid var(--rwwhsl70)}.uv_e1wcoey:disabled{color:var(--rwwhsl7b);border:1px solid var(--rwwhsl6z)}.uv_e1wcoez{background:none;color:var(--rwwhsl7y);border:1px solid var(--rwwhsl7m)}.uv_e1wcoez:hover,.uv_e1wcoez:active{background:var(--rwwhsl7i);color:var(--rwwhsl80);border:1px solid var(--rwwhsl7o)}.uv_e1wcoez:disabled{color:var(--rwwhsl7z);border:1px solid var(--rwwhsl7n)}.uv_e1wcoe10{background:none;color:var(--rwwhsl2j);border:1px solid var(--rwwhsl1y)}.uv_e1wcoe10:hover,.uv_e1wcoe10:active{background:var(--rwwhsl1k);color:var(--rwwhsl2l);border:1px solid var(--rwwhsl23)}.uv_e1wcoe10:disabled{color:var(--rwwhsl2k);border:1px solid var(--rwwhsl1z)}.uv_e1wcoe11{background:none;color:var(--rwwhsl50);border:1px solid var(--rwwhsl4u)}.uv_e1wcoe11:hover,.uv_e1wcoe11:active{background:var(--rwwhsl4t);color:var(--rwwhsl5e);border:1px solid var(--rwwhsl4w)}.uv_e1wcoe11:disabled{color:var(--rwwhsl51);border:1px solid var(--rwwhsl4v)}.uv_e1wcoe12{background:none;color:var(--rwwhsl5c);border:1px solid var(--rwwhsl56)}.uv_e1wcoe12:hover,.uv_e1wcoe12:active{background:var(--rwwhsl55);color:var(--rwwhsl52);border:1px solid var(--rwwhsl58)}.uv_e1wcoe12:disabled{color:var(--rwwhsl5d);border:1px solid var(--rwwhsl57)}.uv_e1wcoe13{background:none;color:var(--rwwhsl5y);border:none}.uv_e1wcoe13:hover,.uv_e1wcoe13:active{background:var(--rwwhsl5i);color:var(--rwwhsl60)}.uv_e1wcoe13:disabled{color:var(--rwwhsl5z)}.uv_e1wcoe14{background:none;color:var(--rwwhsl6m);border:none}.uv_e1wcoe14:hover,.uv_e1wcoe14:active{background:var(--rwwhsl66);color:var(--rwwhsl6o)}.uv_e1wcoe14:disabled{color:var(--rwwhsl6n)}.uv_e1wcoe15{background:none;color:var(--rwwhslo);border:none}.uv_e1wcoe15:hover,.uv_e1wcoe15:active{background:var(--rwwhsl8);color:var(--rwwhslq)}.uv_e1wcoe15:disabled{color:var(--rwwhslp)}.uv_e1wcoe16{background:none;color:var(--rwwhsl1c);border:none}.uv_e1wcoe16:hover,.uv_e1wcoe16:active{background:var(--rwwhslw);color:var(--rwwhsl1e)}.uv_e1wcoe16:disabled{color:var(--rwwhsl1d)}.uv_e1wcoe17{background:none;color:var(--rwwhsl7a);border:none}.uv_e1wcoe17:hover,.uv_e1wcoe17:active{background:var(--rwwhsl6u);color:var(--rwwhsl7c)}.uv_e1wcoe17:disabled{color:var(--rwwhsl7b)}.uv_e1wcoe18{background:none;color:var(--rwwhsl7y);border:none}.uv_e1wcoe18:hover,.uv_e1wcoe18:active{background:var(--rwwhsl7i);color:var(--rwwhsl80)}.uv_e1wcoe18:disabled{color:var(--rwwhsl7z)}.uv_e1wcoe19{background:none;color:var(--rwwhsl2j);border:none}.uv_e1wcoe19:hover,.uv_e1wcoe19:active{background:var(--rwwhsl1k);color:var(--rwwhsl2l)}.uv_e1wcoe19:disabled{color:var(--rwwhsl2k)}.uv_e1wcoe1a{background:none;color:var(--rwwhsl50);border:none}.uv_e1wcoe1a:hover,.uv_e1wcoe1a:active{background:var(--rwwhsl4t);color:var(--rwwhsl5e)}.uv_e1wcoe1a:disabled{color:var(--rwwhsl51)}.uv_e1wcoe1b{background:none;color:var(--rwwhsl5c);border:none}.uv_e1wcoe1b:hover,.uv_e1wcoe1b:active{background:var(--rwwhsl55);color:var(--rwwhsl52)}.uv_e1wcoe1b:disabled{color:var(--rwwhsl5d)}.uv_1yf71jy0{display:inline-flex;align-items:center;justify-content:center;border-radius:var(--rwwhsl89);width:fit-content;border-width:1px;border-style:solid}.uv_1yf71jy0.uv_1yf71jy0{text-transform:uppercase}.uv_1yf71jy1{padding:0 var(--rwwhsl9u);gap:var(--rwwhsla4);height:var(--rwwhsl9c)}.uv_1yf71jy2{padding:0 var(--rwwhsla6);gap:var(--rwwhsl9u);height:var(--rwwhsl9f)}.uv_1yf71jy3{padding:0 var(--rwwhsl9v);gap:var(--rwwhsl9u);height:var(--rwwhsl9h)}.uv_1yf71jyf{border:none;color:var(--rwwhsl2s);background-color:var(--rwwhsl1l)}.uv_1yf71jyg{background:var(--rwwhsl5g);color:var(--rwwhsl5y);border-color:var(--rwwhsl5g)}.uv_1yf71jyh{background:var(--rwwhsl64);color:var(--rwwhsl6m);border-color:var(--rwwhsl64)}.uv_1yf71jyi{background:var(--rwwhsl6);color:var(--rwwhslo);border-color:var(--rwwhsl6)}.uv_1yf71jyj{background:var(--rwwhslu);color:var(--rwwhsl1c);border-color:var(--rwwhslu)}.uv_1yf71jyk{background:var(--rwwhsl6s);color:var(--rwwhsl7a);border-color:var(--rwwhsl6s)}.uv_1yf71jyl{background:var(--rwwhsl7g);color:var(--rwwhsl7y);border-color:var(--rwwhsl7g)}.uv_1yf71jym{background:var(--rwwhsl1r);color:var(--rwwhsl2j);border-color:var(--rwwhsl1v)}.uv_1yf71jyn{background:var(--rwwhsl5j);color:var(--rwwhsl61);border-color:var(--rwwhsl5j)}.uv_1yf71jyo{background:var(--rwwhsl67);color:var(--rwwhsl6p);border-color:var(--rwwhsl67)}.uv_1yf71jyp{background:var(--rwwhsl9);color:var(--rwwhslr);border-color:var(--rwwhsl9)}.uv_1yf71jyq{background:var(--rwwhslx);color:var(--rwwhsl1f);border-color:var(--rwwhslx)}.uv_1yf71jyr{background:var(--rwwhsl6v);color:var(--rwwhsl7d);border-color:var(--rwwhsl6v)}.uv_1yf71jys{background:var(--rwwhsl7j);color:var(--rwwhsl81);border-color:var(--rwwhsl7j)}.uv_1yf71jyt{background:var(--rwwhsl1n);color:var(--rwwhsl2o);border-color:var(--rwwhsl20)}.backdrop-drawer{padding:0!important;transition:opacity .1s ease-in-out}
|
|
1
|
+
@keyframes uv_1af1o4g0{0%{opacity:0}to{opacity:1}}.uv_1p607tg0{height:100%;padding:0 var(--rwwhsl9v)}.uv_1p607tg1{animation:uv_1af1o4g0 .2s ease-in-out;background-color:var(--rwwhsl3b);border-radius:var(--rwwhsl85);box-shadow:var(--rwwhsl8f),var(--rwwhsl8g);height:var(--rwwhsl9l);left:50%;position:fixed;transform:translate(-50%);width:37.5rem}.uv_e1wcoe0{display:inline-flex;position:relative;flex-direction:row;box-sizing:border-box;align-items:center;justify-content:center;outline-offset:2px;white-space:nowrap;text-decoration:none;border-radius:var(--rwwhsl85)}.uv_e1wcoe0:hover{text-decoration:none}.uv_e1wcoe1{height:var(--rwwhsl9k);padding-left:var(--rwwhsl9v);padding-right:var(--rwwhsl9v);gap:var(--rwwhsl9u);font-size:var(--rwwhslb9);font-family:var(--rwwhslb8);font-weight:var(--rwwhslbg);letter-spacing:var(--rwwhslbb);line-height:var(--rwwhslbc)}.uv_e1wcoe2{height:var(--rwwhsl9j);padding-left:var(--rwwhsla6);padding-right:var(--rwwhsla6);gap:var(--rwwhsl9u);font-size:var(--rwwhslar);font-family:var(--rwwhslaq);font-weight:var(--rwwhslay);letter-spacing:var(--rwwhslat);line-height:var(--rwwhslau)}.uv_e1wcoe3{height:var(--rwwhsl9h);padding-left:var(--rwwhsl9u);padding-right:var(--rwwhsl9u);gap:var(--rwwhsl9u);font-size:var(--rwwhslar);font-family:var(--rwwhslaq);font-weight:var(--rwwhslay);letter-spacing:var(--rwwhslat);line-height:var(--rwwhslau)}.uv_e1wcoe4{height:var(--rwwhsl9f);padding-left:var(--rwwhsla4);padding-right:var(--rwwhsla4);gap:var(--rwwhsla4);font-size:var(--rwwhslar);font-family:var(--rwwhslaq);font-weight:var(--rwwhslay);letter-spacing:var(--rwwhslat);line-height:var(--rwwhslau)}.uv_e1wcoe5{width:100%}.uv_e1wcoe6{width:auto}.uv_e1wcoej{cursor:not-allowed}.uv_e1wcoek{cursor:pointer}.uv_e1wcoel{background:var(--rwwhsl5j);color:var(--rwwhsl61);border:none}.uv_e1wcoel:hover,.uv_e1wcoel:active{background:var(--rwwhsl5l);color:var(--rwwhsl63)}.uv_e1wcoel:disabled{background:var(--rwwhsl5k);color:var(--rwwhsl62)}.uv_e1wcoem{background:var(--rwwhsl67);color:var(--rwwhsl6p);border:none}.uv_e1wcoem:hover,.uv_e1wcoem:active{background:var(--rwwhsl69);color:var(--rwwhsl6r)}.uv_e1wcoem:disabled{background:var(--rwwhsl68);color:var(--rwwhsl6q)}.uv_e1wcoen{background:var(--rwwhsl9);color:var(--rwwhslr);border:none}.uv_e1wcoen:hover,.uv_e1wcoen:active{background:var(--rwwhslb);color:var(--rwwhslt)}.uv_e1wcoen:disabled{background:var(--rwwhsla);color:var(--rwwhsls)}.uv_e1wcoeo{background:var(--rwwhslx);color:var(--rwwhsl1f);border:none}.uv_e1wcoeo:hover,.uv_e1wcoeo:active{background:var(--rwwhslz);color:var(--rwwhsl1h)}.uv_e1wcoeo:disabled{background:var(--rwwhsly);color:var(--rwwhsl1g)}.uv_e1wcoep{background:var(--rwwhsl6v);color:var(--rwwhsl7d);border:none}.uv_e1wcoep:hover,.uv_e1wcoep:active{background:var(--rwwhsl6x);color:var(--rwwhsl7f)}.uv_e1wcoep:disabled{background:var(--rwwhsl6w);color:var(--rwwhsl7e)}.uv_e1wcoeq{background:var(--rwwhsl7j);color:var(--rwwhsl81);border:none}.uv_e1wcoeq:hover,.uv_e1wcoeq:active{background:var(--rwwhsl7l);color:var(--rwwhsl83)}.uv_e1wcoeq:disabled{background:var(--rwwhsl7k);color:var(--rwwhsl82)}.uv_e1wcoer{background:var(--rwwhsl1l);color:var(--rwwhsl2m);border:none}.uv_e1wcoer:hover,.uv_e1wcoer:active{background:var(--rwwhsl1q);color:var(--rwwhsl2r)}.uv_e1wcoer:disabled{background:var(--rwwhsl1m);color:var(--rwwhsl2n)}.uv_e1wcoes{background:var(--rwwhsl4r);color:var(--rwwhsl5c);border:none}.uv_e1wcoes:hover,.uv_e1wcoes:active{background:var(--rwwhsl4t);color:var(--rwwhsl5e)}.uv_e1wcoes:disabled{background:var(--rwwhsl4s);color:var(--rwwhsl51)}.uv_e1wcoet{background:var(--rwwhsl53);color:var(--rwwhsl50);border:none}.uv_e1wcoet:hover,.uv_e1wcoet:active{background:var(--rwwhsl55);color:var(--rwwhsl52)}.uv_e1wcoet:disabled{background:var(--rwwhsl54);color:var(--rwwhsl5d)}.uv_e1wcoeu{background:none;color:var(--rwwhsl5y);border:1px solid var(--rwwhsl5m)}.uv_e1wcoeu:hover,.uv_e1wcoeu:active{background:var(--rwwhsl5i);color:var(--rwwhsl60);border:1px solid var(--rwwhsl5o)}.uv_e1wcoeu:disabled{color:var(--rwwhsl5z);border:1px solid var(--rwwhsl5n)}.uv_e1wcoev{background:none;color:var(--rwwhsl6m);border:1px solid var(--rwwhsl6a)}.uv_e1wcoev:hover,.uv_e1wcoev:active{background:var(--rwwhsl66);color:var(--rwwhsl6o);border:1px solid var(--rwwhsl6c)}.uv_e1wcoev:disabled{color:var(--rwwhsl6n);border:1px solid var(--rwwhsl6b)}.uv_e1wcoew{background:none;color:var(--rwwhslo);border:1px solid var(--rwwhslc)}.uv_e1wcoew:hover,.uv_e1wcoew:active{background:var(--rwwhsl8);color:var(--rwwhslq);border:1px solid var(--rwwhsle)}.uv_e1wcoew:disabled{color:var(--rwwhslp);border:1px solid var(--rwwhsld)}.uv_e1wcoex{background:none;color:var(--rwwhsl1c);border:1px solid var(--rwwhsl10)}.uv_e1wcoex:hover,.uv_e1wcoex:active{background:var(--rwwhslw);color:var(--rwwhsl1e);border:1px solid var(--rwwhsl12)}.uv_e1wcoex:disabled{color:var(--rwwhsl1d);border:1px solid var(--rwwhsl11)}.uv_e1wcoey{background:none;color:var(--rwwhsl7a);border:1px solid var(--rwwhsl6y)}.uv_e1wcoey:hover,.uv_e1wcoey:active{background:var(--rwwhsl6u);color:var(--rwwhsl7c);border:1px solid var(--rwwhsl70)}.uv_e1wcoey:disabled{color:var(--rwwhsl7b);border:1px solid var(--rwwhsl6z)}.uv_e1wcoez{background:none;color:var(--rwwhsl7y);border:1px solid var(--rwwhsl7m)}.uv_e1wcoez:hover,.uv_e1wcoez:active{background:var(--rwwhsl7i);color:var(--rwwhsl80);border:1px solid var(--rwwhsl7o)}.uv_e1wcoez:disabled{color:var(--rwwhsl7z);border:1px solid var(--rwwhsl7n)}.uv_e1wcoe10{background:none;color:var(--rwwhsl2j);border:1px solid var(--rwwhsl1y)}.uv_e1wcoe10:hover,.uv_e1wcoe10:active{background:var(--rwwhsl1k);color:var(--rwwhsl2l);border:1px solid var(--rwwhsl23)}.uv_e1wcoe10:disabled{color:var(--rwwhsl2k);border:1px solid var(--rwwhsl1z)}.uv_e1wcoe11{background:none;color:var(--rwwhsl50);border:1px solid var(--rwwhsl4u)}.uv_e1wcoe11:hover,.uv_e1wcoe11:active{background:var(--rwwhsl4t);color:var(--rwwhsl5e);border:1px solid var(--rwwhsl4w)}.uv_e1wcoe11:disabled{color:var(--rwwhsl51);border:1px solid var(--rwwhsl4v)}.uv_e1wcoe12{background:none;color:var(--rwwhsl5c);border:1px solid var(--rwwhsl56)}.uv_e1wcoe12:hover,.uv_e1wcoe12:active{background:var(--rwwhsl55);color:var(--rwwhsl52);border:1px solid var(--rwwhsl58)}.uv_e1wcoe12:disabled{color:var(--rwwhsl5d);border:1px solid var(--rwwhsl57)}.uv_e1wcoe13{background:none;color:var(--rwwhsl5y);border:none}.uv_e1wcoe13:hover,.uv_e1wcoe13:active{background:var(--rwwhsl5i);color:var(--rwwhsl60)}.uv_e1wcoe13:disabled{color:var(--rwwhsl5z)}.uv_e1wcoe14{background:none;color:var(--rwwhsl6m);border:none}.uv_e1wcoe14:hover,.uv_e1wcoe14:active{background:var(--rwwhsl66);color:var(--rwwhsl6o)}.uv_e1wcoe14:disabled{color:var(--rwwhsl6n)}.uv_e1wcoe15{background:none;color:var(--rwwhslo);border:none}.uv_e1wcoe15:hover,.uv_e1wcoe15:active{background:var(--rwwhsl8);color:var(--rwwhslq)}.uv_e1wcoe15:disabled{color:var(--rwwhslp)}.uv_e1wcoe16{background:none;color:var(--rwwhsl1c);border:none}.uv_e1wcoe16:hover,.uv_e1wcoe16:active{background:var(--rwwhslw);color:var(--rwwhsl1e)}.uv_e1wcoe16:disabled{color:var(--rwwhsl1d)}.uv_e1wcoe17{background:none;color:var(--rwwhsl7a);border:none}.uv_e1wcoe17:hover,.uv_e1wcoe17:active{background:var(--rwwhsl6u);color:var(--rwwhsl7c)}.uv_e1wcoe17:disabled{color:var(--rwwhsl7b)}.uv_e1wcoe18{background:none;color:var(--rwwhsl7y);border:none}.uv_e1wcoe18:hover,.uv_e1wcoe18:active{background:var(--rwwhsl7i);color:var(--rwwhsl80)}.uv_e1wcoe18:disabled{color:var(--rwwhsl7z)}.uv_e1wcoe19{background:none;color:var(--rwwhsl2j);border:none}.uv_e1wcoe19:hover,.uv_e1wcoe19:active{background:var(--rwwhsl1k);color:var(--rwwhsl2l)}.uv_e1wcoe19:disabled{color:var(--rwwhsl2k)}.uv_e1wcoe1a{background:none;color:var(--rwwhsl50);border:none}.uv_e1wcoe1a:hover,.uv_e1wcoe1a:active{background:var(--rwwhsl4t);color:var(--rwwhsl5e)}.uv_e1wcoe1a:disabled{color:var(--rwwhsl51)}.uv_e1wcoe1b{background:none;color:var(--rwwhsl5c);border:none}.uv_e1wcoe1b:hover,.uv_e1wcoe1b:active{background:var(--rwwhsl55);color:var(--rwwhsl52)}.uv_e1wcoe1b:disabled{color:var(--rwwhsl5d)}.uv_m4c9ow1{text-decoration:line-through}.uv_m4c9ow3{font-style:italic}.uv_m4c9ow5{text-decoration:underline}.uv_m4c9ow7{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.uv_m4c9owm{font-size:var(--rwwhsla9);font-family:var(--rwwhsla8);font-weight:var(--rwwhslag);letter-spacing:var(--rwwhslab);line-height:var(--rwwhslac);text-transform:var(--rwwhslae);text-decoration:var(--rwwhslaf)}.uv_m4c9own{font-size:var(--rwwhslai);font-family:var(--rwwhslah);font-weight:var(--rwwhslap);letter-spacing:var(--rwwhslak);line-height:var(--rwwhslal);text-transform:var(--rwwhslan);text-decoration:var(--rwwhslao)}.uv_m4c9owo{font-size:var(--rwwhslar);font-family:var(--rwwhslaq);font-weight:var(--rwwhslay);letter-spacing:var(--rwwhslat);line-height:var(--rwwhslau);text-transform:var(--rwwhslaw);text-decoration:var(--rwwhslax)}.uv_m4c9owp{font-size:var(--rwwhslb0);font-family:var(--rwwhslaz);font-weight:var(--rwwhslb7);letter-spacing:var(--rwwhslb2);line-height:var(--rwwhslb3);text-transform:var(--rwwhslb5);text-decoration:var(--rwwhslb6)}.uv_m4c9owq{font-size:var(--rwwhslb9);font-family:var(--rwwhslb8);font-weight:var(--rwwhslbg);letter-spacing:var(--rwwhslbb);line-height:var(--rwwhslbc);text-transform:var(--rwwhslbe);text-decoration:var(--rwwhslbf)}.uv_m4c9owr{font-size:var(--rwwhslbi);font-family:var(--rwwhslbh);font-weight:var(--rwwhslbp);letter-spacing:var(--rwwhslbk);line-height:var(--rwwhslbl);text-transform:var(--rwwhslbn);text-decoration:var(--rwwhslbo)}.uv_m4c9ows{font-size:var(--rwwhslbr);font-family:var(--rwwhslbq);font-weight:var(--rwwhslby);letter-spacing:var(--rwwhslbt);line-height:var(--rwwhslbu);text-transform:var(--rwwhslbw);text-decoration:var(--rwwhslbx)}.uv_m4c9owt{font-size:var(--rwwhslc0);font-family:var(--rwwhslbz);font-weight:var(--rwwhslc7);letter-spacing:var(--rwwhslc2);line-height:var(--rwwhslc3);text-transform:var(--rwwhslc5);text-decoration:var(--rwwhslc6)}.uv_m4c9owu{font-size:var(--rwwhslc9);font-family:var(--rwwhslc8);font-weight:var(--rwwhslcg);letter-spacing:var(--rwwhslcb);line-height:var(--rwwhslcc);text-transform:var(--rwwhslce);text-decoration:var(--rwwhslcf)}.uv_m4c9owv{font-size:var(--rwwhslci);font-family:var(--rwwhslch);font-weight:var(--rwwhslcp);letter-spacing:var(--rwwhslck);line-height:var(--rwwhslcl);text-transform:var(--rwwhslcn);text-decoration:var(--rwwhslco)}.uv_m4c9oww{font-size:var(--rwwhslcr);font-family:var(--rwwhslcq);font-weight:var(--rwwhslcy);letter-spacing:var(--rwwhslct);line-height:var(--rwwhslcu);text-transform:var(--rwwhslcw);text-decoration:var(--rwwhslcx)}.uv_m4c9owx{font-size:var(--rwwhsld0);font-family:var(--rwwhslcz);font-weight:var(--rwwhsld7);letter-spacing:var(--rwwhsld2);line-height:var(--rwwhsld3);text-transform:var(--rwwhsld5);text-decoration:var(--rwwhsld6)}.uv_m4c9owy{font-size:var(--rwwhsld9);font-family:var(--rwwhsld8);font-weight:var(--rwwhsldg);letter-spacing:var(--rwwhsldb);line-height:var(--rwwhsldc);text-transform:var(--rwwhslde);text-decoration:var(--rwwhsldf)}.uv_m4c9owz{font-size:var(--rwwhsldi);font-family:var(--rwwhsldh);font-weight:var(--rwwhsldp);letter-spacing:var(--rwwhsldk);line-height:var(--rwwhsldl);text-transform:var(--rwwhsldn);text-decoration:var(--rwwhsldo)}.uv_m4c9ow10{font-size:var(--rwwhsldr);font-family:var(--rwwhsldq);font-weight:var(--rwwhsldy);letter-spacing:var(--rwwhsldt);line-height:var(--rwwhsldu);text-transform:var(--rwwhsldw);text-decoration:var(--rwwhsldx)}.uv_m4c9ow11{font-size:var(--rwwhsle0);font-family:var(--rwwhsldz);font-weight:var(--rwwhsle7);letter-spacing:var(--rwwhsle2);line-height:var(--rwwhsle3);text-transform:var(--rwwhsle5);text-decoration:var(--rwwhsle6)}.uv_m4c9ow12{font-size:var(--rwwhsle9);font-family:var(--rwwhsle8);font-weight:var(--rwwhsleg);letter-spacing:var(--rwwhsleb);line-height:var(--rwwhslec);text-transform:var(--rwwhslee);text-decoration:var(--rwwhslef)}.uv_m4c9ow13{font-size:var(--rwwhslei);font-family:var(--rwwhsleh);font-weight:var(--rwwhslep);letter-spacing:var(--rwwhslek);line-height:var(--rwwhslel);text-transform:var(--rwwhslen);text-decoration:var(--rwwhsleo)}.uv_m4c9ow14{font-size:var(--rwwhsler);font-family:var(--rwwhsleq);font-weight:var(--rwwhsley);letter-spacing:var(--rwwhslet);line-height:var(--rwwhsleu);text-transform:var(--rwwhslew);text-decoration:var(--rwwhslex)}.uv_m4c9ow15{font-size:var(--rwwhslf0);font-family:var(--rwwhslez);font-weight:var(--rwwhslf7);letter-spacing:var(--rwwhslf2);line-height:var(--rwwhslf3);text-transform:var(--rwwhslf5);text-decoration:var(--rwwhslf6)}.uv_m4c9ow16{font-size:var(--rwwhslf9);font-family:var(--rwwhslf8);font-weight:var(--rwwhslfg);letter-spacing:var(--rwwhslfb);line-height:var(--rwwhslfc);text-transform:var(--rwwhslfe);text-decoration:var(--rwwhslff)}.uv_m4c9ow17{font-size:var(--rwwhslfi);font-family:var(--rwwhslfh);font-weight:var(--rwwhslfp);letter-spacing:var(--rwwhslfk);line-height:var(--rwwhslfl);text-transform:var(--rwwhslfn);text-decoration:var(--rwwhslfo)}.uv_m4c9ow18{font-size:var(--rwwhslfr);font-family:var(--rwwhslfq);font-weight:var(--rwwhslfy);letter-spacing:var(--rwwhslft);line-height:var(--rwwhslfu);text-transform:var(--rwwhslfw);text-decoration:var(--rwwhslfx)}.uv_m4c9ow19{font-size:var(--rwwhslg0);font-family:var(--rwwhslfz);font-weight:var(--rwwhslg7);letter-spacing:var(--rwwhslg2);line-height:var(--rwwhslg3);text-transform:var(--rwwhslg5);text-decoration:var(--rwwhslg6)}.uv_m4c9ow1c{color:var(--rwwhsl5y)}.uv_m4c9ow1d{color:var(--rwwhsl61)}.uv_m4c9ow1e{color:var(--rwwhsl5y)}.uv_m4c9ow1f{color:undefined}.uv_m4c9ow1g{color:var(--rwwhsl6m)}.uv_m4c9ow1h{color:var(--rwwhsl6p)}.uv_m4c9ow1i{color:var(--rwwhsl6m)}.uv_m4c9ow1j{color:undefined}.uv_m4c9ow1k{color:var(--rwwhslo)}.uv_m4c9ow1l{color:var(--rwwhslr)}.uv_m4c9ow1m{color:var(--rwwhslo)}.uv_m4c9ow1n{color:undefined}.uv_m4c9ow1o{color:var(--rwwhsl1c)}.uv_m4c9ow1p{color:var(--rwwhsl1f)}.uv_m4c9ow1q{color:var(--rwwhsl1c)}.uv_m4c9ow1r{color:undefined}.uv_m4c9ow1s{color:var(--rwwhsl7a)}.uv_m4c9ow1t{color:var(--rwwhsl7d)}.uv_m4c9ow1u{color:var(--rwwhsl7a)}.uv_m4c9ow1v{color:undefined}.uv_m4c9ow1w{color:var(--rwwhsl7y)}.uv_m4c9ow1x{color:var(--rwwhsl81)}.uv_m4c9ow1y{color:var(--rwwhsl7y)}.uv_m4c9ow1z{color:undefined}.uv_m4c9ow20{color:var(--rwwhsl2j)}.uv_m4c9ow21{color:var(--rwwhsl2m)}.uv_m4c9ow22{color:var(--rwwhsl2o)}.uv_m4c9ow23{color:var(--rwwhsl2s)}.uv_m4c9ow24,.uv_m4c9ow25,.uv_m4c9ow26,.uv_m4c9ow27{color:var(--rwwhsl50)}.uv_m4c9ow28,.uv_m4c9ow29,.uv_m4c9ow2a,.uv_m4c9ow2b{color:var(--rwwhsl5c)}.uv_m4c9ow2c{color:var(--rwwhsl5z)}.uv_m4c9ow2d{color:var(--rwwhsl62)}.uv_m4c9ow2e{color:var(--rwwhsl5z)}.uv_m4c9ow2f{color:undefined}.uv_m4c9ow2g{color:var(--rwwhsl6n)}.uv_m4c9ow2h{color:var(--rwwhsl6q)}.uv_m4c9ow2i{color:var(--rwwhsl6n)}.uv_m4c9ow2j{color:undefined}.uv_m4c9ow2k{color:var(--rwwhslp)}.uv_m4c9ow2l{color:var(--rwwhsls)}.uv_m4c9ow2m{color:var(--rwwhslp)}.uv_m4c9ow2n{color:undefined}.uv_m4c9ow2o{color:var(--rwwhsl1d)}.uv_m4c9ow2p{color:var(--rwwhsl1g)}.uv_m4c9ow2q{color:var(--rwwhsl1d)}.uv_m4c9ow2r{color:undefined}.uv_m4c9ow2s{color:var(--rwwhsl7b)}.uv_m4c9ow2t{color:var(--rwwhsl7e)}.uv_m4c9ow2u{color:var(--rwwhsl7b)}.uv_m4c9ow2v{color:undefined}.uv_m4c9ow2w{color:var(--rwwhsl7z)}.uv_m4c9ow2x{color:var(--rwwhsl82)}.uv_m4c9ow2y{color:var(--rwwhsl7z)}.uv_m4c9ow2z{color:undefined}.uv_m4c9ow30{color:var(--rwwhsl2k)}.uv_m4c9ow31{color:var(--rwwhsl2n)}.uv_m4c9ow32{color:var(--rwwhsl2p)}.uv_m4c9ow33{color:var(--rwwhsl2t)}.uv_m4c9ow34,.uv_m4c9ow35,.uv_m4c9ow36,.uv_m4c9ow37{color:var(--rwwhsl50)}.uv_m4c9ow38,.uv_m4c9ow39,.uv_m4c9ow3a,.uv_m4c9ow3b{color:var(--rwwhsl5c)}.uv_1b838gx0{border-radius:var(--rwwhsl85);padding:var(--rwwhsl9v)}.uv_1b838gx1{background-color:var(--rwwhsl6);color:var(--rwwhslo);border-left:4px solid var(--rwwhslc)}.uv_1b838gx2{background-color:var(--rwwhslu);color:var(--rwwhsl1c);border-left:4px solid var(--rwwhsl10)}.uv_1b838gx3{background-color:var(--rwwhsl6s);color:var(--rwwhsl7a);border-left:4px solid var(--rwwhsl6y)}.uv_1b838gx4{background-color:var(--rwwhsl7g);color:var(--rwwhsl7y);border-left:4px solid var(--rwwhsl7m)}.uv_1b838gx5{background-color:var(--rwwhsl1r);color:var(--rwwhsl2j);border-left:4px solid var(--rwwhsl20)}.uv_1b838gx6{width:100%}.uv_1b838gx7{color:var(--rwwhsl2j)}.uv_1b838gx8{margin-left:var(--rwwhsl9y)}.uv_1b838gx9{align-self:start}.uv_1yf71jy0{display:inline-flex;align-items:center;justify-content:center;border-radius:var(--rwwhsl89);width:fit-content;border-width:1px;border-style:solid}.uv_1yf71jy0.uv_1yf71jy0{text-transform:uppercase}.uv_1yf71jy1{padding:0 var(--rwwhsl9u);gap:var(--rwwhsla4);height:var(--rwwhsl9c)}.uv_1yf71jy2{padding:0 var(--rwwhsla6);gap:var(--rwwhsl9u);height:var(--rwwhsl9f)}.uv_1yf71jy3{padding:0 var(--rwwhsl9v);gap:var(--rwwhsl9u);height:var(--rwwhsl9h)}.uv_1yf71jyf{border:none;color:var(--rwwhsl2s);background-color:var(--rwwhsl1l)}.uv_1yf71jyg{background:var(--rwwhsl5g);color:var(--rwwhsl5y);border-color:var(--rwwhsl5g)}.uv_1yf71jyh{background:var(--rwwhsl64);color:var(--rwwhsl6m);border-color:var(--rwwhsl64)}.uv_1yf71jyi{background:var(--rwwhsl6);color:var(--rwwhslo);border-color:var(--rwwhsl6)}.uv_1yf71jyj{background:var(--rwwhslu);color:var(--rwwhsl1c);border-color:var(--rwwhslu)}.uv_1yf71jyk{background:var(--rwwhsl6s);color:var(--rwwhsl7a);border-color:var(--rwwhsl6s)}.uv_1yf71jyl{background:var(--rwwhsl7g);color:var(--rwwhsl7y);border-color:var(--rwwhsl7g)}.uv_1yf71jym{background:var(--rwwhsl1r);color:var(--rwwhsl2j);border-color:var(--rwwhsl1v)}.uv_1yf71jyn{background:var(--rwwhsl5j);color:var(--rwwhsl61);border-color:var(--rwwhsl5j)}.uv_1yf71jyo{background:var(--rwwhsl67);color:var(--rwwhsl6p);border-color:var(--rwwhsl67)}.uv_1yf71jyp{background:var(--rwwhsl9);color:var(--rwwhslr);border-color:var(--rwwhsl9)}.uv_1yf71jyq{background:var(--rwwhslx);color:var(--rwwhsl1f);border-color:var(--rwwhslx)}.uv_1yf71jyr{background:var(--rwwhsl6v);color:var(--rwwhsl7d);border-color:var(--rwwhsl6v)}.uv_1yf71jys{background:var(--rwwhsl7j);color:var(--rwwhsl81);border-color:var(--rwwhsl7j)}.uv_1yf71jyt{background:var(--rwwhsl1n);color:var(--rwwhsl2o);border-color:var(--rwwhsl20)}.uv_17sbfy0{border-radius:var(--rwwhsl86)}.uv_17sbfy1{padding:var(--rwwhsl9v)}.uv_17sbfy2{padding:var(--rwwhsl9w)}.uv_17sbfy5{background:var(--rwwhsl5g);background-position:left,right;background-repeat:no-repeat,no-repeat;background-size:contain,contain}.uv_17sbfy6{background:var(--rwwhsl5g);background-position:right;background-repeat:no-repeat;background-size:contain}.uv_17sbfy7{background-image:var(--rwwhsl3h);background-position:left,right;background-repeat:no-repeat,no-repeat;background-size:contain,contain}.uv_17sbfy8{background-image:var(--rwwhsl3h);background-position:right;background-repeat:no-repeat;background-size:contain}.uv_17sbfy9{width:74px}.uv_17sbfya{width:140px}.uv_17sbfyb,.uv_17sbfyb:hover{background:none}.backdrop-drawer{padding:0!important;transition:opacity .1s ease-in-out}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ultraviolet/ui",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.5",
|
|
4
4
|
"description": "Ultraviolet UI",
|
|
5
5
|
"homepage": "https://github.com/scaleway/ultraviolet#readme",
|
|
6
6
|
"repository": {
|
|
@@ -89,8 +89,8 @@
|
|
|
89
89
|
"deepmerge": "4.3.1",
|
|
90
90
|
"react-toastify": "11.0.5",
|
|
91
91
|
"react-use-clipboard": "1.0.9",
|
|
92
|
-
"@ultraviolet/
|
|
93
|
-
"@ultraviolet/
|
|
92
|
+
"@ultraviolet/icons": "4.0.4-beta.1",
|
|
93
|
+
"@ultraviolet/themes": "2.1.0-beta.0"
|
|
94
94
|
},
|
|
95
95
|
"scripts": {
|
|
96
96
|
"type:generate": "tsc --declaration -p tsconfig.build.json",
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
"use strict";
|
|
3
|
-
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
4
|
-
const jsxRuntime = require("@emotion/react/jsx-runtime");
|
|
5
|
-
const _styled = require("@emotion/styled/base");
|
|
6
|
-
const react = require("react");
|
|
7
|
-
const index = require("../Text/index.cjs");
|
|
8
|
-
const _interopDefaultCompat = (e) => e && typeof e === "object" && "default" in e ? e : { default: e };
|
|
9
|
-
const _styled__default = /* @__PURE__ */ _interopDefaultCompat(_styled);
|
|
10
|
-
const Container = /* @__PURE__ */ _styled__default.default("div", process.env.NODE_ENV === "production" ? {
|
|
11
|
-
target: "ekyw9u10"
|
|
12
|
-
} : {
|
|
13
|
-
target: "ekyw9u10",
|
|
14
|
-
label: "Container"
|
|
15
|
-
})("cursor:text;background:", ({
|
|
16
|
-
theme
|
|
17
|
-
}) => theme.colors.neutral.backgroundWeak, ";border-radius:", ({
|
|
18
|
-
theme
|
|
19
|
-
}) => theme.radii.default, ";border:0.5px solid ", ({
|
|
20
|
-
theme
|
|
21
|
-
}) => theme.colors.neutral.border, ";min-width:", ({
|
|
22
|
-
theme
|
|
23
|
-
}) => theme.sizing["300"], ";min-height:", ({
|
|
24
|
-
theme
|
|
25
|
-
}) => theme.sizing["300"], ";display:flex;justify-content:center;align-items:center;&[data-disabled='true']{background:", ({
|
|
26
|
-
theme
|
|
27
|
-
}) => theme.colors.neutral.backgroundDisabled, ";border-color:", ({
|
|
28
|
-
theme
|
|
29
|
-
}) => theme.colors.neutral.borderDisabled, ";}&[data-children-length='true']{width:auto;padding:0 ", ({
|
|
30
|
-
theme
|
|
31
|
-
}) => theme.space[1], ";}" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi9ob21lL3J1bm5lci93b3JrL3VsdHJhdmlvbGV0L3VsdHJhdmlvbGV0L3BhY2thZ2VzL3VpL3NyYy9jb21wb25lbnRzL1NlYXJjaElucHV0L0tleS50c3giXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBTTRCIiwiZmlsZSI6Ii9ob21lL3J1bm5lci93b3JrL3VsdHJhdmlvbGV0L3VsdHJhdmlvbGV0L3BhY2thZ2VzL3VpL3NyYy9jb21wb25lbnRzL1NlYXJjaElucHV0L0tleS50c3giLCJzb3VyY2VzQ29udGVudCI6WyIndXNlIGNsaWVudCdcblxuaW1wb3J0IHN0eWxlZCBmcm9tICdAZW1vdGlvbi9zdHlsZWQnXG5pbXBvcnQgeyB1c2VNZW1vIH0gZnJvbSAncmVhY3QnXG5pbXBvcnQgeyBUZXh0IH0gZnJvbSAnLi4vVGV4dCdcblxuY29uc3QgQ29udGFpbmVyID0gc3R5bGVkLmRpdmBcbiAgY3Vyc29yOiB0ZXh0O1xuICBiYWNrZ3JvdW5kOiAkeyh7IHRoZW1lIH0pID0+IHRoZW1lLmNvbG9ycy5uZXV0cmFsLmJhY2tncm91bmRXZWFrfTtcbiAgYm9yZGVyLXJhZGl1czogJHsoeyB0aGVtZSB9KSA9PiB0aGVtZS5yYWRpaS5kZWZhdWx0fTtcbiAgYm9yZGVyOiAwLjVweCBzb2xpZCAkeyh7IHRoZW1lIH0pID0+IHRoZW1lLmNvbG9ycy5uZXV0cmFsLmJvcmRlcn07XG4gIG1pbi13aWR0aDogJHsoeyB0aGVtZSB9KSA9PiB0aGVtZS5zaXppbmdbJzMwMCddfTtcbiAgbWluLWhlaWdodDogJHsoeyB0aGVtZSB9KSA9PiB0aGVtZS5zaXppbmdbJzMwMCddfTtcbiAgZGlzcGxheTogZmxleDtcbiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG4gIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG5cbiAgJltkYXRhLWRpc2FibGVkPSd0cnVlJ10ge1xuICAgIGJhY2tncm91bmQ6ICR7KHsgdGhlbWUgfSkgPT4gdGhlbWUuY29sb3JzLm5ldXRyYWwuYmFja2dyb3VuZERpc2FibGVkfTtcbiAgICBib3JkZXItY29sb3I6ICR7KHsgdGhlbWUgfSkgPT4gdGhlbWUuY29sb3JzLm5ldXRyYWwuYm9yZGVyRGlzYWJsZWR9O1xuICB9XG5cbiAgJltkYXRhLWNoaWxkcmVuLWxlbmd0aD0ndHJ1ZSddIHtcbiAgICB3aWR0aDogYXV0bztcbiAgICBwYWRkaW5nOiAwICR7KHsgdGhlbWUgfSkgPT4gdGhlbWUuc3BhY2VbMV19OyAvLyBUaGlzIHBhcnQgaXMgdG8gbGVhdmUgc29tZSBzcGFjZSBiZXR3ZWVuIHRoZSB0ZXh0IGFuZCB0aGUgYm9yZGVyIHdoZW4gdGV4dCBpcyBsb25nXG4gIH1cbmBcblxuZXhwb3J0IGNvbnN0IEtFWVNfTUFUQ0ggPSB7XG4gICcgJzogJ+KQoycsXG4gIEFsdDogJ0FsdCcsXG4gIEFycm93RG93bjogJ+KGkycsXG4gIEFycm93TGVmdDogJ+KGkCcsXG4gIEFycm93UmlnaHQ6ICfihpInLFxuICBBcnJvd1VwOiAn4oaRJyxcbiAgQmFja3NwYWNlOiAn4oyrJyxcbiAgQ2Fwc0xvY2s6ICdDYXBzJyxcbiAgQ29udHJvbDogJ0N0cmwnLFxuICBEZWxldGU6ICfijKYnLFxuICBFbnRlcjogJ+KGtScsXG4gIEVzY2FwZTogJ0VzYycsXG4gIE1ldGE6ICfijJgnLFxufSBhcyBjb25zdFxuXG50eXBlIEtleVByb3BzID0ge1xuICBjaGlsZHJlbjogS2V5Ym9hcmRFdmVudFsna2V5J11cbiAgZGlzYWJsZWQ/OiBib29sZWFuXG59XG5cbmV4cG9ydCBjb25zdCBLZXkgPSAoeyBjaGlsZHJlbiwgZGlzYWJsZWQgfTogS2V5UHJvcHMpID0+IHtcbiAgY29uc3QgaXNTcGVjaWFsS2V5ID0gdXNlTWVtbyhcbiAgICAoKSA9PiBPYmplY3Qua2V5cyhLRVlTX01BVENIKS5maW5kKGtleSA9PiBrZXkgPT09IGNoaWxkcmVuKSxcbiAgICBbY2hpbGRyZW5dLFxuICApXG5cbiAgcmV0dXJuIChcbiAgICA8Q29udGFpbmVyXG4gICAgICBkYXRhLWNoaWxkcmVuLWxlbmd0aD17Y2hpbGRyZW4ubGVuZ3RoID4gMX1cbiAgICAgIGRhdGEtZGlzYWJsZWQ9e2Rpc2FibGVkfVxuICAgICAgZGF0YS10ZXN0aWQ9e2BrZXktJHtjaGlsZHJlbn1gfVxuICAgID5cbiAgICAgIDxUZXh0IGFzPVwic3BhblwiIGRpc2FibGVkPXtkaXNhYmxlZH0gc2VudGltZW50PVwibmV1dHJhbFwiIHZhcmlhbnQ9XCJjYXB0aW9uXCI+XG4gICAgICAgIHtpc1NwZWNpYWxLZXlcbiAgICAgICAgICA/IEtFWVNfTUFUQ0hbY2hpbGRyZW4gYXMga2V5b2YgdHlwZW9mIEtFWVNfTUFUQ0hdXG4gICAgICAgICAgOiBjaGlsZHJlbn1cbiAgICAgIDwvVGV4dD5cbiAgICA8L0NvbnRhaW5lcj5cbiAgKVxufVxuIl19 */"));
|
|
32
|
-
const KEYS_MATCH = {
|
|
33
|
-
" ": "␣",
|
|
34
|
-
Alt: "Alt",
|
|
35
|
-
ArrowDown: "↓",
|
|
36
|
-
ArrowLeft: "←",
|
|
37
|
-
ArrowRight: "→",
|
|
38
|
-
ArrowUp: "↑",
|
|
39
|
-
Backspace: "⌫",
|
|
40
|
-
CapsLock: "Caps",
|
|
41
|
-
Control: "Ctrl",
|
|
42
|
-
Delete: "⌦",
|
|
43
|
-
Enter: "↵",
|
|
44
|
-
Escape: "Esc",
|
|
45
|
-
Meta: "⌘"
|
|
46
|
-
};
|
|
47
|
-
const Key = ({
|
|
48
|
-
children,
|
|
49
|
-
disabled
|
|
50
|
-
}) => {
|
|
51
|
-
const isSpecialKey = react.useMemo(() => Object.keys(KEYS_MATCH).find((key) => key === children), [children]);
|
|
52
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Container, { "data-children-length": children.length > 1, "data-disabled": disabled, "data-testid": `key-${children}`, children: /* @__PURE__ */ jsxRuntime.jsx(index.Text, { as: "span", disabled, sentiment: "neutral", variant: "caption", children: isSpecialKey ? KEYS_MATCH[children] : children }) });
|
|
53
|
-
};
|
|
54
|
-
exports.KEYS_MATCH = KEYS_MATCH;
|
|
55
|
-
exports.Key = Key;
|