pixel-react 1.4.3 → 1.4.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (263) hide show
  1. package/.yarn/install-state.gz +0 -0
  2. package/lib/StyleGuide/ColorPalette/ColorPalette.stories.d.ts +6 -0
  3. package/lib/StyleGuide/Typography/Typography.stories.d.ts +6 -0
  4. package/lib/components/Accordion/Accordion.stories.d.ts +6 -0
  5. package/lib/components/AddButton/AddButton.d.ts +5 -0
  6. package/lib/components/AddButton/AddButton.stories.d.ts +6 -0
  7. package/lib/components/AddButton/index.d.ts +1 -0
  8. package/lib/components/AddButton/types.d.ts +4 -0
  9. package/lib/components/AddResourceButton/AddButton.stories.d.ts +8 -0
  10. package/lib/components/AddResourceButton/type.d.ts +1 -1
  11. package/lib/components/AllProjectsDropdown/AllProjectsDropdown.stories.d.ts +7 -0
  12. package/lib/components/AppHeader/AppHeader.stories.d.ts +7 -0
  13. package/lib/components/AttachImage/AttachImage.stories.d.ts +7 -0
  14. package/lib/components/AttachmentButton/AttachmentButton.stories.d.ts +9 -0
  15. package/lib/components/Avatar/Avatar.stories.d.ts +10 -0
  16. package/lib/components/Button/Button.stories.d.ts +13 -0
  17. package/lib/components/Charts/BarChart/BarChart.stories.d.ts +6 -0
  18. package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.d.ts +7 -0
  19. package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +6 -0
  20. package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +8 -0
  21. package/lib/components/Charts/LineChart/LineChart.stories.d.ts +7 -0
  22. package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +8 -0
  23. package/lib/components/Charts/PieChart/PieChart.stories.d.ts +7 -0
  24. package/lib/components/Charts/RadialChart/RadialChart.stories.d.ts +6 -0
  25. package/lib/components/Checkbox/Checkbox.stories.d.ts +8 -0
  26. package/lib/components/Chip/Chip.stories.d.ts +14 -0
  27. package/lib/components/ConnectingBranch/ConnectingBranch.stories.d.ts +6 -0
  28. package/lib/components/DatePicker/DatePicker.stories.d.ts +9 -0
  29. package/lib/components/DragAndDrop/DragAndDrop.stories.d.ts +6 -0
  30. package/lib/components/Drawer/Drawer.stories.d.ts +12 -0
  31. package/lib/components/Drawer/Types.d.ts +4 -0
  32. package/lib/components/EditTextField/EditTextField.stories.d.ts +10 -0
  33. package/lib/components/Editor/Editor.d.ts +1 -2
  34. package/lib/components/Editor/Editor.stories.d.ts +6 -0
  35. package/lib/components/Editor/types.d.ts +1 -5
  36. package/lib/components/Excel/ExcelContextMenu/ExcelContextMenu.d.ts +13 -0
  37. package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +0 -13
  38. package/lib/components/Excel/ExcelFile/ExcelFileComponents/actions.d.ts +29 -1
  39. package/lib/components/Excel/ExcelFile/ExcelFileComponents/engine/engine.d.ts +3 -9
  40. package/lib/components/Excel/ExcelFile/ExcelFileComponents/engine/formula.d.ts +2 -10
  41. package/lib/components/Excel/ExcelFile/ExcelFileComponents/engine/point-graph.d.ts +0 -1
  42. package/lib/components/Excel/ExcelFile/ExcelFileComponents/types.d.ts +27 -2
  43. package/lib/components/Excel/ExcelFile.stories.d.ts +6 -0
  44. package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
  45. package/lib/components/ExcelFile/ColorBarselector/ColorBarSelector.d.ts +8 -0
  46. package/lib/components/ExcelFile/ContextMenu/ContextMenu.d.ts +4 -0
  47. package/lib/components/ExcelFile/ExcelFile/Excel/ActiveCell.d.ts +7 -0
  48. package/lib/components/ExcelFile/ExcelFile/Excel/Cell.d.ts +4 -0
  49. package/lib/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.d.ts +5 -0
  50. package/lib/components/ExcelFile/ExcelFile/Excel/Copied.d.ts +3 -0
  51. package/lib/components/ExcelFile/ExcelFile/Excel/CornerIndicator.d.ts +5 -0
  52. package/lib/components/ExcelFile/ExcelFile/Excel/DataEditor.d.ts +5 -0
  53. package/lib/components/ExcelFile/ExcelFile/Excel/DataViewer.d.ts +8 -0
  54. package/lib/components/ExcelFile/ExcelFile/Excel/FloatingRect.d.ts +10 -0
  55. package/lib/components/ExcelFile/ExcelFile/Excel/HeaderRow.d.ts +3 -0
  56. package/lib/components/ExcelFile/ExcelFile/Excel/Row.d.ts +3 -0
  57. package/lib/components/ExcelFile/ExcelFile/Excel/RowIndicator.d.ts +5 -0
  58. package/lib/components/ExcelFile/ExcelFile/Excel/Selected.d.ts +3 -0
  59. package/lib/components/ExcelFile/ExcelFile/Excel/Spreadsheet.d.ts +81 -0
  60. package/lib/components/ExcelFile/ExcelFile/Excel/Table.d.ts +3 -0
  61. package/lib/components/ExcelFile/ExcelFile/Excel/actions.d.ts +130 -0
  62. package/lib/components/ExcelFile/ExcelFile/Excel/areModelsEqual.d.ts +1 -0
  63. package/lib/components/ExcelFile/ExcelFile/Excel/context.d.ts +8 -0
  64. package/lib/components/ExcelFile/ExcelFile/Excel/engine/engine.d.ts +22 -0
  65. package/lib/components/ExcelFile/ExcelFile/Excel/engine/formula.d.ts +17 -0
  66. package/lib/components/ExcelFile/ExcelFile/Excel/engine/index.d.ts +2 -0
  67. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-graph.d.ts +21 -0
  68. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-hash.d.ts +3 -0
  69. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-set.d.ts +24 -0
  70. package/lib/components/ExcelFile/ExcelFile/Excel/index.d.ts +13 -0
  71. package/lib/components/ExcelFile/ExcelFile/Excel/matrix.d.ts +67 -0
  72. package/lib/components/ExcelFile/ExcelFile/Excel/point-range.d.ts +22 -0
  73. package/lib/components/ExcelFile/ExcelFile/Excel/point.d.ts +11 -0
  74. package/lib/components/ExcelFile/ExcelFile/Excel/reducer.d.ts +27 -0
  75. package/lib/components/ExcelFile/ExcelFile/Excel/selection.d.ts +95 -0
  76. package/lib/components/ExcelFile/ExcelFile/Excel/types.d.ts +215 -0
  77. package/lib/components/ExcelFile/ExcelFile/Excel/use-dispatch.d.ts +3 -0
  78. package/lib/components/ExcelFile/ExcelFile/Excel/use-selector.d.ts +3 -0
  79. package/lib/components/ExcelFile/ExcelFile/Excel/util.d.ts +45 -0
  80. package/lib/components/ExcelFile/ExcelFile/ExcelFile.d.ts +3 -0
  81. package/lib/components/ExcelFile/ExcelFile.stories.d.ts +6 -0
  82. package/lib/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.d.ts +15 -0
  83. package/lib/components/ExcelFile/ExcelToolBar/ExcelToolBar.d.ts +3 -0
  84. package/lib/components/ExcelFile/ImportExcelStyles.d.ts +24 -0
  85. package/lib/components/ExcelFile/Types.d.ts +176 -0
  86. package/lib/components/ExcelFile/index.d.ts +1 -0
  87. package/lib/components/ExpandableMenu/ExpandableMenu.stories.d.ts +7 -0
  88. package/lib/components/FF_Captcha/captcha.stories.d.ts +8 -0
  89. package/lib/components/FileDropzone/FileDropzone.stories.d.ts +8 -0
  90. package/lib/components/Form/Form.stories.d.ts +7 -0
  91. package/lib/components/Form/Forms.d.ts +4 -2
  92. package/lib/components/GridLayout/GridLayout.stories.d.ts +8 -0
  93. package/lib/components/HighlightText/HighlightText.stories.d.ts +6 -0
  94. package/lib/components/Icon/Icon.stories.d.ts +8 -0
  95. package/lib/components/IconButton/IconButton.stories.d.ts +7 -0
  96. package/lib/components/IconRadioGroup/IconRadioGroup.stories.d.ts +7 -0
  97. package/lib/components/Input/Input.stories.d.ts +9 -0
  98. package/lib/components/InputWithDropdown/InputWithDropdown.d.ts +1 -1
  99. package/lib/components/InputWithDropdown/InputWithDropdown.stories.d.ts +9 -0
  100. package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +13 -0
  101. package/lib/components/LazyLoad/LazyLoad.stories.d.ts +6 -0
  102. package/lib/components/MachineInputField/MachineInputField.stories.d.ts +6 -0
  103. package/lib/components/MenuOption/MenuOption.d.ts +1 -1
  104. package/lib/components/MenuOption/MenuOption.stories.d.ts +16 -0
  105. package/lib/components/MenuOption/types.d.ts +49 -15
  106. package/lib/components/MiniModal/MiniModal.stories.d.ts +10 -0
  107. package/lib/components/Modal/Modal.stories.d.ts +7 -0
  108. package/lib/components/ModulesChip/ModuleChip.stories.d.ts +6 -0
  109. package/lib/components/MultiSelect/MultiSelect.d.ts +1 -1
  110. package/lib/components/MultiSelect/MultiSelect.stories.d.ts +12 -0
  111. package/lib/components/MultiSelect/MultiSelectTypes.d.ts +4 -5
  112. package/lib/components/MultiSelect/dropdownTypes.d.ts +2 -0
  113. package/lib/components/NLPInput/NlpInput.stories.d.ts +7 -0
  114. package/lib/components/Paper/Paper.stories.d.ts +11 -0
  115. package/lib/components/RadioButton/RadioButton.d.ts +1 -0
  116. package/lib/components/RadioButton/RadioButton.stories.d.ts +10 -0
  117. package/lib/components/RadioButton/radioButtonTypes.d.ts +3 -1
  118. package/lib/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
  119. package/lib/components/Search/Search.stories.d.ts +6 -0
  120. package/lib/components/Select/Select.stories.d.ts +14 -0
  121. package/lib/components/Select/components/Dropdown/Dropdown.d.ts +4 -0
  122. package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +17 -0
  123. package/lib/components/Select/components/types.d.ts +4 -2
  124. package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +6 -0
  125. package/lib/components/StateDropdown/StateDropdown.stories.d.ts +10 -0
  126. package/lib/components/StatusButton/StatusButton.stories.d.ts +14 -0
  127. package/lib/components/StatusCard/StatusCard.stories.d.ts +11 -0
  128. package/lib/components/Table/Table.d.ts +1 -1
  129. package/lib/components/Table/Table.stories.d.ts +13 -0
  130. package/lib/components/TableTree/TableTree.stories.d.ts +7 -0
  131. package/lib/components/Tabs/Tabs.stories.d.ts +9 -0
  132. package/lib/components/TextArea/Textarea.stories.d.ts +9 -0
  133. package/lib/components/Toast/Toast.stories.d.ts +6 -0
  134. package/lib/components/Toastify/Toastify.stories.d.ts +6 -0
  135. package/lib/components/Toggle/Toggle.stories.d.ts +12 -0
  136. package/lib/components/ToggleSwitch/ToggleSwitch.d.ts +10 -0
  137. package/lib/components/ToggleSwitch/index.d.ts +1 -0
  138. package/lib/components/Tooltip/Tooltip.stories.d.ts +15 -0
  139. package/lib/components/Typography/Typography.stories.d.ts +10 -0
  140. package/lib/components/VariableInput/VariableInput.stories.d.ts +6 -0
  141. package/lib/index.d.ts +140 -29
  142. package/lib/index.esm.js +15628 -5724
  143. package/lib/index.esm.js.map +1 -1
  144. package/lib/index.js +15625 -5718
  145. package/lib/index.js.map +1 -1
  146. package/lib/tsconfig.tsbuildinfo +1 -1
  147. package/lib/utils/checkEmpty/checkEmpty.stories.d.ts +6 -0
  148. package/lib/utils/compareArrays/compareArrays.stories.d.ts +6 -0
  149. package/lib/utils/compareObjects/compareObjects.stories.d.ts +6 -0
  150. package/lib/utils/debounce/debounce.stories.d.ts +6 -0
  151. package/lib/utils/ffID/ffID.stories.d.ts +6 -0
  152. package/lib/utils/find/findAndInsert.d.ts +7 -0
  153. package/lib/utils/find/findAndInsert.stories.d.ts +7 -0
  154. package/lib/utils/findAndInsert/findAndInsert.stories.d.ts +7 -0
  155. package/lib/utils/getEncryptedData/getEncryptedData.stories.d.ts +6 -0
  156. package/lib/utils/getExtension/getExtension.stories.d.ts +6 -0
  157. package/lib/utils/getSequentialPayload/getSequentialPayload.stories.d.ts +10 -0
  158. package/lib/utils/throttle/throttle.stories.d.ts +6 -0
  159. package/lib/utils/truncateText/truncateText.stories.d.ts +6 -0
  160. package/package.json +12 -12
  161. package/src/StyleGuide/ColorPalette/colorPaletteList.ts +10 -0
  162. package/src/assets/Themes/BaseTheme.scss +17 -23
  163. package/src/assets/Themes/DarkTheme.scss +25 -38
  164. package/src/assets/icons/apk_file_type.svg +4 -0
  165. package/src/assets/icons/compressed_file_type.svg +4 -0
  166. package/src/assets/icons/csv_file_type.svg +4 -0
  167. package/src/assets/icons/excel_corner_menu.svg +3 -0
  168. package/src/assets/icons/formula_icon.svg +3 -0
  169. package/src/assets/icons/gif_file_type.svg +4 -0
  170. package/src/assets/icons/html_file_type.svg +4 -0
  171. package/src/assets/icons/ipk_file_type.svg +4 -0
  172. package/src/assets/icons/jpg_file_type.svg +4 -0
  173. package/src/assets/icons/json_file_type.svg +4 -0
  174. package/src/assets/icons/pdf_file_type.svg +4 -0
  175. package/src/assets/icons/png_file_type.svg +4 -0
  176. package/src/assets/icons/quick_run_setting_icon.svg +5 -0
  177. package/src/assets/icons/run_automation_scripts_icon.svg +33 -0
  178. package/src/assets/icons/run_manual_testcase_icon.svg +4 -0
  179. package/src/assets/icons/search.svg +2 -2
  180. package/src/assets/icons/txt_file_type.svg +4 -0
  181. package/src/assets/icons/xls_file_type.svg +4 -0
  182. package/src/assets/icons/xlsx_file_type.svg +4 -0
  183. package/src/assets/icons/xml_file_type.svg +4 -0
  184. package/src/components/AddResourceButton/AddButton.tsx +7 -7
  185. package/src/components/AddResourceButton/type.ts +1 -1
  186. package/src/components/AttachmentButton/AttachmentButton.scss +1 -1
  187. package/src/components/AttachmentButton/AttachmentButton.stories.tsx +1 -0
  188. package/src/components/Button/Button.scss +22 -20
  189. package/src/components/Button/Button.tsx +8 -1
  190. package/src/components/Drawer/Drawer.scss +4 -3
  191. package/src/components/Drawer/Drawer.tsx +14 -18
  192. package/src/components/Drawer/Types.ts +4 -0
  193. package/src/components/Editor/Editor.tsx +224 -193
  194. package/src/components/Editor/types.ts +1 -5
  195. package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.scss +39 -0
  196. package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.tsx +51 -0
  197. package/src/components/Excel/ExcelFile/ExcelFile.tsx +7 -8
  198. package/src/components/Excel/ExcelFile/ExcelFileComponents/Cell.tsx +35 -0
  199. package/src/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.tsx +44 -7
  200. package/src/components/Excel/ExcelFile/ExcelFileComponents/CornerIndicator.tsx +8 -1
  201. package/src/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.tsx +45 -6
  202. package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.scss +37 -2
  203. package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.tsx +69 -24
  204. package/src/components/Excel/ExcelFile/ExcelFileComponents/actions.ts +59 -0
  205. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/engine.ts +18 -65
  206. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/formula.ts +5 -110
  207. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-graph.ts +0 -2
  208. package/src/components/Excel/ExcelFile/ExcelFileComponents/reducer.ts +105 -1
  209. package/src/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.ts +670 -673
  210. package/src/components/Excel/ExcelFile/ExcelFileComponents/types.ts +38 -2
  211. package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +0 -4
  212. package/src/components/FileDropzone/FileDropzone.scss +4 -2
  213. package/src/components/FileDropzone/FileDropzone.tsx +1 -1
  214. package/src/components/FileDropzone/FilePreview.tsx +3 -1
  215. package/src/components/Form/Form.scss +2 -0
  216. package/src/components/Form/Form.stories.tsx +195 -6
  217. package/src/components/Form/Forms.tsx +15 -8
  218. package/src/components/Icon/iconList.ts +46 -0
  219. package/src/components/IconRadioGroup/IconRadioGroup.scss +3 -0
  220. package/src/components/IconRadioGroup/IconRadioGroup.tsx +20 -17
  221. package/src/components/Input/Input.scss +14 -15
  222. package/src/components/Input/Input.stories.tsx +2 -1
  223. package/src/components/InputWithDropdown/InputWithDropdown.scss +12 -13
  224. package/src/components/InputWithDropdown/InputWithDropdown.stories.tsx +3 -2
  225. package/src/components/InputWithDropdown/InputWithDropdown.tsx +22 -19
  226. package/src/components/MenuOption/MenuOption.scss +11 -10
  227. package/src/components/MenuOption/MenuOption.stories.tsx +51 -232
  228. package/src/components/MenuOption/MenuOption.tsx +131 -52
  229. package/src/components/MenuOption/types.ts +55 -14
  230. package/src/components/MiniModal/MiniModal.stories.tsx +2 -3
  231. package/src/components/MultiSelect/Dropdown.tsx +11 -12
  232. package/src/components/MultiSelect/MultiSelect.scss +1 -0
  233. package/src/components/MultiSelect/MultiSelect.stories.tsx +45 -10
  234. package/src/components/MultiSelect/MultiSelect.tsx +29 -13
  235. package/src/components/MultiSelect/MultiSelectTypes.ts +7 -5
  236. package/src/components/MultiSelect/dropdownTypes.ts +2 -0
  237. package/src/components/RadioButton/RadioButton.scss +3 -1
  238. package/src/components/RadioButton/RadioButton.tsx +3 -1
  239. package/src/components/RadioButton/radioButtonTypes.tsx +5 -1
  240. package/src/components/Search/Search.scss +25 -6
  241. package/src/components/Search/Search.tsx +45 -24
  242. package/src/components/Select/Select.scss +12 -12
  243. package/src/components/Select/Select.stories.tsx +2 -0
  244. package/src/components/Select/Select.tsx +11 -5
  245. package/src/components/Select/components/Dropdown.scss +2 -0
  246. package/src/components/Select/components/Dropdown.tsx +19 -4
  247. package/src/components/Select/components/types.ts +4 -2
  248. package/src/components/StatusButton/StatusButton.tsx +26 -20
  249. package/src/components/Table/Table.scss +1 -3
  250. package/src/components/Table/Table.stories.tsx +1 -0
  251. package/src/components/Table/Table.tsx +7 -3
  252. package/src/components/ToggleSwitch/ToggleSwitch.scss +59 -0
  253. package/src/components/ToggleSwitch/ToggleSwitch.stories.tsx +52 -0
  254. package/src/components/ToggleSwitch/ToggleSwitch.tsx +30 -0
  255. package/src/components/ToggleSwitch/index.ts +1 -0
  256. package/src/hooks/useFileDropzone.tsx +1 -0
  257. package/src/index.ts +7 -3
  258. package/lib/assets/fonts/Poppins-Bold.ttf +0 -0
  259. package/lib/assets/fonts/Poppins-Medium.ttf +0 -0
  260. package/lib/assets/fonts/Poppins-Regular.ttf +0 -0
  261. package/lib/assets/fonts/Poppins-SemiBold.ttf +0 -0
  262. package/src/components/Excel/ContextMenu/ContextMenu.scss +0 -99
  263. package/src/components/Excel/ContextMenu/ContextMenu.tsx +0 -103
