pixel-react-excel-sheet 1.0.32 → 1.0.33

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 (92) hide show
  1. package/lib/components/Accordion/Accordion.d.ts +1 -1
  2. package/lib/components/Accordion/types.d.ts +4 -0
  3. package/lib/components/AllProjectsDropdown/types.d.ts +2 -0
  4. package/lib/components/Button/Button.d.ts +2 -2
  5. package/lib/components/Button/types.d.ts +17 -0
  6. package/lib/components/Charts/DashboardDonutChart/types.d.ts +1 -0
  7. package/lib/components/Charts/MultiRadialChart/types.d.ts +3 -0
  8. package/lib/components/ChooseFile/ChooseFile.d.ts +3 -0
  9. package/lib/components/ChooseFile/types.d.ts +68 -0
  10. package/lib/components/ConditionalDropdown/ConditionalDropdown.d.ts +1 -2
  11. package/lib/components/ConditionalDropdown/types.d.ts +3 -3
  12. package/lib/components/LabelEditTextField/types.d.ts +3 -1
  13. package/lib/components/ScriptSwitchButton/ScriptSwitchButton.d.ts +9 -0
  14. package/lib/components/ScriptSwitchButton/index.d.ts +1 -0
  15. package/lib/components/StatusCard/types.d.ts +2 -0
  16. package/lib/components/TableTree/Components/TableCell.d.ts +1 -1
  17. package/lib/components/TableTree/Components/TableRow.d.ts +1 -1
  18. package/lib/components/TableTree/data.d.ts +115 -1
  19. package/lib/components/TableTree/types.d.ts +4 -0
  20. package/lib/index.d.ts +218 -65
  21. package/lib/index.esm.js +721 -419
  22. package/lib/index.esm.js.map +1 -1
  23. package/lib/index.js +767 -418
  24. package/lib/index.js.map +1 -1
  25. package/lib/tsconfig.tsbuildinfo +1 -1
  26. package/lib/validations/regex.d.ts +46 -0
  27. package/package.json +1 -1
  28. package/src/StyleGuide/ColorPalette/colorPaletteList.ts +5 -0
  29. package/src/assets/Themes/BaseTheme.scss +1 -1
  30. package/src/assets/Themes/BlueTheme.scss +1 -1
  31. package/src/assets/Themes/DarkTheme.scss +1 -1
  32. package/src/assets/icons/failed_status_icon.svg +1 -1
  33. package/src/assets/icons/flaky_status_icon.svg +1 -1
  34. package/src/assets/icons/settings.svg +3 -0
  35. package/src/assets/icons/skipped_status_icon.svg +1 -1
  36. package/src/assets/icons/warning_status_icon.svg +1 -1
  37. package/src/components/Accordion/Accordion.stories.tsx +13 -0
  38. package/src/components/Accordion/Accordion.tsx +2 -1
  39. package/src/components/Accordion/types.ts +4 -0
  40. package/src/components/AllProjectsDropdown/types.ts +2 -0
  41. package/src/components/AppHeader/AppHeader.scss +6 -2
  42. package/src/components/Button/Button.scss +12 -0
  43. package/src/components/Button/Button.tsx +29 -11
  44. package/src/components/Button/types.ts +21 -0
  45. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.scss +83 -30
  46. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.tsx +2 -0
  47. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.tsx +38 -17
  48. package/src/components/Charts/DashboardDonutChart/types.ts +1 -0
  49. package/src/components/Charts/MultiRadialChart/MultiRadialChart.scss +0 -1
  50. package/src/components/Charts/MultiRadialChart/MultiRadialChart.stories.tsx +2 -1
  51. package/src/components/Charts/MultiRadialChart/MultiRadialChart.tsx +18 -4
  52. package/src/components/Charts/MultiRadialChart/types.ts +4 -1
  53. package/src/components/ChooseFile/ChooseFile.stories.tsx +190 -0
  54. package/src/components/ChooseFile/ChooseFile.tsx +46 -0
  55. package/src/components/ChooseFile/types.ts +78 -0
  56. package/src/components/ConditionalDropdown/ConditionalDropdown.stories.tsx +8 -5
  57. package/src/components/ConditionalDropdown/ConditionalDropdown.tsx +133 -135
  58. package/src/components/ConditionalDropdown/types.ts +8 -8
  59. package/src/components/ConnectingBranch/ConnectingBranch.scss +171 -169
  60. package/src/components/ConnectingBranch/ConnectingBranch.tsx +108 -107
  61. package/src/components/DatePicker/DatePicker.scss +310 -0
  62. package/src/components/Excel/ExcelFile/ExcelFile.tsx +4 -4
  63. package/src/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.tsx +22 -12
  64. package/src/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.tsx +2 -2
  65. package/src/components/Excel/ExcelFile/ExcelFileComponents/DataEditor.tsx +4 -1
  66. package/src/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.tsx +2 -2
  67. package/src/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.ts +77 -10
  68. package/src/components/Icon/iconList.ts +2 -0
  69. package/src/components/LabelEditTextField/LabelEditTextField.scss +4 -0
  70. package/src/components/LabelEditTextField/LabelEditTextField.stories.tsx +8 -3
  71. package/src/components/LabelEditTextField/LabelEditTextField.tsx +42 -18
  72. package/src/components/LabelEditTextField/types.ts +3 -1
  73. package/src/components/MachineInputField/MachineInputField.tsx +2 -2
  74. package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.scss +1 -1
  75. package/src/components/ScriptSwitchButton/ScriptSwitchButton.scss +33 -0
  76. package/src/components/ScriptSwitchButton/ScriptSwitchButton.stories.tsx +48 -0
  77. package/src/components/ScriptSwitchButton/ScriptSwitchButton.tsx +65 -0
  78. package/src/components/ScriptSwitchButton/index.ts +1 -0
  79. package/src/components/Select/Select.tsx +4 -4
  80. package/src/components/StatusCard/StatusCard.scss +2 -1
  81. package/src/components/StatusCard/StatusCard.stories.tsx +59 -1
  82. package/src/components/StatusCard/StatusCard.tsx +10 -2
  83. package/src/components/StatusCard/types.ts +2 -0
  84. package/src/components/TableTree/Components/TableBody.tsx +20 -16
  85. package/src/components/TableTree/Components/TableCell.tsx +47 -31
  86. package/src/components/TableTree/Components/TableRow.tsx +4 -0
  87. package/src/components/TableTree/TableTree.scss +121 -109
  88. package/src/components/TableTree/data.ts +48 -2
  89. package/src/components/TableTree/types.ts +4 -0
  90. package/src/index.ts +97 -0
  91. package/src/validations/regex.stories.tsx +362 -0
  92. package/src/validations/regex.ts +194 -0
