pixel-react 1.5.9 → 1.6.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/.yarn/install-state.gz +0 -0
- package/lib/components/AppHeader/AppHeader.d.ts +1 -0
- package/lib/components/AppHeader/types.d.ts +18 -6
- package/lib/components/Charts/BarChart/BarChart.d.ts +1 -0
- package/lib/components/Charts/DashboardDonutChart/types.d.ts +2 -0
- package/lib/components/Excel/ExcelToolBar/ExcelToolBar.d.ts +0 -1
- package/lib/components/FieldSet/FieldSet.d.ts +5 -0
- package/lib/components/FieldSet/index.d.ts +1 -0
- package/lib/components/FieldSet/types.d.ts +7 -0
- package/lib/components/FileDropzone/types.d.ts +8 -0
- package/lib/components/MachineInputField/types.d.ts +1 -1
- package/lib/components/MultiSelect/MultiSelect.d.ts +1 -1
- package/lib/components/MultiSelect/MultiSelectTypes.d.ts +1 -0
- package/lib/components/PopUpModal/PopUpModal.d.ts +5 -0
- package/lib/components/PopUpModal/types.d.ts +14 -0
- package/lib/components/RadioGroup/radioGroupTypes.d.ts +20 -0
- package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.d.ts +2 -1
- package/lib/components/SequentialConnectingBranch/components/Branches/Branches.d.ts +1 -1
- package/lib/components/SequentialConnectingBranch/components/Branches/types.d.ts +3 -2
- package/lib/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.d.ts +1 -1
- package/lib/components/SequentialConnectingBranch/components/ConnectingBranches/types.d.ts +3 -2
- package/lib/components/SequentialConnectingBranch/types.d.ts +11 -3
- package/lib/components/TableTree/TableTree.d.ts +4 -24
- package/lib/components/TableTree/data.d.ts +112 -273
- package/lib/components/TableTree/types.d.ts +28 -0
- package/lib/index.d.ts +149 -32
- package/lib/index.esm.js +1104 -742
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +1109 -742
- package/lib/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/assets/Themes/BaseTheme.scss +5 -14
- package/src/assets/Themes/DarkTheme.scss +5 -2
- package/src/assets/icons/arrow_up.svg +1 -1
- package/src/assets/icons/export.svg +5 -0
- package/src/assets/icons/import.svg +5 -0
- package/src/assets/icons/info_icon.svg +4 -16
- package/src/assets/icons/replace_file.svg +14 -0
- package/src/assets/icons/web_service_icon.svg +3 -0
- package/src/assets/styles/_fonts.scss +4 -2
- package/src/components/AppHeader/AppHeader.stories.tsx +242 -39
- package/src/components/AppHeader/AppHeader.tsx +158 -139
- package/src/components/AppHeader/types.ts +19 -6
- package/src/components/Charts/BarChart/BarChart.scss +34 -34
- package/src/components/Charts/BarChart/BarChart.stories.tsx +3 -2
- package/src/components/Charts/BarChart/BarChart.tsx +79 -55
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.scss +25 -18
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.tsx +31 -11
- package/src/components/Charts/DashboardDonutChart/types.ts +2 -0
- package/src/components/Charts/IconRadialChart/IconRadialChart.tsx +3 -0
- package/src/components/Charts/LineChart/LineChart.scss +13 -4
- package/src/components/Charts/LineChart/LineChart.stories.tsx +100 -102
- package/src/components/Charts/LineChart/LineChart.tsx +143 -131
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.scss +23 -2
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.tsx +109 -24
- package/src/components/Charts/PieChart/PieChart.scss +5 -3
- package/src/components/Charts/PieChart/PieChart.tsx +1 -2
- package/src/components/Checkbox/Checkbox.tsx +1 -7
- package/src/components/DatePicker/DatePicker.scss +15 -1
- package/src/components/DragAndDrop/DragAndDropList.tsx +5 -4
- package/src/components/Excel/ExcelFile/ExcelFile.scss +1 -1
- package/src/components/Excel/ExcelFile/ExcelFile.tsx +34 -20
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.tsx +0 -1
- package/src/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.ts +44 -15
- package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +47 -4
- package/src/components/FieldSet/FieldSet.scss +9 -0
- package/src/components/FieldSet/FieldSet.stories.tsx +103 -0
- package/src/components/FieldSet/FieldSet.tsx +29 -0
- package/src/components/FieldSet/index.ts +1 -0
- package/src/components/FieldSet/types.ts +8 -0
- package/src/components/FileDropzone/FileDropzone.scss +1 -1
- package/src/components/FileDropzone/FileDropzone.stories.tsx +15 -3
- package/src/components/FileDropzone/FileDropzone.tsx +5 -0
- package/src/components/FileDropzone/FilePreview.tsx +1 -1
- package/src/components/FileDropzone/types.ts +8 -0
- package/src/components/Icon/Icons.scss +1 -1
- package/src/components/Icon/iconList.ts +11 -7
- package/src/components/MachineInputField/MachineInputField.scss +15 -2
- package/src/components/MachineInputField/MachineInputField.tsx +17 -3
- package/src/components/MachineInputField/types.ts +1 -1
- package/src/components/MultiSelect/Dropdown.tsx +7 -3
- package/src/components/MultiSelect/MultiSelect.stories.tsx +6 -1
- package/src/components/MultiSelect/MultiSelect.tsx +4 -20
- package/src/components/MultiSelect/MultiSelectTypes.ts +2 -0
- package/src/components/PopUpModal/PopUpModal.scss +36 -0
- package/src/components/PopUpModal/PopUpModal.stories.tsx +61 -0
- package/src/components/PopUpModal/PopUpModal.tsx +85 -0
- package/src/components/PopUpModal/types.ts +14 -0
- package/src/components/RadioGroup/RadioGroup.scss +7 -0
- package/src/components/RadioGroup/RadioGroup.stories.tsx +26 -0
- package/src/components/RadioGroup/RadioGroup.tsx +16 -0
- package/src/components/RadioGroup/radioGroupTypes.tsx +24 -0
- package/src/components/Select/Select.tsx +3 -4
- package/src/components/Select/components/Dropdown.tsx +34 -34
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.scss +9 -0
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.tsx +74 -43
- package/src/components/SequentialConnectingBranch/components/Branches/Branches.scss +9 -3
- package/src/components/SequentialConnectingBranch/components/Branches/Branches.tsx +45 -14
- package/src/components/SequentialConnectingBranch/components/Branches/types.ts +9 -2
- package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.tsx +3 -1
- package/src/components/SequentialConnectingBranch/components/ConnectingBranches/types.ts +9 -2
- package/src/components/SequentialConnectingBranch/types.ts +18 -3
- package/src/components/TableTree/TableTree.scss +154 -123
- package/src/components/TableTree/TableTree.stories.tsx +148 -96
- package/src/components/TableTree/TableTree.tsx +250 -282
- package/src/components/TableTree/data.ts +318 -569
- package/src/components/TableTree/types.ts +30 -0
- package/src/components/Toast/Toast.tsx +1 -1
- package/src/index.ts +11 -0
package/lib/index.d.ts
CHANGED
@@ -299,9 +299,10 @@ interface MultiSelectProps {
|
|
299
299
|
highlightedMachine?: string | ReactElement;
|
300
300
|
labelAccessor?: string;
|
301
301
|
valueAccessor?: string;
|
302
|
+
onEnter?: (newOption: string) => void;
|
302
303
|
}
|
303
304
|
|
304
|
-
declare const MultiSelect: ({ options, type, selectedOptions, onChange, acceptNewOption, zIndex, label, onSearch, required, disabled, errorMessage, displayCount, placeholderForSearching, variant, onLabelPlusIconClick, onManageLabelsClick, className, highlightedMachine, onSelectButtonClick, labelAccessor, valueAccessor, withSelectButton, }: MultiSelectProps) => react_jsx_runtime.JSX.Element;
|
305
|
+
declare const MultiSelect: ({ options, type, selectedOptions, onChange, acceptNewOption, zIndex, label, onSearch, required, disabled, errorMessage, displayCount, placeholderForSearching, variant, onLabelPlusIconClick, onManageLabelsClick, className, highlightedMachine, onSelectButtonClick, labelAccessor, valueAccessor, withSelectButton, onEnter }: MultiSelectProps) => react_jsx_runtime.JSX.Element;
|
305
306
|
|
306
307
|
interface ToasterProps {
|
307
308
|
/**Boolean value to handle state of toaster. */
|
@@ -1120,10 +1121,67 @@ interface FileDropzoneProps {
|
|
1120
1121
|
validateMIMEType?: boolean;
|
1121
1122
|
width?: number | string;
|
1122
1123
|
height?: number | string;
|
1124
|
+
/**
|
1125
|
+
* Returns the accepted files in the state
|
1126
|
+
**/
|
1127
|
+
getAcceptedFiles?: (files: File[]) => void;
|
1128
|
+
/**
|
1129
|
+
* Returns the rejected files in the state
|
1130
|
+
**/
|
1131
|
+
getRejectedFiles?: (files: FileRejection[]) => void;
|
1132
|
+
}
|
1133
|
+
interface FileError {
|
1134
|
+
message: string;
|
1135
|
+
code: string;
|
1136
|
+
}
|
1137
|
+
interface FileRejection {
|
1138
|
+
file: File;
|
1139
|
+
errors: FileError[];
|
1140
|
+
}
|
1141
|
+
interface DropzoneOptions {
|
1142
|
+
accept: string[];
|
1143
|
+
multiple?: boolean;
|
1144
|
+
maxSize?: number;
|
1145
|
+
maxFiles?: number | undefined;
|
1146
|
+
onDrop?: (acceptedFiles: File[], rejectedFiles: FileRejection[], event: React.DragEvent<HTMLElement> | React.ChangeEvent<HTMLInputElement>) => void;
|
1147
|
+
onMaxFilesError?: () => void;
|
1148
|
+
maxSizeErrorMessage?: string;
|
1149
|
+
invalidFileMessage?: string;
|
1150
|
+
fileExistMessage?: string;
|
1151
|
+
validateMIMEType?: boolean;
|
1152
|
+
}
|
1153
|
+
interface DropzoneState {
|
1154
|
+
getRootProps: () => React.HTMLAttributes<HTMLElement>;
|
1155
|
+
getInputProps: () => React.InputHTMLAttributes<HTMLInputElement>;
|
1156
|
+
acceptedFiles: File[];
|
1157
|
+
rejectedFiles: FileRejection[];
|
1158
|
+
isDragActive: boolean;
|
1159
|
+
handleRemoveClick: (file: File) => void;
|
1160
|
+
handleReplaceClick: (file: File) => void;
|
1161
|
+
}
|
1162
|
+
interface DroppableProps {
|
1163
|
+
icon: React.ReactNode;
|
1164
|
+
primaryLabel: string;
|
1165
|
+
secondaryLabel: string;
|
1166
|
+
buttonLabel: string;
|
1167
|
+
getRootProps: () => any;
|
1168
|
+
getInputProps: () => any;
|
1169
|
+
isDragActive: boolean;
|
1170
|
+
height: number | string;
|
1171
|
+
}
|
1172
|
+
interface FilePreviewProps {
|
1173
|
+
file: File;
|
1174
|
+
error?: string;
|
1175
|
+
onRemoveClick: (file: File) => void;
|
1176
|
+
onReplaceClick: (file: File) => void;
|
1123
1177
|
}
|
1124
1178
|
|
1125
1179
|
declare const FileDropzone: React.FC<FileDropzoneProps>;
|
1126
1180
|
|
1181
|
+
declare const Dropzone: FC<DroppableProps>;
|
1182
|
+
|
1183
|
+
declare const FilePreview: React.FC<FilePreviewProps>;
|
1184
|
+
|
1127
1185
|
type Theme = 'ff-light-theme' | 'ff-dark-theme' | 'ff-grey-theme';
|
1128
1186
|
interface ThemeContextType {
|
1129
1187
|
currentTheme: Theme;
|
@@ -1452,28 +1510,36 @@ interface MiniEditModalProps {
|
|
1452
1510
|
|
1453
1511
|
declare const MiniModal: React$1.ForwardRefExoticComponent<MiniEditModalProps & React$1.RefAttributes<HTMLDivElement>>;
|
1454
1512
|
|
1455
|
-
interface
|
1513
|
+
interface TreeNode {
|
1514
|
+
key: string;
|
1515
|
+
[key: string]: any;
|
1516
|
+
children?: TreeNode[];
|
1517
|
+
expanded?: boolean;
|
1518
|
+
}
|
1519
|
+
interface Column {
|
1456
1520
|
name: string;
|
1457
1521
|
accessor: string;
|
1458
1522
|
width: string;
|
1459
1523
|
isClickable?: boolean;
|
1460
|
-
|
1461
|
-
|
1462
|
-
|
1463
|
-
|
1464
|
-
|
1465
|
-
|
1466
|
-
|
1467
|
-
|
1468
|
-
|
1469
|
-
|
1470
|
-
|
1471
|
-
|
1472
|
-
|
1473
|
-
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1524
|
+
cell?: (row: any) => JSX.Element | string | null;
|
1525
|
+
actions?: (row: any) => JSX.Element[];
|
1526
|
+
isTree?: boolean;
|
1527
|
+
defaultValue?: string;
|
1528
|
+
defaultActions?: () => JSX.Element[];
|
1529
|
+
}
|
1530
|
+
interface TreeTableProps {
|
1531
|
+
treeData: any;
|
1532
|
+
columnsData: Column[];
|
1533
|
+
selected?: string[];
|
1534
|
+
select?: 'radio' | 'checkbox' | null;
|
1535
|
+
onChange?: (nodes: string[]) => void;
|
1536
|
+
onClick?: (e: React.MouseEvent<HTMLDivElement>, row: TreeNode) => void;
|
1537
|
+
expandedNodes: string[];
|
1538
|
+
onExpand?: (_isExpanded: boolean, node: string) => void;
|
1539
|
+
onPagination?: (_direction: string) => void;
|
1540
|
+
}
|
1541
|
+
|
1542
|
+
declare const TreeTable: React__default.FC<TreeTableProps>;
|
1477
1543
|
|
1478
1544
|
interface TabsProps {
|
1479
1545
|
/**
|
@@ -1775,12 +1841,6 @@ interface AppHeaderProps {
|
|
1775
1841
|
rightContent?: ReactNode;
|
1776
1842
|
projectsList?: optionsType[];
|
1777
1843
|
appHeaderMenuItems: appHeaderMenuItemProps[];
|
1778
|
-
appHeaderHiddenMenuItems?: {
|
1779
|
-
label: string;
|
1780
|
-
value: string | string[];
|
1781
|
-
icon: string;
|
1782
|
-
disable?: boolean;
|
1783
|
-
}[];
|
1784
1844
|
selectedMenu: string;
|
1785
1845
|
selectedSubMenu?: string;
|
1786
1846
|
selectedQuickMenu?: string;
|
@@ -1795,20 +1855,38 @@ interface AppHeaderProps {
|
|
1795
1855
|
interface appHeaderMenuItemProps {
|
1796
1856
|
label: string;
|
1797
1857
|
path?: string;
|
1858
|
+
disable?: boolean;
|
1859
|
+
disableText?: string;
|
1860
|
+
hide?: boolean;
|
1798
1861
|
subMenuItems?: appHeaderSubMenuItemProps[];
|
1799
1862
|
}
|
1800
1863
|
interface appHeaderSubMenuItemProps {
|
1801
1864
|
label: string;
|
1802
1865
|
path?: string;
|
1866
|
+
disable?: boolean;
|
1867
|
+
disableText?: string;
|
1868
|
+
hide?: boolean;
|
1803
1869
|
quickMenuItems?: appHeaderQuickMenuItemProps[];
|
1870
|
+
hiddenMenuItems?: appHeaderHiddenMenuItemProps[];
|
1804
1871
|
}
|
1805
1872
|
interface appHeaderQuickMenuItemProps {
|
1806
1873
|
label?: string;
|
1807
1874
|
path?: string;
|
1808
1875
|
iconName: string;
|
1876
|
+
disable?: boolean;
|
1877
|
+
disableText?: string;
|
1878
|
+
hide?: boolean;
|
1879
|
+
}
|
1880
|
+
interface appHeaderHiddenMenuItemProps {
|
1881
|
+
label: string;
|
1882
|
+
value: string | string[];
|
1883
|
+
icon: string;
|
1884
|
+
disable?: boolean;
|
1885
|
+
disableText?: string;
|
1886
|
+
hide?: boolean;
|
1809
1887
|
}
|
1810
1888
|
|
1811
|
-
declare const AppHeader:
|
1889
|
+
declare const AppHeader: React__default.FC<AppHeaderProps>;
|
1812
1890
|
|
1813
1891
|
interface PaperProps {
|
1814
1892
|
/**
|
@@ -1847,6 +1925,8 @@ type DashboardDonutChartProps = {
|
|
1847
1925
|
showUnit?: boolean;
|
1848
1926
|
labelFontSize?: number;
|
1849
1927
|
subLabelFontSize?: number;
|
1928
|
+
legendPosition?: 'bottom' | 'right' | 'left';
|
1929
|
+
legendGap?: number;
|
1850
1930
|
};
|
1851
1931
|
|
1852
1932
|
declare const DashboardDonutChart: React__default.FC<DashboardDonutChartProps>;
|
@@ -1941,7 +2021,7 @@ interface IconRadioGroupProps {
|
|
1941
2021
|
declare const IconRadioGroup: React__default.FC<IconRadioGroupProps>;
|
1942
2022
|
|
1943
2023
|
interface MachineType {
|
1944
|
-
type:
|
2024
|
+
type: string;
|
1945
2025
|
label: string;
|
1946
2026
|
}
|
1947
2027
|
interface MachineInputFieldProps {
|
@@ -1962,10 +2042,13 @@ interface SequentialConnectingBranchProps {
|
|
1962
2042
|
selectedMachine?: Option$2;
|
1963
2043
|
machineOptionsList?: Option$2[];
|
1964
2044
|
onHandleSelect?: (option: Option$2) => void;
|
1965
|
-
onAddBrowserInstance?: () => void;
|
2045
|
+
onAddBrowserInstance?: (modalId: string) => void;
|
1966
2046
|
onUpdateAddBrowserInstance?: () => void;
|
1967
2047
|
onDeleteBrowserInstance?: (id: string, runCount: number) => void;
|
1968
|
-
onAddRunBrowserInstance?: (
|
2048
|
+
onAddRunBrowserInstance?: (machineInstanceId: string) => void;
|
2049
|
+
onDeleteMachineInstance?: () => void;
|
2050
|
+
onUpdateDataSetList: (id: string, dataSetObject: dataSetValues, isInstance?: boolean, noOfRuns?: number, machineInstanceId?: string) => void;
|
2051
|
+
dataSetValues: dataSetValues;
|
1969
2052
|
}
|
1970
2053
|
interface MachineInfo {
|
1971
2054
|
osName: string;
|
@@ -1975,7 +2058,7 @@ interface MachineInfo {
|
|
1975
2058
|
interface DeviceInfo {
|
1976
2059
|
}
|
1977
2060
|
interface ExecutionContext {
|
1978
|
-
|
2061
|
+
machineInstanceId: string;
|
1979
2062
|
clientId: string;
|
1980
2063
|
numberOfRuns: number;
|
1981
2064
|
executionEnv?: 'Local';
|
@@ -1989,8 +2072,13 @@ interface ExecutionContext {
|
|
1989
2072
|
globalVariableSetId: string;
|
1990
2073
|
testDataSetId: string;
|
1991
2074
|
}
|
2075
|
+
interface dataSetValues {
|
2076
|
+
peVariableSetId: string;
|
2077
|
+
globalVariableSetId: string;
|
2078
|
+
testDataSetId: string;
|
2079
|
+
}
|
1992
2080
|
|
1993
|
-
declare const SequentialConnectingBranch:
|
2081
|
+
declare const SequentialConnectingBranch: FC<SequentialConnectingBranchProps>;
|
1994
2082
|
|
1995
2083
|
interface AttachmentUploaderProps {
|
1996
2084
|
label: string;
|
@@ -2352,6 +2440,15 @@ interface DownloadClientProps {
|
|
2352
2440
|
|
2353
2441
|
declare const DownloadClient: React.FC<DownloadClientProps>;
|
2354
2442
|
|
2443
|
+
interface fieldSetProps {
|
2444
|
+
legendName: string;
|
2445
|
+
height: string;
|
2446
|
+
width: string;
|
2447
|
+
children: ReactNode | string;
|
2448
|
+
}
|
2449
|
+
|
2450
|
+
declare const FieldSet: FC<fieldSetProps>;
|
2451
|
+
|
2355
2452
|
type valueType$1 = any;
|
2356
2453
|
declare const checkEmpty: (value: valueType$1) => boolean;
|
2357
2454
|
|
@@ -2418,6 +2515,7 @@ type BarChartProps = {
|
|
2418
2515
|
icons?: (string | React__default.ReactNode)[];
|
2419
2516
|
iconSize?: number;
|
2420
2517
|
backgroundColor?: string;
|
2518
|
+
legendPosition?: 'top' | 'bottom';
|
2421
2519
|
};
|
2422
2520
|
declare const BarChart: React__default.FC<BarChartProps>;
|
2423
2521
|
|
@@ -2478,4 +2576,23 @@ declare const ConnectingBranch: React__default.FC;
|
|
2478
2576
|
|
2479
2577
|
declare const saveFileFromBlob: (blob: Blob, filename: string) => void;
|
2480
2578
|
|
2481
|
-
|
2579
|
+
declare const useFileDropzone: (options: DropzoneOptions) => DropzoneState;
|
2580
|
+
|
2581
|
+
interface PopUpModalProps {
|
2582
|
+
isOpen: boolean;
|
2583
|
+
onClose: () => void;
|
2584
|
+
onContinue?: () => void;
|
2585
|
+
titleMessage: string;
|
2586
|
+
subTitleMessage?: string;
|
2587
|
+
iconName: string;
|
2588
|
+
modalMessage: string;
|
2589
|
+
footerMessage: string;
|
2590
|
+
firstButtonLabel?: string;
|
2591
|
+
secondButtonLabel: string;
|
2592
|
+
buttonVariant: any;
|
2593
|
+
border: string;
|
2594
|
+
}
|
2595
|
+
|
2596
|
+
declare const PopUpModal: FC<PopUpModalProps>;
|
2597
|
+
|
2598
|
+
export { Accordion, AddButton as AddResourceButton, AllProjectsDropdown, AppHeader, AttachImage, AttachmentButton, Avatar, BarChart, Button, Checkbox, Chip, Col, ConnectingBranch, Container, DashboardDonutChart, CustomDatePicker as DatePicker, DonutChart, DownloadClient, DragAndDrop, Drawer, Dropzone, EditTextField, Editor, ExcelFile as Excel, ExpandableMenu, FieldSet, FileDropzone, FilePreview, ForwardedForms as Form, HighlightText, Icon, IconButton, IconRadialChart, IconRadioGroup, Input, InputWithDropdown, LabelEditTextField, LineChart, MachineInputField, MenuOption, MiniModal, Modal, ModuleChip, MultiRadialChart, MultiSelect, NlpInput as NLPInput, Paper, PieChart, PopUpModal, RadialChart, RadioButton, RadioGroup, Recaptcha, Row, Search, Select, SequentialConnectingBranch, StateDropdown, StatusButton, StatusCard, Table, TreeTable as TableTree, Tabs, Textarea as TextArea, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, Typography, VariableDropdown, VariableInput, checkEmpty, compareArrays, compareObjects, debounce, ffid, findAndInsert, getEncryptedData, getExtension, getExtensionWithPeriod, getSequentialPayload, saveFileFromBlob, throttle, toast, truncateText, useFileDropzone, useTheme };
|