@lotte-innovate/ui-component-test 0.0.27 → 0.0.29

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. package/dist/lib/Typography/Header/index.d.ts +1 -1
  2. package/dist/lib/Typography/Text/index.d.ts +1 -1
  3. package/dist/lib/components/AlertDialog/AlertDialogAction.d.ts +2 -2
  4. package/dist/lib/components/AlertDialog/AlertDialogCancel.d.ts +2 -2
  5. package/dist/lib/components/AlertDialog/AlertDialogContent.d.ts +1 -1
  6. package/dist/lib/components/AlertDialog/AlertDialogTrigger.d.ts +2 -2
  7. package/dist/lib/components/Avatar/index.d.ts +1 -1
  8. package/dist/lib/components/Badge/index.d.ts +2 -2
  9. package/dist/lib/components/Button/index.d.ts +2 -2
  10. package/dist/lib/components/Callout/index.d.ts +1 -1
  11. package/dist/lib/components/Card/index.d.ts +2 -2
  12. package/dist/lib/components/Checkbox/index.d.ts +1 -1
  13. package/dist/lib/components/CheckboxCard/index.d.ts +1 -1
  14. package/dist/lib/components/ContextMenu/ContextMenuContent.d.ts +1 -1
  15. package/dist/lib/components/ContextMenu/ContextMenuItem.d.ts +1 -1
  16. package/dist/lib/components/ContextMenu/ContextMenuItemIndicator.d.ts +1 -1
  17. package/dist/lib/components/ContextMenu/ContextMenuSubContent.d.ts +1 -1
  18. package/dist/lib/components/DataList/DataListLabel.d.ts +1 -1
  19. package/dist/lib/components/DataList/DataListValue.d.ts +1 -1
  20. package/dist/lib/components/Dialog/DialogAction.d.ts +1 -1
  21. package/dist/lib/components/Dialog/DialogCancel.d.ts +1 -1
  22. package/dist/lib/components/Dialog/DialogContent.d.ts +1 -1
  23. package/dist/lib/components/DropdownMenu/DropdonMenuSubContent.d.ts +1 -1
  24. package/dist/lib/components/DropdownMenu/DropdownMenuContent.d.ts +1 -1
  25. package/dist/lib/components/DropdownMenu/DropdownMenuItem.d.ts +1 -1
  26. package/dist/lib/components/DropdownMenu/DropdownMenuItemIndicator.d.ts +1 -1
  27. package/dist/lib/components/DropdownMenu/DropdownMenuTrigger.d.ts +1 -1
  28. package/dist/lib/components/HoverCard/HoverCardContent.d.ts +2 -2
  29. package/dist/lib/components/IconButton/index.d.ts +1 -1
  30. package/dist/lib/components/Inset/index.d.ts +1 -1
  31. package/dist/lib/components/Label/index.d.ts +1 -1
  32. package/dist/lib/components/Menubar/MenubarContent.d.ts +1 -1
  33. package/dist/lib/components/Menubar/MenubarItem.d.ts +1 -1
  34. package/dist/lib/components/Menubar/MenubarItemIndicator.d.ts +1 -1
  35. package/dist/lib/components/Menubar/MenubarSubContent.d.ts +1 -1
  36. package/dist/lib/components/Menubar/MenubarTrigger.d.ts +1 -1
  37. package/dist/lib/components/Menubar/index.d.ts +1 -1
  38. package/dist/lib/components/NavigationMenu/NavigationMenuContent.d.ts +1 -1
  39. package/dist/lib/components/NavigationMenu/NavigationMenuLink.d.ts +1 -1
  40. package/dist/lib/components/NavigationMenu/NavigationMenuList.d.ts +1 -1
  41. package/dist/lib/components/NavigationMenu/NavigationMenuTrigger.d.ts +1 -1
  42. package/dist/lib/components/NavigationMenu/NavigationMenuViewport.d.ts +2 -2
  43. package/dist/lib/components/Popover/PopoverClose.d.ts +1 -1
  44. package/dist/lib/components/Popover/PopoverContent.d.ts +1 -1
  45. package/dist/lib/components/Progress/index.d.ts +1 -1
  46. package/dist/lib/components/RadioCards/RadioCardsItem.d.ts +1 -1
  47. package/dist/lib/components/Select/index.d.ts +1 -1
  48. package/dist/lib/components/Skeleton/index.d.ts +1 -1
  49. package/dist/lib/components/Slider/index.d.ts +1 -1
  50. package/dist/lib/components/Table/index.d.ts +1 -1
  51. package/dist/lib/components/Tabs/index.d.ts +1 -1
  52. package/dist/lib/components/TextArea/index.d.ts +1 -1
  53. package/dist/lib/components/TextField/index.d.ts +1 -1
  54. package/dist/lib/components/Toast/ToastActionButton.d.ts +1 -1
  55. package/dist/lib/components/Toast/index.d.ts +1 -1
  56. package/dist/lib/components/Toggle/ToggleWithText.d.ts +1 -1
  57. package/dist/lib/components/Toggle/index.d.ts +1 -1
  58. package/dist/lib/components/ToggleSwitch/index.d.ts +1 -1
  59. package/dist/lib/components/Tooltip/index.d.ts +3 -3
  60. package/dist/tailwind.config.d.ts +3 -0
  61. package/dist/tailwind.config.js +144 -0
  62. package/package.json +4 -3
  63. package/dist/lib/index.css +0 -32748
  64. package/tailwind.config.ts +0 -163
