@pop-ui/foundation 1.1.4 → 1.1.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.
@@ -3,8 +3,8 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  // DO NOT EDIT MANUALLY — changes will be overwritten on the next build
4
4
  // To update: modify the source in src/icons/*.tsx or src/illustrations/*.tsx, then run `yarn build`
5
5
  import { Circle, Path, Svg } from 'react-native-svg';
6
- import { ColorGray900, SemanticColorBgWhite } from '../../tokens/colors';
6
+ import { ColorGray900, ColorWhite } from '../../tokens/colors';
7
7
  export default function IconCaution({ size = 24, color = ColorGray900, variant = 'line', ...props }) {
8
8
  const isFilled = variant === 'filled';
9
- return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Circle, { cx: "12", cy: "12", r: "9", fill: isFilled ? color : 'none', stroke: isFilled ? undefined : color, strokeWidth: isFilled ? 0 : 1.5, strokeMiterlimit: "10", strokeLinecap: "round" }), _jsx(Path, { d: "M12 17.1L12 15.6", stroke: isFilled ? SemanticColorBgWhite : color, strokeWidth: "1.5", strokeMiterlimit: "10" }), _jsx(Path, { d: "M12 14.4V7.2", stroke: isFilled ? SemanticColorBgWhite : color, strokeWidth: "1.5", strokeMiterlimit: "10" })] }));
9
+ return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Circle, { cx: "12", cy: "12", r: "9", fill: isFilled ? color : 'none', stroke: isFilled ? undefined : color, strokeWidth: isFilled ? 0 : 1.5, strokeMiterlimit: "10", strokeLinecap: "round" }), _jsx(Path, { d: "M12 17.1L12 15.6", stroke: isFilled ? ColorWhite : color, strokeWidth: "1.5", strokeMiterlimit: "10" }), _jsx(Path, { d: "M12 14.4V7.2", stroke: isFilled ? ColorWhite : color, strokeWidth: "1.5", strokeMiterlimit: "10" })] }));
10
10
  }
@@ -3,8 +3,8 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  // DO NOT EDIT MANUALLY — changes will be overwritten on the next build
4
4
  // To update: modify the source in src/icons/*.tsx or src/illustrations/*.tsx, then run `yarn build`
5
5
  import { Circle, Path, Svg } from 'react-native-svg';
6
- import { ColorGray900, SemanticColorBgWhite } from '../../tokens/colors';
6
+ import { ColorGray900, ColorWhite } from '../../tokens/colors';
7
7
  export default function IconCheckCircle({ size = 24, color = ColorGray900, variant = 'line', ...props }) {
8
8
  const isFilled = variant === 'filled';
9
- return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Circle, { cx: "12", cy: "12", r: "9", fill: isFilled ? color : 'none', stroke: color, strokeWidth: "1.5" }), _jsx(Path, { d: "M8.24878 12L11.2488 15L16.5 9.5", stroke: isFilled ? SemanticColorBgWhite : color, strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }));
9
+ return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Circle, { cx: "12", cy: "12", r: "9", fill: isFilled ? color : 'none', stroke: color, strokeWidth: "1.5" }), _jsx(Path, { d: "M8.24878 12L11.2488 15L16.5 9.5", stroke: isFilled ? ColorWhite : color, strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }));
10
10
  }
@@ -3,8 +3,8 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  // DO NOT EDIT MANUALLY — changes will be overwritten on the next build
4
4
  // To update: modify the source in src/icons/*.tsx or src/illustrations/*.tsx, then run `yarn build`
5
5
  import { Circle, Path, Svg } from 'react-native-svg';
6
- import { ColorGray900, SemanticColorBgWhite } from '../../tokens/colors';
6
+ import { ColorGray900, ColorWhite } from '../../tokens/colors';
7
7
  export default function IconInfoCircle({ size = 24, color = ColorGray900, variant = 'line', ...props }) {
8
8
  const isFilled = variant === 'filled';
9
- return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Circle, { cx: "12", cy: "12", r: "9", fill: isFilled ? color : 'none', stroke: color, strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round" }), _jsx(Path, { d: "M12 6.9L12 8.4", stroke: isFilled ? SemanticColorBgWhite : color, strokeWidth: "1.5", strokeMiterlimit: "10" }), _jsx(Path, { d: "M12 9.6L12 16.8", stroke: isFilled ? SemanticColorBgWhite : color, strokeWidth: "1.5", strokeMiterlimit: "10" })] }));
9
+ return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Circle, { cx: "12", cy: "12", r: "9", fill: isFilled ? color : 'none', stroke: color, strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round" }), _jsx(Path, { d: "M12 6.9L12 8.4", stroke: isFilled ? ColorWhite : color, strokeWidth: "1.5", strokeMiterlimit: "10" }), _jsx(Path, { d: "M12 9.6L12 16.8", stroke: isFilled ? ColorWhite : color, strokeWidth: "1.5", strokeMiterlimit: "10" })] }));
10
10
  }
@@ -3,8 +3,8 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  // DO NOT EDIT MANUALLY — changes will be overwritten on the next build
4
4
  // To update: modify the source in src/icons/*.tsx or src/illustrations/*.tsx, then run `yarn build`
5
5
  import { Path, Svg } from 'react-native-svg';
6
- import { ColorGray900, SemanticColorBgWhite } from '../../tokens/colors';
6
+ import { ColorGray900, ColorWhite } from '../../tokens/colors';
7
7
  export default function IconMapMarker({ size = 24, color = ColorGray900, variant = 'line', ...props }) {
8
8
  const isFilled = variant === 'filled';
9
- return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Path, { d: "M19.9781 10.3112C19.4734 15.4712 15.772 19.7512 13.5953 21.8612C12.712 22.7212 11.2609 22.7212 10.3777 21.8612C8.0327 19.5912 3.9844 14.7712 3.9844 9.1312C3.9844 4.8012 7.7804 1.3112 12.3755 1.5012C17.0759 1.7012 20.4092 5.8512 19.9781 10.3012V10.3112Z", stroke: color, strokeWidth: isFilled ? 0 : 1.5, strokeMiterlimit: "10", fill: isFilled ? color : undefined }), _jsx(Path, { d: "M12.1471 12.1612C13.7764 12.1612 15.0971 10.8404 15.0971 9.2112C15.0971 7.582 13.7764 6.2612 12.1471 6.2612C10.5179 6.2612 9.1972 7.582 9.1972 9.2112C9.1972 10.8404 10.5179 12.1612 12.1471 12.1612Z", stroke: color, strokeWidth: isFilled ? 0 : 1.5, fill: isFilled ? SemanticColorBgWhite : undefined, strokeMiterlimit: "10" })] }));
9
+ return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Path, { d: "M19.9781 10.3112C19.4734 15.4712 15.772 19.7512 13.5953 21.8612C12.712 22.7212 11.2609 22.7212 10.3777 21.8612C8.0327 19.5912 3.9844 14.7712 3.9844 9.1312C3.9844 4.8012 7.7804 1.3112 12.3755 1.5012C17.0759 1.7012 20.4092 5.8512 19.9781 10.3012V10.3112Z", stroke: color, strokeWidth: isFilled ? 0 : 1.5, strokeMiterlimit: "10", fill: isFilled ? color : undefined }), _jsx(Path, { d: "M12.1471 12.1612C13.7764 12.1612 15.0971 10.8404 15.0971 9.2112C15.0971 7.582 13.7764 6.2612 12.1471 6.2612C10.5179 6.2612 9.1972 7.582 9.1972 9.2112C9.1972 10.8404 10.5179 12.1612 12.1471 12.1612Z", stroke: color, strokeWidth: isFilled ? 0 : 1.5, fill: isFilled ? ColorWhite : undefined, strokeMiterlimit: "10" })] }));
10
10
  }
