virtual-ui-lib 1.0.5 → 1.0.10
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.js +78 -0
- package/dist/index.mjs +76 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -30,12 +30,14 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
30
30
|
var index_exports = {};
|
|
31
31
|
__export(index_exports, {
|
|
32
32
|
Alert: () => Alert,
|
|
33
|
+
AnimatedButton: () => AnimatedButton,
|
|
33
34
|
Avatar: () => Avatar,
|
|
34
35
|
Badge: () => Badge,
|
|
35
36
|
Button: () => Button,
|
|
36
37
|
Card: () => Card,
|
|
37
38
|
Input: () => Input,
|
|
38
39
|
Modal: () => Modal,
|
|
40
|
+
ProgressBar: () => ProgressBar,
|
|
39
41
|
Spinner: () => Spinner
|
|
40
42
|
});
|
|
41
43
|
module.exports = __toCommonJS(index_exports);
|
|
@@ -311,14 +313,90 @@ var Modal = ({
|
|
|
311
313
|
)
|
|
312
314
|
);
|
|
313
315
|
};
|
|
316
|
+
|
|
317
|
+
// src/components/ProgressBar/ProgressBar.jsx
|
|
318
|
+
var import_react9 = __toESM(require("react"));
|
|
319
|
+
var ProgressBar = ({
|
|
320
|
+
progress = 50,
|
|
321
|
+
height = "20px",
|
|
322
|
+
bgColor = "#2563eb",
|
|
323
|
+
trackColor = "#d1d5db",
|
|
324
|
+
radius = "10px",
|
|
325
|
+
label = "Progress",
|
|
326
|
+
textColor = "#ffffff"
|
|
327
|
+
}) => {
|
|
328
|
+
return /* @__PURE__ */ import_react9.default.createElement("div", { style: { width: "100%", background: trackColor, borderRadius: radius, overflow: "hidden" } }, /* @__PURE__ */ import_react9.default.createElement("div", { style: {
|
|
329
|
+
width: progress + "%",
|
|
330
|
+
height,
|
|
331
|
+
background: bgColor,
|
|
332
|
+
borderRadius: radius,
|
|
333
|
+
display: "flex",
|
|
334
|
+
alignItems: "center",
|
|
335
|
+
justifyContent: "center",
|
|
336
|
+
position: "relative"
|
|
337
|
+
} }, /* @__PURE__ */ import_react9.default.createElement("span", { style: { color: textColor, fontWeight: "600", fontSize: "14px" } }, label, ": ", progress, "%")));
|
|
338
|
+
};
|
|
339
|
+
|
|
340
|
+
// src/components/AnimatedButton/AnimatedButton.jsx
|
|
341
|
+
var import_react10 = __toESM(require("react"));
|
|
342
|
+
var AnimatedButton = ({
|
|
343
|
+
text = "Click Me",
|
|
344
|
+
gradient = "linear-gradient(45deg, #2563eb, #7c3aed)",
|
|
345
|
+
color = "white",
|
|
346
|
+
size = "md",
|
|
347
|
+
width = "auto",
|
|
348
|
+
radius = "12px",
|
|
349
|
+
shadow = "0 4px 14px rgba(0, 0, 0, 0.2)",
|
|
350
|
+
loading = false,
|
|
351
|
+
onClick
|
|
352
|
+
}) => {
|
|
353
|
+
const sizes = { sm: "8px 16px", md: "12px 24px", lg: "16px 32px" };
|
|
354
|
+
const handleMouseEnter = (e) => {
|
|
355
|
+
e.target.style.transform = "scale(1.05)";
|
|
356
|
+
};
|
|
357
|
+
const handleMouseLeave = (e) => {
|
|
358
|
+
e.target.style.transform = "scale(1)";
|
|
359
|
+
};
|
|
360
|
+
return /* @__PURE__ */ import_react10.default.createElement(
|
|
361
|
+
"button",
|
|
362
|
+
{
|
|
363
|
+
onClick,
|
|
364
|
+
onMouseEnter: handleMouseEnter,
|
|
365
|
+
onMouseLeave: handleMouseLeave,
|
|
366
|
+
disabled: loading,
|
|
367
|
+
style: {
|
|
368
|
+
background: gradient,
|
|
369
|
+
color,
|
|
370
|
+
padding: sizes[size],
|
|
371
|
+
width,
|
|
372
|
+
border: "none",
|
|
373
|
+
borderRadius: radius,
|
|
374
|
+
boxShadow: shadow,
|
|
375
|
+
cursor: loading ? "not-allowed" : "pointer",
|
|
376
|
+
fontWeight: "600",
|
|
377
|
+
fontSize: "15px",
|
|
378
|
+
transition: "transform 0.3s, box-shadow 0.3s",
|
|
379
|
+
fontFamily: "system-ui, sans-serif",
|
|
380
|
+
opacity: loading ? 0.6 : 1,
|
|
381
|
+
display: "flex",
|
|
382
|
+
alignItems: "center",
|
|
383
|
+
justifyContent: "center",
|
|
384
|
+
gap: "8px"
|
|
385
|
+
}
|
|
386
|
+
},
|
|
387
|
+
loading ? "Loading..." : text
|
|
388
|
+
);
|
|
389
|
+
};
|
|
314
390
|
// Annotate the CommonJS export names for ESM import in node:
|
|
315
391
|
0 && (module.exports = {
|
|
316
392
|
Alert,
|
|
393
|
+
AnimatedButton,
|
|
317
394
|
Avatar,
|
|
318
395
|
Badge,
|
|
319
396
|
Button,
|
|
320
397
|
Card,
|
|
321
398
|
Input,
|
|
322
399
|
Modal,
|
|
400
|
+
ProgressBar,
|
|
323
401
|
Spinner
|
|
324
402
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -269,13 +269,89 @@ var Modal = ({
|
|
|
269
269
|
)
|
|
270
270
|
);
|
|
271
271
|
};
|
|
272
|
+
|
|
273
|
+
// src/components/ProgressBar/ProgressBar.jsx
|
|
274
|
+
import React9 from "react";
|
|
275
|
+
var ProgressBar = ({
|
|
276
|
+
progress = 50,
|
|
277
|
+
height = "20px",
|
|
278
|
+
bgColor = "#2563eb",
|
|
279
|
+
trackColor = "#d1d5db",
|
|
280
|
+
radius = "10px",
|
|
281
|
+
label = "Progress",
|
|
282
|
+
textColor = "#ffffff"
|
|
283
|
+
}) => {
|
|
284
|
+
return /* @__PURE__ */ React9.createElement("div", { style: { width: "100%", background: trackColor, borderRadius: radius, overflow: "hidden" } }, /* @__PURE__ */ React9.createElement("div", { style: {
|
|
285
|
+
width: progress + "%",
|
|
286
|
+
height,
|
|
287
|
+
background: bgColor,
|
|
288
|
+
borderRadius: radius,
|
|
289
|
+
display: "flex",
|
|
290
|
+
alignItems: "center",
|
|
291
|
+
justifyContent: "center",
|
|
292
|
+
position: "relative"
|
|
293
|
+
} }, /* @__PURE__ */ React9.createElement("span", { style: { color: textColor, fontWeight: "600", fontSize: "14px" } }, label, ": ", progress, "%")));
|
|
294
|
+
};
|
|
295
|
+
|
|
296
|
+
// src/components/AnimatedButton/AnimatedButton.jsx
|
|
297
|
+
import React10 from "react";
|
|
298
|
+
var AnimatedButton = ({
|
|
299
|
+
text = "Click Me",
|
|
300
|
+
gradient = "linear-gradient(45deg, #2563eb, #7c3aed)",
|
|
301
|
+
color = "white",
|
|
302
|
+
size = "md",
|
|
303
|
+
width = "auto",
|
|
304
|
+
radius = "12px",
|
|
305
|
+
shadow = "0 4px 14px rgba(0, 0, 0, 0.2)",
|
|
306
|
+
loading = false,
|
|
307
|
+
onClick
|
|
308
|
+
}) => {
|
|
309
|
+
const sizes = { sm: "8px 16px", md: "12px 24px", lg: "16px 32px" };
|
|
310
|
+
const handleMouseEnter = (e) => {
|
|
311
|
+
e.target.style.transform = "scale(1.05)";
|
|
312
|
+
};
|
|
313
|
+
const handleMouseLeave = (e) => {
|
|
314
|
+
e.target.style.transform = "scale(1)";
|
|
315
|
+
};
|
|
316
|
+
return /* @__PURE__ */ React10.createElement(
|
|
317
|
+
"button",
|
|
318
|
+
{
|
|
319
|
+
onClick,
|
|
320
|
+
onMouseEnter: handleMouseEnter,
|
|
321
|
+
onMouseLeave: handleMouseLeave,
|
|
322
|
+
disabled: loading,
|
|
323
|
+
style: {
|
|
324
|
+
background: gradient,
|
|
325
|
+
color,
|
|
326
|
+
padding: sizes[size],
|
|
327
|
+
width,
|
|
328
|
+
border: "none",
|
|
329
|
+
borderRadius: radius,
|
|
330
|
+
boxShadow: shadow,
|
|
331
|
+
cursor: loading ? "not-allowed" : "pointer",
|
|
332
|
+
fontWeight: "600",
|
|
333
|
+
fontSize: "15px",
|
|
334
|
+
transition: "transform 0.3s, box-shadow 0.3s",
|
|
335
|
+
fontFamily: "system-ui, sans-serif",
|
|
336
|
+
opacity: loading ? 0.6 : 1,
|
|
337
|
+
display: "flex",
|
|
338
|
+
alignItems: "center",
|
|
339
|
+
justifyContent: "center",
|
|
340
|
+
gap: "8px"
|
|
341
|
+
}
|
|
342
|
+
},
|
|
343
|
+
loading ? "Loading..." : text
|
|
344
|
+
);
|
|
345
|
+
};
|
|
272
346
|
export {
|
|
273
347
|
Alert,
|
|
348
|
+
AnimatedButton,
|
|
274
349
|
Avatar,
|
|
275
350
|
Badge,
|
|
276
351
|
Button,
|
|
277
352
|
Card,
|
|
278
353
|
Input,
|
|
279
354
|
Modal,
|
|
355
|
+
ProgressBar,
|
|
280
356
|
Spinner
|
|
281
357
|
};
|