@@ -10,7 +10,7 @@ export interface TextFieldProps extends VariantProps<typeof textFieldVariants> {
10
10
  scaling?: IScaling;
11
11
  }
12
12
  declare const textFieldVariants: (props?: ({
13
- radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
13
+ radius?: "none" | "small" | "medium" | "large" | "full" | null | undefined;
14
14
  color?: string | null | undefined;
15
15
  } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
16
16
  export declare const TextField: React.ForwardRefExoticComponent<Omit<TextFieldTheme.RootProps & React.RefAttributes<HTMLInputElement>, "ref"> & TextFieldProps & React.RefAttributes<HTMLInputElement>>;
@@ -7,7 +7,7 @@ export interface ToastActionButtonProps extends VariantProps<typeof toastActionB
7
7
  appearance?: IAppearance;
8
8
  }
9
9
  export declare const toastActionButtonVariants: (props?: ({
10
- radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
10
+ radius?: "none" | "small" | "medium" | "large" | "full" | null | undefined;
11
11
  size?: "small" | "medium" | "large" | "x-large" | null | undefined;
12
12
  scaling?: "90%" | "95%" | "100%" | "105%" | "110%" | null | undefined;
13
13
  } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
@@ -17,7 +17,7 @@ export interface ToastProps extends VariantProps<typeof toastVariants>, VariantP
17
17
  setOpenToast?: Dispatch<SetStateAction<boolean>>;
18
18
  }
19
19
  export declare const toastVariants: (props?: ({
20
- radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
20
+ radius?: "none" | "small" | "medium" | "large" | "full" | null | undefined;
21
21
  size?: "small" | "medium" | "large" | "x-large" | null | undefined;
22
22
  scaling?: "90%" | "95%" | "100%" | "105%" | "110%" | null | undefined;
23
23
  color?: "danger" | "warning" | "success" | "information" | null | undefined;
@@ -8,7 +8,7 @@ export interface ToggleWithTextProps extends VariantProps<typeof toggleWithTextV
8
8
  size?: 'small' | 'medium' | 'large';
9
9
  }
10
10
  declare const toggleWithTextVariants: (props?: ({
11
- radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
11
+ radius?: "none" | "small" | "medium" | "large" | "full" | null | undefined;
12
12
  size?: "small" | "medium" | "large" | null | undefined;
13
13
  scaling?: "90%" | "95%" | "100%" | "105%" | "110%" | null | undefined;
14
14
  } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
@@ -8,7 +8,7 @@ export interface ToggleProps extends VariantProps<typeof toggleVariants> {
8
8
  appearance?: IAppearance;
9
9
  }
10
10
  declare const toggleVariants: (props?: ({
11
- radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
11
+ radius?: "none" | "small" | "medium" | "large" | "full" | null | undefined;
12
12
  size?: "small" | "medium" | "large" | null | undefined;
13
13
  scaling?: "90%" | "95%" | "100%" | "105%" | "110%" | null | undefined;
14
14
  } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
@@ -6,7 +6,7 @@ export interface ToggleSwitchProps extends VariantProps<typeof toggleSwitchVaria
6
6
  }
7
7
  declare const toggleSwitchVariants: (props?: ({
8
8
  scaling?: "90%" | "95%" | "100%" | "105%" | "110%" | null | undefined;
9
- radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
9
+ radius?: "none" | "small" | "medium" | "large" | "full" | null | undefined;
10
10
  size?: "small" | "medium" | "large" | null | undefined;
11
11
  } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
12
12
  export declare const ToggleSwitch: React.ForwardRefExoticComponent<Omit<import("@radix-ui/themes").SwitchProps & React.RefAttributes<HTMLButtonElement>, "ref"> & ToggleSwitchProps & React.RefAttributes<HTMLButtonElement>>;
@@ -11,9 +11,9 @@ export interface TooltipProps extends React.InputHTMLAttributes<HTMLInputElement
11
11
  side?: 'top' | 'right' | 'bottom' | 'left';
12
12
  }
13
13
  declare const tooltipVariants: (props?: ({
14
- scaling?: number | typeof Symbol.iterator | typeof Symbol.unscopables | "concat" | "indexOf" | "lastIndexOf" | "slice" | "length" | "includes" | "at" | "toLocaleString" | "map" | "filter" | "fill" | "values" | "toString" | "pop" | "push" | "join" | "reverse" | "shift" | "sort" | "splice" | "unshift" | "every" | "some" | "forEach" | "reduce" | "reduceRight" | "find" | "findIndex" | "copyWithin" | "entries" | "keys" | "flatMap" | "flat" | "findLast" | "findLastIndex" | "toReversed" | "toSorted" | "toSpliced" | "with" | null | undefined;
15
- weight?: "bold" | "medium" | "regular" | "semibold" | null | undefined;
16
- radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
14
+ scaling?: number | typeof Symbol.iterator | typeof Symbol.unscopables | "length" | "toString" | "toLocaleString" | "pop" | "push" | "concat" | "join" | "reverse" | "shift" | "slice" | "sort" | "splice" | "unshift" | "indexOf" | "lastIndexOf" | "every" | "some" | "forEach" | "map" | "filter" | "reduce" | "reduceRight" | "find" | "findIndex" | "fill" | "copyWithin" | "entries" | "keys" | "values" | "includes" | "flatMap" | "flat" | "at" | "findLast" | "findLastIndex" | "toReversed" | "toSorted" | "toSpliced" | "with" | null | undefined;
15
+ weight?: "medium" | "regular" | "semibold" | "bold" | null | undefined;
16
+ radius?: "none" | "small" | "medium" | "large" | "full" | null | undefined;
17
17
  color?: string | null | undefined;
18
18
  } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
19
19
  export declare const Tooltip: React.ForwardRefExoticComponent<TooltipPrimitive.TooltipProps & TooltipProps & React.RefAttributes<never>>;
@@ -0,0 +1,3 @@
1
+ import type { Config } from 'tailwindcss';
2
+ declare const config: Config;
3
+ export default config;
@@ -0,0 +1,144 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
13
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
14
+ if (ar || !(i in from)) {
15
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
16
+ ar[i] = from[i];
17
+ }
18
+ }
19
+ return to.concat(ar || Array.prototype.slice.call(from));
20
+ };
21
+ import * as lightColors from './lib/color/light';
22
+ import * as darkColors from './lib/color/dark';
23
+ import * as alphaColors from './lib/color/alpha';
24
+ import { colorOptions, alphaColorOptions, darkColorOptions } from './lib/color/constants';
25
+ var classes = [];
26
+ var darkClasses = [];
27
+ var colorScale = Array.from({ length: 12 }, function (_, i) { return (i + 1).toString(); });
28
+ var allColorOptions = [colorOptions, alphaColorOptions];
29
+ var generateClasses = function (colorList, colorScale) {
30
+ var classPrefixes = ['accent', 'fill', 'border', 'outline', 'bg', 'text'];
31
+ return colorList.flatMap(function (color) {
32
+ return colorScale.flatMap(function (scale) { return classPrefixes.map(function (prefix) { return "".concat(prefix, "-").concat(color, "-").concat(scale); }); });
33
+ });
34
+ };
35
+ var generateDarkClasses = function (colorList, colorScale) {
36
+ var classPrefixes = [
37
+ 'dark:accent',
38
+ 'dark:fill',
39
+ 'dark:outline',
40
+ 'dark:border',
41
+ 'dark:bg',
42
+ 'dark:text',
43
+ 'dark:hover:bg',
44
+ 'dark:hover:border',
45
+ 'dark:hover:text',
46
+ 'dark:active:bg',
47
+ 'dark:active:border',
48
+ 'dark:active:text',
49
+ 'dark:before:checked:bg',
50
+ 'dark:data-[state=on]:bg',
51
+ 'dark:data-[state=open]:bg',
52
+ 'dark:data-[state=on]:text',
53
+ 'dark:data-[state=on]:hover:bg',
54
+ 'dark:data-[state=on]:hover:border',
55
+ 'dark:data-[state=on]:hover:text',
56
+ ];
57
+ return colorList.flatMap(function (color) {
58
+ return colorScale.flatMap(function (scale) { return classPrefixes.map(function (prefix) { return "".concat(prefix, "-").concat(color, "-").concat(scale); }); });
59
+ });
60
+ };
61
+ allColorOptions.forEach(function (options) {
62
+ classes = classes.concat(generateClasses(options, colorScale));
63
+ });
64
+ darkClasses.push.apply(darkClasses, generateDarkClasses(darkColorOptions, colorScale));
65
+ var config = {
66
+ content: [
67
+ './src/pages/**/*.{js,ts,jsx,tsx,mdx,zip}',
68
+ './src/components/**/*.{js,ts,jsx,tsx,mdx,zip}',
69
+ './src/app/**/*.{js,ts,jsx,tsx,mdx,zip}',
70
+ './src/**/*.{js,ts,jsx,tsx,mdx,zip}',
71
+ ],
72
+ safelist: __spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray([], classes, true), classes.map(function (cls) { return "hover:".concat(cls); }), true), classes.map(function (cls) { return "active:".concat(cls); }), true), classes.map(function (cls) { return "before:".concat(cls); }), true), classes.map(function (cls) { return "data-[state=checked]:".concat(cls); }), true), classes.map(function (cls) { return "data-[state=unchecked]:".concat(cls); }), true), classes.map(function (cls) { return "data-[state=on]:".concat(cls); }), true), classes.map(function (cls) { return "data-[state=on]:hover:".concat(cls); }), true), classes.map(function (cls) { return "data-[state=open]:".concat(cls); }), true), classes.map(function (cls) { return "after:checked:".concat(cls); }), true), classes.map(function (cls) { return "before:checked:".concat(cls); }), true), darkClasses, true),
73
+ theme: {
74
+ extend: {
75
+ fontFamily: {
76
+ sans: ['Noto Sans KR', 'sans-serif', 'Nunito Sans', 'Helvetica Neue', 'Helvetica', 'Arial'],
77
+ },
78
+ backgroundImage: {
79
+ 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
80
+ 'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
81
+ },
82
+ colors: __assign(__assign(__assign({ danger: '#C40006', warning: '#AB6400', success: '#00713F', information: '#00749E' }, formatColors(lightColors)), formatColors(darkColors)), formatColors(alphaColors)),
83
+ // radix tailwind
84
+ keyframes: {
85
+ overlayShow: {
86
+ from: { opacity: '0' },
87
+ to: { opacity: '1' },
88
+ },
89
+ contentShow: {
90
+ from: { opacity: '0', transform: 'translate(-50%, -48%) scale(0.96)' },
91
+ to: { opacity: '1', transform: 'translate(-50%, -50%) scale(1)' },
92
+ },
93
+ slideDown: {
94
+ from: { height: '0px' },
95
+ to: { height: 'var(--radix-accordion-content-height)' },
96
+ },
97
+ slideUp: {
98
+ from: { height: 'var(--radix-accordion-content-height)' },
99
+ to: { height: '0px' },
100
+ },
101
+ },
102
+ animation: {
103
+ overlayShow: 'overlayShow 150ms cubic-bezier(0.16, 1, 0.3, 1)',
104
+ contentShow: 'contentShow 150ms cubic-bezier(0.16, 1, 0.3, 1)',
105
+ slideDown: 'slideDown 300ms cubic-bezier(0.87, 0, 0.13, 1)',
106
+ slideUp: 'slideUp 300ms cubic-bezier(0.87, 0, 0.13, 1)',
107
+ },
108
+ boxShadow: {
109
+ 'button-classic': '0px 0px 0px 1px #00002D17 inset, 0px -2px 1px 0px #0000330F inset, 0px 4px 2px -2px #FFFFFFB2 inset, 0px 2px 1px -1px #FFFFFFB2 inset',
110
+ 'checkbox-classic': '0px 0px 0px 1px #00002D17 inset, 0px -2px 1px 0px #0000330F inset, 0px 4px 2px -2px #FFFFFF66 inset, 0px 2px 1px -1px #FFFFFF66 inset',
111
+ 'button-dark-classic': '0px 0px 0px 1px #414142 inset, 0px -2px 1px 0px #414142 inset, 0px 4px 2px -2px #414142 inset, 0px 2px 1px -1px #414142 inset',
112
+ 'card-classic': '0px 0px 0px 0.5px #0000000D, 0px 1px 4px 0px #00002D17, 0px 2px 1px -1px #0000000D, 0px 1px 3px 0px #0000000D',
113
+ 'card-dark-classic': '0px 0px 0px 0.5px #414142, 0px 1px 4px 0px #414142, 0px 2px 1px -1px #414142, 0px 1px 3px 0px #414142',
114
+ 'segmented-control-dark-classic': '0px 0px 0px 0.5px #0000000D, 0px 1px 4px 0px #363636, 0px 2px 1px -1px #0000000D, 0px 1px 3px 0px #0000000D',
115
+ },
116
+ },
117
+ },
118
+ plugins: [
119
+ function (_a) {
120
+ var addVariant = _a.addVariant;
121
+ addVariant('data-placeholder', '&:where([data-placeholder])');
122
+ },
123
+ ],
124
+ darkMode: 'class',
125
+ };
126
+ /**
127
+ * tailwind 방식으로 변경
128
+ * ex) bg-yellow-3
129
+ */
130
+ function formatColors(colors) {
131
+ var formatcolors = {};
132
+ for (var _i = 0, _a = Object.entries(colors); _i < _a.length; _i++) {
133
+ var _b = _a[_i], cn = _b[0], c = _b[1];
134
+ for (var _c = 0, _d = Object.entries(c); _c < _d.length; _c++) {
135
+ var _e = _d[_c], scale = _e[0], value = _e[1];
136
+ if (!scale) {
137
+ continue;
138
+ }
139
+ formatcolors["".concat(cn, "-").concat(scale)] = value;
140
+ }
141
+ }
142
+ return formatcolors;
143
+ }
144
+ export default config;
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@lotte-innovate/ui-component-test",
3
3
  "description": "Lotte UI Library",
4
- "version": "0.0.27",
4
+ "version": "0.0.29",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "files": [
8
8
  "dist/lib",
9
- "tailwind.config.ts"
9
+ "dist/tailwind.config.d.ts",
10
+ "dist/tailwind.config.js"
10
11
  ],
11
12
  "main": "dist/lib/index.js",
12
13
  "module": "dist/lib/index.js",
@@ -43,7 +44,7 @@
43
44
  "lint": "next lint",
44
45
  "storybook": "cross-env NODE_OPTIONS='--max-old-space-size=8192' storybook dev -p 6006",
45
46
  "build-storybook": "storybook build",
46
- "publish:npm": "rimraf dist && mkdir dist && tsc && tsc-alias && npm run build:css",
47
+ "publish:npm": "rimraf dist && mkdir dist && tsc && tsc-alias",
47
48
  "chromatic": "cross-env npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN"
48
49
  },
49
50
  "dependencies": {