@oliasoft-open-source/react-ui-library 3.12.0-beta-18 → 3.12.0-beta-20

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +52 -51
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -3,6 +3,7 @@ import { CSSProperties } from 'react';
3
3
  import { DependencyList } from 'react';
4
4
  import { FocusEvent as FocusEvent_2 } from 'react';
5
5
  import { Id } from 'react-toastify';
6
+ import { JSX as JSX_2 } from 'react/jsx-runtime';
6
7
  import { KeyboardEvent as KeyboardEvent_2 } from 'react';
7
8
  import { MouseEvent as MouseEvent_2 } from 'react';
8
9
  import { MouseEventHandler } from 'react';
@@ -15,11 +16,11 @@ import { ReactPortal } from 'react';
15
16
  import { RefObject } from 'react';
16
17
  import { ToastContainer as Toaster } from 'react-toastify';
17
18
 
18
- export declare const Accordion: ({ heading, expanded, managed, bordered, padding, children, onClick, squareBottom, testId, }: IAccordionProps) => React_2.JSX.Element;
19
+ export declare const Accordion: ({ heading, expanded, managed, bordered, padding, children, onClick, squareBottom, testId, }: IAccordionProps) => JSX_2.Element;
19
20
 
20
- export declare const AccordionWithDefaultToggle: ({ heading, toggleLabel, onClickDefaultToggle, expanded, defaultEnabled, padding, children, }: IAccordionWithDefaultToggleProps) => React_2.JSX.Element;
21
+ export declare const AccordionWithDefaultToggle: ({ heading, toggleLabel, onClickDefaultToggle, expanded, defaultEnabled, padding, children, }: IAccordionWithDefaultToggleProps) => JSX_2.Element;
21
22
 
22
- export declare const Actions: (props: IActionProps) => React_2.JSX.Element;
23
+ export declare const Actions: (props: IActionProps) => JSX_2.Element;
23
24
 