@@ -3,8 +3,8 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  // DO NOT EDIT MANUALLY — changes will be overwritten on the next build
4
4
  // To update: modify the source in src/icons/*.tsx or src/illustrations/*.tsx, then run `yarn build`
5
5
  import { Circle, Path, Svg } from 'react-native-svg';
6
- import { ColorGray900, SemanticColorBgWhite } from '../../tokens/colors';
6
+ import { ColorGray900, ColorWhite } from '../../tokens/colors';
7
7
  export default function IconMoneyCircle({ size = 24, color = ColorGray900, variant = 'line', ...props }) {
8
8
  const isFilled = variant === 'filled';
9
- return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Circle, { cx: "12", cy: "12", r: "9.5", fill: isFilled ? color : 'none', stroke: color, strokeWidth: "1.5" }), _jsx(Path, { d: "M7.8707 13.0517H6.4922V11.9188H7.5875L6.6307 8.1043H8.2799L9.0541 11.9188H10.376L11.1376 8.1043H12.8624L13.624 11.9188H14.927L15.6949 8.1043H17.3693L16.4188 11.9188H17.5078V13.0517H16.1355L15.1787 16.8663H13.3785L12.6169 13.0517H11.3705L10.6089 16.8663H8.8213L7.8707 13.0517ZM12.0315 10.1437H11.956L11.5972 11.9188H12.3902L12.0315 10.1437ZM9.6584 14.915H9.778L10.1494 13.0517H9.2807L9.6584 14.915ZM14.222 14.915H14.3227L14.7004 13.0517H13.8506L14.222 14.915Z", fill: isFilled ? SemanticColorBgWhite : color, strokeWidth: 0 })] }));
9
+ return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Circle, { cx: "12", cy: "12", r: "9.5", fill: isFilled ? color : 'none', stroke: color, strokeWidth: "1.5" }), _jsx(Path, { d: "M7.8707 13.0517H6.4922V11.9188H7.5875L6.6307 8.1043H8.2799L9.0541 11.9188H10.376L11.1376 8.1043H12.8624L13.624 11.9188H14.927L15.6949 8.1043H17.3693L16.4188 11.9188H17.5078V13.0517H16.1355L15.1787 16.8663H13.3785L12.6169 13.0517H11.3705L10.6089 16.8663H8.8213L7.8707 13.0517ZM12.0315 10.1437H11.956L11.5972 11.9188H12.3902L12.0315 10.1437ZM9.6584 14.915H9.778L10.1494 13.0517H9.2807L9.6584 14.915ZM14.222 14.915H14.3227L14.7004 13.0517H13.8506L14.222 14.915Z", fill: isFilled ? ColorWhite : color, strokeWidth: 0 })] }));
10
10
  }
@@ -3,8 +3,8 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  // DO NOT EDIT MANUALLY — changes will be overwritten on the next build
4
4
  // To update: modify the source in src/icons/*.tsx or src/illustrations/*.tsx, then run `yarn build`
5
5
  import { Circle, Path, Svg } from 'react-native-svg';
6
- import { ColorGray900, SemanticColorBgWhite } from '../../tokens/colors';
6
+ import { ColorGray900, ColorWhite } from '../../tokens/colors';
7
7
  export default function IconPlayCircle({ size = 24, color = ColorGray900, variant = 'filled', ...props }) {
8
8
  const isFilled = variant === 'filled';
9
- return (_jsxs(Svg, { width: size, height: size, fill: "none", viewBox: "0 0 24 24", ...props, children: [_jsx(Circle, { cx: "12", cy: "12", r: "11.25", fill: isFilled ? color : 'none', stroke: color, opacity: isFilled ? 0.6 : 1, strokeWidth: "1.5" }), _jsx(Path, { fill: isFilled ? SemanticColorBgWhite : color, d: "M16.368 11.5035c.3218.2528.3218.7403 0 .9938l-5.346 4.2a.6315.6315 0 0 1-1.0223-.4965V7.8a.6315.6315 0 0 1 1.0223-.4973z" })] }));
9
+ return (_jsxs(Svg, { width: size, height: size, fill: "none", viewBox: "0 0 24 24", ...props, children: [_jsx(Circle, { cx: "12", cy: "12", r: "11.25", fill: isFilled ? color : 'none', stroke: color, opacity: isFilled ? 0.6 : 1, strokeWidth: "1.5" }), _jsx(Path, { fill: isFilled ? ColorWhite : color, d: "M16.368 11.5035c.3218.2528.3218.7403 0 .9938l-5.346 4.2a.6315.6315 0 0 1-1.0223-.4965V7.8a.6315.6315 0 0 1 1.0223-.4973z" })] }));
10
10
  }
@@ -3,8 +3,8 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  // DO NOT EDIT MANUALLY — changes will be overwritten on the next build
4
4
  // To update: modify the source in src/icons/*.tsx or src/illustrations/*.tsx, then run `yarn build`
5
5
  import { Circle, Path, Svg } from 'react-native-svg';
