@oncehub/ui-react 1.2.2 → 1.3.1
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/components/button/button.d.ts +2 -2
- package/dist/components/button/index.d.ts +1 -1
- package/dist/components/checkbox/checkbox.d.ts +2 -2
- package/dist/components/checkbox/index.d.ts +1 -1
- package/dist/components/multi-line-input/index.d.ts +1 -1
- package/dist/components/multi-line-input/multi-line-input.d.ts +2 -2
- package/dist/components/multi-select/index.d.ts +1 -1
- package/dist/components/multi-select/multi-select.d.ts +2 -2
- package/dist/components/quick-multi-select/index.d.ts +1 -1
- package/dist/components/quick-multi-select/quick-multi-select.d.ts +2 -2
- package/dist/components/quick-select/index.d.ts +1 -1
- package/dist/components/quick-select/quick-select.d.ts +2 -2
- package/dist/components/scrollbar/index.d.ts +1 -1
- package/dist/components/scrollbar/scrollbar.d.ts +2 -2
- package/dist/components/select/auto-complete.d.ts +2 -2
- package/dist/components/select/options.d.ts +2 -2
- package/dist/components/select/select-options.d.ts +2 -2
- package/dist/components/select/select.d.ts +2 -2
- package/dist/components/single-line-input/index.d.ts +1 -1
- package/dist/components/single-line-input/single-line-input.d.ts +2 -2
- package/dist/ui-react.es.js +1859 -1232
- package/dist/ui-react.umd.js +4 -4
- package/package.json +4 -4
- package/dist/components/common.types.d.ts +0 -6
|
@@ -12,5 +12,5 @@ interface ButtonProps extends ComponentPropsWithRef<'button'> {
|
|
|
12
12
|
shape?: 'rounded' | 'squared';
|
|
13
13
|
}
|
|
14
14
|
/** Primary UI component for user interaction */
|
|
15
|
-
declare const Button: FC<ButtonProps>;
|
|
16
|
-
export
|
|
15
|
+
export declare const Button: FC<ButtonProps>;
|
|
16
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './button';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './checkbox';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './multi-line-input';
|
|
@@ -3,5 +3,5 @@ interface MultiLineInputProps extends ComponentPropsWithRef<'textarea'> {
|
|
|
3
3
|
themeColor?: string;
|
|
4
4
|
onSubmit?: () => void;
|
|
5
5
|
}
|
|
6
|
-
declare const MultiLineInput: FC<MultiLineInputProps>;
|
|
7
|
-
export
|
|
6
|
+
export declare const MultiLineInput: FC<MultiLineInputProps>;
|
|
7
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './multi-select';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './quick-multi-select';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './quick-select';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './scrollbar';
|
|
@@ -2,5 +2,5 @@ import { ComponentPropsWithRef, FC } from 'react';
|
|
|
2
2
|
interface ScrollbarProps extends ComponentPropsWithRef<'div'> {
|
|
3
3
|
children: any;
|
|
4
4
|
}
|
|
5
|
-
declare const Scrollbar: FC<ScrollbarProps>;
|
|
6
|
-
export
|
|
5
|
+
export declare const Scrollbar: FC<ScrollbarProps>;
|
|
6
|
+
export {};
|
|
@@ -3,8 +3,7 @@ interface Props {
|
|
|
3
3
|
children: any;
|
|
4
4
|
setQuery: (query: any) => void;
|
|
5
5
|
}
|
|
6
|
-
declare const Options: FC<Props>;
|
|
7
|
-
export default Options;
|
|
6
|
+
export declare const Options: FC<Props>;
|
|
8
7
|
type OptionProps = {
|
|
9
8
|
children: React.ReactNode;
|
|
10
9
|
value: any;
|
|
@@ -13,3 +12,4 @@ type OptionProps = {
|
|
|
13
12
|
};
|
|
14
13
|
export type Ref = HTMLLIElement;
|
|
15
14
|
export declare const Option: React.ForwardRefExoticComponent<OptionProps & React.RefAttributes<HTMLLIElement>>;
|
|
15
|
+
export {};
|
|
@@ -3,8 +3,7 @@ interface Props {
|
|
|
3
3
|
children: any;
|
|
4
4
|
setQuery: (query: any) => void;
|
|
5
5
|
}
|
|
6
|
-
declare const SelectOptions: FC<Props>;
|
|
7
|
-
export default SelectOptions;
|
|
6
|
+
export declare const SelectOptions: FC<Props>;
|
|
8
7
|
type SelectOptionProps = {
|
|
9
8
|
children: React.ReactNode;
|
|
10
9
|
value: any;
|
|
@@ -13,3 +12,4 @@ type SelectOptionProps = {
|
|
|
13
12
|
};
|
|
14
13
|
export type SelectOptionRef = HTMLLIElement;
|
|
15
14
|
export declare const SelectOption: React.ForwardRefExoticComponent<SelectOptionProps & React.RefAttributes<HTMLLIElement>>;
|
|
15
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './single-line-input';
|
|
@@ -2,5 +2,5 @@ import { FC, ComponentPropsWithRef } from 'react';
|
|
|
2
2
|
interface SingleLineInputProps extends ComponentPropsWithRef<'input'> {
|
|
3
3
|
themeColor?: string;
|
|
4
4
|
}
|
|
5
|
-
declare const SingleLineInput: FC<SingleLineInputProps>;
|
|
6
|
-
export
|
|
5
|
+
export declare const SingleLineInput: FC<SingleLineInputProps>;
|
|
6
|
+
export {};
|