pixel-react 1.9.0 → 1.9.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.
Files changed (132) hide show
  1. package/lib/1fb4472b34e4fe07.css +1 -0
  2. package/lib/assets/fonts/Poppins-Bold.ttf +0 -0
  3. package/lib/assets/fonts/Poppins-Medium.ttf +0 -0
  4. package/lib/assets/fonts/Poppins-Regular.ttf +0 -0
  5. package/lib/assets/fonts/Poppins-SemiBold.ttf +0 -0
  6. package/lib/components/AddButton/AddButton.d.ts +5 -0
  7. package/lib/components/AddButton/AddButton.stories.d.ts +6 -0
  8. package/lib/components/AddButton/index.d.ts +1 -0
  9. package/lib/components/AddButton/types.d.ts +4 -0
  10. package/lib/components/AddVariables/AddVariables.d.ts +5 -0
  11. package/lib/components/AddVariables/index.d.ts +1 -0
  12. package/lib/components/AddVariables/types.d.ts +35 -0
  13. package/lib/components/AllProjectsDropdown/AllProjectsDropdown.stories.d.ts +7 -0
  14. package/lib/components/AppHeader/AppHeader.stories.d.ts +7 -0
  15. package/lib/components/AttachImage/AttachImage.stories.d.ts +7 -0
  16. package/lib/components/AttachmentButton/AttachmentButton.stories.d.ts +9 -0
  17. package/lib/components/Avatar/Avatar.stories.d.ts +10 -0
  18. package/lib/components/Button/Button.stories.d.ts +1 -0
  19. package/lib/components/Charts/BarChart/BarChart.stories.d.ts +6 -0
  20. package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.d.ts +7 -0
  21. package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +8 -0
  22. package/lib/components/Charts/LineChart/LineChart.stories.d.ts +7 -0
  23. package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +8 -0
  24. package/lib/components/Charts/PieChart/PieChart.stories.d.ts +7 -0
  25. package/lib/components/Comment/Comments.d.ts +1 -1
  26. package/lib/components/Comment/type.d.ts +3 -3
  27. package/lib/components/ConnectingBranch/ConnectingBranch.stories.d.ts +6 -0
  28. package/lib/components/Drawer/Drawer.stories.d.ts +5 -0
  29. package/lib/components/EditTextField/EditTextField.stories.d.ts +10 -0
  30. package/lib/components/Editor/Editor.stories.d.ts +6 -0
  31. package/lib/components/Excel/ContextMenu/ContextMenu.d.ts +4 -0
  32. package/lib/components/Excel/ExcelFile.stories.d.ts +6 -0
  33. package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
  34. package/lib/components/ExcelFile/ColorBarSelector/ColorBarSelector.d.ts +8 -0
  35. package/lib/components/ExcelFile/ContextMenu/ContextMenu.d.ts +4 -0
  36. package/lib/components/ExcelFile/ExcelFile/Excel/ActiveCell.d.ts +7 -0
  37. package/lib/components/ExcelFile/ExcelFile/Excel/Cell.d.ts +4 -0
  38. package/lib/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.d.ts +5 -0
  39. package/lib/components/ExcelFile/ExcelFile/Excel/Copied.d.ts +3 -0
  40. package/lib/components/ExcelFile/ExcelFile/Excel/CornerIndicator.d.ts +5 -0
  41. package/lib/components/ExcelFile/ExcelFile/Excel/DataEditor.d.ts +5 -0
  42. package/lib/components/ExcelFile/ExcelFile/Excel/DataViewer.d.ts +8 -0
  43. package/lib/components/ExcelFile/ExcelFile/Excel/FloatingRect.d.ts +10 -0
  44. package/lib/components/ExcelFile/ExcelFile/Excel/HeaderRow.d.ts +3 -0
  45. package/lib/components/ExcelFile/ExcelFile/Excel/Row.d.ts +3 -0
  46. package/lib/components/ExcelFile/ExcelFile/Excel/RowIndicator.d.ts +5 -0
  47. package/lib/components/ExcelFile/ExcelFile/Excel/Selected.d.ts +3 -0
  48. package/lib/components/ExcelFile/ExcelFile/Excel/Spreadsheet.d.ts +80 -0
  49. package/lib/components/ExcelFile/ExcelFile/Excel/Table.d.ts +3 -0
  50. package/lib/components/ExcelFile/ExcelFile/Excel/actions.d.ts +174 -0
  51. package/lib/components/ExcelFile/ExcelFile/Excel/areModelsEqual.d.ts +1 -0
  52. package/lib/components/ExcelFile/ExcelFile/Excel/context.d.ts +8 -0
  53. package/lib/components/ExcelFile/ExcelFile/Excel/engine/engine.d.ts +22 -0
  54. package/lib/components/ExcelFile/ExcelFile/Excel/engine/formula.d.ts +17 -0
  55. package/lib/components/ExcelFile/ExcelFile/Excel/engine/index.d.ts +2 -0
  56. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-graph.d.ts +21 -0
  57. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-hash.d.ts +3 -0
  58. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-set.d.ts +24 -0
  59. package/lib/components/ExcelFile/ExcelFile/Excel/index.d.ts +13 -0
  60. package/lib/components/ExcelFile/ExcelFile/Excel/matrix.d.ts +67 -0
  61. package/lib/components/ExcelFile/ExcelFile/Excel/point-range.d.ts +22 -0
  62. package/lib/components/ExcelFile/ExcelFile/Excel/point.d.ts +11 -0
  63. package/lib/components/ExcelFile/ExcelFile/Excel/reducer.d.ts +27 -0
  64. package/lib/components/ExcelFile/ExcelFile/Excel/selection.d.ts +95 -0
  65. package/lib/components/ExcelFile/ExcelFile/Excel/types.d.ts +178 -0
  66. package/lib/components/ExcelFile/ExcelFile/Excel/use-dispatch.d.ts +3 -0
  67. package/lib/components/ExcelFile/ExcelFile/Excel/use-selector.d.ts +3 -0
  68. package/lib/components/ExcelFile/ExcelFile/Excel/util.d.ts +44 -0
  69. package/lib/components/ExcelFile/ExcelFile/ExcelFile.d.ts +19 -0
  70. package/lib/components/ExcelFile/ExcelFile.stories.d.ts +6 -0
  71. package/lib/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.d.ts +12 -0
  72. package/lib/components/ExcelFile/ExcelToolBar/ExcelToolBar.d.ts +15 -0
  73. package/lib/components/ExcelFile/ImportExcelStyles.d.ts +24 -0
  74. package/lib/components/ExcelFile/Types.d.ts +129 -0
  75. package/lib/components/ExcelFile/index.d.ts +1 -0
  76. package/lib/components/FF_Captcha/captcha.stories.d.ts +8 -0
  77. package/lib/components/Form/Form.stories.d.ts +6 -5
  78. package/lib/components/Icon/Icon.stories.d.ts +1 -0
  79. package/lib/components/IconButton/IconButton.stories.d.ts +1 -0
  80. package/lib/components/IconRadioGroup/IconRadioGroup.stories.d.ts +7 -0
  81. package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +13 -0
  82. package/lib/components/MachineInputField/MachineInputField.stories.d.ts +6 -0
  83. package/lib/components/MenuOption/MenuOption.stories.d.ts +1 -0
  84. package/lib/components/MiniModal/MiniModal.stories.d.ts +2 -1
  85. package/lib/components/MobileSkin/types.d.ts +1 -1
  86. package/lib/components/ModulesChip/ModuleChip.stories.d.ts +6 -0
  87. package/lib/components/MultiSelect/MultiSelect.stories.d.ts +2 -0
  88. package/lib/components/NLPInput/NlpInput.stories.d.ts +7 -0
  89. package/lib/components/NLPInput/type.d.ts +70 -0
  90. package/lib/components/Paper/Paper.stories.d.ts +11 -0
  91. package/lib/components/RadioGroup/RadioGroup.stories.d.ts +2 -1
  92. package/lib/components/Select/Select.stories.d.ts +1 -0
  93. package/lib/components/Select/components/Dropdown/Dropdown.d.ts +1 -1
  94. package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +2 -0
  95. package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +6 -0
  96. package/lib/components/StatusCard/StatusCard.stories.d.ts +11 -0
  97. package/lib/components/Table/Table.stories.d.ts +2 -0
  98. package/lib/components/Toastify/Toastify.stories.d.ts +6 -0
  99. package/lib/components/VariableInput/VariableInput.stories.d.ts +6 -0
  100. package/lib/index.d.ts +8 -22
  101. package/lib/index.esm.js +4508 -905
  102. package/lib/index.esm.js.map +1 -1
  103. package/lib/index.js +4509 -904
  104. package/lib/index.js.map +1 -1
  105. package/lib/tsconfig.tsbuildinfo +1 -1
  106. package/lib/utils/ffID/ffID.stories.d.ts +1 -1
  107. package/lib/utils/findAndInsert/findAndInsert.stories.d.ts +7 -0
  108. package/lib/utils/getEncryptedData/getEncryptedData.stories.d.ts +6 -0
  109. package/lib/utils/getSequentialPayload/getSequentialPayload.stories.d.ts +10 -0
  110. package/lib/utils/indexDBStore/indexDB.d.ts +2 -0
  111. package/package.json +2 -1
  112. package/src/assets/icons/approval_pending.svg +8 -8
  113. package/src/assets/icons/clear_cache.svg +5 -0
  114. package/src/assets/icons/configuration.svg +3 -3
  115. package/src/assets/icons/defects.svg +8 -8
  116. package/src/assets/icons/element.svg +4 -4
  117. package/src/assets/icons/project_element.svg +4 -4
  118. package/src/assets/icons/step_group.svg +10 -10
  119. package/src/assets/icons/variable.svg +3 -3
  120. package/src/assets/icons/web_service_icon.svg +3 -3
  121. package/src/components/Comment/Comments.scss +0 -1
  122. package/src/components/Comment/Comments.stories.tsx +22 -4
  123. package/src/components/Comment/Comments.tsx +20 -1
  124. package/src/components/Comment/type.ts +3 -3
  125. package/src/components/Icon/iconList.ts +2 -0
  126. package/src/components/MobileSkin/MobileSkin.scss +44 -44
  127. package/src/components/MobileSkin/MobileSkin.tsx +15 -14
  128. package/src/components/MobileSkin/types.ts +1 -1
  129. package/src/index.ts +3 -0
  130. package/src/utils/indexDBStore/indexDB.ts +37 -0
  131. package/lib/components/ThemeProvider/CustomThemeProvider.d.ts +0 -8
  132. package/lib/hooks/useCustomThemeProvider.d.ts +0 -11
