@team-monolith/cds 0.12.0 → 0.12.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -37,7 +37,7 @@ export var AlertDialog = React.forwardRef(function (props, ref) {
37
37
  var className = props.className, _a = props.component, Component = _a === void 0 ? "div" : _a, open = props.open, onClose = props.onClose, children = props.children, icon = props.icon, other = __rest(props, ["className", "component", "open", "onClose", "children", "icon"]);
38
38
  var theme = useTheme();
39
39
  return (_jsx(MuiModal, __assign({ open: open, onClose: onClose, ref: ref }, other, { children: _jsxs(Component, __assign({ className: className, css: css(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n width: 480px;\n background: ", ";\n box-shadow: ", ";\n border-radius: 16px;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n padding: 24px;\n box-sizing: border-box;\n\n display: grid;\n ", "\n\n gap: 8px 16px;\n\n ", "\n "], ["\n width: 480px;\n background: ", ";\n box-shadow: ", ";\n border-radius: 16px;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n padding: 24px;\n box-sizing: border-box;\n\n display: grid;\n ", "\n\n gap: 8px 16px;\n\n ", "\n "])), theme.color.background.neutralBase, shadows.shadow04, icon
40
- ? css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n grid-template-areas:\n \"icon title\"\n \"iconPadding content\"\n \"actions actions\";\n "], ["\n grid-template-areas:\n \"icon title\"\n \"iconPadding content\"\n \"actions actions\";\n "]))) : css(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n grid-template-areas:\n \"title\"\n \"content\"\n \"actions\";\n "], ["\n grid-template-areas:\n \"title\"\n \"content\"\n \"actions\";\n "]))), MOBILE(css(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n width: calc(100% - 24px);\n\n grid-template-areas:\n \"title\"\n \"content\"\n \"actions\";\n "], ["\n width: calc(100% - 24px);\n\n grid-template-areas:\n \"title\"\n \"content\"\n \"actions\";\n "]))))) }, { children: [icon && _jsx(IconDiv, { children: icon }), _jsx(AlertDialogContext.Provider, __assign({ value: { icon: icon } }, { children: children }))] })) })));
40
+ ? css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n grid-template-columns: 32px 1fr;\n grid-template-areas:\n \"icon title\"\n \"iconPadding content\"\n \"actions actions\";\n "], ["\n grid-template-columns: 32px 1fr;\n grid-template-areas:\n \"icon title\"\n \"iconPadding content\"\n \"actions actions\";\n "]))) : css(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n grid-template-areas:\n \"title\"\n \"content\"\n \"actions\";\n "], ["\n grid-template-areas:\n \"title\"\n \"content\"\n \"actions\";\n "]))), MOBILE(css(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n width: calc(100% - 24px);\n grid-template-columns: auto;\n grid-template-areas:\n \"title\"\n \"content\"\n \"actions\";\n "], ["\n width: calc(100% - 24px);\n grid-template-columns: auto;\n grid-template-areas:\n \"title\"\n \"content\"\n \"actions\";\n "]))))) }, { children: [icon && _jsx(IconDiv, { children: icon }), _jsx(AlertDialogContext.Provider, __assign({ value: { icon: icon } }, { children: children }))] })) })));
41
41
  });
42
42
  var IconDiv = styled.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n display: flex;\n justify-content: center;\n align-items: center;\n grid-area: icon;\n ", "\n svg {\n width: 32px;\n height: 32px;\n }\n\n ", "\n"], ["\n display: flex;\n justify-content: center;\n align-items: center;\n grid-area: icon;\n ", "\n svg {\n width: 32px;\n height: 32px;\n }\n\n ", "\n"])), function (_a) {
43
43
  var theme = _a.theme;
@@ -51,7 +51,9 @@ var SIZE_TO_SWTICH_SIZE = {
51
51
  thumbSize: "12px",
52
52
  },
53
53
  };
