@apexcura/ui-components 0.0.16-Beta1045 → 0.0.16-Beta1047

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,9 +1,9 @@
1
- import { UploadFile } from 'antd';
1
+ import { InputRef, UploadFile } from 'antd';
2
2
  import { SizeType } from 'antd/es/config-provider/SizeContext';
3
3
  import { RadioGroupButtonStyle } from 'antd/es/radio';
4
4
  import { TabsPosition } from 'antd/es/tabs';
5
5
  import { TooltipPlacement } from 'antd/es/tooltip';
6
- import React, { CSSProperties, JSXElementConstructor, ReactElement, ReactNode } from 'react';
6
+ import React, { CSSProperties, JSXElementConstructor, LegacyRef, ReactElement, ReactNode } from 'react';
7
7
  type PaginationType = {
8
8
  name?: string;
9
9
  page?: number;
@@ -92,6 +92,7 @@ export type ElementType = {
92
92
  value: string;
93
93
  search?: string;
94
94
  };
95
+ ref?: LegacyRef<InputRef> | undefined;
95
96
  disabled?: boolean;
96
97
  prefix?: React.ReactNode;
97
98
  type?: string;
@@ -147,7 +148,7 @@ export type ElementType = {
147
148
  onChange?: (value: string | number | boolean | object | object[] | undefined) => void;
148
149
  onClick?: (value: string | number | boolean | object | object[] | undefined) => void;
149
150
  dropDownOptions?: (number | string | boolean | object | null | undefined | (() => void))[];
150
- id?: number;
151
+ id?: number | string;
151
152
  thead?: {
152
153
  width?: number;
153
154
  _id?: string;