@umami/react-zen 0.58.0 → 0.60.0
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.css +773 -771
- package/dist/index.d.ts +14 -7
- package/dist/index.js +378 -347
- package/dist/index.mjs +328 -297
- package/package.json +4 -4
- package/styles.css +782 -782
package/dist/index.mjs
CHANGED
|
@@ -82,8 +82,8 @@ var require_use_sync_external_store_shim_development = __commonJS({
|
|
|
82
82
|
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart === "function") {
|
|
83
83
|
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error());
|
|
84
84
|
}
|
|
85
|
-
var
|
|
86
|
-
var ReactSharedInternals =
|
|
85
|
+
var React7 = __import_react2;
|
|
86
|
+
var ReactSharedInternals = React7.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
87
87
|
function error(format) {
|
|
88
88
|
{
|
|
89
89
|
{
|
|
@@ -113,13 +113,13 @@ var require_use_sync_external_store_shim_development = __commonJS({
|
|
|
113
113
|
return x === y && (x !== 0 || 1 / x === 1 / y) || x !== x && y !== y;
|
|
114
114
|
}
|
|
115
115
|
var objectIs = typeof Object.is === "function" ? Object.is : is2;
|
|
116
|
-
var useState16 =
|
|
116
|
+
var useState16 = React7.useState, useEffect12 = React7.useEffect, useLayoutEffect2 = React7.useLayoutEffect, useDebugValue = React7.useDebugValue;
|
|
117
117
|
var didWarnOld18Alpha = false;
|
|
118
118
|
var didWarnUncachedGetSnapshot = false;
|
|
119
119
|
function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
|
|
120
120
|
{
|
|
121
121
|
if (!didWarnOld18Alpha) {
|
|
122
|
-
if (
|
|
122
|
+
if (React7.startTransition !== void 0) {
|
|
123
123
|
didWarnOld18Alpha = true;
|
|
124
124
|
error("You are using an outdated, pre-release alpha of React 18 that does not support useSyncExternalStore. The use-sync-external-store shim will not work correctly. Upgrade to a newer pre-release.");
|
|
125
125
|
}
|
|
@@ -184,7 +184,7 @@ var require_use_sync_external_store_shim_development = __commonJS({
|
|
|
184
184
|
var canUseDOM = !!(typeof window !== "undefined" && typeof window.document !== "undefined" && typeof window.document.createElement !== "undefined");
|
|
185
185
|
var isServerEnvironment = !canUseDOM;
|
|
186
186
|
var shim = isServerEnvironment ? useSyncExternalStore$1 : useSyncExternalStore;
|
|
187
|
-
var useSyncExternalStore$2 =
|
|
187
|
+
var useSyncExternalStore$2 = React7.useSyncExternalStore !== void 0 ? React7.useSyncExternalStore : shim;
|
|
188
188
|
exports.useSyncExternalStore = useSyncExternalStore$2;
|
|
189
189
|
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === "function") {
|
|
190
190
|
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error());
|
|
@@ -25625,7 +25625,10 @@ function useForm(props = {}) {
|
|
|
25625
25625
|
}
|
|
25626
25626
|
|
|
25627
25627
|
// src/components/forms/Form.tsx
|
|
25628
|
-
var
|
|
25628
|
+
var import_classnames5 = __toESM(require_classnames());
|
|
25629
|
+
|
|
25630
|
+
// css-modules:E:\dev\umami-react-zen\src\components\forms\Form.module.css
|
|
25631
|
+
var Form_default = { "form": "Form_form__ZjMwZ", "text": "Form_text__NDc1Y", "icon": "Form_icon__ZGE1Z" };
|
|
25629
25632
|
|
|
25630
25633
|
// src/components/AlertBanner.tsx
|
|
25631
25634
|
var import_classnames2 = __toESM(require_classnames());
|
|
@@ -25923,7 +25926,7 @@ var Icons = {
|
|
|
25923
25926
|
};
|
|
25924
25927
|
|
|
25925
25928
|
// css-modules:E:\dev\umami-react-zen\src\components\AlertBanner.module.css
|
|
25926
|
-
var AlertBanner_default = { "banner": "
|
|
25929
|
+
var AlertBanner_default = { "banner": "AlertBanner_banner__NTQ1Y", "message": "AlertBanner_message__NDNiZ", "title": "AlertBanner_title__ZWUwM", "close": "AlertBanner_close__MzEwM", "error": "AlertBanner_error__YWZmN", "info": "AlertBanner_info__ZmE3M", "start": "AlertBanner_start__MTRkZ", "end": "AlertBanner_end__MWIwO", "center": "AlertBanner_center__OTkwZ" };
|
|
25927
25930
|
|
|
25928
25931
|
// src/components/AlertBanner.tsx
|
|
25929
25932
|
import { jsx as jsx2, jsxs } from "react/jsx-runtime";
|
|
@@ -25932,21 +25935,34 @@ function AlertBanner({
|
|
|
25932
25935
|
description,
|
|
25933
25936
|
icon,
|
|
25934
25937
|
variant,
|
|
25938
|
+
align,
|
|
25935
25939
|
allowClose,
|
|
25936
25940
|
onClose,
|
|
25937
25941
|
children,
|
|
25938
25942
|
className,
|
|
25939
25943
|
...props
|
|
25940
25944
|
}) {
|
|
25941
|
-
return /* @__PURE__ */ jsxs(
|
|
25942
|
-
|
|
25943
|
-
|
|
25944
|
-
|
|
25945
|
-
|
|
25946
|
-
|
|
25947
|
-
|
|
25948
|
-
|
|
25949
|
-
|
|
25945
|
+
return /* @__PURE__ */ jsxs(
|
|
25946
|
+
"div",
|
|
25947
|
+
{
|
|
25948
|
+
...props,
|
|
25949
|
+
className: (0, import_classnames2.default)(
|
|
25950
|
+
AlertBanner_default.banner,
|
|
25951
|
+
className,
|
|
25952
|
+
variant && AlertBanner_default[variant],
|
|
25953
|
+
align && AlertBanner_default[align]
|
|
25954
|
+
),
|
|
25955
|
+
children: [
|
|
25956
|
+
(icon || variant) && /* @__PURE__ */ jsx2(Icon, { size: "md", children: variant ? createElement(AlertIcons[variant]) : icon }),
|
|
25957
|
+
/* @__PURE__ */ jsxs("div", { className: AlertBanner_default.message, children: [
|
|
25958
|
+
title && /* @__PURE__ */ jsx2("div", { className: AlertBanner_default.title, children: title }),
|
|
25959
|
+
description && /* @__PURE__ */ jsx2("div", { className: AlertBanner_default.description, children: description })
|
|
25960
|
+
] }),
|
|
25961
|
+
children,
|
|
25962
|
+
allowClose && /* @__PURE__ */ jsx2(Icon, { className: AlertBanner_default.close, onClick: onClose, children: /* @__PURE__ */ jsx2(Icons.Close, {}) })
|
|
25963
|
+
]
|
|
25964
|
+
}
|
|
25965
|
+
);
|
|
25950
25966
|
}
|
|
25951
25967
|
var AlertIcons = {
|
|
25952
25968
|
error: Icons.Alert,
|
|
@@ -25956,8 +25972,8 @@ var AlertIcons = {
|
|
|
25956
25972
|
// src/components/Flexbox.tsx
|
|
25957
25973
|
var import_classnames4 = __toESM(require_classnames());
|
|
25958
25974
|
|
|
25959
|
-
// css-modules:E:\dev\umami-react-zen\src\components\styles\
|
|
25960
|
-
var global_default = { "display": "display__NDMxM", "display-none": "display-none__MjFkY", "display-inline": "display-inline__ZWE3O", "display-inline-block": "display-inline-block__MDYyN", "display-block": "display-block__YjVmM", "display-flex": "display-flex__NjIyN", "display-inline-flex": "display-inline-flex__OTRhN", "display-grid": "display-grid__MDUyM", "display-inline-grid": "display-inline-grid__MDczM", "position-absolute": "position-absolute__YzYxO", "position-fixed": "position-fixed__MjY1M", "position-stick": "position-stick__YTczM", "position-static": "position-static__MjE3M", "position-relative": "position-relative__NzIxO", "font-size": "font-size__MDg5Z", "font-size-1": "font-size-1__YTZhM", "font-size-2": "font-size-2__YjdlY", "font-size-3": "font-size-3__YzE5M", "font-size-4": "font-size-4__NWQ5Z", "font-size-5": "font-size-5__MWUzZ", "font-size-6": "font-size-6__MDBjY", "font-size-7": "font-size-7__ZGFjZ", "font-size-8": "font-size-8__Mjc3N", "font-size-9": "font-size-9__MmVkM", "heading-size": "heading-size__OTIzM", "heading-size-1": "heading-size-1__ODI5M", "heading-size-2": "heading-size-2__OTRjZ", "heading-size-3": "heading-size-3__Nzk3M", "heading-size-4": "heading-size-4__MTk1N", "heading-size-5": "heading-size-5__YzgyZ", "heading-size-6": "heading-size-6__N2QwZ", "font-weight-light": "font-weight-light__OTljN", "font-weight-regular": "font-weight-regular__Y2ViY", "font-weight-medium": "font-weight-medium__MjZiZ", "font-weight-bold": "font-weight-bold__OGY2Y", "border-size-1": "border-size-1__NGU1M", "border-size-2": "border-size-2__YzY5Y", "border-size-3": "border-size-3__OGY1N", "border-size-4": "border-size-4__ODc4Z", "border-radius-1": "border-radius-1__MjdmO", "border-radius-2": "border-radius-2__N2Q3Z", "border-radius-3": "border-radius-3__NzdjM", "border-radius-4": "border-radius-4__YzEwO", "border-radius-full": "border-radius-full__MGQ3N", "shadow-1": "shadow-1__N2ZjN", "shadow-2": "shadow-2__MDdjM", "shadow-3": "shadow-3__NGVkM", "shadow-4": "shadow-4__NTk0N", "shadow-5": "shadow-5__YjU1Z", "shadow-6": "shadow-6__YjhkM", "font-color-primary": "font-color-primary__NmVlZ", "font-color-muted": "font-color-muted__NWIxN", "font-color-disabled": "font-color-disabled__ZjZkM", "font-color-1": "font-color-1__NzFkM", "font-color-2": "font-color-2__NWI4Y", "font-color-3": "font-color-3__Mjk3Y", "font-color-4": "font-color-4__ZGUwO", "font-color-5": "font-color-5__ZGFhY", "font-color-6": "font-color-6__ZDA3M", "font-color-7": "font-color-7__ZWE0N", "font-color-8": "font-color-8__OTg3O", "font-color-10": "font-color-10__NTk1O", "font-color-11": "font-color-11__N2UxM", "font-color-12": "font-color-12__YmZlN", "font-color-gray": "font-color-gray__YzM4Y", "font-color-gold": "font-color-gold__YWVmY", "font-color-bronze": "font-color-bronze__Yjk2M", "font-color-brown": "font-color-brown__MjY4Y", "font-color-yellow": "font-color-yellow__NmUwZ", "font-color-amber": "font-color-amber__YzhjM", "font-color-orange": "font-color-orange__YzY4Z", "font-color-tomato": "font-color-tomato__NzA3M", "font-color-red": "font-color-red__MzhlY", "font-color-ruby": "font-color-ruby__OTIyO", "font-color-crimson": "font-color-crimson__MGJhM", "font-color-pink": "font-color-pink__OThmM", "font-color-plum": "font-color-plum__NTA2M", "font-color-purple": "font-color-purple__MGQ1Z", "font-color-violet": "font-color-violet__MmFkY", "font-color-iris": "font-color-iris__YjY0M", "font-color-indigo": "font-color-indigo__OGEzZ", "font-color-blue": "font-color-blue__YzZjM", "font-color-cyan": "font-color-cyan__MTZiM", "font-color-teal": "font-color-teal__YzA2O", "font-color-jade": "font-color-jade__Yjk3M", "font-color-green": "font-color-green__MmRhN", "font-color-grass": "font-color-grass__YjY3Z", "font-color-lime": "font-color-lime__NjNmN", "font-color-mint": "font-color-mint__MTA3N", "font-color-sky": "font-color-sky__MjZjN", "background-color-transparent": "background-color-transparent__MzkwM", "background-color-solid": "background-color-solid__Yzk2Y", "background-color-1": "background-color-1__NDFiZ", "background-color-2": "background-color-2__NDhjY", "background-color-3": "background-color-3__ZDU0N", "background-color-4": "background-color-4__NGJmO", "background-color-5": "background-color-5__N2ZhM", "background-color-6": "background-color-6__MTJmZ", "background-color-7": "background-color-7__YTFkN", "background-color-8": "background-color-8__ZTVjM", "background-color-9": "background-color-9__MjM1M", "background-color-10": "background-color-10__Y2Q1Z", "background-color-11": "background-color-11__MWZmN", "background-color-12": "background-color-12__ZDk4N", "background-color-gray": "background-color-gray__MmYyN", "background-color-gold": "background-color-gold__N2Y0Z", "background-color-bronze": "background-color-bronze__N2M2Y", "background-color-brown": "background-color-brown__OTFkM", "background-color-yellow": "background-color-yellow__ZjFmO", "background-color-amber": "background-color-amber__OTc2M", "background-color-orange": "background-color-orange__ODU1O", "background-color-tomato": "background-color-tomato__YmYyY", "background-color-red": "background-color-red__MjU0Z", "background-color-ruby": "background-color-ruby__MDljY", "background-color-crimson": "background-color-crimson__MjU2N", "background-color-pink": "background-color-pink__MTgwY", "background-color-plum": "background-color-plum__MWU2Y", "background-color-purple": "background-color-purple__MDdjN", "background-color-violet": "background-color-violet__MzI1N", "background-color-iris": "background-color-iris__OTJkZ", "background-color-indigo": "background-color-indigo__NmRkN", "background-color-blue": "background-color-blue__MmY4N", "background-color-cyan": "background-color-cyan__NjA4N", "background-color-teal": "background-color-teal__NDkxO", "background-color-jade": "background-color-jade__MTk3Z", "background-color-green": "background-color-green__YjhmO", "background-color-grass": "background-color-grass__MTA1M", "background-color-lime": "background-color-lime__OGI4N", "background-color-mint": "background-color-mint__N2EyO", "background-color-sky": "background-color-sky__MjJhM", "text-align-left": "text-align-left__ZmM4Z", "text-align-center": "text-align-center__MzIxO", "text-align-right": "text-align-right__ZGMwM", "text-wrap-wrap": "text-wrap-wrap__NWQzY", "text-wrap-nowrap": "text-wrap-nowrap__NjJmO", "text-wrap-balance": "text-wrap-balance__NDhkY", "text-wrap-pretty": "text-wrap-pretty__MDlmN", "text-wrap-stable": "text-wrap-stable__YzM4N", "letter-spacing-1": "letter-spacing-1__OTZkN", "letter-spacing-2": "letter-spacing-2__YTFmM", "letter-spacing-3": "letter-spacing-3__YmYyY", "letter-spacing-4": "letter-spacing-4__ZTY3Y", "letter-spacing-5": "letter-spacing-5__ODMzM", "padding-1": "padding-1__M2NmN", "padding-2": "padding-2__NTA0O", "padding-3": "padding-3__N2MwN", "padding-4": "padding-4__NGZiN", "padding-5": "padding-5__OTU3N", "padding-6": "padding-6__OWU3M", "padding-7": "padding-7__ZjVjY", "padding-8": "padding-8__NDc4N", "padding-9": "padding-9__YTEzY", "padding-10": "padding-10__ZGE1M", "padding-11": "padding-11__Zjc1N", "padding-12": "padding-12__M2VkZ", "padding-x-1": "padding-x-1__YzYyY", "padding-x-2": "padding-x-2__Nzg0Y", "padding-x-3": "padding-x-3__ODViO", "padding-x-4": "padding-x-4__ZDJlY", "padding-x-5": "padding-x-5__MjczN", "padding-x-6": "padding-x-6__NWY0Y", "padding-x-7": "padding-x-7__MmY0M", "padding-x-8": "padding-x-8__ZmFlZ", "padding-x-9": "padding-x-9__OGIzM", "padding-x-10": "padding-x-10__ZWQ1M", "padding-x-11": "padding-x-11__NDc1Z", "padding-x-12": "padding-x-12__MzNiO", "padding-y-1": "padding-y-1__YmExN", "padding-y-2": "padding-y-2__YzJkY", "padding-y-3": "padding-y-3__Nzk2M", "padding-y-4": "padding-y-4__OTM1M", "padding-y-5": "padding-y-5__MzZhY", "padding-y-6": "padding-y-6__NWE3M", "padding-y-7": "padding-y-7__ZjRjY", "padding-y-8": "padding-y-8__YWY5M", "padding-y-9": "padding-y-9__ODhlY", "padding-y-10": "padding-y-10__NzViM", "padding-y-11": "padding-y-11__OTY5Y", "padding-y-12": "padding-y-12__NDhiY", "padding-top-1": "padding-top-1__M2FhM", "padding-top-2": "padding-top-2__ZDY1N", "padding-top-3": "padding-top-3__YzAwN", "padding-top-4": "padding-top-4__ZDM1M", "padding-top-5": "padding-top-5__ZjE5M", "padding-top-6": "padding-top-6__YmJmZ", "padding-top-7": "padding-top-7__OWZhY", "padding-top-8": "padding-top-8__ODVmY", "padding-top-9": "padding-top-9__NWE2N", "padding-top-10": "padding-top-10__NmIzO", "padding-top-11": "padding-top-11__ZmU5M", "padding-top-12": "padding-top-12__NWVlM", "padding-bottom-1": "padding-bottom-1__NDQ4Z", "padding-bottom-2": "padding-bottom-2__OWYzY", "padding-bottom-3": "padding-bottom-3__YjM3M", "padding-bottom-4": "padding-bottom-4__Yjg1O", "padding-bottom-5": "padding-bottom-5__YWNmZ", "padding-bottom-6": "padding-bottom-6__ZDMyM", "padding-bottom-7": "padding-bottom-7__YmQwM", "padding-bottom-8": "padding-bottom-8__NjAzZ", "padding-bottom-9": "padding-bottom-9__YmNhY", "padding-bottom-10": "padding-bottom-10__MjM2Z", "padding-bottom-11": "padding-bottom-11__N2ZlN", "padding-bottom-12": "padding-bottom-12__NGIyN", "padding-left-1": "padding-left-1__NmNmY", "padding-left-2": "padding-left-2__MjkzM", "padding-left-3": "padding-left-3__ZTAxO", "padding-left-4": "padding-left-4__YjgxN", "padding-left-5": "padding-left-5__NWYzZ", "padding-left-6": "padding-left-6__YWEyZ", "padding-left-7": "padding-left-7__NTQzZ", "padding-left-8": "padding-left-8__Y2FjO", "padding-left-9": "padding-left-9__Y2Y4N", "padding-left-10": "padding-left-10__YWUxY", "padding-left-11": "padding-left-11__ZjA2M", "padding-left-12": "padding-left-12__YzM1Z", "padding-right-1": "padding-right-1__MDg1M", "padding-right-2": "padding-right-2__ZWM3N", "padding-right-3": "padding-right-3__MWE1M", "padding-right-4": "padding-right-4__MGU2N", "padding-right-5": "padding-right-5__ODY0O", "padding-right-6": "padding-right-6__NjgyM", "padding-right-7": "padding-right-7__Y2VmO", "padding-right-8": "padding-right-8__NjMwN", "padding-right-9": "padding-right-9__NWYxZ", "padding-right-10": "padding-right-10__ZDVjM", "padding-right-11": "padding-right-11__ZTEzZ", "padding-right-12": "padding-right-12__N2NlN", "margin-1": "margin-1__ZDFmO", "margin-2": "margin-2__MGEzM", "margin-3": "margin-3__YjA5Z", "margin-4": "margin-4__ODk2Z", "margin-5": "margin-5__MjY0N", "margin-6": "margin-6__MDllN", "margin-7": "margin-7__OWRiN", "margin-8": "margin-8__NWM2Z", "margin-9": "margin-9__YWNmY", "margin-10": "margin-10__NjQ1O", "margin-11": "margin-11__MGQ5M", "margin-12": "margin-12__ZmQ1M", "margin-x-1": "margin-x-1__NGI0Y", "margin-x-2": "margin-x-2__ZjdjZ", "margin-x-3": "margin-x-3__OWViY", "margin-x-4": "margin-x-4__YWVlM", "margin-x-5": "margin-x-5__ZjM1Y", "margin-x-6": "margin-x-6__YzM4O", "margin-x-7": "margin-x-7__YTE5N", "margin-x-8": "margin-x-8__ODVhY", "margin-x-9": "margin-x-9__ZWRjM", "margin-x-10": "margin-x-10__MWU1O", "margin-x-11": "margin-x-11__NDY3M", "margin-x-12": "margin-x-12__MDQ4Z", "margin-y-1": "margin-y-1__ODQ3O", "margin-y-2": "margin-y-2__NTdlM", "margin-y-3": "margin-y-3__ZDdhN", "margin-y-4": "margin-y-4__OTRhN", "margin-y-5": "margin-y-5__Yjc1M", "margin-y-6": "margin-y-6__ZjM4M", "margin-y-7": "margin-y-7__YzhhN", "margin-y-8": "margin-y-8__ZGVhN", "margin-y-9": "margin-y-9__NzA0Y", "margin-y-10": "margin-y-10__M2E5M", "margin-y-11": "margin-y-11__ZmE5M", "margin-y-12": "margin-y-12__MTgyO", "margin-top-1": "margin-top-1__ZjZiN", "margin-top-2": "margin-top-2__ZmE4Z", "margin-top-3": "margin-top-3__NzIyN", "margin-top-4": "margin-top-4__OGYzO", "margin-top-5": "margin-top-5__OThjZ", "margin-top-6": "margin-top-6__YTY5Y", "margin-top-7": "margin-top-7__NjI0N", "margin-top-8": "margin-top-8__Y2FhO", "margin-top-9": "margin-top-9__YmQ3N", "margin-top-10": "margin-top-10__N2Y5N", "margin-top-11": "margin-top-11__ZTE1N", "margin-top-12": "margin-top-12__YjUxM", "margin-bottom-1": "margin-bottom-1__OGRiY", "margin-bottom-2": "margin-bottom-2__ZTI5Z", "margin-bottom-3": "margin-bottom-3__MjcyM", "margin-bottom-4": "margin-bottom-4__NTI4Z", "margin-bottom-5": "margin-bottom-5__N2IzO", "margin-bottom-6": "margin-bottom-6__NGM5M", "margin-bottom-7": "margin-bottom-7__YzdjN", "margin-bottom-8": "margin-bottom-8__MjVhO", "margin-bottom-9": "margin-bottom-9__ZmYyZ", "margin-bottom-10": "margin-bottom-10__MmVlZ", "margin-bottom-11": "margin-bottom-11__MzAzM", "margin-bottom-12": "margin-bottom-12__NzhiO", "margin-left-1": "margin-left-1__NTZhO", "margin-left-2": "margin-left-2__MDc1N", "margin-left-3": "margin-left-3__N2M2Z", "margin-left-4": "margin-left-4__N2I0O", "margin-left-5": "margin-left-5__ZGJlM", "margin-left-6": "margin-left-6__NzM5O", "margin-left-7": "margin-left-7__YzlhM", "margin-left-8": "margin-left-8__MmYwY", "margin-left-9": "margin-left-9__NzA2Y", "margin-left-10": "margin-left-10__YmZmM", "margin-left-11": "margin-left-11__MzMwM", "margin-left-12": "margin-left-12__MTE0Z", "margin-right-1": "margin-right-1__ODJiN", "margin-right-2": "margin-right-2__YTcxM", "margin-right-3": "margin-right-3__NjM4M", "margin-right-4": "margin-right-4__Yzk2M", "margin-right-5": "margin-right-5__NDFmN", "margin-right-6": "margin-right-6__ZGNmZ", "margin-right-7": "margin-right-7__NzBkO", "margin-right-8": "margin-right-8__NjNiY", "margin-right-9": "margin-right-9__YTMwY", "margin-right-10": "margin-right-10__Yjk3N", "margin-right-11": "margin-right-11__MWJiY", "margin-right-12": "margin-right-12__NTMxM", "gap-1": "gap-1__YTViY", "gap-2": "gap-2__MDI5Z", "gap-3": "gap-3__MmVhO", "gap-4": "gap-4__OTIxM", "gap-5": "gap-5__ZjM0M", "gap-6": "gap-6__MzA4Z", "gap-7": "gap-7__YmE2N", "gap-8": "gap-8__YjFmN", "gap-9": "gap-9__YjcwY", "gap-10": "gap-10__NWMxY", "gap-11": "gap-11__NjYzO", "gap-12": "gap-12__ODFmY", "gap-x-1": "gap-x-1__MzBmY", "gap-x-2": "gap-x-2__MTUzM", "gap-x-3": "gap-x-3__OTQxZ", "gap-x-4": "gap-x-4__MjlkM", "gap-x-5": "gap-x-5__MmM1N", "gap-x-6": "gap-x-6__ZTE5Z", "gap-x-7": "gap-x-7__NzhiO", "gap-x-8": "gap-x-8__YzljZ", "gap-x-9": "gap-x-9__Y2Y4O", "gap-x-10": "gap-x-10__Yzc4N", "gap-x-11": "gap-x-11__NmZmM", "gap-x-12": "gap-x-12__ZWRhZ", "gap-y-1": "gap-y-1__MWJmM", "gap-y-2": "gap-y-2__MDcxM", "gap-y-3": "gap-y-3__NTI4M", "gap-y-4": "gap-y-4__MGZhY", "gap-y-5": "gap-y-5__OGQzM", "gap-y-6": "gap-y-6__YTJkM", "gap-y-7": "gap-y-7__ZWQ2Y", "gap-y-8": "gap-y-8__ZTJjM", "gap-y-9": "gap-y-9__MGRiY", "gap-y-10": "gap-y-10__ZWU2Y", "gap-y-11": "gap-y-11__YzQ5Y", "gap-y-12": "gap-y-12__MzQyM", "flex-direction-row": "flex-direction-row__YWI1Z", "flex-direction-row-reverse": "flex-direction-row-reverse__ZDkwM", "flex-direction-column": "flex-direction-column__YzJlN", "flex-direction-column-reverse": "flex-direction-column-reverse__NzMwY", "flex-wrap-wrap": "flex-wrap-wrap__ZDMxZ", "flex-wrap-nowrap": "flex-wrap-nowrap__N2VkN", "flex-wrap-wrap-reverse": "flex-wrap-wrap-reverse__NDVmZ", "justify-content-center": "justify-content-center__MWQ0Z", "justify-content-start": "justify-content-start__MWYwO", "justify-content-end": "justify-content-end__MzljO", "justify-content-flex-start": "justify-content-flex-start__YTYwO", "justify-content-flex-end": "justify-content-flex-end__ODEzZ", "justify-content-left": "justify-content-left__ZjJhY", "justify-content-right": "justify-content-right__YTMwN", "justify-content-space-between": "justify-content-space-between__YTNkO", "justify-content-space-around": "justify-content-space-around__ZjIzZ", "justify-content-space-evenly": "justify-content-space-evenly__N2Q3Y", "justify-content-stretch": "justify-content-stretch__ZjRlY", "justify-items-stretch": "justify-items-stretch__NDA3Z", "justify-items-center": "justify-items-center__MmFmM", "justify-items-start": "justify-items-start__YTExO", "justify-items-end": "justify-items-end__MjFkO", "justify-items-flex-start": "justify-items-flex-start__YWRlN", "justify-items-flex-end": "justify-items-flex-end__YjBjM", "justify-items-self-start": "justify-items-self-start__OTQwM", "justify-items-self-end": "justify-items-self-end__NDU1Z", "justify-items-left": "justify-items-left__YmFlM", "justify-items-right": "justify-items-right__MzI4Y", "justify-items-baseline": "justify-items-baseline__YjhiY", "align-content-center": "align-content-center__OGFjO", "align-content-start": "align-content-start__NThjO", "align-content-end": "align-content-end__OGY1Y", "align-content-flex-start": "align-content-flex-start__ZDc5M", "align-content-flex-end": "align-content-flex-end__ZTY3Y", "align-content-baseline": "align-content-baseline__ZjIzM", "align-content-space-between": "align-content-space-between__ZWY4M", "align-content-space-around": "align-content-space-around__Y2U5M", "align-content-space-evenly": "align-content-space-evenly__OTA1Y", "align-content-stretch": "align-content-stretch__NjdkZ", "align-items-center": "align-items-center__YzNjO", "align-items-start": "align-items-start__NmZlN", "align-items-end": "align-items-end__YmU2Y", "align-items-flex-start": "align-items-flex-start__ZWFkY", "align-items-flex-end": "align-items-flex-end__Y2U5M", "align-items-self-start": "align-items-self-start__MjAwO", "align-items-self-end": "align-items-self-end__YmQ3Z", "align-items-stretch": "align-items-stretch__N2MwY", "align-items-baseline": "align-items-baseline__ZGZmY", "align-self-center": "align-self-center__NjFhZ", "align-self-start": "align-self-start__NzRhM", "align-self-end": "align-self-end__ZDQ5M", "align-self-self-start": "align-self-self-start__MWRlN", "align-self-self-end": "align-self-self-end__OTQxM", "align-self-flex-start": "align-self-flex-start__OGNiO", "align-self-flex-end": "align-self-flex-end__YTk0N", "align-self-baseline": "align-self-baseline__YmYyO", "align-self-stretch": "align-self-stretch__YTJlY", "justify-self-center": "justify-self-center__MWMyM", "justify-self-start": "justify-self-start__MzA5Y", "justify-self-end": "justify-self-end__NzkzY", "justify-self-self-start": "justify-self-self-start__MGU4Z", "justify-self-self-end": "justify-self-self-end__MmIxN", "justify-self-baseline": "justify-self-baseline__NTI0Z", "justify-self-stretch": "justify-self-stretch__OTNmN", "grid-auto-flow-row": "grid-auto-flow-row__N2I5Y", "grid-auto-flow-column": "grid-auto-flow-column__ZDY4O", "grid-auto-flow-row-dense": "grid-auto-flow-row-dense__MjIwO", "grid-auto-flow-column-dense": "grid-auto-flow-column-dense__ZmVkZ", "overflow-visible": "overflow-visible__N2Y1M", "overflow-hidden": "overflow-hidden__ZTI3Z", "overflow-clip": "overflow-clip__YjQ0M", "overflow-scroll": "overflow-scroll__NWRiN", "overflow-auto": "overflow-auto__ZmU4O", "overflow-x-visible": "overflow-x-visible__YmVmM", "overflow-x-hidden": "overflow-x-hidden__NDNkN", "overflow-x-clip": "overflow-x-clip__NGYzM", "overflow-x-scroll": "overflow-x-scroll__ZjM1Z", "overflow-x-auto": "overflow-x-auto__ZTNiY", "overflow-y-visible": "overflow-y-visible__NzIxN", "overflow-y-hidden": "overflow-y-hidden__MjQ2N", "overflow-y-clip": "overflow-y-clip__Mjg2Y", "overflow-y-scroll": "overflow-y-scroll__MDNjM", "overflow-y-auto": "overflow-y-auto__YWRkN", "display-xs": "display-xs__ODQxM", "position-xs": "position-xs__MTUyM", "font-size-xs": "font-size-xs__YmE4N", "font-weight-xs": "font-weight-xs__NjM0Z", "heading-size-xs": "heading-size-xs__NTJiZ", "border-size-xs": "border-size-xs__MjQ5N", "border-radius-xs": "border-radius-xs__NDNkN", "shadow-xs": "shadow-xs__NDJhZ", "background-color-xs": "background-color-xs__NzA2O", "align-xs": "align-xs__NTc1N", "letter-spacing-xs": "letter-spacing-xs__ODZhO", "padding-xs": "padding-xs__Y2U3Z", "padding-x-xs": "padding-x-xs__NDUzM", "padding-y-xs": "padding-y-xs__OGYzZ", "padding-top-xs": "padding-top-xs__M2UzO", "padding-right-xs": "padding-right-xs__NjQ5N", "padding-bottom-xs": "padding-bottom-xs__NDIwM", "padding-left-xs": "padding-left-xs__ZmIyM", "margin-xs": "margin-xs__NWYwN", "margin-x-xs": "margin-x-xs__NTY3Z", "margin-y-xs": "margin-y-xs__NGZiO", "margin-top-xs": "margin-top-xs__Nzk2O", "margin-right-xs": "margin-right-xs__MjU1Y", "margin-bottom-xs": "margin-bottom-xs__NGY1M", "margin-left-xs": "margin-left-xs__YWExY", "gap-xs": "gap-xs__MDRmY", "gap-x-xs": "gap-x-xs__MzMwM", "gap-y-xs": "gap-y-xs__ZDBhM", "height-xs": "height-xs__ZThlY", "width-xs": "width-xs__MTlkN", "min-height-xs": "min-height-xs__OGMyN", "min-width-xs": "min-width-xs__MGNjY", "max-height-xs": "max-height-xs__MjY3Y", "flex-direction-xs": "flex-direction-xs__NzljZ", "flex-wrap-xs": "flex-wrap-xs__ZGQ1O", "justify-content-xs": "justify-content-xs__Yjk4Z", "justify-items-xs": "justify-items-xs__OWI3O", "justify-self-xs": "justify-self-xs__ZTQ2N", "align-content-xs": "align-content-xs__N2UwZ", "align-items-xs": "align-items-xs__YTEzM", "align-self-xs": "align-self-xs__ZTg1M", "grid-template-rows-xs": "grid-template-rows-xs__NmQ4Y", "grid-template-columns-xs": "grid-template-columns-xs__NmI2M", "flex-basis-xs": "flex-basis-xs__OTNiO", "flex-grow-xs": "flex-grow-xs__YTk2Z", "flex-shrink-xs": "flex-shrink-xs__OGE3M", "overflow-xs": "overflow-xs__NGY0Y", "overflow-x-xs": "overflow-x-xs__NDQ4M", "overflow-y-xs": "overflow-y-xs__MGVhN", "order-xs": "order-xs__ZWVjZ", "display-sm": "display-sm__YWMwZ", "position-sm": "position-sm__OWY4N", "font-size-sm": "font-size-sm__NTU1M", "font-weight-sm": "font-weight-sm__YThlN", "heading-size-sm": "heading-size-sm__OWVhZ", "border-size-sm": "border-size-sm__YjY4M", "border-radius-sm": "border-radius-sm__YjQ3M", "shadow-sm": "shadow-sm__ODc4Z", "background-color-sm": "background-color-sm__YjUxY", "align-sm": "align-sm__NWJjN", "letter-spacing-sm": "letter-spacing-sm__ZmRlM", "padding-sm": "padding-sm__N2NjM", "padding-x-sm": "padding-x-sm__ZGFlM", "padding-y-sm": "padding-y-sm__OGFiM", "padding-top-sm": "padding-top-sm__OGM5O", "padding-right-sm": "padding-right-sm__NjM0M", "padding-bottom-sm": "padding-bottom-sm__M2NjM", "padding-left-sm": "padding-left-sm__YTJhN", "margin-sm": "margin-sm__NDEyZ", "margin-x-sm": "margin-x-sm__MGY4N", "margin-y-sm": "margin-y-sm__MWE2O", "margin-top-sm": "margin-top-sm__ZmYxY", "margin-right-sm": "margin-right-sm__MGJkM", "margin-bottom-sm": "margin-bottom-sm__M2QwY", "margin-left-sm": "margin-left-sm__ZTI5O", "gap-sm": "gap-sm__MmE2M", "gap-x-sm": "gap-x-sm__YmE5Y", "gap-y-sm": "gap-y-sm__MmVmZ", "height-sm": "height-sm__OTc5Z", "width-sm": "width-sm__ZjBmZ", "min-height-sm": "min-height-sm__NjJhZ", "min-width-sm": "min-width-sm__NDBlM", "max-height-sm": "max-height-sm__YjY0N", "flex-direction-sm": "flex-direction-sm__NTFmY", "flex-wrap-sm": "flex-wrap-sm__OGUxZ", "justify-content-sm": "justify-content-sm__ODBlN", "justify-items-sm": "justify-items-sm__YjEyN", "justify-self-sm": "justify-self-sm__YTU4Z", "align-content-sm": "align-content-sm__YWZjO", "align-items-sm": "align-items-sm__MGFhN", "align-self-sm": "align-self-sm__NWQ3M", "grid-template-rows-sm": "grid-template-rows-sm__M2ZhN", "grid-template-columns-sm": "grid-template-columns-sm__ZjcyO", "flex-basis-sm": "flex-basis-sm__ZTU4O", "flex-grow-sm": "flex-grow-sm__MjFiZ", "flex-shrink-sm": "flex-shrink-sm__MTllY", "overflow-sm": "overflow-sm__ODk5M", "overflow-x-sm": "overflow-x-sm__NGJmM", "overflow-y-sm": "overflow-y-sm__OGU3Z", "order-sm": "order-sm__YmQyM", "display-md": "display-md__MzdhM", "position-md": "position-md__NjlkO", "font-size-md": "font-size-md__MDEzO", "font-weight-md": "font-weight-md__NmYzY", "heading-size-md": "heading-size-md__NDA4M", "border-size-md": "border-size-md__ZDQ0Z", "border-radius-md": "border-radius-md__MjU3Z", "shadow-md": "shadow-md__NDZjO", "background-color-md": "background-color-md__OTAwN", "align-md": "align-md__YTcxO", "letter-spacing-md": "letter-spacing-md__MGVhZ", "padding-md": "padding-md__NzhiM", "padding-x-md": "padding-x-md__MTRlN", "padding-y-md": "padding-y-md__NWVhN", "padding-top-md": "padding-top-md__NWYzO", "padding-right-md": "padding-right-md__YjdmN", "padding-bottom-md": "padding-bottom-md__ZjFiM", "padding-left-md": "padding-left-md__NjIyY", "margin-md": "margin-md__OGFlN", "margin-x-md": "margin-x-md__YzQ5Y", "margin-y-md": "margin-y-md__ZWQwM", "margin-top-md": "margin-top-md__ODA1M", "margin-right-md": "margin-right-md__NmU2M", "margin-bottom-md": "margin-bottom-md__YTJhM", "margin-left-md": "margin-left-md__NTFlN", "gap-md": "gap-md__NzU3N", "gap-x-md": "gap-x-md__ODM4M", "gap-y-md": "gap-y-md__OWE3Y", "height-md": "height-md__YWYyO", "width-md": "width-md__MGQwZ", "min-height-md": "min-height-md__ZGQ3M", "min-width-md": "min-width-md__NDYwN", "max-height-md": "max-height-md__NGMwO", "flex-direction-md": "flex-direction-md__YWY1Y", "flex-wrap-md": "flex-wrap-md__ZWUzN", "justify-content-md": "justify-content-md__MjkyZ", "justify-items-md": "justify-items-md__ODdhZ", "justify-self-md": "justify-self-md__NTc1M", "align-content-md": "align-content-md__MmJjN", "align-items-md": "align-items-md__NTY2Y", "align-self-md": "align-self-md__YmZlO", "grid-template-rows-md": "grid-template-rows-md__YTNhN", "grid-template-columns-md": "grid-template-columns-md__N2ExZ", "flex-basis-md": "flex-basis-md__MzRlM", "flex-grow-md": "flex-grow-md__ZDg4Y", "flex-shrink-md": "flex-shrink-md__M2VkY", "overflow-md": "overflow-md__NWE0Z", "overflow-x-md": "overflow-x-md__NjNiZ", "overflow-y-md": "overflow-y-md__ZjI1N", "order-md": "order-md__YmJmM", "display-lg": "display-lg__NTM3Z", "position-lg": "position-lg__Mjg1N", "font-size-lg": "font-size-lg__YTZlM", "font-weight-lg": "font-weight-lg__NDI5O", "heading-size-lg": "heading-size-lg__MmVjO", "border-size-lg": "border-size-lg__OGFlM", "border-radius-lg": "border-radius-lg__NGMxY", "shadow-lg": "shadow-lg__Yjg5Y", "background-color-lg": "background-color-lg__ODZkZ", "align-lg": "align-lg__NzZiM", "letter-spacing-lg": "letter-spacing-lg__MmE4Z", "padding-lg": "padding-lg__MTgyM", "padding-x-lg": "padding-x-lg__N2U0Y", "padding-y-lg": "padding-y-lg__YWE1M", "padding-top-lg": "padding-top-lg__ZGRkN", "padding-right-lg": "padding-right-lg__Nzg5M", "padding-bottom-lg": "padding-bottom-lg__Yzg0N", "padding-left-lg": "padding-left-lg__NTIyY", "margin-lg": "margin-lg__Y2ExZ", "margin-x-lg": "margin-x-lg__MmNhM", "margin-y-lg": "margin-y-lg__M2UwN", "margin-top-lg": "margin-top-lg__ZWU5N", "margin-right-lg": "margin-right-lg__NDlmO", "margin-bottom-lg": "margin-bottom-lg__NmQzZ", "margin-left-lg": "margin-left-lg__NTgyN", "gap-lg": "gap-lg__ZjIzM", "gap-x-lg": "gap-x-lg__ZjgzZ", "gap-y-lg": "gap-y-lg__NWZmY", "height-lg": "height-lg__ZjkyM", "width-lg": "width-lg__MTNmY", "min-height-lg": "min-height-lg__NTQ5N", "min-width-lg": "min-width-lg__ZmMyO", "max-height-lg": "max-height-lg__OTJmZ", "flex-direction-lg": "flex-direction-lg__YWQ4Y", "flex-wrap-lg": "flex-wrap-lg__Mjc2Z", "justify-content-lg": "justify-content-lg__ZjYyY", "justify-items-lg": "justify-items-lg__YWIxN", "justify-self-lg": "justify-self-lg__M2JkN", "align-content-lg": "align-content-lg__ZTAyM", "align-items-lg": "align-items-lg__NzUyN", "align-self-lg": "align-self-lg__MzczY", "grid-template-rows-lg": "grid-template-rows-lg__MDU0Y", "grid-template-columns-lg": "grid-template-columns-lg__NmNjZ", "flex-basis-lg": "flex-basis-lg__MWIyM", "flex-grow-lg": "flex-grow-lg__OTI4Z", "flex-shrink-lg": "flex-shrink-lg__OThkN", "overflow-lg": "overflow-lg__NDBhN", "overflow-x-lg": "overflow-x-lg__YWM5N", "overflow-y-lg": "overflow-y-lg__OTExY", "order-lg": "order-lg__YmJkY", "display-xl": "display-xl__MmE5M", "position-xl": "position-xl__ZTA2N", "font-size-xl": "font-size-xl__YjA4Z", "font-weight-xl": "font-weight-xl__ZTFiY", "heading-size-xl": "heading-size-xl__YWY3Y", "border-size-xl": "border-size-xl__MzZhO", "border-radius-xl": "border-radius-xl__MjM1Z", "shadow-xl": "shadow-xl__YWI2Y", "background-color-xl": "background-color-xl__MWQ0Y", "align-xl": "align-xl__NzZlY", "letter-spacing-xl": "letter-spacing-xl__ZmQwY", "padding-xl": "padding-xl__Y2VmM", "padding-x-xl": "padding-x-xl__MDMyM", "padding-y-xl": "padding-y-xl__NmFjN", "padding-top-xl": "padding-top-xl__Yzc2Y", "padding-right-xl": "padding-right-xl__ZDNjN", "padding-bottom-xl": "padding-bottom-xl__NTU2Z", "padding-left-xl": "padding-left-xl__NzZkM", "margin-xl": "margin-xl__MWNjY", "margin-x-xl": "margin-x-xl__NjI5O", "margin-y-xl": "margin-y-xl__OGMxZ", "margin-top-xl": "margin-top-xl__MjFlO", "margin-right-xl": "margin-right-xl__YmIzN", "margin-bottom-xl": "margin-bottom-xl__ZmUzO", "margin-left-xl": "margin-left-xl__NjRkM", "gap-xl": "gap-xl__YjIwZ", "gap-x-xl": "gap-x-xl__ZmJmM", "gap-y-xl": "gap-y-xl__ZmU3M", "height-xl": "height-xl__MWNjO", "width-xl": "width-xl__YTc4N", "min-height-xl": "min-height-xl__NjQwN", "min-width-xl": "min-width-xl__YzBiY", "max-height-xl": "max-height-xl__NTQ5N", "flex-direction-xl": "flex-direction-xl__ZDYxZ", "flex-wrap-xl": "flex-wrap-xl__ZDk1O", "justify-content-xl": "justify-content-xl__MmE0Z", "justify-items-xl": "justify-items-xl__YjJhY", "justify-self-xl": "justify-self-xl__YWI0Z", "align-content-xl": "align-content-xl__YTg2N", "align-items-xl": "align-items-xl__YTA1M", "align-self-xl": "align-self-xl__OTk2Z", "grid-template-rows-xl": "grid-template-rows-xl__YzRjM", "grid-template-columns-xl": "grid-template-columns-xl__NzNlZ", "flex-basis-xl": "flex-basis-xl__N2FlN", "flex-grow-xl": "flex-grow-xl__NTI5M", "flex-shrink-xl": "flex-shrink-xl__YzI4N", "overflow-xl": "overflow-xl__MTBjY", "overflow-x-xl": "overflow-x-xl__MTU2Z", "overflow-y-xl": "overflow-y-xl__NjkwN", "order-xl": "order-xl__MjdkY" };
|
|
25975
|
+
// css-modules:E:\dev\umami-react-zen\src\components\styles\vars.module.css
|
|
25976
|
+
var vars_default = { "display": "vars_display__NjY2N", "display-none": "vars_display-none__YjMwM", "display-inline": "vars_display-inline__ZTUyM", "display-inline-block": "vars_display-inline-block__MDc5O", "display-block": "vars_display-block__ZTdiM", "display-flex": "vars_display-flex__ZDNhM", "display-inline-flex": "vars_display-inline-flex__MDE5N", "display-grid": "vars_display-grid__MjZmM", "display-inline-grid": "vars_display-inline-grid__NDE4M", "position-absolute": "vars_position-absolute__OGE4Z", "position-fixed": "vars_position-fixed__YWZjZ", "position-stick": "vars_position-stick__NWUxY", "position-static": "vars_position-static__NTVlM", "position-relative": "vars_position-relative__YWY1M", "font-size": "vars_font-size__NTk4Z", "font-size-1": "vars_font-size-1__NWNmY", "font-size-2": "vars_font-size-2__MmE4Y", "font-size-3": "vars_font-size-3__NTk4Z", "font-size-4": "vars_font-size-4__MmVjM", "font-size-5": "vars_font-size-5__YzU1O", "font-size-6": "vars_font-size-6__YjYxM", "font-size-7": "vars_font-size-7__MjZiZ", "font-size-8": "vars_font-size-8__YzdjM", "font-size-9": "vars_font-size-9__NWU3Z", "heading-size": "vars_heading-size__ZTQxO", "heading-size-1": "vars_heading-size-1__YzVjY", "heading-size-2": "vars_heading-size-2__MTUxO", "heading-size-3": "vars_heading-size-3__MGQxY", "heading-size-4": "vars_heading-size-4__YjhkZ", "heading-size-5": "vars_heading-size-5__MWVmN", "heading-size-6": "vars_heading-size-6__NTY3Y", "font-weight-light": "vars_font-weight-light__ZWE5O", "font-weight-regular": "vars_font-weight-regular__NWRiO", "font-weight-medium": "vars_font-weight-medium__MDA1Y", "font-weight-bold": "vars_font-weight-bold__N2Y2M", "border-size-1": "vars_border-size-1__YTU2Z", "border-size-2": "vars_border-size-2__ZTZlZ", "border-size-3": "vars_border-size-3__MzY0N", "border-size-4": "vars_border-size-4__NjA3O", "border-radius-1": "vars_border-radius-1__NWRjN", "border-radius-2": "vars_border-radius-2__ZWFhN", "border-radius-3": "vars_border-radius-3__MzgzY", "border-radius-4": "vars_border-radius-4__MTcxM", "border-radius-full": "vars_border-radius-full__ZDI2Y", "shadow-1": "vars_shadow-1__Mjg1Y", "shadow-2": "vars_shadow-2__NTE0M", "shadow-3": "vars_shadow-3__MTA3Y", "shadow-4": "vars_shadow-4__MTBjM", "shadow-5": "vars_shadow-5__OWE5Y", "shadow-6": "vars_shadow-6__NDhhZ", "font-color-primary": "vars_font-color-primary__NDk0M", "font-color-muted": "vars_font-color-muted__ZGQ4M", "font-color-disabled": "vars_font-color-disabled__NTA3Z", "font-color-1": "vars_font-color-1__N2E1Z", "font-color-2": "vars_font-color-2__NWYwN", "font-color-3": "vars_font-color-3__YTJjY", "font-color-4": "vars_font-color-4__YzIxY", "font-color-5": "vars_font-color-5__MjQ1O", "font-color-6": "vars_font-color-6__NWViM", "font-color-7": "vars_font-color-7__ZDkwO", "font-color-8": "vars_font-color-8__ODliM", "font-color-10": "vars_font-color-10__ZGM2N", "font-color-11": "vars_font-color-11__NmZhO", "font-color-12": "vars_font-color-12__ZGJhY", "font-color-gray": "vars_font-color-gray__OTIwZ", "font-color-gold": "vars_font-color-gold__ZTU2Y", "font-color-bronze": "vars_font-color-bronze__YWZkY", "font-color-brown": "vars_font-color-brown__NzM3Y", "font-color-yellow": "vars_font-color-yellow__ZWEyN", "font-color-amber": "vars_font-color-amber__YjU0M", "font-color-orange": "vars_font-color-orange__NjJjY", "font-color-tomato": "vars_font-color-tomato__ZWM4Y", "font-color-red": "vars_font-color-red__ZWNlM", "font-color-ruby": "vars_font-color-ruby__YzMxM", "font-color-crimson": "vars_font-color-crimson__MDk4M", "font-color-pink": "vars_font-color-pink__ZDUxO", "font-color-plum": "vars_font-color-plum__YTAxZ", "font-color-purple": "vars_font-color-purple__N2JlM", "font-color-violet": "vars_font-color-violet__Mjc4N", "font-color-iris": "vars_font-color-iris__NzIzN", "font-color-indigo": "vars_font-color-indigo__NWUyM", "font-color-blue": "vars_font-color-blue__YmIyY", "font-color-cyan": "vars_font-color-cyan__YTI3Y", "font-color-teal": "vars_font-color-teal__Yjc3N", "font-color-jade": "vars_font-color-jade__YjA0Z", "font-color-green": "vars_font-color-green__Mjg4N", "font-color-grass": "vars_font-color-grass__ZWNlN", "font-color-lime": "vars_font-color-lime__MTI2M", "font-color-mint": "vars_font-color-mint__ZDMzZ", "font-color-sky": "vars_font-color-sky__YmMwZ", "background-color-transparent": "vars_background-color-transparent__MDY2M", "background-color-solid": "vars_background-color-solid__Zjc1Y", "background-color-1": "vars_background-color-1__Yzg5N", "background-color-2": "vars_background-color-2__ZjZlO", "background-color-3": "vars_background-color-3__NWRhM", "background-color-4": "vars_background-color-4__MzdjM", "background-color-5": "vars_background-color-5__ZjYwM", "background-color-6": "vars_background-color-6__MmExO", "background-color-7": "vars_background-color-7__OTJmO", "background-color-8": "vars_background-color-8__NTk5Z", "background-color-9": "vars_background-color-9__YzM1O", "background-color-10": "vars_background-color-10__YWQ1Y", "background-color-11": "vars_background-color-11__N2JhM", "background-color-12": "vars_background-color-12__N2U3Z", "background-color-gray": "vars_background-color-gray__NmYxN", "background-color-gold": "vars_background-color-gold__NzFmM", "background-color-bronze": "vars_background-color-bronze__MWU3Z", "background-color-brown": "vars_background-color-brown__YWE0M", "background-color-yellow": "vars_background-color-yellow__YTQxZ", "background-color-amber": "vars_background-color-amber__YmExZ", "background-color-orange": "vars_background-color-orange__Zjg0O", "background-color-tomato": "vars_background-color-tomato__OGFhO", "background-color-red": "vars_background-color-red__OTQ0M", "background-color-ruby": "vars_background-color-ruby__MTM4N", "background-color-crimson": "vars_background-color-crimson__Y2MyY", "background-color-pink": "vars_background-color-pink__NzdiN", "background-color-plum": "vars_background-color-plum__Y2U4Z", "background-color-purple": "vars_background-color-purple__M2Q3M", "background-color-violet": "vars_background-color-violet__OTVhN", "background-color-iris": "vars_background-color-iris__Nzk3N", "background-color-indigo": "vars_background-color-indigo__ZGRhN", "background-color-blue": "vars_background-color-blue__MDllZ", "background-color-cyan": "vars_background-color-cyan__NDI5Y", "background-color-teal": "vars_background-color-teal__NTFkN", "background-color-jade": "vars_background-color-jade__MWVjM", "background-color-green": "vars_background-color-green__Y2Y3N", "background-color-grass": "vars_background-color-grass__NDQ4N", "background-color-lime": "vars_background-color-lime__NGFmZ", "background-color-mint": "vars_background-color-mint__ODRmY", "background-color-sky": "vars_background-color-sky__YTM4Z", "text-align-left": "vars_text-align-left__YzVjN", "text-align-center": "vars_text-align-center__NjJkN", "text-align-right": "vars_text-align-right__ODIxO", "text-wrap-wrap": "vars_text-wrap-wrap__YjlhY", "text-wrap-nowrap": "vars_text-wrap-nowrap__ZGI2N", "text-wrap-balance": "vars_text-wrap-balance__YWJlN", "text-wrap-pretty": "vars_text-wrap-pretty__NzIzM", "text-wrap-stable": "vars_text-wrap-stable__N2EyN", "letter-spacing-1": "vars_letter-spacing-1__MmYxO", "letter-spacing-2": "vars_letter-spacing-2__Nzk3N", "letter-spacing-3": "vars_letter-spacing-3__NDRhM", "letter-spacing-4": "vars_letter-spacing-4__MzFhM", "letter-spacing-5": "vars_letter-spacing-5__ZTg5N", "padding-1": "vars_padding-1__YTgxY", "padding-2": "vars_padding-2__NTFiZ", "padding-3": "vars_padding-3__N2NhM", "padding-4": "vars_padding-4__M2Q0M", "padding-5": "vars_padding-5__ZWIwO", "padding-6": "vars_padding-6__M2NhY", "padding-7": "vars_padding-7__MmJkO", "padding-8": "vars_padding-8__YzY2O", "padding-9": "vars_padding-9__ZWMwO", "padding-10": "vars_padding-10__YThiN", "padding-11": "vars_padding-11__ZDVkO", "padding-12": "vars_padding-12__Yzg4N", "padding-x-1": "vars_padding-x-1__YTYyO", "padding-x-2": "vars_padding-x-2__YTc4Y", "padding-x-3": "vars_padding-x-3__NDI5Y", "padding-x-4": "vars_padding-x-4__YmQxZ", "padding-x-5": "vars_padding-x-5__ZGM5Y", "padding-x-6": "vars_padding-x-6__MzkxM", "padding-x-7": "vars_padding-x-7__Nzk2M", "padding-x-8": "vars_padding-x-8__ZTk5Y", "padding-x-9": "vars_padding-x-9__OGNhO", "padding-x-10": "vars_padding-x-10__MDljM", "padding-x-11": "vars_padding-x-11__MGEzN", "padding-x-12": "vars_padding-x-12__N2FhN", "padding-y-1": "vars_padding-y-1__MDM0M", "padding-y-2": "vars_padding-y-2__ODQyN", "padding-y-3": "vars_padding-y-3__ZGFlY", "padding-y-4": "vars_padding-y-4__YTMzZ", "padding-y-5": "vars_padding-y-5__ZTEzM", "padding-y-6": "vars_padding-y-6__Y2M2O", "padding-y-7": "vars_padding-y-7__M2E4O", "padding-y-8": "vars_padding-y-8__MGI5Y", "padding-y-9": "vars_padding-y-9__MmI3M", "padding-y-10": "vars_padding-y-10__ZDA5Y", "padding-y-11": "vars_padding-y-11__MzE5M", "padding-y-12": "vars_padding-y-12__Mjg0Z", "padding-top-1": "vars_padding-top-1__MGU0Z", "padding-top-2": "vars_padding-top-2__Nzg5M", "padding-top-3": "vars_padding-top-3__ZjExO", "padding-top-4": "vars_padding-top-4__MGMwO", "padding-top-5": "vars_padding-top-5__Yjk2Y", "padding-top-6": "vars_padding-top-6__ODE4M", "padding-top-7": "vars_padding-top-7__YWViN", "padding-top-8": "vars_padding-top-8__MWEwN", "padding-top-9": "vars_padding-top-9__YWNlN", "padding-top-10": "vars_padding-top-10__Y2UzO", "padding-top-11": "vars_padding-top-11__Zjc2N", "padding-top-12": "vars_padding-top-12__M2RiN", "padding-bottom-1": "vars_padding-bottom-1__Zjg0Z", "padding-bottom-2": "vars_padding-bottom-2__ZmM4Z", "padding-bottom-3": "vars_padding-bottom-3__MDVmM", "padding-bottom-4": "vars_padding-bottom-4__NDRmZ", "padding-bottom-5": "vars_padding-bottom-5__ZWY4Z", "padding-bottom-6": "vars_padding-bottom-6__Y2MyM", "padding-bottom-7": "vars_padding-bottom-7__MmJkY", "padding-bottom-8": "vars_padding-bottom-8__Zjg3M", "padding-bottom-9": "vars_padding-bottom-9__NWIxO", "padding-bottom-10": "vars_padding-bottom-10__MTNiY", "padding-bottom-11": "vars_padding-bottom-11__Yzc2Y", "padding-bottom-12": "vars_padding-bottom-12__NjJmO", "padding-left-1": "vars_padding-left-1__MTE5M", "padding-left-2": "vars_padding-left-2__NGVkO", "padding-left-3": "vars_padding-left-3__YTYyN", "padding-left-4": "vars_padding-left-4__N2ZmZ", "padding-left-5": "vars_padding-left-5__MjM1N", "padding-left-6": "vars_padding-left-6__NTExN", "padding-left-7": "vars_padding-left-7__M2RlN", "padding-left-8": "vars_padding-left-8__YzgxN", "padding-left-9": "vars_padding-left-9__MDZiN", "padding-left-10": "vars_padding-left-10__MGQ4M", "padding-left-11": "vars_padding-left-11__ZDZiY", "padding-left-12": "vars_padding-left-12__ZmE5M", "padding-right-1": "vars_padding-right-1__MDk4Z", "padding-right-2": "vars_padding-right-2__YzUyY", "padding-right-3": "vars_padding-right-3__MTZkM", "padding-right-4": "vars_padding-right-4__MWViZ", "padding-right-5": "vars_padding-right-5__YTJkY", "padding-right-6": "vars_padding-right-6__MzI2Z", "padding-right-7": "vars_padding-right-7__ODE5M", "padding-right-8": "vars_padding-right-8__YjIwY", "padding-right-9": "vars_padding-right-9__Nzg1Y", "padding-right-10": "vars_padding-right-10__OTNjZ", "padding-right-11": "vars_padding-right-11__MDlmM", "padding-right-12": "vars_padding-right-12__YThhN", "margin-1": "vars_margin-1__MDUwN", "margin-2": "vars_margin-2__MjcwM", "margin-3": "vars_margin-3__YjlkY", "margin-4": "vars_margin-4__M2RkY", "margin-5": "vars_margin-5__MGViZ", "margin-6": "vars_margin-6__ZDQ1Y", "margin-7": "vars_margin-7__OWI5Y", "margin-8": "vars_margin-8__MmFiN", "margin-9": "vars_margin-9__YWY3Y", "margin-10": "vars_margin-10__OWFhZ", "margin-11": "vars_margin-11__YjZkN", "margin-12": "vars_margin-12__MGM0M", "margin-x-1": "vars_margin-x-1__ZDI4Y", "margin-x-2": "vars_margin-x-2__MTY5N", "margin-x-3": "vars_margin-x-3__MTk5N", "margin-x-4": "vars_margin-x-4__YTRlN", "margin-x-5": "vars_margin-x-5__ZTQ1Y", "margin-x-6": "vars_margin-x-6__Y2VhN", "margin-x-7": "vars_margin-x-7__NGQwM", "margin-x-8": "vars_margin-x-8__N2ExM", "margin-x-9": "vars_margin-x-9__ZGM1Z", "margin-x-10": "vars_margin-x-10__YTdiM", "margin-x-11": "vars_margin-x-11__M2Y1Y", "margin-x-12": "vars_margin-x-12__ZjNlO", "margin-y-1": "vars_margin-y-1__Mjg2M", "margin-y-2": "vars_margin-y-2__ZjZlN", "margin-y-3": "vars_margin-y-3__Y2YwN", "margin-y-4": "vars_margin-y-4__YWFhZ", "margin-y-5": "vars_margin-y-5__NjNiN", "margin-y-6": "vars_margin-y-6__MTlhM", "margin-y-7": "vars_margin-y-7__NjU1Z", "margin-y-8": "vars_margin-y-8__NDM4Y", "margin-y-9": "vars_margin-y-9__YThmZ", "margin-y-10": "vars_margin-y-10__Zjg4M", "margin-y-11": "vars_margin-y-11__MTg3N", "margin-y-12": "vars_margin-y-12__ZjM3N", "margin-top-1": "vars_margin-top-1__N2Y2Z", "margin-top-2": "vars_margin-top-2__NTllO", "margin-top-3": "vars_margin-top-3__ZTI0Y", "margin-top-4": "vars_margin-top-4__YjZmO", "margin-top-5": "vars_margin-top-5__ZTg1O", "margin-top-6": "vars_margin-top-6__MmEyZ", "margin-top-7": "vars_margin-top-7__M2UzN", "margin-top-8": "vars_margin-top-8__ODM5N", "margin-top-9": "vars_margin-top-9__OTE0Z", "margin-top-10": "vars_margin-top-10__OWM4N", "margin-top-11": "vars_margin-top-11__OGE5M", "margin-top-12": "vars_margin-top-12__YTA0Y", "margin-bottom-1": "vars_margin-bottom-1__YmY4N", "margin-bottom-2": "vars_margin-bottom-2__OWEwZ", "margin-bottom-3": "vars_margin-bottom-3__M2FlM", "margin-bottom-4": "vars_margin-bottom-4__ZTcyN", "margin-bottom-5": "vars_margin-bottom-5__ZWJkN", "margin-bottom-6": "vars_margin-bottom-6__ZWJiZ", "margin-bottom-7": "vars_margin-bottom-7__YjYzM", "margin-bottom-8": "vars_margin-bottom-8__ZjNmY", "margin-bottom-9": "vars_margin-bottom-9__N2RmN", "margin-bottom-10": "vars_margin-bottom-10__ZWY0O", "margin-bottom-11": "vars_margin-bottom-11__YzM3Y", "margin-bottom-12": "vars_margin-bottom-12__ZDk2Z", "margin-left-1": "vars_margin-left-1__MTVhZ", "margin-left-2": "vars_margin-left-2__OTBjZ", "margin-left-3": "vars_margin-left-3__ZmFhY", "margin-left-4": "vars_margin-left-4__NjZiY", "margin-left-5": "vars_margin-left-5__MzEzM", "margin-left-6": "vars_margin-left-6__ZjI3Y", "margin-left-7": "vars_margin-left-7__MGEzY", "margin-left-8": "vars_margin-left-8__NTBhZ", "margin-left-9": "vars_margin-left-9__ZmE4O", "margin-left-10": "vars_margin-left-10__NWNjY", "margin-left-11": "vars_margin-left-11__NzcwM", "margin-left-12": "vars_margin-left-12__NTE3O", "margin-right-1": "vars_margin-right-1__NDBkM", "margin-right-2": "vars_margin-right-2__OGNjM", "margin-right-3": "vars_margin-right-3__MTYwO", "margin-right-4": "vars_margin-right-4__YWE0Y", "margin-right-5": "vars_margin-right-5__MTA2N", "margin-right-6": "vars_margin-right-6__NjkyN", "margin-right-7": "vars_margin-right-7__NmYwN", "margin-right-8": "vars_margin-right-8__NzU0N", "margin-right-9": "vars_margin-right-9__Zjc4Y", "margin-right-10": "vars_margin-right-10__MmM3Y", "margin-right-11": "vars_margin-right-11__NzRkY", "margin-right-12": "vars_margin-right-12__YTA4Y", "gap-1": "vars_gap-1__MDcyN", "gap-2": "vars_gap-2__NjFlZ", "gap-3": "vars_gap-3__OWM5Y", "gap-4": "vars_gap-4__OTU3Y", "gap-5": "vars_gap-5__MTg0Z", "gap-6": "vars_gap-6__ZDNkN", "gap-7": "vars_gap-7__ZDJjY", "gap-8": "vars_gap-8__Y2U1N", "gap-9": "vars_gap-9__YWIzY", "gap-10": "vars_gap-10__YWNkN", "gap-11": "vars_gap-11__Zjc4O", "gap-12": "vars_gap-12__ZjkzN", "gap-x-1": "vars_gap-x-1__MjlhY", "gap-x-2": "vars_gap-x-2__N2E5M", "gap-x-3": "vars_gap-x-3__YmVjN", "gap-x-4": "vars_gap-x-4__N2MzN", "gap-x-5": "vars_gap-x-5__YTM0Z", "gap-x-6": "vars_gap-x-6__ZThkM", "gap-x-7": "vars_gap-x-7__ZmVkY", "gap-x-8": "vars_gap-x-8__YzJhN", "gap-x-9": "vars_gap-x-9__NjQ3O", "gap-x-10": "vars_gap-x-10__ZjU3M", "gap-x-11": "vars_gap-x-11__ODA4M", "gap-x-12": "vars_gap-x-12__M2FmN", "gap-y-1": "vars_gap-y-1__MTNkY", "gap-y-2": "vars_gap-y-2__NjU2M", "gap-y-3": "vars_gap-y-3__ZDhiN", "gap-y-4": "vars_gap-y-4__ZjY2Y", "gap-y-5": "vars_gap-y-5__YzY5N", "gap-y-6": "vars_gap-y-6__M2QxN", "gap-y-7": "vars_gap-y-7__MjFiM", "gap-y-8": "vars_gap-y-8__OGU4Y", "gap-y-9": "vars_gap-y-9__MzMyY", "gap-y-10": "vars_gap-y-10__NjIyM", "gap-y-11": "vars_gap-y-11__ODE4N", "gap-y-12": "vars_gap-y-12__NTU3N", "flex-direction-row": "vars_flex-direction-row__NjU0Z", "flex-direction-row-reverse": "vars_flex-direction-row-reverse__YWNhN", "flex-direction-column": "vars_flex-direction-column__MTMwN", "flex-direction-column-reverse": "vars_flex-direction-column-reverse__MjZiZ", "flex-wrap-wrap": "vars_flex-wrap-wrap__MDBmZ", "flex-wrap-nowrap": "vars_flex-wrap-nowrap__YjI0Z", "flex-wrap-wrap-reverse": "vars_flex-wrap-wrap-reverse__ZDgxM", "justify-content-center": "vars_justify-content-center__MWVhM", "justify-content-start": "vars_justify-content-start__ODBlZ", "justify-content-end": "vars_justify-content-end__ZTA0O", "justify-content-flex-start": "vars_justify-content-flex-start__ZTZjO", "justify-content-flex-end": "vars_justify-content-flex-end__MzVhZ", "justify-content-left": "vars_justify-content-left__NTFlZ", "justify-content-right": "vars_justify-content-right__OWNhN", "justify-content-space-between": "vars_justify-content-space-between__YmZlN", "justify-content-space-around": "vars_justify-content-space-around__OGM2Z", "justify-content-space-evenly": "vars_justify-content-space-evenly__MDUzY", "justify-content-stretch": "vars_justify-content-stretch__M2RjZ", "justify-items-stretch": "vars_justify-items-stretch__ODI5Z", "justify-items-center": "vars_justify-items-center__ZTI0N", "justify-items-start": "vars_justify-items-start__NDE5Y", "justify-items-end": "vars_justify-items-end__ODgxZ", "justify-items-flex-start": "vars_justify-items-flex-start__NjhhN", "justify-items-flex-end": "vars_justify-items-flex-end__YjlkM", "justify-items-self-start": "vars_justify-items-self-start__YTZkM", "justify-items-self-end": "vars_justify-items-self-end__YTAwZ", "justify-items-left": "vars_justify-items-left__ZDg5N", "justify-items-right": "vars_justify-items-right__MzEwO", "justify-items-baseline": "vars_justify-items-baseline__YmZiM", "align-content-center": "vars_align-content-center__MDM1Z", "align-content-start": "vars_align-content-start__NGJmN", "align-content-end": "vars_align-content-end__NjY3Y", "align-content-flex-start": "vars_align-content-flex-start__Yzg0M", "align-content-flex-end": "vars_align-content-flex-end__ZWNjZ", "align-content-baseline": "vars_align-content-baseline__ZjAzO", "align-content-space-between": "vars_align-content-space-between__YWY3Z", "align-content-space-around": "vars_align-content-space-around__N2U4M", "align-content-space-evenly": "vars_align-content-space-evenly__ZDBiO", "align-content-stretch": "vars_align-content-stretch__MDE4Y", "align-items-center": "vars_align-items-center__OGU5Z", "align-items-start": "vars_align-items-start__Zjg5Y", "align-items-end": "vars_align-items-end__ZjY0N", "align-items-flex-start": "vars_align-items-flex-start__MzBmZ", "align-items-flex-end": "vars_align-items-flex-end__OWM2N", "align-items-self-start": "vars_align-items-self-start__OTZiZ", "align-items-self-end": "vars_align-items-self-end__YmE5N", "align-items-stretch": "vars_align-items-stretch__ZTZkO", "align-items-baseline": "vars_align-items-baseline__MjU0Y", "align-self-center": "vars_align-self-center__N2E3Z", "align-self-start": "vars_align-self-start__NTJkN", "align-self-end": "vars_align-self-end__NTJlZ", "align-self-self-start": "vars_align-self-self-start__MDFhN", "align-self-self-end": "vars_align-self-self-end__NTNhM", "align-self-flex-start": "vars_align-self-flex-start__Njk4N", "align-self-flex-end": "vars_align-self-flex-end__OTYyM", "align-self-baseline": "vars_align-self-baseline__OTgzM", "align-self-stretch": "vars_align-self-stretch__ZThkM", "justify-self-center": "vars_justify-self-center__MWEyO", "justify-self-start": "vars_justify-self-start__NDlhN", "justify-self-end": "vars_justify-self-end__N2JlM", "justify-self-self-start": "vars_justify-self-self-start__NjQyN", "justify-self-self-end": "vars_justify-self-self-end__Y2NjY", "justify-self-baseline": "vars_justify-self-baseline__NTYxZ", "justify-self-stretch": "vars_justify-self-stretch__ZTVjY", "grid-auto-flow-row": "vars_grid-auto-flow-row__NGZmY", "grid-auto-flow-column": "vars_grid-auto-flow-column__NzI1Z", "grid-auto-flow-row-dense": "vars_grid-auto-flow-row-dense__Zjg0Z", "grid-auto-flow-column-dense": "vars_grid-auto-flow-column-dense__MmNjM", "overflow-visible": "vars_overflow-visible__YzZkZ", "overflow-hidden": "vars_overflow-hidden__NThhN", "overflow-clip": "vars_overflow-clip__MDAxM", "overflow-scroll": "vars_overflow-scroll__NGIyY", "overflow-auto": "vars_overflow-auto__ZWU2O", "overflow-x-visible": "vars_overflow-x-visible__NGFkN", "overflow-x-hidden": "vars_overflow-x-hidden__YTBkM", "overflow-x-clip": "vars_overflow-x-clip__YzgxY", "overflow-x-scroll": "vars_overflow-x-scroll__ZGY2O", "overflow-x-auto": "vars_overflow-x-auto__YjZlM", "overflow-y-visible": "vars_overflow-y-visible__OThmM", "overflow-y-hidden": "vars_overflow-y-hidden__MWQ5O", "overflow-y-clip": "vars_overflow-y-clip__OTI3O", "overflow-y-scroll": "vars_overflow-y-scroll__MzdhN", "overflow-y-auto": "vars_overflow-y-auto__Yzk3O", "display-xs": "vars_display-xs__M2FhO", "position-xs": "vars_position-xs__ZmU3N", "font-size-xs": "vars_font-size-xs__NjFmM", "font-weight-xs": "vars_font-weight-xs__MjViM", "heading-size-xs": "vars_heading-size-xs__NTYwM", "border-size-xs": "vars_border-size-xs__ZTcxZ", "border-radius-xs": "vars_border-radius-xs__YzNmY", "shadow-xs": "vars_shadow-xs__NTFjN", "background-color-xs": "vars_background-color-xs__Mzg5N", "align-xs": "vars_align-xs__OTg3O", "letter-spacing-xs": "vars_letter-spacing-xs__MmY0O", "padding-xs": "vars_padding-xs__YWVkM", "padding-x-xs": "vars_padding-x-xs__N2UyZ", "padding-y-xs": "vars_padding-y-xs__MDMzZ", "padding-top-xs": "vars_padding-top-xs__NDBiM", "padding-right-xs": "vars_padding-right-xs__NjhiM", "padding-bottom-xs": "vars_padding-bottom-xs__MmQ3Y", "padding-left-xs": "vars_padding-left-xs__NTVlM", "margin-xs": "vars_margin-xs__Y2NlZ", "margin-x-xs": "vars_margin-x-xs__NTgzY", "margin-y-xs": "vars_margin-y-xs__OGY4N", "margin-top-xs": "vars_margin-top-xs__ODFhZ", "margin-right-xs": "vars_margin-right-xs__NGZlN", "margin-bottom-xs": "vars_margin-bottom-xs__OTZjZ", "margin-left-xs": "vars_margin-left-xs__YjRhO", "gap-xs": "vars_gap-xs__ZTA1Y", "gap-x-xs": "vars_gap-x-xs__ODZmN", "gap-y-xs": "vars_gap-y-xs__YzJhZ", "height-xs": "vars_height-xs__OTYzN", "width-xs": "vars_width-xs__MzQ0Y", "min-height-xs": "vars_min-height-xs__OWM2N", "min-width-xs": "vars_min-width-xs__ODFhZ", "max-height-xs": "vars_max-height-xs__MmYwN", "flex-direction-xs": "vars_flex-direction-xs__Y2MzM", "flex-wrap-xs": "vars_flex-wrap-xs__YmU2N", "justify-content-xs": "vars_justify-content-xs__MTdhM", "justify-items-xs": "vars_justify-items-xs__NTVmM", "justify-self-xs": "vars_justify-self-xs__NGQ4Z", "align-content-xs": "vars_align-content-xs__MDBjN", "align-items-xs": "vars_align-items-xs__NzRjY", "align-self-xs": "vars_align-self-xs__YmE0N", "grid-template-rows-xs": "vars_grid-template-rows-xs__ZTk3Y", "grid-template-columns-xs": "vars_grid-template-columns-xs__ODQxY", "flex-basis-xs": "vars_flex-basis-xs__NjI2Y", "flex-grow-xs": "vars_flex-grow-xs__NDQ1Z", "flex-shrink-xs": "vars_flex-shrink-xs__ZjJjM", "overflow-xs": "vars_overflow-xs__NjA1N", "overflow-x-xs": "vars_overflow-x-xs__Yzc2Y", "overflow-y-xs": "vars_overflow-y-xs__MzdiZ", "order-xs": "vars_order-xs__Y2Y2N", "display-sm": "vars_display-sm__ZTZlZ", "position-sm": "vars_position-sm__NDdlO", "font-size-sm": "vars_font-size-sm__M2U4N", "font-weight-sm": "vars_font-weight-sm__OGE1Z", "heading-size-sm": "vars_heading-size-sm__ZTNmY", "border-size-sm": "vars_border-size-sm__MDNlY", "border-radius-sm": "vars_border-radius-sm__N2YwN", "shadow-sm": "vars_shadow-sm__YzMxN", "background-color-sm": "vars_background-color-sm__NjUyM", "align-sm": "vars_align-sm__MWNlY", "letter-spacing-sm": "vars_letter-spacing-sm__ODE0Y", "padding-sm": "vars_padding-sm__MWFjO", "padding-x-sm": "vars_padding-x-sm__MjRkZ", "padding-y-sm": "vars_padding-y-sm__ZDU4M", "padding-top-sm": "vars_padding-top-sm__NGYxO", "padding-right-sm": "vars_padding-right-sm__NGNlY", "padding-bottom-sm": "vars_padding-bottom-sm__ZGE0Y", "padding-left-sm": "vars_padding-left-sm__YzQ2N", "margin-sm": "vars_margin-sm__ZGUxM", "margin-x-sm": "vars_margin-x-sm__YjZlN", "margin-y-sm": "vars_margin-y-sm__ZDM3Z", "margin-top-sm": "vars_margin-top-sm__ZTRlN", "margin-right-sm": "vars_margin-right-sm__ZWY3N", "margin-bottom-sm": "vars_margin-bottom-sm__ZDNhN", "margin-left-sm": "vars_margin-left-sm__YWZkZ", "gap-sm": "vars_gap-sm__NTg4M", "gap-x-sm": "vars_gap-x-sm__MDVmN", "gap-y-sm": "vars_gap-y-sm__NDc2Z", "height-sm": "vars_height-sm__YmYxM", "width-sm": "vars_width-sm__NjBkZ", "min-height-sm": "vars_min-height-sm__MzM1Z", "min-width-sm": "vars_min-width-sm__MzgyN", "max-height-sm": "vars_max-height-sm__YWFlN", "flex-direction-sm": "vars_flex-direction-sm__MDcyY", "flex-wrap-sm": "vars_flex-wrap-sm__YTE5Z", "justify-content-sm": "vars_justify-content-sm__YWUxZ", "justify-items-sm": "vars_justify-items-sm__NmFhM", "justify-self-sm": "vars_justify-self-sm__ODFmM", "align-content-sm": "vars_align-content-sm__ZjY2Z", "align-items-sm": "vars_align-items-sm__NDEyZ", "align-self-sm": "vars_align-self-sm__ZjBkY", "grid-template-rows-sm": "vars_grid-template-rows-sm__ZWU3Z", "grid-template-columns-sm": "vars_grid-template-columns-sm__ZTU5N", "flex-basis-sm": "vars_flex-basis-sm__NzhmN", "flex-grow-sm": "vars_flex-grow-sm__OTk0Y", "flex-shrink-sm": "vars_flex-shrink-sm__ZTU1M", "overflow-sm": "vars_overflow-sm__ZTVlO", "overflow-x-sm": "vars_overflow-x-sm__ZDNhN", "overflow-y-sm": "vars_overflow-y-sm__MzVhN", "order-sm": "vars_order-sm__NTgzN", "display-md": "vars_display-md__YjNhZ", "position-md": "vars_position-md__MTY1O", "font-size-md": "vars_font-size-md__YzZjY", "font-weight-md": "vars_font-weight-md__NjA1N", "heading-size-md": "vars_heading-size-md__OWFlZ", "border-size-md": "vars_border-size-md__ZTc4Z", "border-radius-md": "vars_border-radius-md__OWEwM", "shadow-md": "vars_shadow-md__ZTNmO", "background-color-md": "vars_background-color-md__OGU2Z", "align-md": "vars_align-md__YzllZ", "letter-spacing-md": "vars_letter-spacing-md__NTQwN", "padding-md": "vars_padding-md__MzE4O", "padding-x-md": "vars_padding-x-md__NjQ5N", "padding-y-md": "vars_padding-y-md__NmMyZ", "padding-top-md": "vars_padding-top-md__OGZiZ", "padding-right-md": "vars_padding-right-md__ZTdmZ", "padding-bottom-md": "vars_padding-bottom-md__M2U0Z", "padding-left-md": "vars_padding-left-md__MWIyM", "margin-md": "vars_margin-md__MmQ2M", "margin-x-md": "vars_margin-x-md__ZWZhO", "margin-y-md": "vars_margin-y-md__OGNiZ", "margin-top-md": "vars_margin-top-md__OTYzN", "margin-right-md": "vars_margin-right-md__MmU4Y", "margin-bottom-md": "vars_margin-bottom-md__ZDJmO", "margin-left-md": "vars_margin-left-md__OWJiM", "gap-md": "vars_gap-md__NTU2N", "gap-x-md": "vars_gap-x-md__YTQwM", "gap-y-md": "vars_gap-y-md__YzFjY", "height-md": "vars_height-md__OGVhZ", "width-md": "vars_width-md__MWM0Z", "min-height-md": "vars_min-height-md__OWQwN", "min-width-md": "vars_min-width-md__OWFjM", "max-height-md": "vars_max-height-md__M2QwM", "flex-direction-md": "vars_flex-direction-md__OTJkO", "flex-wrap-md": "vars_flex-wrap-md__NWU2N", "justify-content-md": "vars_justify-content-md__Y2U4Y", "justify-items-md": "vars_justify-items-md__ZGE2N", "justify-self-md": "vars_justify-self-md__ZGNjM", "align-content-md": "vars_align-content-md__ZjU5N", "align-items-md": "vars_align-items-md__YzAwO", "align-self-md": "vars_align-self-md__MmEwM", "grid-template-rows-md": "vars_grid-template-rows-md__NWU2Y", "grid-template-columns-md": "vars_grid-template-columns-md__YzQ1M", "flex-basis-md": "vars_flex-basis-md__ZDg2Z", "flex-grow-md": "vars_flex-grow-md__MDMxN", "flex-shrink-md": "vars_flex-shrink-md__Mzg4O", "overflow-md": "vars_overflow-md__OTEzO", "overflow-x-md": "vars_overflow-x-md__NWFhN", "overflow-y-md": "vars_overflow-y-md__Y2RlY", "order-md": "vars_order-md__OWIwN", "display-lg": "vars_display-lg__Njg0M", "position-lg": "vars_position-lg__MzZjN", "font-size-lg": "vars_font-size-lg__YWQ1M", "font-weight-lg": "vars_font-weight-lg__MzM0O", "heading-size-lg": "vars_heading-size-lg__NTQ5M", "border-size-lg": "vars_border-size-lg__N2IxZ", "border-radius-lg": "vars_border-radius-lg__YTc1O", "shadow-lg": "vars_shadow-lg__MTlmO", "background-color-lg": "vars_background-color-lg__MjA0Y", "align-lg": "vars_align-lg__MWFmM", "letter-spacing-lg": "vars_letter-spacing-lg__YjM3N", "padding-lg": "vars_padding-lg__MzhkM", "padding-x-lg": "vars_padding-x-lg__MzBlO", "padding-y-lg": "vars_padding-y-lg__ZGE3O", "padding-top-lg": "vars_padding-top-lg__NzkzM", "padding-right-lg": "vars_padding-right-lg__ZDQzO", "padding-bottom-lg": "vars_padding-bottom-lg__MGEzY", "padding-left-lg": "vars_padding-left-lg__MTQ2N", "margin-lg": "vars_margin-lg__MmQzM", "margin-x-lg": "vars_margin-x-lg__NWM1Z", "margin-y-lg": "vars_margin-y-lg__OTQ5Z", "margin-top-lg": "vars_margin-top-lg__ZTQ0N", "margin-right-lg": "vars_margin-right-lg__MGY5N", "margin-bottom-lg": "vars_margin-bottom-lg__YjgxY", "margin-left-lg": "vars_margin-left-lg__ODNlO", "gap-lg": "vars_gap-lg__Njk3Z", "gap-x-lg": "vars_gap-x-lg__YzgyZ", "gap-y-lg": "vars_gap-y-lg__ODdjO", "height-lg": "vars_height-lg__ZTlkY", "width-lg": "vars_width-lg__ZTg1Y", "min-height-lg": "vars_min-height-lg__Njk1M", "min-width-lg": "vars_min-width-lg__YmU4O", "max-height-lg": "vars_max-height-lg__MGM0Z", "flex-direction-lg": "vars_flex-direction-lg__ZmVhO", "flex-wrap-lg": "vars_flex-wrap-lg__ODQ4Y", "justify-content-lg": "vars_justify-content-lg__N2U0O", "justify-items-lg": "vars_justify-items-lg__NTdmM", "justify-self-lg": "vars_justify-self-lg__N2YyN", "align-content-lg": "vars_align-content-lg__NzkxM", "align-items-lg": "vars_align-items-lg__NTQyN", "align-self-lg": "vars_align-self-lg__YzI4N", "grid-template-rows-lg": "vars_grid-template-rows-lg__ZTRjZ", "grid-template-columns-lg": "vars_grid-template-columns-lg__Nzg2M", "flex-basis-lg": "vars_flex-basis-lg__YmVkY", "flex-grow-lg": "vars_flex-grow-lg__MDA0N", "flex-shrink-lg": "vars_flex-shrink-lg__ZmY5Y", "overflow-lg": "vars_overflow-lg__YTdlN", "overflow-x-lg": "vars_overflow-x-lg__MGZmZ", "overflow-y-lg": "vars_overflow-y-lg__NWJjM", "order-lg": "vars_order-lg__NjNkZ", "display-xl": "vars_display-xl__OWYwO", "position-xl": "vars_position-xl__Y2YzZ", "font-size-xl": "vars_font-size-xl__OTYxN", "font-weight-xl": "vars_font-weight-xl__MTZiN", "heading-size-xl": "vars_heading-size-xl__OTZjY", "border-size-xl": "vars_border-size-xl__NDg5M", "border-radius-xl": "vars_border-radius-xl__YWYxZ", "shadow-xl": "vars_shadow-xl__ODczY", "background-color-xl": "vars_background-color-xl__MmM4Y", "align-xl": "vars_align-xl__NmVhZ", "letter-spacing-xl": "vars_letter-spacing-xl__MDI5Y", "padding-xl": "vars_padding-xl__NzQ2N", "padding-x-xl": "vars_padding-x-xl__MjQxM", "padding-y-xl": "vars_padding-y-xl__MDU3O", "padding-top-xl": "vars_padding-top-xl__M2RlZ", "padding-right-xl": "vars_padding-right-xl__YmZmM", "padding-bottom-xl": "vars_padding-bottom-xl__NjVlM", "padding-left-xl": "vars_padding-left-xl__ZjI5Z", "margin-xl": "vars_margin-xl__NzQyM", "margin-x-xl": "vars_margin-x-xl__ZTc3M", "margin-y-xl": "vars_margin-y-xl__MThmN", "margin-top-xl": "vars_margin-top-xl__ZTYzY", "margin-right-xl": "vars_margin-right-xl__OTMxY", "margin-bottom-xl": "vars_margin-bottom-xl__OTFjY", "margin-left-xl": "vars_margin-left-xl__NTBkN", "gap-xl": "vars_gap-xl__M2ViO", "gap-x-xl": "vars_gap-x-xl__NTliM", "gap-y-xl": "vars_gap-y-xl__NzA1Z", "height-xl": "vars_height-xl__NjYyN", "width-xl": "vars_width-xl__NGVkZ", "min-height-xl": "vars_min-height-xl__MTkyZ", "min-width-xl": "vars_min-width-xl__MTFmN", "max-height-xl": "vars_max-height-xl__OTU5Z", "flex-direction-xl": "vars_flex-direction-xl__MmJiY", "flex-wrap-xl": "vars_flex-wrap-xl__MzIyN", "justify-content-xl": "vars_justify-content-xl__MDA5M", "justify-items-xl": "vars_justify-items-xl__MTFiM", "justify-self-xl": "vars_justify-self-xl__Y2FjN", "align-content-xl": "vars_align-content-xl__MjMzM", "align-items-xl": "vars_align-items-xl__ZmU2O", "align-self-xl": "vars_align-self-xl__NjBiN", "grid-template-rows-xl": "vars_grid-template-rows-xl__NjY4Z", "grid-template-columns-xl": "vars_grid-template-columns-xl__OTQ0M", "flex-basis-xl": "vars_flex-basis-xl__Yzc3O", "flex-grow-xl": "vars_flex-grow-xl__ODYxZ", "flex-shrink-xl": "vars_flex-shrink-xl__OWQ1Y", "overflow-xl": "vars_overflow-xl__MDQ2M", "overflow-x-xl": "vars_overflow-x-xl__NTY0M", "overflow-y-xl": "vars_overflow-y-xl__ZjNmO", "order-xl": "vars_order-xl__ODAwM" };
|
|
25961
25977
|
|
|
25962
25978
|
// src/components/hooks/useDesignProps.ts
|
|
25963
25979
|
var CSS_MAP = {
|
|
@@ -26065,13 +26081,13 @@ function useDesignProps(props) {
|
|
|
26065
26081
|
if (excludedProps.includes(key) || /var\(.*\)/.test(value.toString())) {
|
|
26066
26082
|
styleProps[key] = value;
|
|
26067
26083
|
} else {
|
|
26068
|
-
classes.push(
|
|
26084
|
+
classes.push(vars_default[`${name}-${value}`]);
|
|
26069
26085
|
}
|
|
26070
26086
|
} else if (typeof value === "object") {
|
|
26071
26087
|
Object.keys(value).forEach((breakpoint) => {
|
|
26072
26088
|
const className = `${name}${breakpoint === "default" ? "" : `-${breakpoint}`}`;
|
|
26073
|
-
if (
|
|
26074
|
-
classes.push(
|
|
26089
|
+
if (vars_default[className]) {
|
|
26090
|
+
classes.push(vars_default[className]);
|
|
26075
26091
|
styleProps[`--${className}`] = parseValue(value[breakpoint], name);
|
|
26076
26092
|
} else {
|
|
26077
26093
|
styleProps[`--${className}`] = value;
|
|
@@ -26234,53 +26250,8 @@ function Column({ reverse, children, ...props }) {
|
|
|
26234
26250
|
return /* @__PURE__ */ jsx5(Flexbox, { ...props, direction: reverse ? "column-reverse" : "column", children });
|
|
26235
26251
|
}
|
|
26236
26252
|
|
|
26237
|
-
// src/components/Text.tsx
|
|
26238
|
-
var import_classnames5 = __toESM(require_classnames());
|
|
26239
|
-
|
|
26240
|
-
// css-modules:E:\dev\umami-react-zen\src\components\Text.module.css
|
|
26241
|
-
var Text_default = { "text": "Text_text__ZDk3Y" };
|
|
26242
|
-
|
|
26243
|
-
// src/components/Text.tsx
|
|
26244
|
-
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
26245
|
-
function Text({
|
|
26246
|
-
color,
|
|
26247
|
-
size,
|
|
26248
|
-
spacing,
|
|
26249
|
-
weight,
|
|
26250
|
-
align,
|
|
26251
|
-
wrap,
|
|
26252
|
-
as = "span",
|
|
26253
|
-
asChild,
|
|
26254
|
-
className,
|
|
26255
|
-
style,
|
|
26256
|
-
children,
|
|
26257
|
-
...props
|
|
26258
|
-
}) {
|
|
26259
|
-
const Component = asChild ? Slot : as;
|
|
26260
|
-
const [classes, styleProps] = useDesignProps({
|
|
26261
|
-
fontSize: size,
|
|
26262
|
-
textAlign: align,
|
|
26263
|
-
textWrap: wrap,
|
|
26264
|
-
fontWeight: weight,
|
|
26265
|
-
letterSpacing: spacing,
|
|
26266
|
-
color
|
|
26267
|
-
});
|
|
26268
|
-
return /* @__PURE__ */ jsx6(
|
|
26269
|
-
Component,
|
|
26270
|
-
{
|
|
26271
|
-
...props,
|
|
26272
|
-
className: (0, import_classnames5.default)(Text_default.text, className, classes),
|
|
26273
|
-
style: { ...styleProps, ...style },
|
|
26274
|
-
children
|
|
26275
|
-
}
|
|
26276
|
-
);
|
|
26277
|
-
}
|
|
26278
|
-
|
|
26279
|
-
// css-modules:E:\dev\umami-react-zen\src\components\forms\Form.module.css
|
|
26280
|
-
var Form_default = { "form": "Form_form__MzllY", "text": "Form_text__NjQ1Y", "icon": "Form_icon__NDg3M", "error": "Form_error__Nzk0N" };
|
|
26281
|
-
|
|
26282
26253
|
// src/components/forms/Form.tsx
|
|
26283
|
-
import { jsx as
|
|
26254
|
+
import { jsx as jsx6, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
26284
26255
|
function Form({
|
|
26285
26256
|
gap = "3",
|
|
26286
26257
|
autoComplete,
|
|
@@ -26334,59 +26305,75 @@ function Form({
|
|
|
26334
26305
|
}
|
|
26335
26306
|
}, [error]);
|
|
26336
26307
|
return /* @__PURE__ */ jsxs2(FormProvider, { ...formValues, children: [
|
|
26337
|
-
error && /* @__PURE__ */
|
|
26338
|
-
|
|
26339
|
-
|
|
26340
|
-
|
|
26341
|
-
|
|
26308
|
+
error && /* @__PURE__ */ jsx6(
|
|
26309
|
+
AlertBanner,
|
|
26310
|
+
{
|
|
26311
|
+
variant: "error",
|
|
26312
|
+
align: "center",
|
|
26313
|
+
description: error instanceof Error ? error?.message : error
|
|
26314
|
+
}
|
|
26315
|
+
),
|
|
26316
|
+
/* @__PURE__ */ jsx6(
|
|
26342
26317
|
"form",
|
|
26343
26318
|
{
|
|
26344
26319
|
...props,
|
|
26345
26320
|
autoComplete,
|
|
26346
|
-
className: (0,
|
|
26321
|
+
className: (0, import_classnames5.default)(Form_default.form, className),
|
|
26347
26322
|
onSubmit: onSubmit ? handleSubmit(onSubmit) : void 0,
|
|
26348
26323
|
onKeyDown,
|
|
26349
|
-
children: /* @__PURE__ */
|
|
26324
|
+
children: /* @__PURE__ */ jsx6(Column, { gap, children: typeof children === "function" ? children(formValues) : children })
|
|
26350
26325
|
}
|
|
26351
26326
|
)
|
|
26352
26327
|
] });
|
|
26353
26328
|
}
|
|
26354
26329
|
|
|
26330
|
+
// src/components/Row.tsx
|
|
26331
|
+
import { jsx as jsx7 } from "react/jsx-runtime";
|
|
26332
|
+
function Row({ reverse, children, ...props }) {
|
|
26333
|
+
return /* @__PURE__ */ jsx7(Flexbox, { ...props, direction: reverse ? "row-reverse" : "row", children });
|
|
26334
|
+
}
|
|
26335
|
+
|
|
26336
|
+
// src/components/forms/FormButtons.tsx
|
|
26337
|
+
import { jsx as jsx8 } from "react/jsx-runtime";
|
|
26338
|
+
function FormButtons({ children, ...props }) {
|
|
26339
|
+
return /* @__PURE__ */ jsx8(Row, { paddingTop: "3", gap: "3", justifyContent: "flex-end", ...props, children });
|
|
26340
|
+
}
|
|
26341
|
+
|
|
26355
26342
|
// src/components/forms/FormField.tsx
|
|
26356
26343
|
import { cloneElement as cloneElement2, forwardRef, Children } from "react";
|
|
26357
|
-
var
|
|
26344
|
+
var import_classnames6 = __toESM(require_classnames());
|
|
26358
26345
|
|
|
26359
26346
|
// css-modules:E:\dev\umami-react-zen\src\components\forms\FormField.module.css
|
|
26360
26347
|
var FormField_default = { "field": "FormField_field__NzY5Y", "description": "FormField_description__OGY3Y", "error": "FormField_error__NmEzO" };
|
|
26361
26348
|
|
|
26362
26349
|
// src/components/forms/FormField.tsx
|
|
26363
|
-
import { jsx as
|
|
26350
|
+
import { jsx as jsx9, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
26364
26351
|
var FormField = forwardRef(
|
|
26365
26352
|
({ name, description, label, rules, className, children, ...props }, ref) => {
|
|
26366
26353
|
const { formState, control } = useFormContext();
|
|
26367
26354
|
const { field } = useController({ name, control, rules });
|
|
26368
26355
|
const errors = formState?.errors || {};
|
|
26369
26356
|
const errorMessage = errors[name]?.message;
|
|
26370
|
-
return /* @__PURE__ */ jsxs3("div", { ...props, ref, className: (0,
|
|
26357
|
+
return /* @__PURE__ */ jsxs3("div", { ...props, ref, className: (0, import_classnames6.default)(FormField_default.input, className), children: [
|
|
26371
26358
|
typeof children === "function" ? children(field) : Children.map(
|
|
26372
26359
|
children,
|
|
26373
26360
|
(child) => child ? cloneElement2(child, { ...field, label: child.props.label || label }) : null
|
|
26374
26361
|
),
|
|
26375
|
-
description && /* @__PURE__ */
|
|
26376
|
-
errorMessage && /* @__PURE__ */
|
|
26362
|
+
description && /* @__PURE__ */ jsx9("div", { className: FormField_default.description, children: description }),
|
|
26363
|
+
errorMessage && /* @__PURE__ */ jsx9("div", { className: FormField_default.error, children: errorMessage })
|
|
26377
26364
|
] });
|
|
26378
26365
|
}
|
|
26379
26366
|
);
|
|
26380
26367
|
|
|
26381
26368
|
// src/components/Button.tsx
|
|
26382
26369
|
import { forwardRef as forwardRef2 } from "react";
|
|
26383
|
-
var
|
|
26370
|
+
var import_classnames7 = __toESM(require_classnames());
|
|
26384
26371
|
|
|
26385
26372
|
// css-modules:E:\dev\umami-react-zen\src\components\Button.module.css
|
|
26386
|
-
var Button_default = { "button": "
|
|
26373
|
+
var Button_default = { "button": "Button_button__ZjBiN", "primary": "Button_primary__YWI4N", "outline": "Button_outline__ZjAzM", "quiet": "Button_quiet__NDJlN", "danger": "Button_danger__ODE5Z", "xs": "Button_xs__YjY5N", "sm": "Button_sm__MzZkM", "md": "Button_md__MGQxZ", "lg": "Button_lg__ZGY2Z", "xl": "Button_xl__M2FhN" };
|
|
26387
26374
|
|
|
26388
26375
|
// src/components/Button.tsx
|
|
26389
|
-
import { jsx as
|
|
26376
|
+
import { jsx as jsx10 } from "react/jsx-runtime";
|
|
26390
26377
|
var Button = forwardRef2(
|
|
26391
26378
|
({
|
|
26392
26379
|
variant = "secondary",
|
|
@@ -26399,13 +26386,13 @@ var Button = forwardRef2(
|
|
|
26399
26386
|
}, ref) => {
|
|
26400
26387
|
const Component = asChild ? Slot : $d2b4bc8c273e7be6$export$353f5b6fc5456de1;
|
|
26401
26388
|
const buttonProps = Component === $d2b4bc8c273e7be6$export$353f5b6fc5456de1 ? { preventFocusOnPress } : void 0;
|
|
26402
|
-
return /* @__PURE__ */
|
|
26389
|
+
return /* @__PURE__ */ jsx10(
|
|
26403
26390
|
Component,
|
|
26404
26391
|
{
|
|
26405
26392
|
...props,
|
|
26406
26393
|
...buttonProps,
|
|
26407
26394
|
ref,
|
|
26408
|
-
className: (0,
|
|
26395
|
+
className: (0, import_classnames7.default)(
|
|
26409
26396
|
Button_default.button,
|
|
26410
26397
|
className,
|
|
26411
26398
|
variant && Button_default[variant],
|
|
@@ -26418,61 +26405,68 @@ var Button = forwardRef2(
|
|
|
26418
26405
|
);
|
|
26419
26406
|
|
|
26420
26407
|
// src/components/forms/FormResetButton.tsx
|
|
26421
|
-
import { jsx as
|
|
26408
|
+
import { jsx as jsx11 } from "react/jsx-runtime";
|
|
26422
26409
|
function FormResetButton({ values = {}, children, onPress, ...props }) {
|
|
26423
26410
|
const { reset } = useFormContext();
|
|
26424
26411
|
const handleReset = (e) => {
|
|
26425
26412
|
reset(values);
|
|
26426
26413
|
onPress?.(e);
|
|
26427
26414
|
};
|
|
26428
|
-
return /* @__PURE__ */
|
|
26415
|
+
return /* @__PURE__ */ jsx11(Button, { ...props, type: "reset", onPress: handleReset, children });
|
|
26429
26416
|
}
|
|
26430
26417
|
|
|
26431
26418
|
// src/components/Spinner.tsx
|
|
26432
|
-
var
|
|
26419
|
+
var import_classnames8 = __toESM(require_classnames());
|
|
26433
26420
|
|
|
26434
26421
|
// css-modules:E:\dev\umami-react-zen\src\components\Spinner.module.css
|
|
26435
26422
|
var Spinner_default = { "spinner": "Spinner_spinner__YmIxY", "spinner-rotate": "Spinner_spinner-rotate__M2JlN", "track": "Spinner_track__ODU2M", "fill": "Spinner_fill__YzAwM", "spinner-dash": "Spinner_spinner-dash__YWNmO", "size-sm": "Spinner_size-sm__MTQ0Z", "size-md": "Spinner_size-md__Y2VlY", "size-lg": "Spinner_size-lg__MjNjZ", "size-xl": "Spinner_size-xl__NTdhZ", "quiet": "Spinner_quiet__ZmYxN" };
|
|
26436
26423
|
|
|
26437
26424
|
// src/components/Spinner.tsx
|
|
26438
|
-
import { jsx as
|
|
26425
|
+
import { jsx as jsx12, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
26439
26426
|
function Spinner(props) {
|
|
26440
26427
|
const { size = "lg", quiet, className, ...domProps } = props;
|
|
26441
|
-
return /* @__PURE__ */
|
|
26428
|
+
return /* @__PURE__ */ jsx12(
|
|
26442
26429
|
"div",
|
|
26443
26430
|
{
|
|
26444
26431
|
...domProps,
|
|
26445
|
-
className: (0,
|
|
26432
|
+
className: (0, import_classnames8.default)(Spinner_default.spinner, className, Spinner_default[`size-${size}`], {
|
|
26446
26433
|
[Spinner_default.quiet]: quiet
|
|
26447
26434
|
}),
|
|
26448
26435
|
children: /* @__PURE__ */ jsxs4("svg", { viewBox: "25 25 50 50", children: [
|
|
26449
|
-
/* @__PURE__ */
|
|
26450
|
-
/* @__PURE__ */
|
|
26436
|
+
/* @__PURE__ */ jsx12("circle", { className: Spinner_default.track, cx: "50", cy: "50", r: "20" }),
|
|
26437
|
+
/* @__PURE__ */ jsx12("circle", { className: Spinner_default.fill, cx: "50", cy: "50", r: "20" })
|
|
26451
26438
|
] })
|
|
26452
26439
|
}
|
|
26453
26440
|
);
|
|
26454
26441
|
}
|
|
26455
26442
|
|
|
26456
26443
|
// src/components/LoadingButton.tsx
|
|
26457
|
-
import { jsx as
|
|
26444
|
+
import { jsx as jsx13, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
26458
26445
|
function LoadingButton({ isLoading, children, ...props }) {
|
|
26459
26446
|
return /* @__PURE__ */ jsxs5(Button, { ...props, children: [
|
|
26460
|
-
isLoading && /* @__PURE__ */
|
|
26447
|
+
isLoading && /* @__PURE__ */ jsx13(Icon, { size: "sm", children: /* @__PURE__ */ jsx13(Spinner, {}) }),
|
|
26461
26448
|
children
|
|
26462
26449
|
] });
|
|
26463
26450
|
}
|
|
26464
26451
|
|
|
26465
26452
|
// src/components/forms/FormSubmitButton.tsx
|
|
26466
|
-
import { jsx as
|
|
26467
|
-
function FormSubmitButton({
|
|
26453
|
+
import { jsx as jsx14 } from "react/jsx-runtime";
|
|
26454
|
+
function FormSubmitButton({
|
|
26455
|
+
variant = "primary",
|
|
26456
|
+
children,
|
|
26457
|
+
disabled,
|
|
26458
|
+
isLoading,
|
|
26459
|
+
...props
|
|
26460
|
+
}) {
|
|
26468
26461
|
const {
|
|
26469
26462
|
formState: { isDirty, isValid, isSubmitting, isSubmitted, isSubmitSuccessful }
|
|
26470
26463
|
} = useFormContext();
|
|
26471
|
-
return /* @__PURE__ */
|
|
26464
|
+
return /* @__PURE__ */ jsx14(
|
|
26472
26465
|
LoadingButton,
|
|
26473
26466
|
{
|
|
26474
26467
|
...props,
|
|
26475
26468
|
type: "submit",
|
|
26469
|
+
variant,
|
|
26476
26470
|
disabled: disabled !== void 0 ? disabled : !isDirty || !isValid || isSubmitting || isSubmitted,
|
|
26477
26471
|
isLoading: isLoading !== void 0 ? isLoading : isValid && isSubmitSuccessful && (isSubmitting || isSubmitted),
|
|
26478
26472
|
children
|
|
@@ -26481,14 +26475,14 @@ function FormSubmitButton({ children, disabled, isLoading, ...props }) {
|
|
|
26481
26475
|
}
|
|
26482
26476
|
|
|
26483
26477
|
// src/components/toast/Toast.tsx
|
|
26484
|
-
var
|
|
26478
|
+
var import_classnames9 = __toESM(require_classnames());
|
|
26485
26479
|
import { createElement as createElement2 } from "react";
|
|
26486
26480
|
|
|
26487
26481
|
// css-modules:E:\dev\umami-react-zen\src\components\toast\Toast.module.css
|
|
26488
26482
|
var Toast_default = { "toast": "Toast_toast__YjU0N", "icon": "Toast_icon__YmFhZ", "title": "Toast_title__OGRhM", "description": "Toast_description__MDBkN", "action": "Toast_action__MjUxO", "close": "Toast_close__ZDVjN", "info": "Toast_info__ZDRhY", "error": "Toast_error__NmEwO" };
|
|
26489
26483
|
|
|
26490
26484
|
// src/components/toast/Toast.tsx
|
|
26491
|
-
import { jsx as
|
|
26485
|
+
import { jsx as jsx15, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
26492
26486
|
var TOAST_CLOSE_ACTION = "close";
|
|
26493
26487
|
var icons = {
|
|
26494
26488
|
info: Icons.Info,
|
|
@@ -26507,14 +26501,14 @@ function Toast({
|
|
|
26507
26501
|
...props
|
|
26508
26502
|
}) {
|
|
26509
26503
|
const hasActions = actions?.length > 0;
|
|
26510
|
-
return /* @__PURE__ */ jsxs6("div", { ...props, className: (0,
|
|
26511
|
-
/* @__PURE__ */
|
|
26512
|
-
title && /* @__PURE__ */
|
|
26513
|
-
message && /* @__PURE__ */
|
|
26504
|
+
return /* @__PURE__ */ jsxs6("div", { ...props, className: (0, import_classnames9.default)(Toast_default.toast, className, variant && Toast_default[variant]), children: [
|
|
26505
|
+
/* @__PURE__ */ jsx15(Icon, { className: Toast_default.icon, size: "md", children: variant && createElement2(icons[variant]) }),
|
|
26506
|
+
title && /* @__PURE__ */ jsx15("div", { className: Toast_default.title, children: title }),
|
|
26507
|
+
message && /* @__PURE__ */ jsx15("div", { className: Toast_default.description, children: message }),
|
|
26514
26508
|
hasActions && actions.map((action) => {
|
|
26515
|
-
return /* @__PURE__ */
|
|
26509
|
+
return /* @__PURE__ */ jsx15(Button, { className: Toast_default.action, onPress: () => onClose?.(action), children: action }, action);
|
|
26516
26510
|
}),
|
|
26517
|
-
!hasActions && allowClose && /* @__PURE__ */
|
|
26511
|
+
!hasActions && allowClose && /* @__PURE__ */ jsx15(
|
|
26518
26512
|
Icon,
|
|
26519
26513
|
{
|
|
26520
26514
|
size: "sm",
|
|
@@ -26522,7 +26516,7 @@ function Toast({
|
|
|
26522
26516
|
className: Toast_default.close,
|
|
26523
26517
|
"aria-label": "Close",
|
|
26524
26518
|
onClick: () => onClose?.(TOAST_CLOSE_ACTION),
|
|
26525
|
-
children: /* @__PURE__ */
|
|
26519
|
+
children: /* @__PURE__ */ jsx15(Icons.Close, {})
|
|
26526
26520
|
}
|
|
26527
26521
|
)
|
|
26528
26522
|
] });
|
|
@@ -27530,7 +27524,7 @@ function usePrev(value) {
|
|
|
27530
27524
|
import { useContext as useContext2, useMemo, useRef as useRef6 } from "react";
|
|
27531
27525
|
|
|
27532
27526
|
// node_modules/@react-spring/animated/dist/react-spring_animated.modern.mjs
|
|
27533
|
-
import * as
|
|
27527
|
+
import * as React4 from "react";
|
|
27534
27528
|
import { forwardRef as forwardRef3, useRef as useRef5, useCallback, useEffect as useEffect5 } from "react";
|
|
27535
27529
|
var $node = Symbol.for("Animated:node");
|
|
27536
27530
|
var isAnimated = (value) => !!value && value[$node] === value;
|
|
@@ -27760,7 +27754,7 @@ var withAnimated = (Component, host2) => {
|
|
|
27760
27754
|
each(observer2.deps, (dep) => removeFluidObserver(dep, observer2));
|
|
27761
27755
|
});
|
|
27762
27756
|
const usedProps = host2.getComponentProps(props.getValue());
|
|
27763
|
-
return /* @__PURE__ */
|
|
27757
|
+
return /* @__PURE__ */ React4.createElement(Component, { ...usedProps, ref });
|
|
27764
27758
|
});
|
|
27765
27759
|
};
|
|
27766
27760
|
var PropsObserver = class {
|
|
@@ -27829,7 +27823,7 @@ var createHost = (components, {
|
|
|
27829
27823
|
var getDisplayName = (arg) => is.str(arg) ? arg : arg && is.str(arg.displayName) ? arg.displayName : is.fun(arg) && arg.name || null;
|
|
27830
27824
|
|
|
27831
27825
|
// node_modules/@react-spring/core/dist/react-spring_core.modern.mjs
|
|
27832
|
-
import * as
|
|
27826
|
+
import * as React5 from "react";
|
|
27833
27827
|
import { useContext } from "react";
|
|
27834
27828
|
import { useState as useState4 } from "react";
|
|
27835
27829
|
import * as React22 from "react";
|
|
@@ -29297,13 +29291,13 @@ var SpringContext = ({
|
|
|
29297
29291
|
const pause = props.pause || !!inherited.pause, immediate = props.immediate || !!inherited.immediate;
|
|
29298
29292
|
props = useMemoOne(() => ({ pause, immediate }), [pause, immediate]);
|
|
29299
29293
|
const { Provider } = ctx;
|
|
29300
|
-
return /* @__PURE__ */
|
|
29294
|
+
return /* @__PURE__ */ React5.createElement(Provider, { value: props }, children);
|
|
29301
29295
|
};
|
|
29302
29296
|
var ctx = makeContext(SpringContext, {});
|
|
29303
29297
|
SpringContext.Provider = ctx.Provider;
|
|
29304
29298
|
SpringContext.Consumer = ctx.Consumer;
|
|
29305
29299
|
function makeContext(target, init) {
|
|
29306
|
-
Object.assign(target,
|
|
29300
|
+
Object.assign(target, React5.createContext(init));
|
|
29307
29301
|
target.Provider._context = target;
|
|
29308
29302
|
target.Consumer._context = target;
|
|
29309
29303
|
return target;
|
|
@@ -30102,7 +30096,7 @@ var host = createHost(primitives, {
|
|
|
30102
30096
|
var animated = host.animated;
|
|
30103
30097
|
|
|
30104
30098
|
// src/components/toast/Toaster.tsx
|
|
30105
|
-
var
|
|
30099
|
+
var import_classnames10 = __toESM(require_classnames());
|
|
30106
30100
|
import { useEffect as useEffect6, useState as useState5 } from "react";
|
|
30107
30101
|
|
|
30108
30102
|
// node_modules/zustand/esm/vanilla.mjs
|
|
@@ -30130,15 +30124,15 @@ var createStoreImpl = (createState) => {
|
|
|
30130
30124
|
var createStore = (createState) => createState ? createStoreImpl(createState) : createStoreImpl;
|
|
30131
30125
|
|
|
30132
30126
|
// node_modules/zustand/esm/react.mjs
|
|
30133
|
-
import
|
|
30127
|
+
import React6 from "react";
|
|
30134
30128
|
var identity = (arg) => arg;
|
|
30135
30129
|
function useStore(api, selector = identity) {
|
|
30136
|
-
const slice =
|
|
30130
|
+
const slice = React6.useSyncExternalStore(
|
|
30137
30131
|
api.subscribe,
|
|
30138
30132
|
() => selector(api.getState()),
|
|
30139
30133
|
() => selector(api.getInitialState())
|
|
30140
30134
|
);
|
|
30141
|
-
|
|
30135
|
+
React6.useDebugValue(slice);
|
|
30142
30136
|
return slice;
|
|
30143
30137
|
}
|
|
30144
30138
|
var createImpl = (createState) => {
|
|
@@ -30154,12 +30148,12 @@ import { useContext as useContext4 } from "react";
|
|
|
30154
30148
|
|
|
30155
30149
|
// src/components/toast/ToastProvider.tsx
|
|
30156
30150
|
import { createContext as createContext2 } from "react";
|
|
30157
|
-
import { jsx as
|
|
30151
|
+
import { jsx as jsx16, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
30158
30152
|
var ToastContext = createContext2({});
|
|
30159
30153
|
function ToastProvider({ children, ...config2 }) {
|
|
30160
30154
|
return /* @__PURE__ */ jsxs7(ToastContext.Provider, { value: config2, children: [
|
|
30161
30155
|
children,
|
|
30162
|
-
/* @__PURE__ */
|
|
30156
|
+
/* @__PURE__ */ jsx16(Toaster, { ...config2 })
|
|
30163
30157
|
] });
|
|
30164
30158
|
}
|
|
30165
30159
|
|
|
@@ -30197,7 +30191,7 @@ function useToast() {
|
|
|
30197
30191
|
var Toaster_default = { "toaster": "Toaster_toaster__OGJjM", "position-top": "Toaster_position-top__Y2YyM", "position-top-right": "Toaster_position-top-right__Y2I1Y", "position-top-left": "Toaster_position-top-left__ZGZlM", "position-bottom": "Toaster_position-bottom__NjJmM", "position-bottom-right": "Toaster_position-bottom-right__MGVjY", "position-bottom-left": "Toaster_position-bottom-left__ODBhZ", "position-left": "Toaster_position-left__MWMzM", "position-right": "Toaster_position-right__YWYzZ" };
|
|
30198
30192
|
|
|
30199
30193
|
// src/components/toast/Toaster.tsx
|
|
30200
|
-
import { jsx as
|
|
30194
|
+
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
30201
30195
|
function Toaster({ duration = 0, position = "bottom-right" }) {
|
|
30202
30196
|
const { toasts } = useToast();
|
|
30203
30197
|
const [hovered, setHovered] = useState5(false);
|
|
@@ -30229,17 +30223,17 @@ function Toaster({ duration = 0, position = "bottom-right" }) {
|
|
|
30229
30223
|
};
|
|
30230
30224
|
}
|
|
30231
30225
|
}, [duration, toasts, hovered]);
|
|
30232
|
-
return /* @__PURE__ */
|
|
30226
|
+
return /* @__PURE__ */ jsx17(
|
|
30233
30227
|
"div",
|
|
30234
30228
|
{
|
|
30235
|
-
className: (0,
|
|
30229
|
+
className: (0, import_classnames10.default)(Toaster_default.toaster, Toaster_default[`position-${position}`]),
|
|
30236
30230
|
onMouseEnter: () => setHovered(true),
|
|
30237
30231
|
onMouseLeave: () => setHovered(false),
|
|
30238
30232
|
children: transitions((style, item) => {
|
|
30239
30233
|
const { id, ...props } = item;
|
|
30240
30234
|
return (
|
|
30241
30235
|
// @ts-ignore
|
|
30242
|
-
/* @__PURE__ */
|
|
30236
|
+
/* @__PURE__ */ jsx17(animated.div, { style, children: /* @__PURE__ */ jsx17(Toast, { ...props, id, onClose: () => removeToast(id) }) }, id)
|
|
30243
30237
|
);
|
|
30244
30238
|
})
|
|
30245
30239
|
}
|
|
@@ -30285,13 +30279,55 @@ function useTheme(defaultTheme) {
|
|
|
30285
30279
|
import { useState as useState7 } from "react";
|
|
30286
30280
|
var import_classnames12 = __toESM(require_classnames());
|
|
30287
30281
|
|
|
30282
|
+
// src/components/Text.tsx
|
|
30283
|
+
var import_classnames11 = __toESM(require_classnames());
|
|
30284
|
+
|
|
30285
|
+
// css-modules:E:\dev\umami-react-zen\src\components\Text.module.css
|
|
30286
|
+
var Text_default = {};
|
|
30287
|
+
|
|
30288
|
+
// src/components/Text.tsx
|
|
30289
|
+
import { jsx as jsx18 } from "react/jsx-runtime";
|
|
30290
|
+
function Text({
|
|
30291
|
+
color,
|
|
30292
|
+
size,
|
|
30293
|
+
spacing,
|
|
30294
|
+
weight,
|
|
30295
|
+
align,
|
|
30296
|
+
wrap,
|
|
30297
|
+
as = "span",
|
|
30298
|
+
asChild,
|
|
30299
|
+
className,
|
|
30300
|
+
style,
|
|
30301
|
+
children,
|
|
30302
|
+
...props
|
|
30303
|
+
}) {
|
|
30304
|
+
const Component = asChild ? Slot : as;
|
|
30305
|
+
const [classes, styleProps] = useDesignProps({
|
|
30306
|
+
fontSize: size,
|
|
30307
|
+
textAlign: align,
|
|
30308
|
+
textWrap: wrap,
|
|
30309
|
+
fontWeight: weight,
|
|
30310
|
+
letterSpacing: spacing,
|
|
30311
|
+
color
|
|
30312
|
+
});
|
|
30313
|
+
return /* @__PURE__ */ jsx18(
|
|
30314
|
+
Component,
|
|
30315
|
+
{
|
|
30316
|
+
...props,
|
|
30317
|
+
className: (0, import_classnames11.default)(Text_default.text, className, classes),
|
|
30318
|
+
style: { ...styleProps, ...style },
|
|
30319
|
+
children
|
|
30320
|
+
}
|
|
30321
|
+
);
|
|
30322
|
+
}
|
|
30323
|
+
|
|
30288
30324
|
// css-modules:E:\dev\umami-react-zen\src\components\Accordion.module.css
|
|
30289
30325
|
var Accordion_default = { "accordion": "Accordion_accordion__ODg3O", "item": "Accordion_item__ZDU3Z", "button": "Accordion_button__MTRiY", "icon": "Accordion_icon__NDMwM", "panel": "Accordion_panel__OTQ4M", "expanded": "Accordion_expanded__ODY0N" };
|
|
30290
30326
|
|
|
30291
30327
|
// src/components/Accordion.tsx
|
|
30292
|
-
import { jsx as
|
|
30328
|
+
import { jsx as jsx19, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
30293
30329
|
function Accordion({ className, children, ...props }) {
|
|
30294
|
-
return /* @__PURE__ */
|
|
30330
|
+
return /* @__PURE__ */ jsx19($28f4fd908f0de97f$export$944aceb4f8c89f10, { ...props, className: (0, import_classnames12.default)(Accordion_default.accordion, className), children });
|
|
30295
30331
|
}
|
|
30296
30332
|
function AccordionItem({
|
|
30297
30333
|
defaultExpanded,
|
|
@@ -30312,10 +30348,10 @@ function AccordionItem({
|
|
|
30312
30348
|
onExpandedChange: handleExpandedChange,
|
|
30313
30349
|
children: [
|
|
30314
30350
|
/* @__PURE__ */ jsxs8(Button, { slot: "trigger", className: Accordion_default.button, children: [
|
|
30315
|
-
/* @__PURE__ */
|
|
30316
|
-
/* @__PURE__ */
|
|
30351
|
+
/* @__PURE__ */ jsx19(Text, { children: trigger }),
|
|
30352
|
+
/* @__PURE__ */ jsx19(Icon, { className: Accordion_default.icon, size: "xs", children: /* @__PURE__ */ jsx19(Icons.Chevron, {}) })
|
|
30317
30353
|
] }),
|
|
30318
|
-
/* @__PURE__ */
|
|
30354
|
+
/* @__PURE__ */ jsx19($28f4fd908f0de97f$export$feabaa331e1d464c, { className: (0, import_classnames12.default)(Accordion_default.panel, expanded && Accordion_default.expanded), children: panel })
|
|
30319
30355
|
]
|
|
30320
30356
|
}
|
|
30321
30357
|
);
|
|
@@ -30331,16 +30367,16 @@ var import_classnames13 = __toESM(require_classnames());
|
|
|
30331
30367
|
var Dialog_default = { "dialog": "Dialog_dialog__ZmY2N", "title": "Dialog_title__Yzg1Y", "modal": "Dialog_modal__OWRhY", "menu": "Dialog_menu__YmJjN", "sheet": "Dialog_sheet__Mjk2Y" };
|
|
30332
30368
|
|
|
30333
30369
|
// src/components/Dialog.tsx
|
|
30334
|
-
import { Fragment as Fragment2, jsx as
|
|
30370
|
+
import { Fragment as Fragment2, jsx as jsx20, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
30335
30371
|
function Dialog({ title, variant = "modal", children, className, ...props }) {
|
|
30336
|
-
return /* @__PURE__ */
|
|
30372
|
+
return /* @__PURE__ */ jsx20(
|
|
30337
30373
|
$de32f1b87079253c$export$3ddf2d174ce01153,
|
|
30338
30374
|
{
|
|
30339
30375
|
...props,
|
|
30340
30376
|
className: (0, import_classnames13.default)(Dialog_default.dialog, variant && Dialog_default[variant], className),
|
|
30341
30377
|
children: (dialogProps) => {
|
|
30342
30378
|
return /* @__PURE__ */ jsxs9(Fragment2, { children: [
|
|
30343
|
-
title && /* @__PURE__ */
|
|
30379
|
+
title && /* @__PURE__ */ jsx20("div", { className: Dialog_default.title, children: title }),
|
|
30344
30380
|
typeof children === "function" ? children(dialogProps) : children
|
|
30345
30381
|
] });
|
|
30346
30382
|
}
|
|
@@ -30348,17 +30384,11 @@ function Dialog({ title, variant = "modal", children, className, ...props }) {
|
|
|
30348
30384
|
);
|
|
30349
30385
|
}
|
|
30350
30386
|
|
|
30351
|
-
// src/components/Row.tsx
|
|
30352
|
-
import { jsx as jsx19 } from "react/jsx-runtime";
|
|
30353
|
-
function Row({ reverse, children, ...props }) {
|
|
30354
|
-
return /* @__PURE__ */ jsx19(Flexbox, { ...props, direction: reverse ? "row-reverse" : "row", children });
|
|
30355
|
-
}
|
|
30356
|
-
|
|
30357
30387
|
// css-modules:E:\dev\umami-react-zen\src\components\AlertDialog.module.css
|
|
30358
30388
|
var AlertDialog_default = { "dialog": "AlertDialog_dialog__OTkwN", "title": "AlertDialog_title__ZGIwY" };
|
|
30359
30389
|
|
|
30360
30390
|
// src/components/AlertDialog.tsx
|
|
30361
|
-
import { jsx as
|
|
30391
|
+
import { jsx as jsx21, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
30362
30392
|
function AlertDialog({
|
|
30363
30393
|
title,
|
|
30364
30394
|
description,
|
|
@@ -30380,12 +30410,12 @@ function AlertDialog({
|
|
|
30380
30410
|
onCancel?.();
|
|
30381
30411
|
close();
|
|
30382
30412
|
};
|
|
30383
|
-
return /* @__PURE__ */
|
|
30413
|
+
return /* @__PURE__ */ jsx21(Dialog, { ...props, title, className: (0, import_classnames14.default)(AlertDialog_default.dialog, className), children: ({ close }) => {
|
|
30384
30414
|
return /* @__PURE__ */ jsxs10(Column, { gap: "4", children: [
|
|
30385
30415
|
typeof children === "function" ? children({ close }) : children,
|
|
30386
30416
|
/* @__PURE__ */ jsxs10(Row, { gap: "3", justifyContent: "end", children: [
|
|
30387
|
-
/* @__PURE__ */
|
|
30388
|
-
/* @__PURE__ */
|
|
30417
|
+
/* @__PURE__ */ jsx21(Button, { onPress: () => handleClose(close), children: cancelLabel }),
|
|
30418
|
+
/* @__PURE__ */ jsx21(
|
|
30389
30419
|
Button,
|
|
30390
30420
|
{
|
|
30391
30421
|
variant: isDanger ? "danger" : "primary",
|
|
@@ -30403,10 +30433,10 @@ function AlertDialog({
|
|
|
30403
30433
|
var Blockquote_default = { "blockquote": "Blockquote_blockquote__MzZmO" };
|
|
30404
30434
|
|
|
30405
30435
|
// src/components/Blockquote.tsx
|
|
30406
|
-
import { jsx as
|
|
30436
|
+
import { jsx as jsx22 } from "react/jsx-runtime";
|
|
30407
30437
|
function Blockquote({ asChild, children }) {
|
|
30408
30438
|
const Component = asChild ? Slot : "blockquote";
|
|
30409
|
-
return /* @__PURE__ */
|
|
30439
|
+
return /* @__PURE__ */ jsx22(Component, { className: Blockquote_default.blockquote, children });
|
|
30410
30440
|
}
|
|
30411
30441
|
|
|
30412
30442
|
// src/components/Breadcrumbs.tsx
|
|
@@ -30416,14 +30446,14 @@ var import_classnames15 = __toESM(require_classnames());
|
|
|
30416
30446
|
var Breadcrumbs_default = { "breadcrumbs": "Breadcrumbs_breadcrumbs__OTJlN", "breadcrumb": "Breadcrumbs_breadcrumb__YjU2O", "icon": "Breadcrumbs_icon__MWFiY" };
|
|
30417
30447
|
|
|
30418
30448
|
// src/components/Breadcrumbs.tsx
|
|
30419
|
-
import { jsx as
|
|
30449
|
+
import { jsx as jsx23, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
30420
30450
|
function Breadcrumbs({ children, className, ...props }) {
|
|
30421
|
-
return /* @__PURE__ */
|
|
30451
|
+
return /* @__PURE__ */ jsx23($778035c5624f61e7$export$2dc68d50d56fbbd, { ...props, className: (0, import_classnames15.default)(Breadcrumbs_default.breadcrumbs, className), children });
|
|
30422
30452
|
}
|
|
30423
30453
|
function Breadcrumb2({ children, className, ...props }) {
|
|
30424
30454
|
return /* @__PURE__ */ jsxs11($778035c5624f61e7$export$dabcc1ec9dd9d1cc, { ...props, className: (0, import_classnames15.default)(Breadcrumbs_default.breadcrumb, className), children: [
|
|
30425
30455
|
children,
|
|
30426
|
-
/* @__PURE__ */
|
|
30456
|
+
/* @__PURE__ */ jsx23(Icon, { className: Breadcrumbs_default.icon, size: "xs", children: /* @__PURE__ */ jsx23(Icons.Chevron, {}) })
|
|
30427
30457
|
] });
|
|
30428
30458
|
}
|
|
30429
30459
|
|
|
@@ -30434,17 +30464,17 @@ var import_classnames16 = __toESM(require_classnames());
|
|
|
30434
30464
|
var Calendar_default = { "calendar": "Calendar_calendar__NjA1N", "header": "Calendar_header__ZTk0Y", "heading": "Calendar_heading__ZjFmN", "button": "Calendar_button__M2I3Z", "headerCell": "Calendar_headerCell__YTQ4M", "cell": "Calendar_cell__MDVjN" };
|
|
30435
30465
|
|
|
30436
30466
|
// src/components/Calendar.tsx
|
|
30437
|
-
import { jsx as
|
|
30467
|
+
import { jsx as jsx24, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
30438
30468
|
function Calendar({ className, ...props }) {
|
|
30439
30469
|
return /* @__PURE__ */ jsxs12($dfd62f934fc76fed$export$e1aef45b828286de, { ...props, className: (0, import_classnames16.default)(Calendar_default.calendar, className), children: [
|
|
30440
30470
|
/* @__PURE__ */ jsxs12("header", { className: Calendar_default.header, children: [
|
|
30441
|
-
/* @__PURE__ */
|
|
30442
|
-
/* @__PURE__ */
|
|
30443
|
-
/* @__PURE__ */
|
|
30471
|
+
/* @__PURE__ */ jsx24(Button, { slot: "previous", className: Calendar_default.button, variant: "quiet", children: /* @__PURE__ */ jsx24(Icon, { rotate: 180, children: /* @__PURE__ */ jsx24(Icons.Chevron, {}) }) }),
|
|
30472
|
+
/* @__PURE__ */ jsx24($5cb03073d3f54797$export$a8a3e93435678ff9, { className: Calendar_default.heading }),
|
|
30473
|
+
/* @__PURE__ */ jsx24(Button, { slot: "next", className: Calendar_default.button, variant: "quiet", children: /* @__PURE__ */ jsx24(Icon, { children: /* @__PURE__ */ jsx24(Icons.Chevron, {}) }) })
|
|
30444
30474
|
] }),
|
|
30445
30475
|
/* @__PURE__ */ jsxs12($dfd62f934fc76fed$export$5bd780d491cfc46c, { children: [
|
|
30446
|
-
/* @__PURE__ */
|
|
30447
|
-
/* @__PURE__ */
|
|
30476
|
+
/* @__PURE__ */ jsx24($dfd62f934fc76fed$export$22e2d15eaa4d2377, { children: (day) => /* @__PURE__ */ jsx24($dfd62f934fc76fed$export$ad2135cac3a11b3d, { className: Calendar_default.headerCell, children: day }) }),
|
|
30477
|
+
/* @__PURE__ */ jsx24($dfd62f934fc76fed$export$e11f8ba65d857bff, { className: Calendar_default.body, children: (date) => /* @__PURE__ */ jsx24($dfd62f934fc76fed$export$5d847498420df57b, { className: Calendar_default.cell, date }) })
|
|
30448
30478
|
] })
|
|
30449
30479
|
] });
|
|
30450
30480
|
}
|
|
@@ -30464,11 +30494,11 @@ var import_classnames17 = __toESM(require_classnames());
|
|
|
30464
30494
|
var Checkbox_default = { "checkbox": "Checkbox_checkbox__ZTFlY", "box": "Checkbox_box__NzU3Z", "icon": "Checkbox_icon__ZGEwN" };
|
|
30465
30495
|
|
|
30466
30496
|
// src/components/Checkbox.tsx
|
|
30467
|
-
import { Fragment as Fragment3, jsx as
|
|
30497
|
+
import { Fragment as Fragment3, jsx as jsx25, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
30468
30498
|
var Checkbox = forwardRef4(
|
|
30469
30499
|
({ label, className, children, ...props }, ref) => {
|
|
30470
30500
|
const isSelected = typeof props.value !== "undefined" ? !!props.value : void 0;
|
|
30471
|
-
return /* @__PURE__ */
|
|
30501
|
+
return /* @__PURE__ */ jsx25(
|
|
30472
30502
|
$bc237834342dbd75$export$48513f6b9f8ce62d,
|
|
30473
30503
|
{
|
|
30474
30504
|
...props,
|
|
@@ -30477,7 +30507,7 @@ var Checkbox = forwardRef4(
|
|
|
30477
30507
|
className: (0, import_classnames17.default)(Checkbox_default.checkbox, className),
|
|
30478
30508
|
children: ({ isIndeterminate, isSelected: isSelected2 }) => {
|
|
30479
30509
|
return /* @__PURE__ */ jsxs13(Fragment3, { children: [
|
|
30480
|
-
/* @__PURE__ */
|
|
30510
|
+
/* @__PURE__ */ jsx25("div", { className: Checkbox_default.box, children: /* @__PURE__ */ jsx25(Icon, { className: Checkbox_default.icon, size: "xs", children: isIndeterminate ? /* @__PURE__ */ jsx25(Icons.Minus, {}) : isSelected2 ? /* @__PURE__ */ jsx25(ImCheckmark, {}) : null }) }),
|
|
30481
30511
|
children
|
|
30482
30512
|
] });
|
|
30483
30513
|
}
|
|
@@ -30490,10 +30520,10 @@ var Checkbox = forwardRef4(
|
|
|
30490
30520
|
var Code_default = { "code": "Code_code__OGIyN" };
|
|
30491
30521
|
|
|
30492
30522
|
// src/components/Code.tsx
|
|
30493
|
-
import { jsx as
|
|
30523
|
+
import { jsx as jsx26 } from "react/jsx-runtime";
|
|
30494
30524
|
function Code({ asChild, children }) {
|
|
30495
30525
|
const Component = asChild ? Slot : "code";
|
|
30496
|
-
return /* @__PURE__ */
|
|
30526
|
+
return /* @__PURE__ */ jsx26(Component, { className: Code_default.code, children });
|
|
30497
30527
|
}
|
|
30498
30528
|
|
|
30499
30529
|
// src/components/Combobox.tsx
|
|
@@ -30503,26 +30533,26 @@ var import_classnames20 = __toESM(require_classnames());
|
|
|
30503
30533
|
var import_classnames18 = __toESM(require_classnames());
|
|
30504
30534
|
|
|
30505
30535
|
// css-modules:E:\dev\umami-react-zen\src\components\List.module.css
|
|
30506
|
-
var List_default = { "list": "
|
|
30536
|
+
var List_default = { "list": "List_list__N2IxZ", "separator": "List_separator__N2ZmY", "section": "List_section__ZTMwZ", "header": "List_header__MjFlZ", "item": "List_item__M2E3N", "check": "List_check__OWE2Z" };
|
|
30507
30537
|
|
|
30508
30538
|
// src/components/List.tsx
|
|
30509
|
-
import { jsx as
|
|
30539
|
+
import { jsx as jsx27, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
30510
30540
|
function List({ items, className, children, ...props }) {
|
|
30511
|
-
return /* @__PURE__ */
|
|
30541
|
+
return /* @__PURE__ */ jsx27($eed445e0843c11d0$export$41f133550aa26f48, { ...props, items, className: (0, import_classnames18.default)(List_default.list, className), children: children || items?.map((item, index) => {
|
|
30512
30542
|
if (item === null) {
|
|
30513
|
-
return /* @__PURE__ */
|
|
30543
|
+
return /* @__PURE__ */ jsx27($431f98aba6844401$export$1ff3c3f08ae963c0, { className: List_default.separator }, index);
|
|
30514
30544
|
}
|
|
30515
|
-
return /* @__PURE__ */
|
|
30545
|
+
return /* @__PURE__ */ jsx27(ListItem, { id: item, className: List_default.item, children: item }, index);
|
|
30516
30546
|
}) });
|
|
30517
30547
|
}
|
|
30518
30548
|
function ListItem({ children, className, ...props }) {
|
|
30519
30549
|
return /* @__PURE__ */ jsxs14($eed445e0843c11d0$export$a11e76429ed99b4, { ...props, className: (0, import_classnames18.default)(List_default.item, className), children: [
|
|
30520
30550
|
children,
|
|
30521
|
-
/* @__PURE__ */
|
|
30551
|
+
/* @__PURE__ */ jsx27("div", { "aria-hidden": "true", className: List_default.check, children: /* @__PURE__ */ jsx27(Icon, { children: /* @__PURE__ */ jsx27(Icons.Check, {}) }) })
|
|
30522
30552
|
] });
|
|
30523
30553
|
}
|
|
30524
30554
|
function ListSeparator({ className, ...props }) {
|
|
30525
|
-
return /* @__PURE__ */
|
|
30555
|
+
return /* @__PURE__ */ jsx27($431f98aba6844401$export$1ff3c3f08ae963c0, { ...props, className: (0, import_classnames18.default)(List_default.separator, className) });
|
|
30526
30556
|
}
|
|
30527
30557
|
function ListSection({
|
|
30528
30558
|
title,
|
|
@@ -30531,7 +30561,7 @@ function ListSection({
|
|
|
30531
30561
|
...props
|
|
30532
30562
|
}) {
|
|
30533
30563
|
return /* @__PURE__ */ jsxs14($eed445e0843c11d0$export$dca12b0bb56e4fc, { ...props, className: (0, import_classnames18.default)(List_default.section, className), children: [
|
|
30534
|
-
title && /* @__PURE__ */
|
|
30564
|
+
title && /* @__PURE__ */ jsx27($72a5793c14baf454$export$8b251419efc915eb, { className: List_default.header, children: title }),
|
|
30535
30565
|
children
|
|
30536
30566
|
] });
|
|
30537
30567
|
}
|
|
@@ -30543,23 +30573,23 @@ var import_classnames19 = __toESM(require_classnames());
|
|
|
30543
30573
|
var Popover_default = { "popover": "Popover_popover__YmFhM", "popover-slide": "Popover_popover-slide__OGZjY" };
|
|
30544
30574
|
|
|
30545
30575
|
// src/components/Popover.tsx
|
|
30546
|
-
import { jsx as
|
|
30576
|
+
import { jsx as jsx28 } from "react/jsx-runtime";
|
|
30547
30577
|
function Popover({ children, className, ...props }) {
|
|
30548
|
-
return /* @__PURE__ */
|
|
30578
|
+
return /* @__PURE__ */ jsx28($07b14b47974efb58$export$5b6b19405a83ff9d, { ...props, className: (0, import_classnames19.default)(Popover_default.popover, className), children });
|
|
30549
30579
|
}
|
|
30550
30580
|
|
|
30551
30581
|
// css-modules:E:\dev\umami-react-zen\src\components\Combobox.module.css
|
|
30552
30582
|
var Combobox_default = { "combobox": "Combobox_combobox__MmEwZ", "field": "Combobox_field__NjNkM", "input": "Combobox_input__N2YwM", "button": "Combobox_button__MjY2Y", "list": "Combobox_list__NmQzN", "icon": "Combobox_icon__MmJmM" };
|
|
30553
30583
|
|
|
30554
30584
|
// src/components/Combobox.tsx
|
|
30555
|
-
import { jsx as
|
|
30585
|
+
import { jsx as jsx29, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
30556
30586
|
function Combobox({ items, className, ...props }) {
|
|
30557
30587
|
return /* @__PURE__ */ jsxs15($d01f2c01039c0eec$export$72b9695b8216309a, { ...props, className: (0, import_classnames20.default)(Combobox_default.combobox, className), children: [
|
|
30558
30588
|
/* @__PURE__ */ jsxs15("div", { className: Combobox_default.field, children: [
|
|
30559
|
-
/* @__PURE__ */
|
|
30560
|
-
/* @__PURE__ */
|
|
30589
|
+
/* @__PURE__ */ jsx29($3985021b0ad6602f$export$f5b8910cec6cf069, { className: Combobox_default.input }),
|
|
30590
|
+
/* @__PURE__ */ jsx29($d2b4bc8c273e7be6$export$353f5b6fc5456de1, { className: Combobox_default.button, children: /* @__PURE__ */ jsx29(Icon, { rotate: 90, size: "xs", className: Combobox_default.icon, children: /* @__PURE__ */ jsx29(Icons.Chevron, {}) }) })
|
|
30561
30591
|
] }),
|
|
30562
|
-
/* @__PURE__ */
|
|
30592
|
+
/* @__PURE__ */ jsx29(Popover, { children: /* @__PURE__ */ jsx29(List, { items, className: Combobox_default.list, children: items.map((item) => /* @__PURE__ */ jsx29(ListItem, { textValue: item, children: item }, item)) }) })
|
|
30563
30593
|
] });
|
|
30564
30594
|
}
|
|
30565
30595
|
|
|
@@ -30570,7 +30600,7 @@ var import_classnames21 = __toESM(require_classnames());
|
|
|
30570
30600
|
var Container_default = { "container": "Container_container__ZWU0Y", "centered": "Container_centered__OTM1M", "fluid": "Container_fluid__NTBhY" };
|
|
30571
30601
|
|
|
30572
30602
|
// src/components/Container.tsx
|
|
30573
|
-
import { jsx as
|
|
30603
|
+
import { jsx as jsx30 } from "react/jsx-runtime";
|
|
30574
30604
|
function Container({
|
|
30575
30605
|
isCentered = true,
|
|
30576
30606
|
isFluid,
|
|
@@ -30578,7 +30608,7 @@ function Container({
|
|
|
30578
30608
|
children,
|
|
30579
30609
|
...props
|
|
30580
30610
|
}) {
|
|
30581
|
-
return /* @__PURE__ */
|
|
30611
|
+
return /* @__PURE__ */ jsx30(
|
|
30582
30612
|
Box,
|
|
30583
30613
|
{
|
|
30584
30614
|
...props,
|
|
@@ -30608,9 +30638,9 @@ var import_classnames22 = __toESM(require_classnames());
|
|
|
30608
30638
|
var Label_default = { "label": "Label_label__YWE3M" };
|
|
30609
30639
|
|
|
30610
30640
|
// src/components/Label.tsx
|
|
30611
|
-
import { jsx as
|
|
30641
|
+
import { jsx as jsx31 } from "react/jsx-runtime";
|
|
30612
30642
|
function Label({ className, ...props }) {
|
|
30613
|
-
return /* @__PURE__ */
|
|
30643
|
+
return /* @__PURE__ */ jsx31($01b77f81d0f07f68$export$b04be29aa201d4f5, { ...props, className: (0, import_classnames22.default)(Label_default.label, className) });
|
|
30614
30644
|
}
|
|
30615
30645
|
|
|
30616
30646
|
// src/components/CopyButton.tsx
|
|
@@ -30621,7 +30651,7 @@ import { useState as useState8, useRef as useRef7 } from "react";
|
|
|
30621
30651
|
var CopyButton_default = { "icon": "CopyButton_icon__YTM2Y", "copy-button": "CopyButton_copy-button__MjY1M" };
|
|
30622
30652
|
|
|
30623
30653
|
// src/components/CopyButton.tsx
|
|
30624
|
-
import { jsx as
|
|
30654
|
+
import { jsx as jsx32 } from "react/jsx-runtime";
|
|
30625
30655
|
var TIMEOUT = 2e3;
|
|
30626
30656
|
function CopyButton({ value, timeout = TIMEOUT, className, children, ...props }) {
|
|
30627
30657
|
const [copied, setCopied] = useState8(false);
|
|
@@ -30634,7 +30664,7 @@ function CopyButton({ value, timeout = TIMEOUT, className, children, ...props })
|
|
|
30634
30664
|
ref.current = +setTimeout(() => setCopied(false), timeout);
|
|
30635
30665
|
}
|
|
30636
30666
|
};
|
|
30637
|
-
return /* @__PURE__ */
|
|
30667
|
+
return /* @__PURE__ */ jsx32(Icon, { ...props, className: (0, import_classnames23.default)(CopyButton_default.icon, className), onClick: handleCopy, children: copied ? /* @__PURE__ */ jsx32(Icons.Check, {}) : /* @__PURE__ */ jsx32(Icons.Copy, {}) });
|
|
30638
30668
|
}
|
|
30639
30669
|
|
|
30640
30670
|
// css-modules:E:\dev\umami-react-zen\src\components\styles\input.module.css
|
|
@@ -30644,7 +30674,7 @@ var input_default = { "field": "input_field__ZTk4Z", "row": "input_row__ZGY2N",
|
|
|
30644
30674
|
var TextField_default = { "allowCopy": "TextField_allowCopy__Yjc3Y", "icon": "TextField_icon__OWIxY" };
|
|
30645
30675
|
|
|
30646
30676
|
// src/components/TextField.tsx
|
|
30647
|
-
import { jsx as
|
|
30677
|
+
import { jsx as jsx33, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
30648
30678
|
var TextField = forwardRef5(
|
|
30649
30679
|
({
|
|
30650
30680
|
value,
|
|
@@ -30675,9 +30705,9 @@ var TextField = forwardRef5(
|
|
|
30675
30705
|
value: inputValue,
|
|
30676
30706
|
className: (0, import_classnames24.default)(input_default.field, className),
|
|
30677
30707
|
children: [
|
|
30678
|
-
label && /* @__PURE__ */
|
|
30708
|
+
label && /* @__PURE__ */ jsx33(Label, { children: label }),
|
|
30679
30709
|
/* @__PURE__ */ jsxs16("div", { className: input_default.row, children: [
|
|
30680
|
-
/* @__PURE__ */
|
|
30710
|
+
/* @__PURE__ */ jsx33(
|
|
30681
30711
|
Component,
|
|
30682
30712
|
{
|
|
30683
30713
|
className: (0, import_classnames24.default)(TextField_default.input, input_default.input, allowCopy && TextField_default.allowCopy),
|
|
@@ -30686,7 +30716,7 @@ var TextField = forwardRef5(
|
|
|
30686
30716
|
children
|
|
30687
30717
|
}
|
|
30688
30718
|
),
|
|
30689
|
-
allowCopy && /* @__PURE__ */
|
|
30719
|
+
allowCopy && /* @__PURE__ */ jsx33(CopyButton, { className: (0, import_classnames24.default)(TextField_default.icon, input_default.icon), value: inputValue })
|
|
30690
30720
|
] })
|
|
30691
30721
|
]
|
|
30692
30722
|
}
|
|
@@ -30698,7 +30728,7 @@ var TextField = forwardRef5(
|
|
|
30698
30728
|
var ConfirmationDialog_default = { "dialog": "ConfirmationDialog_dialog__Mzg4M", "value": "ConfirmationDialog_value__YzhjZ" };
|
|
30699
30729
|
|
|
30700
30730
|
// src/components/ConfirmationDialog.tsx
|
|
30701
|
-
import { Fragment as Fragment4, jsx as
|
|
30731
|
+
import { Fragment as Fragment4, jsx as jsx34, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
30702
30732
|
function ConfirmationDialog({
|
|
30703
30733
|
value,
|
|
30704
30734
|
confirmMessage,
|
|
@@ -30710,7 +30740,7 @@ function ConfirmationDialog({
|
|
|
30710
30740
|
const handleChange = (e) => {
|
|
30711
30741
|
setCanSave(e.target.value === value);
|
|
30712
30742
|
};
|
|
30713
|
-
return /* @__PURE__ */
|
|
30743
|
+
return /* @__PURE__ */ jsx34(
|
|
30714
30744
|
AlertDialog,
|
|
30715
30745
|
{
|
|
30716
30746
|
...props,
|
|
@@ -30723,8 +30753,8 @@ function ConfirmationDialog({
|
|
|
30723
30753
|
confirmMessage || "Type the following value to confirm",
|
|
30724
30754
|
":"
|
|
30725
30755
|
] }),
|
|
30726
|
-
/* @__PURE__ */
|
|
30727
|
-
/* @__PURE__ */
|
|
30756
|
+
/* @__PURE__ */ jsx34("div", { className: ConfirmationDialog_default.value, children: value }),
|
|
30757
|
+
/* @__PURE__ */ jsx34(TextField, { autoFocus: true, "aria-label": "Confirmation", onChange: handleChange })
|
|
30728
30758
|
] });
|
|
30729
30759
|
}
|
|
30730
30760
|
}
|
|
@@ -30742,21 +30772,21 @@ var import_classnames26 = __toESM(require_classnames());
|
|
|
30742
30772
|
var Table_default = { "table": "Table_table__YWNjZ", "header": "Table_header__NDRkN", "body": "Table_body__MTcyZ", "row": "Table_row__MDBjM", "column": "Table_column__YmI1M", "cell": "Table_cell__Y2ZiM", "start": "Table_start__NjIyN", "center": "Table_center__NGM2N", "end": "Table_end__MDhhO" };
|
|
30743
30773
|
|
|
30744
30774
|
// src/components/Table.tsx
|
|
30745
|
-
import { jsx as
|
|
30775
|
+
import { jsx as jsx35 } from "react/jsx-runtime";
|
|
30746
30776
|
function Table({ children, className, ...props }) {
|
|
30747
|
-
return /* @__PURE__ */
|
|
30777
|
+
return /* @__PURE__ */ jsx35($1910c06f0ca9905e$export$54ec01a60f47d33d, { ...props, className: (0, import_classnames26.default)(Table_default.table, className), "aria-label": "Table", children });
|
|
30748
30778
|
}
|
|
30749
30779
|
function TableHeader({ children, className, ...props }) {
|
|
30750
|
-
return /* @__PURE__ */
|
|
30780
|
+
return /* @__PURE__ */ jsx35($1910c06f0ca9905e$export$f850895b287ef28e, { ...props, className: (0, import_classnames26.default)(Table_default.header, className), children });
|
|
30751
30781
|
}
|
|
30752
30782
|
function TableBody({ children, className, ...props }) {
|
|
30753
|
-
return /* @__PURE__ */
|
|
30783
|
+
return /* @__PURE__ */ jsx35($1910c06f0ca9905e$export$76ccd210b9029917, { ...props, className: (0, import_classnames26.default)(Table_default.body, className), children });
|
|
30754
30784
|
}
|
|
30755
30785
|
function TableRow({ children, className, ...props }) {
|
|
30756
|
-
return /* @__PURE__ */
|
|
30786
|
+
return /* @__PURE__ */ jsx35($1910c06f0ca9905e$export$b59bdbef9ce70de2, { ...props, className: (0, import_classnames26.default)(Table_default.row, className), children });
|
|
30757
30787
|
}
|
|
30758
30788
|
function TableColumn({ children, className, alignment, ...props }) {
|
|
30759
|
-
return /* @__PURE__ */
|
|
30789
|
+
return /* @__PURE__ */ jsx35(
|
|
30760
30790
|
$1910c06f0ca9905e$export$816b5d811295e6bc,
|
|
30761
30791
|
{
|
|
30762
30792
|
...props,
|
|
@@ -30767,14 +30797,14 @@ function TableColumn({ children, className, alignment, ...props }) {
|
|
|
30767
30797
|
);
|
|
30768
30798
|
}
|
|
30769
30799
|
function TableCell({ children, className, alignment, ...props }) {
|
|
30770
|
-
return /* @__PURE__ */
|
|
30800
|
+
return /* @__PURE__ */ jsx35($1910c06f0ca9905e$export$f6f0c3fe4ec306ea, { ...props, className: (0, import_classnames26.default)(Table_default.cell, className, alignment && Table_default[alignment]), children });
|
|
30771
30801
|
}
|
|
30772
30802
|
|
|
30773
30803
|
// css-modules:E:\dev\umami-react-zen\src\components\DataTable.module.css
|
|
30774
30804
|
var DataTable_default = { "datatable": "DataTable_datatable__MWRkN", "cell": "DataTable_cell__MmMyM" };
|
|
30775
30805
|
|
|
30776
30806
|
// src/components/DataTable.tsx
|
|
30777
|
-
import { jsx as
|
|
30807
|
+
import { jsx as jsx36, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
30778
30808
|
import { createElement as createElement7 } from "react";
|
|
30779
30809
|
function DataTable({ data = [], className, children, ...props }) {
|
|
30780
30810
|
const items = data.length && data?.[0]?.id === void 0 ? data.map((record, id) => ({ ...record, id })) : data;
|
|
@@ -30782,14 +30812,14 @@ function DataTable({ data = [], className, children, ...props }) {
|
|
|
30782
30812
|
return { ...child.props };
|
|
30783
30813
|
});
|
|
30784
30814
|
return /* @__PURE__ */ jsxs18(Table, { ...props, className: (0, import_classnames27.default)(DataTable_default.datatable, className), children: [
|
|
30785
|
-
/* @__PURE__ */
|
|
30815
|
+
/* @__PURE__ */ jsx36(TableHeader, { children: columns.map(({ id, label, as, hidden, ...columnProps }) => {
|
|
30786
30816
|
if (hidden) {
|
|
30787
30817
|
return null;
|
|
30788
30818
|
}
|
|
30789
30819
|
return /* @__PURE__ */ createElement7(TableColumn, { ...columnProps, key: id, id }, label);
|
|
30790
30820
|
}) }),
|
|
30791
|
-
/* @__PURE__ */
|
|
30792
|
-
return /* @__PURE__ */
|
|
30821
|
+
/* @__PURE__ */ jsx36(TableBody, { items, children: (row) => {
|
|
30822
|
+
return /* @__PURE__ */ jsx36(TableRow, { children: columns.map(({ id, as, children: children2, className: className2, ...cellProps }) => {
|
|
30793
30823
|
const value = typeof children2 === "function" ? children2(row, id) : children2 || row[id];
|
|
30794
30824
|
const Component = as || "div";
|
|
30795
30825
|
return /* @__PURE__ */ createElement7(TableCell, { ...cellProps, key: id, className: (0, import_classnames27.default)(DataTable_default.cell, className2) }, as ? createElement6(as, {}, value) : value);
|
|
@@ -30808,18 +30838,18 @@ var import_classnames28 = __toESM(require_classnames());
|
|
|
30808
30838
|
var Dots_default = { "dots": "Dots_dots__NzQ0Z", "dot": "Dots_dot__MDk2Z", "dots-blink": "Dots_dots-blink__M2M4Z" };
|
|
30809
30839
|
|
|
30810
30840
|
// src/components/Dots.tsx
|
|
30811
|
-
import { jsx as
|
|
30841
|
+
import { jsx as jsx37, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
30812
30842
|
function Dots({ className, ...props }) {
|
|
30813
30843
|
return /* @__PURE__ */ jsxs19("div", { ...props, className: (0, import_classnames28.default)(Dots_default.dots, className), children: [
|
|
30814
|
-
/* @__PURE__ */
|
|
30815
|
-
/* @__PURE__ */
|
|
30816
|
-
/* @__PURE__ */
|
|
30844
|
+
/* @__PURE__ */ jsx37("div", { className: Dots_default.dot }),
|
|
30845
|
+
/* @__PURE__ */ jsx37("div", { className: Dots_default.dot }),
|
|
30846
|
+
/* @__PURE__ */ jsx37("div", { className: Dots_default.dot })
|
|
30817
30847
|
] });
|
|
30818
30848
|
}
|
|
30819
30849
|
|
|
30820
30850
|
// src/components/Grid.tsx
|
|
30821
30851
|
var import_classnames29 = __toESM(require_classnames());
|
|
30822
|
-
import { jsx as
|
|
30852
|
+
import { jsx as jsx38 } from "react/jsx-runtime";
|
|
30823
30853
|
function Grid({
|
|
30824
30854
|
display = "grid",
|
|
30825
30855
|
justifyContent,
|
|
@@ -30852,17 +30882,17 @@ function Grid({
|
|
|
30852
30882
|
gridTemplateAreas: areas,
|
|
30853
30883
|
gridAutoFlow: autoFlow
|
|
30854
30884
|
});
|
|
30855
|
-
return /* @__PURE__ */
|
|
30885
|
+
return /* @__PURE__ */ jsx38(Box, { ...props, className: (0, import_classnames29.default)(className, classes), style: { ...styleProps, ...style }, children });
|
|
30856
30886
|
}
|
|
30857
30887
|
|
|
30858
30888
|
// src/components/Heading.tsx
|
|
30859
30889
|
var import_classnames30 = __toESM(require_classnames());
|
|
30860
30890
|
|
|
30861
30891
|
// css-modules:E:\dev\umami-react-zen\src\components\Heading.module.css
|
|
30862
|
-
var Heading_default = { "heading": "
|
|
30892
|
+
var Heading_default = { "heading": "Heading_heading__MGIyZ" };
|
|
30863
30893
|
|
|
30864
30894
|
// src/components/Heading.tsx
|
|
30865
|
-
import { jsx as
|
|
30895
|
+
import { jsx as jsx39 } from "react/jsx-runtime";
|
|
30866
30896
|
function Heading({
|
|
30867
30897
|
size = "3",
|
|
30868
30898
|
weight,
|
|
@@ -30879,7 +30909,7 @@ function Heading({
|
|
|
30879
30909
|
fontWeight: weight,
|
|
30880
30910
|
letterSpacing: spacing
|
|
30881
30911
|
});
|
|
30882
|
-
return /* @__PURE__ */
|
|
30912
|
+
return /* @__PURE__ */ jsx39(
|
|
30883
30913
|
Box,
|
|
30884
30914
|
{
|
|
30885
30915
|
...props,
|
|
@@ -30897,7 +30927,7 @@ import { useRef as useRef8, useState as useState11, useEffect as useEffect10 } f
|
|
|
30897
30927
|
var HoverTrigger_default = { "wrapper": "HoverTrigger_wrapper__NGFlN" };
|
|
30898
30928
|
|
|
30899
30929
|
// src/components/HoverTrigger.tsx
|
|
30900
|
-
import { Fragment as Fragment5, jsx as
|
|
30930
|
+
import { Fragment as Fragment5, jsx as jsx40, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
30901
30931
|
var CLOSE_DELAY = 500;
|
|
30902
30932
|
function HoverTrigger({
|
|
30903
30933
|
isOpen,
|
|
@@ -30949,8 +30979,8 @@ function HoverTrigger({
|
|
|
30949
30979
|
}, closeDelay);
|
|
30950
30980
|
};
|
|
30951
30981
|
return /* @__PURE__ */ jsxs20(Fragment5, { children: [
|
|
30952
|
-
/* @__PURE__ */
|
|
30953
|
-
/* @__PURE__ */
|
|
30982
|
+
/* @__PURE__ */ jsx40("div", { ref: triggerRef, onMouseEnter: handleMouseEnter, onMouseLeave: handleMouseLeave, children: triggerElement }),
|
|
30983
|
+
/* @__PURE__ */ jsx40(Popover, { isOpen: open, isNonModal: true, triggerRef, children: /* @__PURE__ */ jsx40(
|
|
30954
30984
|
"div",
|
|
30955
30985
|
{
|
|
30956
30986
|
className: HoverTrigger_default.wrapper,
|
|
@@ -30969,7 +30999,7 @@ var import_classnames31 = __toESM(require_classnames());
|
|
|
30969
30999
|
var Image_default = { "image": "Image_image__M2EyN", "centered": "Image_centered__ZDFhM", "fill": "Image_fill__YWJhZ", "contain": "Image_contain__ZjAyN", "cover": "Image_cover__ODA4Y", "none": "Image_none__YTdiZ", "scale-down": "Image_scale-down__ODNlN" };
|
|
30970
31000
|
|
|
30971
31001
|
// src/components/Image.tsx
|
|
30972
|
-
import { jsx as
|
|
31002
|
+
import { jsx as jsx41 } from "react/jsx-runtime";
|
|
30973
31003
|
function Image({
|
|
30974
31004
|
src,
|
|
30975
31005
|
alt,
|
|
@@ -30982,7 +31012,7 @@ function Image({
|
|
|
30982
31012
|
...props
|
|
30983
31013
|
}) {
|
|
30984
31014
|
const [classes, styleProps] = useDesignProps({ borderRadius, shadow });
|
|
30985
|
-
return /* @__PURE__ */
|
|
31015
|
+
return /* @__PURE__ */ jsx41(
|
|
30986
31016
|
"img",
|
|
30987
31017
|
{
|
|
30988
31018
|
...props,
|
|
@@ -31009,7 +31039,7 @@ import { useState as useState12, useCallback as useCallback2 } from "react";
|
|
|
31009
31039
|
var InlineEditField_default = { "edit": "InlineEditField_edit__MDliZ", "icon": "InlineEditField_icon__ZjE1O" };
|
|
31010
31040
|
|
|
31011
31041
|
// src/components/InlineEditField.tsx
|
|
31012
|
-
import { jsx as
|
|
31042
|
+
import { jsx as jsx42, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
31013
31043
|
function InlineEditField({
|
|
31014
31044
|
value: defaultValue = "",
|
|
31015
31045
|
defaultEdit,
|
|
@@ -31053,8 +31083,8 @@ function InlineEditField({
|
|
|
31053
31083
|
onClick: handleEdit,
|
|
31054
31084
|
children: [
|
|
31055
31085
|
!edit && children,
|
|
31056
|
-
!edit && /* @__PURE__ */
|
|
31057
|
-
edit && /* @__PURE__ */
|
|
31086
|
+
!edit && /* @__PURE__ */ jsx42(Icon, { className: InlineEditField_default.icon, children: /* @__PURE__ */ jsx42(Icons.Edit, {}) }),
|
|
31087
|
+
edit && /* @__PURE__ */ jsx42(
|
|
31058
31088
|
TextField,
|
|
31059
31089
|
{
|
|
31060
31090
|
value,
|
|
@@ -31076,12 +31106,12 @@ var import_classnames33 = __toESM(require_classnames());
|
|
|
31076
31106
|
var Loading_default = { "loading": "Loading_loading__MzE0Y", "page": "Loading_page__OWMxN", "center": "Loading_center__ZWRmO", "inline": "Loading_inline__NmJkY" };
|
|
31077
31107
|
|
|
31078
31108
|
// src/components/Loading.tsx
|
|
31079
|
-
import { jsx as
|
|
31109
|
+
import { jsx as jsx43, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
31080
31110
|
function Loading(props) {
|
|
31081
31111
|
const { size, position = "inline", icon = "spinner", className, ...domProps } = props;
|
|
31082
31112
|
return /* @__PURE__ */ jsxs22("div", { ...domProps, className: (0, import_classnames33.default)(Loading_default.loading, className, Loading_default[position]), children: [
|
|
31083
|
-
icon === "dots" && /* @__PURE__ */
|
|
31084
|
-
icon === "spinner" && /* @__PURE__ */
|
|
31113
|
+
icon === "dots" && /* @__PURE__ */ jsx43(Dots, {}),
|
|
31114
|
+
icon === "spinner" && /* @__PURE__ */ jsx43(Spinner, { size })
|
|
31085
31115
|
] });
|
|
31086
31116
|
}
|
|
31087
31117
|
|
|
@@ -31092,23 +31122,23 @@ var import_classnames34 = __toESM(require_classnames());
|
|
|
31092
31122
|
var Menu_default = { "menu": "Menu_menu__YWZhN", "separator": "Menu_separator__MzA3M", "section": "Menu_section__OGY0Z", "header": "Menu_header__NjgyY", "item": "Menu_item__NWNhZ", "check": "Menu_check__M2IyM" };
|
|
31093
31123
|
|
|
31094
31124
|
// src/components/Menu.tsx
|
|
31095
|
-
import { jsx as
|
|
31125
|
+
import { jsx as jsx44, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
31096
31126
|
function Menu({ items, className, children, ...props }) {
|
|
31097
|
-
return /* @__PURE__ */
|
|
31127
|
+
return /* @__PURE__ */ jsx44($3674c52c6b3c5bce$export$d9b273488cd8ce6f, { ...props, className: (0, import_classnames34.default)(Menu_default.menu, className), children: children || items?.map((item, index) => {
|
|
31098
31128
|
if (item === null) {
|
|
31099
|
-
return /* @__PURE__ */
|
|
31129
|
+
return /* @__PURE__ */ jsx44($431f98aba6844401$export$1ff3c3f08ae963c0, { className: Menu_default.separator }, index);
|
|
31100
31130
|
}
|
|
31101
|
-
return /* @__PURE__ */
|
|
31131
|
+
return /* @__PURE__ */ jsx44(MenuItem2, { id: item, children: item }, index);
|
|
31102
31132
|
}) });
|
|
31103
31133
|
}
|
|
31104
31134
|
function MenuItem2({ children, className, ...props }) {
|
|
31105
31135
|
return /* @__PURE__ */ jsxs23($3674c52c6b3c5bce$export$2ce376c2cc3355c8, { ...props, className: (0, import_classnames34.default)(Menu_default.item, className), children: [
|
|
31106
31136
|
children,
|
|
31107
|
-
/* @__PURE__ */
|
|
31137
|
+
/* @__PURE__ */ jsx44("div", { "aria-hidden": "true", className: Menu_default.check, children: /* @__PURE__ */ jsx44(Icon, { children: /* @__PURE__ */ jsx44(Icons.Check, {}) }) })
|
|
31108
31138
|
] });
|
|
31109
31139
|
}
|
|
31110
31140
|
function MenuSeparator({ className, ...props }) {
|
|
31111
|
-
return /* @__PURE__ */
|
|
31141
|
+
return /* @__PURE__ */ jsx44($431f98aba6844401$export$1ff3c3f08ae963c0, { ...props, className: (0, import_classnames34.default)(Menu_default.separator, className) });
|
|
31112
31142
|
}
|
|
31113
31143
|
function MenuSection({
|
|
31114
31144
|
title,
|
|
@@ -31117,7 +31147,7 @@ function MenuSection({
|
|
|
31117
31147
|
...props
|
|
31118
31148
|
}) {
|
|
31119
31149
|
return /* @__PURE__ */ jsxs23($3674c52c6b3c5bce$export$4b1545b4f2016d26, { ...props, className: (0, import_classnames34.default)(Menu_default.section, className), children: [
|
|
31120
|
-
title && /* @__PURE__ */
|
|
31150
|
+
title && /* @__PURE__ */ jsx44($72a5793c14baf454$export$8b251419efc915eb, { className: Menu_default.header, children: title }),
|
|
31121
31151
|
children
|
|
31122
31152
|
] });
|
|
31123
31153
|
}
|
|
@@ -31129,7 +31159,7 @@ var import_classnames35 = __toESM(require_classnames());
|
|
|
31129
31159
|
var Modal_default = { "overlay": "Modal_overlay__OGJmN", "modal-fade-in": "Modal_modal-fade-in__MzJiZ", "modal": "Modal_modal__OTZjZ", "left": "Modal_left__Mzg1Z", "right": "Modal_right__YmRmZ", "top": "Modal_top__ZDUzY", "bottom": "Modal_bottom__ZDRhZ", "fullscreen": "Modal_fullscreen__NTU4O", "center": "Modal_center__NmI1N", "modal-zoom": "Modal_modal-zoom__ZWRlM", "modal-left": "Modal_modal-left__ODA0M", "modal-right": "Modal_modal-right__ZjYwM", "modal-top": "Modal_modal-top__N2VhY", "modal-bottom": "Modal_modal-bottom__ZTQ3Y" };
|
|
31130
31160
|
|
|
31131
31161
|
// src/components/Modal.tsx
|
|
31132
|
-
import { jsx as
|
|
31162
|
+
import { jsx as jsx45 } from "react/jsx-runtime";
|
|
31133
31163
|
function Modal({
|
|
31134
31164
|
position = "center",
|
|
31135
31165
|
offset,
|
|
@@ -31141,7 +31171,7 @@ function Modal({
|
|
|
31141
31171
|
if (offset) {
|
|
31142
31172
|
style[`--modal-offset`] = offset;
|
|
31143
31173
|
}
|
|
31144
|
-
return /* @__PURE__ */
|
|
31174
|
+
return /* @__PURE__ */ jsx45($f3f84453ead64de5$export$8948f78d83984c69, { ...props, className: Modal_default.overlay, style, isDismissable: true, children: /* @__PURE__ */ jsx45($f3f84453ead64de5$export$2b77a92f1a5ad772, { className: (0, import_classnames35.default)(Modal_default.modal, position && Modal_default[position], className), children }) });
|
|
31145
31175
|
}
|
|
31146
31176
|
|
|
31147
31177
|
// src/components/NavBar.tsx
|
|
@@ -31156,7 +31186,7 @@ import {
|
|
|
31156
31186
|
var NavBar_default = { "nav": "NavBar_nav__NDgxZ", "item": "NavBar_item__OGRlN", "icon": "NavBar_icon__NWFiY" };
|
|
31157
31187
|
|
|
31158
31188
|
// src/components/NavBar.tsx
|
|
31159
|
-
import { jsx as
|
|
31189
|
+
import { jsx as jsx46, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
31160
31190
|
var NavBarContext = createContext3(void 0);
|
|
31161
31191
|
var useNavigationContext = () => {
|
|
31162
31192
|
const context = useContext5(NavBarContext);
|
|
@@ -31167,20 +31197,20 @@ var useNavigationContext = () => {
|
|
|
31167
31197
|
};
|
|
31168
31198
|
function NavBar({ showArrow = true, className, children, ...props }) {
|
|
31169
31199
|
const [activeMenu, setActiveMenu] = useState13("");
|
|
31170
|
-
return /* @__PURE__ */
|
|
31200
|
+
return /* @__PURE__ */ jsx46(NavBarContext.Provider, { value: { activeMenu, setActiveMenu }, children: /* @__PURE__ */ jsx46("div", { ...props, className: (0, import_classnames36.default)(NavBar_default.nav, className), children }) });
|
|
31171
31201
|
}
|
|
31172
31202
|
function NavBarItem({ label, children, className, ...props }) {
|
|
31173
31203
|
const { activeMenu, setActiveMenu } = useNavigationContext();
|
|
31174
31204
|
if (label) {
|
|
31175
31205
|
return /* @__PURE__ */ jsxs24(HoverTrigger, { isOpen: activeMenu === label, onHoverStart: () => setActiveMenu(label), children: [
|
|
31176
31206
|
/* @__PURE__ */ jsxs24("div", { ...props, className: (0, import_classnames36.default)(NavBar_default.item, className), children: [
|
|
31177
|
-
/* @__PURE__ */
|
|
31178
|
-
/* @__PURE__ */
|
|
31207
|
+
/* @__PURE__ */ jsx46(Text, { children: label }),
|
|
31208
|
+
/* @__PURE__ */ jsx46(Icon, { rotate: 90, size: "xs", className: NavBar_default.icon, children: /* @__PURE__ */ jsx46(Icons.Chevron, {}) })
|
|
31179
31209
|
] }),
|
|
31180
31210
|
children
|
|
31181
31211
|
] });
|
|
31182
31212
|
}
|
|
31183
|
-
return /* @__PURE__ */
|
|
31213
|
+
return /* @__PURE__ */ jsx46("div", { ...props, className: (0, import_classnames36.default)(NavBar_default.item, className), children });
|
|
31184
31214
|
}
|
|
31185
31215
|
|
|
31186
31216
|
// src/components/PasswordField.tsx
|
|
@@ -31191,17 +31221,17 @@ var import_classnames37 = __toESM(require_classnames());
|
|
|
31191
31221
|
var PasswordField_default = { "icon": "PasswordField_icon__NTRlM" };
|
|
31192
31222
|
|
|
31193
31223
|
// src/components/PasswordField.tsx
|
|
31194
|
-
import { jsx as
|
|
31224
|
+
import { jsx as jsx47, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
31195
31225
|
var PasswordField = forwardRef6(
|
|
31196
31226
|
({ label, className, ...props }, ref) => {
|
|
31197
31227
|
const [show, setShow] = useState14(false);
|
|
31198
31228
|
const type = show ? "text" : "password";
|
|
31199
31229
|
const handleShowPassword = () => setShow((state) => !state);
|
|
31200
31230
|
return /* @__PURE__ */ jsxs25($bcdf0525bf22703d$export$2c73285ae9390cec, { ...props, ref, className: (0, import_classnames37.default)(input_default.field, className), children: [
|
|
31201
|
-
label && /* @__PURE__ */
|
|
31231
|
+
label && /* @__PURE__ */ jsx47(Label, { children: label }),
|
|
31202
31232
|
/* @__PURE__ */ jsxs25("div", { className: input_default.row, children: [
|
|
31203
|
-
/* @__PURE__ */
|
|
31204
|
-
/* @__PURE__ */
|
|
31233
|
+
/* @__PURE__ */ jsx47($3985021b0ad6602f$export$f5b8910cec6cf069, { type, className: input_default.input }),
|
|
31234
|
+
/* @__PURE__ */ jsx47(Icon, { onClick: handleShowPassword, className: (0, import_classnames37.default)(PasswordField_default.icon, input_default.icon), children: show ? /* @__PURE__ */ jsx47(Icons.EyeSlash, {}) : /* @__PURE__ */ jsx47(Icons.Eye, {}) })
|
|
31205
31235
|
] })
|
|
31206
31236
|
] });
|
|
31207
31237
|
}
|
|
@@ -31214,12 +31244,12 @@ var import_classnames38 = __toESM(require_classnames());
|
|
|
31214
31244
|
var ProgressBar_default = { "progressbar": "ProgressBar_progressbar__YTVjY", "track": "ProgressBar_track__MmQ3O", "fill": "ProgressBar_fill__NmU3N", "value": "ProgressBar_value__MmE2Z" };
|
|
31215
31245
|
|
|
31216
31246
|
// src/components/ProgressBar.tsx
|
|
31217
|
-
import { Fragment as Fragment6, jsx as
|
|
31247
|
+
import { Fragment as Fragment6, jsx as jsx48, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
31218
31248
|
function ProgressBar({ className, showValue, ...props }) {
|
|
31219
|
-
return /* @__PURE__ */
|
|
31249
|
+
return /* @__PURE__ */ jsx48($0393f8ab869a0f1a$export$c17561cb55d4db30, { ...props, className: (0, import_classnames38.default)(ProgressBar_default.progressbar, className), children: ({ percentage = 0, valueText }) => {
|
|
31220
31250
|
return /* @__PURE__ */ jsxs26(Fragment6, { children: [
|
|
31221
|
-
/* @__PURE__ */
|
|
31222
|
-
showValue && /* @__PURE__ */
|
|
31251
|
+
/* @__PURE__ */ jsx48("div", { className: ProgressBar_default.track, children: /* @__PURE__ */ jsx48("div", { className: ProgressBar_default.fill, style: { width: `${percentage}%` } }) }),
|
|
31252
|
+
showValue && /* @__PURE__ */ jsx48("div", { className: ProgressBar_default.value, children: valueText })
|
|
31223
31253
|
] });
|
|
31224
31254
|
} });
|
|
31225
31255
|
}
|
|
@@ -31231,16 +31261,16 @@ var import_classnames39 = __toESM(require_classnames());
|
|
|
31231
31261
|
var ProgressCircle_default = { "progresscircle": "ProgressCircle_progresscircle__MmU2O", "track": "ProgressCircle_track__NmMzN", "fill": "ProgressCircle_fill__MjcxM", "value": "ProgressCircle_value__MzkxZ" };
|
|
31232
31262
|
|
|
31233
31263
|
// src/components/ProgressCircle.tsx
|
|
31234
|
-
import { Fragment as Fragment7, jsx as
|
|
31264
|
+
import { Fragment as Fragment7, jsx as jsx49, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
31235
31265
|
function ProgressCircle({ className, showValue, ...props }) {
|
|
31236
|
-
return /* @__PURE__ */
|
|
31266
|
+
return /* @__PURE__ */ jsx49($0393f8ab869a0f1a$export$c17561cb55d4db30, { ...props, className: (0, import_classnames39.default)(ProgressCircle_default.progresscircle, className), children: ({ percentage = 0, valueText }) => {
|
|
31237
31267
|
const radius = 45;
|
|
31238
31268
|
const circumference = radius * 2 * Math.PI;
|
|
31239
31269
|
const offset = circumference - percentage / 100 * circumference;
|
|
31240
31270
|
return /* @__PURE__ */ jsxs27(Fragment7, { children: [
|
|
31241
31271
|
/* @__PURE__ */ jsxs27("svg", { viewBox: "0 0 100 100", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
31242
|
-
/* @__PURE__ */
|
|
31243
|
-
/* @__PURE__ */
|
|
31272
|
+
/* @__PURE__ */ jsx49("circle", { className: ProgressCircle_default.track, cx: "50", cy: "50", r: "45" }),
|
|
31273
|
+
/* @__PURE__ */ jsx49(
|
|
31244
31274
|
"circle",
|
|
31245
31275
|
{
|
|
31246
31276
|
className: ProgressCircle_default.fill,
|
|
@@ -31252,7 +31282,7 @@ function ProgressCircle({ className, showValue, ...props }) {
|
|
|
31252
31282
|
}
|
|
31253
31283
|
)
|
|
31254
31284
|
] }),
|
|
31255
|
-
showValue && /* @__PURE__ */
|
|
31285
|
+
showValue && /* @__PURE__ */ jsx49("label", { className: ProgressCircle_default.value, children: valueText })
|
|
31256
31286
|
] });
|
|
31257
31287
|
} });
|
|
31258
31288
|
}
|
|
@@ -31265,17 +31295,17 @@ var import_classnames40 = __toESM(require_classnames());
|
|
|
31265
31295
|
var RadioGroup_default = { "radiogroup": "RadioGroup_radiogroup__YWJkY", "radio": "RadioGroup_radio__YjVkY" };
|
|
31266
31296
|
|
|
31267
31297
|
// src/components/RadioGroup.tsx
|
|
31268
|
-
import { jsx as
|
|
31298
|
+
import { jsx as jsx50, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
31269
31299
|
var RadioGroup = forwardRef7(
|
|
31270
31300
|
({ label, children, className, ...props }, ref) => {
|
|
31271
31301
|
return /* @__PURE__ */ jsxs28($b6c3ddc6086f204d$export$a98f0dcb43a68a25, { ...props, ref, className: (0, import_classnames40.default)(RadioGroup_default.radiogroup, className), children: [
|
|
31272
|
-
label && /* @__PURE__ */
|
|
31302
|
+
label && /* @__PURE__ */ jsx50(Label, { children: label }),
|
|
31273
31303
|
children
|
|
31274
31304
|
] });
|
|
31275
31305
|
}
|
|
31276
31306
|
);
|
|
31277
31307
|
function Radio({ children, className, ...props }) {
|
|
31278
|
-
return /* @__PURE__ */
|
|
31308
|
+
return /* @__PURE__ */ jsx50($b6c3ddc6086f204d$export$d7b12c4107be0d61, { ...props, className: (0, import_classnames40.default)(RadioGroup_default.radio, className), children });
|
|
31279
31309
|
}
|
|
31280
31310
|
|
|
31281
31311
|
// src/components/SearchField.tsx
|
|
@@ -31286,7 +31316,7 @@ var import_classnames41 = __toESM(require_classnames());
|
|
|
31286
31316
|
var SearchField_default = { "search": "SearchField_search__N2VmN", "input": "SearchField_input__MTQ2Y", "close": "SearchField_close__MmUwM" };
|
|
31287
31317
|
|
|
31288
31318
|
// src/components/SearchField.tsx
|
|
31289
|
-
import { Fragment as Fragment8, jsx as
|
|
31319
|
+
import { Fragment as Fragment8, jsx as jsx51, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
31290
31320
|
var SearchField = forwardRef8(
|
|
31291
31321
|
({ label, placeholder, value, delay = 0, onSearch, className, ...props }, ref) => {
|
|
31292
31322
|
const [search, setSearch] = useState15(value ?? "");
|
|
@@ -31307,12 +31337,12 @@ var SearchField = forwardRef8(
|
|
|
31307
31337
|
onSearch?.(searchValue);
|
|
31308
31338
|
}
|
|
31309
31339
|
}, [searchValue, delay, onSearch]);
|
|
31310
|
-
return /* @__PURE__ */
|
|
31340
|
+
return /* @__PURE__ */ jsx51($440f4836bcb56932$export$b94867ecbd698f21, { ...props, ref, className: (0, import_classnames41.default)(input_default.field, className), children: ({ state }) => {
|
|
31311
31341
|
return /* @__PURE__ */ jsxs29(Fragment8, { children: [
|
|
31312
|
-
label && /* @__PURE__ */
|
|
31342
|
+
label && /* @__PURE__ */ jsx51(Label, { children: label }),
|
|
31313
31343
|
/* @__PURE__ */ jsxs29("div", { className: input_default.row, children: [
|
|
31314
|
-
/* @__PURE__ */
|
|
31315
|
-
/* @__PURE__ */
|
|
31344
|
+
/* @__PURE__ */ jsx51(Icons.MagnifyingGlass, { className: (0, import_classnames41.default)(SearchField_default.search, input_default.icon) }),
|
|
31345
|
+
/* @__PURE__ */ jsx51(
|
|
31316
31346
|
$3985021b0ad6602f$export$f5b8910cec6cf069,
|
|
31317
31347
|
{
|
|
31318
31348
|
className: (0, import_classnames41.default)(SearchField_default.input, input_default.input),
|
|
@@ -31320,12 +31350,12 @@ var SearchField = forwardRef8(
|
|
|
31320
31350
|
onChange: handleChange
|
|
31321
31351
|
}
|
|
31322
31352
|
),
|
|
31323
|
-
state.value && /* @__PURE__ */
|
|
31353
|
+
state.value && /* @__PURE__ */ jsx51(
|
|
31324
31354
|
$d2b4bc8c273e7be6$export$353f5b6fc5456de1,
|
|
31325
31355
|
{
|
|
31326
31356
|
className: (0, import_classnames41.default)(SearchField_default.close, input_default.icon),
|
|
31327
31357
|
onPress: resetSearch,
|
|
31328
|
-
children: /* @__PURE__ */
|
|
31358
|
+
children: /* @__PURE__ */ jsx51(Icon, { children: /* @__PURE__ */ jsx51(Icons.Close, {}) })
|
|
31329
31359
|
}
|
|
31330
31360
|
)
|
|
31331
31361
|
] })
|
|
@@ -31342,7 +31372,7 @@ import { forwardRef as forwardRef9 } from "react";
|
|
|
31342
31372
|
var Select_default = { "button": "Select_button__NTBiN", "list": "Select_list__NzAxO", "icon": "Select_icon__MjMwM" };
|
|
31343
31373
|
|
|
31344
31374
|
// src/components/Select.tsx
|
|
31345
|
-
import { jsx as
|
|
31375
|
+
import { jsx as jsx52, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
31346
31376
|
var Select = forwardRef9(
|
|
31347
31377
|
({
|
|
31348
31378
|
children,
|
|
@@ -31366,12 +31396,12 @@ var Select = forwardRef9(
|
|
|
31366
31396
|
className: (0, import_classnames42.default)(input_default.field, className),
|
|
31367
31397
|
onSelectionChange: handleChange,
|
|
31368
31398
|
children: [
|
|
31369
|
-
label && /* @__PURE__ */
|
|
31370
|
-
/* @__PURE__ */
|
|
31371
|
-
/* @__PURE__ */
|
|
31372
|
-
/* @__PURE__ */
|
|
31399
|
+
label && /* @__PURE__ */ jsx52(Label, { children: label }),
|
|
31400
|
+
/* @__PURE__ */ jsx52($d2b4bc8c273e7be6$export$353f5b6fc5456de1, { className: (0, import_classnames42.default)(input_default.input, className), children: /* @__PURE__ */ jsxs30(Row, { justifyContent: "space-between", gap: "3", children: [
|
|
31401
|
+
/* @__PURE__ */ jsx52($82d7e5349645de74$export$e288731fd71264f0, {}),
|
|
31402
|
+
/* @__PURE__ */ jsx52("span", { "aria-hidden": "true", children: /* @__PURE__ */ jsx52(Icon, { rotate: 90, size: "xs", className: input_default.icon, children: /* @__PURE__ */ jsx52(Icons.Chevron, {}) }) })
|
|
31373
31403
|
] }) }),
|
|
31374
|
-
/* @__PURE__ */
|
|
31404
|
+
/* @__PURE__ */ jsx52(Popover, { children: /* @__PURE__ */ jsx52(List, { items, className: Select_default.list, children }) })
|
|
31375
31405
|
]
|
|
31376
31406
|
}
|
|
31377
31407
|
);
|
|
@@ -31379,12 +31409,12 @@ var Select = forwardRef9(
|
|
|
31379
31409
|
);
|
|
31380
31410
|
|
|
31381
31411
|
// css-modules:E:\dev\umami-react-zen\src\components\SideNav.module.css
|
|
31382
|
-
var SideNav_default = { "sidenav": "
|
|
31412
|
+
var SideNav_default = { "sidenav": "SideNav_sidenav__MzMwN", "header": "SideNav_header__OTQ3Y", "name": "SideNav_name__ZDIwO", "section": "SideNav_section__ODI2Y", "title": "SideNav_title__NmE1M", "content": "SideNav_content__MmYyZ", "item": "SideNav_item__ODE5M" };
|
|
31383
31413
|
|
|
31384
31414
|
// src/components/SideNav.tsx
|
|
31385
|
-
import { jsx as
|
|
31415
|
+
import { jsx as jsx53, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
31386
31416
|
function SideNav({ children }) {
|
|
31387
|
-
return /* @__PURE__ */
|
|
31417
|
+
return /* @__PURE__ */ jsx53("div", { className: SideNav_default.sidenav, children });
|
|
31388
31418
|
}
|
|
31389
31419
|
function SideNavHeader({
|
|
31390
31420
|
name,
|
|
@@ -31392,15 +31422,15 @@ function SideNavHeader({
|
|
|
31392
31422
|
children
|
|
31393
31423
|
}) {
|
|
31394
31424
|
return /* @__PURE__ */ jsxs31("div", { className: SideNav_default.header, "data-theme": "dark", children: [
|
|
31395
|
-
icon && /* @__PURE__ */
|
|
31396
|
-
/* @__PURE__ */
|
|
31425
|
+
icon && /* @__PURE__ */ jsx53(Icon, { size: "sm", children: icon }),
|
|
31426
|
+
/* @__PURE__ */ jsx53("div", { className: SideNav_default.name, children: name }),
|
|
31397
31427
|
children
|
|
31398
31428
|
] });
|
|
31399
31429
|
}
|
|
31400
31430
|
function SideNavSection({ title, children }) {
|
|
31401
31431
|
return /* @__PURE__ */ jsxs31("div", { className: SideNav_default.section, children: [
|
|
31402
|
-
title && /* @__PURE__ */
|
|
31403
|
-
/* @__PURE__ */
|
|
31432
|
+
title && /* @__PURE__ */ jsx53("div", { className: SideNav_default.title, children: title }),
|
|
31433
|
+
/* @__PURE__ */ jsx53("div", { className: SideNav_default.content, children })
|
|
31404
31434
|
] });
|
|
31405
31435
|
}
|
|
31406
31436
|
function SideNavItem({
|
|
@@ -31409,7 +31439,7 @@ function SideNavItem({
|
|
|
31409
31439
|
children
|
|
31410
31440
|
}) {
|
|
31411
31441
|
return /* @__PURE__ */ jsxs31("div", { className: SideNav_default.item, children: [
|
|
31412
|
-
icon && /* @__PURE__ */
|
|
31442
|
+
icon && /* @__PURE__ */ jsx53(Icon, { size: "sm", children: icon }),
|
|
31413
31443
|
label,
|
|
31414
31444
|
children
|
|
31415
31445
|
] });
|
|
@@ -31423,18 +31453,18 @@ var import_classnames43 = __toESM(require_classnames());
|
|
|
31423
31453
|
var Slider_default = { "slider": "Slider_slider__MjBhO", "header": "Slider_header__ZTE2M", "track": "Slider_track__ODk5M", "fill": "Slider_fill__YzdhM", "thumb": "Slider_thumb__NGEzM" };
|
|
31424
31454
|
|
|
31425
31455
|
// src/components/Slider.tsx
|
|
31426
|
-
import { Fragment as Fragment9, jsx as
|
|
31456
|
+
import { Fragment as Fragment9, jsx as jsx54, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
31427
31457
|
var Slider = forwardRef10(
|
|
31428
31458
|
({ className, showValue = true, label, ...props }, ref) => {
|
|
31429
31459
|
return /* @__PURE__ */ jsxs32($6f909507e6374d18$export$472062a354075cee, { ...props, ref, className: (0, import_classnames43.default)(Slider_default.slider, className), children: [
|
|
31430
31460
|
/* @__PURE__ */ jsxs32("div", { className: Slider_default.header, children: [
|
|
31431
|
-
label && /* @__PURE__ */
|
|
31432
|
-
showValue && /* @__PURE__ */
|
|
31461
|
+
label && /* @__PURE__ */ jsx54(Label, { className: Slider_default.label, children: label }),
|
|
31462
|
+
showValue && /* @__PURE__ */ jsx54($6f909507e6374d18$export$a590f758a961cb5b, { className: Slider_default.output })
|
|
31433
31463
|
] }),
|
|
31434
|
-
/* @__PURE__ */
|
|
31464
|
+
/* @__PURE__ */ jsx54($6f909507e6374d18$export$105594979f116971, { className: Slider_default.track, children: ({ state }) => {
|
|
31435
31465
|
const isHorizontal = state.orientation === "horizontal";
|
|
31436
31466
|
return /* @__PURE__ */ jsxs32(Fragment9, { children: [
|
|
31437
|
-
/* @__PURE__ */
|
|
31467
|
+
/* @__PURE__ */ jsx54(
|
|
31438
31468
|
"div",
|
|
31439
31469
|
{
|
|
31440
31470
|
className: Slider_default.fill,
|
|
@@ -31443,7 +31473,7 @@ var Slider = forwardRef10(
|
|
|
31443
31473
|
}
|
|
31444
31474
|
}
|
|
31445
31475
|
),
|
|
31446
|
-
/* @__PURE__ */
|
|
31476
|
+
/* @__PURE__ */ jsx54($6f909507e6374d18$export$2c1b491743890dec, { className: Slider_default.thumb })
|
|
31447
31477
|
] });
|
|
31448
31478
|
} })
|
|
31449
31479
|
] });
|
|
@@ -31457,11 +31487,11 @@ var import_classnames44 = __toESM(require_classnames());
|
|
|
31457
31487
|
var StatusLight_default = { "statuslight": "StatusLight_statuslight__MmJmM", "status": "StatusLight_status__YTQ4M", "bg": "StatusLight_bg__N2QyO", "success": "StatusLight_success__Njk1N", "warning": "StatusLight_warning__YTEyN", "error": "StatusLight_error__MzdjZ", "active": "StatusLight_active__YTdjM", "inactive": "StatusLight_inactive__ODZiY" };
|
|
31458
31488
|
|
|
31459
31489
|
// src/components/StatusLight.tsx
|
|
31460
|
-
import { jsx as
|
|
31490
|
+
import { jsx as jsx55, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
31461
31491
|
function StatusLight(props) {
|
|
31462
31492
|
const { color, variant = "inactive", children, className, ...domProps } = props;
|
|
31463
31493
|
return /* @__PURE__ */ jsxs33("div", { ...domProps, className: (0, import_classnames44.default)(StatusLight_default.statuslight, className), children: [
|
|
31464
|
-
/* @__PURE__ */
|
|
31494
|
+
/* @__PURE__ */ jsx55("div", { className: StatusLight_default.bg, children: /* @__PURE__ */ jsx55(
|
|
31465
31495
|
"div",
|
|
31466
31496
|
{
|
|
31467
31497
|
className: (0, import_classnames44.default)(StatusLight_default.status, StatusLight_default[variant]),
|
|
@@ -31480,12 +31510,12 @@ var import_classnames45 = __toESM(require_classnames());
|
|
|
31480
31510
|
var Switch_default = { "switch": "Switch_switch__NmQyM", "track": "Switch_track__MGVmY", "knob": "Switch_knob__Zjg3M" };
|
|
31481
31511
|
|
|
31482
31512
|
// src/components/Switch.tsx
|
|
31483
|
-
import { Fragment as Fragment10, jsx as
|
|
31513
|
+
import { Fragment as Fragment10, jsx as jsx56, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
31484
31514
|
var Switch = forwardRef11(
|
|
31485
31515
|
({ label, children, className, ...props }, ref) => {
|
|
31486
31516
|
const isSelected = typeof props.value !== "undefined" ? !!props.value : void 0;
|
|
31487
31517
|
return /* @__PURE__ */ jsxs34(Fragment10, { children: [
|
|
31488
|
-
label && /* @__PURE__ */
|
|
31518
|
+
label && /* @__PURE__ */ jsx56(Label, { children: label }),
|
|
31489
31519
|
/* @__PURE__ */ jsxs34(
|
|
31490
31520
|
$8e59e948500a8fe1$export$b5d5cf8927ab7262,
|
|
31491
31521
|
{
|
|
@@ -31494,7 +31524,7 @@ var Switch = forwardRef11(
|
|
|
31494
31524
|
ref,
|
|
31495
31525
|
className: (0, import_classnames45.default)(Switch_default.switch, className),
|
|
31496
31526
|
children: [
|
|
31497
|
-
/* @__PURE__ */
|
|
31527
|
+
/* @__PURE__ */ jsx56("div", { className: Switch_default.track, children: /* @__PURE__ */ jsx56("div", { className: Switch_default.knob }) }),
|
|
31498
31528
|
children
|
|
31499
31529
|
]
|
|
31500
31530
|
}
|
|
@@ -31507,18 +31537,18 @@ var Switch = forwardRef11(
|
|
|
31507
31537
|
var Tabs_default = { "tabs": "Tabs_tabs__Nzk1N", "list": "Tabs_list__YzYyN", "tab": "Tabs_tab__ZTJmN", "quiet": "Tabs_quiet__MjUxZ" };
|
|
31508
31538
|
|
|
31509
31539
|
// src/components/Tabs.tsx
|
|
31510
|
-
import { jsx as
|
|
31540
|
+
import { jsx as jsx57 } from "react/jsx-runtime";
|
|
31511
31541
|
function Tabs({ children, ...props }) {
|
|
31512
|
-
return /* @__PURE__ */
|
|
31542
|
+
return /* @__PURE__ */ jsx57($5e8ad37a45e1c704$export$b2539bed5023c21c, { ...props, className: Tabs_default.tabs, children });
|
|
31513
31543
|
}
|
|
31514
31544
|
function TabList({ children, ...props }) {
|
|
31515
|
-
return /* @__PURE__ */
|
|
31545
|
+
return /* @__PURE__ */ jsx57($5e8ad37a45e1c704$export$e51a686c67fdaa2d, { ...props, className: Tabs_default.list, children });
|
|
31516
31546
|
}
|
|
31517
31547
|
function Tab({ children, ...props }) {
|
|
31518
|
-
return /* @__PURE__ */
|
|
31548
|
+
return /* @__PURE__ */ jsx57($5e8ad37a45e1c704$export$3e41faf802a29e71, { ...props, className: Tabs_default.tab, children });
|
|
31519
31549
|
}
|
|
31520
31550
|
function TabPanel({ children, ...props }) {
|
|
31521
|
-
return /* @__PURE__ */
|
|
31551
|
+
return /* @__PURE__ */ jsx57($5e8ad37a45e1c704$export$3d96ec278d3efce4, { ...props, className: Tabs_default.panel, children });
|
|
31522
31552
|
}
|
|
31523
31553
|
|
|
31524
31554
|
// src/components/TextArea.tsx
|
|
@@ -31529,17 +31559,17 @@ import { forwardRef as forwardRef12 } from "react";
|
|
|
31529
31559
|
var TextArea_default = { "textarea": "TextArea_textarea__MTk5Y", "resize-none": "TextArea_resize-none__OTJhY", "resize-horizontal": "TextArea_resize-horizontal__YWIyZ", "resize-vertical": "TextArea_resize-vertical__NTM3O" };
|
|
31530
31560
|
|
|
31531
31561
|
// src/components/TextArea.tsx
|
|
31532
|
-
import { jsx as
|
|
31562
|
+
import { jsx as jsx58 } from "react/jsx-runtime";
|
|
31533
31563
|
var TextArea = forwardRef12(
|
|
31534
31564
|
({ rows, cols, resize, className, style, children, ...props }, ref) => {
|
|
31535
|
-
return /* @__PURE__ */
|
|
31565
|
+
return /* @__PURE__ */ jsx58(
|
|
31536
31566
|
TextField,
|
|
31537
31567
|
{
|
|
31538
31568
|
...props,
|
|
31539
31569
|
ref,
|
|
31540
31570
|
className: (0, import_classnames46.default)(resize && TextArea_default[`resize-${resize}`]),
|
|
31541
31571
|
asChild: true,
|
|
31542
|
-
children: /* @__PURE__ */
|
|
31572
|
+
children: /* @__PURE__ */ jsx58($216918bed6669f72$export$f5c9f3c2c4054eec, { rows, cols, style: { ...style }, children })
|
|
31543
31573
|
}
|
|
31544
31574
|
);
|
|
31545
31575
|
}
|
|
@@ -31552,7 +31582,7 @@ var import_classnames47 = __toESM(require_classnames());
|
|
|
31552
31582
|
var ThemeButton_default = { "button": "ThemeButton_button__Zjc5N" };
|
|
31553
31583
|
|
|
31554
31584
|
// src/components/ThemeButton.tsx
|
|
31555
|
-
import { jsx as
|
|
31585
|
+
import { jsx as jsx59, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
31556
31586
|
function ThemeButton({
|
|
31557
31587
|
className,
|
|
31558
31588
|
variant = "quiet",
|
|
@@ -31587,7 +31617,7 @@ function ThemeButton({
|
|
|
31587
31617
|
children: [
|
|
31588
31618
|
transitions((style, item) => (
|
|
31589
31619
|
// @ts-ignore
|
|
31590
|
-
/* @__PURE__ */
|
|
31620
|
+
/* @__PURE__ */ jsx59(animated.div, { style, children: /* @__PURE__ */ jsx59(Icon, { size: "sm", children: item === "light" ? /* @__PURE__ */ jsx59(Icons.Sun, {}) : /* @__PURE__ */ jsx59(Icons.Moon, {}) }) }, item)
|
|
31591
31621
|
)),
|
|
31592
31622
|
"\xA0"
|
|
31593
31623
|
]
|
|
@@ -31603,13 +31633,13 @@ var import_classnames48 = __toESM(require_classnames());
|
|
|
31603
31633
|
var Toggle_default = { "toggle": "Toggle_toggle__OWVjZ" };
|
|
31604
31634
|
|
|
31605
31635
|
// src/components/Toggle.tsx
|
|
31606
|
-
import { Fragment as Fragment11, jsx as
|
|
31636
|
+
import { Fragment as Fragment11, jsx as jsx60, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
31607
31637
|
var Toggle = forwardRef13(
|
|
31608
31638
|
({ label, children, className, ...props }, ref) => {
|
|
31609
31639
|
const isSelected = typeof props.value !== "undefined" ? !!props.value : void 0;
|
|
31610
31640
|
return /* @__PURE__ */ jsxs36(Fragment11, { children: [
|
|
31611
|
-
label && /* @__PURE__ */
|
|
31612
|
-
/* @__PURE__ */
|
|
31641
|
+
label && /* @__PURE__ */ jsx60(Label, { children: label }),
|
|
31642
|
+
/* @__PURE__ */ jsx60(
|
|
31613
31643
|
$efde0372d7a700fe$export$d2b052e7b4be1756,
|
|
31614
31644
|
{
|
|
31615
31645
|
...props,
|
|
@@ -31630,15 +31660,15 @@ var import_classnames49 = __toESM(require_classnames());
|
|
|
31630
31660
|
var ToggleGroup_default = { "group": "ToggleGroup_group__Y2YyN", "list": "ToggleGroup_list__MjNjO", "item": "ToggleGroup_item__YTNhN" };
|
|
31631
31661
|
|
|
31632
31662
|
// src/components/ToggleGroup.tsx
|
|
31633
|
-
import { jsx as
|
|
31663
|
+
import { jsx as jsx61, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
31634
31664
|
function ToggleGroup({ label, className, children, ...props }) {
|
|
31635
31665
|
return /* @__PURE__ */ jsxs37($eaf9e70818b436db$export$67ea30858aaf75e3, { ...props, className: (0, import_classnames49.default)(ToggleGroup_default.group, className), selectionBehavior: "toggle", children: [
|
|
31636
|
-
label && /* @__PURE__ */
|
|
31637
|
-
/* @__PURE__ */
|
|
31666
|
+
label && /* @__PURE__ */ jsx61(Label, { children: label }),
|
|
31667
|
+
/* @__PURE__ */ jsx61($eaf9e70818b436db$export$f9fef0f55402315b, { className: ToggleGroup_default.list, children })
|
|
31638
31668
|
] });
|
|
31639
31669
|
}
|
|
31640
31670
|
function ToggleGroupItem({ className, children, ...props }) {
|
|
31641
|
-
return /* @__PURE__ */
|
|
31671
|
+
return /* @__PURE__ */ jsx61($eaf9e70818b436db$export$3288d34c523a1192, { ...props, className: (0, import_classnames49.default)(ToggleGroup_default.item, className), children });
|
|
31642
31672
|
}
|
|
31643
31673
|
|
|
31644
31674
|
// src/components/Tooltip.tsx
|
|
@@ -31648,19 +31678,19 @@ var import_classnames50 = __toESM(require_classnames());
|
|
|
31648
31678
|
var Tooltip_default = { "tooltip": "Tooltip_tooltip__NDBjM", "arrow": "Tooltip_arrow__NzM4M", "slide": "Tooltip_slide__NzNkY" };
|
|
31649
31679
|
|
|
31650
31680
|
// src/components/Tooltip.tsx
|
|
31651
|
-
import { jsx as
|
|
31681
|
+
import { jsx as jsx62, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
31652
31682
|
function Tooltip({ children, className, ...props }) {
|
|
31653
31683
|
return /* @__PURE__ */ jsxs38($4e3b923658d69c60$export$28c660c63b792dea, { ...props, className: (0, import_classnames50.default)(Tooltip_default.tooltip, className), children: [
|
|
31654
|
-
/* @__PURE__ */
|
|
31684
|
+
/* @__PURE__ */ jsx62($44f671af83e7d9e0$export$746d02f47f4d381, { className: Tooltip_default.arrow, children: /* @__PURE__ */ jsx62("svg", { width: 8, height: 8, viewBox: "0 0 8 8", children: /* @__PURE__ */ jsx62("path", { d: "M0 0 L4 4 L8 0" }) }) }),
|
|
31655
31685
|
children
|
|
31656
31686
|
] });
|
|
31657
31687
|
}
|
|
31658
31688
|
|
|
31659
31689
|
// src/components/ZenProvider.tsx
|
|
31660
|
-
import { jsx as
|
|
31690
|
+
import { jsx as jsx63 } from "react/jsx-runtime";
|
|
31661
31691
|
function ZenProvider({ children, ...props }) {
|
|
31662
31692
|
const { toast } = props;
|
|
31663
|
-
return /* @__PURE__ */
|
|
31693
|
+
return /* @__PURE__ */ jsx63(ToastProvider, { ...toast, children });
|
|
31664
31694
|
}
|
|
31665
31695
|
export {
|
|
31666
31696
|
Accordion,
|
|
@@ -31687,6 +31717,7 @@ export {
|
|
|
31687
31717
|
$1e2864c73f66a4da$export$6fb4a10d2c950550 as FileTrigger,
|
|
31688
31718
|
Flexbox,
|
|
31689
31719
|
Form,
|
|
31720
|
+
FormButtons,
|
|
31690
31721
|
FormField,
|
|
31691
31722
|
FormResetButton,
|
|
31692
31723
|
FormSubmitButton,
|