@@ -1,10 +1,10 @@
1
1
  import * as React from 'react';
2
- import FormulaParser from 'fast-formula-parser';
3
2
  import { Point } from './point';
4
3
  import { Selection } from './selection';
5
4
  import { Model } from './engine';
6
5
  import { PointRange } from './point-range';
7
6
  import { Matrix } from './matrix';
7
+ import * as MatrixValue from './matrix';
8
8
 
9
9
  /** The base type of cell data in Spreadsheet */
10
10
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
@@ -65,6 +65,8 @@ export type StoreState<Cell extends CellBase = CellBase> = {
65
65
  dragging: boolean;
66
66
  lastChanged: Point | null;
67
67
  lastCommit: null | CellChange<Cell>[];
68
+ selectedRow: null | number;
69
+ selectedColumn: null | number;
68
70
  };
69
71
 
70
72
  export type CellChange<Cell extends CellBase = CellBase> = {
@@ -102,6 +104,8 @@ export type CellComponentProps<Cell extends CellBase = CellBase> = {
102
104
  setCellDimensions: (point: Point, dimensions: Dimensions) => void;
103
105
  /** Set data of the cell */
104
106
  setCellData: (cell: Cell) => void;
107
+
108
+ setContextMenu: React.Dispatch<React.SetStateAction<ContextMenuState>>;
105
109
  };
106
110
 
107
111
  /** Type of the Spreadsheet Cell component */
@@ -174,6 +178,30 @@ export type RowIndicatorProps = {
174
178
  selected: boolean;
175
179
  /** Callback to be called when the row is selected */
176
180
  onSelect: (row: number, extend: boolean) => void;
181
+
182
+ setContextMenu: React.Dispatch<React.SetStateAction<ContextMenuState>>;
183
+
184
+ deleteRow: (data: MatrixValue.Matrix<CellBase>) => void;
185
+
186
+ addRowTop: (data: MatrixValue.Matrix<CellBase>) => void;
187
+
188
+ data: MatrixValue.Matrix<CellBase>;
189
+ };
190
+
191
+ export type ContextMenuState = {
192
+ open: boolean;
193
+ position: {
194
+ x: number;
195
+ y: number;
196
+ };
197
+ options: optionsType[];
198
+ };
199
+
200
+ type optionsType = {
201
+ label: string;
202
+ value: string;
203
+ iconName: string;
204
+ action: () => void;
177
205
  };
178
206
 
179
207
  /** Type of the RowIndicator component */
@@ -191,6 +219,14 @@ export type ColumnIndicatorProps = {
191
219
  fixed?: boolean;
192
220
  /** Callback to be called when the column is selected */
193
221
  onSelect: (column: number, extend: boolean) => void;
222
+
223
+ setContextMenu: React.Dispatch<React.SetStateAction<ContextMenuState>>;
224
+
225
+ deleteColumn: (data: MatrixValue.Matrix<CellBase>) => void;
226
+
227
+ addColumnLeft: (data: MatrixValue.Matrix<CellBase>) => void;
228
+
229
+ data: MatrixValue.Matrix<CellBase>;
194
230
  };
195
231
 
196
232
  /** Type of the ColumnIndicator component */
@@ -214,4 +250,4 @@ export type CommitChanges<Cell extends CellBase = CellBase> = Array<{
214
250
  nextCell: Cell | null;
215
251
  }>;
216
252
 
217
- export type CreateFormulaParser = (data: Matrix<CellBase>) => FormulaParser;
253
+ export type CreateFormulaParser = (data: Matrix<CellBase>) =>void;
@@ -169,10 +169,6 @@ const ExcelToolBar: React.FC<ExcelToolBarProps> = ({
169
169
  setFontSize(data, e.value as string);
170
170
  }}
171
171
  optionsList={fontSize}
172
- selectedOption={{
173
- label: '11',
174
- value: '11',
175
- }}
176
172
  />
177
173
  </div>
178
174
  </Col>
@@ -29,8 +29,9 @@
29
29
  flex-direction: column;
30
30
  text-align: center;
31
31
  gap: 8px;
32
-
33
- &--active {
32
+ transition: background-color 0.2s ease;
33
+
34
+ &:hover, &--active {
34
35
  background-color: var(--file-dropzone-selected-color);
35
36
  }
36
37
 
@@ -121,6 +122,7 @@
121
122
  .ff-file-actions {
122
123
  display: flex;
123
124
  align-items: center;
125
+ gap: 8px;
124
126
  &__icon-replace,
125
127
  &__icon-remove {
126
128
  @include icon-container;
@@ -8,7 +8,7 @@ import Dropzone from './Dropzone';
8
8
  import FilePreview from './FilePreview';
9
9
 
10
10
  const FileDropzone: React.FC<FileDropzoneProps> = ({
11
- icon = <Icon name="dropzone_icon" height={80} width={80} />,
11
+ icon = <Icon name="dropzone_icon" height={80} width={80} hoverEffect={false} />,
12
12
  primaryLabel = 'Drag & drop your file to upload',
13
13
  secondaryLabel = 'Or',
14
14
  buttonLabel = 'Choose File to upload',
@@ -52,6 +52,7 @@ const FilePreview: React.FC<FilePreviewProps> = ({
52
52
  color={'var(--icons-default-color)'}
53
53
  height={16}
54
54
  width={16}
55
+ hoverEffect
55
56
  onClick={() => onReplaceClick(file)}
56
57
  />
57
58
  </Tooltip>
@@ -59,9 +60,10 @@ const FilePreview: React.FC<FilePreviewProps> = ({
59
60
  <div className="ff-file-actions__icon-remove">
60
61
  <Tooltip title="Remove">
61
62
  <Icon
62
- name="remove"
63
+ name="close"
63
64
  height={16}
64
65
  width={16}
66
+ hoverEffect
65
67
  color={'var(--default-icon-color)'}
66
68
  onClick={() => onRemoveClick(file)}
67
69
  />
@@ -8,6 +8,8 @@
8
8
  padding: 20px;
9
9
  width: 400px;
10
10
  margin: 0 auto;
11
+ display: grid;
12
+ gap: 8px;
11
13
 
12
14
  .ff-form-group {
13
15
  margin-bottom: 16px;
@@ -1,8 +1,9 @@
1
+ import React, { useRef } from 'react';
1
2
  import Forms from './Forms';
2
3
  import Input from '../Input';
3
4
  import RadioGroup from '../RadioGroup';
4
5
  import Select from '../Select';
5
- import { Meta, StoryObj } from '@storybook/react/*';
6
+ import { Meta, StoryObj } from '@storybook/react';
6
7
  import Typography from '../Typography';
7
8
  import './Form.scss';
8
9
  import Checkbox from '../Checkbox';
@@ -10,6 +11,7 @@ import TextArea from '../TextArea';
10
11
  import Drawer from '../Drawer';
11
12
  import { useState } from 'react';
12
13
  import { Container } from '../GridLayout/GridLayout';
14
+ import Button from '../Button/Button';
13
15
 
14
16
  type FormValues = {
15
17
  username: string;
@@ -73,7 +75,7 @@ export const WithDefaultValues: Story = {
73
75
  primaryButtonProps={pageDrawerPrimaryButton}
74
76
  secondaryButtonProps={pageDrawerSecondaryButton}
75
77
  >
76
- <Container fluid className='ff-forms-container'>
78
+ <Container fluid className="ff-forms-container">
77
79
  <Forms<FormValues>
78
80
  onSubmit={onSubmit}
79
81
  id="element"
@@ -91,9 +93,9 @@ export const WithDefaultValues: Story = {
91
93
  <div className="ff-main">
92
94
  {/* Username Field */}
93
95
  <div>
94
- <Typography as="label">username</Typography>
95
96
  <Input
96
97
  type="text"
98
+ label='Username'
97
99
  disabled={false}
98
100
  {...register('username', {
99
101
  required: {
@@ -125,10 +127,9 @@ export const WithDefaultValues: Story = {
125
127
 
126
128
  {/* Email Field */}
127
129
  <div>
128
- <Typography as="label">Email</Typography>
129
-
130
130
  <Input
131
131
  type="email"
132
+ label="Email"
132
133
  disabled={false}
133
134
  {...register('email', {
134
135
  required: { value: true, message: 'Email is required' },
@@ -153,8 +154,8 @@ export const WithDefaultValues: Story = {
153
154
 
154
155
  {/* Password Field */}
155
156
  <div>
156
- <Typography as="label">Password</Typography>
157
157
  <Input
158
+ label="Password"
158
159
  disabled={false}
159
160
  type="password"
160
161
  {...register('password', {
@@ -320,4 +321,192 @@ export const WithDefaultValues: Story = {
320
321
  },
321
322
  };
322
323
 
324
+ export const WithSubmissionOutside: Story = {
325
+ render: () => {
326
+ const [isDrawerOpen, setIsDrawerOpen] = useState(true);
327
+ type FormValues = {
328
+ username: string;
329
+ email: string;
330
+ password: string;
331
+ check: boolean;
332
+ };
333
+
334
+ const initialFormState: FormValues = {
335
+ username: '',
336
+ email: '',
337
+ password: '',
338
+ check: false,
339
+ };
340
+
341
+ const formRef = useRef<any>(null);
342
+
343
+ const handleSubmit = (data: FormValues) => {
344
+ alert('Form submitted with: ' + JSON.stringify(data));
345
+ };
346
+
347
+ const submitForm = () => {
348
+ formRef.current.submit();
349
+ };
350
+
351
+ const handleCreateAndContinue = () => {
352
+ formRef.current.submit();
353
+ formRef.current.reset();
354
+ formRef.current.clearErrors();
355
+ };
356
+
357
+ const handleReset = () => {
358
+ formRef.current.reset();
359
+ formRef.current.clearErrors();
360
+ }
361
+
362
+ const footerContent = (
363
+ <>
364
+ <Checkbox
365
+ label="Copy to shared"
366
+ disabled={false}
367
+ checked={formRef.current?.watch('check')}
368
+ {...formRef.current?.register('check', {
369
+ required: {
370
+ value: true,
371
+ message: 'Please select the checkbox',
372
+ },
373
+ })}
374
+ onChange={(e) => {
375
+ formRef.current?.setValue('check', e.target.checked, {
376
+ shouldValidate: true,
377
+ });
378
+ }}
379
+ />
380
+ <Button
381
+ variant="secondary"
382
+ onClick={() => setIsDrawerOpen(false)}
383
+ label="Cancel"
384
+ />
385
+ <Button
386
+ variant="secondary"
387
+ onClick={handleReset}
388
+ label="Reset"
389
+ />
390
+ <Button
391
+ variant="secondary"
392
+ onClick={handleCreateAndContinue}
393
+ label="Create and continue"
394
+ />
395
+ <Button variant="primary" onClick={submitForm} label="Submit" />
396
+ </>
397
+ );
398
+
399
+ return (
400
+ <div>
401
+ <Drawer
402
+ overlay
403
+ isOpen={isDrawerOpen}
404
+ title="Select Page"
405
+ onClose={() => setIsDrawerOpen(false)}
406
+ footerContent={footerContent}
407
+ >
408
+ <Forms
409
+ ref={formRef}
410
+ onSubmit={handleSubmit}
411
+ defaultValues={initialFormState}
412
+ >
413
+ {({
414
+ watch,
415
+ register,
416
+ setValue,
417
+ trigger,
418
+ formState: { errors },
419
+ }) => (
420
+ <div className="ff-form-container">
421
+ <div>
422
+ <Input
423
+ type="text"
424
+ label="Username"
425
+ value={watch('username')}
426
+ {...register('username', {
427
+ required: 'Username is required',
428
+ minLength: {
429
+ value: 3,
430
+ message: 'Username must be at least 3 characters',
431
+ },
432
+ })}
433
+ onChange={(e) =>
434
+ setValue('username', e.target.value, {
435
+ shouldValidate: true,
436
+ })
437
+ }
438
+ onBlur={() => {
439
+ trigger('username');
440
+ }}
441
+ error={!!errors.username}
442
+ helperText={errors.username?.message}
443
+ />
444
+ </div>
445
+
446
+ {/* Email Field */}
447
+ <div>
448
+ <Input
449
+ type="email"
450
+ label="Email"
451
+ value={watch('email')}
452
+ {...register('email', {
453
+ required: 'Email is required',
454
+ pattern: {
455
+ value: /^\S+@\S+\.\S+$/,
456
+ message: 'Please enter a valid email',
457
+ },
458
+ })}
459
+ onChange={(e) =>
460
+ setValue('email', e.target.value, {
461
+ shouldValidate: true,
462
+ })
463
+ }
464
+ onBlur={() => {
465
+ trigger('email');
466
+ }}
467
+ error={!!errors.email}
468
+ helperText={errors.email?.message}
469
+ />
470
+ </div>
471
+
472
+ {/* Password Field */}
473
+ <div>
474
+ <Input
475
+ label="Password"
476
+ value={watch('password')}
477
+ {...register('password', {
478
+ required: 'Password is required',
479
+ minLength: {
480
+ value: 6,
481
+ message: 'Password must be at least 6 characters',
482
+ },
483
+ })}
484
+ onChange={(e) =>
485
+ setValue('password', e.target.value, {
486
+ shouldValidate: true,
487
+ })
488
+ }
489
+ onBlur={() => {
490
+ trigger('password');
491
+ }}
492
+ placeholder="Enter your password"
493
+ type="password"
494
+ error={!!errors.password}
495
+ helperText={errors.password?.message}
496
+ />
497
+ </div>
498
+ </div>
499
+ )}
500
+ </Forms>
501
+ </Drawer>
502
+
503
+ {/* Submit Button Outside the Form */}
504
+ <Button onClick={submitForm} variant="primary">
505
+ Submit Form
506
+ </Button>
507
+ </div>
508
+ );
509
+ },
510
+ };
511
+
323
512
  export default meta;
@@ -1,4 +1,4 @@
1
- import React from 'react';
1
+ import React, { forwardRef, useImperativeHandle } from 'react';
2
2
  import Form from './Form';
3
3
 
4
4
  interface FormProps<T extends Form.FieldValues> extends Form.UseFormProps<T> {
@@ -7,16 +7,19 @@ interface FormProps<T extends Form.FieldValues> extends Form.UseFormProps<T> {
7
7
  children: (methods: ReturnType<typeof Form.useForm<T>>) => React.ReactNode;
8
8
  }
9
9
 
10
- const Forms = <T extends Form.FieldValues>({
11
- onSubmit,
12
- children,
13
- id,
14
- ...rest
15
- }: FormProps<T>) => {
10
+ const Forms = <T extends Form.FieldValues>(
11
+ { onSubmit, children, id, ...rest }: FormProps<T>,
12
+ ref: React.Ref<any>
13
+ ) => {
16
14
  const methods = Form.useForm<T>(rest);
17
15
 
18
16
  const { handleSubmit } = methods;
19
17
 
18
+ useImperativeHandle(ref, () => ({
19
+ submit: handleSubmit(onSubmit),
20
+ ...methods,
21
+ }));
22
+
20
23
  return (
21
24
  <form id={id} onSubmit={handleSubmit(onSubmit)}>
22
25
  {children(methods)}
@@ -24,4 +27,8 @@ const Forms = <T extends Form.FieldValues>({
24
27
  );
25
28
  };
26
29
 
27
- export default Forms;
30
+ const ForwardedForms = forwardRef(Forms) as <T extends Form.FieldValues>(
31
+ props: FormProps<T> & { ref?: React.Ref<any> }
32
+ ) => JSX.Element;
33
+
34
+ export default ForwardedForms;
@@ -44,6 +44,7 @@ import LicenseIcon from '../../assets/icons/active_license_icon.svg?react';
44
44
  import DeleteIcon from '../../assets/icons/delete.svg?react';
45
45
  import DetailsIcon from '../../assets/icons/details.svg?react';
46
46
  import ImpactListIcon from '../../assets/icons/impactList.svg?react';
47
+
47
48
  import FormatePainter from '../../assets/icons/formate_painter.svg?react';
48
49
  import Bold from '../../assets/icons/bold.svg?react';
49
50
  import Italic from '../../assets/icons/italic.svg?react';
@@ -61,6 +62,24 @@ import TextAlignLeft from '../../assets/icons/text_align_left.svg?react';
61
62
  import TextAlignRight from '../../assets/icons/text_align_right.svg?react';
62
63
  import TextColor from '../../assets/icons/text_color.svg?react';
63
64
  import FillColor from '../../assets/icons/fill_color.svg?react';
65
+ import FormulaIcon from '../../assets/icons/formula_icon.svg?react';
66
+ import ExcelCornerMenu from '../../assets/icons/excel_corner_menu.svg?react';
67
+
68
+ import ApkFileType from '../../assets/icons/apk_file_type.svg?react';
69
+ import CsvFileType from '../../assets/icons/csv_file_type.svg?react';
70
+ import CompressedFileType from '../../assets/icons/compressed_file_type.svg?react';
71
+ import HtmlFileType from '../../assets/icons/html_file_type.svg?react';
72
+ import JsonFileType from '../../assets/icons/json_file_type.svg?react';
73
+ import PdfFileType from '../../assets/icons/pdf_file_type.svg?react';
74
+ import PngFileType from '../../assets/icons/png_file_type.svg?react';
75
+ import XlsxFileType from '../../assets/icons/xlsx_file_type.svg?react';
76
+ import XmlFileType from '../../assets/icons/xml_file_type.svg?react';
77
+ import XlsFileType from '../../assets/icons/xls_file_type.svg?react';
78
+ import IpkFileType from '../../assets/icons/ipk_file_type.svg?react';
79
+ import TxtFileType from '../../assets/icons/txt_file_type.svg?react';
80
+ import GifFileType from '../../assets/icons/gif_file_type.svg?react';
81
+ import JpgFileType from '../../assets/icons/jpg_file_type.svg?react';
82
+
64
83
  import InfoIcon from '../../assets/icons/info_icon.svg?react';
65
84
  import CalendarIcon from '../../assets/icons/calendar_icon.svg?react';
66
85
  import HideIcon from '../../assets/icons/hide_icon.svg?react';
@@ -180,6 +199,9 @@ import MinimizeScript from '../../assets/icons/minimize_script.svg?react';
180
199
  import MaximizeTree from '../../assets/icons/maximize_tree.svg?react';
181
200
  import LabelIcon from '../../assets/icons/label_icon.svg?react';
182
201
  import AddLabelIcon from '../../assets/icons/add_label_icon.svg?react';
202
+ import QuickRunSettingIcon from '../../assets/icons/quick_run_setting_icon.svg?react';
203
+ import RunManualTestcaseIcon from '../../assets/icons/run_manual_testcase_icon.svg?react';
204
+ import RunAutomationScriptsIcon from '../../assets/icons/run_automation_scripts_icon.svg?react';
183
205
 
184
206
  Components['delete_info'] = DeleteInfoIcon;
185
207
  Components['success'] = ToastSuccessIcon;
@@ -224,6 +246,8 @@ Components['details'] = DetailsIcon;
224
246
  Components['impactList'] = ImpactListIcon;
225
247
  Components['beautify_icon'] = BeautifyIcon;
226
248
  Components['add_variable'] = AddVariable;
249
+
250
+
227
251
  Components['formate_painter'] = FormatePainter;
228
252
  Components['bold'] = Bold;
229
253
  Components['italic'] = Italic;
@@ -241,6 +265,24 @@ Components['text_align_left'] = TextAlignLeft;
241
265
  Components['text_align_right'] = TextAlignRight;
242
266
  Components['text_color'] = TextColor;
243
267
  Components['fill_color'] = FillColor;
268
+ Components['formula_icon'] = FormulaIcon;
269
+ Components['excel_corner_menu'] = ExcelCornerMenu;
270
+
271
+ Components['apk_file_type'] = ApkFileType;
272
+ Components['csv_file_type'] = CsvFileType;
273
+ Components['compressed_file_type'] = CompressedFileType;
274
+ Components['html_file_type'] = HtmlFileType;
275
+ Components['json_file_type'] = JsonFileType;
276
+ Components['pdf_file_type'] = PdfFileType;
277
+ Components['png_file_type'] = PngFileType;
278
+ Components['xlsx_file_type'] = XlsxFileType;
279
+ Components['xml_file_type'] = XmlFileType;
280
+ Components['xls_file_type'] = XlsFileType;
281
+ Components['ipk_file_type'] = IpkFileType;
282
+ Components['txt_file_type'] = TxtFileType;
283
+ Components['gif_file_type'] = GifFileType;
284
+ Components['jpg_file_type'] = JpgFileType;
285
+
244
286
  Components['info'] = InfoIcon;
245
287
  Components['calendar_icon'] = CalendarIcon;
246
288
  Components['hide_icon'] = HideIcon;
@@ -357,5 +399,9 @@ Components['minimize_script'] = MinimizeScript;
357
399
  Components['maximize_tree'] = MaximizeTree;
358
400
  Components['label_icon'] = LabelIcon;
359
401
  Components['add_label_icon'] = AddLabelIcon;
402
+ Components['quick_run_setting'] = QuickRunSettingIcon;
403
+ Components['run_manual_testcase'] = RunManualTestcaseIcon;
404
+ Components['run_automation_scripts'] = RunAutomationScriptsIcon;
405
+
360
406
 
361
407
  export default Components;
@@ -35,6 +35,9 @@
35
35
  align-items: center;
36
36
  border: 1px solid var(--border-color);
37
37
  background: var(--drawer-footer-bg);
38
+ &:hover {
39
+ background: var(--border-color);
40
+ }
38
41
 
39
42
  &.selected {
40
43
  background-color: var(--brand-color);
@@ -3,6 +3,7 @@ import classNames from 'classnames';
3
3
  import './IconRadioGroup.scss';
4
4
  import Icon from '../Icon/Icon';
5
5
  import { IconRadioItem, IconRadioGroupProps } from './type';
6
+ import Tooltip from '../Tooltip';
6
7
 
7
8
  const IconRadioGroup: React.FC<IconRadioGroupProps> = ({
8
9
  items,
@@ -45,23 +46,25 @@ const IconRadioGroup: React.FC<IconRadioGroupProps> = ({
45
46
  })}
46
47
  onClick={() => handleButtonClick(item)}
47
48
  >
48
- <div
49
- className={classNames('icon-container', {
50
- selected: selectedValue === item.iconName,
51
- })}
52
- >
53
- <Icon
54
- name={item.iconName}
55
- height={14}
56
- width={14}
57
- hoverEffect={false}
58
- color={
59
- selectedValue === item.iconName
60
- ? 'var(--drawer-footer-bg)'
61
- : 'var(--brand-color)'
62
- }
63
- />
64
- </div>
49
+ <Tooltip title={item.iconLabel}>
50
+ <div
51
+ className={classNames('icon-container', {
52
+ selected: selectedValue === item.iconName,
53
+ })}
54
+ >
55
+ <Icon
56
+ name={item.iconName}
57
+ height={14}
58
+ width={14}
59
+ hoverEffect={false}
60
+ color={
61
+ selectedValue === item.iconName
62
+ ? 'var(--drawer-footer-bg)'
63
+ : 'var(--brand-color)'
64
+ }
65
+ />
66
+ </div>
67
+ </Tooltip>
65
68
  </div>
66
69
  ))}
67
70
  <div className="line-connector"></div>
@@ -11,16 +11,17 @@
11
11
  border-radius: 4px;
12
12
  outline: none;
13
13
  line-height: 18px;
14
+ @extend .fontSm;
14
15
  &--medium {
15
16
  padding: 10px 9px;
16
17
  }
17
- @extend .fontSm;
18
18
  &:disabled {
19
19
  cursor: not-allowed;
20
20
  }
21
21
  &::placeholder {
22
22
  opacity: 0;
23
- line-height: 18px;
23
+ @extend .fontXs;
24
+ line-height: 15px;
24
25
  }
25
26
  &--disabled {
26
27
  background: transparent;
@@ -67,7 +68,7 @@
67
68
  }
68
69
  &:hover {
69
70
  .ff-input-label {
70
- color: var(--input-hover-border-color);
71
+ color: var(--input-default-label-color);
71
72
  &--no-hover {
72
73
  color: var(--input-default-label-color);
73
74
  }
@@ -94,10 +95,10 @@
94
95
  }
95
96
  &:focus-within {
96
97
  .ff-input-label-container {
97
- top: -6px;
98
- @extend .font-size-8;
98
+ top: -9px;
99
+ @extend .fontXs;
99
100
  background-color: var(--input-label-bg-color);
100
- line-height: 12px;
101
+ line-height: 15px;
101
102
  padding: 0px 2px;
102
103
  margin-left: 10px;
103
104
  }
@@ -110,9 +111,8 @@
110
111
  }
111
112
  }
112
113
  .ff-input {
113
- &--primary {
114
- border-color: var(--brand-color);
115
- }
114
+ border-color: var(--brand-color);
115
+
116
116
  &--danger {
117
117
  border-color: var(--input-error-text-color);
118
118
  }
@@ -120,16 +120,15 @@
120
120
  &::placeholder {
121
121
  opacity: 1;
122
122
  margin-bottom: 1px;
123
- @extend .font-size-8;
124
123
  }
125
124
  }
126
125
  }
127
126
 
128
127
  .ff-input-message {
129
- @extend .font-size-8;
128
+ @extend .fontXs;
130
129
  padding: 0px 4px;
131
130
  margin-left: 8px;
132
- line-height: 12px;
131
+ line-height: 15px;
133
132
  &--danger {
134
133
  color: var(--input-error-text-color);
135
134
  }
@@ -138,10 +137,10 @@
138
137
  &--float {
139
138
  .ff-input-label-container {
140
139
  //re-written label container code to place it at on border
141
- top: -6px;
142
- @extend .font-size-8;
140
+ top: -9px;
141
+ font-size: 10px;
143
142
  background-color: var(--input-label-bg-color);
144
- line-height: 12px;
143
+ line-height: 15px;
145
144
  padding: 0px 2px;
146
145
  margin-left: 10px;
147
146
  }