24
25
  export declare enum Align {
25
26
  LEFT = "left",
@@ -27,7 +28,7 @@ export declare enum Align {
27
28
  CENTER = "center"
28
29
  }
29
30
 
30
- export declare const Badge: ({ children, color, title, dot, margin, small, }: IBadgeProps) => React_2.JSX.Element;
31
+ export declare const Badge: ({ children, color, title, dot, margin, small, }: IBadgeProps) => JSX_2.Element;
31
32
 
32
33
  declare type BaseElementProps = {
33
34
  label?: string;
@@ -36,7 +37,7 @@ declare type BaseElementProps = {
36
37
  testId?: string;
37
38
  };
38
39
 
39
- export declare const Breadcrumb: ({ links, small }: IBreadcrumbProps) => React_2.JSX.Element;
40
+ export declare const Breadcrumb: ({ links, small }: IBreadcrumbProps) => JSX_2.Element;
40
41
 
41
42
  export declare enum BreadcrumbLinkType {
42
43
  LABEL = "label",
@@ -44,7 +45,7 @@ export declare enum BreadcrumbLinkType {
44
45
  CUSTOM = "custom"
45
46
  }
46
47
 
47
- export declare const Button: ({ active, basic, colored, disabled, groupOrder, icon, label, loading, name, pill, round, small, styles, width, title, type, onClick, error, warning, testId, tooltip, inverted, }: IButtonProps) => React_2.JSX.Element;
48
+ export declare const Button: ({ active, basic, colored, disabled, groupOrder, icon, label, loading, name, pill, round, small, styles, width, title, type, onClick, error, warning, testId, tooltip, inverted, }: IButtonProps) => JSX_2.Element;
48
49
 
49
50
  declare type ButtonElement = BaseElementProps & {
50
51
  type: TopBarElementType.BUTTON;
@@ -52,7 +53,7 @@ declare type ButtonElement = BaseElementProps & {
52
53
  disabled?: boolean;
53
54
  };
54
55
 
55
- export declare const ButtonGroup: (props: IButtonGroupProps) => React_2.JSX.Element;
56
+ export declare const ButtonGroup: (props: IButtonGroupProps) => JSX_2.Element;
56
57
 
57
58
  export declare enum ButtonPosition {
58
59
  TOP = "top",
@@ -65,9 +66,9 @@ export declare enum ButtonType {
65
66
  RESET = "reset"
66
67
  }
67
68
 
68
- export declare const Card: ({ bordered, heading, children, margin, padding, raised, }: ICardProps) => React_2.JSX.Element;
69
+ export declare const Card: ({ bordered, heading, children, margin, padding, raised, }: ICardProps) => JSX_2.Element;
69
70
 
70
- export declare const CheckBox: ({ noMargin, dataix, isInTable, tabIndex, checked, name, key, label, disabled, small, onChange, testId, value, helpText, onClickHelp, }: ICheckBoxProps) => React_2.JSX.Element;
71
+ export declare const CheckBox: ({ noMargin, dataix, isInTable, tabIndex, checked, name, key, label, disabled, small, onChange, testId, value, helpText, onClickHelp, }: ICheckBoxProps) => JSX_2.Element;
71
72
 
72
73
  export declare enum Color {
73
74
  DANGER = "danger",
@@ -78,34 +79,34 @@ export declare enum Color {
78
79
  MUTED = "muted"
79
80
  }
80
81
 
81
- export declare const Column: ({ background, borderLeft, borderRight, children, flex, flexbox, padding, scroll, showScrollbar, spacing, width, widthMobile, widthTablet, testId, }: ILayoutColumnProps) => React_2.JSX.Element;
82
+ export declare const Column: ({ background, borderLeft, borderRight, children, flex, flexbox, padding, scroll, showScrollbar, spacing, width, widthMobile, widthTablet, testId, }: ILayoutColumnProps) => JSX_2.Element;
82
83
 
83
84
  declare type ComponentElement = {
84
85
  type: TopBarElementType.COMPONENT;
85
86
  component: ReactNode;
86
87
  };
87
88
 
88
- export declare const Dialog: ({ dialog }: IDialogProps) => React_2.JSX.Element;
89
+ export declare const Dialog: ({ dialog }: IDialogProps) => JSX_2.Element;
89
90
 
90
91
  export declare const DisabledContext: React_2.Context<boolean>;
91
92
 
92
- export declare const Divider: ({ children, margin, color, align, }: IDividerProps) => React_2.JSX.Element;
93
+ export declare const Divider: ({ children, margin, color, align, }: IDividerProps) => JSX_2.Element;
93
94
 
94
- export declare const Drawer: ({ background, fixed, open: openProp, setOpen: setOpenProp, right, width, closedWidth, shadow, top, button, buttonAnimate, buttonPosition, border, children, tabs, defaultTabIndex, activeTab: activeTabProp, setActiveTab: setActiveTabProp, testId, onResize, getActiveTab, onClose, onOpen, }: IDrawerProps) => React_2.JSX.Element;
95
+ export declare const Drawer: ({ background, fixed, open: openProp, setOpen: setOpenProp, right, width, closedWidth, shadow, top, button, buttonAnimate, buttonPosition, border, children, tabs, defaultTabIndex, activeTab: activeTabProp, setActiveTab: setActiveTabProp, testId, onResize, getActiveTab, onClose, onOpen, }: IDrawerProps) => JSX_2.Element;
95
96
 
96
- export declare const Empty: ({ width, height, text, children, }: IEmptyProps) => React_2.JSX.Element;
97
+ export declare const Empty: ({ width, height, text, children, }: IEmptyProps) => JSX_2.Element;
97
98
 
98
- export declare const Field: ({ label, labelLeft, labelWidth, children, helpText, helpTextMaxWidth, onClickHelp, lock, info, libraryIcon, testId, }: IFieldProps) => React_2.JSX.Element;
99
+ export declare const Field: ({ label, labelLeft, labelWidth, children, helpText, helpTextMaxWidth, onClickHelp, lock, info, libraryIcon, testId, }: IFieldProps) => JSX_2.Element;
99
100
 
100
101
  export declare const FileInput: ({ label, loading, placeholder, disabled, file, accept, multi, name, width, onChange, testId, }: IFileInputProps) => ReactElement;
101
102
 
102
103
  declare type FileReaderMethod = InputReaderMethods;
103
104
 
104
- export declare const Flex: ({ alignItems, justifyContent, direction, height, children, wrap, gap, }: ILayoutFlexProps) => React_2.JSX.Element;
105
+ export declare const Flex: ({ alignItems, justifyContent, direction, height, children, wrap, gap, }: ILayoutFlexProps) => JSX_2.Element;
105
106
 
106
- export declare const FormRow: ({ children }: ILayoutFormRowProps) => React_2.JSX.Element;
107
+ export declare const FormRow: ({ children }: ILayoutFormRowProps) => JSX_2.Element;
107
108
 
108
- export declare const Grid: ({ rows, columns, columnsTablet, columnsMobile, gap, height, children, }: ILayoutGridProps) => React_2.JSX.Element;
109
+ export declare const Grid: ({ rows, columns, columnsTablet, columnsMobile, gap, height, children, }: ILayoutGridProps) => JSX_2.Element;
109
110
 
110
111
  export declare enum GroupOrder {
111
112
  FIRST = "first",
@@ -113,9 +114,9 @@ export declare enum GroupOrder {
113
114
  LAST = "last"
114
115
  }
115
116
 
116
- export declare const Heading: ({ children, helpText, onClick, onClickHelp, onIconClick, icon, libraryIcon, marginBottom, top, testId, }: IHeadingProps) => React_2.JSX.Element;
117
+ export declare const Heading: ({ children, helpText, onClick, onClickHelp, onIconClick, icon, libraryIcon, marginBottom, top, testId, }: IHeadingProps) => JSX_2.Element;
117
118
 
118
- export declare const HelpIcon: ({ text, onClick, icon, active, maxWidth, testId, }: IHelpIconProps) => React_2.JSX.Element;
119
+ export declare const HelpIcon: ({ text, onClick, icon, active, maxWidth, testId, }: IHelpIconProps) => JSX_2.Element;
119
120
 
120
121
  declare interface IAccordionBaseProps {
121
122
  heading: ReactNode;
@@ -257,7 +258,7 @@ declare interface ICheckBoxProps {
257
258
  * - react-icons
258
259
  * - SVG (for special cases)
259
260
  */
260
- export declare const Icon: ({ icon, onClick, clickable, color, size, testId, }: IconProps) => React_2.JSX.Element;
261
+ export declare const Icon: ({ icon, onClick, clickable, color, size, testId, }: IconProps) => JSX_2.Element;
261
262
 
262
263
  declare interface IconProps {
263
264
  icon: ReactNode | string;
@@ -1265,7 +1266,7 @@ declare interface ITreeProps {
1265
1266
  treeRef?: RefObject<any>;
1266
1267
  }
1267
1268
 
1268
- export declare const Label: ({ label, width, helpText, helpTextMaxWidth, onClickHelp, lock, info, libraryIcon, labelLeft, }: ILabelProps) => React_2.JSX.Element;
1269
+ export declare const Label: ({ label, width, helpText, helpTextMaxWidth, onClickHelp, lock, info, libraryIcon, labelLeft, }: ILabelProps) => JSX_2.Element;
1269
1270
 
1270
1271
  declare type LinkElement = BaseElementProps & {
1271
1272
  type: TopBarElementType.LINK;
@@ -1274,15 +1275,15 @@ declare type LinkElement = BaseElementProps & {
1274
1275
  disabled?: boolean;
1275
1276
  };
1276
1277
 
1277
- export declare const List: ({ list, bordered, expanding, narrow, toggleNarrow, onToggleNarrow, invokeEditOnRowClick, noHeader, stickyHeader, draggable, onListReorder, marginBottom, height, testId, scrollDetails, }: IListProps) => React_2.JSX.Element;
1278
+ export declare const List: ({ list, bordered, expanding, narrow, toggleNarrow, onToggleNarrow, invokeEditOnRowClick, noHeader, stickyHeader, draggable, onListReorder, marginBottom, height, testId, scrollDetails, }: IListProps) => JSX_2.Element;
1278
1279
 
1279
1280
  export declare const ListHeading: React_2.ForwardRefExoticComponent<IListHeadingProps & React_2.RefAttributes<HTMLDivElement>>;
1280
1281
 
1281
1282
  export declare const ListSubheading: React_2.ForwardRefExoticComponent<IListSubheadingProps & React_2.RefAttributes<(HTMLDivElement | null)[]>>;
1282
1283
 
1283
- export declare const Loader: ({ width, height, text, details, fullViewPortSize, cover, children, theme, testId, }: ILoaderProps) => React_2.JSX.Element;
1284
+ export declare const Loader: ({ width, height, text, details, fullViewPortSize, cover, children, theme, testId, }: ILoaderProps) => JSX_2.Element;
1284
1285
 
1285
- export declare const Menu: (props: IMenuProps) => React_2.JSX.Element;
1286
+ export declare const Menu: (props: IMenuProps) => JSX_2.Element;
1286
1287
 
1287
1288
  export declare enum MenuCarat {
1288
1289
  FALSE = "false",
@@ -1302,7 +1303,7 @@ export declare enum MenuType {
1302
1303
  MENU = "Menu"
1303
1304
  }
1304
1305
 
1305
- export declare const Message: ({ message }: IMessageProps) => React_2.JSX.Element;
1306
+ export declare const Message: ({ message }: IMessageProps) => JSX_2.Element;
1306
1307
 
1307
1308
  export declare enum MessageType {
1308
1309
  INFO = "Info",
@@ -1311,9 +1312,9 @@ export declare enum MessageType {
1311
1312
  ERROR = "Error"
1312
1313
  }
1313
1314
 
1314
- export declare const Modal: ({ children, visible, centered, width, }: IModalProps) => React_2.JSX.Element;
1315
+ export declare const Modal: ({ children, visible, centered, width, }: IModalProps) => JSX_2.Element;
1315
1316
 
1316
- export declare const NativeSelect: ({ disabled, error, warning, tooltip, options, onChange, onFocus, onBlur, right, small, tabIndex, selectedOption, width, groupOrder, testId, isInTable, clearable, placeholder, hasNonExistentValue, maxTooltipWidth, borderRadius, }: NativeSelectProps) => React_2.JSX.Element;
1317
+ export declare const NativeSelect: ({ disabled, error, warning, tooltip, options, onChange, onFocus, onBlur, right, small, tabIndex, selectedOption, width, groupOrder, testId, isInTable, clearable, placeholder, hasNonExistentValue, maxTooltipWidth, borderRadius, }: NativeSelectProps) => JSX_2.Element;
1317
1318
 
1318
1319
  declare interface NativeSelectProps {
1319
1320
  borderRadius?: string | number;
@@ -1341,21 +1342,21 @@ declare interface NativeSelectProps {
1341
1342
  maxTooltipWidth?: string | number;
1342
1343
  }
1343
1344
 
1344
- export declare const NumberInput: ({ name, placeholder, disabled, error, left, small, width, value, onChange, onFocus, tabIndex, testId, tooltip, warning, validationCallback, allowEmpty, isInTable, groupOrder, }: INumberInputProps) => React_2.JSX.Element;
1345
+ export declare const NumberInput: ({ name, placeholder, disabled, error, left, small, width, value, onChange, onFocus, tabIndex, testId, tooltip, warning, validationCallback, allowEmpty, isInTable, groupOrder, }: INumberInputProps) => JSX_2.Element;
1345
1346
 
1346
1347
  export declare const OptionDropdown: ({ name, label, options, onChange, showHeader, maxHeight, }: IOptionDropdownProps) => ReactElement;
1347
1348
 
1348
- export declare const Page: ({ children, left, padding: paddingProp, scroll, top, }: ILayoutPageProps) => React_2.JSX.Element;
1349
+ export declare const Page: ({ children, left, padding: paddingProp, scroll, top, }: ILayoutPageProps) => JSX_2.Element;
1349
1350
 
1350
- export declare const Pagination: ({ pagination }: IPaginationProps) => React_2.JSX.Element;
1351
+ export declare const Pagination: ({ pagination }: IPaginationProps) => JSX_2.Element;
1351
1352
 
1352
- export declare const PopConfirm: ({ children, placement, closeOnOutsideClick, fullWidth, title, cancelText, onClickCancel, okText, onClickOk, }: IPopConfirmProps) => React_2.JSX.Element;
1353
+ export declare const PopConfirm: ({ children, placement, closeOnOutsideClick, fullWidth, title, cancelText, onClickCancel, okText, onClickOk, }: IPopConfirmProps) => JSX_2.Element;
1353
1354
 
1354
- export declare const Popover: ({ children, content, placement, closeOnOutsideClick, fullWidth, showCloseButton, testId, disabled, overflowContainer, }: IPopoverProps) => React_2.JSX.Element;
1355
+ export declare const Popover: ({ children, content, placement, closeOnOutsideClick, fullWidth, showCloseButton, testId, disabled, overflowContainer, }: IPopoverProps) => JSX_2.Element;
1355
1356
 
1356
1357
  export declare const Portal: ({ id, children }: IPortalProps) => ReactPortal | null;
1357
1358
 
1358
- export declare const PrintHeader: ({ logo, alt, logoWidth, }: PrintHeaderProps) => React_2.JSX.Element;
1359
+ export declare const PrintHeader: ({ logo, alt, logoWidth, }: PrintHeaderProps) => JSX_2.Element;
1359
1360
 
1360
1361
  declare interface PrintHeaderProps {
1361
1362
  logo: string;
@@ -1363,41 +1364,41 @@ declare interface PrintHeaderProps {
1363
1364
  alt: string;
1364
1365
  }
1365
1366
 
1366
- export declare const ProgressBar: ({ width, inverted, colored, showProgressColors, percentage, noLabel, }: IProgressBarProps) => React_2.JSX.Element;
1367
+ export declare const ProgressBar: ({ width, inverted, colored, showProgressColors, percentage, noLabel, }: IProgressBarProps) => JSX_2.Element;
1367
1368
 
1368
- export declare const RadioButton: ({ name, label: rawLabel, options: rawOptions, value: rawValue, onChange, disabled, small, noMargin, onClick, inline, mainLabel, radioButtonsData, classForContainer, }: IRadioButtonProps) => React_2.JSX.Element;
1369
+ export declare const RadioButton: ({ name, label: rawLabel, options: rawOptions, value: rawValue, onChange, disabled, small, noMargin, onClick, inline, mainLabel, radioButtonsData, classForContainer, }: IRadioButtonProps) => JSX_2.Element;
1369
1370
 
1370
1371
  export declare const readFile: (file?: Blob, method?: FileReaderMethod) => Promise<string | ArrayBuffer | null>;
1371
1372
 
1372
1373
  export declare const RichTextInput: React_2.ForwardRefExoticComponent<IRichTextInputProps & React_2.RefAttributes<any>>;
1373
1374
 
1374
- export declare const Row: ({ alignItems, justifyContent, children, flex, height, marginBottom, marginTop, spacing, wrap, testId, }: ILayoutRowProps) => React_2.JSX.Element;
1375
+ export declare const Row: ({ alignItems, justifyContent, children, flex, height, marginBottom, marginTop, spacing, wrap, testId, }: ILayoutRowProps) => JSX_2.Element;
1375
1376
 
1376
- export declare const Select: (props: ISelectProps) => React_2.JSX.Element;
1377
+ export declare const Select: (props: ISelectProps) => JSX_2.Element;
1377
1378
 
1378
- export declare const SideBar: React_2.MemoExoticComponent<({ options, startOpen, onShiftClickToggleOpen, top }: ISideBarProps) => React_2.JSX.Element>;
1379
+ export declare const SideBar: React_2.MemoExoticComponent<({ options, startOpen, onShiftClickToggleOpen, top }: ISideBarProps) => JSX_2.Element>;
1379
1380
 
1380
- export declare const Slider: ({ name, label, width, labelWidth, value, min, max, step, marks, showArrows, showTooltip, tooltipFormatter, disabled, range, small, vertical, onChange, }: ISliderProps) => React_2.JSX.Element;
1381
+ export declare const Slider: ({ name, label, width, labelWidth, value, min, max, step, marks, showArrows, showTooltip, tooltipFormatter, disabled, range, small, vertical, onChange, }: ISliderProps) => JSX_2.Element;
1381
1382
 
1382
- export declare const Spacer: ({ height, width, flex, }: ILayoutSpacerProps) => React_2.JSX.Element;
1383
+ export declare const Spacer: ({ height, width, flex, }: ILayoutSpacerProps) => JSX_2.Element;
1383
1384
 
1384
- export declare const Spinner: ({ small, colored, dark, tiny, }: ISpinnerProps) => React_2.JSX.Element;
1385
+ export declare const Spinner: ({ small, colored, dark, tiny, }: ISpinnerProps) => JSX_2.Element;
1385
1386
 
1386
- export declare const Table: (props: ITableProps) => React_2.JSX.Element;
1387
+ export declare const Table: (props: ITableProps) => JSX_2.Element;
1387
1388
 
1388
- export declare const Tabs: ({ name, options: rawOptions, children, value: rawValue, onChange, padding, margin, contentPadding, onChangeTab, activeTabIndex: rawActiveTabIndex, tabs: tabsConfig, testId, }: ITabsProps) => React_2.JSX.Element | null;
1389
+ export declare const Tabs: ({ name, options: rawOptions, children, value: rawValue, onChange, padding, margin, contentPadding, onChangeTab, activeTabIndex: rawActiveTabIndex, tabs: tabsConfig, testId, }: ITabsProps) => JSX_2.Element | null;
1389
1390
 
1390
1391
  declare type TCellType = {
1391
1392
  colSpan?: number;
1392
1393
  value: string;
1393
1394
  };
1394
1395
 
1395
- declare const Text_2: ({ children, bold, center, error, faint, link, muted, onClick, small, success, warning, }: ITextProps) => React_2.JSX.Element;
1396
+ declare const Text_2: ({ children, bold, center, error, faint, link, muted, onClick, small, success, warning, }: ITextProps) => JSX_2.Element;
1396
1397
  export { Text_2 as Text }
1397
1398
 
1398
- export declare const TextArea: ({ name, value, placeholder, cols, rows, disabled, onChange, onKeyPress, onFocus, onBlur, tabIndex, error, warning, tooltip, maxTooltipWidth, resize, monospace, testId, }: ITextAreaProps) => React_2.JSX.Element;
1399
+ export declare const TextArea: ({ name, value, placeholder, cols, rows, disabled, onChange, onKeyPress, onFocus, onBlur, tabIndex, error, warning, tooltip, maxTooltipWidth, resize, monospace, testId, }: ITextAreaProps) => JSX_2.Element;
1399
1400
 
1400
- export declare const TextLink: ({ children, href, target, testId, onClick, }: ITextLinkProps) => React_2.JSX.Element;
1401
+ export declare const TextLink: ({ children, href, target, testId, onClick, }: ITextLinkProps) => JSX_2.Element;
1401
1402
 
1402
1403
  export declare enum Theme {
1403
1404
  DARK = "dark",
@@ -1410,11 +1411,11 @@ export declare const toast: ({ id, message, autoClose, onClose, }: IToastProps)
1410
1411
 
1411
1412
  export { Toaster }
1412
1413
 
1413
- export declare const Toggle: ({ name, label, checked, disabled, small, onChange, noMargin, testId, helpText, onClickHelp, }: IToggleProps) => React_2.JSX.Element;
1414
+ export declare const Toggle: ({ name, label, checked, disabled, small, onChange, noMargin, testId, helpText, onClickHelp, }: IToggleProps) => JSX_2.Element;
1414
1415
 
1415
- export declare const Tooltip: ({ children, text, error, placement, possiblePlacements, enabled, warning, maxWidth, triggerOffset, fontSize, padding, display, flex, forceOpen, }: ITooltipProps) => React_2.JSX.Element;
1416
+ export declare const Tooltip: ({ children, text, error, placement, possiblePlacements, enabled, warning, maxWidth, triggerOffset, fontSize, padding, display, flex, forceOpen, }: ITooltipProps) => JSX_2.Element;
1416
1417
 
1417
- export declare const TopBar: ({ title, content, contentRight, warning, height, fixedPosition, }: ITopBarProps) => React_2.JSX.Element;
1418
+ export declare const TopBar: ({ title, content, contentRight, warning, height, fixedPosition, }: ITopBarProps) => JSX_2.Element;
1418
1419
 
1419
1420
  declare enum TopBarElementType {
1420
1421
  LINK = "Link",
@@ -1423,7 +1424,7 @@ declare enum TopBarElementType {
1423
1424
  COMPONENT = "Component"
1424
1425
  }
1425
1426
 
1426
- export declare const Tree: ({ list, draggable, onListReorder, onChangeOpen, testId, isInitialOpen, treeRef, }: ITreeProps) => React_2.JSX.Element;
1427
+ export declare const Tree: ({ list, draggable, onListReorder, onChangeOpen, testId, isInitialOpen, treeRef, }: ITreeProps) => JSX_2.Element;
1427
1428
 
1428
1429
  export declare enum TriggerType {
1429
1430
  TEXT = "Text",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oliasoft-open-source/react-ui-library",
3
- "version": "3.12.0-beta-18",
3
+ "version": "3.12.0-beta-20",
4
4
  "description": "Reusable UI components for React projects",
5
5
  "homepage": "https://oliasoft-open-source.gitlab.io/react-ui-library",
6
6
  "bugs": {