pixel-react 1.9.0 → 1.9.2

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 (165) 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/ExcelFile.d.ts +1 -3
  33. package/lib/components/Excel/ExcelFile.stories.d.ts +6 -0
  34. package/lib/components/Excel/Types.d.ts +1 -1
  35. package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
  36. package/lib/components/ExcelFile/ColorBarSelector/ColorBarSelector.d.ts +8 -0
  37. package/lib/components/ExcelFile/ContextMenu/ContextMenu.d.ts +4 -0
  38. package/lib/components/ExcelFile/ExcelFile/Excel/ActiveCell.d.ts +7 -0
  39. package/lib/components/ExcelFile/ExcelFile/Excel/Cell.d.ts +4 -0
  40. package/lib/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.d.ts +5 -0
  41. package/lib/components/ExcelFile/ExcelFile/Excel/Copied.d.ts +3 -0
  42. package/lib/components/ExcelFile/ExcelFile/Excel/CornerIndicator.d.ts +5 -0
  43. package/lib/components/ExcelFile/ExcelFile/Excel/DataEditor.d.ts +5 -0
  44. package/lib/components/ExcelFile/ExcelFile/Excel/DataViewer.d.ts +8 -0
  45. package/lib/components/ExcelFile/ExcelFile/Excel/FloatingRect.d.ts +10 -0
  46. package/lib/components/ExcelFile/ExcelFile/Excel/HeaderRow.d.ts +3 -0
  47. package/lib/components/ExcelFile/ExcelFile/Excel/Row.d.ts +3 -0
  48. package/lib/components/ExcelFile/ExcelFile/Excel/RowIndicator.d.ts +5 -0
  49. package/lib/components/ExcelFile/ExcelFile/Excel/Selected.d.ts +3 -0
  50. package/lib/components/ExcelFile/ExcelFile/Excel/Spreadsheet.d.ts +80 -0
  51. package/lib/components/ExcelFile/ExcelFile/Excel/Table.d.ts +3 -0
  52. package/lib/components/ExcelFile/ExcelFile/Excel/actions.d.ts +174 -0
  53. package/lib/components/ExcelFile/ExcelFile/Excel/areModelsEqual.d.ts +1 -0
  54. package/lib/components/ExcelFile/ExcelFile/Excel/context.d.ts +8 -0
  55. package/lib/components/ExcelFile/ExcelFile/Excel/engine/engine.d.ts +22 -0
  56. package/lib/components/ExcelFile/ExcelFile/Excel/engine/formula.d.ts +17 -0
  57. package/lib/components/ExcelFile/ExcelFile/Excel/engine/index.d.ts +2 -0
  58. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-graph.d.ts +21 -0
  59. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-hash.d.ts +3 -0
  60. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-set.d.ts +24 -0
  61. package/lib/components/ExcelFile/ExcelFile/Excel/index.d.ts +13 -0
  62. package/lib/components/ExcelFile/ExcelFile/Excel/matrix.d.ts +67 -0
  63. package/lib/components/ExcelFile/ExcelFile/Excel/point-range.d.ts +22 -0
  64. package/lib/components/ExcelFile/ExcelFile/Excel/point.d.ts +11 -0
  65. package/lib/components/ExcelFile/ExcelFile/Excel/reducer.d.ts +27 -0
  66. package/lib/components/ExcelFile/ExcelFile/Excel/selection.d.ts +95 -0
  67. package/lib/components/ExcelFile/ExcelFile/Excel/types.d.ts +178 -0
  68. package/lib/components/ExcelFile/ExcelFile/Excel/use-dispatch.d.ts +3 -0
  69. package/lib/components/ExcelFile/ExcelFile/Excel/use-selector.d.ts +3 -0
  70. package/lib/components/ExcelFile/ExcelFile/Excel/util.d.ts +44 -0
  71. package/lib/components/ExcelFile/ExcelFile/ExcelFile.d.ts +19 -0
  72. package/lib/components/ExcelFile/ExcelFile.stories.d.ts +6 -0
  73. package/lib/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.d.ts +12 -0
  74. package/lib/components/ExcelFile/ExcelToolBar/ExcelToolBar.d.ts +15 -0
  75. package/lib/components/ExcelFile/ImportExcelStyles.d.ts +24 -0
  76. package/lib/components/ExcelFile/Types.d.ts +129 -0
  77. package/lib/components/ExcelFile/index.d.ts +1 -0
  78. package/lib/components/FF_Captcha/captcha.stories.d.ts +8 -0
  79. package/lib/components/Form/Form.stories.d.ts +6 -5
  80. package/lib/components/Icon/Icon.stories.d.ts +1 -0
  81. package/lib/components/IconButton/IconButton.stories.d.ts +1 -0
  82. package/lib/components/IconRadioGroup/IconRadioGroup.stories.d.ts +7 -0
  83. package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +13 -0
  84. package/lib/components/MachineInputField/MachineInputField.stories.d.ts +6 -0
  85. package/lib/components/MenuOption/MenuOption.stories.d.ts +1 -0
  86. package/lib/components/MiniModal/MiniModal.stories.d.ts +2 -1
  87. package/lib/components/MobileSkin/types.d.ts +1 -1
  88. package/lib/components/ModulesChip/ModuleChip.stories.d.ts +6 -0
  89. package/lib/components/MultiSelect/MultiSelect.stories.d.ts +2 -0
  90. package/lib/components/NLPInput/NlpInput.stories.d.ts +7 -0
  91. package/lib/components/NLPInput/type.d.ts +70 -0
  92. package/lib/components/Paper/Paper.stories.d.ts +11 -0
  93. package/lib/components/RadioGroup/RadioGroup.stories.d.ts +2 -1
  94. package/lib/components/Select/Select.stories.d.ts +1 -0
  95. package/lib/components/Select/components/Dropdown/Dropdown.d.ts +1 -1
  96. package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +2 -0
  97. package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +6 -0
  98. package/lib/components/StatusCard/StatusCard.stories.d.ts +11 -0
  99. package/lib/components/Table/Table.stories.d.ts +2 -0
  100. package/lib/components/TableTree/data.d.ts +0 -40
  101. package/lib/components/Toastify/Toastify.stories.d.ts +6 -0
  102. package/lib/components/VariableInput/VariableInput.stories.d.ts +6 -0
  103. package/lib/index.d.ts +9 -25
  104. package/lib/index.esm.js +4443 -960
  105. package/lib/index.esm.js.map +1 -1
  106. package/lib/index.js +4444 -959
  107. package/lib/index.js.map +1 -1
  108. package/lib/tsconfig.tsbuildinfo +1 -1
  109. package/lib/utils/ffID/ffID.stories.d.ts +1 -1
  110. package/lib/utils/findAndInsert/findAndInsert.stories.d.ts +7 -0
  111. package/lib/utils/getEncryptedData/getEncryptedData.stories.d.ts +6 -0
  112. package/lib/utils/getSequentialPayload/getSequentialPayload.stories.d.ts +10 -0
  113. package/lib/utils/indexDBStore/indexDB.d.ts +2 -0
  114. package/package.json +1 -1
  115. package/src/assets/icons/approval_pending.svg +8 -8
  116. package/src/assets/icons/clear_cache.svg +5 -0
  117. package/src/assets/icons/clear_history.svg +6 -0
  118. package/src/assets/icons/code.svg +4 -0
  119. package/src/assets/icons/code_colored.svg +4 -0
  120. package/src/assets/icons/configuration.svg +3 -3
  121. package/src/assets/icons/csharp.svg +9 -0
  122. package/src/assets/icons/cypress.svg +9 -0
  123. package/src/assets/icons/defects.svg +8 -8
  124. package/src/assets/icons/delete_filled.svg +12 -0
  125. package/src/assets/icons/design_link.svg +7 -0
  126. package/src/assets/icons/disable_icon.svg +3 -0
  127. package/src/assets/icons/element.svg +4 -4
  128. package/src/assets/icons/enable_icon.svg +3 -0
  129. package/src/assets/icons/file_colored.svg +5 -0
  130. package/src/assets/icons/java.svg +4 -0
  131. package/src/assets/icons/javascript.svg +11 -0
  132. package/src/assets/icons/jira_colored.svg +15 -0
  133. package/src/assets/icons/mic.svg +4 -0
  134. package/src/assets/icons/mic_filled.svg +28 -0
  135. package/src/assets/icons/playwright.svg +9 -0
  136. package/src/assets/icons/project_element.svg +4 -4
  137. package/src/assets/icons/python.svg +19 -0
  138. package/src/assets/icons/regenerate.svg +4 -0
  139. package/src/assets/icons/right_arrow_filled_icon.svg +5 -0
  140. package/src/assets/icons/screenshot.svg +7 -0
  141. package/src/assets/icons/step_group.svg +10 -10
  142. package/src/assets/icons/variable.svg +3 -3
  143. package/src/assets/icons/web_service_icon.svg +3 -3
  144. package/src/components/Button/Button.tsx +2 -0
  145. package/src/components/Comment/Comments.scss +0 -1
  146. package/src/components/Comment/Comments.stories.tsx +22 -4
  147. package/src/components/Comment/Comments.tsx +20 -1
  148. package/src/components/Comment/type.ts +3 -3
  149. package/src/components/Excel/ExcelFile/ExcelFile.tsx +48 -42
  150. package/src/components/Excel/ExcelFile.stories.tsx +98 -96
  151. package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +65 -28
  152. package/src/components/Excel/Types.ts +1 -1
  153. package/src/components/Excel/dataConversion.ts +8 -10
  154. package/src/components/Icon/iconList.ts +46 -3
  155. package/src/components/MobileSkin/MobileSkin.scss +44 -44
  156. package/src/components/MobileSkin/MobileSkin.tsx +15 -14
  157. package/src/components/MobileSkin/types.ts +1 -1
  158. package/src/components/TableTree/Components/TableBody.tsx +1 -1
  159. package/src/components/TableTree/Components/TableCell.tsx +26 -12
  160. package/src/components/TableTree/TableTree.tsx +18 -15
  161. package/src/components/TableTree/data.ts +0 -31
  162. package/src/index.ts +3 -0
  163. package/src/utils/indexDBStore/indexDB.ts +67 -0
  164. package/lib/components/ThemeProvider/CustomThemeProvider.d.ts +0 -8
  165. 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;
