@oncehub/ui-react 1.4.20 → 1.4.22-beta.1.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.
@@ -1,5 +1,4 @@
1
1
  import { ComponentPropsWithRef, FC, ReactNode } from 'react';
2
-
3
2
  interface ButtonProps extends ComponentPropsWithRef<'button'> {
4
3
  /** The content of the button */
5
4
  children: ReactNode;
@@ -1,5 +1,4 @@
1
1
  import { ComponentPropsWithRef, FC, ReactNode } from 'react';
2
-
3
2
  interface CheckboxProps extends ComponentPropsWithRef<'input'> {
4
3
  children?: ReactNode;
5
4
  themeColor?: string;
@@ -1,5 +1,4 @@
1
1
  import { ComponentPropsWithRef, FC } from 'react';
2
-
3
2
  interface CheckboxProps extends ComponentPropsWithRef<'div'> {
4
3
  themeColor?: string;
5
4
  checked?: boolean;
@@ -1,5 +1,4 @@
1
1
  import { FC, ComponentPropsWithRef } from 'react';
2
-
3
2
  interface MultiLineInputProps extends ComponentPropsWithRef<'textarea'> {
4
3
  themeColor?: string;
5
4
  onSubmit?: () => void;
@@ -1,6 +1,5 @@
1
1
  import { default as React, CSSProperties } from 'react';
2
2
  import { IOption } from '../../interfaces/select.type';
3
-
4
3
  interface Props {
5
4
  options: IOption[];
6
5
  checkedValue: string[];
@@ -1,6 +1,5 @@
1
1
  import { default as React, CSSProperties } from 'react';
2
2
  import { IOption } from '../../interfaces/select.type';
3
-
4
3
  interface Props {
5
4
  options: IOption[];
6
5
  checkedValue: string[];
@@ -1,6 +1,5 @@
1
1
  import { CSSProperties, FC } from 'react';
2
2
  import { IOption } from '../../interfaces/select.type';
3
-
4
3
  interface Props {
5
4
  options: IOption[];
6
5
  onSelect: (option: IOption | undefined) => void;
@@ -1,5 +1,4 @@
1
1
  import { ComponentPropsWithRef, FC } from 'react';
2
-
3
2
  interface ScrollbarProps extends ComponentPropsWithRef<'div'> {
4
3
  children: any;
5
4
  }
@@ -1,5 +1,4 @@
1
1
  import { default as React, FC } from 'react';
2
-
3
2
  interface Props {
4
3
  children: any;
5
4
  setQuery: (query: any) => void;
@@ -1,6 +1,5 @@
1
1
  import { FC } from 'react';
2
2
  import { IOption } from '../../interfaces/select.type';
3
-
4
3
  interface Props {
5
4
  children: any;
6
5
  selected: IOption | null;
@@ -1,5 +1,4 @@
1
1
  import { default as React, FC } from 'react';
2
-
3
2
  interface Props {
4
3
  children: any;
5
4
  setQuery: (query: any) => void;
@@ -1,6 +1,5 @@
1
1
  import { FC } from 'react';
2
2
  import { IOption } from '../../interfaces/select.type';
3
-
4
3
  interface Props {
5
4
  children: any;
6
5
  selected: IOption | null;
@@ -1,5 +1,4 @@
1
1
  import { FC, ComponentPropsWithRef } from 'react';
2
-
3
2
  interface SingleLineInputProps extends ComponentPropsWithRef<'input'> {
4
3
  themeColor?: string;
5
4
  }
package/dist/index.d.ts CHANGED
@@ -1,3 +1,2 @@
1
-
2
1
  export * from './components';
3
2
  export * from './interfaces';