@liner-fe/design-library 1.2.1 → 1.2.3
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/lib/index.js +4 -4
- package/package.json +6 -3
package/lib/index.js
CHANGED
|
@@ -5,7 +5,7 @@ import clsx from 'clsx';
|
|
|
5
5
|
import { twMerge } from 'tailwind-merge';
|
|
6
6
|
import { jsx, Fragment, jsxs } from 'react/jsx-runtime';
|
|
7
7
|
|
|
8
|
-
// src/template-dialog.tsx
|
|
8
|
+
// src/template-dialog/index.tsx
|
|
9
9
|
var tw = (...args) => twMerge(clsx(args));
|
|
10
10
|
var TemplateDialog = ({
|
|
11
11
|
open = false,
|
|
@@ -45,7 +45,7 @@ var TemplateDialog = ({
|
|
|
45
45
|
TemplateDialog.Close = ({ onClose }) => /* @__PURE__ */ jsx(
|
|
46
46
|
IconButton,
|
|
47
47
|
{
|
|
48
|
-
icon: { icon: IconClose },
|
|
48
|
+
icon: { icon: IconClose, type: "neutral-label-secondary" },
|
|
49
49
|
size: "m",
|
|
50
50
|
level: "tertiary",
|
|
51
51
|
fill: false,
|
|
@@ -126,7 +126,7 @@ var TemplateIllustDialog = ({
|
|
|
126
126
|
TemplateIllustDialog.Close = ({ onClose }) => /* @__PURE__ */ jsx(
|
|
127
127
|
IconButton,
|
|
128
128
|
{
|
|
129
|
-
icon: { icon: IconClose },
|
|
129
|
+
icon: { icon: IconClose, type: "neutral-label-secondary" },
|
|
130
130
|
size: "m",
|
|
131
131
|
level: "tertiary",
|
|
132
132
|
fill: false,
|
|
@@ -162,7 +162,7 @@ TemplateIllustDialog.Description = ({
|
|
|
162
162
|
type: "normal",
|
|
163
163
|
weight: "regular",
|
|
164
164
|
size: 4,
|
|
165
|
-
className: tw("mt-component-200 pb-component-100 text-neutral-label-
|
|
165
|
+
className: tw("mt-component-200 pb-component-100 text-neutral-label-secondary", className),
|
|
166
166
|
children
|
|
167
167
|
}
|
|
168
168
|
) });
|
package/package.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liner-fe/design-library",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"type": "module",
|
|
5
|
+
"peerDependencies": {
|
|
6
|
+
"tailwindcss": "4.1.14"
|
|
7
|
+
},
|
|
5
8
|
"dependencies": {
|
|
6
9
|
"@tailwindcss/vite": "^4.1.14",
|
|
7
10
|
"clsx": "^2.1.1",
|
|
@@ -9,9 +12,9 @@
|
|
|
9
12
|
"react": "18.2.0",
|
|
10
13
|
"react-dom": "18.2.0",
|
|
11
14
|
"tailwind-merge": "^3.3.1",
|
|
12
|
-
"tailwindcss": "
|
|
15
|
+
"tailwindcss": "4.1.14",
|
|
13
16
|
"@liner-fe/design-token": "^2.5.34",
|
|
14
|
-
"@liner-fe/icon": "^0.2.
|
|
17
|
+
"@liner-fe/icon": "^0.2.36",
|
|
15
18
|
"@liner-fe/prism": "^2.9.42"
|
|
16
19
|
},
|
|
17
20
|
"devDependencies": {
|