6
- import { ColorGray900, SemanticColorBgWhite } from '../../tokens/colors';
6
+ import { ColorGray900, ColorWhite } from '../../tokens/colors';
7
7
  export default function IconPlusCircle({ size = 24, color = ColorGray900, variant = 'line', ...props }) {
8
8
  const isFilled = variant === 'filled';
9
- return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Circle, { cx: "12", cy: "12", r: "10.9091", fill: isFilled ? color : 'none', stroke: color, strokeWidth: "1.5" }), _jsx(Path, { strokeLinecap: "round", d: "M12 6.5455V17.4545M17.4545 12H6.5455", stroke: isFilled ? SemanticColorBgWhite : color, strokeWidth: "1.5" })] }));
9
+ return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Circle, { cx: "12", cy: "12", r: "10.9091", fill: isFilled ? color : 'none', stroke: color, strokeWidth: "1.5" }), _jsx(Path, { strokeLinecap: "round", d: "M12 6.5455V17.4545M17.4545 12H6.5455", stroke: isFilled ? ColorWhite : color, strokeWidth: "1.5" })] }));
10
10
  }
@@ -3,8 +3,8 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  // DO NOT EDIT MANUALLY — changes will be overwritten on the next build
4
4
  // To update: modify the source in src/icons/*.tsx or src/illustrations/*.tsx, then run `yarn build`
5
5
  import { Path, Svg } from 'react-native-svg';
6
- import { ColorGray900, SemanticColorBgWhite } from '../../tokens/colors';
6
+ import { ColorGray900, ColorWhite } from '../../tokens/colors';
7
7
  export default function IconPopdeal({ size = 24, color = ColorGray900, variant = 'line', ...props }) {
8
8
  const isFilled = variant === 'filled';
9
- return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Path, { d: "M18.5158 22H5.4937C4.4093 22 3.5323 21.0947 3.5323 19.9726L4.513 7.7992C4.513 6.677 5.3899 5.7718 6.4744 5.7718H17.5257C18.6101 5.7718 19.487 6.677 19.487 7.7992L20.4677 19.9726C20.4677 21.0947 19.5908 22 18.5064 22H18.5158Z", stroke: isFilled ? undefined : color, strokeWidth: isFilled ? undefined : '1.5', strokeMiterlimit: isFilled ? undefined : '10', fill: isFilled ? color : 'none' }), _jsx(Path, { d: "M8.5206 7.0071V5.4889C8.5206 3.5653 10.0859 2 12.0095 2C13.9332 2 15.4985 3.5653 15.4985 5.4889V7.0071", stroke: color, strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round" }), _jsx(Path, { d: "M9.8501 18.7751C11.2457 19.2749 12.7733 19.2749 14.1688 18.7751", stroke: isFilled ? SemanticColorBgWhite : color, strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round" }), _jsx(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M11.538 10.1188H9.7652C9.6898 10.1188 9.6143 10.1848 9.6143 10.2697V15.9839C9.6143 16.0688 9.6898 16.1443 9.7652 16.1443H10.9345C11.0194 16.1443 11.0854 16.0783 11.0854 15.9934V15.0881C11.0854 14.9844 11.1702 14.8996 11.2645 14.8996H11.5285C13.3013 14.8996 14.3951 14.032 14.3951 12.5233C14.3951 11.0146 13.3013 10.1282 11.5285 10.1282L11.538 10.1188ZM11.6134 13.4569H11.2739C11.1797 13.4569 11.0948 13.3814 11.0948 13.2777V11.7407C11.0948 11.6369 11.1797 11.552 11.2739 11.552H11.6134C12.5092 11.552 12.9053 11.7784 12.9053 12.5139C12.9053 13.2494 12.5281 13.4663 11.6134 13.4663V13.4569Z", fill: isFilled ? SemanticColorBgWhite : color })] }));
9
+ return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Path, { d: "M18.5158 22H5.4937C4.4093 22 3.5323 21.0947 3.5323 19.9726L4.513 7.7992C4.513 6.677 5.3899 5.7718 6.4744 5.7718H17.5257C18.6101 5.7718 19.487 6.677 19.487 7.7992L20.4677 19.9726C20.4677 21.0947 19.5908 22 18.5064 22H18.5158Z", stroke: isFilled ? undefined : color, strokeWidth: isFilled ? undefined : '1.5', strokeMiterlimit: isFilled ? undefined : '10', fill: isFilled ? color : 'none' }), _jsx(Path, { d: "M8.5206 7.0071V5.4889C8.5206 3.5653 10.0859 2 12.0095 2C13.9332 2 15.4985 3.5653 15.4985 5.4889V7.0071", stroke: color, strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round" }), _jsx(Path, { d: "M9.8501 18.7751C11.2457 19.2749 12.7733 19.2749 14.1688 18.7751", stroke: isFilled ? ColorWhite : color, strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round" }), _jsx(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M11.538 10.1188H9.7652C9.6898 10.1188 9.6143 10.1848 9.6143 10.2697V15.9839C9.6143 16.0688 9.6898 16.1443 9.7652 16.1443H10.9345C11.0194 16.1443 11.0854 16.0783 11.0854 15.9934V15.0881C11.0854 14.9844 11.1702 14.8996 11.2645 14.8996H11.5285C13.3013 14.8996 14.3951 14.032 14.3951 12.5233C14.3951 11.0146 13.3013 10.1282 11.5285 10.1282L11.538 10.1188ZM11.6134 13.4569H11.2739C11.1797 13.4569 11.0948 13.3814 11.0948 13.2777V11.7407C11.0948 11.6369 11.1797 11.552 11.2739 11.552H11.6134C12.5092 11.552 12.9053 11.7784 12.9053 12.5139C12.9053 13.2494 12.5281 13.4663 11.6134 13.4663V13.4569Z", fill: isFilled ? ColorWhite : color })] }));
10
10
  }
@@ -3,8 +3,8 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  // DO NOT EDIT MANUALLY — changes will be overwritten on the next build
4
4
  // To update: modify the source in src/icons/*.tsx or src/illustrations/*.tsx, then run `yarn build`
5
5
  import { Circle, Path, Svg } from 'react-native-svg';
