@lotte-innovate/ui-component-test 0.2.88 → 0.2.90
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.
- package/README.md +21 -2
- package/dist/globals.css +3 -3
- package/dist/lib/components/AlertDialog/index.d.ts +0 -1
- package/dist/lib/components/Badge/index.js +1 -1
- package/dist/lib/components/Badge/index.mjs +1 -1
- package/dist/lib/components/Breadcrumb/BreadcrumbEllipsis.d.ts +1 -1
- package/dist/lib/components/Breadcrumb/BreadcrumbLink.d.ts +1 -1
- package/dist/lib/components/Breadcrumb/BreadcrumbSeparator.d.ts +1 -1
- package/dist/lib/components/Breadcrumb/index.d.ts +3 -4
- package/dist/lib/components/Callout/index.d.ts +0 -1
- package/dist/lib/components/CheckboxGroup/CheckboxGroupRoot.js +3 -4
- package/dist/lib/components/CheckboxGroup/CheckboxGroupRoot.mjs +1 -1
- package/dist/lib/components/CheckboxGroup/index.d.ts +1 -2
- package/dist/lib/components/ContextMenu/index.d.ts +0 -1
- package/dist/lib/components/DataList/DataListLabel.d.ts +1 -1
- package/dist/lib/components/DataList/index.d.ts +1 -2
- package/dist/lib/components/Datepicker/index.js +2 -2
- package/dist/lib/components/Datepicker/index.mjs +1 -1
- package/dist/lib/components/DatetimePicker/index.d.ts +1 -2
- package/dist/lib/components/DatetimePicker/index.js +15 -6
- package/dist/lib/components/DatetimePicker/index.mjs +1 -1
- package/dist/lib/components/Dialog/index.d.ts +0 -1
- package/dist/lib/components/DropdownMenu/index.d.ts +1 -2
- package/dist/lib/components/Editor/content.d.ts +1 -0
- package/dist/lib/components/Editor/content.js +1 -0
- package/dist/lib/components/Editor/content.mjs +2 -0
- package/dist/lib/components/Editor/content.mjs.map +1 -0
- package/dist/lib/components/Editor/index.js +2 -3
- package/dist/lib/components/Editor/index.mjs +1 -1
- package/dist/lib/components/Gnb/index.d.ts +0 -1
- package/dist/lib/components/Grid/index.js +12 -11
- package/dist/lib/components/Grid/index.mjs +1 -1
- package/dist/lib/components/Grid/useGrid.js +17 -13
- package/dist/lib/components/Grid/useGrid.mjs +1 -1
- package/dist/lib/components/HoverCard/index.d.ts +1 -2
- package/dist/lib/components/Menubar/index.d.ts +0 -1
- package/dist/lib/components/Modal/index.d.ts +1 -2
- package/dist/lib/components/NavigationMenu/index.d.ts +0 -1
- package/dist/lib/components/Popover/index.d.ts +1 -2
- package/dist/lib/components/RadioCards/index.d.ts +0 -1
- package/dist/lib/components/RadioGroup/index.d.ts +0 -1
- package/dist/lib/components/SegmentedControl/index.d.ts +0 -1
- package/dist/lib/components/TextField/index.js +1 -1
- package/dist/lib/components/TextField/index.mjs +1 -1
- package/dist/lib/components/Timeline/index.d.ts +0 -1
- package/dist/lib/components/Toast/ToastRoot.d.ts +2 -1
- package/dist/lib/components/Toast/ToastRoot.js +2 -2
- package/dist/lib/components/Toast/ToastRoot.mjs +1 -1
- package/dist/lib/components/Toast/index.d.ts +0 -1
- package/dist/lib/components/ToggleGroup/index.d.ts +0 -1
- package/dist/lib/components/Tree/index.js +2 -2
- package/dist/lib/components/Tree/index.mjs +1 -1
- package/dist/lib/constants.d.ts +2 -2
- package/dist/lib/tsconfig.tsbuildinfo +1 -1
- package/dist/lib/utils/useLoadTinyMCE.js +2 -2
- package/dist/lib/utils/useLoadTinyMCE.mjs +1 -1
- package/dist/lib/utils/useLoadTinyMCE.mjs.map +1 -1
- package/dist/tailwind.config.js +9 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +13 -5
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lotte-innovate/ui-component-test",
|
3
3
|
"description": "Lotte UI Library",
|
4
|
-
"version": "0.2.
|
4
|
+
"version": "0.2.90",
|
5
5
|
"private": false,
|
6
6
|
"type": "module",
|
7
7
|
"files": [
|
@@ -33,14 +33,16 @@
|
|
33
33
|
"last 1 safari version"
|
34
34
|
]
|
35
35
|
},
|
36
|
+
"homepage": "https://develop--66849ef80cb87f1ca900f051.chromatic.com/",
|
36
37
|
"scripts": {
|
37
38
|
"dev": "next dev",
|
38
39
|
"lint": "next lint",
|
39
40
|
"start": "next start",
|
40
41
|
"storybook": "cross-env NODE_OPTIONS='--max-old-space-size=8192' storybook dev -p 6006",
|
41
|
-
"
|
42
|
+
"build-docs": "storybook build --docs -o storybook-docs",
|
43
|
+
"chromatic": "npm run build-docs && cross-env npx chromatic --storybook-build-dir storybook-docs --project-token=$CHROMATIC_PROJECT_TOKEN",
|
42
44
|
"compile": "tsc --jsx react-jsx",
|
43
|
-
"build": "next build
|
45
|
+
"build": "next build",
|
44
46
|
"build-storybook": "storybook build",
|
45
47
|
"clean": "rimraf dist && mkdir dist && rimraf .rollup.cache",
|
46
48
|
"compile:typescript": "npm run compile && node src/utils/post-compile.js && tsc-alias",
|
@@ -53,6 +55,8 @@
|
|
53
55
|
"dependencies": {
|
54
56
|
"@babel/runtime": "^7.24.7",
|
55
57
|
"@babel/runtime-corejs3": "^7.24.7",
|
58
|
+
"@lotte-innovate/lui": "^0.1.86",
|
59
|
+
"@lotte-innovate/ui-component-test": "^0.2.89",
|
56
60
|
"@radix-ui/colors": "^3.0.0",
|
57
61
|
"@radix-ui/react-accordion": "^1.2.0",
|
58
62
|
"@radix-ui/react-checkbox": "^1.0.4",
|
@@ -85,14 +89,14 @@
|
|
85
89
|
"clsx": "^2.1.0",
|
86
90
|
"cross-env": "^7.0.3",
|
87
91
|
"date-fns": "^2.30.0",
|
88
|
-
"dotenv": "^16.4.5",
|
89
92
|
"marked": "^14.1.3",
|
90
|
-
"next": "14.1.4",
|
93
|
+
"next": "^14.1.4",
|
91
94
|
"raw-loader": "^4.0.2",
|
92
95
|
"react": "^18",
|
93
96
|
"react-calendar-datetime-picker": "^1.7.4",
|
94
97
|
"react-chartjs-2": "^5.2.0",
|
95
98
|
"react-complex-tree": "^2.4.6",
|
99
|
+
"react-copy-to-clipboard": "^5.1.0",
|
96
100
|
"react-day-picker": "^8.7.1",
|
97
101
|
"react-dom": "^18",
|
98
102
|
"react-pro-sidebar": "^1.1.0",
|
@@ -130,6 +134,8 @@
|
|
130
134
|
"@types/react-dom": "^18",
|
131
135
|
"autoprefixer": "^10.0.1",
|
132
136
|
"chromatic": "^11.5.4",
|
137
|
+
"cssnano": "^7.0.6",
|
138
|
+
"dotenv": "^16.4.7",
|
133
139
|
"eslint": "^8",
|
134
140
|
"eslint-config-next": "14.1.4",
|
135
141
|
"eslint-plugin-storybook": "^0.8.0",
|
@@ -138,7 +144,9 @@
|
|
138
144
|
"prettier-plugin-tailwindcss": "^0.6.6",
|
139
145
|
"rimraf": "^6.0.1",
|
140
146
|
"rollup-plugin-postcss": "^4.0.2",
|
147
|
+
"rollup-plugin-string": "^3.0.0",
|
141
148
|
"rollup-plugin-terser": "^7.0.2",
|
149
|
+
"source-map": "^0.7.4",
|
142
150
|
"storybook": "^8.3.5",
|
143
151
|
"tailwindcss": "^3.3.0",
|
144
152
|
"tsc-alias": "^1.8.10",
|