evelearn-theme 1.0.3 → 1.0.4
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 +4 -0
- package/dist/index.js +15 -18
- package/dist/index.mjs +15 -18
- package/package.json +1 -1
package/README.md
ADDED
package/dist/index.js
CHANGED
|
@@ -320,7 +320,6 @@ var Button_default = Button;
|
|
|
320
320
|
|
|
321
321
|
// src/Button/FunButton.tsx
|
|
322
322
|
var import_react2 = require("react");
|
|
323
|
-
var import_colors = __toESM(require("tailwindcss/dist/colors"));
|
|
324
323
|
var import_framer_motion = require("framer-motion");
|
|
325
324
|
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
326
325
|
var FunButton = ({
|
|
@@ -337,21 +336,21 @@ var FunButton = ({
|
|
|
337
336
|
const { front, bottom } = (0, import_react2.useMemo)(() => {
|
|
338
337
|
switch (color) {
|
|
339
338
|
case "primary":
|
|
340
|
-
return { bottom: "#00b4d8", front:
|
|
339
|
+
return { bottom: "#00b4d8", front: "#0284c7" };
|
|
341
340
|
case "red":
|
|
342
|
-
return { bottom: "#f00f0f", front:
|
|
341
|
+
return { bottom: "#f00f0f", front: "#b91c1c" };
|
|
343
342
|
case "green":
|
|
344
|
-
return { bottom:
|
|
343
|
+
return { bottom: "#22c55e", front: "#16a34a" };
|
|
345
344
|
case "purple":
|
|
346
|
-
return { bottom:
|
|
345
|
+
return { bottom: "#6366f1", front: "#4f46e5" };
|
|
347
346
|
case "teal":
|
|
348
|
-
return { bottom:
|
|
347
|
+
return { bottom: "#14b8a6", front: "#0d9488" };
|
|
349
348
|
case "cyan":
|
|
350
|
-
return { bottom:
|
|
349
|
+
return { bottom: "#06b6d4", front: "#0891b2" };
|
|
351
350
|
case "yellow":
|
|
352
|
-
return { bottom:
|
|
351
|
+
return { bottom: "#eab308", front: "#ca8a04" };
|
|
353
352
|
default:
|
|
354
|
-
return { bottom: "#00b4d8", front:
|
|
353
|
+
return { bottom: "#00b4d8", front: "#0369a1" };
|
|
355
354
|
}
|
|
356
355
|
}, [color]);
|
|
357
356
|
const classStyle = (0, import_react2.useMemo)(() => {
|
|
@@ -407,26 +406,25 @@ var FunButton_default = FunButton;
|
|
|
407
406
|
|
|
408
407
|
// src/Button/FunRoundButton.tsx
|
|
409
408
|
var import_react3 = require("react");
|
|
410
|
-
var import_colors2 = __toESM(require("tailwindcss/dist/colors"));
|
|
411
409
|
var import_framer_motion2 = require("framer-motion");
|
|
412
410
|
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
413
411
|
var FunRoundButton = ({ onClick, disabled, type, children, color, active, className, size = 44 }) => {
|
|
414
412
|
const { front, bottom } = (0, import_react3.useMemo)(() => {
|
|
415
413
|
switch (color) {
|
|
416
414
|
case "primary":
|
|
417
|
-
return { bottom: "#00b4d8", front:
|
|
415
|
+
return { bottom: "#00b4d8", front: "#0284c7" };
|
|
418
416
|
case "red":
|
|
419
417
|
return { bottom: disabled ? "hsl(340deg 100% 42%)" : "hsl(345deg 100% 47%)", front: disabled ? "hsl(340deg 100% 52%)" : "hsl(340deg 100% 32%)" };
|
|
420
418
|
case "green":
|
|
421
|
-
return { bottom: disabled ?
|
|
419
|
+
return { bottom: disabled ? "#86efac" : "#22c55e", front: disabled ? "#4ade80" : "#16a34a" };
|
|
422
420
|
case "purple":
|
|
423
|
-
return { bottom: disabled ?
|
|
421
|
+
return { bottom: disabled ? "#a5b4fc" : "#6366f1", front: disabled ? "#818cf8" : "#4f46e5" };
|
|
424
422
|
case "teal":
|
|
425
|
-
return { bottom: disabled ?
|
|
423
|
+
return { bottom: disabled ? "#5eead4" : "#14b8a6", front: disabled ? "#2dd4bf" : "#0d9488" };
|
|
426
424
|
case "yellow":
|
|
427
|
-
return { bottom: disabled ?
|
|
425
|
+
return { bottom: disabled ? "#fde047" : "#eab308", front: disabled ? "#facc15" : "#ca8a04" };
|
|
428
426
|
default:
|
|
429
|
-
return { bottom: disabled ?
|
|
427
|
+
return { bottom: disabled ? "#d1d5db" : "#00b4d8", front: disabled ? "#38bdf8" : "#0369a1" };
|
|
430
428
|
}
|
|
431
429
|
}, [color, disabled]);
|
|
432
430
|
return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
@@ -567,7 +565,6 @@ var RadioOption = ({ name, isLarge, labelText, option, onSelect }) => {
|
|
|
567
565
|
var RadioOption_default = RadioOption;
|
|
568
566
|
|
|
569
567
|
// src/Common/BottomAlert.tsx
|
|
570
|
-
var import_colors3 = __toESM(require("tailwindcss/dist/colors"));
|
|
571
568
|
var import_react_dom2 = __toESM(require("react-dom"));
|
|
572
569
|
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
573
570
|
var BottomAlert = ({ isDark, setDontShowAgain, dontShowAgain, title, borderColor, onDismissed, cancelText, confirmText, onConfirm, onCancel, isSingleAction, children, buttonColor }) => {
|
|
@@ -582,7 +579,7 @@ var BottomAlert = ({ isDark, setDontShowAgain, dontShowAgain, title, borderColor
|
|
|
582
579
|
background: isDark ? "rgba(0, 0, 0, 0.1)" : "rgba(255, 255, 255, 0.1)",
|
|
583
580
|
zIndex: 9999
|
|
584
581
|
},
|
|
585
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "absolute top-0 w-full h-screen flex justify-center bg-gray-200/90 dark:bg-slate-800/50", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "absolute sm:w-1/2 w-full mx-auto shadow-xl rounded-md p-6 flex z-50 flex-col top-24 bg-white dark:bg-slate-900 overflow-clip rounded-bl-lg rounded-br-lg border-b-8 border-b-blue-500", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { borderColor: borderColor ||
|
|
582
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "absolute top-0 w-full h-screen flex justify-center bg-gray-200/90 dark:bg-slate-800/50", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "absolute sm:w-1/2 w-full mx-auto shadow-xl rounded-md p-6 flex z-50 flex-col top-24 bg-white dark:bg-slate-900 overflow-clip rounded-bl-lg rounded-br-lg border-b-8 border-b-blue-500", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { borderColor: borderColor || "#0ea5e9" }, children: [
|
|
586
583
|
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { className: "font-semibold font-header text-gray-700 dark:text-gray-300 text-xl", children: title }),
|
|
587
584
|
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "mt-2 text-lg", children }),
|
|
588
585
|
setDontShowAgain ? /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex items-center space-x-1", children: [
|
package/dist/index.mjs
CHANGED
|
@@ -243,7 +243,6 @@ var Button_default = Button;
|
|
|
243
243
|
|
|
244
244
|
// src/Button/FunButton.tsx
|
|
245
245
|
import { useMemo } from "react";
|
|
246
|
-
import colors from "tailwindcss/dist/colors";
|
|
247
246
|
import { motion } from "framer-motion";
|
|
248
247
|
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
249
248
|
var FunButton = ({
|
|
@@ -260,21 +259,21 @@ var FunButton = ({
|
|
|
260
259
|
const { front, bottom } = useMemo(() => {
|
|
261
260
|
switch (color) {
|
|
262
261
|
case "primary":
|
|
263
|
-
return { bottom: "#00b4d8", front:
|
|
262
|
+
return { bottom: "#00b4d8", front: "#0284c7" };
|
|
264
263
|
case "red":
|
|
265
|
-
return { bottom: "#f00f0f", front:
|
|
264
|
+
return { bottom: "#f00f0f", front: "#b91c1c" };
|
|
266
265
|
case "green":
|
|
267
|
-
return { bottom:
|
|
266
|
+
return { bottom: "#22c55e", front: "#16a34a" };
|
|
268
267
|
case "purple":
|
|
269
|
-
return { bottom:
|
|
268
|
+
return { bottom: "#6366f1", front: "#4f46e5" };
|
|
270
269
|
case "teal":
|
|
271
|
-
return { bottom:
|
|
270
|
+
return { bottom: "#14b8a6", front: "#0d9488" };
|
|
272
271
|
case "cyan":
|
|
273
|
-
return { bottom:
|
|
272
|
+
return { bottom: "#06b6d4", front: "#0891b2" };
|
|
274
273
|
case "yellow":
|
|
275
|
-
return { bottom:
|
|
274
|
+
return { bottom: "#eab308", front: "#ca8a04" };
|
|
276
275
|
default:
|
|
277
|
-
return { bottom: "#00b4d8", front:
|
|
276
|
+
return { bottom: "#00b4d8", front: "#0369a1" };
|
|
278
277
|
}
|
|
279
278
|
}, [color]);
|
|
280
279
|
const classStyle = useMemo(() => {
|
|
@@ -330,26 +329,25 @@ var FunButton_default = FunButton;
|
|
|
330
329
|
|
|
331
330
|
// src/Button/FunRoundButton.tsx
|
|
332
331
|
import { useMemo as useMemo2 } from "react";
|
|
333
|
-
import colors2 from "tailwindcss/dist/colors";
|
|
334
332
|
import { motion as motion2 } from "framer-motion";
|
|
335
333
|
import { jsx as jsx7 } from "react/jsx-runtime";
|
|
336
334
|
var FunRoundButton = ({ onClick, disabled, type, children, color, active, className, size = 44 }) => {
|
|
337
335
|
const { front, bottom } = useMemo2(() => {
|
|
338
336
|
switch (color) {
|
|
339
337
|
case "primary":
|
|
340
|
-
return { bottom: "#00b4d8", front:
|
|
338
|
+
return { bottom: "#00b4d8", front: "#0284c7" };
|
|
341
339
|
case "red":
|
|
342
340
|
return { bottom: disabled ? "hsl(340deg 100% 42%)" : "hsl(345deg 100% 47%)", front: disabled ? "hsl(340deg 100% 52%)" : "hsl(340deg 100% 32%)" };
|
|
343
341
|
case "green":
|
|
344
|
-
return { bottom: disabled ?
|
|
342
|
+
return { bottom: disabled ? "#86efac" : "#22c55e", front: disabled ? "#4ade80" : "#16a34a" };
|
|
345
343
|
case "purple":
|
|
346
|
-
return { bottom: disabled ?
|
|
344
|
+
return { bottom: disabled ? "#a5b4fc" : "#6366f1", front: disabled ? "#818cf8" : "#4f46e5" };
|
|
347
345
|
case "teal":
|
|
348
|
-
return { bottom: disabled ?
|
|
346
|
+
return { bottom: disabled ? "#5eead4" : "#14b8a6", front: disabled ? "#2dd4bf" : "#0d9488" };
|
|
349
347
|
case "yellow":
|
|
350
|
-
return { bottom: disabled ?
|
|
348
|
+
return { bottom: disabled ? "#fde047" : "#eab308", front: disabled ? "#facc15" : "#ca8a04" };
|
|
351
349
|
default:
|
|
352
|
-
return { bottom: disabled ?
|
|
350
|
+
return { bottom: disabled ? "#d1d5db" : "#00b4d8", front: disabled ? "#38bdf8" : "#0369a1" };
|
|
353
351
|
}
|
|
354
352
|
}, [color, disabled]);
|
|
355
353
|
return /* @__PURE__ */ jsx7(
|
|
@@ -490,7 +488,6 @@ var RadioOption = ({ name, isLarge, labelText, option, onSelect }) => {
|
|
|
490
488
|
var RadioOption_default = RadioOption;
|
|
491
489
|
|
|
492
490
|
// src/Common/BottomAlert.tsx
|
|
493
|
-
import colors3 from "tailwindcss/dist/colors";
|
|
494
491
|
import ReactDOM2 from "react-dom";
|
|
495
492
|
import { jsx as jsx11, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
496
493
|
var BottomAlert = ({ isDark, setDontShowAgain, dontShowAgain, title, borderColor, onDismissed, cancelText, confirmText, onConfirm, onCancel, isSingleAction, children, buttonColor }) => {
|
|
@@ -505,7 +502,7 @@ var BottomAlert = ({ isDark, setDontShowAgain, dontShowAgain, title, borderColor
|
|
|
505
502
|
background: isDark ? "rgba(0, 0, 0, 0.1)" : "rgba(255, 255, 255, 0.1)",
|
|
506
503
|
zIndex: 9999
|
|
507
504
|
},
|
|
508
|
-
children: /* @__PURE__ */ jsx11("div", { className: "absolute top-0 w-full h-screen flex justify-center bg-gray-200/90 dark:bg-slate-800/50", children: /* @__PURE__ */ jsx11("div", { className: "absolute sm:w-1/2 w-full mx-auto shadow-xl rounded-md p-6 flex z-50 flex-col top-24 bg-white dark:bg-slate-900 overflow-clip rounded-bl-lg rounded-br-lg border-b-8 border-b-blue-500", children: /* @__PURE__ */ jsxs4("div", { style: { borderColor: borderColor ||
|
|
505
|
+
children: /* @__PURE__ */ jsx11("div", { className: "absolute top-0 w-full h-screen flex justify-center bg-gray-200/90 dark:bg-slate-800/50", children: /* @__PURE__ */ jsx11("div", { className: "absolute sm:w-1/2 w-full mx-auto shadow-xl rounded-md p-6 flex z-50 flex-col top-24 bg-white dark:bg-slate-900 overflow-clip rounded-bl-lg rounded-br-lg border-b-8 border-b-blue-500", children: /* @__PURE__ */ jsxs4("div", { style: { borderColor: borderColor || "#0ea5e9" }, children: [
|
|
509
506
|
/* @__PURE__ */ jsx11("h3", { className: "font-semibold font-header text-gray-700 dark:text-gray-300 text-xl", children: title }),
|
|
510
507
|
/* @__PURE__ */ jsx11("div", { className: "mt-2 text-lg", children }),
|
|
511
508
|
setDontShowAgain ? /* @__PURE__ */ jsxs4("div", { className: "flex items-center space-x-1", children: [
|