6
- import { ColorGray900, SemanticColorBgWhite } from '../../tokens/colors';
6
+ import { ColorGray900, ColorWhite } from '../../tokens/colors';
7
7
  export default function IconQuestionCircle({ size = 24, color = ColorGray900, variant = 'line', ...props }) {
8
8
  const isFilled = variant === 'filled';
9
- return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Circle, { cx: "12", cy: "12", r: "7.9333", fill: isFilled ? color : 'none', stroke: color, strokeWidth: "1.5" }), _jsx(Path, { d: "M11.1963 14.0287C11.1993 13.4848 11.2525 13.0457 11.3558 12.7115C11.4621 12.3742 11.6095 12.1037 11.7979 11.9001C11.9863 11.6965 12.2386 11.4975 12.5545 11.303C13.1957 10.905 13.5163 10.4066 13.5163 9.808C13.5163 9.5467 13.454 9.3173 13.3294 9.1197C13.2048 8.9192 13.0362 8.7657 12.8234 8.6594C12.6108 8.55 12.3752 8.4953 12.117 8.4953C11.8769 8.4953 11.6521 8.547 11.4424 8.6503C11.2327 8.7506 11.0595 8.904 10.9228 9.1106C10.786 9.3173 10.7086 9.5725 10.6903 9.8764H9.2956C9.3138 9.3446 9.449 8.8873 9.7012 8.5044C9.9534 8.1216 10.2907 7.8314 10.7131 7.6338C11.1355 7.4363 11.605 7.3376 12.1216 7.3376C12.6746 7.3376 13.1623 7.4424 13.5847 7.6521C14.0101 7.8587 14.3382 8.1504 14.5692 8.5272C14.8032 8.901 14.9202 9.3325 14.9202 9.8217C14.9202 10.317 14.8078 10.7454 14.5829 11.107C14.358 11.4687 14.0314 11.7801 13.6028 12.0414C13.3355 12.2024 13.1243 12.3696 12.9694 12.5428C12.8174 12.713 12.705 12.9166 12.632 13.1536C12.5591 13.3876 12.5196 13.6793 12.5135 14.0287V14.1108H11.1963V14.0287ZM10.9775 15.975C10.9744 15.811 11.0139 15.6589 11.096 15.5192C11.178 15.3794 11.2889 15.2686 11.4287 15.1865C11.5715 15.1044 11.7265 15.0634 11.8936 15.0634C12.0547 15.0634 12.2051 15.1044 12.3449 15.1865C12.4847 15.2686 12.5956 15.3794 12.6776 15.5192C12.7627 15.6589 12.8052 15.811 12.8052 15.975C12.8052 16.139 12.7627 16.2911 12.6776 16.4308C12.5956 16.5706 12.4847 16.6814 12.3449 16.7635C12.2051 16.8456 12.0547 16.8866 11.8936 16.8866C11.7265 16.8866 11.5715 16.8456 11.4287 16.7635C11.2889 16.6814 11.178 16.5706 11.096 16.4308C11.0139 16.2911 10.9744 16.139 10.9775 15.975Z", fill: isFilled ? SemanticColorBgWhite : color, strokeWidth: 0 })] }));
9
+ return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Circle, { cx: "12", cy: "12", r: "7.9333", fill: isFilled ? color : 'none', stroke: color, strokeWidth: "1.5" }), _jsx(Path, { d: "M11.1963 14.0287C11.1993 13.4848 11.2525 13.0457 11.3558 12.7115C11.4621 12.3742 11.6095 12.1037 11.7979 11.9001C11.9863 11.6965 12.2386 11.4975 12.5545 11.303C13.1957 10.905 13.5163 10.4066 13.5163 9.808C13.5163 9.5467 13.454 9.3173 13.3294 9.1197C13.2048 8.9192 13.0362 8.7657 12.8234 8.6594C12.6108 8.55 12.3752 8.4953 12.117 8.4953C11.8769 8.4953 11.6521 8.547 11.4424 8.6503C11.2327 8.7506 11.0595 8.904 10.9228 9.1106C10.786 9.3173 10.7086 9.5725 10.6903 9.8764H9.2956C9.3138 9.3446 9.449 8.8873 9.7012 8.5044C9.9534 8.1216 10.2907 7.8314 10.7131 7.6338C11.1355 7.4363 11.605 7.3376 12.1216 7.3376C12.6746 7.3376 13.1623 7.4424 13.5847 7.6521C14.0101 7.8587 14.3382 8.1504 14.5692 8.5272C14.8032 8.901 14.9202 9.3325 14.9202 9.8217C14.9202 10.317 14.8078 10.7454 14.5829 11.107C14.358 11.4687 14.0314 11.7801 13.6028 12.0414C13.3355 12.2024 13.1243 12.3696 12.9694 12.5428C12.8174 12.713 12.705 12.9166 12.632 13.1536C12.5591 13.3876 12.5196 13.6793 12.5135 14.0287V14.1108H11.1963V14.0287ZM10.9775 15.975C10.9744 15.811 11.0139 15.6589 11.096 15.5192C11.178 15.3794 11.2889 15.2686 11.4287 15.1865C11.5715 15.1044 11.7265 15.0634 11.8936 15.0634C12.0547 15.0634 12.2051 15.1044 12.3449 15.1865C12.4847 15.2686 12.5956 15.3794 12.6776 15.5192C12.7627 15.6589 12.8052 15.811 12.8052 15.975C12.8052 16.139 12.7627 16.2911 12.6776 16.4308C12.5956 16.5706 12.4847 16.6814 12.3449 16.7635C12.2051 16.8456 12.0547 16.8866 11.8936 16.8866C11.7265 16.8866 11.5715 16.8456 11.4287 16.7635C11.2889 16.6814 11.178 16.5706 11.096 16.4308C11.0139 16.2911 10.9744 16.139 10.9775 15.975Z", fill: isFilled ? ColorWhite : color, strokeWidth: 0 })] }));
10
10
  }
@@ -3,8 +3,8 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  // DO NOT EDIT MANUALLY — changes will be overwritten on the next build
4
4
  // To update: modify the source in src/icons/*.tsx or src/illustrations/*.tsx, then run `yarn build`
5
5
  import { Circle, Path, Svg } from 'react-native-svg';
