pixel-priya 1.2.91 → 1.2.93
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/lib/ComponentProps/TreeNodeProps.d.ts +1 -0
- package/lib/components/AutoTruncateText/AutoTruncateText.d.ts +4 -0
- package/lib/components/AutoTruncateText/AutoTruncateText.js +41 -0
- package/lib/components/AutoTruncateText/AutoTruncateText.js.map +1 -0
- package/lib/components/AutoTruncateText/index.d.ts +1 -0
- package/lib/components/AutoTruncateText/index.js +2 -0
- package/lib/components/AutoTruncateText/index.js.map +1 -0
- package/lib/components/AutoTruncateText/resizeObserverService.d.ts +7 -0
- package/lib/components/AutoTruncateText/resizeObserverService.js +25 -0
- package/lib/components/AutoTruncateText/resizeObserverService.js.map +1 -0
- package/lib/components/AutoTruncateText/types.d.ts +8 -0
- package/lib/components/AutoTruncateText/types.js +2 -0
- package/lib/components/AutoTruncateText/types.js.map +1 -0
- package/lib/components/AutoTruncateText/useResizeSignal.d.ts +5 -0
- package/lib/components/AutoTruncateText/useResizeSignal.js +18 -0
- package/lib/components/AutoTruncateText/useResizeSignal.js.map +1 -0
- package/lib/components/BrowserTabs/BrowserTabs.d.ts +1 -1
- package/lib/components/BrowserTabs/BrowserTabs.js +10 -6
- package/lib/components/BrowserTabs/BrowserTabs.js.map +1 -1
- package/lib/components/BrowserTabs/types.d.ts +4 -0
- package/lib/components/Drawer/Drawer.js +5 -2
- package/lib/components/Drawer/Drawer.js.map +1 -1
- package/lib/components/Drawer/Types.d.ts +1 -0
- package/lib/components/EditLabel/EditLabel.d.ts +1 -1
- package/lib/components/EditLabel/EditLabel.js +5 -3
- package/lib/components/EditLabel/EditLabel.js.map +1 -1
- package/lib/components/EditLabel/types.d.ts +1 -0
- package/lib/components/Excel/Data.d.ts +28 -1
- package/lib/components/Excel/Data.js +28 -0
- package/lib/components/Excel/Data.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/EditableCell.js +20 -22
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/EditableCell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducer.js +33 -9
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducer.js.map +1 -1
- package/lib/components/Icon/iconList.js +22 -0
- package/lib/components/Icon/iconList.js.map +1 -1
- package/lib/components/MenuOption/MenuOption.js +4 -24
- package/lib/components/MenuOption/MenuOption.js.map +1 -1
- package/lib/components/TableTreeFn/Components/TableBody.d.ts +1 -2
- package/lib/components/TableTreeFn/Components/TableBody.js +11 -41
- package/lib/components/TableTreeFn/Components/TableBody.js.map +1 -1
- package/lib/components/TableTreeFn/Components/TableCell.d.ts +1 -1
- package/lib/components/TableTreeFn/Components/TableCell.js +2 -5
- package/lib/components/TableTreeFn/Components/TableCell.js.map +1 -1
- package/lib/components/TableTreeFn/Components/TableHead.d.ts +1 -1
- package/lib/components/TableTreeFn/Components/TableHead.js +9 -15
- package/lib/components/TableTreeFn/Components/TableHead.js.map +1 -1
- package/lib/components/TableTreeFn/Components/TableRow.d.ts +1 -1
- package/lib/components/TableTreeFn/Components/TableRow.js +3 -10
- package/lib/components/TableTreeFn/Components/TableRow.js.map +1 -1
- package/lib/components/TableTreeFn/TableTreeFn.js +10 -14
- package/lib/components/TableTreeFn/TableTreeFn.js.map +1 -1
- package/lib/components/TableTreeFn/types.d.ts +2 -16
- package/lib/components/TooltipService/TooltipService.d.ts +4 -0
- package/lib/components/TooltipService/TooltipService.js +92 -0
- package/lib/components/TooltipService/TooltipService.js.map +1 -0
- package/lib/components/TooltipService/index.d.ts +1 -0
- package/lib/components/TooltipService/index.js +2 -0
- package/lib/components/TooltipService/index.js.map +1 -0
- package/lib/components/ZoomControl/ZoomControl.d.ts +5 -0
- package/lib/components/ZoomControl/ZoomControl.js +22 -0
- package/lib/components/ZoomControl/ZoomControl.js.map +1 -0
- package/lib/components/ZoomControl/index.d.ts +1 -0
- package/lib/components/ZoomControl/index.js +2 -0
- package/lib/components/ZoomControl/index.js.map +1 -0
- package/lib/components/ZoomControl/types.d.ts +8 -0
- package/lib/components/ZoomControl/types.js +2 -0
- package/lib/components/ZoomControl/types.js.map +1 -0
- package/lib/index.d.ts +35 -9
- package/lib/index.js +17 -9
- package/lib/index.js.map +1 -1
- package/lib/styles.css +1 -1
- package/lib/styles.css.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utils/getTreeDetails/getTreeDetails.d.ts +1 -1
- package/lib/utils/getTreeDetails/getTreeDetails.js +130 -62
- package/lib/utils/getTreeDetails/getTreeDetails.js.map +1 -1
- package/package.json +3 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
1
|
+
import { ReactNode, CSSProperties } from 'react';
|
|
2
2
|
import { TreeNodeProps } from '../../ComponentProps/TreeNodeProps';
|
|
3
3
|
interface NewNode {
|
|
4
4
|
sourceId?: string;
|
|
@@ -32,7 +32,6 @@ export interface TableCellProps {
|
|
|
32
32
|
isExpanding?: boolean;
|
|
33
33
|
columnTextColor?: string;
|
|
34
34
|
hideOnDisable?: boolean;
|
|
35
|
-
scriptLengthTruncate: number;
|
|
36
35
|
addModuleInputWidth?: number;
|
|
37
36
|
addModuleSelectWidth?: number;
|
|
38
37
|
disableEditLabelConfirmIcon?: boolean;
|
|
@@ -56,10 +55,7 @@ export interface TableHeadProps {
|
|
|
56
55
|
onCheckBoxChange: (e: any, node: string[] | any) => void;
|
|
57
56
|
hideOnDisable?: boolean;
|
|
58
57
|
transparentHeader?: boolean;
|
|
59
|
-
scriptLengthTruncate?: number;
|
|
60
58
|
showHeader?: boolean;
|
|
61
|
-
rootNameWidth?: number;
|
|
62
|
-
rootNameHoveredWidth?: number;
|
|
63
59
|
}
|
|
64
60
|
export interface TableBodyProps {
|
|
65
61
|
flattenedTreeData: any[];
|
|
@@ -82,14 +78,11 @@ export interface TableBodyProps {
|
|
|
82
78
|
rootNode?: TreeNodeProps;
|
|
83
79
|
selectedNode?: string;
|
|
84
80
|
hideOnDisable?: boolean;
|
|
85
|
-
scriptLengthTruncate: number;
|
|
86
81
|
addModuleInputWidth?: number;
|
|
87
82
|
addModuleSelectWidth?: number;
|
|
88
83
|
disableEditLabelConfirmIcon?: boolean;
|
|
89
84
|
isEditable?: boolean;
|
|
90
85
|
setIsEditable?: (id: string | null) => void;
|
|
91
|
-
onHover?: (rowId: string | null) => void;
|
|
92
|
-
onHoverOut?: (rowId: string | null) => void;
|
|
93
86
|
}
|
|
94
87
|
export interface TableRowProps {
|
|
95
88
|
node: any;
|
|
@@ -107,14 +100,12 @@ export interface TableRowProps {
|
|
|
107
100
|
isExpanding?: boolean;
|
|
108
101
|
selectedNode?: string;
|
|
109
102
|
hideOnDisable?: boolean;
|
|
110
|
-
scriptLengthTruncate: number;
|
|
111
103
|
addModuleInputWidth?: number;
|
|
112
104
|
addModuleSelectWidth?: number;
|
|
113
105
|
disableEditLabelConfirmIcon?: boolean;
|
|
114
106
|
isEditable?: boolean;
|
|
115
107
|
setIsEditable?: (id: string | null) => void;
|
|
116
|
-
|
|
117
|
-
rowTop: number;
|
|
108
|
+
style?: CSSProperties;
|
|
118
109
|
}
|
|
119
110
|
export interface Column {
|
|
120
111
|
name: string | JSX;
|
|
@@ -156,7 +147,6 @@ export interface TreeTableProps {
|
|
|
156
147
|
tableHeaderBgColor?: string;
|
|
157
148
|
hideOnDisable?: boolean;
|
|
158
149
|
freezeColumns?: number;
|
|
159
|
-
scriptLengthTruncate?: number;
|
|
160
150
|
addModuleInputWidth?: number;
|
|
161
151
|
addModuleSelectWidth?: number;
|
|
162
152
|
onScroll?: () => void;
|
|
@@ -167,10 +157,6 @@ export interface TreeTableProps {
|
|
|
167
157
|
handleRemoveNavigateTreeNode?: () => void;
|
|
168
158
|
scrollThreshold?: number;
|
|
169
159
|
showHeader?: boolean;
|
|
170
|
-
onHover?: (rowId: string | null) => void;
|
|
171
|
-
onHoverOut?: (rowId: string | null) => void;
|
|
172
|
-
rootNameWidth?: number;
|
|
173
|
-
rootNameHoveredWidth?: number;
|
|
174
160
|
}
|
|
175
161
|
type OptionValue = any;
|
|
176
162
|
export interface Option {
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { useEffect } from 'react';
|
|
2
|
+
import { delegate } from 'tippy.js';
|
|
3
|
+
import 'tippy.js/dist/tippy.css';
|
|
4
|
+
import './TooltipService.scss';
|
|
5
|
+
const VALID_PLACEMENTS = new Set([
|
|
6
|
+
'auto',
|
|
7
|
+
'auto-start',
|
|
8
|
+
'auto-end',
|
|
9
|
+
'top',
|
|
10
|
+
'top-start',
|
|
11
|
+
'top-end',
|
|
12
|
+
'bottom',
|
|
13
|
+
'bottom-start',
|
|
14
|
+
'bottom-end',
|
|
15
|
+
'right',
|
|
16
|
+
'right-start',
|
|
17
|
+
'right-end',
|
|
18
|
+
'left',
|
|
19
|
+
'left-start',
|
|
20
|
+
'left-end',
|
|
21
|
+
]);
|
|
22
|
+
const TooltipService = () => {
|
|
23
|
+
useEffect(() => {
|
|
24
|
+
const instance = delegate(document.body, {
|
|
25
|
+
target: '[data-tooltip], [data-tooltip-id]',
|
|
26
|
+
appendTo: () => document.body,
|
|
27
|
+
arrow: false,
|
|
28
|
+
placement: 'bottom',
|
|
29
|
+
maxWidth: '90vw',
|
|
30
|
+
animation: true,
|
|
31
|
+
interactive: true,
|
|
32
|
+
theme: 'ff-global-tooltip',
|
|
33
|
+
content(reference) {
|
|
34
|
+
const contentNode = document.createElement('div');
|
|
35
|
+
// Accept JSX
|
|
36
|
+
const templateId = reference.getAttribute('data-tooltip-id');
|
|
37
|
+
if (templateId) {
|
|
38
|
+
const templateEl = document.getElementById(templateId);
|
|
39
|
+
if (templateEl) {
|
|
40
|
+
contentNode.innerHTML = templateEl.innerHTML;
|
|
41
|
+
return contentNode;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
// for direct tooltip
|
|
45
|
+
const text = reference.getAttribute('data-tooltip') || '';
|
|
46
|
+
if (!text)
|
|
47
|
+
return '';
|
|
48
|
+
if (text.startsWith('<') && text.endsWith('>')) {
|
|
49
|
+
contentNode.innerHTML = text;
|
|
50
|
+
}
|
|
51
|
+
else {
|
|
52
|
+
contentNode.style.whiteSpace = 'pre-wrap';
|
|
53
|
+
contentNode.style.wordBreak = 'break-word';
|
|
54
|
+
contentNode.textContent = text;
|
|
55
|
+
}
|
|
56
|
+
return contentNode;
|
|
57
|
+
},
|
|
58
|
+
onShow(tippyInstance) {
|
|
59
|
+
// if there's no text content at all will not show the Tooltip
|
|
60
|
+
const { reference } = tippyInstance;
|
|
61
|
+
if (!reference.hasAttribute('data-tooltip') &&
|
|
62
|
+
!reference.hasAttribute('data-tooltip-id')) {
|
|
63
|
+
return false;
|
|
64
|
+
}
|
|
65
|
+
// This is specific tooltip attributefor interactive
|
|
66
|
+
const isInteractive = tippyInstance.reference.hasAttribute('data-tooltip-interactive');
|
|
67
|
+
// placement attribute for tooltip
|
|
68
|
+
const rawPlacement = tippyInstance.reference.getAttribute('data-tooltip-placement');
|
|
69
|
+
const normalizedPlacement = rawPlacement?.trim().toLowerCase();
|
|
70
|
+
const placement = normalizedPlacement && VALID_PLACEMENTS.has(normalizedPlacement)
|
|
71
|
+
? normalizedPlacement
|
|
72
|
+
: 'bottom';
|
|
73
|
+
// Dynamically apply the property before the tooltip shows
|
|
74
|
+
tippyInstance.setProps({
|
|
75
|
+
interactive: isInteractive,
|
|
76
|
+
placement: placement,
|
|
77
|
+
});
|
|
78
|
+
},
|
|
79
|
+
});
|
|
80
|
+
return () => {
|
|
81
|
+
if (Array.isArray(instance)) {
|
|
82
|
+
instance.forEach((i) => i.destroy());
|
|
83
|
+
}
|
|
84
|
+
else {
|
|
85
|
+
instance.destroy();
|
|
86
|
+
}
|
|
87
|
+
};
|
|
88
|
+
}, []);
|
|
89
|
+
return null;
|
|
90
|
+
};
|
|
91
|
+
export default TooltipService;
|
|
92
|
+
//# sourceMappingURL=TooltipService.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TooltipService.js","sourceRoot":"","sources":["../../../src/components/TooltipService/TooltipService.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAElC,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAEpC,OAAO,yBAAyB,CAAC;AACjC,OAAO,uBAAuB,CAAC;AAE/B,MAAM,gBAAgB,GAAG,IAAI,GAAG,CAAqB;IACnD,MAAM;IACN,YAAY;IACZ,UAAU;IACV,KAAK;IACL,WAAW;IACX,SAAS;IACT,QAAQ;IACR,cAAc;IACd,YAAY;IACZ,OAAO;IACP,aAAa;IACb,WAAW;IACX,MAAM;IACN,YAAY;IACZ,UAAU;CACX,CAAC,CAAC;AAEH,MAAM,cAAc,GAAG,GAAG,EAAE;IAC1B,SAAS,CAAC,GAAG,EAAE;QACb,MAAM,QAAQ,GAAwC,QAAQ,CAC5D,QAAQ,CAAC,IAAI,EACb;YACE,MAAM,EAAE,mCAAmC;YAC3C,QAAQ,EAAE,GAAG,EAAE,CAAC,QAAQ,CAAC,IAAI;YAC7B,KAAK,EAAE,KAAK;YACZ,SAAS,EAAE,QAAQ;YACnB,QAAQ,EAAE,MAAM;YAChB,SAAS,EAAE,IAAI;YACf,WAAW,EAAE,IAAI;YACjB,KAAK,EAAE,mBAAmB;YAC1B,OAAO,CAAC,SAAS;gBACf,MAAM,WAAW,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;gBAElD,aAAa;gBACb,MAAM,UAAU,GAAG,SAAS,CAAC,YAAY,CAAC,iBAAiB,CAAC,CAAC;gBAC7D,IAAI,UAAU,EAAE,CAAC;oBACf,MAAM,UAAU,GAAG,QAAQ,CAAC,cAAc,CAAC,UAAU,CAAC,CAAC;oBACvD,IAAI,UAAU,EAAE,CAAC;wBACf,WAAW,CAAC,SAAS,GAAG,UAAU,CAAC,SAAS,CAAC;wBAC7C,OAAO,WAAW,CAAC;oBACrB,CAAC;gBACH,CAAC;gBAED,qBAAqB;gBACrB,MAAM,IAAI,GAAG,SAAS,CAAC,YAAY,CAAC,cAAc,CAAC,IAAI,EAAE,CAAC;gBAC1D,IAAI,CAAC,IAAI;oBAAE,OAAO,EAAE,CAAC;gBAErB,IAAI,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC;oBAC/C,WAAW,CAAC,SAAS,GAAG,IAAI,CAAC;gBAC/B,CAAC;qBAAM,CAAC;oBACN,WAAW,CAAC,KAAK,CAAC,UAAU,GAAG,UAAU,CAAC;oBAC1C,WAAW,CAAC,KAAK,CAAC,SAAS,GAAG,YAAY,CAAC;oBAC3C,WAAW,CAAC,WAAW,GAAG,IAAI,CAAC;gBACjC,CAAC;gBACD,OAAO,WAAW,CAAC;YACrB,CAAC;YACD,MAAM,CAAC,aAAa;gBAClB,8DAA8D;gBAC9D,MAAM,EAAE,SAAS,EAAE,GAAG,aAAa,CAAC;gBACpC,IACE,CAAC,SAAS,CAAC,YAAY,CAAC,cAAc,CAAC;oBACvC,CAAC,SAAS,CAAC,YAAY,CAAC,iBAAiB,CAAC,EAC1C,CAAC;oBACD,OAAO,KAAK,CAAC;gBACf,CAAC;gBAED,qDAAqD;gBACrD,MAAM,aAAa,GAAG,aAAa,CAAC,SAAS,CAAC,YAAY,CACxD,0BAA0B,CAC3B,CAAC;gBAEF,mCAAmC;gBACnC,MAAM,YAAY,GAAG,aAAa,CAAC,SAAS,CAAC,YAAY,CACvD,wBAAwB,CACzB,CAAC;gBACF,MAAM,mBAAmB,GACvB,YAAY,EAAE,IAAI,EAAE,CAAC,WAAW,EAA+B,CAAC;gBAClE,MAAM,SAAS,GACb,mBAAmB,IAAI,gBAAgB,CAAC,GAAG,CAAC,mBAAmB,CAAC;oBAC9D,CAAC,CAAC,mBAAmB;oBACrB,CAAC,CAAC,QAAQ,CAAC;gBAEf,0DAA0D;gBAC1D,aAAa,CAAC,QAAQ,CAAC;oBACrB,WAAW,EAAE,aAAa;oBAC1B,SAAS,EAAE,SAAS;iBACrB,CAAC,CAAC;YACL,CAAC;SACF,CACF,CAAC;QAEF,OAAO,GAAG,EAAE;YACV,IAAI,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAC;gBAC5B,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC;YACvC,CAAC;iBAAM,CAAC;gBACN,QAAQ,CAAC,OAAO,EAAE,CAAC;YACrB,CAAC;QACH,CAAC,CAAC;IACJ,CAAC,EAAE,EAAE,CAAC,CAAC;IAEP,OAAO,IAAI,CAAC;AACd,CAAC,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './TooltipService';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/TooltipService/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import './ZoomControl.scss';
|
|
3
|
+
import Icon from '../Icon';
|
|
4
|
+
import Typography from '../Typography';
|
|
5
|
+
const ZoomControl = ({ value, min = 10, max = 200, step = 10, onChange, className = '', }) => {
|
|
6
|
+
const handleChange = (e) => {
|
|
7
|
+
const newValue = Number(e.target.value);
|
|
8
|
+
const clamped = Math.max(min, Math.min(max, newValue));
|
|
9
|
+
onChange(clamped);
|
|
10
|
+
};
|
|
11
|
+
const zoomIn = () => {
|
|
12
|
+
const newValue = Math.min(value + step, max);
|
|
13
|
+
onChange(newValue);
|
|
14
|
+
};
|
|
15
|
+
const zoomOut = () => {
|
|
16
|
+
const newValue = Math.max(value - step, min);
|
|
17
|
+
onChange(newValue);
|
|
18
|
+
};
|
|
19
|
+
return (_jsxs("div", { className: `ff-zoom ${className}`, children: [_jsx("input", { type: "range", min: min, max: max, step: step, value: value, onChange: handleChange, className: "ff-zoom__slider" }), _jsxs("div", { className: "ff-zoom__controls", children: [_jsx(Icon, { onClick: zoomOut, disabled: value <= min, name: "window_minimize", className: "ff-zoom-icon", color: "var(--text-color)", width: 10, height: 24 }), _jsx(Typography, { fontSize: 12, fontWeight: "regular", children: "Zoom" }), _jsx(Icon, { onClick: zoomIn, disabled: value >= max, name: "add_file", className: "ff-zoom-icon", color: "var(--text-color)", width: 12, height: 24 })] })] }));
|
|
20
|
+
};
|
|
21
|
+
export default ZoomControl;
|
|
22
|
+
//# sourceMappingURL=ZoomControl.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ZoomControl.js","sourceRoot":"","sources":["../../../src/components/ZoomControl/ZoomControl.tsx"],"names":[],"mappings":";AACA,OAAO,oBAAoB,CAAC;AAC5B,OAAO,IAAI,MAAM,SAAS,CAAC;AAC3B,OAAO,UAAU,MAAM,eAAe,CAAC;AAGvC,MAAM,WAAW,GAAyB,CAAC,EACzC,KAAK,EACL,GAAG,GAAG,EAAE,EACR,GAAG,GAAG,GAAG,EACT,IAAI,GAAG,EAAE,EACT,QAAQ,EACR,SAAS,GAAG,EAAE,GACf,EAAE,EAAE;IACH,MAAM,YAAY,GAAG,CAAC,CAAsC,EAAE,EAAE;QAC9D,MAAM,QAAQ,GAAG,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QACxC,MAAM,OAAO,GAAG,IAAI,CAAC,GAAG,CAAC,GAAG,EAAE,IAAI,CAAC,GAAG,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC;QACvD,QAAQ,CAAC,OAAO,CAAC,CAAC;IACpB,CAAC,CAAC;IAEF,MAAM,MAAM,GAAG,GAAG,EAAE;QAClB,MAAM,QAAQ,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,GAAG,IAAI,EAAE,GAAG,CAAC,CAAC;QAC7C,QAAQ,CAAC,QAAQ,CAAC,CAAC;IACrB,CAAC,CAAC;IAEF,MAAM,OAAO,GAAG,GAAG,EAAE;QACnB,MAAM,QAAQ,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,GAAG,IAAI,EAAE,GAAG,CAAC,CAAC;QAC7C,QAAQ,CAAC,QAAQ,CAAC,CAAC;IACrB,CAAC,CAAC;IAEF,OAAO,CACL,eAAK,SAAS,EAAE,WAAW,SAAS,EAAE,aAEpC,gBACE,IAAI,EAAC,OAAO,EACZ,GAAG,EAAE,GAAG,EACR,GAAG,EAAE,GAAG,EACR,IAAI,EAAE,IAAI,EACV,KAAK,EAAE,KAAK,EACZ,QAAQ,EAAE,YAAY,EACtB,SAAS,EAAC,iBAAiB,GAC3B,EAGF,eAAK,SAAS,EAAC,mBAAmB,aAChC,KAAC,IAAI,IACH,OAAO,EAAE,OAAO,EAChB,QAAQ,EAAE,KAAK,IAAI,GAAG,EACtB,IAAI,EAAC,iBAAiB,EACtB,SAAS,EAAC,cAAc,EACxB,KAAK,EAAC,mBAAmB,EACzB,KAAK,EAAE,EAAE,EACT,MAAM,EAAE,EAAE,GACV,EAEF,KAAC,UAAU,IAAC,QAAQ,EAAE,EAAE,EAAE,UAAU,EAAC,SAAS,qBAEjC,EAEb,KAAC,IAAI,IACH,OAAO,EAAE,MAAM,EACf,QAAQ,EAAE,KAAK,IAAI,GAAG,EACtB,IAAI,EAAC,UAAU,EACf,SAAS,EAAC,cAAc,EACxB,KAAK,EAAC,mBAAmB,EACzB,KAAK,EAAE,EAAE,EACT,MAAM,EAAE,EAAE,GACV,IACE,IACF,CACP,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './ZoomControl';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/ZoomControl/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/components/ZoomControl/types.ts"],"names":[],"mappings":""}
|
package/lib/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import * as DNDSortable from '@dnd-kit/sortable';
|
|
|
9
9
|
import * as DNDUtilities from '@dnd-kit/utilities';
|
|
10
10
|
import * as DNDModifiers from '@dnd-kit/modifiers';
|
|
11
11
|
import ReCAPTCHA from 'react-google-recaptcha';
|
|
12
|
+
import { Props } from 'tippy.js';
|
|
12
13
|
export { default as Janus } from 'janus-gateway';
|
|
13
14
|
export { default as adapter } from 'webrtc-adapter';
|
|
14
15
|
|
|
@@ -380,6 +381,7 @@ interface DrawerProps {
|
|
|
380
381
|
isClickOutside?: boolean;
|
|
381
382
|
ignoreRefs?: Array<React.RefObject<HTMLElement>>;
|
|
382
383
|
noHeaderBorder?: boolean;
|
|
384
|
+
direction?: 'right' | 'left';
|
|
383
385
|
}
|
|
384
386
|
|
|
385
387
|
declare const Drawer: FC<DrawerProps>;
|
|
@@ -2280,6 +2282,7 @@ type TreeNodeProps = {
|
|
|
2280
2282
|
stepId?: string;
|
|
2281
2283
|
conditionId?: string;
|
|
2282
2284
|
machInstanceId?: string;
|
|
2285
|
+
machineInstanceId?: string;
|
|
2283
2286
|
duration?: string;
|
|
2284
2287
|
headless?: boolean;
|
|
2285
2288
|
recordedVideoUrlId?: string;
|
|
@@ -2477,9 +2480,13 @@ interface BrowserTabsProps {
|
|
|
2477
2480
|
* Custom CSS class name to override default styles.
|
|
2478
2481
|
*/
|
|
2479
2482
|
className?: string;
|
|
2483
|
+
/**
|
|
2484
|
+
* Maximum number of tabs allowed.
|
|
2485
|
+
*/
|
|
2486
|
+
maxTabs?: number;
|
|
2480
2487
|
}
|
|
2481
2488
|
|
|
2482
|
-
declare const BrowserTabs: ({ tabsData, activeTabId, onTabClick, onTabClose, onTabAdd, maxTabWidth, showCloseOnActive, }: BrowserTabsProps) => react_jsx_runtime.JSX.Element;
|
|
2489
|
+
declare const BrowserTabs: ({ tabsData, activeTabId, onTabClick, onTabClose, onTabAdd, maxTabWidth, showCloseOnActive, maxTabs, }: BrowserTabsProps) => react_jsx_runtime.JSX.Element;
|
|
2483
2490
|
|
|
2484
2491
|
interface HighlightTextProps {
|
|
2485
2492
|
text?: string;
|
|
@@ -4350,6 +4357,7 @@ interface EditLabelProps {
|
|
|
4350
4357
|
onChangeValidationError?: boolean;
|
|
4351
4358
|
truncatedType?: 'count' | 'pixel';
|
|
4352
4359
|
isTableTree?: boolean;
|
|
4360
|
+
isAutoTruncate?: boolean;
|
|
4353
4361
|
}
|
|
4354
4362
|
type OptionValue$1 = any;
|
|
4355
4363
|
type DisabledOptions = {
|
|
@@ -4361,7 +4369,7 @@ interface Option$2 {
|
|
|
4361
4369
|
[key: string]: OptionValue$1;
|
|
4362
4370
|
}
|
|
4363
4371
|
|
|
4364
|
-
declare const EditLabel: ({ id, onConfirm, onCancel, handleCustomError, value, label, optionsList, selectedOption, withDropdown, inputFieldWidth, selectFieldWidth, textColor, tooltip, required, isDisable, onClick, highlightText, isEditable, setIsEditable, cursor, isOnBlurTrue, handleOnChange, handleTriggerDoubleClick, truncatedTextCount, truncatedType, confirmIconTooltip, cancelIconTooltip, inlineValidationError, onChangeValidationError, isTableTree, }: EditLabelProps) => react_jsx_runtime.JSX.Element;
|
|
4372
|
+
declare const EditLabel: ({ id, onConfirm, onCancel, handleCustomError, value, label, optionsList, selectedOption, withDropdown, inputFieldWidth, selectFieldWidth, textColor, tooltip, required, isDisable, onClick, highlightText, isEditable, setIsEditable, cursor, isOnBlurTrue, handleOnChange, handleTriggerDoubleClick, truncatedTextCount, truncatedType, confirmIconTooltip, cancelIconTooltip, inlineValidationError, onChangeValidationError, isTableTree, isAutoTruncate, }: EditLabelProps) => react_jsx_runtime.JSX.Element;
|
|
4365
4373
|
|
|
4366
4374
|
interface ErrorBoundaryProps {
|
|
4367
4375
|
fallback: ReactNode;
|
|
@@ -4614,7 +4622,6 @@ interface TreeTableProps {
|
|
|
4614
4622
|
tableHeaderBgColor?: string;
|
|
4615
4623
|
hideOnDisable?: boolean;
|
|
4616
4624
|
freezeColumns?: number;
|
|
4617
|
-
scriptLengthTruncate?: number;
|
|
4618
4625
|
addModuleInputWidth?: number;
|
|
4619
4626
|
addModuleSelectWidth?: number;
|
|
4620
4627
|
onScroll?: () => void;
|
|
@@ -4625,10 +4632,6 @@ interface TreeTableProps {
|
|
|
4625
4632
|
handleRemoveNavigateTreeNode?: () => void;
|
|
4626
4633
|
scrollThreshold?: number;
|
|
4627
4634
|
showHeader?: boolean;
|
|
4628
|
-
onHover?: (rowId: string | null) => void;
|
|
4629
|
-
onHoverOut?: (rowId: string | null) => void;
|
|
4630
|
-
rootNameWidth?: number;
|
|
4631
|
-
rootNameHoveredWidth?: number;
|
|
4632
4635
|
}
|
|
4633
4636
|
type OptionValue = any;
|
|
4634
4637
|
interface Option$1 {
|
|
@@ -5103,7 +5106,7 @@ interface TreeDetailsResult {
|
|
|
5103
5106
|
endId: string;
|
|
5104
5107
|
root?: TreeNodeProps;
|
|
5105
5108
|
}
|
|
5106
|
-
declare const getTreeDetails: (action: "above" | "below" | "expand" | "collapse" | "start" | "addAbove" | "addBelow" | "expandAll" | "collapseAll" | "show" | "hide" | "clone" | "delete" | "create" | "refresh", oldData: TreeNodeProps[], newData: TreeNodeProps[], sourceId?: string) => TreeDetailsResult;
|
|
5109
|
+
declare const getTreeDetails: (action: "above" | "below" | "expand" | "collapse" | "start" | "addAbove" | "addBelow" | "expandAll" | "collapseAll" | "show" | "hide" | "clone" | "delete" | "create" | "refresh", oldData: TreeNodeProps[], newData: TreeNodeProps[], sourceId?: string, deletedIds?: string[]) => TreeDetailsResult;
|
|
5107
5110
|
declare const updateTreeState: (treeDataList: TreeNodeProps[], currentNode: TreeNodeProps) => TreeNodeProps[];
|
|
5108
5111
|
|
|
5109
5112
|
declare const useBeforeUnload: (beforeunload: boolean) => void;
|
|
@@ -5708,6 +5711,29 @@ interface ContextToggleProps {
|
|
|
5708
5711
|
|
|
5709
5712
|
declare const SelectionSwitcher: React__default.FC<ContextToggleProps>;
|
|
5710
5713
|
|
|
5714
|
+
interface ZoomControlProps {
|
|
5715
|
+
value: number;
|
|
5716
|
+
min?: number;
|
|
5717
|
+
max?: number;
|
|
5718
|
+
step?: number;
|
|
5719
|
+
onChange: (value: number) => void;
|
|
5720
|
+
className?: string;
|
|
5721
|
+
}
|
|
5722
|
+
|
|
5723
|
+
declare const ZoomControl: FC<ZoomControlProps>;
|
|
5724
|
+
|
|
5725
|
+
declare const TooltipService: () => null;
|
|
5726
|
+
|
|
5727
|
+
interface AutoTruncateTextComponentProps {
|
|
5728
|
+
children: React.ReactNode;
|
|
5729
|
+
className?: string;
|
|
5730
|
+
lines?: number;
|
|
5731
|
+
interactive?: boolean;
|
|
5732
|
+
placement?: Props['placement'];
|
|
5733
|
+
}
|
|
5734
|
+
|
|
5735
|
+
declare const AutoTruncateText: React$1.MemoExoticComponent<({ children, className, lines, interactive, placement, }: AutoTruncateTextComponentProps) => react_jsx_runtime.JSX.Element>;
|
|
5736
|
+
|
|
5711
5737
|
declare const EMAIL_REGEX: RegExp;
|
|
5712
5738
|
declare const URL_REGEX: RegExp;
|
|
5713
5739
|
declare const PHONE_REGEX: RegExp;
|
|
@@ -5849,5 +5875,5 @@ interface StorageUsageBarProps {
|
|
|
5849
5875
|
|
|
5850
5876
|
declare const StorageUsageBar: React.FC<StorageUsageBarProps>;
|
|
5851
5877
|
|
|
5852
|
-
export { AADHAAR_REGEX, ALPHABET_ONLY_REGEX, ALPHABET_WITH_SPACES_ONLY_REGEX, ALPHANUMERIC_PARENTHESIS_REGEX, ALPHANUMERIC_REGEX, ALPHANUMERIC_WITH_DOT_REGEX, ALPHANUMERIC_WITH_ROUND_BRACES_REGEX, ALPHA_NUM_EXTENDED_REGEX, ALPHA_NUM_REGEX, Accordion, AddContentButton, AddResourceButton, AiToggle, AllProjectsDropdown, AnimatedSetting, AppHeader, AttachMedia, AttachmentButton, Avatar, BASE64_REGEX, BIG_END_WHITESPACE, BINARY_NUMBER_REGEX, BODY_TAG_TYPE_VALIDATION, BarChart, Card as Box, BrowserTabs, Button, CAMEL_CASE_REGEX, CERTIFICATES_NAME_REGEX, CHECK_CAMEL_CASE, CREDIT_CARD_REGEX, CURRENCY_GENERIC_REGEX, ChatModal, ChatModalAi, Checkbox, Chip, ChipWithCount, ChooseFile, Col, Comments, ConditionalDropdown, ConnectingBranch, Container, ContentCard, CreateVariableSlider, DATE_REGEX, DECIMAL_NUMBER_REGEX, DRIVING_LICENSE_REGEX, DYNAMIC_VALUE_PATTERN_REGEX, DYNAMIC_VALUE_TYPE_REGEX, DYNAMIC_VALUE_WITH_VALID_BRACKETS_REGEX, DYNAMIC_VALUE__PLACEHOLDER_REGEX, DashboardDonutChart, CustomDatePicker as DatePicker, DebugToolsPanel, DonutChart, DownloadClient, DragAndDrop, Drawer, Dropzone, ELEMENTS_TRAILING_SPACE_REGEX, ELEMENTS_WHITE_SPACE_REGEX, EMAIL_FORMAT_REGEX, EMAIL_REGEX, EMAIL_VALIDATION_REGEX, EXCEL_SPACING_REGEX, EditLabel, EditTextField, Editor, ErrorBoundary, ExcelFile as Excel, ExpandableMenu, FILENAME_VALIDATION_REGEX, FILE_EXTENSION_REGEX, FILE_NAME_REGEX, FieldSet, FileDropzone, FilePreview, ForwardedForms as Form, formatString as FormatString, GSTIN_REGEX, HEXADECIMAL_NUMBER_REGEX, HEX_COLOR_REGEX, HSL_COLOR_REGEX, HTML_ATTRIBUTE_REGEX, HTML_FILE_TYPE_VALIDATION, HTML_TAG_REGEX, HighlightText, HistoryCard, INDIAN_CURRENCY_REGEX, INDIAN_PASSPORT_REGEX, INDIAN_PHONE_REGEX, INDIAN_PIN_CODE_REGEX, INTERNATIONAL_PHONE_REGEX, IPV4_REGEX, IPV6_REGEX, Icon, IconButton, IconRadialChart, IconRadioGroup, Input, InputWithDropdown, JAVASCRIPT_FILE_TYPE_VALIDATION, LINKEDIN_PROFILE_REGEX, LINK_VALIDATION_REGEX, LabelEditTextField, LineChart, LineLoader, Link, MAC_ADDRESS_REGEX, MEMORY_VALIDATION_REGEX, MachineInputField, MediaPreview, MediaViewerModal as MediaViewerModel, MenuOption, MessageBox, MiniModal, MobileSkin, Modal, ModuleChip, MultiRadialChart, MultiSelect, NlpInput as NLPInput, NLP_DESCRIPTION_REGEX, NO_LEADING_TRAILING_SPACE_REGEX, NUMBERS_ONLY_REGEX, NUMBER_REGEX, NoDataContent, OsTree, OtpVerification, OverviewModal, PAN_CARD_REGEX, PARAMETER_ALPHANUMERIC_REGEX, PASSWORD_COMPLEX_REGEX, PASSWORD_SIMPLE_REGEX, PHONE_REGEX, POSTAL_CODE_REGEX, Paper, PhoneInputField, PieChart, PopUpModal, PrePostTable, ProgressBar, Prompt, PromptContainer, RGB_COLOR_REGEX, ROMAN_NUMERALS_REGEX, RadialChart, RadioButton, RadioGroup, Recaptcha, Row, SCRIPT_REGEX, SERVER_HOST_REGEX, SSN_REGEX, START_END_WHITESPACE_REGEX, STEP_GROUP_NAME_REGEX, ScriptGenerationLoader, ScriptSwitchButton, Search, Select, SelectionSwitcher, SequentialConnectingBranch, SessionDropdown, SessionManager, StateDropdown, StatusBadge, StatusButton, StatusCard, StatusIndicator, StepLandingTable, StepResultStats, StorageUsageBar, SwitchButton, TIME_REGEX, TWITTER_HANDLE_REGEX, Table, TreeTable as TableTree, TableTreeFn, TableWithAccordion, Tabs, TabsWithSilder, Textarea as TextArea, TextEditor, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, TruncatedTooltip, Typography, UNIT_REGEX, URL_REGEX, USERNAME_REGEX, USERNAME_SPECIAL_REGEX, US_ZIP_CODE_REGEX, UUID_REGEX, VEHICLE_REGISTRATION_REGEX, VariableDropdown, VariableInput, VariableSuggestionInputDropDown, WHITESPACE_REGEX, XML_FILE_TYPE_VALIDATION, addPrePostStepGroup, addStepGroup, autoScrollToTableLastRow, capitalize, checkEmpty, checkMicrophoneAccess, clearStore, compareArrays, compareObjects, convertFormDataToObject, convertToBytes, convertToGB, convertToISO, copyToClipboard, debounce, deleteStoreValue, ffid, findAndInsert, formatDate, formatResponseDate, getEncryptedData, getExtension, getExtensionWithPeriod, getNavigateToKey, getSequentialPayload, getStoreValue, getTopVisibleNodeKey, getTreeDetails, handleTimeZoneChange, handleTreeExpandAllCollapseAll, handleTreeNodeExpandCollapse, handleTreeNodeSect, handleUnCheckAllTreeNodesWithUpdates, hasDuplicateFile, isEmptyObject, isTextTruncated, nlpInputDelay, rearrangeDragItem, saveFileFromBlob, scrollToView, setStoreValue, throttle, toCamelCase, toast, toggleShowHideEntity, truncateText, updateTreeState, useBeforeUnload, useClickOutside, useDeviceType, useFileDropzone, useKeyboardActions, useTheme, useTriggerControl };
|
|
5878
|
+
export { AADHAAR_REGEX, ALPHABET_ONLY_REGEX, ALPHABET_WITH_SPACES_ONLY_REGEX, ALPHANUMERIC_PARENTHESIS_REGEX, ALPHANUMERIC_REGEX, ALPHANUMERIC_WITH_DOT_REGEX, ALPHANUMERIC_WITH_ROUND_BRACES_REGEX, ALPHA_NUM_EXTENDED_REGEX, ALPHA_NUM_REGEX, Accordion, AddContentButton, AddResourceButton, AiToggle, AllProjectsDropdown, AnimatedSetting, AppHeader, AttachMedia, AttachmentButton, AutoTruncateText, Avatar, BASE64_REGEX, BIG_END_WHITESPACE, BINARY_NUMBER_REGEX, BODY_TAG_TYPE_VALIDATION, BarChart, Card as Box, BrowserTabs, Button, CAMEL_CASE_REGEX, CERTIFICATES_NAME_REGEX, CHECK_CAMEL_CASE, CREDIT_CARD_REGEX, CURRENCY_GENERIC_REGEX, ChatModal, ChatModalAi, Checkbox, Chip, ChipWithCount, ChooseFile, Col, Comments, ConditionalDropdown, ConnectingBranch, Container, ContentCard, CreateVariableSlider, DATE_REGEX, DECIMAL_NUMBER_REGEX, DRIVING_LICENSE_REGEX, DYNAMIC_VALUE_PATTERN_REGEX, DYNAMIC_VALUE_TYPE_REGEX, DYNAMIC_VALUE_WITH_VALID_BRACKETS_REGEX, DYNAMIC_VALUE__PLACEHOLDER_REGEX, DashboardDonutChart, CustomDatePicker as DatePicker, DebugToolsPanel, DonutChart, DownloadClient, DragAndDrop, Drawer, Dropzone, ELEMENTS_TRAILING_SPACE_REGEX, ELEMENTS_WHITE_SPACE_REGEX, EMAIL_FORMAT_REGEX, EMAIL_REGEX, EMAIL_VALIDATION_REGEX, EXCEL_SPACING_REGEX, EditLabel, EditTextField, Editor, ErrorBoundary, ExcelFile as Excel, ExpandableMenu, FILENAME_VALIDATION_REGEX, FILE_EXTENSION_REGEX, FILE_NAME_REGEX, FieldSet, FileDropzone, FilePreview, ForwardedForms as Form, formatString as FormatString, GSTIN_REGEX, HEXADECIMAL_NUMBER_REGEX, HEX_COLOR_REGEX, HSL_COLOR_REGEX, HTML_ATTRIBUTE_REGEX, HTML_FILE_TYPE_VALIDATION, HTML_TAG_REGEX, HighlightText, HistoryCard, INDIAN_CURRENCY_REGEX, INDIAN_PASSPORT_REGEX, INDIAN_PHONE_REGEX, INDIAN_PIN_CODE_REGEX, INTERNATIONAL_PHONE_REGEX, IPV4_REGEX, IPV6_REGEX, Icon, IconButton, IconRadialChart, IconRadioGroup, Input, InputWithDropdown, JAVASCRIPT_FILE_TYPE_VALIDATION, LINKEDIN_PROFILE_REGEX, LINK_VALIDATION_REGEX, LabelEditTextField, LineChart, LineLoader, Link, MAC_ADDRESS_REGEX, MEMORY_VALIDATION_REGEX, MachineInputField, MediaPreview, MediaViewerModal as MediaViewerModel, MenuOption, MessageBox, MiniModal, MobileSkin, Modal, ModuleChip, MultiRadialChart, MultiSelect, NlpInput as NLPInput, NLP_DESCRIPTION_REGEX, NO_LEADING_TRAILING_SPACE_REGEX, NUMBERS_ONLY_REGEX, NUMBER_REGEX, NoDataContent, OsTree, OtpVerification, OverviewModal, PAN_CARD_REGEX, PARAMETER_ALPHANUMERIC_REGEX, PASSWORD_COMPLEX_REGEX, PASSWORD_SIMPLE_REGEX, PHONE_REGEX, POSTAL_CODE_REGEX, Paper, PhoneInputField, PieChart, PopUpModal, PrePostTable, ProgressBar, Prompt, PromptContainer, RGB_COLOR_REGEX, ROMAN_NUMERALS_REGEX, RadialChart, RadioButton, RadioGroup, Recaptcha, Row, SCRIPT_REGEX, SERVER_HOST_REGEX, SSN_REGEX, START_END_WHITESPACE_REGEX, STEP_GROUP_NAME_REGEX, ScriptGenerationLoader, ScriptSwitchButton, Search, Select, SelectionSwitcher, SequentialConnectingBranch, SessionDropdown, SessionManager, StateDropdown, StatusBadge, StatusButton, StatusCard, StatusIndicator, StepLandingTable, StepResultStats, StorageUsageBar, SwitchButton, TIME_REGEX, TWITTER_HANDLE_REGEX, Table, TreeTable as TableTree, TableTreeFn, TableWithAccordion, Tabs, TabsWithSilder, Textarea as TextArea, TextEditor, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, TooltipService, TruncatedTooltip, Typography, UNIT_REGEX, URL_REGEX, USERNAME_REGEX, USERNAME_SPECIAL_REGEX, US_ZIP_CODE_REGEX, UUID_REGEX, VEHICLE_REGISTRATION_REGEX, VariableDropdown, VariableInput, VariableSuggestionInputDropDown, WHITESPACE_REGEX, XML_FILE_TYPE_VALIDATION, ZoomControl, addPrePostStepGroup, addStepGroup, autoScrollToTableLastRow, capitalize, checkEmpty, checkMicrophoneAccess, clearStore, compareArrays, compareObjects, convertFormDataToObject, convertToBytes, convertToGB, convertToISO, copyToClipboard, debounce, deleteStoreValue, ffid, findAndInsert, formatDate, formatResponseDate, getEncryptedData, getExtension, getExtensionWithPeriod, getNavigateToKey, getSequentialPayload, getStoreValue, getTopVisibleNodeKey, getTreeDetails, handleTimeZoneChange, handleTreeExpandAllCollapseAll, handleTreeNodeExpandCollapse, handleTreeNodeSect, handleUnCheckAllTreeNodesWithUpdates, hasDuplicateFile, isEmptyObject, isTextTruncated, nlpInputDelay, rearrangeDragItem, saveFileFromBlob, scrollToView, setStoreValue, throttle, toCamelCase, toast, toggleShowHideEntity, truncateText, updateTreeState, useBeforeUnload, useClickOutside, useDeviceType, useFileDropzone, useKeyboardActions, useTheme, useTriggerControl };
|
|
5853
5879
|
export type { RootNode$1 as RootNode, TreeNodeProps };
|