@@ -30,40 +30,6 @@ declare const data: ({
30
30
  level: number;
31
31
  isLast: boolean;
32
32
  parentSiblings: boolean[];
33
- lines?: undefined;
34
- } | {
35
- node: {
36
- subModuleCount: number;
37
- title: string;
38
- scriptCount: number;
39
- path: string;
40
- expanded: boolean;
41
- modifiedOn: string;
42
- children: boolean;
43
- lastExecutionOrder: number;
44
- imported: boolean;
45
- modifiedBy: string;
46
- moduleCountWithScript: number;
47
- state: string;
48
- key: string;
49
- ver: number;
50
- hierarchy: number;
51
- assigneeCount: number;
52
- searchKey: string;
53
- modifiedByUname: string;
54
- executionOrder: number;
55
- createdByUname: string;
56
- folder: boolean;
57
- moduleLevelScriptCount: number;
58
- name: string;
59
- parentId: string;
60
- id: string;
61
- parentName?: undefined;
62
- };
63
- parentSiblings: boolean[];
64
- lines: number;
65
- level?: undefined;
66
- isLast?: undefined;
67
33
  } | {
68
34
  node: {
69
35
  subModuleCount: number;
@@ -96,7 +62,6 @@ declare const data: ({
96
62
  level: number;
97
63
  parentSiblings: boolean[];
98
64
  isLast?: undefined;
99
- lines?: undefined;
100
65
  } | {
101
66
  node: {
102
67
  ver: number;
@@ -129,7 +94,6 @@ declare const data: ({
129
94
  level: number;
130
95
  parentSiblings: boolean[];
131
96
  isLast?: undefined;
132
- lines?: undefined;
133
97
  } | {
134
98
  node: {
135
99
  ver: number;
@@ -162,7 +126,6 @@ declare const data: ({
162
126
  level: number;
163
127
  parentSiblings: boolean[];
164
128
  isLast?: undefined;
165
- lines?: undefined;
166
129
  } | {
167
130
  node: {
168
131
  ver: number;
@@ -195,7 +158,6 @@ declare const data: ({
195
158
  level: number;
196
159
  parentSiblings: boolean[];
197
160
  isLast: boolean;
198
- lines?: undefined;
199
161
  } | {
200
162
  node: {
201
163
  ver: number;
@@ -228,7 +190,6 @@ declare const data: ({
228
190
  level: number;
229
191
  parentSiblings: boolean[];
230
192
  isLast: boolean;
231
- lines?: undefined;
232
193
  } | {
233
194
  node: {
234
195
  subModuleCount: number;
@@ -261,6 +222,5 @@ declare const data: ({
261
222
  level: number;
262
223
  parentSiblings: boolean[];
263
224
  isLast: boolean;
264
- lines?: undefined;
265
225
  })[];
266
226
  export default data;
@@ -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
@@ -2515,9 +2515,7 @@ declare const EditTextField: FC<LabelEditTextFieldTypes>;
2515
2515
 
2516
2516
  interface ExcelFileProps {
2517
2517
  /** The Excel data containing sheets and their content */
2518
- excelData: {
2519
- sheets: WorkSheet[];
2520
- };
2518
+ excelData: WorkSheet[];
2521
2519
  /** Optional: Provide context menu options for actions like right-click */
2522
2520
  contextOption?: {
2523
2521
  open: boolean;
@@ -3077,32 +3075,15 @@ declare const saveFileFromBlob: (blob: Blob, filename: string) => void;
3077
3075
 
3078
3076
  declare const capitalize: (text: string) => string;
3079
3077
 
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
3078
  interface CommentsProps {
3098
3079
  commentsData: any;
3099
- handleAddComment: HandleAddComment;
3100
- handleEditComment: HandleEditComment;
3101
- handleDeleteComment: HandleDeleteComment;
3080
+ handleAddComment: any;
3081
+ handleEditComment: any;
3082
+ handleDeleteComment: any;
3102
3083
  onCommentsDataChange: (data: any) => void;
3103
3084
  }
3104
3085
 
3105
- declare const Comments: ({ commentsData, onCommentsDataChange, }: CommentsProps) => react_jsx_runtime.JSX.Element;
3086
+ declare const Comments: ({ commentsData, handleAddComment, handleEditComment, handleDeleteComment, onCommentsDataChange, }: CommentsProps) => react_jsx_runtime.JSX.Element;
3106
3087
 
3107
3088
  declare const useFileDropzone: (options: DropzoneOptions) => DropzoneState;
3108
3089
 
@@ -3343,4 +3324,7 @@ declare const ELEMENTS_TRAILING_SPACE_REGEX: RegExp;
3343
3324
  declare const ELEMENTS_WHITE_SPACE_REGEX: RegExp;
3344
3325
  declare const PARAMETER_ALPHANUMERIC_REGEX: RegExp;
3345
3326
 
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 };
3327
+ declare function saveToIndexedDB(key: string, value: string): Promise<void>;
3328
+ declare function getFromIndexedDB(key: string): Promise<string | null>;
3329
+
3330
+ 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 };