6
- import { ColorGray900, SemanticColorBgWhite } from '../../tokens/colors';
6
+ import { ColorGray900, ColorWhite } from '../../tokens/colors';
7
7
  export default function IconWarningCircle({ size = 24, color = ColorGray900, variant = 'line', ...props }) {
8
8
  const isFilled = variant === 'filled';
9
- return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Circle, { cx: "12", cy: "12", r: "10", fill: isFilled ? color : 'none', stroke: color, strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round" }), _jsx(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M12.0046 15.2893C12.6552 15.2893 13.181 15.8152 13.181 16.4658C13.181 17.1164 12.6552 17.6422 12.0046 17.6422C11.354 17.6422 10.8222 17.1164 10.8222 16.4658C10.8222 15.8152 11.3434 15.2893 11.9928 15.2893H12.0046ZM11.993 6.6518C12.4801 6.6518 12.8754 7.047 12.8754 7.5341V12.733C12.8754 13.22 12.4801 13.6153 11.993 13.6153C11.506 13.6153 11.1107 13.22 11.1107 12.733V7.5341C11.1107 7.047 11.506 6.6518 11.993 6.6518Z", fill: isFilled ? SemanticColorBgWhite : color, strokeWidth: 0 })] }));
9
+ return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Circle, { cx: "12", cy: "12", r: "10", fill: isFilled ? color : 'none', stroke: color, strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round" }), _jsx(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M12.0046 15.2893C12.6552 15.2893 13.181 15.8152 13.181 16.4658C13.181 17.1164 12.6552 17.6422 12.0046 17.6422C11.354 17.6422 10.8222 17.1164 10.8222 16.4658C10.8222 15.8152 11.3434 15.2893 11.9928 15.2893H12.0046ZM11.993 6.6518C12.4801 6.6518 12.8754 7.047 12.8754 7.5341V12.733C12.8754 13.22 12.4801 13.6153 11.993 13.6153C11.506 13.6153 11.1107 13.22 11.1107 12.733V7.5341C11.1107 7.047 11.506 6.6518 11.993 6.6518Z", fill: isFilled ? ColorWhite : color, strokeWidth: 0 })] }));
10
10
  }
@@ -3,8 +3,8 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  // DO NOT EDIT MANUALLY — changes will be overwritten on the next build
4
4
  // To update: modify the source in src/icons/*.tsx or src/illustrations/*.tsx, then run `yarn build`
5
5
  import { Path, Svg } from 'react-native-svg';
6
- import { ColorGray900, SemanticColorBgWhite } from '../../tokens/colors';
6
+ import { ColorGray900, ColorWhite } from '../../tokens/colors';
7
7
  export default function IconWarningTriangle({ size = 24, color = ColorGray900, variant = 'line', ...props }) {
8
8
  const isFilled = variant === 'filled';
9
- return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Path, { d: "M2.3498 18.1694L10.7279 4.7643C11.3155 3.8243 12.6844 3.8243 13.2719 4.7643L21.6502 18.1694C22.2746 19.1685 21.5563 20.4644 20.3782 20.4644H3.6217C2.4436 20.4644 1.7253 19.1685 2.3498 18.1694Z", fill: isFilled ? color : 'none', stroke: color, strokeWidth: "1.5" }), _jsx(Path, { d: "M11.9923 8.3878C12.4291 8.3878 12.7836 8.7422 12.7836 9.179V13.8411C12.7836 14.2778 12.4291 14.6323 11.9923 14.6323C11.5556 14.6323 11.201 14.2778 11.201 13.8411V9.179C11.201 8.7422 11.5556 8.3878 11.9923 8.3878Z", fill: isFilled ? SemanticColorBgWhite : color, strokeWidth: 0 }), _jsx(Path, { d: "M12.0026 16.1335C12.5861 16.1335 13.0577 16.6051 13.0577 17.1885C13.0577 17.7719 12.5861 18.2435 12.0026 18.2435C11.4193 18.2435 10.9424 17.7719 10.9424 17.1885C10.9424 16.6051 11.4097 16.1335 11.9921 16.1335H12.0026Z", fill: isFilled ? SemanticColorBgWhite : color, strokeWidth: 0 })] }));
9
+ return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Path, { d: "M2.3498 18.1694L10.7279 4.7643C11.3155 3.8243 12.6844 3.8243 13.2719 4.7643L21.6502 18.1694C22.2746 19.1685 21.5563 20.4644 20.3782 20.4644H3.6217C2.4436 20.4644 1.7253 19.1685 2.3498 18.1694Z", fill: isFilled ? color : 'none', stroke: color, strokeWidth: "1.5" }), _jsx(Path, { d: "M11.9923 8.3878C12.4291 8.3878 12.7836 8.7422 12.7836 9.179V13.8411C12.7836 14.2778 12.4291 14.6323 11.9923 14.6323C11.5556 14.6323 11.201 14.2778 11.201 13.8411V9.179C11.201 8.7422 11.5556 8.3878 11.9923 8.3878Z", fill: isFilled ? ColorWhite : color, strokeWidth: 0 }), _jsx(Path, { d: "M12.0026 16.1335C12.5861 16.1335 13.0577 16.6051 13.0577 17.1885C13.0577 17.7719 12.5861 18.2435 12.0026 18.2435C11.4193 18.2435 10.9424 17.7719 10.9424 17.1885C10.9424 16.6051 11.4097 16.1335 11.9921 16.1335H12.0026Z", fill: isFilled ? ColorWhite : color, strokeWidth: 0 })] }));
10
10
  }
@@ -3,8 +3,8 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  // DO NOT EDIT MANUALLY — changes will be overwritten on the next build
4
4
  // To update: modify the source in src/icons/*.tsx or src/illustrations/*.tsx, then run `yarn build`
5
5
  import { Circle, Rect, Svg } from 'react-native-svg';
6
- import { ColorGray900, SemanticColorBgWhite } from '../../tokens/colors';
6
+ import { ColorGray900, ColorWhite } from '../../tokens/colors';
7
7
  export default function IconXCircle({ size = 24, color = ColorGray900, variant = 'filled', ...props }) {
8
8
  const isFilled = variant === 'filled';
9
- return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Circle, { cx: "12", cy: "12", r: "9", fill: isFilled ? color : 'none', stroke: color, strokeWidth: "1.5" }), _jsx(Rect, { x: "14.8284", y: "7.75781", width: "2", height: "10", rx: "1", transform: "rotate(45 14.8284 7.75781)", fill: isFilled ? SemanticColorBgWhite : color, strokeWidth: 0 }), _jsx(Rect, { width: "2", height: "10", rx: "1", transform: "matrix(-0.707107 0.707107 0.707107 0.707107 9.17139 7.75781)", fill: isFilled ? SemanticColorBgWhite : color, strokeWidth: 0 })] }));
9
+ return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", ...props, children: [_jsx(Circle, { cx: "12", cy: "12", r: "9", fill: isFilled ? color : 'none', stroke: color, strokeWidth: "1.5" }), _jsx(Rect, { x: "14.8284", y: "7.75781", width: "2", height: "10", rx: "1", transform: "rotate(45 14.8284 7.75781)", fill: isFilled ? ColorWhite : color, strokeWidth: 0 }), _jsx(Rect, { width: "2", height: "10", rx: "1", transform: "matrix(-0.707107 0.707107 0.707107 0.707107 9.17139 7.75781)", fill: isFilled ? ColorWhite : color, strokeWidth: 0 })] }));
10
10
  }
@@ -6,11 +6,21 @@
6
6
  */
7
7
  import tokenData from '../../../token.json';
