@telepix-lab/telepix-ui 0.0.1

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.
Files changed (81) hide show
  1. package/README.md +74 -0
  2. package/dist/cjs/button/index.d.ts +25 -0
  3. package/dist/cjs/button/styles.d.ts +95 -0
  4. package/dist/cjs/card/index.d.ts +27 -0
  5. package/dist/cjs/card/styles.d.ts +29 -0
  6. package/dist/cjs/checkbox/index.d.ts +24 -0
  7. package/dist/cjs/checkbox/styles.d.ts +43 -0
  8. package/dist/cjs/dialog/index.d.ts +34 -0
  9. package/dist/cjs/dialog/styles.d.ts +23 -0
  10. package/dist/cjs/horizontal-tab/index.d.ts +16 -0
  11. package/dist/cjs/horizontal-tab/styles.d.ts +74 -0
  12. package/dist/cjs/index.d.ts +37 -0
  13. package/dist/cjs/index.js +11067 -0
  14. package/dist/cjs/index.js.map +1 -0
  15. package/dist/cjs/input/index.d.ts +28 -0
  16. package/dist/cjs/input/styles.d.ts +75 -0
  17. package/dist/cjs/mode-tab/index.d.ts +14 -0
  18. package/dist/cjs/mode-tab/styles.d.ts +49 -0
  19. package/dist/cjs/radio-group/index.d.ts +32 -0
  20. package/dist/cjs/radio-group/styles.d.ts +47 -0
  21. package/dist/cjs/select/index.d.ts +61 -0
  22. package/dist/cjs/select/styles.d.ts +107 -0
  23. package/dist/cjs/styles/common.d.ts +7 -0
  24. package/dist/cjs/styles/layout.stylex.d.ts +19 -0
  25. package/dist/cjs/styles/primitiveColors.stylex.d.ts +175 -0
  26. package/dist/cjs/styles/semanticColors.stylex.d.ts +50 -0
  27. package/dist/cjs/styles/shadow.stylex.d.ts +11 -0
  28. package/dist/cjs/styles/transitions.stylex.d.ts +6 -0
  29. package/dist/cjs/styles/typography.stylex.d.ts +43 -0
  30. package/dist/cjs/styles.css +1265 -0
  31. package/dist/cjs/tag/index.d.ts +32 -0
  32. package/dist/cjs/tag/styles.d.ts +82 -0
  33. package/dist/cjs/text/index.d.ts +31 -0
  34. package/dist/cjs/text/styles.d.ts +290 -0
  35. package/dist/cjs/textarea/index.d.ts +20 -0
  36. package/dist/cjs/textarea/styles.d.ts +30 -0
  37. package/dist/cjs/tooltip/index.d.ts +20 -0
  38. package/dist/cjs/tooltip/styles.d.ts +59 -0
  39. package/dist/cjs/vertical-menu/index.d.ts +17 -0
  40. package/dist/cjs/vertical-menu/styles.d.ts +84 -0
  41. package/dist/esm/button/index.d.ts +25 -0
  42. package/dist/esm/button/styles.d.ts +95 -0
  43. package/dist/esm/card/index.d.ts +27 -0
  44. package/dist/esm/card/styles.d.ts +29 -0
  45. package/dist/esm/checkbox/index.d.ts +24 -0
  46. package/dist/esm/checkbox/styles.d.ts +43 -0
  47. package/dist/esm/dialog/index.d.ts +34 -0
  48. package/dist/esm/dialog/styles.d.ts +23 -0
  49. package/dist/esm/horizontal-tab/index.d.ts +16 -0
  50. package/dist/esm/horizontal-tab/styles.d.ts +74 -0
  51. package/dist/esm/index.d.ts +37 -0
  52. package/dist/esm/index.js +10954 -0
  53. package/dist/esm/index.js.map +1 -0
  54. package/dist/esm/input/index.d.ts +28 -0
  55. package/dist/esm/input/styles.d.ts +75 -0
  56. package/dist/esm/mode-tab/index.d.ts +14 -0
  57. package/dist/esm/mode-tab/styles.d.ts +49 -0
  58. package/dist/esm/radio-group/index.d.ts +32 -0
  59. package/dist/esm/radio-group/styles.d.ts +47 -0
  60. package/dist/esm/select/index.d.ts +61 -0
  61. package/dist/esm/select/styles.d.ts +107 -0
  62. package/dist/esm/styles/common.d.ts +7 -0
  63. package/dist/esm/styles/layout.stylex.d.ts +19 -0
  64. package/dist/esm/styles/primitiveColors.stylex.d.ts +175 -0
  65. package/dist/esm/styles/semanticColors.stylex.d.ts +50 -0
  66. package/dist/esm/styles/shadow.stylex.d.ts +11 -0
  67. package/dist/esm/styles/transitions.stylex.d.ts +6 -0
  68. package/dist/esm/styles/typography.stylex.d.ts +43 -0
  69. package/dist/esm/styles.css +1265 -0
  70. package/dist/esm/tag/index.d.ts +32 -0
  71. package/dist/esm/tag/styles.d.ts +82 -0
  72. package/dist/esm/text/index.d.ts +31 -0
  73. package/dist/esm/text/styles.d.ts +290 -0
  74. package/dist/esm/textarea/index.d.ts +20 -0
  75. package/dist/esm/textarea/styles.d.ts +30 -0
  76. package/dist/esm/tooltip/index.d.ts +20 -0
  77. package/dist/esm/tooltip/styles.d.ts +59 -0
  78. package/dist/esm/vertical-menu/index.d.ts +17 -0
  79. package/dist/esm/vertical-menu/styles.d.ts +84 -0
  80. package/dist/index.d.ts +1762 -0
  81. package/package.json +115 -0
