@xscriptor/xcomponents 0.1.1 → 0.1.2
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/{chunk-TKT37LIX.mjs → chunk-BXVG4SYP.mjs} +101 -39
- package/dist/chunk-BXVG4SYP.mjs.map +7 -0
- package/dist/{chunk-UROP4J6G.mjs → chunk-FW47JGYZ.mjs} +122 -29
- package/dist/chunk-FW47JGYZ.mjs.map +7 -0
- package/dist/{chunk-34NJCJUI.mjs → chunk-IK2UCTCM.mjs} +46 -15
- package/dist/chunk-IK2UCTCM.mjs.map +7 -0
- package/dist/{chunk-2H7TVDE7.mjs → chunk-WE7QZGVP.mjs} +45 -14
- package/dist/chunk-WE7QZGVP.mjs.map +7 -0
- package/dist/{chunk-MYFPSHSQ.mjs → chunk-XB3UGHSF.mjs} +94 -32
- package/dist/chunk-XB3UGHSF.mjs.map +7 -0
- package/dist/{chunk-TG3B4GAW.mjs → chunk-ZDMG7X6H.mjs} +57 -26
- package/dist/{chunk-TG3B4GAW.mjs.map → chunk-ZDMG7X6H.mjs.map} +4 -4
- package/dist/components/content/index.css +64 -65
- package/dist/components/content/index.css.map +4 -4
- package/dist/components/content/index.js +45 -14
- package/dist/components/content/index.js.map +4 -4
- package/dist/components/content/index.mjs +1 -1
- package/dist/components/forms/index.css +113 -115
- package/dist/components/forms/index.css.map +4 -4
- package/dist/components/forms/index.js +100 -38
- package/dist/components/forms/index.js.map +4 -4
- package/dist/components/forms/index.mjs +1 -1
- package/dist/components/gallery/index.css +107 -110
- package/dist/components/gallery/index.css.map +4 -4
- package/dist/components/gallery/index.js +93 -31
- package/dist/components/gallery/index.js.map +4 -4
- package/dist/components/gallery/index.mjs +1 -1
- package/dist/components/index.css +536 -534
- package/dist/components/index.css.map +4 -4
- package/dist/components/index.js +459 -149
- package/dist/components/index.js.map +4 -4
- package/dist/components/index.mjs +6 -6
- package/dist/components/layout/index.css +89 -81
- package/dist/components/layout/index.css.map +4 -4
- package/dist/components/layout/index.js +121 -28
- package/dist/components/layout/index.js.map +4 -4
- package/dist/components/layout/index.mjs +1 -1
- package/dist/components/navigation/index.css +120 -120
- package/dist/components/navigation/index.css.map +4 -4
- package/dist/components/navigation/index.js +56 -25
- package/dist/components/navigation/index.js.map +4 -4
- package/dist/components/navigation/index.mjs +1 -1
- package/dist/components/social/index.css +43 -43
- package/dist/components/social/index.css.map +4 -4
- package/dist/components/social/index.js +44 -13
- package/dist/components/social/index.js.map +4 -4
- package/dist/components/social/index.mjs +1 -1
- package/dist/index.css +536 -534
- package/dist/index.css.map +4 -4
- package/dist/index.js +459 -149
- package/dist/index.js.map +4 -4
- package/dist/index.mjs +6 -6
- package/package.json +2 -1
- package/dist/chunk-2H7TVDE7.mjs.map +0 -7
- package/dist/chunk-34NJCJUI.mjs.map +0 -7
- package/dist/chunk-MYFPSHSQ.mjs.map +0 -7
- package/dist/chunk-TKT37LIX.mjs.map +0 -7
- package/dist/chunk-UROP4J6G.mjs.map +0 -7
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["../../../src/components/forms/index.ts", "../../../src/components/forms/xcontactform/XContactForm.tsx", "../../../src/components/forms/xcontactform/XContactForm.module.css", "../../../src/components/forms/xnewsletter/XNewsletter.tsx", "../../../src/components/forms/xnewsletter/XNewsletter.module.css"],
|
|
4
|
-
"sourcesContent": ["export { XContactForm } from \"./xcontactform\";\nexport { XNewsletter } from \"./xnewsletter\";\nexport type { XContactFormProps } from \"./xcontactform\";\nexport type { XNewsletterProps } from \"./xnewsletter\";\n", "\"use client\";\n\nimport { useState } from \"react\";\nimport styles from \"./XContactForm.module.css\";\n\ntype Status = { ok: boolean; msg: string } | null;\n\nexport interface XContactFormProps {\n // Visibilidad\n showName?: boolean;\n showEmail?: boolean;\n showPhone?: boolean;\n showSubject?: boolean;\n showMessage?: boolean;\n \n // Placeholders\n namePlaceholder?: string;\n emailPlaceholder?: string;\n phonePlaceholder?: string;\n subjectPlaceholder?: string;\n messagePlaceholder?: string;\n\n // Dise\u00F1o\n labelColor?: string;\n wrapperBackgroundColor?: string;\n wrapperBorderColor?: string;\n wrapperBorderWidth?: string;\n wrapperBorderRadius?: \"rounded\" | \"square\";\n wrapperBorderStyle?: \"solid\" | \"dashed\" | \"dotted\";\n fieldBorderColor?: string;\n fieldBorderWidth?: string;\n fieldBorderRadius?: \"rounded\" | \"square\";\n fieldBorderStyle?: \"solid\" | \"dashed\" | \"dotted\";\n buttonColor?: string;\n buttonBorderColor?: string;\n buttonBorderWidth?: string;\n buttonBorderRadius?: \"rounded\" | \"square\";\n buttonBorderStyle?: \"solid\" | \"dashed\" | \"dotted\";\n buttonHoverColor?: string;\n buttonHoverTextColor?: string;\n buttonHoverBorderColor?: string;\n buttonTextColor?: string;\n buttonAlignment?: \"left\" | \"right\";\n\n // Mensajes de estado\n requiredFieldsMessage?: string;\n honeypotMessage?: string;\n submitSuccessMessage?: string;\n statusSuccessColor?: string;\n statusErrorColor?: string;\n\n // Decorativos\n decorativeX?: boolean;\n decorativeXColor?: string;\n\n size?: \"small\" | \"medium\" | \"large\";\n layout?: \"vertical\" | \"grid\";\n}\n\nexport default function XContactForm({\n showName = true,\n showEmail = true,\n showPhone = true,\n showSubject = true,\n showMessage = true,\n namePlaceholder = \"Tu nombre\",\n emailPlaceholder = \"tucorreo@ejemplo.com\",\n phonePlaceholder = \"+34 600 000 000\",\n subjectPlaceholder = \"Tema del mensaje\",\n messagePlaceholder = \"Cu\u00E9ntame qu\u00E9 necesitas\u2026\",\n labelColor,\n wrapperBackgroundColor,\n wrapperBorderColor,\n wrapperBorderWidth,\n wrapperBorderRadius = \"rounded\",\n wrapperBorderStyle = \"solid\",\n fieldBorderColor,\n fieldBorderWidth,\n fieldBorderRadius = \"rounded\",\n fieldBorderStyle = \"solid\",\n buttonColor,\n buttonBorderColor,\n buttonBorderWidth,\n buttonBorderRadius = \"rounded\",\n buttonBorderStyle = \"solid\",\n buttonHoverColor,\n buttonHoverTextColor,\n buttonHoverBorderColor,\n buttonTextColor,\n buttonAlignment = \"left\",\n requiredFieldsMessage = \"Rellena los campos obligatorios.\",\n honeypotMessage = \"Gracias.\",\n submitSuccessMessage = \"Abriendo tu aplicaci\u00F3n de correo\u2026\",\n statusSuccessColor,\n statusErrorColor,\n decorativeX = false,\n decorativeXColor = \"currentColor\",\n size = \"medium\",\n layout = \"grid\",\n}: XContactFormProps) {\n const [status, setStatus] = useState<Status>(null);\n\n function onSubmit(e: React.FormEvent<HTMLFormElement>) {\n e.preventDefault();\n setStatus(null);\n\n const form = e.currentTarget;\n const fd = new FormData(form);\n\n if ((fd.get(\"website\") as string)?.length) {\n setStatus({ ok: true, msg: honeypotMessage });\n form.reset();\n return;\n }\n\n const name = showName ? String(fd.get(\"name\") || \"\").trim() : \"\";\n const email = showEmail ? String(fd.get(\"email\") || \"\").trim() : \"\";\n const phone = showPhone ? String(fd.get(\"phone\") || \"\").trim() : \"\";\n const subject = showSubject\n ? String(fd.get(\"subject\") || \"Contacto desde web\").trim()\n : \"Contacto desde web\";\n const message = showMessage ? String(fd.get(\"message\") || \"\").trim() : \"\";\n\n if (\n (showName && !name) ||\n (showEmail && !email) ||\n (showPhone && !phone) ||\n (showMessage && !message)\n ) {\n setStatus({ ok: false, msg: requiredFieldsMessage });\n return;\n }\n\n const bodyLines = [];\n if (showName) bodyLines.push(`Nombre: ${name}`);\n if (showEmail) bodyLines.push(`Email: ${email}`);\n if (showPhone) bodyLines.push(`Tel\u00E9fono: ${phone}`);\n bodyLines.push(\"\");\n if (showMessage) bodyLines.push(message);\n\n const body = bodyLines.join(\"\\n\");\n const to = \"x@xscriptor.com\";\n const mailto = `mailto:${encodeURIComponent(to)}?subject=${encodeURIComponent(\n subject\n )}&body=${encodeURIComponent(body)}`;\n\n window.location.href = mailto;\n setStatus({ ok: true, msg: submitSuccessMessage });\n }\n\n const radiusMap = {\n rounded: \"0.5rem\",\n square: \"0\",\n } as const;\n\n const alignmentMap = {\n left: \"flex-start\",\n right: \"flex-end\",\n } as const;\n\n // Variables CSS din\u00E1micas para estilos configurables\n const customStyles = {\n ...(decorativeXColor && { \"--decorative-x-color\": decorativeXColor }),\n ...(labelColor && { \"--label-color\": labelColor }),\n ...(wrapperBackgroundColor && { \"--wrapper-bg-color\": wrapperBackgroundColor }),\n ...(wrapperBorderColor && { \"--wrapper-border-color\": wrapperBorderColor }),\n ...(wrapperBorderWidth && { \"--wrapper-border-width\": wrapperBorderWidth }),\n \"--wrapper-radius\": radiusMap[wrapperBorderRadius],\n \"--wrapper-border-style\": wrapperBorderStyle,\n ...(fieldBorderColor && { \"--field-border-color\": fieldBorderColor }),\n ...(fieldBorderWidth && { \"--field-border-width\": fieldBorderWidth }),\n \"--field-radius\": radiusMap[fieldBorderRadius],\n \"--field-border-style\": fieldBorderStyle,\n ...(buttonColor && { \"--btn-bg-color\": buttonColor }),\n ...(buttonBorderColor && { \"--btn-border-color\": buttonBorderColor }),\n ...(buttonBorderWidth && { \"--btn-border-width\": buttonBorderWidth }),\n \"--btn-radius\": radiusMap[buttonBorderRadius],\n \"--btn-border-style\": buttonBorderStyle,\n \"--btn-alignment\": alignmentMap[buttonAlignment],\n ...(buttonHoverColor && { \"--btn-hover-bg-color\": buttonHoverColor }),\n ...(buttonHoverTextColor && { \"--btn-hover-text-color\": buttonHoverTextColor }),\n ...(buttonHoverBorderColor && { \"--btn-hover-border-color\": buttonHoverBorderColor }),\n ...(buttonTextColor && { \"--btn-text-color\": buttonTextColor }),\n ...(statusSuccessColor && { \"--status-ok-color\": statusSuccessColor }),\n ...(statusErrorColor && { \"--status-error-color\": statusErrorColor }),\n } as React.CSSProperties;\n\n return (\n <div className={`${styles.wrapper} ${styles[size]} ${decorativeX ? styles.withDecorativeX : \"\"}`} style={customStyles}>\n {decorativeX && <div className={styles.decorativeXTop}>\u2715</div>}\n <form onSubmit={onSubmit} className={`${styles.form} ${styles[layout]}`} noValidate>\n <div className={styles.honeypot} aria-hidden=\"true\">\n <label htmlFor=\"website\">Tu web</label>\n <input id=\"website\" name=\"website\" type=\"text\" tabIndex={-1} autoComplete=\"off\" />\n </div>\n\n {(showName || showEmail || showPhone) && (\n <div className={styles.row}>\n {showName && (\n <div className={styles.field}>\n <label htmlFor=\"name\">Nombre</label>\n <input id=\"name\" name=\"name\" type=\"text\" placeholder={namePlaceholder} required maxLength={80} />\n </div>\n )}\n {showEmail && (\n <div className={styles.field}>\n <label htmlFor=\"email\">Email</label>\n <input id=\"email\" name=\"email\" type=\"email\" inputMode=\"email\" placeholder={emailPlaceholder} required />\n </div>\n )}\n {showPhone && (\n <div className={styles.field}>\n <label htmlFor=\"phone\">Tel\u00E9fono</label>\n <input id=\"phone\" name=\"phone\" type=\"tel\" inputMode=\"tel\" placeholder={phonePlaceholder} required maxLength={20} />\n </div>\n )}\n </div>\n )}\n\n {showSubject && (\n <div className={styles.field}>\n <label htmlFor=\"subject\">Asunto</label>\n <input id=\"subject\" name=\"subject\" type=\"text\" placeholder={subjectPlaceholder} required maxLength={120} />\n </div>\n )}\n\n {showMessage && (\n <div className={styles.field}>\n <label htmlFor=\"message\">Mensaje</label>\n <textarea id=\"message\" name=\"message\" rows={6} placeholder={messagePlaceholder} required maxLength={3000} />\n </div>\n )}\n\n <div className={styles.buttoncontainer}>\n <button type=\"submit\" className={styles.button}>\n Enviar\n </button>\n </div>\n\n <p className={`${styles.status} ${status?.ok ? styles.statusOk : status === null ? \"\" : styles.statusError}`} role=\"status\" aria-live=\"polite\">\n {status?.msg}\n </p>\n </form>\n {decorativeX && <div className={styles.decorativeXBottom}>\u2715</div>}\n </div>\n );\n}", "/* Tama\u00F1os din\u00E1micos base */\n.wrapper {\n --input-padding: .65rem .9rem;\n --font-size: 16px;\n --form-gap: 1.25rem;\n --row-gap: .85rem;\n --field-gap: .45rem;\n --button-min-width: 140px;\n --label-color: inherit;\n --wrapper-bg-color: transparent;\n --wrapper-border-color: transparent;\n --wrapper-border-width: 0px;\n --wrapper-border-style: solid;\n --wrapper-radius: .5rem;\n --field-border-color: var(--border, #ccc);\n --field-border-width: 1px;\n --field-border-style: solid;\n --field-radius: .5rem;\n --btn-bg-color: var(--bg, #333);\n --btn-text-color: var(--text, #fff);\n --btn-border-color: transparent;\n --btn-border-width: 0px;\n --btn-border-style: solid;\n --btn-radius: .5rem;\n --btn-alignment: flex-start;\n --btn-hover-bg-color: var(--btn-bg-color);\n --btn-hover-text-color: var(--btn-text-color);\n --btn-hover-border-color: var(--btn-border-color);\n --status-ok-color: #1fa37a;\n --status-error-color: #d16a6a;\n \n max-width: 900px;\n margin: 0 auto;\n padding: 2rem 1rem;\n background-color: var(--wrapper-bg-color);\n border: var(--wrapper-border-width) var(--wrapper-border-style) var(--wrapper-border-color);\n border-radius: var(--wrapper-radius);\n}\n\n/* Modificadores de tama\u00F1o */\n.small {\n --input-padding: .35rem .55rem;\n --font-size: 13px;\n --form-gap: .75rem;\n --row-gap: .6rem;\n --field-gap: .3rem;\n --button-min-width: 118px;\n}\n.medium {\n --input-padding: .5rem .7rem;\n --font-size: 15px;\n --form-gap: 1rem;\n --row-gap: .7rem;\n --field-gap: .4rem;\n --button-min-width: 130px;\n}\n.large {\n --input-padding: 1rem 1.2rem;\n --font-size: 18px;\n --form-gap: 1.5rem;\n --row-gap: 1rem;\n --field-gap: .5rem;\n --button-min-width: 150px;\n}\n\n.form {\n display: grid;\n gap: var(--form-gap);\n max-width: 100%;\n}\n\n/* Layouts */\n.row {\n display: grid;\n gap: var(--row-gap);\n}\n\n.grid .row {\n grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n}\n\n.vertical .row {\n grid-template-columns: 1fr;\n}\n\n.field {\n display: flex;\n flex-direction: column;\n gap: var(--field-gap);\n}\n\n.field label {\n font-size: calc(var(--font-size) - 2px);\n font-weight: 500;\n color: var(--label-color);\n}\n\n.field input,\n.field textarea {\n width: 100%;\n padding: var(--input-padding);\n border: var(--field-border-width) var(--field-border-style) var(--field-border-color);\n border-radius: var(--field-radius);\n font-size: var(--font-size);\n box-sizing: border-box;\n font-family: inherit;\n}\n\n.field input::placeholder,\n.field textarea::placeholder {\n color: #888;\n}\n\n.buttoncontainer {\n display: flex;\n justify-content: var(--btn-alignment);\n margin-top: 0.25rem;\n}\n\n.button {\n padding: var(--input-padding);\n border-radius: var(--btn-radius);\n border: var(--btn-border-width) var(--btn-border-style) var(--btn-border-color);\n background-color: var(--btn-bg-color);\n color: var(--btn-text-color);\n cursor: pointer;\n font-size: var(--font-size);\n font-weight: 600;\n min-width: var(--button-min-width);\n transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;\n}\n\n.button:hover {\n background-color: var(--btn-hover-bg-color);\n color: var(--btn-hover-text-color);\n border-color: var(--btn-hover-border-color);\n opacity: 0.95;\n}\n\n.status {\n min-height: 1.5rem;\n font-size: calc(var(--font-size) - 2px);\n margin-top: 0.25rem;\n}\n\n.statusOk { color: var(--status-ok-color); }\n.statusError { color: var(--status-error-color); }\n\n.honeypot {\n position: absolute;\n left: -9999px;\n top: -9999px;\n}\n\n.withDecorativeX {\n position: relative;\n padding-top: 2.5rem;\n padding-bottom: 2.5rem;\n}\n\n.decorativeXTop,\n.decorativeXBottom {\n position: absolute;\n left: 50%;\n transform: translateX(-50%);\n font-size: 0.5rem;\n font-weight: 300;\n color: var(--decorative-x-color, currentColor);\n opacity: 1;\n pointer-events: none;\n background-color: var(--wrapper-bg-color, transparent);\n padding: 0 0.3rem;\n line-height: 1;\n z-index: 1;\n}\n\n.decorativeXTop {\n top: 0;\n transform: translate(-50%, -50%);\n}\n\n.decorativeXBottom {\n bottom: 0;\n transform: translate(-50%, 50%);\n}", "\"use client\";\n\nimport { useState } from \"react\";\nimport Link from \"next/link\";\nimport styles from \"./XNewsletter.module.css\";\n\nexport interface XNewsletterProps {\n title?: string;\n placeholder?: string;\n buttonText?: string;\n termsText?: string;\n termsLinkText?: string;\n successMessage?: string;\n errorMessage?: string;\n termsErrorMessage?: string;\n termsLink?: string;\n apiRoute: string;\n method?: \"POST\" | \"GET\" | \"PUT\";\n payloadType?: \"formData\" | \"json\";\n layout?: \"horizontal\" | \"vertical\";\n accentColor?: string;\n textColor?: string;\n borderColor?: string;\n buttonTextColor?: string;\n containerClassName?: string; // Para clases extra desde afuera si las necesitas\n}\n\nexport default function XNewsletter({\n title = \"Recibe poes\u00EDa y reflexiones\",\n placeholder = \"tu@email.com\",\n buttonText = \"Suscribirse\",\n termsText = \"Acepto\",\n termsLinkText = \"t\u00E9rminos\",\n successMessage = \"\u00A1Bienvenido(a)!\",\n errorMessage = \"Algo sali\u00F3 mal. Por favor, intenta de nuevo.\",\n termsErrorMessage = \"Debes aceptar los t\u00E9rminos y condiciones para suscribirte...\",\n termsLink = \"/terminos-y-condiciones\",\n apiRoute,\n method = \"POST\",\n payloadType = \"formData\",\n layout = \"horizontal\",\n accentColor = \"var(--accent)\",\n textColor = \"var(--text)\",\n borderColor = \"var(--border)\",\n buttonTextColor = \"var(--accent-text)\",\n containerClassName = \"w-full max-w-4xl mx-auto px-4 py-6\",\n}: XNewsletterProps) {\n const [email, setEmail] = useState(\"\");\n const [acceptedTerms, setAcceptedTerms] = useState(false);\n const [message, setMessage] = useState(\"\");\n const [isLoading, setIsLoading] = useState(false);\n\n const handleSubmit = async (e: React.FormEvent) => {\n e.preventDefault();\n setMessage(\"\");\n\n if (!acceptedTerms) {\n setMessage(termsErrorMessage);\n return;\n }\n\n setIsLoading(true);\n\n try {\n let bodyData: BodyInit | null | undefined = null;\n let headers: HeadersInit = {};\n\n if (payloadType === \"formData\") {\n const formData = new FormData();\n formData.append(\"email\", email);\n bodyData = formData;\n } else if (payloadType === \"json\") {\n bodyData = JSON.stringify({ email });\n headers = { \"Content-Type\": \"application/json\" };\n }\n\n const response = await fetch(apiRoute, {\n method,\n headers,\n body: method !== \"GET\" ? bodyData : undefined,\n cache: \"no-store\",\n });\n\n const data = await response.json();\n\n if (response.ok && data.success) {\n setMessage(data.message || successMessage);\n setEmail(\"\");\n setAcceptedTerms(false);\n } else {\n setMessage(data.error || errorMessage);\n }\n } catch {\n setMessage(errorMessage);\n } finally {\n setIsLoading(false);\n }\n };\n\n // Convertimos las props de colores a Variables CSS nativas.\n const customCssVariables = {\n \"--nws-accent\": accentColor,\n \"--nws-text\": textColor,\n \"--nws-border\": borderColor,\n \"--nws-btn-text\": buttonTextColor,\n } as React.CSSProperties;\n\n return (\n <div\n className={`${styles.container} ${containerClassName}`}\n style={customCssVariables}\n >\n <form\n onSubmit={handleSubmit}\n className={`${styles.form} ${styles[layout]}`}\n >\n {/* T\u00EDtulo */}\n {title && <span className={styles.title}>{title}</span>}\n\n {/* Input */}\n <input\n type=\"email\"\n placeholder={placeholder}\n className={styles.input}\n aria-label=\"email\"\n value={email}\n onChange={(e) => setEmail(e.target.value)}\n required\n disabled={isLoading}\n />\n\n {/* Grupo Acciones (Checkbox + Bot\u00F3n) */}\n <div\n className={`${styles.actions} ${\n layout === \"horizontal\"\n ? styles.actionsHorizontal\n : styles.actionsVertical\n }`}\n >\n {/* Checkbox */}\n <label className={styles.checkboxLabel}>\n <input\n type=\"checkbox\"\n className={styles.checkbox}\n checked={acceptedTerms}\n onChange={(e) => setAcceptedTerms(e.target.checked)}\n required\n disabled={isLoading}\n />\n <span>\n {termsText}{\" \"}\n <Link\n href={termsLink}\n target=\"_blank\"\n rel=\"noopener noreferrer\"\n className={styles.termsLink}\n >\n {termsLinkText}\n </Link>\n </span>\n </label>\n\n {/* Bot\u00F3n */}\n <button\n type=\"submit\"\n disabled={isLoading}\n className={styles.button}\n >\n {isLoading ? \"Enviando...\" : buttonText}\n </button>\n </div>\n </form>\n\n {/* Mensaje */}\n {message && (\n <p\n className={`${styles.message} ${\n layout === \"horizontal\"\n ? styles.messageHorizontal\n : styles.messageVertical\n }`}\n >\n {message}\n </p>\n )}\n </div>\n );\n}", "/* XNewsletter.module.css */\n\n.container {\n /* Estas variables recibir\u00E1n sus valores desde React */\n --nws-accent: var(--accent);\n --nws-text: var(--text);\n --nws-border: var(--border);\n --nws-btn-text: var(--accent-text);\n \n width: 100%;\n font-family: \"EB Garamond\", serif;\n}\n\n/* --- Layouts Base --- */\n.form {\n display: flex;\n gap: 1rem;\n}\n\n.horizontal {\n flex-direction: column;\n align-items: center;\n justify-content: center;\n}\n\n@media (min-width: 768px) {\n .horizontal {\n flex-direction: row;\n }\n}\n\n.vertical {\n flex-direction: column;\n align-items: flex-start;\n width: 100%;\n max-width: 24rem; /* equivalente a max-w-sm */\n margin: 0 auto;\n}\n\n/* --- Elementos --- */\n.title {\n font-size: 0.875rem;\n white-space: nowrap;\n font-weight: 500;\n color: var(--nws-text);\n}\n\n.input {\n width: 100%;\n padding: 0.5rem 1rem;\n font-size: 0.875rem;\n border-radius: 0.5rem;\n border: 1px solid var(--nws-border);\n background-color: transparent;\n outline: none;\n transition: border-color 0.2s ease;\n color: var(--nws-text);\n caret-color: var(--nws-accent);\n font-family: inherit;\n}\n\n.horizontal .input {\n /* En escritorio, el input horizontal es de tama\u00F1o fijo (md:w-64) */\n}\n@media (min-width: 768px) {\n .horizontal .input {\n width: 16rem; \n }\n}\n\n.input:focus {\n border-color: var(--nws-accent);\n}\n\n/* --- Checkbox y Bot\u00F3n --- */\n.actions {\n display: flex;\n gap: 1rem;\n}\n\n.actionsHorizontal {\n flex-direction: row;\n align-items: center;\n}\n\n.actionsVertical {\n flex-direction: column;\n align-items: flex-start;\n width: 100%;\n}\n\n.checkboxLabel {\n display: flex;\n align-items: center;\n gap: 0.5rem;\n font-size: 0.75rem;\n white-space: nowrap;\n cursor: pointer;\n color: var(--nws-text);\n}\n\n.checkboxLabel span {\n opacity: 0.7;\n}\n\n.checkbox {\n height: 0.875rem;\n width: 0.875rem;\n border-radius: 0.125rem;\n cursor: pointer;\n accent-color: var(--nws-accent);\n}\n\n.termsLink {\n text-decoration: underline;\n color: var(--nws-accent);\n transition: opacity 0.2s ease;\n}\n\n.termsLink:hover {\n opacity: 1;\n}\n\n.button {\n padding: 0.5rem 1rem;\n font-size: 0.875rem;\n border-radius: 0.5rem;\n border: 1px solid var(--nws-accent);\n color: var(--nws-accent);\n background-color: transparent;\n transition: all 0.2s ease;\n white-space: nowrap;\n cursor: pointer;\n}\n\n.button:hover:not(:disabled) {\n background-color: var(--nws-accent);\n color: var(--nws-btn-text);\n}\n\n.button:disabled, .input:disabled, .checkbox:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n}\n\n.actionsVertical .button {\n width: 100%;\n}\n\n/* --- Feedback Message --- */\n.message {\n margin-top: 0.75rem;\n font-size: 0.75rem;\n color: var(--nws-accent);\n}\n\n.messageHorizontal {\n text-align: center;\n}\n\n.messageVertical {\n text-align: left;\n}"],
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACEA,mBAAyB;;;
|
|
6
|
-
"names": ["
|
|
3
|
+
"sources": ["../../../src/components/forms/index.ts", "../../../src/components/forms/xcontactform/XContactForm.tsx", "esbuild-css-modules-plugin-ns-js::src/components/forms/xcontactform/XContactForm.module.css:injector.js", "../../../src/components/forms/xcontactform/XContactForm.module.css", "../../../src/components/forms/xnewsletter/XNewsletter.tsx", "esbuild-css-modules-plugin-ns-js::src/components/forms/xnewsletter/XNewsletter.module.css:injector.js", "../../../src/components/forms/xnewsletter/XNewsletter.module.css"],
|
|
4
|
+
"sourcesContent": ["export { XContactForm } from \"./xcontactform\";\nexport { XNewsletter } from \"./xnewsletter\";\nexport type { XContactFormProps } from \"./xcontactform\";\nexport type { XNewsletterProps } from \"./xnewsletter\";\n", "\"use client\";\n\nimport { useState } from \"react\";\nimport styles from \"./XContactForm.module.css\";\n\ntype Status = { ok: boolean; msg: string } | null;\n\nexport interface XContactFormProps {\n // Visibilidad\n showName?: boolean;\n showEmail?: boolean;\n showPhone?: boolean;\n showSubject?: boolean;\n showMessage?: boolean;\n \n // Placeholders\n namePlaceholder?: string;\n emailPlaceholder?: string;\n phonePlaceholder?: string;\n subjectPlaceholder?: string;\n messagePlaceholder?: string;\n\n // Dise\u00F1o\n labelColor?: string;\n wrapperBackgroundColor?: string;\n wrapperBorderColor?: string;\n wrapperBorderWidth?: string;\n wrapperBorderRadius?: \"rounded\" | \"square\";\n wrapperBorderStyle?: \"solid\" | \"dashed\" | \"dotted\";\n fieldBorderColor?: string;\n fieldBorderWidth?: string;\n fieldBorderRadius?: \"rounded\" | \"square\";\n fieldBorderStyle?: \"solid\" | \"dashed\" | \"dotted\";\n buttonColor?: string;\n buttonBorderColor?: string;\n buttonBorderWidth?: string;\n buttonBorderRadius?: \"rounded\" | \"square\";\n buttonBorderStyle?: \"solid\" | \"dashed\" | \"dotted\";\n buttonHoverColor?: string;\n buttonHoverTextColor?: string;\n buttonHoverBorderColor?: string;\n buttonTextColor?: string;\n buttonAlignment?: \"left\" | \"right\";\n\n // Mensajes de estado\n requiredFieldsMessage?: string;\n honeypotMessage?: string;\n submitSuccessMessage?: string;\n statusSuccessColor?: string;\n statusErrorColor?: string;\n\n // Decorativos\n decorativeX?: boolean;\n decorativeXColor?: string;\n\n size?: \"small\" | \"medium\" | \"large\";\n layout?: \"vertical\" | \"grid\";\n}\n\nexport default function XContactForm({\n showName = true,\n showEmail = true,\n showPhone = true,\n showSubject = true,\n showMessage = true,\n namePlaceholder = \"Tu nombre\",\n emailPlaceholder = \"tucorreo@ejemplo.com\",\n phonePlaceholder = \"+34 600 000 000\",\n subjectPlaceholder = \"Tema del mensaje\",\n messagePlaceholder = \"Cu\u00E9ntame qu\u00E9 necesitas\u2026\",\n labelColor,\n wrapperBackgroundColor,\n wrapperBorderColor,\n wrapperBorderWidth,\n wrapperBorderRadius = \"rounded\",\n wrapperBorderStyle = \"solid\",\n fieldBorderColor,\n fieldBorderWidth,\n fieldBorderRadius = \"rounded\",\n fieldBorderStyle = \"solid\",\n buttonColor,\n buttonBorderColor,\n buttonBorderWidth,\n buttonBorderRadius = \"rounded\",\n buttonBorderStyle = \"solid\",\n buttonHoverColor,\n buttonHoverTextColor,\n buttonHoverBorderColor,\n buttonTextColor,\n buttonAlignment = \"left\",\n requiredFieldsMessage = \"Rellena los campos obligatorios.\",\n honeypotMessage = \"Gracias.\",\n submitSuccessMessage = \"Abriendo tu aplicaci\u00F3n de correo\u2026\",\n statusSuccessColor,\n statusErrorColor,\n decorativeX = false,\n decorativeXColor = \"currentColor\",\n size = \"medium\",\n layout = \"grid\",\n}: XContactFormProps) {\n const [status, setStatus] = useState<Status>(null);\n\n function onSubmit(e: React.FormEvent<HTMLFormElement>) {\n e.preventDefault();\n setStatus(null);\n\n const form = e.currentTarget;\n const fd = new FormData(form);\n\n if ((fd.get(\"website\") as string)?.length) {\n setStatus({ ok: true, msg: honeypotMessage });\n form.reset();\n return;\n }\n\n const name = showName ? String(fd.get(\"name\") || \"\").trim() : \"\";\n const email = showEmail ? String(fd.get(\"email\") || \"\").trim() : \"\";\n const phone = showPhone ? String(fd.get(\"phone\") || \"\").trim() : \"\";\n const subject = showSubject\n ? String(fd.get(\"subject\") || \"Contacto desde web\").trim()\n : \"Contacto desde web\";\n const message = showMessage ? String(fd.get(\"message\") || \"\").trim() : \"\";\n\n if (\n (showName && !name) ||\n (showEmail && !email) ||\n (showPhone && !phone) ||\n (showMessage && !message)\n ) {\n setStatus({ ok: false, msg: requiredFieldsMessage });\n return;\n }\n\n const bodyLines = [];\n if (showName) bodyLines.push(`Nombre: ${name}`);\n if (showEmail) bodyLines.push(`Email: ${email}`);\n if (showPhone) bodyLines.push(`Tel\u00E9fono: ${phone}`);\n bodyLines.push(\"\");\n if (showMessage) bodyLines.push(message);\n\n const body = bodyLines.join(\"\\n\");\n const to = \"x@xscriptor.com\";\n const mailto = `mailto:${encodeURIComponent(to)}?subject=${encodeURIComponent(\n subject\n )}&body=${encodeURIComponent(body)}`;\n\n window.location.href = mailto;\n setStatus({ ok: true, msg: submitSuccessMessage });\n }\n\n const radiusMap = {\n rounded: \"0.5rem\",\n square: \"0\",\n } as const;\n\n const alignmentMap = {\n left: \"flex-start\",\n right: \"flex-end\",\n } as const;\n\n // Variables CSS din\u00E1micas para estilos configurables\n const customStyles = {\n ...(decorativeXColor && { \"--decorative-x-color\": decorativeXColor }),\n ...(labelColor && { \"--label-color\": labelColor }),\n ...(wrapperBackgroundColor && { \"--wrapper-bg-color\": wrapperBackgroundColor }),\n ...(wrapperBorderColor && { \"--wrapper-border-color\": wrapperBorderColor }),\n ...(wrapperBorderWidth && { \"--wrapper-border-width\": wrapperBorderWidth }),\n \"--wrapper-radius\": radiusMap[wrapperBorderRadius],\n \"--wrapper-border-style\": wrapperBorderStyle,\n ...(fieldBorderColor && { \"--field-border-color\": fieldBorderColor }),\n ...(fieldBorderWidth && { \"--field-border-width\": fieldBorderWidth }),\n \"--field-radius\": radiusMap[fieldBorderRadius],\n \"--field-border-style\": fieldBorderStyle,\n ...(buttonColor && { \"--btn-bg-color\": buttonColor }),\n ...(buttonBorderColor && { \"--btn-border-color\": buttonBorderColor }),\n ...(buttonBorderWidth && { \"--btn-border-width\": buttonBorderWidth }),\n \"--btn-radius\": radiusMap[buttonBorderRadius],\n \"--btn-border-style\": buttonBorderStyle,\n \"--btn-alignment\": alignmentMap[buttonAlignment],\n ...(buttonHoverColor && { \"--btn-hover-bg-color\": buttonHoverColor }),\n ...(buttonHoverTextColor && { \"--btn-hover-text-color\": buttonHoverTextColor }),\n ...(buttonHoverBorderColor && { \"--btn-hover-border-color\": buttonHoverBorderColor }),\n ...(buttonTextColor && { \"--btn-text-color\": buttonTextColor }),\n ...(statusSuccessColor && { \"--status-ok-color\": statusSuccessColor }),\n ...(statusErrorColor && { \"--status-error-color\": statusErrorColor }),\n } as React.CSSProperties;\n\n return (\n <div className={`${styles.wrapper} ${styles[size]} ${decorativeX ? styles.withDecorativeX : \"\"}`} style={customStyles}>\n {decorativeX && <div className={styles.decorativeXTop}>\u2715</div>}\n <form onSubmit={onSubmit} className={`${styles.form} ${styles[layout]}`} noValidate>\n <div className={styles.honeypot} aria-hidden=\"true\">\n <label htmlFor=\"website\">Tu web</label>\n <input id=\"website\" name=\"website\" type=\"text\" tabIndex={-1} autoComplete=\"off\" />\n </div>\n\n {(showName || showEmail || showPhone) && (\n <div className={styles.row}>\n {showName && (\n <div className={styles.field}>\n <label htmlFor=\"name\">Nombre</label>\n <input id=\"name\" name=\"name\" type=\"text\" placeholder={namePlaceholder} required maxLength={80} />\n </div>\n )}\n {showEmail && (\n <div className={styles.field}>\n <label htmlFor=\"email\">Email</label>\n <input id=\"email\" name=\"email\" type=\"email\" inputMode=\"email\" placeholder={emailPlaceholder} required />\n </div>\n )}\n {showPhone && (\n <div className={styles.field}>\n <label htmlFor=\"phone\">Tel\u00E9fono</label>\n <input id=\"phone\" name=\"phone\" type=\"tel\" inputMode=\"tel\" placeholder={phonePlaceholder} required maxLength={20} />\n </div>\n )}\n </div>\n )}\n\n {showSubject && (\n <div className={styles.field}>\n <label htmlFor=\"subject\">Asunto</label>\n <input id=\"subject\" name=\"subject\" type=\"text\" placeholder={subjectPlaceholder} required maxLength={120} />\n </div>\n )}\n\n {showMessage && (\n <div className={styles.field}>\n <label htmlFor=\"message\">Mensaje</label>\n <textarea id=\"message\" name=\"message\" rows={6} placeholder={messagePlaceholder} required maxLength={3000} />\n </div>\n )}\n\n <div className={styles.buttoncontainer}>\n <button type=\"submit\" className={styles.button}>\n Enviar\n </button>\n </div>\n\n <p className={`${styles.status} ${status?.ok ? styles.statusOk : status === null ? \"\" : styles.statusError}`} role=\"status\" aria-live=\"polite\">\n {status?.msg}\n </p>\n </form>\n {decorativeX && <div className={styles.decorativeXBottom}>\u2715</div>}\n </div>\n );\n}", "\nconst content = __content_placeholder__;\nconst digest = __digest_placeholder__; \nconst inject = () => {\n setTimeout(() => {\n if (!globalThis.document) {\n return;\n }\n let root = globalThis.document.querySelector(\"head\");\n if (root && root.shadowRoot) {\n root = root.shadowRoot;\n }\n if (!root) {\n root = globalThis.document.head;\n }\n let container = root.querySelector(\"#_\" + digest);\n if (!container) {\n container = globalThis.document.createElement(\"style\");\n container.id = \"_\" + digest;\n const text = globalThis.document.createTextNode(content);\n container.appendChild(text);\n root.appendChild(container);\n }\n }, 0);\n};\n\nexport { inject };\n ", "import \"esbuild-css-modules-plugin-ns-css:src/components/forms/xcontactform/XContactForm.module.css\";\n\nimport { inject } from \"esbuild-css-modules-plugin-ns-js:src/components/forms/xcontactform/XContactForm.module.css:injector.js\";\nexport default new Proxy({\n \"button\": \"XContactForm-module__button_o7lHUG__012\",\n \"buttoncontainer\": \"XContactForm-module__buttoncontainer_o7lHUG__012\",\n \"decorativeXBottom\": \"XContactForm-module__decorativeXBottom_o7lHUG__012\",\n \"decorativeXTop\": \"XContactForm-module__decorativeXTop_o7lHUG__012\",\n \"field\": \"XContactForm-module__field_o7lHUG__012\",\n \"form\": \"XContactForm-module__form_o7lHUG__012\",\n \"grid\": \"XContactForm-module__grid_o7lHUG__012\",\n \"honeypot\": \"XContactForm-module__honeypot_o7lHUG__012\",\n \"large\": \"XContactForm-module__large_o7lHUG__012\",\n \"medium\": \"XContactForm-module__medium_o7lHUG__012\",\n \"row\": \"XContactForm-module__row_o7lHUG__012\",\n \"small\": \"XContactForm-module__small_o7lHUG__012\",\n \"status\": \"XContactForm-module__status_o7lHUG__012\",\n \"statusError\": \"XContactForm-module__statusError_o7lHUG__012\",\n \"statusOk\": \"XContactForm-module__statusOk_o7lHUG__012\",\n \"vertical\": \"XContactForm-module__vertical_o7lHUG__012\",\n \"withDecorativeX\": \"XContactForm-module__withDecorativeX_o7lHUG__012\",\n \"wrapper\": \"XContactForm-module__wrapper_o7lHUG__012\"\n}, {\n get: function(source, key) {\n inject();\n return source[key];\n }\n});\n ", "\"use client\";\n\nimport { useState } from \"react\";\nimport Link from \"next/link\";\nimport styles from \"./XNewsletter.module.css\";\n\nexport interface XNewsletterProps {\n title?: string;\n placeholder?: string;\n buttonText?: string;\n termsText?: string;\n termsLinkText?: string;\n successMessage?: string;\n errorMessage?: string;\n termsErrorMessage?: string;\n termsLink?: string;\n apiRoute: string;\n method?: \"POST\" | \"GET\" | \"PUT\";\n payloadType?: \"formData\" | \"json\";\n layout?: \"horizontal\" | \"vertical\";\n accentColor?: string;\n textColor?: string;\n borderColor?: string;\n buttonTextColor?: string;\n containerClassName?: string; // Para clases extra desde afuera si las necesitas\n}\n\nexport default function XNewsletter({\n title = \"Recibe poes\u00EDa y reflexiones\",\n placeholder = \"tu@email.com\",\n buttonText = \"Suscribirse\",\n termsText = \"Acepto\",\n termsLinkText = \"t\u00E9rminos\",\n successMessage = \"\u00A1Bienvenido(a)!\",\n errorMessage = \"Algo sali\u00F3 mal. Por favor, intenta de nuevo.\",\n termsErrorMessage = \"Debes aceptar los t\u00E9rminos y condiciones para suscribirte...\",\n termsLink = \"/terminos-y-condiciones\",\n apiRoute,\n method = \"POST\",\n payloadType = \"formData\",\n layout = \"horizontal\",\n accentColor = \"var(--accent)\",\n textColor = \"var(--text)\",\n borderColor = \"var(--border)\",\n buttonTextColor = \"var(--accent-text)\",\n containerClassName = \"w-full max-w-4xl mx-auto px-4 py-6\",\n}: XNewsletterProps) {\n const [email, setEmail] = useState(\"\");\n const [acceptedTerms, setAcceptedTerms] = useState(false);\n const [message, setMessage] = useState(\"\");\n const [isLoading, setIsLoading] = useState(false);\n\n const handleSubmit = async (e: React.FormEvent) => {\n e.preventDefault();\n setMessage(\"\");\n\n if (!acceptedTerms) {\n setMessage(termsErrorMessage);\n return;\n }\n\n setIsLoading(true);\n\n try {\n let bodyData: BodyInit | null | undefined = null;\n let headers: HeadersInit = {};\n\n if (payloadType === \"formData\") {\n const formData = new FormData();\n formData.append(\"email\", email);\n bodyData = formData;\n } else if (payloadType === \"json\") {\n bodyData = JSON.stringify({ email });\n headers = { \"Content-Type\": \"application/json\" };\n }\n\n const response = await fetch(apiRoute, {\n method,\n headers,\n body: method !== \"GET\" ? bodyData : undefined,\n cache: \"no-store\",\n });\n\n const data = await response.json();\n\n if (response.ok && data.success) {\n setMessage(data.message || successMessage);\n setEmail(\"\");\n setAcceptedTerms(false);\n } else {\n setMessage(data.error || errorMessage);\n }\n } catch {\n setMessage(errorMessage);\n } finally {\n setIsLoading(false);\n }\n };\n\n // Convertimos las props de colores a Variables CSS nativas.\n const customCssVariables = {\n \"--nws-accent\": accentColor,\n \"--nws-text\": textColor,\n \"--nws-border\": borderColor,\n \"--nws-btn-text\": buttonTextColor,\n } as React.CSSProperties;\n\n return (\n <div\n className={`${styles.container} ${containerClassName}`}\n style={customCssVariables}\n >\n <form\n onSubmit={handleSubmit}\n className={`${styles.form} ${styles[layout]}`}\n >\n {/* T\u00EDtulo */}\n {title && <span className={styles.title}>{title}</span>}\n\n {/* Input */}\n <input\n type=\"email\"\n placeholder={placeholder}\n className={styles.input}\n aria-label=\"email\"\n value={email}\n onChange={(e) => setEmail(e.target.value)}\n required\n disabled={isLoading}\n />\n\n {/* Grupo Acciones (Checkbox + Bot\u00F3n) */}\n <div\n className={`${styles.actions} ${\n layout === \"horizontal\"\n ? styles.actionsHorizontal\n : styles.actionsVertical\n }`}\n >\n {/* Checkbox */}\n <label className={styles.checkboxLabel}>\n <input\n type=\"checkbox\"\n className={styles.checkbox}\n checked={acceptedTerms}\n onChange={(e) => setAcceptedTerms(e.target.checked)}\n required\n disabled={isLoading}\n />\n <span>\n {termsText}{\" \"}\n <Link\n href={termsLink}\n target=\"_blank\"\n rel=\"noopener noreferrer\"\n className={styles.termsLink}\n >\n {termsLinkText}\n </Link>\n </span>\n </label>\n\n {/* Bot\u00F3n */}\n <button\n type=\"submit\"\n disabled={isLoading}\n className={styles.button}\n >\n {isLoading ? \"Enviando...\" : buttonText}\n </button>\n </div>\n </form>\n\n {/* Mensaje */}\n {message && (\n <p\n className={`${styles.message} ${\n layout === \"horizontal\"\n ? styles.messageHorizontal\n : styles.messageVertical\n }`}\n >\n {message}\n </p>\n )}\n </div>\n );\n}", "\nconst content = __content_placeholder__;\nconst digest = __digest_placeholder__; \nconst inject = () => {\n setTimeout(() => {\n if (!globalThis.document) {\n return;\n }\n let root = globalThis.document.querySelector(\"head\");\n if (root && root.shadowRoot) {\n root = root.shadowRoot;\n }\n if (!root) {\n root = globalThis.document.head;\n }\n let container = root.querySelector(\"#_\" + digest);\n if (!container) {\n container = globalThis.document.createElement(\"style\");\n container.id = \"_\" + digest;\n const text = globalThis.document.createTextNode(content);\n container.appendChild(text);\n root.appendChild(container);\n }\n }, 0);\n};\n\nexport { inject };\n ", "import \"esbuild-css-modules-plugin-ns-css:src/components/forms/xnewsletter/XNewsletter.module.css\";\n\nimport { inject } from \"esbuild-css-modules-plugin-ns-js:src/components/forms/xnewsletter/XNewsletter.module.css:injector.js\";\nexport default new Proxy({\n \"actions\": \"XNewsletter-module__actions_uZr2_a__012\",\n \"actionsHorizontal\": \"XNewsletter-module__actionsHorizontal_uZr2_a__012\",\n \"actionsVertical\": \"XNewsletter-module__actionsVertical_uZr2_a__012\",\n \"button\": \"XNewsletter-module__button_uZr2_a__012\",\n \"checkbox\": \"XNewsletter-module__checkbox_uZr2_a__012\",\n \"checkboxLabel\": \"XNewsletter-module__checkboxLabel_uZr2_a__012\",\n \"container\": \"XNewsletter-module__container_uZr2_a__012\",\n \"form\": \"XNewsletter-module__form_uZr2_a__012\",\n \"horizontal\": \"XNewsletter-module__horizontal_uZr2_a__012\",\n \"input\": \"XNewsletter-module__input_uZr2_a__012\",\n \"message\": \"XNewsletter-module__message_uZr2_a__012\",\n \"messageHorizontal\": \"XNewsletter-module__messageHorizontal_uZr2_a__012\",\n \"messageVertical\": \"XNewsletter-module__messageVertical_uZr2_a__012\",\n \"termsLink\": \"XNewsletter-module__termsLink_uZr2_a__012\",\n \"title\": \"XNewsletter-module__title_uZr2_a__012\",\n \"vertical\": \"XNewsletter-module__vertical_uZr2_a__012\"\n}, {\n get: function(source, key) {\n inject();\n return source[key];\n }\n});\n "],
|
|
5
|
+
"mappings": "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",
|
|
6
|
+
"names": ["import_react", "content", "digest", "inject", "inject", "import_jsx_runtime", "Link"]
|
|
7
7
|
}
|
|
@@ -1,228 +1,225 @@
|
|
|
1
|
-
/* src/components/gallery/xmicrogallerytext/XMicroGalleryText.module.css */
|
|
2
|
-
.
|
|
3
|
-
display: flex;
|
|
1
|
+
/* esbuild-css-modules-plugin-ns-css:src/components/gallery/xmicrogallerytext/XMicroGalleryText.module.css */
|
|
2
|
+
.XMicroGalleryText-module__container_22YC0W__012 {
|
|
4
3
|
flex-direction: column;
|
|
4
|
+
align-items: center;
|
|
5
5
|
gap: 2rem;
|
|
6
6
|
width: 100%;
|
|
7
|
-
align-items: center;
|
|
8
7
|
margin: 2rem 0;
|
|
8
|
+
display: flex;
|
|
9
9
|
}
|
|
10
|
-
@media (
|
|
11
|
-
.
|
|
10
|
+
@media (width >= 1024px) {
|
|
11
|
+
.XMicroGalleryText-module__container_22YC0W__012 {
|
|
12
12
|
flex-direction: row;
|
|
13
13
|
align-items: center;
|
|
14
14
|
gap: 4rem;
|
|
15
15
|
}
|
|
16
|
-
.
|
|
16
|
+
.XMicroGalleryText-module__reverse_22YC0W__012 {
|
|
17
17
|
flex-direction: row-reverse;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
.
|
|
21
|
-
flex: 1;
|
|
20
|
+
.XMicroGalleryText-module__textContent_22YC0W__012 {
|
|
22
21
|
opacity: 0;
|
|
23
|
-
transform: translateY(30px);
|
|
24
|
-
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
|
|
25
22
|
color: var(--foreground);
|
|
23
|
+
flex: 1;
|
|
24
|
+
transition: opacity .8s ease-out, transform .8s ease-out;
|
|
25
|
+
transform: translateY(30px);
|
|
26
26
|
}
|
|
27
|
-
.
|
|
27
|
+
.XMicroGalleryText-module__textContent_22YC0W__012.XMicroGalleryText-module__visible_22YC0W__012 {
|
|
28
28
|
opacity: 1;
|
|
29
29
|
transform: translateY(0);
|
|
30
30
|
}
|
|
31
|
-
.
|
|
31
|
+
.XMicroGalleryText-module__textLeft_22YC0W__012 {
|
|
32
32
|
text-align: left;
|
|
33
33
|
}
|
|
34
|
-
.
|
|
34
|
+
.XMicroGalleryText-module__textRight_22YC0W__012 {
|
|
35
35
|
text-align: right;
|
|
36
36
|
}
|
|
37
|
-
.
|
|
37
|
+
.XMicroGalleryText-module__textCenter_22YC0W__012 {
|
|
38
38
|
text-align: center;
|
|
39
39
|
}
|
|
40
|
-
.
|
|
41
|
-
.
|
|
42
|
-
.
|
|
43
|
-
.
|
|
44
|
-
.
|
|
45
|
-
.
|
|
40
|
+
.XMicroGalleryText-module__textContent_22YC0W__012 p,
|
|
41
|
+
.XMicroGalleryText-module__textContent_22YC0W__012 div,
|
|
42
|
+
.XMicroGalleryText-module__textContent_22YC0W__012 span,
|
|
43
|
+
.XMicroGalleryText-module__textContent_22YC0W__012 em,
|
|
44
|
+
.XMicroGalleryText-module__textContent_22YC0W__012 strong,
|
|
45
|
+
.XMicroGalleryText-module__textContent_22YC0W__012 a {
|
|
46
46
|
text-align: inherit;
|
|
47
47
|
max-width: none;
|
|
48
48
|
margin-left: unset;
|
|
49
49
|
margin-right: unset;
|
|
50
50
|
}
|
|
51
|
-
.
|
|
51
|
+
.XMicroGalleryText-module__gallery_22YC0W__012 {
|
|
52
52
|
flex: 1.5;
|
|
53
53
|
width: 100%;
|
|
54
54
|
}
|
|
55
|
-
.
|
|
56
|
-
display: grid;
|
|
57
|
-
grid-template-columns: repeat(3, 1fr);
|
|
55
|
+
.XMicroGalleryText-module__artisticGrid_22YC0W__012 {
|
|
58
56
|
grid-template-rows: 380px 220px;
|
|
57
|
+
grid-template-columns: repeat(3, 1fr);
|
|
59
58
|
gap: 1rem;
|
|
59
|
+
display: grid;
|
|
60
60
|
}
|
|
61
|
-
.
|
|
62
|
-
position: relative;
|
|
63
|
-
overflow: hidden;
|
|
64
|
-
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
|
65
|
-
border-radius: 20px;
|
|
61
|
+
.XMicroGalleryText-module__imageWrapper_22YC0W__012 {
|
|
66
62
|
opacity: 0;
|
|
67
|
-
|
|
63
|
+
border-radius: 20px;
|
|
68
64
|
transition:
|
|
69
|
-
opacity
|
|
70
|
-
transform
|
|
71
|
-
box-shadow
|
|
65
|
+
opacity .6s ease-out,
|
|
66
|
+
transform .6s ease-out,
|
|
67
|
+
box-shadow .3s;
|
|
68
|
+
position: relative;
|
|
69
|
+
overflow: hidden;
|
|
70
|
+
transform: translateY(50px) scale(.95);
|
|
71
|
+
box-shadow: 0 10px 30px #0000001a;
|
|
72
72
|
}
|
|
73
|
-
.
|
|
73
|
+
.XMicroGalleryText-module__imageWrapper_22YC0W__012.XMicroGalleryText-module__visible_22YC0W__012 {
|
|
74
74
|
opacity: 1;
|
|
75
75
|
transform: translateY(0) scale(1);
|
|
76
76
|
}
|
|
77
|
-
.
|
|
77
|
+
.XMicroGalleryText-module__imageWrapper_22YC0W__012:hover {
|
|
78
78
|
transform: translateY(-5px);
|
|
79
|
-
box-shadow: 0 20px 40px
|
|
79
|
+
box-shadow: 0 20px 40px #00000026;
|
|
80
80
|
}
|
|
81
|
-
.
|
|
81
|
+
.XMicroGalleryText-module__previewImage_22YC0W__012 {
|
|
82
82
|
object-fit: cover;
|
|
83
83
|
}
|
|
84
|
-
.
|
|
84
|
+
.XMicroGalleryText-module__artisticGrid_22YC0W__012 .XMicroGalleryText-module__artistic1_22YC0W__012 .XMicroGalleryText-module__previewImage_22YC0W__012 {
|
|
85
85
|
object-position: center top;
|
|
86
86
|
transform: translateY(0);
|
|
87
87
|
}
|
|
88
|
-
.
|
|
89
|
-
grid-
|
|
90
|
-
|
|
91
|
-
transition-delay: 0.2s;
|
|
88
|
+
.XMicroGalleryText-module__artistic1_22YC0W__012 {
|
|
89
|
+
grid-area: 1 / 1 / 2 / 4;
|
|
90
|
+
transition-delay: .2s;
|
|
92
91
|
}
|
|
93
|
-
.
|
|
94
|
-
grid-
|
|
95
|
-
|
|
96
|
-
transition-delay: 0.3s;
|
|
92
|
+
.XMicroGalleryText-module__artistic2_22YC0W__012 {
|
|
93
|
+
grid-area: 2 / 1 / 3 / 2;
|
|
94
|
+
transition-delay: .3s;
|
|
97
95
|
}
|
|
98
|
-
.
|
|
99
|
-
grid-
|
|
100
|
-
|
|
101
|
-
transition-delay: 0.4s;
|
|
96
|
+
.XMicroGalleryText-module__artistic3_22YC0W__012 {
|
|
97
|
+
grid-area: 2 / 2 / 3 / 4;
|
|
98
|
+
transition-delay: .4s;
|
|
102
99
|
}
|
|
103
|
-
@media (
|
|
104
|
-
.
|
|
105
|
-
grid-template-columns: 1fr;
|
|
100
|
+
@media (width <= 768px) {
|
|
101
|
+
.XMicroGalleryText-module__artisticGrid_22YC0W__012 {
|
|
106
102
|
grid-template-rows: 240px 180px 180px;
|
|
103
|
+
grid-template-columns: 1fr;
|
|
107
104
|
}
|
|
108
|
-
.
|
|
109
|
-
.
|
|
110
|
-
.
|
|
105
|
+
.XMicroGalleryText-module__artistic1_22YC0W__012,
|
|
106
|
+
.XMicroGalleryText-module__artistic2_22YC0W__012,
|
|
107
|
+
.XMicroGalleryText-module__artistic3_22YC0W__012 {
|
|
111
108
|
grid-column: 1 / 2;
|
|
112
109
|
}
|
|
113
|
-
.
|
|
110
|
+
.XMicroGalleryText-module__artistic1_22YC0W__012 {
|
|
114
111
|
grid-row: 1 / 2;
|
|
115
112
|
}
|
|
116
|
-
.
|
|
113
|
+
.XMicroGalleryText-module__artistic2_22YC0W__012 {
|
|
117
114
|
grid-row: 2 / 3;
|
|
118
115
|
}
|
|
119
|
-
.
|
|
116
|
+
.XMicroGalleryText-module__artistic3_22YC0W__012 {
|
|
120
117
|
grid-row: 3 / 4;
|
|
121
118
|
}
|
|
122
119
|
}
|
|
123
|
-
@media (
|
|
124
|
-
.
|
|
120
|
+
@media (width <= 480px) {
|
|
121
|
+
.XMicroGalleryText-module__artisticGrid_22YC0W__012 {
|
|
125
122
|
grid-template-rows: 200px 140px 140px;
|
|
126
123
|
}
|
|
127
124
|
}
|
|
128
125
|
|
|
129
|
-
/* src/components/gallery/xstaticgallery/XStaticGallery.module.css */
|
|
130
|
-
.
|
|
126
|
+
/* esbuild-css-modules-plugin-ns-css:src/components/gallery/xstaticgallery/XStaticGallery.module.css */
|
|
127
|
+
.XStaticGallery-module__galleryContainer_7nn4pa__012 {
|
|
131
128
|
width: 100%;
|
|
132
129
|
max-width: 80rem;
|
|
133
130
|
margin: 0 auto;
|
|
134
131
|
padding: 1rem 1rem 3rem;
|
|
135
132
|
}
|
|
136
|
-
.
|
|
137
|
-
font-size: 1.875rem;
|
|
133
|
+
.XStaticGallery-module__galleryTitle_7nn4pa__012 {
|
|
138
134
|
text-align: right;
|
|
139
135
|
color: var(--primary);
|
|
136
|
+
opacity: .8;
|
|
140
137
|
margin-bottom: 3rem;
|
|
141
|
-
|
|
138
|
+
font-size: 1.875rem;
|
|
142
139
|
}
|
|
143
|
-
.
|
|
140
|
+
.XStaticGallery-module__masonryGrid_7nn4pa__012 {
|
|
144
141
|
gap: 1rem;
|
|
145
142
|
}
|
|
146
|
-
.
|
|
143
|
+
.XStaticGallery-module__masonryItem_7nn4pa__012 {
|
|
147
144
|
break-inside: avoid;
|
|
148
|
-
|
|
145
|
+
opacity: 0;
|
|
149
146
|
border-radius: 1rem;
|
|
150
|
-
overflow: hidden;
|
|
151
|
-
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
|
|
152
147
|
margin-bottom: 1rem;
|
|
153
|
-
opacity: 0;
|
|
154
|
-
transform: translateY(20px);
|
|
155
148
|
transition:
|
|
156
|
-
opacity
|
|
157
|
-
transform
|
|
158
|
-
box-shadow
|
|
149
|
+
opacity .5s ease-out,
|
|
150
|
+
transform .5s ease-out,
|
|
151
|
+
box-shadow .3s;
|
|
152
|
+
position: relative;
|
|
153
|
+
overflow: hidden;
|
|
154
|
+
transform: translateY(20px);
|
|
155
|
+
box-shadow: 0 4px 12px #00000014;
|
|
159
156
|
}
|
|
160
|
-
.
|
|
157
|
+
.XStaticGallery-module__masonryItem_7nn4pa__012.XStaticGallery-module__visible_7nn4pa__012 {
|
|
161
158
|
opacity: 1;
|
|
162
159
|
transform: translateY(0);
|
|
163
160
|
}
|
|
164
|
-
.
|
|
165
|
-
box-shadow: 0 12px 32px
|
|
161
|
+
.XStaticGallery-module__masonryItem_7nn4pa__012:hover {
|
|
162
|
+
box-shadow: 0 12px 32px #0000002e;
|
|
166
163
|
}
|
|
167
|
-
.
|
|
168
|
-
|
|
164
|
+
.XStaticGallery-module__imageContainer_7nn4pa__012 {
|
|
165
|
+
border-radius: 1rem;
|
|
169
166
|
width: 100%;
|
|
167
|
+
position: relative;
|
|
170
168
|
overflow: hidden;
|
|
171
|
-
border-radius: 1rem;
|
|
172
169
|
}
|
|
173
|
-
.
|
|
170
|
+
.XStaticGallery-module__galleryImage_7nn4pa__012 {
|
|
171
|
+
object-fit: cover;
|
|
174
172
|
width: 100%;
|
|
175
173
|
height: auto;
|
|
176
|
-
|
|
174
|
+
transition: transform .5s ease-out;
|
|
177
175
|
display: block;
|
|
178
|
-
transition: transform 0.5s ease-out;
|
|
179
176
|
}
|
|
180
|
-
.
|
|
177
|
+
.XStaticGallery-module__masonryItem_7nn4pa__012:hover .XStaticGallery-module__galleryImage_7nn4pa__012 {
|
|
181
178
|
transform: scale(1.05);
|
|
182
179
|
}
|
|
183
|
-
.
|
|
180
|
+
.XStaticGallery-module__imageOverlay_7nn4pa__012 {
|
|
181
|
+
pointer-events: none;
|
|
182
|
+
background: none;
|
|
183
|
+
transition: background .3s;
|
|
184
184
|
position: absolute;
|
|
185
185
|
inset: 0;
|
|
186
|
-
background: rgba(0, 0, 0, 0);
|
|
187
|
-
transition: background 0.3s ease;
|
|
188
|
-
pointer-events: none;
|
|
189
186
|
}
|
|
190
|
-
.
|
|
191
|
-
background:
|
|
187
|
+
.XStaticGallery-module__masonryItem_7nn4pa__012:hover .XStaticGallery-module__imageOverlay_7nn4pa__012 {
|
|
188
|
+
background: #0000001a;
|
|
192
189
|
}
|
|
193
|
-
.
|
|
190
|
+
.XStaticGallery-module__cols1_7nn4pa__012 {
|
|
194
191
|
columns: 1;
|
|
195
192
|
}
|
|
196
|
-
.
|
|
193
|
+
.XStaticGallery-module__cols2_7nn4pa__012 {
|
|
197
194
|
columns: 2;
|
|
198
195
|
}
|
|
199
|
-
.
|
|
196
|
+
.XStaticGallery-module__cols3_7nn4pa__012 {
|
|
200
197
|
columns: 3;
|
|
201
198
|
}
|
|
202
|
-
.
|
|
199
|
+
.XStaticGallery-module__cols4_7nn4pa__012 {
|
|
203
200
|
columns: 4;
|
|
204
201
|
}
|
|
205
|
-
.
|
|
202
|
+
.XStaticGallery-module__cols5_7nn4pa__012 {
|
|
206
203
|
columns: 5;
|
|
207
204
|
}
|
|
208
|
-
@media (
|
|
209
|
-
.
|
|
210
|
-
.
|
|
205
|
+
@media (width <= 1280px) {
|
|
206
|
+
.XStaticGallery-module__cols4_7nn4pa__012,
|
|
207
|
+
.XStaticGallery-module__cols5_7nn4pa__012 {
|
|
211
208
|
columns: 3;
|
|
212
209
|
}
|
|
213
210
|
}
|
|
214
|
-
@media (
|
|
215
|
-
.
|
|
216
|
-
.
|
|
217
|
-
.
|
|
211
|
+
@media (width <= 768px) {
|
|
212
|
+
.XStaticGallery-module__cols3_7nn4pa__012,
|
|
213
|
+
.XStaticGallery-module__cols4_7nn4pa__012,
|
|
214
|
+
.XStaticGallery-module__cols5_7nn4pa__012 {
|
|
218
215
|
columns: 2;
|
|
219
216
|
}
|
|
220
217
|
}
|
|
221
|
-
@media (
|
|
222
|
-
.
|
|
223
|
-
.
|
|
224
|
-
.
|
|
225
|
-
.
|
|
218
|
+
@media (width <= 640px) {
|
|
219
|
+
.XStaticGallery-module__cols2_7nn4pa__012,
|
|
220
|
+
.XStaticGallery-module__cols3_7nn4pa__012,
|
|
221
|
+
.XStaticGallery-module__cols4_7nn4pa__012,
|
|
222
|
+
.XStaticGallery-module__cols5_7nn4pa__012 {
|
|
226
223
|
columns: 1;
|
|
227
224
|
}
|
|
228
225
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["
|
|
4
|
-
"sourcesContent": [".
|
|
5
|
-
"mappings": ";AAAA,
|
|
6
|
-
"names": [
|
|
3
|
+
"sources": ["esbuild-css-modules-plugin-ns-css:src/components/gallery/xmicrogallerytext/XMicroGalleryText.module.css", "esbuild-css-modules-plugin-ns-css:src/components/gallery/xstaticgallery/XStaticGallery.module.css"],
|
|
4
|
+
"sourcesContent": [".XMicroGalleryText-module__container_22YC0W__012 {\n flex-direction: column;\n align-items: center;\n gap: 2rem;\n width: 100%;\n margin: 2rem 0;\n display: flex;\n}\n\n@media (width >= 1024px) {\n .XMicroGalleryText-module__container_22YC0W__012 {\n flex-direction: row;\n align-items: center;\n gap: 4rem;\n }\n\n .XMicroGalleryText-module__reverse_22YC0W__012 {\n flex-direction: row-reverse;\n }\n}\n\n.XMicroGalleryText-module__textContent_22YC0W__012 {\n opacity: 0;\n color: var(--foreground);\n flex: 1;\n transition: opacity .8s ease-out, transform .8s ease-out;\n transform: translateY(30px);\n}\n\n.XMicroGalleryText-module__textContent_22YC0W__012.XMicroGalleryText-module__visible_22YC0W__012 {\n opacity: 1;\n transform: translateY(0);\n}\n\n.XMicroGalleryText-module__textLeft_22YC0W__012 {\n text-align: left;\n}\n\n.XMicroGalleryText-module__textRight_22YC0W__012 {\n text-align: right;\n}\n\n.XMicroGalleryText-module__textCenter_22YC0W__012 {\n text-align: center;\n}\n\n.XMicroGalleryText-module__textContent_22YC0W__012 p, .XMicroGalleryText-module__textContent_22YC0W__012 div, .XMicroGalleryText-module__textContent_22YC0W__012 span, .XMicroGalleryText-module__textContent_22YC0W__012 em, .XMicroGalleryText-module__textContent_22YC0W__012 strong, .XMicroGalleryText-module__textContent_22YC0W__012 a {\n text-align: inherit;\n max-width: none;\n margin-left: unset;\n margin-right: unset;\n}\n\n.XMicroGalleryText-module__gallery_22YC0W__012 {\n flex: 1.5;\n width: 100%;\n}\n\n.XMicroGalleryText-module__artisticGrid_22YC0W__012 {\n grid-template-rows: 380px 220px;\n grid-template-columns: repeat(3, 1fr);\n gap: 1rem;\n display: grid;\n}\n\n.XMicroGalleryText-module__imageWrapper_22YC0W__012 {\n opacity: 0;\n border-radius: 20px;\n transition: opacity .6s ease-out, transform .6s ease-out, box-shadow .3s;\n position: relative;\n overflow: hidden;\n transform: translateY(50px) scale(.95);\n box-shadow: 0 10px 30px #0000001a;\n}\n\n.XMicroGalleryText-module__imageWrapper_22YC0W__012.XMicroGalleryText-module__visible_22YC0W__012 {\n opacity: 1;\n transform: translateY(0) scale(1);\n}\n\n.XMicroGalleryText-module__imageWrapper_22YC0W__012:hover {\n transform: translateY(-5px);\n box-shadow: 0 20px 40px #00000026;\n}\n\n.XMicroGalleryText-module__previewImage_22YC0W__012 {\n object-fit: cover;\n}\n\n.XMicroGalleryText-module__artisticGrid_22YC0W__012 .XMicroGalleryText-module__artistic1_22YC0W__012 .XMicroGalleryText-module__previewImage_22YC0W__012 {\n object-position: center top;\n transform: translateY(0);\n}\n\n.XMicroGalleryText-module__artistic1_22YC0W__012 {\n grid-area: 1 / 1 / 2 / 4;\n transition-delay: .2s;\n}\n\n.XMicroGalleryText-module__artistic2_22YC0W__012 {\n grid-area: 2 / 1 / 3 / 2;\n transition-delay: .3s;\n}\n\n.XMicroGalleryText-module__artistic3_22YC0W__012 {\n grid-area: 2 / 2 / 3 / 4;\n transition-delay: .4s;\n}\n\n@media (width <= 768px) {\n .XMicroGalleryText-module__artisticGrid_22YC0W__012 {\n grid-template-rows: 240px 180px 180px;\n grid-template-columns: 1fr;\n }\n\n .XMicroGalleryText-module__artistic1_22YC0W__012, .XMicroGalleryText-module__artistic2_22YC0W__012, .XMicroGalleryText-module__artistic3_22YC0W__012 {\n grid-column: 1 / 2;\n }\n\n .XMicroGalleryText-module__artistic1_22YC0W__012 {\n grid-row: 1 / 2;\n }\n\n .XMicroGalleryText-module__artistic2_22YC0W__012 {\n grid-row: 2 / 3;\n }\n\n .XMicroGalleryText-module__artistic3_22YC0W__012 {\n grid-row: 3 / 4;\n }\n}\n\n@media (width <= 480px) {\n .XMicroGalleryText-module__artisticGrid_22YC0W__012 {\n grid-template-rows: 200px 140px 140px;\n }\n}\n", ".XStaticGallery-module__galleryContainer_7nn4pa__012 {\n width: 100%;\n max-width: 80rem;\n margin: 0 auto;\n padding: 1rem 1rem 3rem;\n}\n\n.XStaticGallery-module__galleryTitle_7nn4pa__012 {\n text-align: right;\n color: var(--primary);\n opacity: .8;\n margin-bottom: 3rem;\n font-size: 1.875rem;\n}\n\n.XStaticGallery-module__masonryGrid_7nn4pa__012 {\n gap: 1rem;\n}\n\n.XStaticGallery-module__masonryItem_7nn4pa__012 {\n break-inside: avoid;\n opacity: 0;\n border-radius: 1rem;\n margin-bottom: 1rem;\n transition: opacity .5s ease-out, transform .5s ease-out, box-shadow .3s;\n position: relative;\n overflow: hidden;\n transform: translateY(20px);\n box-shadow: 0 4px 12px #00000014;\n}\n\n.XStaticGallery-module__masonryItem_7nn4pa__012.XStaticGallery-module__visible_7nn4pa__012 {\n opacity: 1;\n transform: translateY(0);\n}\n\n.XStaticGallery-module__masonryItem_7nn4pa__012:hover {\n box-shadow: 0 12px 32px #0000002e;\n}\n\n.XStaticGallery-module__imageContainer_7nn4pa__012 {\n border-radius: 1rem;\n width: 100%;\n position: relative;\n overflow: hidden;\n}\n\n.XStaticGallery-module__galleryImage_7nn4pa__012 {\n object-fit: cover;\n width: 100%;\n height: auto;\n transition: transform .5s ease-out;\n display: block;\n}\n\n.XStaticGallery-module__masonryItem_7nn4pa__012:hover .XStaticGallery-module__galleryImage_7nn4pa__012 {\n transform: scale(1.05);\n}\n\n.XStaticGallery-module__imageOverlay_7nn4pa__012 {\n pointer-events: none;\n background: none;\n transition: background .3s;\n position: absolute;\n inset: 0;\n}\n\n.XStaticGallery-module__masonryItem_7nn4pa__012:hover .XStaticGallery-module__imageOverlay_7nn4pa__012 {\n background: #0000001a;\n}\n\n.XStaticGallery-module__cols1_7nn4pa__012 {\n columns: 1;\n}\n\n.XStaticGallery-module__cols2_7nn4pa__012 {\n columns: 2;\n}\n\n.XStaticGallery-module__cols3_7nn4pa__012 {\n columns: 3;\n}\n\n.XStaticGallery-module__cols4_7nn4pa__012 {\n columns: 4;\n}\n\n.XStaticGallery-module__cols5_7nn4pa__012 {\n columns: 5;\n}\n\n@media (width <= 1280px) {\n .XStaticGallery-module__cols4_7nn4pa__012, .XStaticGallery-module__cols5_7nn4pa__012 {\n columns: 3;\n }\n}\n\n@media (width <= 768px) {\n .XStaticGallery-module__cols3_7nn4pa__012, .XStaticGallery-module__cols4_7nn4pa__012, .XStaticGallery-module__cols5_7nn4pa__012 {\n columns: 2;\n }\n}\n\n@media (width <= 640px) {\n .XStaticGallery-module__cols2_7nn4pa__012, .XStaticGallery-module__cols3_7nn4pa__012, .XStaticGallery-module__cols4_7nn4pa__012, .XStaticGallery-module__cols5_7nn4pa__012 {\n columns: 1;\n }\n}\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
|
+
"names": []
|
|
7
7
|
}
|