8
8
  const rawColors = tokenData.global.color;
9
- export const colors = Object.entries(rawColors).reduce((acc, [colorName, shades]) => {
10
- acc[colorName] = Object.entries(shades).reduce((shadeAcc, [shade, tokenValue]) => {
11
- shadeAcc[shade] = tokenValue.value;
12
- return shadeAcc;
13
- }, {});
9
+ export const colors = Object.entries(rawColors).reduce((acc, [colorName, entry]) => {
10
+ const entryObj = entry;
11
+ // Flat token (e.g. white: { value: '#fff', type: 'color' })
12
+ if (typeof entryObj.value === 'string') {
13
+ acc[colorName] = { default: entryObj.value };
14
+ }
15
+ else {
16
+ // Nested shades (e.g. gray: { 50: { value: '#...', type: 'color' } })
17
+ acc[colorName] = Object.entries(entryObj).reduce((shadeAcc, [shade, tokenValue]) => {
18
+ if (tokenValue && typeof tokenValue.value === 'string') {
19
+ shadeAcc[shade] = tokenValue.value;
20
+ }
21
+ return shadeAcc;
22
+ }, {});
23
+ }
14
24
  return acc;
15
25
  }, {});
16
26
  export const colorNames = Object.keys(colors);
@@ -1,94 +1,8 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
3
  */
4
- export const SemanticColorPrimary = "#0fd3d8";
5
- export const SemanticColorPrimaryHover = "#11badd";
6
- export const SemanticColorPrimaryPressed = "#07a3c6";
7
- export const SemanticColorPrimaryFocused = "#11badd";
8
- export const SemanticColorTextWhite = "#ffffff";
9
- export const SemanticColorBgDisabled = "#b0b0b0";
10
- export const SemanticColorBgWhite = "#ffffff";
11
- export const SemanticColorBgWhiteHover = "#e7e7e7";
12
- export const SemanticColorBgWhitePressed = "#cdcdcd";
13
- export const SemanticColorBgWhiteFocused = "#e7e7e7";
14
- export const SemanticColorTextDisabled = "#ffffff";
15
- export const SemanticColorTextDarkgray03 = "#4a4a4a";
16
- export const SemanticColorBorderLightgray01 = "#b0b0b0";
17
- export const SemanticColorWarning = "#fa5252";
18
- export const SemanticColorWarningHover = "#e03131";
19
- export const SemanticColorWarningPressed = "#c92a2a";
20
- export const SemanticColorWarningFocused = "#e03131";
21
- export const SemanticColorSetting = "#9b9b9b";
22
- export const SemanticColorSettingHover = "#808080";
23
- export const SemanticColorSettingPressed = "#666666";
24
- export const SemanticColorSettingFocused = "#808080";
25
- export const BgColorButtonBgPrimaryDefault = "#0fd3d8";
26
- export const BgColorButtonBgPrimaryHover = "#11badd";
27
- export const BgColorButtonBgPrimaryPressed = "#07a3c6";
28
- export const BgColorButtonBgPrimaryFocused = "#11badd";
29
- export const BgColorButtonBgPrimaryDisabled = "#b0b0b0";
30
- export const BgColorButtonBgPrimarylineDefault = "#ffffff";
31
- export const BgColorButtonBgPrimarylineHover = "#e7e7e7";
32
- export const BgColorButtonBgPrimarylinePressed = "#cdcdcd";
33
- export const BgColorButtonBgPrimarylineFocused = "#e7e7e7";
34
- export const BgColorButtonBgPrimarylineDisabled = "#b0b0b0";
35
- export const BgColorButtonBgBasicDefault = "#ffffff";
36
- export const BgColorButtonBgBasicHover = "#e7e7e7";
37
- export const BgColorButtonBgBasicPreseed = "#cdcdcd";
38
- export const BgColorButtonBgBasicFocused = "#e7e7e7";
39
- export const BgColorButtonBgBasicDisabled = "#b0b0b0";
40
- export const BgColorButtonBgWarningDefault = "#fa5252";
41
- export const BgColorButtonBgWarningHover = "#e03131";
42
- export const BgColorButtonBgWarningPressed = "#c92a2a";
43
- export const BgColorButtonBgWarningFocused = "#e03131";
44
- export const BgColorButtonBgWarningDisabled = "#b0b0b0";
45
- export const BgColorButtonBgSettingDefault = "#9b9b9b";
46
- export const BgColorButtonBgSettingHover = "#808080";
47
- export const BgColorButtonBgSettingPressed = "#666666";
48
- export const BgColorButtonBgSettingFocused = "#808080";
49
- export const BgColorButtonBgSettingDisabled = "#b0b0b0";
50
- export const TextColorButtonTextPrimaryDefault = "#ffffff";
51
- export const TextColorButtonTextPrimaryHover = "#ffffff";
52
- export const TextColorButtonTextPrimaryPressed = "#ffffff";
53
- export const TextColorButtonTextPrimaryFocused = "#ffffff";
54
- export const TextColorButtonTextPrimaryDisabled = "#ffffff";
55
- export const TextColorButtonTextPrimarylineDefault = "#0fd3d8";
56
- export const TextColorButtonTextPrimarylineHover = "#11badd";
57
- export const TextColorButtonTextPrimarylinePressed = "#07a3c6";
58
- export const TextColorButtonTextPrimarylineFocused = "#11badd";
59
- export const TextColorButtonTextPrimarylineDisabled = "#ffffff";
60
- export const TextColorButtonTextBasicDefault = "#4a4a4a";
61
- export const TextColorButtonTextBasicHover = "#4a4a4a";
62
- export const TextColorButtonTextBasicPressed = "#4a4a4a";
63
- export const TextColorButtonTextBasicFocused = "#4a4a4a";
64
- export const TextColorButtonTextBasicDisabled = "#ffffff";
65
- export const TextColorButtonTextWarningDefault = "#ffffff";
66
- export const TextColorButtonTextWarningHover = "#ffffff";
67
- export const TextColorButtonTextWarningPressed = "#ffffff";
68
- export const TextColorButtonTextWarningFocused = "#ffffff";
69
- export const TextColorButtonTextWarningDisabled = "#ffffff";
70
- export const TextColorButtonTextSettingDefault = "#ffffff";
71
- export const TextColorButtonTextSettingHover = "#ffffff";
72
- export const TextColorButtonTextSettingPressed = "#ffffff";
73
- export const TextColorButtonTextSettingFocused = "#ffffff";
74
- export const TextColorButtonTextSettingDisabled = "#ffffff";
75
- export const BorderColorButtonBorderPrimarylineDefault = "#0fd3d8";
76
- export const BorderColorButtonBorderPrimarylineHover = "#11badd";
77
- export const BorderColorButtonBorderPrimarylinePressed = "#07a3c6";
78
- export const BorderColorButtonBorderPrimarylineFocused = "#11badd";
79
- export const BorderColorButtonBorderBasicDefault = "#b0b0b0";
80
- export const BorderColorButtonBorderBasicHover = "#b0b0b0";
81
- export const BorderColorButtonBorderBasicPressed = "#b0b0b0";
82
- export const BorderColorButtonBorderBasicFocused = "#b0b0b0";
83
- export const ButtonBorderButtonPrimarylineDefaultColor = "#0fd3d8";
84
- export const ButtonBorderButtonPrimarylineHoverColor = "#11badd";
85
- export const ButtonBorderButtonPrimarylinePressedColor = "#07a3c6";
86
- export const ButtonBorderButtonPrimarylineFocusedColor = "#11badd";
87
- export const ButtonBorderButtonBasicDefaultColor = "#b0b0b0";
88
- export const ButtonBorderButtonBasicHoverColor = "#b0b0b0";
89
- export const ButtonBorderButtonBasicPressedColor = "#b0b0b0";
90
- export const ButtonBorderButtonBasicFocusedColor = "#b0b0b0";
91
- export const ColorGray0 = "#ffffff";
4
+ export const ColorWhite = "#ffffff";
5
+ export const ColorBlack = "#000000";
92
6
  export const ColorGray25 = "#fbfbfb";
93
7
  export const ColorGray50 = "#f6f6f6";
94
8
  export const ColorGray100 = "#e7e7e7";
@@ -1,88 +1,6 @@
1
1
  import { JSX } from 'react/jsx-runtime';
2
2
  import { SVGProps } from 'react';
3
3
 
4
- export declare const BgColorButtonBgBasicDefault = "#ffffff";
5
-
6
- export declare const BgColorButtonBgBasicDisabled = "#b0b0b0";
7
-
8
- export declare const BgColorButtonBgBasicFocused = "#e7e7e7";
9
-
10
- export declare const BgColorButtonBgBasicHover = "#e7e7e7";
11
-
12
- export declare const BgColorButtonBgBasicPreseed = "#cdcdcd";
13
-
14
- export declare const BgColorButtonBgPrimaryDefault = "#0fd3d8";
15
-
16
- export declare const BgColorButtonBgPrimaryDisabled = "#b0b0b0";
17
-
18
- export declare const BgColorButtonBgPrimaryFocused = "#11badd";
19
-
20
- export declare const BgColorButtonBgPrimaryHover = "#11badd";
21
-
22
- export declare const BgColorButtonBgPrimarylineDefault = "#ffffff";
23
-
24
- export declare const BgColorButtonBgPrimarylineDisabled = "#b0b0b0";
25
-
26
- export declare const BgColorButtonBgPrimarylineFocused = "#e7e7e7";
27
-
28
- export declare const BgColorButtonBgPrimarylineHover = "#e7e7e7";
29
-
30
- export declare const BgColorButtonBgPrimarylinePressed = "#cdcdcd";
31
-
32
- export declare const BgColorButtonBgPrimaryPressed = "#07a3c6";
33
-
34
- export declare const BgColorButtonBgSettingDefault = "#9b9b9b";
35
-
36
- export declare const BgColorButtonBgSettingDisabled = "#b0b0b0";
37
-
38
- export declare const BgColorButtonBgSettingFocused = "#808080";
39
-
40
- export declare const BgColorButtonBgSettingHover = "#808080";
41
-
42
- export declare const BgColorButtonBgSettingPressed = "#666666";
43
-
44
- export declare const BgColorButtonBgWarningDefault = "#fa5252";
45
-
46
- export declare const BgColorButtonBgWarningDisabled = "#b0b0b0";
47
-
48
- export declare const BgColorButtonBgWarningFocused = "#e03131";
49
-
50
- export declare const BgColorButtonBgWarningHover = "#e03131";
51
-
52
- export declare const BgColorButtonBgWarningPressed = "#c92a2a";
53
-
54
- export declare const BorderColorButtonBorderBasicDefault = "#b0b0b0";
55
-
56
- export declare const BorderColorButtonBorderBasicFocused = "#b0b0b0";
57
-
58
- export declare const BorderColorButtonBorderBasicHover = "#b0b0b0";
59
-
60
- export declare const BorderColorButtonBorderBasicPressed = "#b0b0b0";
61
-
62
- export declare const BorderColorButtonBorderPrimarylineDefault = "#0fd3d8";
63
-
64
- export declare const BorderColorButtonBorderPrimarylineFocused = "#11badd";
65
-
66
- export declare const BorderColorButtonBorderPrimarylineHover = "#11badd";
67
-
68
- export declare const BorderColorButtonBorderPrimarylinePressed = "#07a3c6";
69
-
70
- export declare const ButtonBorderButtonBasicDefaultColor = "#b0b0b0";
71
-
72
- export declare const ButtonBorderButtonBasicFocusedColor = "#b0b0b0";
73
-
74
- export declare const ButtonBorderButtonBasicHoverColor = "#b0b0b0";
75
-
76
- export declare const ButtonBorderButtonBasicPressedColor = "#b0b0b0";
77
-
78
- export declare const ButtonBorderButtonPrimarylineDefaultColor = "#0fd3d8";
79
-
80
- export declare const ButtonBorderButtonPrimarylineFocusedColor = "#11badd";
81
-
82
- export declare const ButtonBorderButtonPrimarylineHoverColor = "#11badd";
83
-
84
- export declare const ButtonBorderButtonPrimarylinePressedColor = "#07a3c6";
85
-
86
4
  export declare const ColorAqua100 = "#c8fdff";
87
5
 
88
6
  export declare const ColorAqua200 = "#98f4f6";
@@ -105,6 +23,8 @@ export declare const ColorAqua800 = "#00759a";
105
23
 
106
24
  export declare const ColorAqua900 = "#006180";
107
25
 
26
+ export declare const ColorBlack = "#000000";
27
+
108
28
  export declare const ColorBlue100 = "#d8f0ff";
109
29
 
110
30
  export declare const ColorBlue200 = "#b2ddff";
@@ -145,8 +65,6 @@ export declare const ColorGrape800 = "#9c36b5";
145
65
 
146
66
  export declare const ColorGrape900 = "#862e9c";
147
67
 
148
- export declare const ColorGray0 = "#ffffff";
149
-
150
68
  export declare const ColorGray100 = "#e7e7e7";
151
69
 
152
70
  export declare const ColorGray1000 = "#000000";
@@ -255,6 +173,11 @@ export declare const ColorRed900 = "#ab1313";
255
173
 
256
174
  export declare const colors: IColorPaletteType;
257
175
 
176
+ /**
177
+ * Do not edit directly, this file was auto-generated.
178
+ */
179
+ export declare const ColorWhite = "#ffffff";
180
+
258
181
  export declare const ColorYellow100 = "#ffff9f";
259
182
 
260
183
  export declare const ColorYellow200 = "#fdff78";
@@ -275,6 +198,9 @@ export declare const ColorYellow800 = "#f08c00";
275
198
 
276
199
  export declare const ColorYellow900 = "#e27500";
277
200
 
201
+ /** 내부 Date 값 → 입력창 표시 문자열 */
202
+ export declare const formatDateDisplay: (value: Date | Date[] | [Date | null, Date | null] | null | undefined, type: TDateDisplayType, format: string) => string;
203
+
278
204
  export declare const getColorShades: (colorName: TColorName) => IColorShades;
279
205
 
280
206
  export declare const getColorValue: (colorName: TColorName, shade: string) => string | undefined;
@@ -626,50 +552,8 @@ export declare function IllustrationYesSpike({ size, ...props }: IIllustrationPr
626
552
 
627
553
  export declare function IllustrationYoutube({ size, ...props }: IIllustrationProps): JSX.Element;
628
554
 
629
- export declare const SemanticColorBgDisabled = "#b0b0b0";
630
-
631
- export declare const SemanticColorBgWhite = "#ffffff";
632
-
633
- export declare const SemanticColorBgWhiteFocused = "#e7e7e7";
634
-
635
- export declare const SemanticColorBgWhiteHover = "#e7e7e7";
636
-
637
- export declare const SemanticColorBgWhitePressed = "#cdcdcd";
638
-
639
- export declare const SemanticColorBorderLightgray01 = "#b0b0b0";
640
-
641
- /**
642
- * Do not edit directly, this file was auto-generated.
643
- */
644
- export declare const SemanticColorPrimary = "#0fd3d8";
645
-
646
- export declare const SemanticColorPrimaryFocused = "#11badd";
647
-
648
- export declare const SemanticColorPrimaryHover = "#11badd";
649
-
650
- export declare const SemanticColorPrimaryPressed = "#07a3c6";
651
-
652
- export declare const SemanticColorSetting = "#9b9b9b";
653
-
654
- export declare const SemanticColorSettingFocused = "#808080";
655
-
656
- export declare const SemanticColorSettingHover = "#808080";
657
-
658
- export declare const SemanticColorSettingPressed = "#666666";
659
-
660
- export declare const SemanticColorTextDarkgray03 = "#4a4a4a";
661
-
662
- export declare const SemanticColorTextDisabled = "#ffffff";
663
-
664
- export declare const SemanticColorTextWhite = "#ffffff";
665
-
666
- export declare const SemanticColorWarning = "#fa5252";
667
-
668
- export declare const SemanticColorWarningFocused = "#e03131";
669
-
670
- export declare const SemanticColorWarningHover = "#e03131";
671
-
672
- export declare const SemanticColorWarningPressed = "#c92a2a";
555
+ /** 문자열 value 내부 Date 변환 (value prop 수신 시) */
556
+ export declare const parseDateValue: (value: string | null | string[] | [string | null, string | null] | undefined, type: TDateDisplayType, format: string) => Date | null | Date[] | [Date | null, Date | null];
673
557
 
674
558
  export declare const ShadowDashboardCardColor = "#0000000a";
675
559
 
@@ -677,54 +561,9 @@ export declare type TColorName = keyof typeof colors;
677
561
 
678
562
  export declare type TColorShade<T extends TColorName> = keyof (typeof colors)[T];
679
563
 
680
- export declare const TextColorButtonTextBasicDefault = "#4a4a4a";
681
-
682
- export declare const TextColorButtonTextBasicDisabled = "#ffffff";
683
-
684
- export declare const TextColorButtonTextBasicFocused = "#4a4a4a";
685
-
686
- export declare const TextColorButtonTextBasicHover = "#4a4a4a";
687
-
688
- export declare const TextColorButtonTextBasicPressed = "#4a4a4a";
689
-
690
- export declare const TextColorButtonTextPrimaryDefault = "#ffffff";
691
-
692
- export declare const TextColorButtonTextPrimaryDisabled = "#ffffff";
693
-
694
- export declare const TextColorButtonTextPrimaryFocused = "#ffffff";
695
-
696
- export declare const TextColorButtonTextPrimaryHover = "#ffffff";
697
-
698
- export declare const TextColorButtonTextPrimarylineDefault = "#0fd3d8";
699
-
700
- export declare const TextColorButtonTextPrimarylineDisabled = "#ffffff";
701
-
702
- export declare const TextColorButtonTextPrimarylineFocused = "#11badd";
703
-
704
- export declare const TextColorButtonTextPrimarylineHover = "#11badd";
705
-
706
- export declare const TextColorButtonTextPrimarylinePressed = "#07a3c6";
707
-
708
- export declare const TextColorButtonTextPrimaryPressed = "#ffffff";
709
-
710
- export declare const TextColorButtonTextSettingDefault = "#ffffff";
711
-
712
- export declare const TextColorButtonTextSettingDisabled = "#ffffff";
713
-
714
- export declare const TextColorButtonTextSettingFocused = "#ffffff";
715
-
716
- export declare const TextColorButtonTextSettingHover = "#ffffff";
717
-
718
- export declare const TextColorButtonTextSettingPressed = "#ffffff";
719
-
720
- export declare const TextColorButtonTextWarningDefault = "#ffffff";
721
-
722
- export declare const TextColorButtonTextWarningDisabled = "#ffffff";
723
-
724
- export declare const TextColorButtonTextWarningFocused = "#ffffff";
725
-
726
- export declare const TextColorButtonTextWarningHover = "#ffffff";
564
+ export declare type TDateDisplayType = 'default' | 'multiple' | 'range';
727
565
 
728
- export declare const TextColorButtonTextWarningPressed = "#ffffff";
566
+ /** 내부 Date onChange 출력 문자열 */
567
+ export declare const toValueString: (value: Date | Date[] | [Date | null, Date | null] | null | undefined, type: TDateDisplayType, format: string) => string | null | string[] | [string | null, string | null];
729
568
 
730
569
  export { }