@lolmath/ui 2.5.1 → 2.6.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.cjs +109 -66
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -3
- package/dist/index.d.ts +7 -3
- package/dist/index.js +111 -66
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import { ReactNode, ComponentProps } from 'react';
|
|
3
|
-
import { ButtonProps as ButtonProps$1, ItemProps, SelectProps as SelectProps$1, SearchFieldProps, Input, SliderProps, SliderTrackProps, SliderThumbProps, SliderTrackRenderProps, SwitchProps, ProgressBarProps as ProgressBarProps$1, TextFieldProps, RadioGroupProps, RadioProps, LabelProps, NumberFieldProps, Group, HeadingProps, DialogTriggerProps, ModalOverlayProps, DialogProps, TabsProps, TabListProps, TabProps, TabPanelProps, CheckboxProps } from 'react-aria-components';
|
|
3
|
+
import { ButtonProps as ButtonProps$1, ItemProps, SelectProps as SelectProps$1, SearchFieldProps, Input, SliderProps, SliderTrackProps, SliderThumbProps, SliderTrackRenderProps, SwitchProps, ProgressBarProps as ProgressBarProps$1, TextFieldProps, InputProps, RadioGroupProps, RadioProps, LabelProps, NumberFieldProps, Group, HeadingProps, DialogTriggerProps, ModalOverlayProps, DialogProps, TabsProps, TabListProps, TabProps, TabPanelProps, CheckboxProps, TextAreaProps } from 'react-aria-components';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
|
|
6
6
|
interface ButtonProps extends ButtonProps$1 {
|
|
@@ -62,7 +62,7 @@ interface AccordionContentProps {
|
|
|
62
62
|
declare function AccordionContent({ children }: AccordionContentProps): react_jsx_runtime.JSX.Element | null;
|
|
63
63
|
|
|
64
64
|
declare function TextField({ inputProps, ...props }: TextFieldProps & {
|
|
65
|
-
inputProps?:
|
|
65
|
+
inputProps?: InputProps;
|
|
66
66
|
}): react_jsx_runtime.JSX.Element;
|
|
67
67
|
|
|
68
68
|
declare function RadioGroup({ ...props }: RadioGroupProps): react_jsx_runtime.JSX.Element;
|
|
@@ -99,4 +99,8 @@ declare function TabPanel({ ...rest }: TabPanelProps): react_jsx_runtime.JSX.Ele
|
|
|
99
99
|
|
|
100
100
|
declare function Checkbox({ children, className, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
|
|
101
101
|
|
|
102
|
-
|
|
102
|
+
declare function TextArea({ textAreaProps, ...props }: TextFieldProps & {
|
|
103
|
+
textAreaProps?: TextAreaProps;
|
|
104
|
+
}): react_jsx_runtime.JSX.Element;
|
|
105
|
+
|
|
106
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Button, Checkbox, DialogButtons, DialogTrigger, Heading, Item, Label, Modal, NumberField, ProgressBar, Radio, RadioGroup, SearchField, Select, Slider, SliderLabel, Spinner, Switch, Tab, TabList, TabPanel, Tabs, TextArea, TextField };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import { ReactNode, ComponentProps } from 'react';
|
|
3
|
-
import { ButtonProps as ButtonProps$1, ItemProps, SelectProps as SelectProps$1, SearchFieldProps, Input, SliderProps, SliderTrackProps, SliderThumbProps, SliderTrackRenderProps, SwitchProps, ProgressBarProps as ProgressBarProps$1, TextFieldProps, RadioGroupProps, RadioProps, LabelProps, NumberFieldProps, Group, HeadingProps, DialogTriggerProps, ModalOverlayProps, DialogProps, TabsProps, TabListProps, TabProps, TabPanelProps, CheckboxProps } from 'react-aria-components';
|
|
3
|
+
import { ButtonProps as ButtonProps$1, ItemProps, SelectProps as SelectProps$1, SearchFieldProps, Input, SliderProps, SliderTrackProps, SliderThumbProps, SliderTrackRenderProps, SwitchProps, ProgressBarProps as ProgressBarProps$1, TextFieldProps, InputProps, RadioGroupProps, RadioProps, LabelProps, NumberFieldProps, Group, HeadingProps, DialogTriggerProps, ModalOverlayProps, DialogProps, TabsProps, TabListProps, TabProps, TabPanelProps, CheckboxProps, TextAreaProps } from 'react-aria-components';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
|
|
6
6
|
interface ButtonProps extends ButtonProps$1 {
|
|
@@ -62,7 +62,7 @@ interface AccordionContentProps {
|
|
|
62
62
|
declare function AccordionContent({ children }: AccordionContentProps): react_jsx_runtime.JSX.Element | null;
|
|
63
63
|
|
|
64
64
|
declare function TextField({ inputProps, ...props }: TextFieldProps & {
|
|
65
|
-
inputProps?:
|
|
65
|
+
inputProps?: InputProps;
|
|
66
66
|
}): react_jsx_runtime.JSX.Element;
|
|
67
67
|
|
|
68
68
|
declare function RadioGroup({ ...props }: RadioGroupProps): react_jsx_runtime.JSX.Element;
|
|
@@ -99,4 +99,8 @@ declare function TabPanel({ ...rest }: TabPanelProps): react_jsx_runtime.JSX.Ele
|
|
|
99
99
|
|
|
100
100
|
declare function Checkbox({ children, className, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
|
|
101
101
|
|
|
102
|
-
|
|
102
|
+
declare function TextArea({ textAreaProps, ...props }: TextFieldProps & {
|
|
103
|
+
textAreaProps?: TextAreaProps;
|
|
104
|
+
}): react_jsx_runtime.JSX.Element;
|
|
105
|
+
|
|
106
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Button, Checkbox, DialogButtons, DialogTrigger, Heading, Item, Label, Modal, NumberField, ProgressBar, Radio, RadioGroup, SearchField, Select, Slider, SliderLabel, Spinner, Switch, Tab, TabList, TabPanel, Tabs, TextArea, TextField };
|
package/dist/index.js
CHANGED
|
@@ -11,6 +11,11 @@ var borderHoverClassName = "from-[#c89c3c] via-[#dcc188] to-[#f0e6d8]";
|
|
|
11
11
|
var borderPressedClassName = "from-lol-gold-600 via-lol-gold-600 to-lol-gold-700";
|
|
12
12
|
var borderDisabledClassName = "from-[#5c5b57] via-[#5c5b57] to-[#5c5b57]";
|
|
13
13
|
|
|
14
|
+
// src/utilities/resolve-classname.ts
|
|
15
|
+
function resolveClassname(className, values) {
|
|
16
|
+
return typeof className === "function" ? className(values) : className;
|
|
17
|
+
}
|
|
18
|
+
|
|
14
19
|
// src/components/button.tsx
|
|
15
20
|
import { jsx } from "react/jsx-runtime";
|
|
16
21
|
function _Button({ children, className, priority = "secondary", ...props }, ref) {
|
|
@@ -18,8 +23,8 @@ function _Button({ children, className, priority = "secondary", ...props }, ref)
|
|
|
18
23
|
AriaButton,
|
|
19
24
|
{
|
|
20
25
|
ref,
|
|
26
|
+
...props,
|
|
21
27
|
className: (values) => {
|
|
22
|
-
const overrideClassname = typeof className === "undefined" ? "" : typeof className === "string" ? className : className(values);
|
|
23
28
|
return twMerge(
|
|
24
29
|
"font-[beaufort] font-black uppercase transition-colors duration-200 outline-none bg-gradient-to-t",
|
|
25
30
|
borderClassName,
|
|
@@ -28,10 +33,9 @@ function _Button({ children, className, priority = "secondary", ...props }, ref)
|
|
|
28
33
|
values.isDisabled && borderDisabledClassName,
|
|
29
34
|
values.isFocused && "",
|
|
30
35
|
values.isFocusVisible && "outline outline-yellow-50 outline-offset-2",
|
|
31
|
-
|
|
36
|
+
resolveClassname(className, values)
|
|
32
37
|
);
|
|
33
38
|
},
|
|
34
|
-
...props,
|
|
35
39
|
children: (values) => {
|
|
36
40
|
return /* @__PURE__ */ jsx(
|
|
37
41
|
"span",
|
|
@@ -81,47 +85,54 @@ function Select({
|
|
|
81
85
|
children,
|
|
82
86
|
...props
|
|
83
87
|
}) {
|
|
84
|
-
return /* @__PURE__ */ jsx2(
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
(buttonValues.isPressed || values.isOpen) && borderPressedClassName,
|
|
93
|
-
buttonValues.isDisabled && borderDisabledClassName,
|
|
94
|
-
buttonValues.isFocused && "",
|
|
95
|
-
buttonValues.isFocusVisible && outlineClassName
|
|
96
|
-
),
|
|
97
|
-
children: /* @__PURE__ */ jsx2(
|
|
98
|
-
"span",
|
|
88
|
+
return /* @__PURE__ */ jsx2(
|
|
89
|
+
AriaSelect,
|
|
90
|
+
{
|
|
91
|
+
...props,
|
|
92
|
+
className: (values) => twMerge2("font-spiegel", resolveClassname(props.className, values)),
|
|
93
|
+
children: (values) => /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
94
|
+
/* @__PURE__ */ jsx2(
|
|
95
|
+
AriaButton2,
|
|
99
96
|
{
|
|
100
|
-
className: twMerge2(
|
|
101
|
-
"block
|
|
97
|
+
className: (buttonValues) => twMerge2(
|
|
98
|
+
"inline-block outline-none",
|
|
99
|
+
borderClassName,
|
|
100
|
+
buttonValues.isHovered && borderHoverClassName,
|
|
101
|
+
(buttonValues.isPressed || values.isOpen) && borderPressedClassName,
|
|
102
|
+
buttonValues.isDisabled && borderDisabledClassName,
|
|
103
|
+
buttonValues.isFocused && "",
|
|
104
|
+
buttonValues.isFocusVisible && outlineClassName
|
|
102
105
|
),
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
106
|
+
children: /* @__PURE__ */ jsx2(
|
|
107
|
+
"span",
|
|
108
|
+
{
|
|
109
|
+
className: twMerge2(
|
|
110
|
+
"block m-px bg-lol-gray-950 px-2 py-1 text-[#a09b8c] text-xs font-normal tracking-wide pr-6 bg-no-repeat"
|
|
111
|
+
),
|
|
112
|
+
style: {
|
|
113
|
+
backgroundPosition: "right 0.5rem center",
|
|
114
|
+
backgroundImage: values.isOpen ? "url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAASCAYAAACAa1QyAAAA90lEQVR42mL8//8/A6mAiYEMwILVJG4RNiAlDcQgZzz79/XNL2R5RnTnATWwAyn5BEfBaqDUv4UH3rcD+Q+QNaJoAmrgAFJyiY6CdWL8LNEgsRcf/ixA14juJ6kkJ8FGkIbn7//MB2pYKCHAkhDvIFgJksPlJ0ZGRgbmp+9+z1py6EMvSACoASyO009A53FCTfwNCgCoS2A2wAOEcWDiCcl5v6DOY8bmPBYsodf28/f/90sPf+iDBgQo5BiAwd4ICnZcKeKfjDBrepy9IAsoJEFBDgp6fKGHLXIXAm1pQ45cfMmoBpqM2vAmIzSNUkQnWJrFE0CAAQCQxYvehN8YFAAAAABJRU5ErkJggg==')" : "url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAASCAYAAACAa1QyAAAAiUlEQVR42mL8//8/A6mAiYEMQJYmFnSBk6vzYcwmIP4LxI0gjnnoRNyaoKAViKuQ+I14bQKCTiAuA+I6IGYG4gZ0jSw4nFwB1QwDjIRsKkbjNwxckFNNUw8QlyLx66EYb0D8A+IuIGaDyjcQE0+gOPoDxC1I8dNASBMDNDX8hWKMIGcc3FkDIMAA1n8bpHnZDOAAAAAASUVORK5CYII=')"
|
|
115
|
+
},
|
|
116
|
+
children: /* @__PURE__ */ jsx2(AriaSelectValue, {})
|
|
117
|
+
}
|
|
118
|
+
)
|
|
108
119
|
}
|
|
109
|
-
)
|
|
110
|
-
}
|
|
111
|
-
),
|
|
112
|
-
description && /* @__PURE__ */ jsx2(AriaText, { slot: "description", children: description }),
|
|
113
|
-
errorMessage && /* @__PURE__ */ jsx2(AriaText, { slot: "errorMessage", children: errorMessage }),
|
|
114
|
-
/* @__PURE__ */ jsx2(AriaPopover, { offset: 4, children: /* @__PURE__ */ jsx2(
|
|
115
|
-
AriaListBox,
|
|
116
|
-
{
|
|
117
|
-
className: (listbox) => twMerge2(
|
|
118
|
-
"bg-[#010a13] border border-[#463714] outline-none",
|
|
119
|
-
listbox.isFocused && ""
|
|
120
120
|
),
|
|
121
|
-
children
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
121
|
+
description && /* @__PURE__ */ jsx2(AriaText, { slot: "description", children: description }),
|
|
122
|
+
errorMessage && /* @__PURE__ */ jsx2(AriaText, { slot: "errorMessage", children: errorMessage }),
|
|
123
|
+
/* @__PURE__ */ jsx2(AriaPopover, { offset: 4, children: /* @__PURE__ */ jsx2(
|
|
124
|
+
AriaListBox,
|
|
125
|
+
{
|
|
126
|
+
className: (listbox) => twMerge2(
|
|
127
|
+
"bg-[#010a13] border border-[#463714] outline-none",
|
|
128
|
+
listbox.isFocused && ""
|
|
129
|
+
),
|
|
130
|
+
children
|
|
131
|
+
}
|
|
132
|
+
) })
|
|
133
|
+
] })
|
|
134
|
+
}
|
|
135
|
+
);
|
|
125
136
|
}
|
|
126
137
|
function Item({ className, ...props }) {
|
|
127
138
|
return /* @__PURE__ */ jsx2(
|
|
@@ -150,13 +161,6 @@ import {
|
|
|
150
161
|
Button as AriaButton3
|
|
151
162
|
} from "react-aria-components";
|
|
152
163
|
import { twMerge as twMerge3 } from "tailwind-merge";
|
|
153
|
-
|
|
154
|
-
// src/utilities/resolve-classname.ts
|
|
155
|
-
function resolveClassname(className, values) {
|
|
156
|
-
return typeof className === "function" ? className(values) : className;
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
// src/components/search-field.tsx
|
|
160
164
|
import { jsx as jsx3, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
161
165
|
function SearchField({
|
|
162
166
|
inputProps = {},
|
|
@@ -165,17 +169,16 @@ function SearchField({
|
|
|
165
169
|
return /* @__PURE__ */ jsx3(
|
|
166
170
|
AriaSearchField,
|
|
167
171
|
{
|
|
172
|
+
...props,
|
|
168
173
|
className: (values) => {
|
|
169
|
-
const finalClassName = resolveClassname(props.className, values);
|
|
170
174
|
return twMerge3(
|
|
171
175
|
"flex flex-col outline-none",
|
|
172
176
|
borderClassName,
|
|
173
177
|
"focus-within:from-lol-gold-300 focus-within:via-lol-gold-200 focus-within:to-lol-gold-50",
|
|
174
178
|
props.isDisabled && "from-lol-gray-700 via-lol-gray-700 to-lol-gray-700",
|
|
175
|
-
|
|
179
|
+
resolveClassname(props.className, values)
|
|
176
180
|
);
|
|
177
181
|
},
|
|
178
|
-
...props,
|
|
179
182
|
children: ({ state, isDisabled }) => /* @__PURE__ */ jsxs2(
|
|
180
183
|
"div",
|
|
181
184
|
{
|
|
@@ -367,8 +370,8 @@ function Switch({
|
|
|
367
370
|
return /* @__PURE__ */ jsx5(
|
|
368
371
|
AriaSwitch,
|
|
369
372
|
{
|
|
370
|
-
className: "group inline-flex items-center gap-2 p-1 text-sm font-semibold text-black",
|
|
371
373
|
...props,
|
|
374
|
+
className: "group inline-flex items-center gap-2 p-1 text-sm font-semibold text-black",
|
|
372
375
|
children: (values) => /* @__PURE__ */ jsxs4(Fragment3, { children: [
|
|
373
376
|
/* @__PURE__ */ jsx5(
|
|
374
377
|
"div",
|
|
@@ -585,17 +588,14 @@ function TextField({
|
|
|
585
588
|
return /* @__PURE__ */ jsx8(
|
|
586
589
|
AriaTextField,
|
|
587
590
|
{
|
|
588
|
-
className: (values) => {
|
|
589
|
-
const finalClassName = resolveClassname(props.className, values);
|
|
590
|
-
return twMerge8(
|
|
591
|
-
"flex flex-col outline-none",
|
|
592
|
-
borderClassName,
|
|
593
|
-
"focus-within:from-lol-gold-300 focus-within:via-lol-gold-200 focus-within:to-lol-gold-50",
|
|
594
|
-
props.isDisabled && "from-lol-gray-700 via-lol-gray-700 to-lol-gray-700",
|
|
595
|
-
finalClassName
|
|
596
|
-
);
|
|
597
|
-
},
|
|
598
591
|
...props,
|
|
592
|
+
className: (values) => twMerge8(
|
|
593
|
+
"flex flex-col outline-none",
|
|
594
|
+
borderClassName,
|
|
595
|
+
"focus-within:from-lol-gold-300 focus-within:via-lol-gold-200 focus-within:to-lol-gold-50",
|
|
596
|
+
props.isDisabled && "from-lol-gray-700 via-lol-gray-700 to-lol-gray-700",
|
|
597
|
+
resolveClassname(props.className, values)
|
|
598
|
+
),
|
|
599
599
|
children: /* @__PURE__ */ jsx8(
|
|
600
600
|
"div",
|
|
601
601
|
{
|
|
@@ -608,14 +608,10 @@ function TextField({
|
|
|
608
608
|
{
|
|
609
609
|
...inputProps,
|
|
610
610
|
className: (values) => {
|
|
611
|
-
const finalClassName = resolveClassname(
|
|
612
|
-
inputProps.className,
|
|
613
|
-
values
|
|
614
|
-
);
|
|
615
611
|
return twMerge8(
|
|
616
612
|
"bg-transparent grow py-2 px-3 text-lol-gold-50 text-xs outline-none font-spiegel tracking-wide",
|
|
617
613
|
values.isDisabled && "text-lol-gray-500",
|
|
618
|
-
|
|
614
|
+
resolveClassname(inputProps.className, values)
|
|
619
615
|
);
|
|
620
616
|
},
|
|
621
617
|
type: "text"
|
|
@@ -973,6 +969,54 @@ var checked = "url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAMAAA
|
|
|
973
969
|
var checkedHover = "url('data:image/png;base64,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')";
|
|
974
970
|
var indeterminate = "url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAMAAAAolt3jAAAAIGNIUk0AAHomAACAhAAA+gAAAIDoAAB1MAAA6mAAADqYAAAXcJy6UTwAAAA2UExURQEKEwEKE0E5IGhVKGhVKEI5IGlWKGpWKWpXKWtXKWtXKWxYKUM6IG1YKUU8IXhaKMibPP///+VfctgAAAAPdFJOUyZAyNXUx9PS0M/OzcXMvkYA5F8AAAABYktHRBHitT26AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5wkXDDshfoqKzwAAAzx6VFh0UmF3IHByb2ZpbGUgdHlwZSB4bXAAAEiJxVbLttsgDNzzFf0ELIFkPseJza7ndNnP74xIbhLb9zZtF41PCAE0Gj1x+vn9R/qGzyRzTnrV7rNnm0ztYtWLZBOr5tZs01Vk65fLpYtgvVnhSnWtZdVcVs9FcXa2lsrsi0Owqi9lq8XwC0BVCIlo102yXn3WxWeDoK1UZpNk/rerba7cS9QANsU6eegyNj6OB5MHDNYulCgfEpLrXNaak5Bc91hSk02zrOCT8QBCXRvWJjUtqlqxdsWqaHyl4xfKsAOgFcfABN+MUXWWvHvkZp6AhelSpZRiO9MkxSbNm73gARjM6R4f2RynZAvGDs2TNj7BRDAKxnUoACNXR3zoEZ9hFjRw/5UFKCBUCIRYC081eAgn7vs2JTisOxxLVsOxz7Ggg498Q9n2CBHmmjBdYcoMPnTeFO7ue0iI6IkDMiiIXWl8GtbzIMYKwcrQ01RoHcDTERj5NMMSMILBnOX0HvEb74P4w4Z07peyogT+RMWcXn0DwPXEEPVSqtsIyTl4OkN/BWeFOoKOM71KpEEPJ6NcCT88mpgzQz91FGZKBRD9IJVKul0P1XX0FZwtt8hkmWu0DgogrVXaJypqKeOXCu51x1pj4XH0WmIxKi6qr8qFu5ijiF9gV2PKNDNvAza94gZgiUJugB3lLABeUP0lYOUUtibWmA2q0xnld6HTwI4SWMyizlfCRaAb52i6NZJxQw2Qx8HV9CBr7Urxm9WDjX4q0EBDK6u+Q21jSVHCNaFNod+jT7YC5ugU7DlIERgjEc0PX0S2A4opGA7ZIpPgbEKlcQjp2OKOWNBcAYdAY0CnqehQE2JYogVP0A/WmKEPUSHVsTGbMGrN6DwI4rgdGDANkRn3nnBn8EGgDALpbxnsCaQDA8atjesRQNf/weh+lz6xwhUckQE7b7vLCJHy6XUNSdBwQT51m4VvAPc7IlLyqVR5he9OP6VCes6Ff0mF9JXdewbuyPA6uL7UIrpHerN9PMOxk2IG2ImGl6jGxJC+0wF/0wB7Gv6XfhaV6N9fxvIhl85v9QN8vIE84PevXbolbp28/FVSj0jKeG9LvwCmH1eI6Lix8QAAAD9JREFUCNeNzzkOACAMA8GE+4b/vxYUQMId201nE/ETEfcnXlTa7KzQjJNDemQQusuITMj8weJDynXVhDASL0wdRwfQJZFBnAAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAyMy0wOS0yM1QxMjo1OToxNiswMDowMMk4lEsAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMjMtMDktMjNUMTI6NTk6MTYrMDA6MDC4ZSz3AAAAKHRFWHRkYXRlOnRpbWVzdGFtcAAyMDIzLTA5LTIzVDEyOjU5OjMzKzAwOjAw/20l8gAAAABJRU5ErkJggg==')";
|
|
975
971
|
var indeterminateHover = "url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAMAAAAolt3jAAAAIGNIUk0AAHomAACAhAAA+gAAAIDoAAB1MAAA6mAAADqYAAAXcJy6UTwAAAB+UExURQEKEwEKE05RUX18dn18dk9SUX59d359d4B/eX9+d4KBen9+eIOCe4B/eYaEfYGAeYeFfoKAeoiGfoKBeoiHf1ZYVoOCe4aEfYeGfoiGf4mHf11eXHhaKHlcKXtdK/Dm0n5gLIBiLoNlMYZoM4lrNYxuOJFzPJl7QqCCSP///0lElLIAAAAcdFJOUyZAyNXUx9PU0tTQ1NDUz9TP1M/Uz8jU0tDQz8FE4StQAAAAAWJLR0QpyreFJAAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB+cJFww7IX6Kis8AAAM8elRYdFJhdyBwcm9maWxlIHR5cGUgeG1wAABIicVWy7bbIAzc8xX9BCyBZD7Hic2u53TZz++MSG4S2/c2bReNTwgBNBo9cfr5/Uf6hs8kc0561e6zZ5tM7WLVi2QTq+bWbNNVZOuXy6WLYL1Z4Up1rWXVXFbPRXF2tpbK7ItDsKovZavF8AtAVQiJaNdNsl591sVng6CtVGaTZP63q22u3EvUADbFOnnoMjY+jgeTBwzWLpQoHxKS61zWmpOQXPdYUpNNs6zgk/EAQl0b1iY1LapasXbFqmh8peMXyrADoBXHwATfjFF1lrx75GaegIXpUqWUYjvTJMUmzZu94AEYzOkeH9kcp2QLxg7NkzY+wUQwCsZ1KAAjV0d86BGfYRY0cP+VBSggVAiEWAtPNXgIJ+77NiU4rDscS1bDsc+xoIOPfEPZ9ggR5powXWHKDD503hTu7ntIiOiJAzIoiF1pfBrW8yDGCsHK0NNUaB3A0xEY+TTDEjCCwZzl9B7xG++D+MOGdO6XsqIE/kTFnF59A8D1xBD1UqrbCMk5eDpDfwVnhTqCjjO9SqRBDyejXAk/PJqYM0M/dRRmSgUQ/SCVSrpdD9V19BWcLbfIZJlrtA4KIK1V2icqainjlwrudcdaY+Fx9FpiMSouqq/KhbuYo4hfYFdjyjQzbwM2veIGYIlCboAd5SwAXlD9JWDlFLYm1pgNqtMZ5Xeh08COEljMos5XwkWgG+doujWScUMNkMfB1fQga+1K8ZvVg41+KtBAQyurvkNtY0lRwjWhTaHfo0+2AuboFOw5SBEYIxHND19EtgOKKRgO2SKT4GxCpXEI6djijljQXAGHQGNAp6noUBNiWKIFT9AP1pihD1Eh1bExmzBqzeg8COK4HRgwDZEZ955wZ/BBoAwC6W8Z7AmkAwPGrY3rEUDX/8Hofpc+scIVHJEBO2+7ywiR8ul1DUnQcEE+dZuFbwD3OyJS8qlUeYXvTj+lQnrOhX9JhfSV3XsG7sjwOri+1CK6R3qzfTzDsZNiBtiJhpeoxsSQvtMBf9MAexr+l34WlejfX8byIZfOb/UDfLyBPOD3r126JW6dvPxVUo9IynhvS78Aph9XiOi4sfEAAABhSURBVAjXTc9HDoAwEEPRCb33XkPn/ifECEbK372dTSSUiMSgJEiMmm58mSM46fOfNYHSZjoSXFymt4CrzwxWcAuZ0QbuMTPZwSNlZgd45sziBK+yqpu2Q/0F3krvaPXCA/W/D7FK8tWfAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDIzLTA5LTIzVDEyOjU5OjE2KzAwOjAwyTiUSwAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyMy0wOS0yM1QxMjo1OToxNiswMDowMLhlLPcAAAAodEVYdGRhdGU6dGltZXN0YW1wADIwMjMtMDktMjNUMTI6NTk6MzMrMDA6MDD/bSXyAAAAAElFTkSuQmCC')";
|
|
972
|
+
|
|
973
|
+
// src/components/text-area.tsx
|
|
974
|
+
import {
|
|
975
|
+
TextField as AriaTextField2,
|
|
976
|
+
TextArea as AriaTextArea
|
|
977
|
+
} from "react-aria-components";
|
|
978
|
+
import { twMerge as twMerge16 } from "tailwind-merge";
|
|
979
|
+
import { jsx as jsx16 } from "react/jsx-runtime";
|
|
980
|
+
function TextArea({
|
|
981
|
+
textAreaProps = {},
|
|
982
|
+
...props
|
|
983
|
+
}) {
|
|
984
|
+
return /* @__PURE__ */ jsx16(
|
|
985
|
+
AriaTextField2,
|
|
986
|
+
{
|
|
987
|
+
...props,
|
|
988
|
+
className: (values) => twMerge16(
|
|
989
|
+
"flex flex-col outline-none",
|
|
990
|
+
borderClassName,
|
|
991
|
+
"focus-within:from-lol-gold-300 focus-within:via-lol-gold-200 focus-within:to-lol-gold-50",
|
|
992
|
+
props.isDisabled && "from-lol-gray-700 via-lol-gray-700 to-lol-gray-700",
|
|
993
|
+
resolveClassname(props.className, values)
|
|
994
|
+
),
|
|
995
|
+
children: /* @__PURE__ */ jsx16(
|
|
996
|
+
"div",
|
|
997
|
+
{
|
|
998
|
+
className: twMerge16(
|
|
999
|
+
"m-px bg-black flex flex-row focus-within:from-lol-gray-950 focus-within:to-lol-gray-900 focus-within:bg-gradient-to-b",
|
|
1000
|
+
props.isDisabled && "bg-lol-gray-950"
|
|
1001
|
+
),
|
|
1002
|
+
children: /* @__PURE__ */ jsx16(
|
|
1003
|
+
AriaTextArea,
|
|
1004
|
+
{
|
|
1005
|
+
...textAreaProps,
|
|
1006
|
+
className: (values) => {
|
|
1007
|
+
return twMerge16(
|
|
1008
|
+
"bg-transparent grow py-2 px-3 text-lol-gold-50 text-xs outline-none font-spiegel tracking-wide",
|
|
1009
|
+
values.isDisabled && "text-lol-gray-500",
|
|
1010
|
+
resolveClassname(textAreaProps.className, values)
|
|
1011
|
+
);
|
|
1012
|
+
}
|
|
1013
|
+
}
|
|
1014
|
+
)
|
|
1015
|
+
}
|
|
1016
|
+
)
|
|
1017
|
+
}
|
|
1018
|
+
);
|
|
1019
|
+
}
|
|
976
1020
|
export {
|
|
977
1021
|
Accordion,
|
|
978
1022
|
AccordionContent,
|
|
@@ -1000,6 +1044,7 @@ export {
|
|
|
1000
1044
|
TabList,
|
|
1001
1045
|
TabPanel,
|
|
1002
1046
|
Tabs,
|
|
1047
|
+
TextArea,
|
|
1003
1048
|
TextField
|
|
1004
1049
|
};
|
|
1005
1050
|
//# sourceMappingURL=index.js.map
|