@aristobyte-ui/utils 1.0.27 → 1.0.29
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/dist/index.d.mts +14 -6
- package/dist/index.d.ts +14 -6
- package/dist/index.js +456 -24
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +456 -24
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -13,17 +13,25 @@ declare const Portal: React$1.FC<{
|
|
|
13
13
|
children: React$1.ReactNode;
|
|
14
14
|
}>;
|
|
15
15
|
|
|
16
|
-
type
|
|
16
|
+
type IconPropsType = {
|
|
17
17
|
size?: number;
|
|
18
18
|
color?: string;
|
|
19
19
|
};
|
|
20
20
|
|
|
21
21
|
declare const Icons: {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
22
|
+
ArrowRight: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
23
|
+
Bun: () => react_jsx_runtime.JSX.Element;
|
|
24
|
+
Copy: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
25
|
+
Error: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
26
|
+
GalleryVertical: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
27
|
+
GalleryVerticalEnd: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
28
|
+
Info: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
29
|
+
Npm: ({ size }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
30
|
+
Pnpm: ({ size }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
31
|
+
Storybook: ({ size }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
32
|
+
Success: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
33
|
+
Warning: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
34
|
+
Yarn: ({ size }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
27
35
|
};
|
|
28
36
|
|
|
29
37
|
export { Icons, Portal, type RippleParams, renderRipple };
|
package/dist/index.d.ts
CHANGED
|
@@ -13,17 +13,25 @@ declare const Portal: React$1.FC<{
|
|
|
13
13
|
children: React$1.ReactNode;
|
|
14
14
|
}>;
|
|
15
15
|
|
|
16
|
-
type
|
|
16
|
+
type IconPropsType = {
|
|
17
17
|
size?: number;
|
|
18
18
|
color?: string;
|
|
19
19
|
};
|
|
20
20
|
|
|
21
21
|
declare const Icons: {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
22
|
+
ArrowRight: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
23
|
+
Bun: () => react_jsx_runtime.JSX.Element;
|
|
24
|
+
Copy: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
25
|
+
Error: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
26
|
+
GalleryVertical: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
27
|
+
GalleryVerticalEnd: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
28
|
+
Info: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
29
|
+
Npm: ({ size }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
30
|
+
Pnpm: ({ size }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
31
|
+
Storybook: ({ size }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
32
|
+
Success: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
33
|
+
Warning: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
34
|
+
Yarn: ({ size }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
27
35
|
};
|
|
28
36
|
|
|
29
37
|
export { Icons, Portal, type RippleParams, renderRipple };
|
package/dist/index.js
CHANGED
|
@@ -94,9 +94,164 @@ var Portal = ({
|
|
|
94
94
|
return (0, import_react_dom.createPortal)(children, document.body);
|
|
95
95
|
};
|
|
96
96
|
|
|
97
|
-
// icons/
|
|
97
|
+
// icons/ArrowRight.tsx
|
|
98
98
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
99
|
-
var
|
|
99
|
+
var ArrowRight = ({
|
|
100
|
+
size = 24,
|
|
101
|
+
color = "currentColor"
|
|
102
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
103
|
+
"svg",
|
|
104
|
+
{
|
|
105
|
+
width: size,
|
|
106
|
+
height: size,
|
|
107
|
+
viewBox: "0 0 24 24",
|
|
108
|
+
fill: "none",
|
|
109
|
+
stroke: color,
|
|
110
|
+
strokeWidth: "2",
|
|
111
|
+
strokeLinecap: "round",
|
|
112
|
+
strokeLinejoin: "round",
|
|
113
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m9 18 6-6-6-6" })
|
|
114
|
+
}
|
|
115
|
+
);
|
|
116
|
+
|
|
117
|
+
// icons/Bun.tsx
|
|
118
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
119
|
+
var Bun = () => /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("svg", { viewBox: "0 0 80 70", children: [
|
|
120
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
121
|
+
"path",
|
|
122
|
+
{
|
|
123
|
+
id: "Shadow",
|
|
124
|
+
d: "M71.09,20.74c-.16-.17-.33-.34-.5-.5s-.33-.34-.5-.5-.33-.34-.5-.5-.33-.34-.5-.5-.33-.34-.5-.5-.33-.34-.5-.5-.33-.34-.5-.5A26.46,26.46,0,0,1,75.5,35.7c0,16.57-16.82,30.05-37.5,30.05-11.58,0-21.94-4.23-28.83-10.86l.5.5.5.5.5.5.5.5.5.5.5.5.5.5C19.55,65.3,30.14,69.75,42,69.75c20.68,0,37.5-13.48,37.5-30C79.5,32.69,76.46,26,71.09,20.74Z"
|
|
125
|
+
}
|
|
126
|
+
),
|
|
127
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("g", { id: "Body", children: [
|
|
128
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
129
|
+
"path",
|
|
130
|
+
{
|
|
131
|
+
id: "Background",
|
|
132
|
+
d: "M73,35.7c0,15.21-15.67,27.54-35,27.54S3,50.91,3,35.7C3,26.27,9,17.94,18.22,13S33.18,3,38,3s8.94,4.13,19.78,10C67,17.94,73,26.27,73,35.7Z",
|
|
133
|
+
fill: "#fbf0df"
|
|
134
|
+
}
|
|
135
|
+
),
|
|
136
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
137
|
+
"path",
|
|
138
|
+
{
|
|
139
|
+
id: "Bottom_Shadow",
|
|
140
|
+
"data-name": "Bottom Shadow",
|
|
141
|
+
d: "M73,35.7a21.67,21.67,0,0,0-.8-5.78c-2.73,33.3-43.35,34.9-59.32,24.94A40,40,0,0,0,38,63.24C57.3,63.24,73,50.89,73,35.7Z",
|
|
142
|
+
fill: "#f6dece"
|
|
143
|
+
}
|
|
144
|
+
),
|
|
145
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
146
|
+
"path",
|
|
147
|
+
{
|
|
148
|
+
id: "Light_Shine",
|
|
149
|
+
"data-name": "Light Shine",
|
|
150
|
+
d: "M24.53,11.17C29,8.49,34.94,3.46,40.78,3.45A9.29,9.29,0,0,0,38,3c-2.42,0-5,1.25-8.25,3.13-1.13.66-2.3,1.39-3.54,2.15-2.33,1.44-5,3.07-8,4.7C8.69,18.13,3,26.62,3,35.7c0,.4,0,.8,0,1.19C9.06,15.48,20.07,13.85,24.53,11.17Z",
|
|
151
|
+
fill: "#fffefc"
|
|
152
|
+
}
|
|
153
|
+
),
|
|
154
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
155
|
+
"path",
|
|
156
|
+
{
|
|
157
|
+
id: "Top",
|
|
158
|
+
d: "M35.12,5.53A16.41,16.41,0,0,1,29.49,18c-.28.25-.06.73.3.59,3.37-1.31,7.92-5.23,6-13.14C35.71,5,35.12,5.12,35.12,5.53Zm2.27,0A16.24,16.24,0,0,1,39,19c-.12.35.31.65.55.36C41.74,16.56,43.65,11,37.93,5,37.64,4.74,37.19,5.14,37.39,5.49Zm2.76-.17A16.42,16.42,0,0,1,47,17.12a.33.33,0,0,0,.65.11c.92-3.49.4-9.44-7.17-12.53C40.08,4.54,39.82,5.08,40.15,5.32ZM21.69,15.76a16.94,16.94,0,0,0,10.47-9c.18-.36.75-.22.66.18-1.73,8-7.52,9.67-11.12,9.45C21.32,16.4,21.33,15.87,21.69,15.76Z",
|
|
159
|
+
fill: "#ccbea7",
|
|
160
|
+
fillRule: "evenodd"
|
|
161
|
+
}
|
|
162
|
+
),
|
|
163
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
164
|
+
"path",
|
|
165
|
+
{
|
|
166
|
+
id: "Outline",
|
|
167
|
+
d: "M38,65.75C17.32,65.75.5,52.27.5,35.7c0-10,6.18-19.33,16.53-24.92,3-1.6,5.57-3.21,7.86-4.62,1.26-.78,2.45-1.51,3.6-2.19C32,1.89,35,.5,38,.5s5.62,1.2,8.9,3.14c1,.57,2,1.19,3.07,1.87,2.49,1.54,5.3,3.28,9,5.27C69.32,16.37,75.5,25.69,75.5,35.7,75.5,52.27,58.68,65.75,38,65.75ZM38,3c-2.42,0-5,1.25-8.25,3.13-1.13.66-2.3,1.39-3.54,2.15-2.33,1.44-5,3.07-8,4.7C8.69,18.13,3,26.62,3,35.7,3,50.89,18.7,63.25,38,63.25S73,50.89,73,35.7C73,26.62,67.31,18.13,57.78,13,54,11,51.05,9.12,48.66,7.64c-1.09-.67-2.09-1.29-3-1.84C42.63,4,40.42,3,38,3Z"
|
|
168
|
+
}
|
|
169
|
+
)
|
|
170
|
+
] }),
|
|
171
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("g", { id: "Mouth", children: [
|
|
172
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("g", { id: "Background-2", "data-name": "Background", children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
173
|
+
"path",
|
|
174
|
+
{
|
|
175
|
+
d: "M45.05,43a8.93,8.93,0,0,1-2.92,4.71,6.81,6.81,0,0,1-4,1.88A6.84,6.84,0,0,1,34,47.71,8.93,8.93,0,0,1,31.12,43a.72.72,0,0,1,.8-.81H44.26A.72.72,0,0,1,45.05,43Z",
|
|
176
|
+
fill: "#b71422"
|
|
177
|
+
}
|
|
178
|
+
) }),
|
|
179
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("g", { id: "Tongue", children: [
|
|
180
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
181
|
+
"path",
|
|
182
|
+
{
|
|
183
|
+
id: "Background-3",
|
|
184
|
+
"data-name": "Background",
|
|
185
|
+
d: "M34,47.79a6.91,6.91,0,0,0,4.12,1.9,6.91,6.91,0,0,0,4.11-1.9,10.63,10.63,0,0,0,1-1.07,6.83,6.83,0,0,0-4.9-2.31,6.15,6.15,0,0,0-5,2.78C33.56,47.4,33.76,47.6,34,47.79Z",
|
|
186
|
+
fill: "#ff6164"
|
|
187
|
+
}
|
|
188
|
+
),
|
|
189
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
190
|
+
"path",
|
|
191
|
+
{
|
|
192
|
+
id: "Outline-2",
|
|
193
|
+
"data-name": "Outline",
|
|
194
|
+
d: "M34.16,47a5.36,5.36,0,0,1,4.19-2.08,6,6,0,0,1,4,1.69c.23-.25.45-.51.66-.77a7,7,0,0,0-4.71-1.93,6.36,6.36,0,0,0-4.89,2.36A9.53,9.53,0,0,0,34.16,47Z"
|
|
195
|
+
}
|
|
196
|
+
)
|
|
197
|
+
] }),
|
|
198
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
199
|
+
"path",
|
|
200
|
+
{
|
|
201
|
+
id: "Outline-3",
|
|
202
|
+
"data-name": "Outline",
|
|
203
|
+
d: "M38.09,50.19a7.42,7.42,0,0,1-4.45-2,9.52,9.52,0,0,1-3.11-5.05,1.2,1.2,0,0,1,.26-1,1.41,1.41,0,0,1,1.13-.51H44.26a1.44,1.44,0,0,1,1.13.51,1.19,1.19,0,0,1,.25,1h0a9.52,9.52,0,0,1-3.11,5.05A7.42,7.42,0,0,1,38.09,50.19Zm-6.17-7.4c-.16,0-.2.07-.21.09a8.29,8.29,0,0,0,2.73,4.37A6.23,6.23,0,0,0,38.09,49a6.28,6.28,0,0,0,3.65-1.73,8.3,8.3,0,0,0,2.72-4.37.21.21,0,0,0-.2-.09Z"
|
|
204
|
+
}
|
|
205
|
+
)
|
|
206
|
+
] }),
|
|
207
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("g", { id: "Face", children: [
|
|
208
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
209
|
+
"ellipse",
|
|
210
|
+
{
|
|
211
|
+
id: "Right_Blush",
|
|
212
|
+
"data-name": "Right Blush",
|
|
213
|
+
cx: "53.22",
|
|
214
|
+
cy: "40.18",
|
|
215
|
+
rx: "5.85",
|
|
216
|
+
ry: "3.44",
|
|
217
|
+
fill: "#febbd0"
|
|
218
|
+
}
|
|
219
|
+
),
|
|
220
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
221
|
+
"ellipse",
|
|
222
|
+
{
|
|
223
|
+
id: "Left_Bluch",
|
|
224
|
+
"data-name": "Left Bluch",
|
|
225
|
+
cx: "22.95",
|
|
226
|
+
cy: "40.18",
|
|
227
|
+
rx: "5.85",
|
|
228
|
+
ry: "3.44",
|
|
229
|
+
fill: "#febbd0"
|
|
230
|
+
}
|
|
231
|
+
),
|
|
232
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
233
|
+
"path",
|
|
234
|
+
{
|
|
235
|
+
id: "Eyes",
|
|
236
|
+
d: "M25.7,38.8a5.51,5.51,0,1,0-5.5-5.51A5.51,5.51,0,0,0,25.7,38.8Zm24.77,0A5.51,5.51,0,1,0,45,33.29,5.5,5.5,0,0,0,50.47,38.8Z",
|
|
237
|
+
fillRule: "evenodd"
|
|
238
|
+
}
|
|
239
|
+
),
|
|
240
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
241
|
+
"path",
|
|
242
|
+
{
|
|
243
|
+
id: "Iris",
|
|
244
|
+
d: "M24,33.64a2.07,2.07,0,1,0-2.06-2.07A2.07,2.07,0,0,0,24,33.64Zm24.77,0a2.07,2.07,0,1,0-2.06-2.07A2.07,2.07,0,0,0,48.75,33.64Z",
|
|
245
|
+
fill: "#fff",
|
|
246
|
+
fillRule: "evenodd"
|
|
247
|
+
}
|
|
248
|
+
)
|
|
249
|
+
] })
|
|
250
|
+
] });
|
|
251
|
+
|
|
252
|
+
// icons/Copy.tsx
|
|
253
|
+
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
254
|
+
var Copy = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
100
255
|
"svg",
|
|
101
256
|
{
|
|
102
257
|
width: size,
|
|
@@ -108,15 +263,63 @@ var Copy = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, import
|
|
|
108
263
|
strokeLinecap: "round",
|
|
109
264
|
strokeLinejoin: "round",
|
|
110
265
|
children: [
|
|
111
|
-
/* @__PURE__ */ (0,
|
|
112
|
-
/* @__PURE__ */ (0,
|
|
266
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
|
|
267
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
|
|
113
268
|
]
|
|
114
269
|
}
|
|
115
270
|
);
|
|
116
271
|
|
|
117
272
|
// icons/Error.tsx
|
|
118
|
-
var
|
|
119
|
-
var Error2 = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0,
|
|
273
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
274
|
+
var Error2 = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
|
|
275
|
+
"svg",
|
|
276
|
+
{
|
|
277
|
+
width: size,
|
|
278
|
+
height: size,
|
|
279
|
+
viewBox: "0 0 24 24",
|
|
280
|
+
fill: "none",
|
|
281
|
+
stroke: color,
|
|
282
|
+
strokeWidth: "2",
|
|
283
|
+
strokeLinecap: "round",
|
|
284
|
+
strokeLinejoin: "round",
|
|
285
|
+
children: [
|
|
286
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m15 9-6 6" }),
|
|
287
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z" }),
|
|
288
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m9 9 6 6" })
|
|
289
|
+
]
|
|
290
|
+
}
|
|
291
|
+
);
|
|
292
|
+
|
|
293
|
+
// icons/GalleryVertical.tsx
|
|
294
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
295
|
+
var GalleryVertical = ({
|
|
296
|
+
size = 24,
|
|
297
|
+
color = "currentColor"
|
|
298
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
|
299
|
+
"svg",
|
|
300
|
+
{
|
|
301
|
+
width: size,
|
|
302
|
+
height: size,
|
|
303
|
+
viewBox: "0 0 24 24",
|
|
304
|
+
fill: "none",
|
|
305
|
+
stroke: color,
|
|
306
|
+
strokeWidth: "2",
|
|
307
|
+
strokeLinecap: "round",
|
|
308
|
+
strokeLinejoin: "round",
|
|
309
|
+
children: [
|
|
310
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 2h18" }),
|
|
311
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { width: "18", height: "12", x: "3", y: "6", rx: "2" }),
|
|
312
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 22h18" })
|
|
313
|
+
]
|
|
314
|
+
}
|
|
315
|
+
);
|
|
316
|
+
|
|
317
|
+
// icons/GalleryVerticalEnd.tsx
|
|
318
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
319
|
+
var GalleryVerticalEnd = ({
|
|
320
|
+
size = 24,
|
|
321
|
+
color = "currentColor"
|
|
322
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
120
323
|
"svg",
|
|
121
324
|
{
|
|
122
325
|
width: size,
|
|
@@ -128,16 +331,16 @@ var Error2 = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, impo
|
|
|
128
331
|
strokeLinecap: "round",
|
|
129
332
|
strokeLinejoin: "round",
|
|
130
333
|
children: [
|
|
131
|
-
/* @__PURE__ */ (0,
|
|
132
|
-
/* @__PURE__ */ (0,
|
|
133
|
-
/* @__PURE__ */ (0,
|
|
334
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M7 2h10" }),
|
|
335
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M5 6h14" }),
|
|
336
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { width: "18", height: "12", x: "3", y: "10", rx: "2" })
|
|
134
337
|
]
|
|
135
338
|
}
|
|
136
339
|
);
|
|
137
340
|
|
|
138
341
|
// icons/Info.tsx
|
|
139
|
-
var
|
|
140
|
-
var Info = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0,
|
|
342
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
343
|
+
var Info = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
141
344
|
"svg",
|
|
142
345
|
{
|
|
143
346
|
width: size,
|
|
@@ -149,16 +352,219 @@ var Info = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, import
|
|
|
149
352
|
strokeLinecap: "round",
|
|
150
353
|
strokeLinejoin: "round",
|
|
151
354
|
children: [
|
|
152
|
-
/* @__PURE__ */ (0,
|
|
153
|
-
/* @__PURE__ */ (0,
|
|
154
|
-
/* @__PURE__ */ (0,
|
|
355
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
356
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("path", { d: "M12 16v-4" }),
|
|
357
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("path", { d: "M12 8h.01" })
|
|
155
358
|
]
|
|
156
359
|
}
|
|
157
360
|
);
|
|
158
361
|
|
|
362
|
+
// icons/Npm.tsx
|
|
363
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
364
|
+
var Npm = ({ size = 24 }) => /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
|
|
365
|
+
"svg",
|
|
366
|
+
{
|
|
367
|
+
height: size,
|
|
368
|
+
width: size,
|
|
369
|
+
viewBox: "0 0 700 700",
|
|
370
|
+
fill: "#cb3837",
|
|
371
|
+
"aria-hidden": "true",
|
|
372
|
+
children: [
|
|
373
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("polygon", { fill: "#cb3837", points: "0,700 700,700 700,0 0,0" }),
|
|
374
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
375
|
+
"polygon",
|
|
376
|
+
{
|
|
377
|
+
fill: "#ffffff",
|
|
378
|
+
points: "150,550 350,550 350,250 450,250 450,550 550,550 550,150 150,150 "
|
|
379
|
+
}
|
|
380
|
+
)
|
|
381
|
+
]
|
|
382
|
+
}
|
|
383
|
+
);
|
|
384
|
+
|
|
385
|
+
// icons/Pnpm.tsx
|
|
386
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
387
|
+
var Pnpm = ({ size = 24 }) => /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
388
|
+
"svg",
|
|
389
|
+
{
|
|
390
|
+
preserveAspectRatio: "xMidYMid meet",
|
|
391
|
+
viewBox: "66.09157809474142 33.5 184.5 184.49999999999997",
|
|
392
|
+
width: size,
|
|
393
|
+
height: size,
|
|
394
|
+
children: [
|
|
395
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("defs", { children: [
|
|
396
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
397
|
+
"path",
|
|
398
|
+
{
|
|
399
|
+
d: "M67.59 35L247.59 35L247.59 215L67.59 215L67.59 35Z",
|
|
400
|
+
id: "b2JZZcA3fT"
|
|
401
|
+
}
|
|
402
|
+
),
|
|
403
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M237.6 95L187.6 95L187.6 45L237.6 45L237.6 95Z", id: "bj0tb0Y8q" }),
|
|
404
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
405
|
+
"path",
|
|
406
|
+
{
|
|
407
|
+
d: "M182.59 95L132.59 95L132.59 45L182.59 45L182.59 95Z",
|
|
408
|
+
id: "dkDSTzPj3"
|
|
409
|
+
}
|
|
410
|
+
),
|
|
411
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
412
|
+
"path",
|
|
413
|
+
{
|
|
414
|
+
d: "M127.59 95L77.59 95L77.59 45L127.59 45L127.59 95Z",
|
|
415
|
+
id: "a4vNdcNLpF"
|
|
416
|
+
}
|
|
417
|
+
),
|
|
418
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
419
|
+
"path",
|
|
420
|
+
{
|
|
421
|
+
d: "M237.6 150L187.6 150L187.6 100L237.6 100L237.6 150Z",
|
|
422
|
+
id: "h2t4Zj1jSU"
|
|
423
|
+
}
|
|
424
|
+
),
|
|
425
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
426
|
+
"path",
|
|
427
|
+
{
|
|
428
|
+
d: "M182.59 150L132.59 150L132.59 100L182.59 100L182.59 150Z",
|
|
429
|
+
id: "b4t5pngwvT"
|
|
430
|
+
}
|
|
431
|
+
),
|
|
432
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
433
|
+
"path",
|
|
434
|
+
{
|
|
435
|
+
d: "M182.59 205L132.59 205L132.59 155L182.59 155L182.59 205Z",
|
|
436
|
+
id: "b9s1gd5m2"
|
|
437
|
+
}
|
|
438
|
+
),
|
|
439
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
440
|
+
"path",
|
|
441
|
+
{
|
|
442
|
+
d: "M237.6 205L187.6 205L187.6 155L237.6 155L237.6 205Z",
|
|
443
|
+
id: "cmt9WLvz7"
|
|
444
|
+
}
|
|
445
|
+
),
|
|
446
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
447
|
+
"path",
|
|
448
|
+
{
|
|
449
|
+
d: "M127.59 205L77.59 205L77.59 155L127.59 155L127.59 205Z",
|
|
450
|
+
id: "bJUNqgFSg"
|
|
451
|
+
}
|
|
452
|
+
)
|
|
453
|
+
] }),
|
|
454
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("g", { children: [
|
|
455
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
456
|
+
"use",
|
|
457
|
+
{
|
|
458
|
+
xlinkHref: "#b2JZZcA3fT",
|
|
459
|
+
opacity: "1",
|
|
460
|
+
fill: "#ffffff",
|
|
461
|
+
fillOpacity: "1"
|
|
462
|
+
}
|
|
463
|
+
) }),
|
|
464
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
465
|
+
"use",
|
|
466
|
+
{
|
|
467
|
+
xlinkHref: "#bj0tb0Y8q",
|
|
468
|
+
opacity: "1",
|
|
469
|
+
fill: "#f9ad00",
|
|
470
|
+
fillOpacity: "1"
|
|
471
|
+
}
|
|
472
|
+
) }),
|
|
473
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
474
|
+
"use",
|
|
475
|
+
{
|
|
476
|
+
xlinkHref: "#dkDSTzPj3",
|
|
477
|
+
opacity: "1",
|
|
478
|
+
fill: "#f9ad00",
|
|
479
|
+
fillOpacity: "1"
|
|
480
|
+
}
|
|
481
|
+
) }),
|
|
482
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
483
|
+
"use",
|
|
484
|
+
{
|
|
485
|
+
xlinkHref: "#a4vNdcNLpF",
|
|
486
|
+
opacity: "1",
|
|
487
|
+
fill: "#f9ad00",
|
|
488
|
+
fillOpacity: "1"
|
|
489
|
+
}
|
|
490
|
+
) }),
|
|
491
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
492
|
+
"use",
|
|
493
|
+
{
|
|
494
|
+
xlinkHref: "#h2t4Zj1jSU",
|
|
495
|
+
opacity: "1",
|
|
496
|
+
fill: "#f9ad00",
|
|
497
|
+
fillOpacity: "1"
|
|
498
|
+
}
|
|
499
|
+
) }),
|
|
500
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
501
|
+
"use",
|
|
502
|
+
{
|
|
503
|
+
xlinkHref: "#b4t5pngwvT",
|
|
504
|
+
opacity: "1",
|
|
505
|
+
fill: "#4e4e4e",
|
|
506
|
+
fillOpacity: "1"
|
|
507
|
+
}
|
|
508
|
+
) }),
|
|
509
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
510
|
+
"use",
|
|
511
|
+
{
|
|
512
|
+
xlinkHref: "#b9s1gd5m2",
|
|
513
|
+
opacity: "1",
|
|
514
|
+
fill: "#4e4e4e",
|
|
515
|
+
fillOpacity: "1"
|
|
516
|
+
}
|
|
517
|
+
) }),
|
|
518
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
519
|
+
"use",
|
|
520
|
+
{
|
|
521
|
+
xlinkHref: "#cmt9WLvz7",
|
|
522
|
+
opacity: "1",
|
|
523
|
+
fill: "#4e4e4e",
|
|
524
|
+
fillOpacity: "1"
|
|
525
|
+
}
|
|
526
|
+
) }),
|
|
527
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
528
|
+
"use",
|
|
529
|
+
{
|
|
530
|
+
xlinkHref: "#bJUNqgFSg",
|
|
531
|
+
opacity: "1",
|
|
532
|
+
fill: "#4e4e4e",
|
|
533
|
+
fillOpacity: "1"
|
|
534
|
+
}
|
|
535
|
+
) })
|
|
536
|
+
] })
|
|
537
|
+
]
|
|
538
|
+
}
|
|
539
|
+
);
|
|
540
|
+
|
|
541
|
+
// icons/Storybook.tsx
|
|
542
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
543
|
+
var Storybook = ({ size = 24 }) => /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("svg", { fill: "none", height: size, width: size, viewBox: "0 0 16.05 20", children: [
|
|
544
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
545
|
+
"path",
|
|
546
|
+
{
|
|
547
|
+
d: "M0.620279 18.4293L0.000720095 1.92089C-0.0197415 1.37568 0.398305 0.913625 0.942836 0.879592L14.9844 0.00199235C15.5387 -0.0326493 16.0161 0.38859 16.0507 0.942857C16.052 0.96374 16.0527 0.984658 16.0527 1.00558V18.9945C16.0527 19.5498 15.6025 20 15.0471 20C15.0321 20 15.0171 19.9997 15.002 19.999L1.58 19.3962C1.05727 19.3727 0.639903 18.9522 0.620279 18.4293Z",
|
|
548
|
+
fill: "#FF4785"
|
|
549
|
+
}
|
|
550
|
+
),
|
|
551
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
552
|
+
"path",
|
|
553
|
+
{
|
|
554
|
+
clipRule: "evenodd",
|
|
555
|
+
d: "M13.8804 0.0710449L11.9479 0.191825L11.8536 2.45837C11.8522 2.49321 11.8629 2.52747 11.884 2.55526C11.9341 2.62126 12.0282 2.63418 12.0942 2.58411L12.9746 1.91625L13.7182 2.50205C13.7461 2.524 13.7808 2.53536 13.8163 2.53413C13.8991 2.53124 13.9639 2.46178 13.961 2.37898L13.8804 0.0710449ZM12.3763 7.66099C12.0225 7.93579 9.38733 8.12329 9.38733 7.73208C9.44302 6.23927 8.77469 6.17383 8.40339 6.17383C8.05066 6.17383 7.45659 6.28046 7.45659 7.08017C7.45659 7.89512 8.32476 8.35519 9.34377 8.8952C10.7914 9.66232 12.5433 10.5908 12.5433 12.927C12.5433 15.1662 10.724 16.4031 8.40339 16.4031C6.00853 16.4031 3.91569 15.4342 4.15205 12.075C4.24488 11.6806 7.2895 11.7743 7.2895 12.075C7.25237 13.4612 7.56798 13.8689 8.36626 13.8689C8.9789 13.8689 9.25737 13.5312 9.25737 12.9625C9.25737 12.1019 8.35281 11.594 7.31222 11.0098C5.90324 10.2187 4.24488 9.28767 4.24488 7.15126C4.24488 5.01868 5.7115 3.59696 8.32913 3.59696C10.9468 3.59696 12.3763 4.9969 12.3763 7.66099Z",
|
|
556
|
+
fill: "white",
|
|
557
|
+
fillRule: "evenodd"
|
|
558
|
+
}
|
|
559
|
+
)
|
|
560
|
+
] });
|
|
561
|
+
|
|
159
562
|
// icons/Success.tsx
|
|
160
|
-
var
|
|
161
|
-
var Success = ({
|
|
563
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
564
|
+
var Success = ({
|
|
565
|
+
size = 24,
|
|
566
|
+
color = "currentColor"
|
|
567
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
|
|
162
568
|
"svg",
|
|
163
569
|
{
|
|
164
570
|
width: size,
|
|
@@ -170,15 +576,18 @@ var Success = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, imp
|
|
|
170
576
|
strokeLinecap: "round",
|
|
171
577
|
strokeLinejoin: "round",
|
|
172
578
|
children: [
|
|
173
|
-
/* @__PURE__ */ (0,
|
|
174
|
-
/* @__PURE__ */ (0,
|
|
579
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
580
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "m9 12 2 2 4-4" })
|
|
175
581
|
]
|
|
176
582
|
}
|
|
177
583
|
);
|
|
178
584
|
|
|
179
585
|
// icons/Warning.tsx
|
|
180
|
-
var
|
|
181
|
-
var Warning = ({
|
|
586
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
587
|
+
var Warning = ({
|
|
588
|
+
size = 24,
|
|
589
|
+
color = "currentColor"
|
|
590
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
|
|
182
591
|
"svg",
|
|
183
592
|
{
|
|
184
593
|
width: size,
|
|
@@ -190,20 +599,43 @@ var Warning = ({ size = 24, color = "currentColor" }) => /* @__PURE__ */ (0, imp
|
|
|
190
599
|
strokeLinecap: "round",
|
|
191
600
|
strokeLinejoin: "round",
|
|
192
601
|
children: [
|
|
193
|
-
/* @__PURE__ */ (0,
|
|
194
|
-
/* @__PURE__ */ (0,
|
|
195
|
-
/* @__PURE__ */ (0,
|
|
602
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { d: "M12 16h.01" }),
|
|
603
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { d: "M12 8v4" }),
|
|
604
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { d: "M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z" })
|
|
196
605
|
]
|
|
197
606
|
}
|
|
198
607
|
);
|
|
199
608
|
|
|
609
|
+
// icons/Yarn.tsx
|
|
610
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
611
|
+
var Yarn = ({ size = 24 }) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
612
|
+
"svg",
|
|
613
|
+
{
|
|
614
|
+
viewBox: "0 0 496 512",
|
|
615
|
+
height: size,
|
|
616
|
+
width: size,
|
|
617
|
+
stroke: "#2c8ebb",
|
|
618
|
+
strokeWidth: "0",
|
|
619
|
+
fill: "#2c8ebb",
|
|
620
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { d: "M393.9 345.2c-39 9.3-48.4 32.1-104 47.4 0 0-2.7 4-10.4 5.8-13.4 3.3-63.9 6-68.5 6.1-12.4.1-19.9-3.2-22-8.2-6.4-15.3 9.2-22 9.2-22-8.1-5-9-9.9-9.8-8.1-2.4 5.8-3.6 20.1-10.1 26.5-8.8 8.9-25.5 5.9-35.3.8-10.8-5.7.8-19.2.8-19.2s-5.8 3.4-10.5-3.6c-6-9.3-17.1-37.3 11.5-62-1.3-10.1-4.6-53.7 40.6-85.6 0 0-20.6-22.8-12.9-43.3 5-13.4 7-13.3 8.6-13.9 5.7-2.2 11.3-4.6 15.4-9.1 20.6-22.2 46.8-18 46.8-18s12.4-37.8 23.9-30.4c3.5 2.3 16.3 30.6 16.3 30.6s13.6-7.9 15.1-5c8.2 16 9.2 46.5 5.6 65.1-6.1 30.6-21.4 47.1-27.6 57.5-1.4 2.4 16.5 10 27.8 41.3 10.4 28.6 1.1 52.7 2.8 55.3.8 1.4 13.7.8 36.4-13.2 12.8-7.9 28.1-16.9 45.4-17 16.7-.5 17.6 19.2 4.9 22.2zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-79.3 75.2c-1.7-13.6-13.2-23-28-22.8-22 .3-40.5 11.7-52.8 19.2-4.8 3-8.9 5.2-12.4 6.8 3.1-44.5-22.5-73.1-28.7-79.4 7.8-11.3 18.4-27.8 23.4-53.2 4.3-21.7 3-55.5-6.9-74.5-1.6-3.1-7.4-11.2-21-7.4-9.7-20-13-22.1-15.6-23.8-1.1-.7-23.6-16.4-41.4 28-12.2.9-31.3 5.3-47.5 22.8-2 2.2-5.9 3.8-10.1 5.4h.1c-8.4 3-12.3 9.9-16.9 22.3-6.5 17.4.2 34.6 6.8 45.7-17.8 15.9-37 39.8-35.7 82.5-34 36-11.8 73-5.6 79.6-1.6 11.1 3.7 19.4 12 23.8 12.6 6.7 30.3 9.6 43.9 2.8 4.9 5.2 13.8 10.1 30 10.1 6.8 0 58-2.9 72.6-6.5 6.8-1.6 11.5-4.5 14.6-7.1 9.8-3.1 36.8-12.3 62.2-28.7 18-11.7 24.2-14.2 37.6-17.4 12.9-3.2 21-15.1 19.4-28.2z" })
|
|
621
|
+
}
|
|
622
|
+
);
|
|
623
|
+
|
|
200
624
|
// icons/index.ts
|
|
201
625
|
var Icons = {
|
|
626
|
+
ArrowRight,
|
|
627
|
+
Bun,
|
|
202
628
|
Copy,
|
|
203
629
|
Error: Error2,
|
|
630
|
+
GalleryVertical,
|
|
631
|
+
GalleryVerticalEnd,
|
|
204
632
|
Info,
|
|
633
|
+
Npm,
|
|
634
|
+
Pnpm,
|
|
635
|
+
Storybook,
|
|
205
636
|
Success,
|
|
206
|
-
Warning
|
|
637
|
+
Warning,
|
|
638
|
+
Yarn
|
|
207
639
|
};
|
|
208
640
|
// Annotate the CommonJS export names for ESM import in node:
|
|
209
641
|
0 && (module.exports = {
|