@edu-tosel/design 1.0.52 → 1.0.53

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/version.txt CHANGED
@@ -1 +1 @@
1
- 1.0.52
1
+ 1.0.53
@@ -1,2 +1,2 @@
1
1
  import { HTMLSelectElement } from "../../../interface";
2
- export default function SelectLG<T>({ state }: HTMLSelectElement<T>): import("react/jsx-runtime").JSX.Element;
2
+ export default function SelectLG<T>({ state, }: HTMLSelectElement<T>): import("react/jsx-runtime").JSX.Element;
@@ -12,10 +12,11 @@ const widthSize = {
12
12
  const heightSize = {
13
13
  xs: "h-6.5",
14
14
  };
15
+ export default function SelectLG({ state,
15
16
  // selectOptions,
16
17
  // placeholder,
17
18
  // options,
18
- export default function SelectLG({ state }) {
19
+ }) {
19
20
  const id = useId();
20
21
  const { setIsOwn, setIsOwnId } = useActionStore();
21
22
  const [value, setValue] = state;