package/lib/index.d.ts CHANGED
@@ -9,6 +9,62 @@ import * as DNDSortable from '@dnd-kit/sortable';
9
9
  import * as DNDUtilities from '@dnd-kit/utilities';
10
10
  import ReCAPTCHA from 'react-google-recaptcha';
11
11
 
12
+ type DynamicObj = {
13
+ [key: string]: any;
14
+ };
15
+ interface CreateVariableProps {
16
+ /**
17
+ * Open Create variable Slider
18
+ */
19
+ isOpen: boolean;
20
+ /**
21
+ * Value for the variable name
22
+ */
23
+ variableName: string;
24
+ /**
25
+ * Value for the variable to be created
26
+ */
27
+ value: string;
28
+ /**
29
+ * List for the variable types
30
+ */
31
+ variableTypesList: DynamicObj[];
32
+ /**
33
+ * Selected variable type
34
+ */
35
+ selectedVariableType: DynamicObj;
36
+ /**
37
+ * Function to handle variable type change
38
+ * @param option
39
+ * @returns
40
+ */
41
+ onVariableTypeChange: (option: DynamicObj) => void;
42
+ /**
43
+ * Function to handle close
44
+ */
45
+ onClose?: () => void;
46
+ /**
47
+ * onChange of name
48
+ */
49
+ onNameChange: (value: string) => void;
50
+ /**
51
+ * onChange of value
52
+ */
53
+ onValueChange: (value: string) => void;
54
+ /**
55
+ * Hide value
56
+ */
57
+ hideValue: boolean;
58
+ /**
59
+ * onChange for hide value
60
+ */
61
+ onHideChange: (value: boolean) => void;
62
+ /**
63
+ * Function to handle submit
64
+ */
65
+ handleSubmit: () => void;
66
+ }
67
+
12
68
  interface ButtonProps {
13
69
  /**
14
70
  * Variant of the button
@@ -72,9 +128,25 @@ interface ButtonProps {
72
128
  * form to accept form id in string
73
129
  */
74
130
  form?: string;
131
+ /**
132
+ * Is the Type ChooseFile for the button
133
+ */
134
+ isChooseFile?: boolean;
135
+ /**
136
+ * Custom Width for the button
137
+ */
138
+ buttonWidth?: string;
139
+ /**
140
+ * selectedfile object will be send.
141
+ */
142
+ selectedFile?: File | DynamicObj | null;
143
+ /**
144
+ * handleCloseIcon function will set to the initial state .
145
+ */
146
+ handleCloseIcon?: () => void;
75
147
  }
76
148
 
77
- declare const Button: React$1.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
149
+ declare const _default$2: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>>;
78
150
 
79
151
  interface BtnPropsCommon {
80
152
  /**
@@ -289,12 +361,16 @@ interface AccordionProps {
289
361
  * Accordion collapse and expand Icon height
290
362
  */
291
363
  AccordionStateIconHeight: number;
364
+ /**
365
+ * Optional props for initial state of Accordion
366
+ */
367
+ isExpand?: boolean;
292
368
  }
293
369
 
294
370
  /**
295
371
  * Accordion UI component
296
372
  */
297
- declare const Accordion: ({ headerTitle, color, minHeight, accordionContent, disable, disableInfoMessage, accordionStateIconName, AccordionStateIconWidth, AccordionStateIconHeight, }: AccordionProps) => react_jsx_runtime.JSX.Element;
373
+ declare const Accordion: ({ headerTitle, color, minHeight, accordionContent, disable, disableInfoMessage, accordionStateIconName, AccordionStateIconWidth, AccordionStateIconHeight, isExpand, }: AccordionProps) => react_jsx_runtime.JSX.Element;
298
374
 
299
375
  type OptionValue$1 = any;
300
376
  interface Option$3 {
@@ -1100,62 +1176,6 @@ type DonutChartProps = {
1100
1176
 
1101
1177
  declare const DonutChart: React__default.FC<DonutChartProps>;
1102
1178
 
1103
- type DynamicObj = {
1104
- [key: string]: any;
1105
- };
1106
- interface CreateVariableProps {
1107
- /**
1108
- * Open Create variable Slider
1109
- */
1110
- isOpen: boolean;
1111
- /**
1112
- * Value for the variable name
1113
- */
1114
- variableName: string;
1115
- /**
1116
- * Value for the variable to be created
1117
- */
1118
- value: string;
1119
- /**
1120
- * List for the variable types
1121
- */
1122
- variableTypesList: DynamicObj[];
1123
- /**
1124
- * Selected variable type
1125
- */
1126
- selectedVariableType: DynamicObj;
1127
- /**
1128
- * Function to handle variable type change
1129
- * @param option
1130
- * @returns
1131
- */
1132
- onVariableTypeChange: (option: DynamicObj) => void;
1133
- /**
1134
- * Function to handle close
1135
- */
1136
- onClose?: () => void;
1137
- /**
1138
- * onChange of name
1139
- */
1140
- onNameChange: (value: string) => void;
1141
- /**
1142
- * onChange of value
1143
- */
1144
- onValueChange: (value: string) => void;
1145
- /**
1146
- * Hide value
1147
- */
1148
- hideValue: boolean;
1149
- /**
1150
- * onChange for hide value
1151
- */
1152
- onHideChange: (value: boolean) => void;
1153
- /**
1154
- * Function to handle submit
1155
- */
1156
- handleSubmit: () => void;
1157
- }
1158
-
1159
1179
  interface RadioOption {
1160
1180
  label: string;
1161
1181
  value: string;
@@ -1696,7 +1716,7 @@ interface TreeTableProps {
1696
1716
  loadMore?: (_direction?: string) => void;
1697
1717
  }
1698
1718
 
1699
- declare const _default: React__default.NamedExoticComponent<TreeTableProps>;
1719
+ declare const _default$1: React__default.NamedExoticComponent<TreeTableProps>;
1700
1720
 
1701
1721
  interface TabsProps {
1702
1722
  /**
@@ -1979,6 +1999,8 @@ interface optionsType {
1979
1999
  label: string;
1980
2000
  value: string;
1981
2001
  iconName: string;
2002
+ platform?: string;
2003
+ appType?: string;
1982
2004
  }
1983
2005
  interface AllProjectsDropdownProps {
1984
2006
  options: optionsType[];
@@ -2103,6 +2125,7 @@ type DashboardDonutChartProps = {
2103
2125
  legendKeyFontSize?: number;
2104
2126
  labelYoffSet?: number;
2105
2127
  subLabelYoffSet?: number;
2128
+ onSelectedStatus?: (_value: string) => void;
2106
2129
  };
2107
2130
 
2108
2131
  declare const DashboardDonutChart: React__default.FC<DashboardDonutChartProps>;
@@ -2367,7 +2390,7 @@ interface LabelEditTextFieldTypes$1 {
2367
2390
  /** Label text displayed above the input field. */
2368
2391
  label?: string;
2369
2392
  /** Initial text displayed in the input field. */
2370
- text: string;
2393
+ text?: string;
2371
2394
  /** Text to be highlighted within the displayed text, if provided. */
2372
2395
  highlightText?: string;
2373
2396
  /** Custom error message to be displayed, if applicable. */
@@ -2391,6 +2414,8 @@ interface LabelEditTextFieldTypes$1 {
2391
2414
  customErrorCondition?: boolean;
2392
2415
  placeholder?: string;
2393
2416
  onClick?: () => void;
2417
+ /** Function called when every input character got changed */
2418
+ onInputChange?: (newInputValue: string) => void;
2394
2419
  tooltip?: {
2395
2420
  tooltipTitle?: string;
2396
2421
  tooltipPlacement?: string;
@@ -2546,6 +2571,8 @@ interface CardProps {
2546
2571
  style?: React.CSSProperties;
2547
2572
  /** toggle update */
2548
2573
  handleToggleStatus?: (_status: boolean) => void;
2574
+ /** make Card Select false */
2575
+ resetToggle?: boolean;
2549
2576
  /** call back */
2550
2577
  onSelectedStatus?: (_status: string) => void;
2551
2578
  }
@@ -2770,6 +2797,83 @@ interface ProgressBarProps {
2770
2797
 
2771
2798
  declare const ProgressBar: React__default.FC<ProgressBarProps>;
2772
2799
 
2800
+ interface ChooseFileProps {
2801
+ /**
2802
+ * Variant of the button
2803
+ */
2804
+ variant: 'primary' | 'secondary' | 'tertiary' | 'delete' | 'warning';
2805
+ /**
2806
+ * What background color to use
2807
+ */
2808
+ backgroundColor?: string;
2809
+ /**
2810
+ * Width in string format can be sent for needed width
2811
+ */
2812
+ buttonWidth?: string;
2813
+ /**
2814
+ * How large should the button be?
2815
+ */
2816
+ size?: 'small' | 'medium' | 'large';
2817
+ /**
2818
+ * Button contents
2819
+ */
2820
+ label?: string;
2821
+ /**
2822
+ * Type of the button
2823
+ */
2824
+ type?: 'button' | 'submit';
2825
+ disabled?: boolean;
2826
+ /**
2827
+ * Optional click handler
2828
+ */
2829
+ onClick?: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
2830
+ /**
2831
+ * Button id
2832
+ */
2833
+ id?: string;
2834
+ /**
2835
+ * onSubmit function handler
2836
+ */
2837
+ onSubmit?: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
2838
+ /**
2839
+ * react ref for the button
2840
+ */
2841
+ ref?: any;
2842
+ /**
2843
+ * Classname for the button
2844
+ */
2845
+ className?: string;
2846
+ /**
2847
+ * Additional styles for the button
2848
+ */
2849
+ style?: React.CSSProperties;
2850
+ /**
2851
+ * Give icon name availble in storybook that to be on left side of button
2852
+ */
2853
+ iconName?: string;
2854
+ /**
2855
+ * isChooseFile is a Boolean prop
2856
+ */
2857
+ isChooseFile?: boolean;
2858
+ /**
2859
+ * selectedfile object will be send.
2860
+ */
2861
+ selectedFile?: File | DynamicObj | null;
2862
+ /**
2863
+ * handleCloseIcon function will set to the initial state .
2864
+ */
2865
+ handleCloseIcon?: () => void;
2866
+ }
2867
+
2868
+ declare const _default: React$1.NamedExoticComponent<ChooseFileProps>;
2869
+
2870
+ interface ScriptSwitchButtonProps {
2871
+ handleClick: (selected: string) => void;
2872
+ selected: string;
2873
+ tabList: Array<'Automation' | 'Manual'>;
2874
+ }
2875
+ declare const ScriptSwitchButton: React__default.FC<ScriptSwitchButtonProps>;
2876
+
2773
2877
  type valueType$1 = any;
2774
2878
  declare const checkEmpty: (value: valueType$1) => boolean;
2775
2879
 
@@ -2858,6 +2962,9 @@ interface MultiRadialChartProps {
2858
2962
  barValues: BarValue[];
2859
2963
  legendType?: LegendType;
2860
2964
  isLegendDetails?: boolean;
2965
+ labelFontSize?: number;
2966
+ subLabelFontSize?: number;
2967
+ gapAngle?: number;
2861
2968
  }
2862
2969
 
2863
2970
  declare const MultiRadialChart: React__default.FC<MultiRadialChartProps>;
@@ -3001,7 +3108,7 @@ interface ConditionalDropdownProps {
3001
3108
  * @param value
3002
3109
  * @returns
3003
3110
  */
3004
- onChange?: (value: string) => void;
3111
+ onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
3005
3112
  /**
3006
3113
  * Function to handle create variable icon click
3007
3114
  */
@@ -3079,8 +3186,8 @@ interface ConditionalDropdownProps {
3079
3186
  */
3080
3187
  isLabelRequired?: boolean;
3081
3188
  /**
3082
- * If true, dropdown opens when '#' is entered at the first position.
3083
- */
3189
+ * If true, dropdown opens when '#' is entered at the first position.
3190
+ */
3084
3191
  isHash?: boolean;
3085
3192
  /**
3086
3193
  * Options for the dropdown when `isHash` is true.
@@ -3088,7 +3195,7 @@ interface ConditionalDropdownProps {
3088
3195
  dataFiles?: dynamicObject[];
3089
3196
  }
3090
3197
 
3091
- declare const ConditionalDropdown: React__default.FC<ConditionalDropdownProps>;
3198
+ declare const ConditionalDropdown: React$1.ForwardRefExoticComponent<ConditionalDropdownProps & React$1.RefAttributes<HTMLInputElement>>;
3092
3199
 
3093
3200
  declare const hasDuplicateFile: (array: any[], property: string) => boolean;
3094
3201
 
@@ -3111,4 +3218,50 @@ interface PhoneInputProps {
3111
3218
 
3112
3219
  declare const PhoneInputField: React__default.FC<PhoneInputProps>;
3113
3220
 
3114
- export { Accordion, AddButton as AddResourceButton, AllProjectsDropdown, AppHeader, AttachImage, AttachmentButton, Avatar, BarChart, Button, Checkbox, Chip, Col, Comments, ConditionalDropdown, ConnectingBranch, Container, CreateVariableSlider, DashboardDonutChart, CustomDatePicker as DatePicker, DonutChart, DownloadClient, DragAndDrop, Drawer, Dropzone, EditTextField, Editor, ExcelFile as Excel, ExpandableMenu, FieldSet, FileDropzone, FilePreview, ForwardedForms as Form, formatString as FormatString, HighlightText, Icon, IconButton, IconRadialChart, IconRadioGroup, Input, InputWithDropdown, LabelEditTextField, LineChart, MachineInputField, MenuOption, MiniModal, Modal, ModuleChip, MultiRadialChart, MultiSelect, NlpInput as NLPInput, Paper, PhoneInputField, PieChart, PopUpModal, ProgressBar, RadialChart, RadioButton, RadioGroup, Recaptcha, Row, Search, Select, SequentialConnectingBranch, StateDropdown, StatusButton, StatusCard, Table, _default as TableTree, TableWithAccordion, Tabs, Textarea as TextArea, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, Typography, VariableDropdown, VariableInput, capitalize, checkEmpty, compareArrays, compareObjects, debounce, ffid, findAndInsert, getEncryptedData, getExtension, getExtensionWithPeriod, getSequentialPayload, hasDuplicateFile, saveFileFromBlob, throttle, toast, truncateText, useFileDropzone, useTheme };
3221
+ declare const EMAIL_REGEX: RegExp;
3222
+ declare const URL_REGEX: RegExp;
3223
+ declare const PHONE_REGEX: RegExp;
3224
+ declare const POSTAL_CODE_REGEX: RegExp;
3225
+ declare const IPV4_REGEX: RegExp;
3226
+ declare const IPV6_REGEX: RegExp;
3227
+ declare const HEX_COLOR_REGEX: RegExp;
3228
+ declare const PASSWORD_SIMPLE_REGEX: RegExp;
3229
+ declare const PASSWORD_COMPLEX_REGEX: RegExp;
3230
+ declare const ALPHABET_ONLY_REGEX: RegExp;
3231
+ declare const NUMBERS_ONLY_REGEX: RegExp;
3232
+ declare const ALPHANUMERIC_REGEX: RegExp;
3233
+ declare const DATE_REGEX: RegExp;
3234
+ declare const TIME_REGEX: RegExp;
3235
+ declare const FILE_EXTENSION_REGEX: RegExp;
3236
+ declare const MAC_ADDRESS_REGEX: RegExp;
3237
+ declare const CREDIT_CARD_REGEX: RegExp;
3238
+ declare const SSN_REGEX: RegExp;
3239
+ declare const UUID_REGEX: RegExp;
3240
+ declare const HTML_TAG_REGEX: RegExp;
3241
+ declare const WHITESPACE_REGEX: RegExp;
3242
+ declare const US_ZIP_CODE_REGEX: RegExp;
3243
+ declare const USERNAME_REGEX: RegExp;
3244
+ declare const INDIAN_PHONE_REGEX: RegExp;
3245
+ declare const INDIAN_PIN_CODE_REGEX: RegExp;
3246
+ declare const GSTIN_REGEX: RegExp;
3247
+ declare const PAN_CARD_REGEX: RegExp;
3248
+ declare const AADHAAR_REGEX: RegExp;
3249
+ declare const VEHICLE_REGISTRATION_REGEX: RegExp;
3250
+ declare const INDIAN_CURRENCY_REGEX: RegExp;
3251
+ declare const INTERNATIONAL_PHONE_REGEX: RegExp;
3252
+ declare const INDIAN_PASSPORT_REGEX: RegExp;
3253
+ declare const DRIVING_LICENSE_REGEX: RegExp;
3254
+ declare const USERNAME_SPECIAL_REGEX: RegExp;
3255
+ declare const DECIMAL_NUMBER_REGEX: RegExp;
3256
+ declare const HTML_ATTRIBUTE_REGEX: RegExp;
3257
+ declare const RGB_COLOR_REGEX: RegExp;
3258
+ declare const HSL_COLOR_REGEX: RegExp;
3259
+ declare const BASE64_REGEX: RegExp;
3260
+ declare const BINARY_NUMBER_REGEX: RegExp;
3261
+ declare const HEXADECIMAL_NUMBER_REGEX: RegExp;
3262
+ declare const ROMAN_NUMERALS_REGEX: RegExp;
3263
+ declare const CURRENCY_GENERIC_REGEX: RegExp;
3264
+ declare const LINKEDIN_PROFILE_REGEX: RegExp;
3265
+ declare const TWITTER_HANDLE_REGEX: RegExp;
3266
+
3267
+ export { AADHAAR_REGEX, ALPHABET_ONLY_REGEX, ALPHANUMERIC_REGEX, Accordion, AddButton as AddResourceButton, AllProjectsDropdown, AppHeader, AttachImage, AttachmentButton, Avatar, BASE64_REGEX, BINARY_NUMBER_REGEX, BarChart, _default$2 as Button, CREDIT_CARD_REGEX, CURRENCY_GENERIC_REGEX, Checkbox, Chip, _default as ChooseFile, Col, Comments, ConditionalDropdown, ConnectingBranch, Container, CreateVariableSlider, DATE_REGEX, DECIMAL_NUMBER_REGEX, DRIVING_LICENSE_REGEX, DashboardDonutChart, CustomDatePicker as DatePicker, DonutChart, DownloadClient, DragAndDrop, Drawer, Dropzone, EMAIL_REGEX, EditTextField, Editor, ExcelFile as Excel, ExpandableMenu, FILE_EXTENSION_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, MachineInputField, MenuOption, MiniModal, Modal, ModuleChip, MultiRadialChart, MultiSelect, NlpInput as NLPInput, NUMBERS_ONLY_REGEX, PAN_CARD_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, ScriptSwitchButton, Search, Select, SequentialConnectingBranch, StateDropdown, StatusButton, StatusCard, TIME_REGEX, TWITTER_HANDLE_REGEX, Table, _default$1 as TableTree, TableWithAccordion, Tabs, Textarea as TextArea, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, Typography, 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, useFileDropzone, useTheme };