@particle-network/ui-react 0.3.0-beta.2 → 0.3.0-beta.3

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.
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import ExtendedInput from './input.extend';
3
3
  export type UXInputProps = React.ComponentPropsWithRef<typeof ExtendedInput>;
4
- declare const UXInput: import("@heroui/system-rsc").InternalForwardRefRenderFunction<"input", Omit<{
4
+ declare const UXInput: React.ForwardRefExoticComponent<Omit<Omit<{
5
5
  fullWidth?: boolean | undefined;
6
6
  ref?: React.Ref<HTMLInputElement> | undefined;
7
7
  children?: React.ReactNode;
@@ -342,5 +342,5 @@ declare const UXInput: import("@heroui/system-rsc").InternalForwardRefRenderFunc
342
342
  wrapperRef?: React.Ref<HTMLDivElement> | undefined;
343
343
  innerWrapperRef?: React.Ref<HTMLDivElement> | undefined;
344
344
  textAlign?: "center" | "left" | "right" | undefined;
345
- }, "ref"> & React.RefAttributes<React.ReactElement<unknown, string | React.JSXElementConstructor<any>>>, never>;
345
+ }, "ref"> & React.RefAttributes<React.ReactElement<unknown, string | React.JSXElementConstructor<any>>>, "ref"> & React.RefAttributes<HTMLInputElement>>;
346
346
  export default UXInput;
@@ -1,8 +1,7 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
- import "react";
3
- import { forwardRef } from "@heroui/system";
2
+ import { forwardRef } from "react";
4
3
  import input_extend from "./input.extend.js";
5
- const UXInput_UXInput = forwardRef((props, ref)=>/*#__PURE__*/ jsx(input_extend, {
4
+ const UXInput_UXInput = /*#__PURE__*/ forwardRef((props, ref)=>/*#__PURE__*/ jsx(input_extend, {
6
5
  ...props,
7
6
  ref: ref
8
7
  }));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@particle-network/ui-react",
3
- "version": "0.3.0-beta.2",
3
+ "version": "0.3.0-beta.3",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {