@lotte-innovate/ui-component-test 0.1.10 → 0.1.12

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,7 +11,7 @@ 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 | "concat" | "indexOf" | "lastIndexOf" | "slice" | "length" | "includes" | "at" | "toLocaleString" | typeof Symbol.unscopables | "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;
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
15
  weight?: "bold" | "medium" | "regular" | "semibold" | null | undefined;
16
16
  radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
17
17
  color?: string | null | undefined;
package/package.json CHANGED
@@ -1,131 +1,130 @@
1
- {
2
- "name": "@lotte-innovate/ui-component-test",
3
- "description": "Lotte UI Library",
4
- "version": "0.1.10",
5
- "private": false,
6
- "type": "module",
7
- "files": [
8
- "dist/lib",
9
- "dist/tailwind.config.d.ts",
10
- "dist/tailwind.config.js",
11
- "dist/globals.css",
12
- "dist/styles.css"
13
- ],
14
- "main": "dist/lib/index.js",
15
- "module": "dist/lib/index.js",
16
- "types": "dist/lib/index.d.ts",
17
- "publishConfig": {
18
- "access": "public"
19
- },
20
- "browser": "./browser/specific/main.js",
21
- "babel": {
22
- "presets": [
23
- "@babel/preset-react",
24
- "@babel/preset-env"
25
- ]
26
- },
27
- "browserslist": {
28
- "production": [
29
- ">0.2%",
30
- "not dead",
31
- "not op_mini all"
32
- ],
33
- "development": [
34
- "last 1 chrome version",
35
- "last 1 firefox version",
36
- "last 1 safari version"
37
- ]
38
- },
39
- "scripts": {
40
- "dev": "next dev",
41
- "lint": "next lint",
42
- "prepare": "next build",
43
- "start": "next start",
44
- "storybook": "cross-env NODE_OPTIONS='--max-old-space-size=8192' storybook dev -p 6006",
45
- "chromatic": "cross-env npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN",
46
- "compile": "tsc --jsx react-jsx",
47
- "build": "next build && npm run compile",
48
- "build:css": "npx tailwindcss -i src/app/styles.css -o dist/styles.css",
49
- "build-storybook": "storybook build",
50
- "clean": "rimraf dist && mkdir dist",
51
- "update-tailwind": "node update-tailwind-import.js",
52
- "build:all": "npm run clean && npm run compile && node src/utils/move.js && npm run build:css && tsc-alias && npm run update-tailwind",
53
- "publish:npm": "npm run build:all && npm publish"
54
- },
55
- "dependencies": {
56
- "@babel/runtime": "^7.24.7",
57
- "@babel/runtime-corejs3": "^7.24.7",
58
- "@lotte-innovate/ui-component-test": "^0.0.30",
59
- "@radix-ui/colors": "^3.0.0",
60
- "@radix-ui/react-accordion": "^1.2.0",
61
- "@radix-ui/react-checkbox": "^1.0.4",
62
- "@radix-ui/react-dialog": "^1.1.1",
63
- "@radix-ui/react-dropdown-menu": "^2.1.1",
64
- "@radix-ui/react-hover-card": "^1.1.1",
65
- "@radix-ui/react-icons": "^1.3.0",
66
- "@radix-ui/react-label": "^2.1.0",
67
- "@radix-ui/react-menubar": "^1.1.1",
68
- "@radix-ui/react-navigation-menu": "^1.2.0",
69
- "@radix-ui/react-popover": "1.0.7",
70
- "@radix-ui/react-radio-group": "^1.1.3",
71
- "@radix-ui/react-select": "^2.1.1",
72
- "@radix-ui/react-separator": "^1.1.0",
73
- "@radix-ui/react-slider": "^1.2.0",
74
- "@radix-ui/react-switch": "^1.1.0",
75
- "@radix-ui/react-tabs": "^1.1.0",
76
- "@radix-ui/react-toast": "^1.2.1",
77
- "@radix-ui/react-tooltip": "^1.1.1",
78
- "@radix-ui/themes": "^3.1.1",
79
- "@stitches/core": "^1.2.8",
80
- "@stitches/react": "^1.2.8",
81
- "@storybook/addon-a11y": "^8.0.10",
82
- "@storybook/addons": "^7.6.17",
83
- "chart.js": "^4.4.4",
84
- "chartjs-plugin-datalabels": "^2.2.0",
85
- "class-variance-authority": "^0.7.0",
86
- "clsx": "^2.1.0",
87
- "cross-env": "^7.0.3",
88
- "dotenv": "^16.4.5",
89
- "lucide-react": "^0.364.0",
90
- "next": "14.1.4",
91
- "react": "^18",
92
- "react-chartjs-2": "^5.2.0",
93
- "react-dom": "^18",
94
- "react-tabs": "^6.0.2",
95
- "storybook-addon-deep-controls": "^0.7.1",
96
- "storybook-dark-mode": "^4.0.2",
97
- "tailwind-merge": "^2.2.2"
98
- },
99
- "devDependencies": {
100
- "@babel/cli": "^7.24.7",
101
- "@babel/core": "^7.24.7",
102
- "@babel/plugin-transform-runtime": "^7.24.7",
103
- "@babel/preset-env": "^7.25.4",
104
- "@babel/preset-react": "^7.24.7",
105
- "@babel/preset-typescript": "^7.24.7",
106
- "@chromatic-com/storybook": "^1.2.25",
107
- "@storybook/addon-essentials": "^8.0.4",
108
- "@storybook/addon-interactions": "^8.0.4",
109
- "@storybook/addon-links": "^8.0.4",
110
- "@storybook/addon-styling-webpack": "^1.0.0",
111
- "@storybook/blocks": "^8.0.4",
112
- "@storybook/nextjs": "^8.0.4",
113
- "@storybook/react": "^8.0.4",
114
- "@storybook/test": "^8.0.4",
115
- "@storybook/theming": "^8.2.4",
116
- "@types/node": "^20",
117
- "@types/react": "^18",
118
- "@types/react-dom": "^18",
119
- "autoprefixer": "^10.0.1",
120
- "chromatic": "^11.5.4",
121
- "eslint": "^8",
122
- "eslint-config-next": "14.1.4",
123
- "eslint-plugin-storybook": "^0.8.0",
124
- "postcss": "^8",
125
- "rimraf": "^6.0.1",
126
- "storybook": "^8.2.6",
127
- "tailwindcss": "^3.3.0",
128
- "tsc-alias": "^1.8.10",
129
- "typescript": "^5"
130
- }
131
- }
1
+ {
2
+ "name": "@lotte-innovate/ui-component-test",
3
+ "description": "Lotte UI Library",
4
+ "version": "0.1.12",
5
+ "private": false,
6
+ "type": "module",
7
+ "files": [
8
+ "dist/lib",
9
+ "dist/tailwind.config.d.ts",
10
+ "dist/tailwind.config.js",
11
+ "dist/globals.css"
12
+ ],
13
+ "main": "dist/lib/index.js",
14
+ "module": "dist/lib/index.js",
15
+ "types": "dist/lib/index.d.ts",
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "browser": "./browser/specific/main.js",
20
+ "babel": {
21
+ "presets": [
22
+ "@babel/preset-react",
23
+ "@babel/preset-env"
24
+ ]
25
+ },
26
+ "browserslist": {
27
+ "production": [
28
+ ">0.2%",
29
+ "not dead",
30
+ "not op_mini all"
31
+ ],
32
+ "development": [
33
+ "last 1 chrome version",
34
+ "last 1 firefox version",
35
+ "last 1 safari version"
36
+ ]
37
+ },
38
+ "scripts": {
39
+ "dev": "next dev",
40
+ "lint": "next lint",
41
+ "prepare": "next build",
42
+ "start": "next start",
43
+ "storybook": "cross-env NODE_OPTIONS='--max-old-space-size=8192' storybook dev -p 6006",
44
+ "chromatic": "cross-env npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN",
45
+ "compile": "tsc --jsx react-jsx",
46
+ "build": "next build && npm run compile",
47
+ "build:css": "npx tailwindcss -i src/app/globals.css -o dist/globals.css",
48
+ "build-storybook": "storybook build",
49
+ "clean": "rimraf dist && mkdir dist",
50
+ "update-tailwind": "node update-tailwind-import.js",
51
+ "build:all": "npm run clean && npm run compile && node src/utils/move.js && npm run build:css && tsc-alias && npm run update-tailwind",
52
+ "publish:npm": "npm run build:all && npm publish"
53
+ },
54
+ "dependencies": {
55
+ "@babel/runtime": "^7.24.7",
56
+ "@babel/runtime-corejs3": "^7.24.7",
57
+ "@lotte-innovate/ui-component-test": "^0.0.30",
58
+ "@radix-ui/colors": "^3.0.0",
59
+ "@radix-ui/react-accordion": "^1.2.0",
60
+ "@radix-ui/react-checkbox": "^1.0.4",
61
+ "@radix-ui/react-dialog": "^1.1.1",
62
+ "@radix-ui/react-dropdown-menu": "^2.1.1",
63
+ "@radix-ui/react-hover-card": "^1.1.1",
64
+ "@radix-ui/react-icons": "^1.3.0",
65
+ "@radix-ui/react-label": "^2.1.0",
66
+ "@radix-ui/react-menubar": "^1.1.1",
67
+ "@radix-ui/react-navigation-menu": "^1.2.0",
68
+ "@radix-ui/react-popover": "1.0.7",
69
+ "@radix-ui/react-radio-group": "^1.1.3",
70
+ "@radix-ui/react-select": "^2.1.1",
71
+ "@radix-ui/react-separator": "^1.1.0",
72
+ "@radix-ui/react-slider": "^1.2.0",
73
+ "@radix-ui/react-switch": "^1.1.0",
74
+ "@radix-ui/react-tabs": "^1.1.0",
75
+ "@radix-ui/react-toast": "^1.2.1",
76
+ "@radix-ui/react-tooltip": "^1.1.1",
77
+ "@radix-ui/themes": "^3.1.1",
78
+ "@stitches/core": "^1.2.8",
79
+ "@stitches/react": "^1.2.8",
80
+ "@storybook/addon-a11y": "^8.0.10",
81
+ "@storybook/addons": "^7.6.17",
82
+ "chart.js": "^4.4.4",
83
+ "chartjs-plugin-datalabels": "^2.2.0",
84
+ "class-variance-authority": "^0.7.0",
85
+ "clsx": "^2.1.0",
86
+ "cross-env": "^7.0.3",
87
+ "dotenv": "^16.4.5",
88
+ "lucide-react": "^0.364.0",
89
+ "next": "14.1.4",
90
+ "react": "^18",
91
+ "react-chartjs-2": "^5.2.0",
92
+ "react-dom": "^18",
93
+ "react-tabs": "^6.0.2",
94
+ "storybook-addon-deep-controls": "^0.7.1",
95
+ "storybook-dark-mode": "^4.0.2",
96
+ "tailwind-merge": "^2.2.2"
97
+ },
98
+ "devDependencies": {
99
+ "@babel/cli": "^7.24.7",
100
+ "@babel/core": "^7.24.7",
101
+ "@babel/plugin-transform-runtime": "^7.24.7",
102
+ "@babel/preset-env": "^7.25.4",
103
+ "@babel/preset-react": "^7.24.7",
104
+ "@babel/preset-typescript": "^7.24.7",
105
+ "@chromatic-com/storybook": "^1.2.25",
106
+ "@storybook/addon-essentials": "^8.0.4",
107
+ "@storybook/addon-interactions": "^8.0.4",
108
+ "@storybook/addon-links": "^8.0.4",
109
+ "@storybook/addon-styling-webpack": "^1.0.0",
110
+ "@storybook/blocks": "^8.0.4",
111
+ "@storybook/nextjs": "^8.0.4",
112
+ "@storybook/react": "^8.0.4",
113
+ "@storybook/test": "^8.0.4",
114
+ "@storybook/theming": "^8.2.4",
115
+ "@types/node": "^20",
116
+ "@types/react": "^18",
117
+ "@types/react-dom": "^18",
118
+ "autoprefixer": "^10.0.1",
119
+ "chromatic": "^11.5.4",
120
+ "eslint": "^8",
121
+ "eslint-config-next": "14.1.4",
122
+ "eslint-plugin-storybook": "^0.8.0",
123
+ "postcss": "^8",
124
+ "rimraf": "^6.0.1",
125
+ "storybook": "^8.2.6",
126
+ "tailwindcss": "^3.3.0",
127
+ "tsc-alias": "^1.8.10",
128
+ "typescript": "^5"
129
+ }
130
+ }