@@ -4,5 +4,6 @@ declare const meta: Meta<typeof RadioGroup>;
4
4
  type Story = StoryObj<typeof RadioGroup>;
5
5
  export declare const Controlled: Story;
6
6
  export declare const WithDisabledOption: Story;
7
- export declare const DisabledSelcted: Story;
7
+ export declare const DisabledSelected: Story;
8
+ export declare const WithToolTipIcon: Story;
8
9
  export default meta;
@@ -10,4 +10,5 @@ export declare const Disable: Story;
10
10
  export declare const WithInitialValue: Story;
11
11
  export declare const OptionSelection: Story;
12
12
  export declare const CustomJSX: Story;
13
+ export declare const updateOptionFromOutside: Story;
13
14
  export default meta;
@@ -1,4 +1,4 @@
1
1
  import { DropDownListProps } from './dropdownTypes';
2
2
  import './Dropdown.scss';
3
- declare const Dropdown: ({ onSelectBlur, onSelectOptionSelector, dropdownPosition, options, optionZIndex, inputRef, }: DropDownListProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const Dropdown: ({ onSelectBlur, onSelectOptionSelector, dropdownPosition, options, optionZIndex, inputRef, labelAccessor, }: DropDownListProps) => import("react/jsx-runtime").JSX.Element;
4
4
  export default Dropdown;
@@ -6,6 +6,8 @@ export interface DropDownListProps {
6
6
  options?: Option[];
7
7
  optionZIndex?: number;
8
8
  inputRef?: React.RefObject<HTMLInputElement>;
9
+ labelAccessor?: string;
10
+ valueAccessor?: string;
9
11
  }
10
12
  export declare const dropdownDefaultCSSData: {
11
13
  margin: number;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import SequentialConnectingBranch from './SequentialConnectingBranch';
3
+ declare const meta: Meta<typeof SequentialConnectingBranch>;
4
+ type Story = StoryObj<typeof SequentialConnectingBranch>;
5
+ export declare const Primary: Story;
6
+ export default meta;
@@ -0,0 +1,11 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import Card from './StatusCard';
3
+ import { CardProps } from './types';
4
+ declare const meta: Meta<typeof Card>;
5
+ export default meta;
6
+ type Story = StoryObj<CardProps>;
7
+ export declare const Passed: Story;
8
+ export declare const Failed: Story;
9
+ export declare const Warning: Story;
10
+ export declare const Skipped: Story;
11
+ export declare const Flaky: Story;
@@ -3,6 +3,8 @@ import Table from './Table';
3
3
  declare const meta: Meta<typeof Table>;
4
4
  type Story = StoryObj<typeof Table>;
5
5
  export declare const Default: Story;
6
+ export declare const PrimaryHeaderTextColor: Story;
7
+ export declare const TableDataTextColor: Story;
6
8
  export declare const PageTable: Story;
7
9
  export declare const PrimaryHeader: Story;
8
10
  export declare const FixedHeaderWithBorder: Story;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Toastify } from './Toastify';
3
+ declare const meta: Meta<typeof Toastify>;
4
+ type Story = StoryObj<typeof Toastify>;
5
+ export declare const Controlled: Story;
6
+ export default meta;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import VariableInput from './VariableInput';
3
+ declare const meta: Meta<typeof VariableInput>;
4
+ type Story = StoryObj<typeof VariableInput>;
5
+ export declare const Default: Story;
6
+ export default meta;
package/lib/index.d.ts CHANGED
@@ -3077,32 +3077,15 @@ declare const saveFileFromBlob: (blob: Blob, filename: string) => void;
3077
3077
 
3078
3078
  declare const capitalize: (text: string) => string;
3079
3079
 
3080
- interface CommentType {
3081
- id?: string | number;
3082
- description?: string;
3083
- createdBy?: string;
3084
- modifiedBy?: string;
3085
- createdByUname?: string;
3086
- modifiedByUname?: string;
3087
- createdOn?: string;
3088
- modifiedOn?: string;
3089
- name?: string;
3090
- emailId?: string[];
3091
- commentParentId?: string;
3092
- comments: CommentType[];
3093
- }
3094
- type HandleAddComment = (newComment: CommentType, parentCommentId?: string) => void;
3095
- type HandleEditComment = (commentId: string, updatedDescription: string) => void;
3096
- type HandleDeleteComment = (commentId: string) => void;
3097
3080
  interface CommentsProps {
3098
3081
  commentsData: any;
3099
- handleAddComment: HandleAddComment;
3100
- handleEditComment: HandleEditComment;
3101
- handleDeleteComment: HandleDeleteComment;
3082
+ handleAddComment: any;
3083
+ handleEditComment: any;
3084
+ handleDeleteComment: any;
3102
3085
  onCommentsDataChange: (data: any) => void;
3103
3086
  }
3104
3087
 
3105
- declare const Comments: ({ commentsData, onCommentsDataChange, }: CommentsProps) => react_jsx_runtime.JSX.Element;
3088
+ declare const Comments: ({ commentsData, handleAddComment, handleEditComment, handleDeleteComment, onCommentsDataChange, }: CommentsProps) => react_jsx_runtime.JSX.Element;
3106
3089
 
3107
3090
  declare const useFileDropzone: (options: DropzoneOptions) => DropzoneState;
3108
3091
 
@@ -3343,4 +3326,7 @@ declare const ELEMENTS_TRAILING_SPACE_REGEX: RegExp;
3343
3326
  declare const ELEMENTS_WHITE_SPACE_REGEX: RegExp;
3344
3327
  declare const PARAMETER_ALPHANUMERIC_REGEX: RegExp;
3345
3328
 
3346
- export { AADHAAR_REGEX, ALPHABET_ONLY_REGEX, ALPHANUMERIC_REGEX, ALPHANUMERIC_WITH_ROUND_BRACES_REGEX, Accordion, AddButton as AddResourceButton, AllProjectsDropdown, AppHeader, AttachImage, AttachmentButton, Avatar, BASE64_REGEX, BINARY_NUMBER_REGEX, BarChart, Button, CREDIT_CARD_REGEX, CURRENCY_GENERIC_REGEX, Checkbox, Chip, ChooseFile, Col, Comments, ConditionalDropdown, ConnectingBranch, Container, CreateVariableSlider, DATE_REGEX, DECIMAL_NUMBER_REGEX, DRIVING_LICENSE_REGEX, DashboardDonutChart, CustomDatePicker as DatePicker, DonutChart, DownloadClient, DragAndDrop, Drawer, Dropzone, ELEMENTS_TRAILING_SPACE_REGEX, ELEMENTS_WHITE_SPACE_REGEX, EMAIL_REGEX, EditTextField, Editor, ExcelFile as Excel, ExpandableMenu, 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_TAG_REGEX, HighlightText, 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, LINKEDIN_PROFILE_REGEX, LabelEditTextField, LineChart, MAC_ADDRESS_REGEX, MEMORY_VALIDATION_REGEX, MachineInputField, MenuOption, MiniModal, MobileSkin, Modal, ModuleChip, MultiRadialChart, MultiSelect, NlpInput as NLPInput, NLP_DESCRIPTION_REGEX, NUMBERS_ONLY_REGEX, NUMBER_REGEX, PAN_CARD_REGEX, PARAMETER_ALPHANUMERIC_REGEX, PASSWORD_COMPLEX_REGEX, PASSWORD_SIMPLE_REGEX, PHONE_REGEX, POSTAL_CODE_REGEX, Paper, PhoneInputField, PieChart, PopUpModal, ProgressBar, RGB_COLOR_REGEX, ROMAN_NUMERALS_REGEX, RadialChart, RadioButton, RadioGroup, Recaptcha, Row, SSN_REGEX, STEP_GROUP_NAME_REGEX, ScriptSwitchButton, Search, Select, SequentialConnectingBranch, StateDropdown, StatusButton, StatusCard, TIME_REGEX, TWITTER_HANDLE_REGEX, Table, _default as TableTree, TableWithAccordion, Tabs, Textarea as TextArea, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, Typography, UNIT_REGEX, URL_REGEX, USERNAME_REGEX, USERNAME_SPECIAL_REGEX, US_ZIP_CODE_REGEX, UUID_REGEX, VEHICLE_REGISTRATION_REGEX, VariableDropdown, VariableInput, WHITESPACE_REGEX, capitalize, checkEmpty, compareArrays, compareObjects, debounce, ffid, findAndInsert, getEncryptedData, getExtension, getExtensionWithPeriod, getSequentialPayload, hasDuplicateFile, saveFileFromBlob, throttle, toast, truncateText, useClickOutside, useFileDropzone, useKeyboardActions, useTheme };
3329
+ declare const saveToIndexedDB: (key: string, value: string) => Promise<void>;
3330
+ declare const getFromIndexedDB: (key: string) => Promise<string | null>;
3331
+
3332
+ export { AADHAAR_REGEX, ALPHABET_ONLY_REGEX, ALPHANUMERIC_REGEX, ALPHANUMERIC_WITH_ROUND_BRACES_REGEX, Accordion, AddButton as AddResourceButton, AllProjectsDropdown, AppHeader, AttachImage, AttachmentButton, Avatar, BASE64_REGEX, BINARY_NUMBER_REGEX, BarChart, Button, CREDIT_CARD_REGEX, CURRENCY_GENERIC_REGEX, Checkbox, Chip, ChooseFile, Col, Comments, ConditionalDropdown, ConnectingBranch, Container, CreateVariableSlider, DATE_REGEX, DECIMAL_NUMBER_REGEX, DRIVING_LICENSE_REGEX, DashboardDonutChart, CustomDatePicker as DatePicker, DonutChart, DownloadClient, DragAndDrop, Drawer, Dropzone, ELEMENTS_TRAILING_SPACE_REGEX, ELEMENTS_WHITE_SPACE_REGEX, EMAIL_REGEX, EditTextField, Editor, ExcelFile as Excel, ExpandableMenu, 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_TAG_REGEX, HighlightText, 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, LINKEDIN_PROFILE_REGEX, LabelEditTextField, LineChart, MAC_ADDRESS_REGEX, MEMORY_VALIDATION_REGEX, MachineInputField, MenuOption, MiniModal, MobileSkin, Modal, ModuleChip, MultiRadialChart, MultiSelect, NlpInput as NLPInput, NLP_DESCRIPTION_REGEX, NUMBERS_ONLY_REGEX, NUMBER_REGEX, PAN_CARD_REGEX, PARAMETER_ALPHANUMERIC_REGEX, PASSWORD_COMPLEX_REGEX, PASSWORD_SIMPLE_REGEX, PHONE_REGEX, POSTAL_CODE_REGEX, Paper, PhoneInputField, PieChart, PopUpModal, ProgressBar, RGB_COLOR_REGEX, ROMAN_NUMERALS_REGEX, RadialChart, RadioButton, RadioGroup, Recaptcha, Row, SSN_REGEX, STEP_GROUP_NAME_REGEX, ScriptSwitchButton, Search, Select, SequentialConnectingBranch, StateDropdown, StatusButton, StatusCard, TIME_REGEX, TWITTER_HANDLE_REGEX, Table, _default as TableTree, TableWithAccordion, Tabs, Textarea as TextArea, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, Typography, UNIT_REGEX, URL_REGEX, USERNAME_REGEX, USERNAME_SPECIAL_REGEX, US_ZIP_CODE_REGEX, UUID_REGEX, VEHICLE_REGISTRATION_REGEX, VariableDropdown, VariableInput, WHITESPACE_REGEX, capitalize, checkEmpty, compareArrays, compareObjects, debounce, ffid, findAndInsert, getEncryptedData, getExtension, getExtensionWithPeriod, getFromIndexedDB, getSequentialPayload, hasDuplicateFile, saveFileFromBlob, saveToIndexedDB, throttle, toast, truncateText, useClickOutside, useFileDropzone, useKeyboardActions, useTheme };