@@ -0,0 +1,28 @@
1
+ import React, { ReactNode } from "react";
2
+ import { InputWrapperSizeStyles } from "./styles";
3
+ export interface InputProps extends React.DetailedHTMLProps<Omit<React.InputHTMLAttributes<HTMLInputElement>, "size">, HTMLInputElement> {
4
+ size?: InputWrapperSizeStyles;
5
+ leftIcon?: ReactNode;
6
+ rightIcon?: ReactNode;
7
+ wrapperClassName?: string;
8
+ }
9
+ /**
10
+ * 다양한 크기와 아이콘을 지원하는 입력 필드 컴포넌트입니다.<br/>
11
+ * 사용자는 크기(size), 왼쪽 아이콘(leftIcon), 오른쪽 아이콘(rightIcon) 등을 지정할 수 있습니다.<br/>
12
+ * 기본적으로 regular 크기를 가지며, large 크기도 선택할 수 있습니다.<br/>
13
+ * input의 너비는 부모 요소에 따라 결정됩니다.<br/>
14
+ * input 자체의 클래스는 `className` 속성을 통해 추가할 수 있습니다.<br/>
15
+ * wrapperClassName을 통해 input을 감싸는 div의 클래스도 추가할 수 있습니다.<br/>
16
+ * <br/>
17
+ * ### 사용 예시
18
+ * ```tsx
19
+ * <Input
20
+ * size="large"
21
+ * leftIcon={<SearchIcon />}
22
+ * rightIcon={<ClearIcon />}
23
+ * placeholder="Search..."
24
+ * className="custom-input"
25
+ * />
26
+ * ```
27
+ */
28
+ export declare const Input: React.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
@@ -0,0 +1,75 @@
1
+ export declare const inputWrapperStyles: Readonly<{
2
+ readonly base: Readonly<{
3
+ readonly display: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"display", "flex">;
4
+ readonly alignItems: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"alignItems", "center">;
5
+ readonly justifyContent: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"justifyContent", "center">;
6
+ readonly borderRadius: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"borderRadius", string>;
7
+ readonly backgroundColor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"backgroundColor", string>;
8
+ readonly border: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"border", `1px solid ${import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>}`>;
9
+ }>;
10
+ }>;
11
+ export declare const inputWrapperSizeStyles: Readonly<{
12
+ readonly regular: Readonly<{
13
+ readonly padding: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"padding", "6px 8px">;
14
+ readonly fontSize: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontSize", string>;
15
+ readonly lineHeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"lineHeight", string>;
16
+ readonly fontWeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontWeight", string>;
17
+ readonly gap: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"gap", "8px">;
18
+ }>;
19
+ readonly large: Readonly<{
20
+ readonly padding: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"padding", "11px 16px">;
21
+ readonly fontSize: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontSize", string>;
22
+ readonly lineHeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"lineHeight", string>;
23
+ readonly fontWeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontWeight", string>;
24
+ readonly gap: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"gap", "12px">;
25
+ }>;
26
+ }>;
27
+ export declare const inputStyles: Readonly<{
28
+ readonly base: Readonly<{
29
+ readonly border: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"border", "none">;
30
+ readonly outline: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"outline", "none">;
31
+ readonly padding: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"padding", 0>;
32
+ readonly flex: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"flex", 1>;
33
+ readonly backgroundColor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"backgroundColor", "transparent">;
34
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"color", string>;
35
+ readonly "::placeholder": import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"::placeholder", {
36
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>;
37
+ }>;
38
+ readonly ":hover": import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<":hover", {
39
+ readonly "::placeholder": {
40
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>;
41
+ };
42
+ }>;
43
+ readonly ":focus": import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<":focus", {
44
+ readonly "::placeholder": {
45
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>;
46
+ };
47
+ }>;
48
+ readonly ":disabled": import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<":disabled", {
49
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>;
50
+ readonly "::placeholder": {
51
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>;
52
+ };
53
+ }>;
54
+ }>;
55
+ readonly regular: Readonly<{
56
+ readonly fontSize: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontSize", string>;
57
+ readonly lineHeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"lineHeight", string>;
58
+ readonly fontWeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontWeight", string>;
59
+ }>;
60
+ readonly large: Readonly<{
61
+ readonly fontSize: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontSize", string>;
62
+ readonly lineHeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"lineHeight", string>;
63
+ readonly fontWeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontWeight", string>;
64
+ }>;
65
+ }>;
66
+ /**
67
+ *
68
+ *
69
+ ":hover": semanticColors.compMonoSubtleHovered,
70
+ ":focused": semanticColors.compMonoSubtleSelected,
71
+ ":disabled": semanticColors.compDisabled,
72
+ */
73
+ export type InputWrapperStyles = keyof typeof inputWrapperStyles;
74
+ export type InputStyles = keyof typeof inputStyles;
75
+ export type InputWrapperSizeStyles = keyof typeof inputWrapperSizeStyles;
@@ -0,0 +1,14 @@
1
+ import React from "react";
2
+ interface ModeTabsProps extends React.HTMLAttributes<HTMLDivElement> {
3
+ disabled?: boolean;
4
+ value?: string;
5
+ onValueChange?: (value: string) => void;
6
+ }
7
+ export declare const ModeTabs: React.ForwardRefExoticComponent<ModeTabsProps & React.RefAttributes<HTMLDivElement>>;
8
+ interface ModeTabProps extends React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> {
9
+ value: string;
10
+ label?: string;
11
+ icon?: React.ReactNode;
12
+ }
13
+ export declare const ModeTab: React.ForwardRefExoticComponent<Omit<ModeTabProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
14
+ export {};
@@ -0,0 +1,49 @@
1
+ export declare const modeTabWrapperStyles: Readonly<{
2
+ readonly base: Readonly<{
3
+ readonly display: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"display", "flex">;
4
+ readonly alignItems: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"alignItems", "center">;
5
+ readonly width: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"width", "100%">;
6
+ readonly backgroundColor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"backgroundColor", string>;
7
+ readonly borderRadius: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"borderRadius", "8px">;
8
+ readonly padding: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"padding", "4px">;
9
+ }>;
10
+ }>;
11
+ export declare const modeTabStyles: Readonly<{
12
+ readonly base: Readonly<{
13
+ readonly padding: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"padding", "4px 8px">;
14
+ readonly display: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"display", "flex">;
15
+ readonly alignItems: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"alignItems", "center">;
16
+ readonly justifyContent: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"justifyContent", "center">;
17
+ readonly gap: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"gap", "10px">;
18
+ readonly flex: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"flex", "1">;
19
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"color", string>;
20
+ readonly fontSize: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontSize", string>;
21
+ readonly lineHeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"lineHeight", string>;
22
+ readonly fontWeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontWeight", string>;
23
+ readonly cursor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"cursor", "pointer">;
24
+ readonly backgroundColor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"backgroundColor", string>;
25
+ readonly border: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"border", "none">;
26
+ readonly borderRadius: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"borderRadius", "4px">;
27
+ readonly ":hover:not(:is([data-selected='true'])):not(:disabled)": import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<":hover:not(:is([data-selected='true'])):not(:disabled)", {
28
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>;
29
+ }>;
30
+ readonly ":active:not(:disabled)": import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<":active:not(:disabled)", {
31
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>;
32
+ }>;
33
+ readonly ":is([data-selected='true'])": import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<":is([data-selected='true'])", {
34
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>;
35
+ readonly backgroundColor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>;
36
+ }>;
37
+ readonly ":disabled": import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<":disabled", {
38
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>;
39
+ readonly cursor: "not-allowed";
40
+ }>;
41
+ }>;
42
+ readonly icon: Readonly<{
43
+ readonly display: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"display", "flex">;
44
+ readonly alignItems: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"alignItems", "center">;
45
+ readonly justifyContent: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"justifyContent", "center">;
46
+ readonly width: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"width", "20px">;
47
+ readonly height: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"height", "20px">;
48
+ }>;
49
+ }>;
@@ -0,0 +1,32 @@
1
+ import React from "react";
2
+ import { RadioGroup as RadioGroupRadix } from "radix-ui";
3
+ interface RadioGroupProps extends RadioGroupRadix.RadioGroupProps {
4
+ className?: string;
5
+ orientation?: "horizontal" | "vertical";
6
+ }
7
+ /**
8
+ * 라디오 버튼 그룹을 생성하는 컴포넌트입니다.<br/>
9
+ * orientation prop을 통해 수평 또는 수직 방향으로 배치할 수 있습니다.<br/>
10
+ * value prop을 통해 현재 선택된 라디오 버튼의 값을 관리합니다.<br/>
11
+ * disabled prop을 통해 그룹 전체를 비활성화할 수 있습니다.<br/>
12
+ * 또는 개별 RadioItem 컴포넌트에 disabled prop을 설정하여 특정 라디오 버튼을 비활성화할 수 있습니다.<br/>
13
+ * RadioItem 컴포넌트를 자식으로 받아 라디오 버튼을 구성합니다.<br/>
14
+ * <br/>
15
+ * ### 사용 예시
16
+ * ```tsx
17
+ * <RadioGroup value={selectedValue} onValueChange={setSelectedValue}>
18
+ * <RadioItem value="option1" label="Option 1" />
19
+ * <RadioItem value="option2" label="Option 2" />
20
+ * <RadioItem value="option3" label="Option 3" />
21
+ * </RadioGroup>
22
+ * ```
23
+ */
24
+ export declare const RadioGroup: React.ForwardRefExoticComponent<RadioGroupProps & React.RefAttributes<HTMLDivElement>>;
25
+ interface RadioItemProps extends RadioGroupRadix.RadioGroupItemProps {
26
+ label?: string;
27
+ labelClassName?: string;
28
+ wrapperClassName?: string;
29
+ className?: string;
30
+ }
31
+ export declare const RadioItem: React.ForwardRefExoticComponent<RadioItemProps & React.RefAttributes<HTMLButtonElement>>;
32
+ export {};
@@ -0,0 +1,47 @@
1
+ export declare const radioGroupStyles: Readonly<{
2
+ readonly base: Readonly<{
3
+ readonly display: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"display", "flex">;
4
+ readonly flexDirection: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"flexDirection", "column">;
5
+ readonly gap: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"gap", "12px">;
6
+ }>;
7
+ readonly horizontal: Readonly<{
8
+ readonly flexDirection: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"flexDirection", "row">;
9
+ }>;
10
+ }>;
11
+ export declare const radioItemWrapperStyles: Readonly<{
12
+ readonly base: Readonly<{
13
+ readonly display: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"display", "flex">;
14
+ readonly alignItems: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"alignItems", "center">;
15
+ readonly gap: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"gap", "6px">;
16
+ readonly cursor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"cursor", "pointer">;
17
+ readonly backgroundColor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"backgroundColor", string>;
18
+ readonly border: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"border", "none">;
19
+ }>;
20
+ }>;
21
+ export declare const radioItemStyles: Readonly<{
22
+ readonly base: Readonly<{
23
+ readonly backgroundColor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"backgroundColor", string>;
24
+ readonly border: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"border", "none">;
25
+ readonly padding: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"padding", "0">;
26
+ readonly display: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"display", "flex">;
27
+ readonly alignItems: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"alignItems", "center">;
28
+ readonly justifyContent: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"justifyContent", "center">;
29
+ readonly cursor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"cursor", "pointer">;
30
+ }>;
31
+ }>;
32
+ export declare const radioItemLabelStyles: Readonly<{
33
+ readonly base: Readonly<{
34
+ readonly fontSize: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontSize", string>;
35
+ readonly lineHeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"lineHeight", string>;
36
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"color", string>;
37
+ readonly fontWeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontWeight", string>;
38
+ readonly cursor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"cursor", "pointer">;
39
+ }>;
40
+ readonly disabled: Readonly<{
41
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"color", string>;
42
+ readonly cursor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"cursor", "default">;
43
+ }>;
44
+ readonly selected: Readonly<{
45
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"color", string>;
46
+ }>;
47
+ }>;
@@ -0,0 +1,61 @@
1
+ import React from "react";
2
+ import { Select as SelectRadix } from "radix-ui";
3
+ import { SelectTriggerSizeStyles, SelectTriggerVariantStyles } from "./styles";
4
+ /**
5
+ * Select 컴포넌트는 드롭다운 선택 상자를 생성하는 데 사용됩니다.<br/>
6
+ * 이 컴포넌트는 Radix UI의 Select 컴포넌트를 래핑하여 사용합니다.<br/>
7
+ * SelectTrigger는 드롭다운을 여는 트리거 버튼 역할을 하며, SelectContent는 드롭다운의 실제 콘텐츠를 렌더링합니다.<br/>
8
+ * SelectGroup, SelectLabel, SelectSeparator는 드롭다운의 그룹화 및 레이블링을 지원합니다.<br/>
9
+ * SelectItem은 드롭다운에서 선택 가능한 항목을 나타냅니다.<br/>
10
+ * 이 컴포넌트는 드롭다운 선택 상자를 쉽게 구현할 수 있도록 도와줍니다.<br/>
11
+ * <br/>
12
+ * ### 사용 예시
13
+ * ```tsx
14
+ * <Select>
15
+ * <SelectTrigger placeholder="Select an option" />
16
+ * <SelectContent>
17
+ * <SelectItem value="option1">Option 1</SelectItem>
18
+ * <SelectItem value="option2">Option 2</SelectItem>
19
+ * <SelectItem value="option3">Option 3</SelectItem>
20
+ * </SelectContent>
21
+ * </Select>
22
+ */
23
+ export declare const Select: {
24
+ (props: React.ComponentProps<typeof SelectRadix.Root>): import("react/jsx-runtime").JSX.Element;
25
+ displayName: string;
26
+ };
27
+ interface SelectTrigger extends React.ComponentProps<typeof SelectRadix.Trigger> {
28
+ placeholder?: string;
29
+ variant?: SelectTriggerVariantStyles;
30
+ size?: SelectTriggerSizeStyles;
31
+ icon?: React.ReactNode;
32
+ }
33
+ export declare const SelectTrigger: {
34
+ ({ placeholder, variant, size, icon, ...rest }: SelectTrigger): import("react/jsx-runtime").JSX.Element;
35
+ displayName: string;
36
+ };
37
+ interface SelectContent extends React.ComponentProps<typeof SelectRadix.Content> {
38
+ children: React.ReactNode;
39
+ }
40
+ export declare const SelectContent: {
41
+ ({ children, ...rest }: SelectContent): import("react/jsx-runtime").JSX.Element;
42
+ displayName: string;
43
+ };
44
+ export declare const SelectGroup: React.ForwardRefExoticComponent<SelectRadix.SelectGroupProps & React.RefAttributes<HTMLDivElement>>;
45
+ export declare const SelectLabel: {
46
+ (props: React.ComponentProps<typeof SelectRadix.Label>): import("react/jsx-runtime").JSX.Element;
47
+ displayName: string;
48
+ };
49
+ export declare const SelectSeparator: {
50
+ (props: React.ComponentProps<typeof SelectRadix.Separator>): import("react/jsx-runtime").JSX.Element;
51
+ displayName: string;
52
+ };
53
+ interface SelectItem extends React.ComponentProps<typeof SelectRadix.Item> {
54
+ label: string;
55
+ indicator?: React.ReactNode;
56
+ }
57
+ export declare const SelectItem: {
58
+ ({ label, indicator, ...rest }: SelectItem): import("react/jsx-runtime").JSX.Element;
59
+ displayName: string;
60
+ };
61
+ export {};
@@ -0,0 +1,107 @@
1
+ export declare const selectIconWrapperStyles: Readonly<{
2
+ readonly base: Readonly<{
3
+ readonly display: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"display", "flex">;
4
+ readonly alignItems: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"alignItems", "center">;
5
+ readonly justifyContent: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"justifyContent", "center">;
6
+ }>;
7
+ }>;
8
+ export declare const selectTriggerStyles: Readonly<{
9
+ readonly base: Readonly<{
10
+ readonly display: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"display", "flex">;
11
+ readonly alignItems: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"alignItems", "center">;
12
+ readonly justifyContent: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"justifyContent", "space-between">;
13
+ readonly width: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"width", "100%">;
14
+ readonly backgroundColor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"backgroundColor", string>;
15
+ readonly outline: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"outline", "none">;
16
+ readonly cursor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"cursor", "pointer">;
17
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"color", string>;
18
+ }>;
19
+ readonly outline: Readonly<{
20
+ readonly border: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"border", "none" | `1px solid ${import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>}`>;
21
+ readonly borderRadius: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"borderRadius", "4px">;
22
+ readonly padding: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"padding", "0 8px">;
23
+ }>;
24
+ readonly ghost: Readonly<{
25
+ readonly border: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"border", "none">;
26
+ readonly padding: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"padding", "0 8px">;
27
+ readonly ":has(button:has([data-placeholder]))": import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<":has(button:has([data-placeholder]))", {
28
+ readonly borderColor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>;
29
+ }>;
30
+ }>;
31
+ readonly regular: Readonly<{
32
+ readonly padding: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"padding", "6px 8px">;
33
+ readonly fontSize: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontSize", string>;
34
+ readonly fontWeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontWeight", string>;
35
+ readonly lineHeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"lineHeight", string>;
36
+ readonly gap: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"gap", "8px">;
37
+ }>;
38
+ readonly large: Readonly<{
39
+ readonly padding: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"padding", "12px 16px">;
40
+ readonly fontSize: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontSize", string>;
41
+ readonly fontWeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontWeight", string>;
42
+ readonly lineHeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"lineHeight", string>;
43
+ readonly gap: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"gap", "12px">;
44
+ }>;
45
+ }>;
46
+ export type SelectTriggerVariantStyles = Extract<keyof typeof selectTriggerStyles, "outline" | "ghost">;
47
+ export type SelectTriggerSizeStyles = Extract<keyof typeof selectTriggerStyles, "regular" | "large">;
48
+ export declare const selectContentStyles: Readonly<{
49
+ readonly base: Readonly<{
50
+ readonly padding: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"padding", "8px">;
51
+ readonly minWidth: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"minWidth", "var(--radix-select-trigger-width)">;
52
+ readonly border: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"border", `1px solid ${import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>}`>;
53
+ readonly borderRadius: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"borderRadius", string>;
54
+ readonly backgroundColor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"backgroundColor", string>;
55
+ readonly boxShadow: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"boxShadow", string>;
56
+ }>;
57
+ }>;
58
+ export declare const selectItemStyles: Readonly<{
59
+ readonly base: Readonly<{
60
+ readonly display: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"display", "flex">;
61
+ readonly alignItems: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"alignItems", "center">;
62
+ readonly justifyContent: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"justifyContent", "space-between">;
63
+ readonly gap: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"gap", "8px">;
64
+ readonly padding: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"padding", "6px 8px">;
65
+ readonly cursor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"cursor", "pointer">;
66
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"color", string>;
67
+ readonly fontSize: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontSize", string>;
68
+ readonly fontWeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontWeight", string>;
69
+ readonly lineHeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"lineHeight", string>;
70
+ readonly outline: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"outline", "none">;
71
+ readonly borderRadius: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"borderRadius", string>;
72
+ readonly ":hover:not(:is([data-disabled]))": import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<":hover:not(:is([data-disabled]))", {
73
+ readonly backgroundColor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>;
74
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>;
75
+ }>;
76
+ readonly ":is([data-disabled])": import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<":is([data-disabled])", {
77
+ readonly cursor: "not-allowed";
78
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>;
79
+ }>;
80
+ readonly ":is([data-state='checked'])": import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<":is([data-state='checked'])", {
81
+ readonly backgroundColor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>;
82
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXVar<string>;
83
+ }>;
84
+ }>;
85
+ readonly indicator: Readonly<{
86
+ readonly width: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"width", "16px">;
87
+ readonly display: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"display", "flex">;
88
+ readonly alignItems: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"alignItems", "center">;
89
+ readonly justifyContent: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"justifyContent", "center">;
90
+ }>;
91
+ }>;
92
+ export declare const selectSeparatorStyles: Readonly<{
93
+ readonly base: Readonly<{
94
+ readonly height: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"height", "1px">;
95
+ readonly backgroundColor: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"backgroundColor", string>;
96
+ readonly margin: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"margin", "5px 0">;
97
+ }>;
98
+ }>;
99
+ export declare const selectGroupLabelStyles: Readonly<{
100
+ readonly base: Readonly<{
101
+ readonly padding: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"padding", "6px 8px">;
102
+ readonly color: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"color", string>;
103
+ readonly fontSize: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontSize", string>;
104
+ readonly fontWeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"fontWeight", string>;
105
+ readonly lineHeight: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"lineHeight", string>;
106
+ }>;
107
+ }>;
@@ -0,0 +1,7 @@
1
+ export declare const commonStyles: Readonly<{
2
+ readonly flexCenter: Readonly<{
3
+ readonly display: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"display", "flex">;
4
+ readonly alignItems: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"alignItems", "center">;
5
+ readonly justifyContent: import("node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes").StyleXClassNameFor<"justifyContent", "center">;
6
+ }>;
7
+ }>;
@@ -0,0 +1,19 @@
1
+ import * as stylex from "@stylexjs/stylex";
2
+ export declare const spacing: stylex.VarGroup<Readonly<{
3
+ xs: string;
4
+ sm: string;
5
+ md: string;
6
+ lg: string;
7
+ xl: string;
8
+ xxl: string;
9
+ xxxl: string;
10
+ }>, symbol>;
11
+ export declare const borderRadius: stylex.VarGroup<Readonly<{
12
+ none: string;
13
+ xs: string;
14
+ sm: string;
15
+ md: string;
16
+ lg: string;
17
+ xl: string;
18
+ full: string;
19
+ }>, symbol>;
@@ -0,0 +1,175 @@
1
+ import * as stylex from "@stylexjs/stylex";
2
+ export declare const primitiveColors: stylex.VarGroup<Readonly<{
3
+ blue100: string;
4
+ blue200: string;
5
+ blue300: string;
6
+ blue400: string;
7
+ blue500: string;
8
+ blue600: string;
9
+ blue700: string;
10
+ blue800: string;
11
+ blue900: string;
12
+ cyan100: string;
13
+ cyan200: string;
14
+ cyan300: string;
15
+ cyan400: string;
16
+ cyan500: string;
17
+ cyan600: string;
18
+ cyan700: string;
19
+ cyan800: string;
20
+ cyan900: string;
21
+ darkOpacity100: string;
22
+ darkOpacity150: string;
23
+ darkOpacity200: string;
24
+ darkOpacity25: string;
25
+ darkOpacity250: string;
26
+ darkOpacity300: string;
27
+ darkOpacity350: string;
28
+ darkOpacity400: string;
29
+ darkOpacity450: string;
30
+ darkOpacity50: string;
31
+ darkOpacity500: string;
32
+ darkOpacity550: string;
33
+ darkOpacity600: string;
34
+ darkOpacity650: string;
35
+ darkOpacity700: string;
36
+ darkOpacity750: string;
37
+ darkOpacity800: string;
38
+ darkOpacity850: string;
39
+ darkOpacity900: string;
40
+ green100: string;
41
+ green200: string;
42
+ green300: string;
43
+ green400: string;
44
+ green500: string;
45
+ green600: string;
46
+ green700: string;
47
+ green800: string;
48
+ green900: string;
49
+ lightOpacity100: string;
50
+ lightOpacity150: string;
51
+ lightOpacity200: string;
52
+ lightOpacity25: string;
53
+ lightOpacity250: string;
54
+ lightOpacity300: string;
55
+ lightOpacity350: string;
56
+ lightOpacity400: string;
57
+ lightOpacity450: string;
58
+ lightOpacity50: string;
59
+ lightOpacity500: string;
60
+ lightOpacity550: string;
61
+ lightOpacity600: string;
62
+ lightOpacity650: string;
63
+ lightOpacity700: string;
64
+ lightOpacity750: string;
65
+ lightOpacity800: string;
66
+ lightOpacity850: string;
67
+ lightOpacity900: string;
68
+ magenta100: string;
69
+ magenta200: string;
70
+ magenta300: string;
71
+ magenta400: string;
72
+ magenta500: string;
73
+ magenta600: string;
74
+ magenta700: string;
75
+ magenta800: string;
76
+ magenta900: string;
77
+ neutral100: string;
78
+ neutral150: string;
79
+ neutral200: string;
80
+ neutral25: string;
81
+ neutral250: string;
82
+ neutral300: string;
83
+ neutral350: string;
84
+ neutral400: string;
85
+ neutral450: string;
86
+ neutral50: string;
87
+ neutral500: string;
88
+ neutral550: string;
89
+ neutral600: string;
90
+ neutral650: string;
91
+ neutral700: string;
92
+ neutral750: string;
93
+ neutral800: string;
94
+ neutral850: string;
95
+ neutral900: string;
96
+ neutral950: string;
97
+ orange100: string;
98
+ orange200: string;
99
+ orange300: string;
100
+ orange400: string;
101
+ orange500: string;
102
+ orange600: string;
103
+ orange700: string;
104
+ orange800: string;
105
+ orange900: string;
106
+ pink100: string;
107
+ pink200: string;
108
+ pink300: string;
109
+ pink400: string;
110
+ pink500: string;
111
+ pink600: string;
112
+ pink700: string;
113
+ pink800: string;
114
+ pink900: string;
115
+ pureBlack: string;
116
+ pureBlack50: string;
117
+ pureBlack75: string;
118
+ pureTransparent: string;
119
+ pureWhite: string;
120
+ pureWhite50: string;
121
+ purple100: string;
122
+ purple200: string;
123
+ purple300: string;
124
+ purple400: string;
125
+ purple500: string;
126
+ purple600: string;
127
+ purple700: string;
128
+ purple800: string;
129
+ purple900: string;
130
+ red100: string;
131
+ red200: string;
132
+ red300: string;
133
+ red400: string;
134
+ red500: string;
135
+ red600: string;
136
+ red700: string;
137
+ red800: string;
138
+ red900: string;
139
+ teal100: string;
140
+ teal200: string;
141
+ teal300: string;
142
+ teal400: string;
143
+ teal500: string;
144
+ teal600: string;
145
+ teal700: string;
146
+ teal800: string;
147
+ teal900: string;
148
+ telepixRed100: string;
149
+ telepixRed200: string;
150
+ telepixRed300: string;
151
+ telepixRed400: string;
152
+ telepixRed500: string;
153
+ telepixRed600: string;
154
+ telepixRed700: string;
155
+ telepixRed800: string;
156
+ telepixRed900: string;
157
+ violet100: string;
158
+ violet200: string;
159
+ violet300: string;
160
+ violet400: string;
161
+ violet500: string;
162
+ violet600: string;
163
+ violet700: string;
164
+ violet800: string;
165
+ violet900: string;
166
+ yellow100: string;
167
+ yellow200: string;
168
+ yellow300: string;
169
+ yellow400: string;
170
+ yellow500: string;
171
+ yellow600: string;
172
+ yellow700: string;
173
+ yellow800: string;
174
+ yellow900: string;
175
+ }>, symbol>;