54
- var StyledSwitch = styled(MuiSwitch)(function (_a) {
54
+ var StyledSwitch = styled(MuiSwitch, {
55
+ shouldForwardProp: function (prop) { return prop !== "switchSize"; },
56
+ })(function (_a) {
55
57
  var theme = _a.theme, switchSize = _a.switchSize;
56
58
  return css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: ", ";\n height: ", ";\n padding: 0; // \uAE30\uC874 Mui padding \uC18D\uC131 override\n & .MuiSwitch-switchBase {\n padding: 2px;\n &.Mui-checked {\n transform: translateX(", ");\n color: ", ";\n & + .MuiSwitch-track {\n opacity: 1;\n background-color: ", ";\n }\n &.Mui-disabled + .MuiSwitch-track {\n opacity: 1;\n background-color: ", ";\n }\n }\n &.Mui-disabled + .MuiSwitch-track {\n opacity: 1;\n background-color: ", ";\n }\n &:hover {\n background-color: inherit; // \uAE30\uC874 Mui hover \uC18D\uC131 override\n }\n }\n .Mui-disabled .MuiSwitch-thumb {\n filter: none;\n box-shadow: none;\n background-color: ", ";\n }\n\n .MuiSwitch-thumb {\n box-shadow: none;\n filter: drop-shadow(0px 2px 4px rgba(0, 35, 11, 0.2));\n width: ", ";\n height: ", ";\n border-radius: 77px;\n transition: width 300ms;\n }\n .MuiSwitch-track {\n border-radius: 16px;\n opacity: 1;\n background-color: ", ";\n box-sizing: border-box;\n }\n "], ["\n width: ", ";\n height: ", ";\n padding: 0; // \uAE30\uC874 Mui padding \uC18D\uC131 override\n & .MuiSwitch-switchBase {\n padding: 2px;\n &.Mui-checked {\n transform: translateX(", ");\n color: ", ";\n & + .MuiSwitch-track {\n opacity: 1;\n background-color: ", ";\n }\n &.Mui-disabled + .MuiSwitch-track {\n opacity: 1;\n background-color: ", ";\n }\n }\n &.Mui-disabled + .MuiSwitch-track {\n opacity: 1;\n background-color: ", ";\n }\n &:hover {\n background-color: inherit; // \uAE30\uC874 Mui hover \uC18D\uC131 override\n }\n }\n .Mui-disabled .MuiSwitch-thumb {\n filter: none;\n box-shadow: none;\n background-color: ", ";\n }\n\n .MuiSwitch-thumb {\n box-shadow: none;\n filter: drop-shadow(0px 2px 4px rgba(0, 35, 11, 0.2));\n width: ", ";\n height: ", ";\n border-radius: 77px;\n transition: width 300ms;\n }\n .MuiSwitch-track {\n border-radius: 16px;\n opacity: 1;\n background-color: ", ";\n box-sizing: border-box;\n }\n "])), SIZE_TO_SWTICH_SIZE[switchSize].width, SIZE_TO_SWTICH_SIZE[switchSize].height, SIZE_TO_SWTICH_SIZE[switchSize].translateX, theme.color.foreground.neutralAlt, theme.color.background.primary, theme.color.background.primaryDisabled, theme.color.background.neutralAltDisabled, theme.color.foreground.neutralAltDisabled, SIZE_TO_SWTICH_SIZE[switchSize].thumbSize, SIZE_TO_SWTICH_SIZE[switchSize].thumbSize, theme.color.background.neutralAltActive);
57
59
  });
@@ -50,7 +50,7 @@ var Tag = React.forwardRef(function (props, ref) {
50
50
  var className = props.className, _a = props.component, Component = _a === void 0 ? "span" : _a, label = props.label, icon = props.icon, _b = props.color, color = _b === void 0 ? "default" : _b, close = props.close, onClick = props.onClick, other = __rest(props, ["className", "component", "label", "icon", "color", "close", "onClick"]);
51
51
  var theme = useTheme();
52
52
  return (_jsxs(Component, __assign({}, other, { ref: ref, className: className, css: [
53
- css(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n box-sizing: border-box;\n display: flex;\n // flex\uAC00 \uD654\uBA74 \uC804\uCCB4\uB85C \uD655\uC7A5\uB418\uC9C0 \uC54A\uACE0 \uB0B4\uBD80\uC758 \uC544\uC774\uCF58\uACFC \uD14D\uC2A4\uD2B8\uB9CC \uD3EC\uD568\uD55C\uB2E4.\n padding: 1px 8px;\n align-items: center;\n gap: 3px;\n width: fit-content;\n border-radius: 8px;\n\n svg {\n width: 14px;\n height: 14px;\n }\n "], ["\n box-sizing: border-box;\n display: flex;\n // flex\uAC00 \uD654\uBA74 \uC804\uCCB4\uB85C \uD655\uC7A5\uB418\uC9C0 \uC54A\uACE0 \uB0B4\uBD80\uC758 \uC544\uC774\uCF58\uACFC \uD14D\uC2A4\uD2B8\uB9CC \uD3EC\uD568\uD55C\uB2E4.\n padding: 1px 8px;\n align-items: center;\n gap: 3px;\n width: fit-content;\n border-radius: 8px;\n\n svg {\n width: 14px;\n height: 14px;\n }\n "]))),
53
+ css(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n box-sizing: border-box;\n display: flex;\n // flex\uAC00 \uD654\uBA74 \uC804\uCCB4\uB85C \uD655\uC7A5\uB418\uC9C0 \uC54A\uACE0 \uB0B4\uBD80\uC758 \uC544\uC774\uCF58\uACFC \uD14D\uC2A4\uD2B8\uB9CC \uD3EC\uD568\uD55C\uB2E4.\n padding: 1px 8px;\n align-items: center;\n gap: 3px;\n width: fit-content;\n border-radius: 8px;\n height: 22px;\n\n svg {\n width: 14px;\n height: 14px;\n }\n "], ["\n box-sizing: border-box;\n display: flex;\n // flex\uAC00 \uD654\uBA74 \uC804\uCCB4\uB85C \uD655\uC7A5\uB418\uC9C0 \uC54A\uACE0 \uB0B4\uBD80\uC758 \uC544\uC774\uCF58\uACFC \uD14D\uC2A4\uD2B8\uB9CC \uD3EC\uD568\uD55C\uB2E4.\n padding: 1px 8px;\n align-items: center;\n gap: 3px;\n width: fit-content;\n border-radius: 8px;\n height: 22px;\n\n svg {\n width: 14px;\n height: 14px;\n }\n "]))),
54
54
  COLOR_TO_STYLE(theme, color),
55
55
  close
56
56
  ? css(templateObject_10 || (templateObject_10 = __makeTemplateObject(["\n cursor: pointer;\n "], ["\n cursor: pointer;\n "]))) : undefined,
@@ -33,10 +33,10 @@ export var customJudgeColorSvg = customJudgeColorSvgImport;
33
33
  export var CustomJudgeColorIcon = function (props) { return (_jsxs("svg", __assign({}, props, { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: [_jsx("path", { d: "M20.5245 6.32511V22.5691C20.5245 23.0829 20.1086 23.5 19.5963 23.5H4.40814C3.89583 23.5 3.47998 23.0829 3.47998 22.5691V1.43105C3.47998 0.917247 3.89583 0.500183 4.40814 0.500183H14.7165C14.963 0.500183 15.1988 0.598 15.3735 0.77321L20.2522 5.66619C20.4259 5.84033 20.5245 6.07788 20.5245 6.32511Z", fill: "#B3ECCD" }), _jsx("path", { d: "M14.7851 0.809707V6.01549C14.7851 6.1864 14.9234 6.32399 15.0927 6.32399H20.2147C20.488 6.32399 20.6263 5.99291 20.4344 5.79836L15.3124 0.592576C15.1184 0.395868 14.7851 0.533456 14.7851 0.809707Z", fill: "#43C422" }), _jsx("path", { d: "M6.60424 13.627C6.81324 13.5335 6.96221 13.3873 7.05224 13.1895C7.14227 12.9917 7.18729 12.7284 7.18729 12.4005V11.3471C7.18729 10.6129 7.31804 10.0561 7.57956 9.67562C7.84107 9.2951 8.1894 9.04143 8.62347 8.91459C9.05754 8.78775 9.64702 8.7254 10.3908 8.7254V10.1959C10.0296 10.1959 9.75313 10.2432 9.56235 10.3367C9.37157 10.4302 9.23974 10.5732 9.16793 10.7656C9.09612 10.958 9.06076 11.216 9.06076 11.5406V12.9272C9.06076 13.283 8.97073 13.5883 8.79174 13.843C8.61275 14.0978 8.2805 14.3042 7.79499 14.4611C7.30947 14.6191 6.63103 14.6976 5.75861 14.6976V13.7699C6.11336 13.7699 6.39524 13.7226 6.60424 13.6291V13.627ZM5.75861 13.7678H7.407V15.5382H5.75861V13.7678ZM8.62347 20.4C8.1894 20.2753 7.84107 20.0216 7.57956 19.6411C7.31804 19.2606 7.18729 18.7027 7.18729 17.9696V16.9108C7.18729 16.583 7.14227 16.3196 7.05224 16.1197C6.96221 15.9198 6.81216 15.7736 6.60424 15.679C6.39524 15.5855 6.11336 15.5382 5.75861 15.5382V14.6159C6.62996 14.6159 7.30947 14.6933 7.79499 14.8481C8.2805 15.0029 8.61275 15.2092 8.79174 15.4661C8.97073 15.7241 9.06076 16.0305 9.06076 16.3863V17.7729C9.06076 18.0975 9.09612 18.3555 9.16793 18.5479C9.23974 18.7403 9.3705 18.8833 9.56235 18.9768C9.7542 19.0703 10.0296 19.1176 10.3908 19.1176V20.5881C9.64702 20.5881 9.05754 20.5257 8.62347 20.4011V20.4Z", fill: "#1FBB26" }), _jsx("path", { d: "M15.3809 8.91138C15.815 9.03606 16.1633 9.28867 16.4249 9.67026C16.6864 10.0508 16.8171 10.6087 16.8171 11.3417V12.4005C16.8171 12.7284 16.8621 12.9928 16.9522 13.1917C17.0422 13.3916 17.1923 13.5378 17.4002 13.6324C17.6081 13.727 17.8911 13.7732 18.2458 13.7732V14.6955C17.3745 14.6955 16.6949 14.6181 16.2094 14.4633C15.7239 14.3085 15.3917 14.1021 15.2127 13.8452C15.0337 13.5872 14.9447 13.2809 14.9447 12.9251V11.5385C14.9447 11.2138 14.9094 10.9559 14.8376 10.7634C14.7657 10.571 14.6339 10.4281 14.4431 10.3346C14.2524 10.241 13.9758 10.1937 13.6147 10.1937V8.72327C14.3585 8.72327 14.948 8.78561 15.382 8.9103L15.3809 8.91138ZM17.4002 15.6833C17.1912 15.7768 17.0422 15.923 16.9522 16.1208C16.8621 16.3196 16.8171 16.5819 16.8171 16.9098V17.9632C16.8171 18.6973 16.6864 19.2541 16.4249 19.6347C16.1633 20.0152 15.815 20.2689 15.3809 20.3957C14.9469 20.5225 14.3574 20.5849 13.6136 20.5849V19.1144C13.9748 19.1144 14.2513 19.0671 14.4421 18.9736C14.6328 18.8801 14.7647 18.7371 14.8365 18.5447C14.9083 18.3523 14.9437 18.0943 14.9437 17.7697V16.3831C14.9437 16.0273 15.0326 15.722 15.2116 15.4672C15.3906 15.2125 15.7228 15.0072 16.2084 14.8492C16.6939 14.6912 17.3723 14.6127 18.2447 14.6127V15.5403C17.89 15.5403 17.6081 15.5876 17.3991 15.6811L17.4002 15.6833ZM18.2458 15.5425H16.5974V13.7721H18.2458V15.5425Z", fill: "#1FBB26" })] }))); };
34
34
  import customResourceSvgImport from "./custom/resource.svg";
35
35
  export var customResourceSvg = customResourceSvgImport;
36
- export var CustomResourceIcon = function (props) { return (_jsxs("svg", __assign({}, props, { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: [_jsxs("g", __assign({ "clip-path": "url(#clip0_358_3211)" }, { children: [_jsx("path", { d: "M11.8576 13.0612L7.64236 11.0937C7.54909 11.0499 7.446 11.0264 7.34127 11.0264H3.68564C3.30764 11.0264 3 11.3191 3 11.6807V20.3457C3 20.7073 3.30764 21 3.68564 21H20.3144C20.6924 21 21 20.7073 21 20.3457V13.7828C21 13.4212 20.6924 13.1285 20.3144 13.1285H12.1587C12.054 13.1285 11.9509 13.1066 11.8576 13.0612Z", fill: "currentColor" }), _jsx("path", { d: "M7.34127 9.37983C7.446 9.37983 7.54909 9.40174 7.64236 9.44713L11.8576 11.4146C11.9525 11.4584 12.0556 11.4819 12.1587 11.4819H19.0085V3.63235C19.0085 3.2833 18.7124 3 18.3458 3H5.65418C5.28927 3 4.99146 3.2833 4.99146 3.63235V9.37983H7.34127Z", fill: "currentColor" })] })), _jsx("defs", { children: _jsx("clipPath", __assign({ id: "clip0_358_3211" }, { children: _jsx("rect", { width: "18", height: "18", fill: "white", transform: "translate(3 3)" }) })) })] }))); };
36
+ export var CustomResourceIcon = function (props) { return (_jsxs("svg", __assign({}, props, { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: [_jsxs("g", __assign({ clipPath: "url(#clip0_358_3211)" }, { children: [_jsx("path", { d: "M11.8576 13.0612L7.64236 11.0937C7.54909 11.0499 7.446 11.0264 7.34127 11.0264H3.68564C3.30764 11.0264 3 11.3191 3 11.6807V20.3457C3 20.7073 3.30764 21 3.68564 21H20.3144C20.6924 21 21 20.7073 21 20.3457V13.7828C21 13.4212 20.6924 13.1285 20.3144 13.1285H12.1587C12.054 13.1285 11.9509 13.1066 11.8576 13.0612Z", fill: "currentColor" }), _jsx("path", { d: "M7.34127 9.37983C7.446 9.37983 7.54909 9.40174 7.64236 9.44713L11.8576 11.4146C11.9525 11.4584 12.0556 11.4819 12.1587 11.4819H19.0085V3.63235C19.0085 3.2833 18.7124 3 18.3458 3H5.65418C5.28927 3 4.99146 3.2833 4.99146 3.63235V9.37983H7.34127Z", fill: "currentColor" })] })), _jsx("defs", { children: _jsx("clipPath", __assign({ id: "clip0_358_3211" }, { children: _jsx("rect", { width: "18", height: "18", fill: "white", transform: "translate(3 3)" }) })) })] }))); };
37
37
  import customFabSvgImport from "./custom/fab.svg";
38
38
  export var customFabSvg = customFabSvgImport;
39
- export var CustomFabIcon = function (props) { return (_jsxs("svg", __assign({}, props, { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: [_jsx("g", __assign({ "clip-path": "url(#clip0_343_3204)" }, { children: _jsx("path", { d: "M12.002 2C6.47589 2 2 6.47589 2 12.002C2 17.5281 6.47589 22.004 12.002 22.004C17.5281 22.004 22.004 17.5281 22.004 12.002C22.004 6.47589 17.5281 2 12.002 2ZM19.5035 12.002C18.9284 11.3769 18.2282 10.8268 17.4281 10.3767C17.7907 9.47649 18.0657 8.62632 18.2658 7.87617C19.0534 9.06391 19.516 10.4767 19.516 12.002H19.5035ZM17.253 6.66343C17.0655 7.5136 16.7529 8.62633 16.2779 9.82657C15.0026 9.31396 13.5398 9.0139 11.9895 9.0139C10.4392 9.0139 8.9889 9.31396 7.70114 9.82657C7.22604 8.62633 6.92599 7.5136 6.72595 6.66343C8.07622 5.32566 9.93909 4.5005 11.977 4.5005C14.0149 4.5005 15.8778 5.32566 17.228 6.66343H17.253ZM15.7778 10.9643C15.2527 12.052 14.59 13.1522 13.7273 14.1149C13.1897 14.7275 12.6021 15.2401 11.9895 15.6902C11.3894 15.2401 10.8018 14.7275 10.2517 14.1149C9.38898 13.1522 8.72634 12.052 8.20124 10.9643C9.32646 10.5142 10.6142 10.2642 11.9895 10.2642C13.3648 10.2642 14.6525 10.5142 15.7778 10.9643ZM5.73825 7.87617C5.93829 8.62632 6.21334 9.47649 6.57591 10.3767C5.77575 10.8268 5.06311 11.3769 4.5005 12.002C4.5005 10.4767 4.96309 9.06391 5.75075 7.87617H5.73825ZM4.71304 13.7774C5.22565 12.8897 6.05081 12.1145 7.07601 11.5144C7.65113 12.6896 8.37628 13.8899 9.32647 14.9526C9.82657 15.5152 10.3517 15.9903 10.9018 16.4279C9.63903 17.1905 8.38878 17.6656 7.43859 17.9532C6.10082 16.928 5.12563 15.4652 4.71304 13.7774ZM8.83887 18.8034C9.80156 18.4533 10.9018 17.9407 12.002 17.2155C13.1022 17.9282 14.2024 18.4408 15.1651 18.8034C14.2024 19.2534 13.1397 19.516 12.002 19.516C10.8643 19.516 9.80156 19.2534 8.83887 18.8034ZM16.5654 17.9532C15.6152 17.6656 14.365 17.1905 13.1022 16.4279C13.6398 15.9903 14.1774 15.5027 14.6775 14.9526C15.6277 13.8899 16.3529 12.7021 16.928 11.5144C17.9532 12.1145 18.7784 12.8897 19.291 13.7774C18.8784 15.4652 17.9032 16.928 16.5654 17.9532Z", fill: "currentColor" }) })), _jsx("defs", { children: _jsx("clipPath", __assign({ id: "clip0_343_3204" }, { children: _jsx("rect", { width: "24", height: "24", fill: "white" }) })) })] }))); };
39
+ export var CustomFabIcon = function (props) { return (_jsxs("svg", __assign({}, props, { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: [_jsx("g", __assign({ clipPath: "url(#clip0_343_3204)" }, { children: _jsx("path", { d: "M12.002 2C6.47589 2 2 6.47589 2 12.002C2 17.5281 6.47589 22.004 12.002 22.004C17.5281 22.004 22.004 17.5281 22.004 12.002C22.004 6.47589 17.5281 2 12.002 2ZM19.5035 12.002C18.9284 11.3769 18.2282 10.8268 17.4281 10.3767C17.7907 9.47649 18.0657 8.62632 18.2658 7.87617C19.0534 9.06391 19.516 10.4767 19.516 12.002H19.5035ZM17.253 6.66343C17.0655 7.5136 16.7529 8.62633 16.2779 9.82657C15.0026 9.31396 13.5398 9.0139 11.9895 9.0139C10.4392 9.0139 8.9889 9.31396 7.70114 9.82657C7.22604 8.62633 6.92599 7.5136 6.72595 6.66343C8.07622 5.32566 9.93909 4.5005 11.977 4.5005C14.0149 4.5005 15.8778 5.32566 17.228 6.66343H17.253ZM15.7778 10.9643C15.2527 12.052 14.59 13.1522 13.7273 14.1149C13.1897 14.7275 12.6021 15.2401 11.9895 15.6902C11.3894 15.2401 10.8018 14.7275 10.2517 14.1149C9.38898 13.1522 8.72634 12.052 8.20124 10.9643C9.32646 10.5142 10.6142 10.2642 11.9895 10.2642C13.3648 10.2642 14.6525 10.5142 15.7778 10.9643ZM5.73825 7.87617C5.93829 8.62632 6.21334 9.47649 6.57591 10.3767C5.77575 10.8268 5.06311 11.3769 4.5005 12.002C4.5005 10.4767 4.96309 9.06391 5.75075 7.87617H5.73825ZM4.71304 13.7774C5.22565 12.8897 6.05081 12.1145 7.07601 11.5144C7.65113 12.6896 8.37628 13.8899 9.32647 14.9526C9.82657 15.5152 10.3517 15.9903 10.9018 16.4279C9.63903 17.1905 8.38878 17.6656 7.43859 17.9532C6.10082 16.928 5.12563 15.4652 4.71304 13.7774ZM8.83887 18.8034C9.80156 18.4533 10.9018 17.9407 12.002 17.2155C13.1022 17.9282 14.2024 18.4408 15.1651 18.8034C14.2024 19.2534 13.1397 19.516 12.002 19.516C10.8643 19.516 9.80156 19.2534 8.83887 18.8034ZM16.5654 17.9532C15.6152 17.6656 14.365 17.1905 13.1022 16.4279C13.6398 15.9903 14.1774 15.5027 14.6775 14.9526C15.6277 13.8899 16.3529 12.7021 16.928 11.5144C17.9532 12.1145 18.7784 12.8897 19.291 13.7774C18.8784 15.4652 17.9032 16.928 16.5654 17.9532Z", fill: "currentColor" }) })), _jsx("defs", { children: _jsx("clipPath", __assign({ id: "clip0_343_3204" }, { children: _jsx("rect", { width: "24", height: "24", fill: "white" }) })) })] }))); };
40
40
  import customJudgeSvgImport from "./custom/judge.svg";
41
41
  export var customJudgeSvg = customJudgeSvgImport;
42
42
  export var CustomJudgeIcon = function (props) { return (_jsx("svg", __assign({}, props, { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: _jsx("path", { d: "M19.1752 6.49326L14.9337 2.23752C14.7819 2.08572 14.5766 2 14.3623 2H5.39718C4.9525 2 4.58997 2.36253 4.58997 2.809V21.191C4.58997 21.6375 4.9525 22 5.39718 22H18.6055C19.0502 22 19.4127 21.6375 19.4127 21.191V7.06652C19.4127 6.85222 19.327 6.64506 19.1752 6.49326ZM10.5994 10.4329C10.2851 10.4329 10.044 10.474 9.87972 10.5561C9.71364 10.6383 9.59934 10.7615 9.53684 10.9294C9.47433 11.0972 9.44397 11.3205 9.44397 11.6026V12.8081C9.44397 13.1171 9.36539 13.3832 9.21002 13.6046C9.05465 13.8261 8.76534 14.0064 8.34387 14.1422C8.24208 14.1761 8.12778 14.2047 8.00634 14.2297V14.3922C8.12778 14.4172 8.24208 14.4458 8.34387 14.4779C8.76534 14.6118 9.05465 14.7922 9.21002 15.0154C9.36539 15.2405 9.44397 15.5066 9.44397 15.8155V17.021C9.44397 17.3032 9.47433 17.5282 9.53684 17.6943C9.59934 17.8621 9.71364 17.9854 9.87972 18.0675C10.0458 18.1497 10.2869 18.1889 10.5994 18.1889V19.4676C9.95295 19.4676 9.4404 19.4141 9.06179 19.3051C8.68497 19.1962 8.38138 18.9747 8.15457 18.6443C7.92776 18.314 7.81347 17.8282 7.81347 17.1906V16.2691C7.81347 15.9834 7.77418 15.7548 7.6956 15.5816C7.61702 15.4083 7.48665 15.2798 7.30628 15.1976C7.12412 15.1155 6.87946 15.0744 6.5705 15.0744V13.5367L6.62408 13.535C6.90624 13.5296 7.13484 13.4903 7.30628 13.4135C7.48844 13.3296 7.61702 13.2028 7.6956 13.0313C7.77418 12.8599 7.81347 12.6295 7.81347 12.3456V11.4294C7.81347 10.7901 7.92776 10.3061 8.15457 9.97571C8.38138 9.64533 8.68497 9.42388 9.06179 9.31315C9.43861 9.20243 9.95116 9.14885 10.5994 9.14885V10.4275V10.4329ZM17.4304 13.5439V15.0833H17.3768C17.0947 15.0887 16.8661 15.128 16.6946 15.2048C16.5125 15.2887 16.3839 15.4155 16.3053 15.5869C16.2267 15.7602 16.1874 15.9887 16.1874 16.2727V17.1889C16.1874 17.8282 16.0731 18.3122 15.8463 18.6426C15.6195 18.9729 15.3159 19.1944 14.9391 19.3051C14.5623 19.4158 14.0497 19.4694 13.4015 19.4694V18.1907C13.7158 18.1907 13.9569 18.1497 14.1212 18.0675C14.2873 17.9854 14.4016 17.8621 14.4641 17.6943C14.5266 17.5264 14.5569 17.3032 14.5569 17.021V15.8155C14.5569 15.5066 14.6337 15.2405 14.7891 15.019C14.9445 14.7976 15.2338 14.619 15.6552 14.4815C15.757 14.4475 15.8713 14.419 15.9928 14.394V14.2314C15.8713 14.2064 15.757 14.1779 15.6552 14.1457C15.2338 14.0118 14.9445 13.8314 14.7891 13.6082C14.6337 13.3832 14.5569 13.1171 14.5569 12.8081V11.6026C14.5569 11.3205 14.5266 11.0955 14.4641 10.9294C14.4016 10.7615 14.2873 10.6383 14.1212 10.5561C13.9551 10.474 13.714 10.4329 13.4015 10.4329V9.15421C14.048 9.15421 14.5605 9.20779 14.9391 9.31673C15.3159 9.42566 15.6195 9.64533 15.8463 9.9775C16.0731 10.3079 16.1874 10.7936 16.1874 11.4312V12.3527C16.1874 12.6385 16.2267 12.867 16.3053 13.0403C16.3839 13.2135 16.5142 13.3421 16.6946 13.4242C16.8696 13.5046 17.1072 13.5439 17.4018 13.5457H17.4286L17.4304 13.5439Z", fill: "currentColor" }) }))); };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@team-monolith/cds",
3
- "version": "0.12.0",
3
+ "version": "0.12.3",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "dependencies": {