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.
- package/lib/1fb4472b34e4fe07.css +1 -0
- package/lib/assets/fonts/Poppins-Bold.ttf +0 -0
- package/lib/assets/fonts/Poppins-Medium.ttf +0 -0
- package/lib/assets/fonts/Poppins-Regular.ttf +0 -0
- package/lib/assets/fonts/Poppins-SemiBold.ttf +0 -0
- package/lib/components/AddButton/AddButton.d.ts +5 -0
- package/lib/components/AddButton/AddButton.stories.d.ts +6 -0
- package/lib/components/AddButton/index.d.ts +1 -0
- package/lib/components/AddButton/types.d.ts +4 -0
- package/lib/components/AddVariables/AddVariables.d.ts +5 -0
- package/lib/components/AddVariables/index.d.ts +1 -0
- package/lib/components/AddVariables/types.d.ts +35 -0
- package/lib/components/AllProjectsDropdown/AllProjectsDropdown.stories.d.ts +7 -0
- package/lib/components/AppHeader/AppHeader.stories.d.ts +7 -0
- package/lib/components/AttachImage/AttachImage.stories.d.ts +7 -0
- package/lib/components/AttachmentButton/AttachmentButton.stories.d.ts +9 -0
- package/lib/components/Avatar/Avatar.stories.d.ts +10 -0
- package/lib/components/Button/Button.stories.d.ts +1 -0
- package/lib/components/Charts/BarChart/BarChart.stories.d.ts +6 -0
- package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.d.ts +7 -0
- package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +8 -0
- package/lib/components/Charts/LineChart/LineChart.stories.d.ts +7 -0
- package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +8 -0
- package/lib/components/Charts/PieChart/PieChart.stories.d.ts +7 -0
- package/lib/components/Comment/Comments.d.ts +1 -1
- package/lib/components/Comment/type.d.ts +3 -3
- package/lib/components/ConnectingBranch/ConnectingBranch.stories.d.ts +6 -0
- package/lib/components/Drawer/Drawer.stories.d.ts +5 -0
- package/lib/components/EditTextField/EditTextField.stories.d.ts +10 -0
- package/lib/components/Editor/Editor.stories.d.ts +6 -0
- package/lib/components/Excel/ContextMenu/ContextMenu.d.ts +4 -0
- package/lib/components/Excel/ExcelFile/ExcelFile.d.ts +1 -3
- package/lib/components/Excel/ExcelFile.stories.d.ts +6 -0
- package/lib/components/Excel/Types.d.ts +1 -1
- package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
- package/lib/components/ExcelFile/ColorBarSelector/ColorBarSelector.d.ts +8 -0
- package/lib/components/ExcelFile/ContextMenu/ContextMenu.d.ts +4 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/ActiveCell.d.ts +7 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Cell.d.ts +4 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Copied.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/CornerIndicator.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/DataEditor.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/DataViewer.d.ts +8 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/FloatingRect.d.ts +10 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/HeaderRow.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Row.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/RowIndicator.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Selected.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Spreadsheet.d.ts +80 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Table.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/actions.d.ts +174 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/areModelsEqual.d.ts +1 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/context.d.ts +8 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/engine.d.ts +22 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/formula.d.ts +17 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/index.d.ts +2 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-graph.d.ts +21 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-hash.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-set.d.ts +24 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/index.d.ts +13 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/matrix.d.ts +67 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/point-range.d.ts +22 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/point.d.ts +11 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/reducer.d.ts +27 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/selection.d.ts +95 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/types.d.ts +178 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/use-dispatch.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/use-selector.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/util.d.ts +44 -0
- package/lib/components/ExcelFile/ExcelFile/ExcelFile.d.ts +19 -0
- package/lib/components/ExcelFile/ExcelFile.stories.d.ts +6 -0
- package/lib/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.d.ts +12 -0
- package/lib/components/ExcelFile/ExcelToolBar/ExcelToolBar.d.ts +15 -0
- package/lib/components/ExcelFile/ImportExcelStyles.d.ts +24 -0
- package/lib/components/ExcelFile/Types.d.ts +129 -0
- package/lib/components/ExcelFile/index.d.ts +1 -0
- package/lib/components/FF_Captcha/captcha.stories.d.ts +8 -0
- package/lib/components/Form/Form.stories.d.ts +6 -5
- package/lib/components/Icon/Icon.stories.d.ts +1 -0
- package/lib/components/IconButton/IconButton.stories.d.ts +1 -0
- package/lib/components/IconRadioGroup/IconRadioGroup.stories.d.ts +7 -0
- package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +13 -0
- package/lib/components/MachineInputField/MachineInputField.stories.d.ts +6 -0
- package/lib/components/MenuOption/MenuOption.stories.d.ts +1 -0
- package/lib/components/MiniModal/MiniModal.stories.d.ts +2 -1
- package/lib/components/MobileSkin/types.d.ts +1 -1
- package/lib/components/ModulesChip/ModuleChip.stories.d.ts +6 -0
- package/lib/components/MultiSelect/MultiSelect.stories.d.ts +2 -0
- package/lib/components/NLPInput/NlpInput.stories.d.ts +7 -0
- package/lib/components/NLPInput/type.d.ts +70 -0
- package/lib/components/Paper/Paper.stories.d.ts +11 -0
- package/lib/components/RadioGroup/RadioGroup.stories.d.ts +2 -1
- package/lib/components/Select/Select.stories.d.ts +1 -0
- package/lib/components/Select/components/Dropdown/Dropdown.d.ts +1 -1
- package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +2 -0
- package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +6 -0
- package/lib/components/StatusCard/StatusCard.stories.d.ts +11 -0
- package/lib/components/Table/Table.stories.d.ts +2 -0
- package/lib/components/TableTree/data.d.ts +0 -40
- package/lib/components/Toastify/Toastify.stories.d.ts +6 -0
- package/lib/components/VariableInput/VariableInput.stories.d.ts +6 -0
- package/lib/index.d.ts +9 -25
- package/lib/index.esm.js +4443 -960
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +4444 -959
- package/lib/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utils/ffID/ffID.stories.d.ts +1 -1
- package/lib/utils/findAndInsert/findAndInsert.stories.d.ts +7 -0
- package/lib/utils/getEncryptedData/getEncryptedData.stories.d.ts +6 -0
- package/lib/utils/getSequentialPayload/getSequentialPayload.stories.d.ts +10 -0
- package/lib/utils/indexDBStore/indexDB.d.ts +2 -0
- package/package.json +1 -1
- package/src/assets/icons/approval_pending.svg +8 -8
- package/src/assets/icons/clear_cache.svg +5 -0
- package/src/assets/icons/clear_history.svg +6 -0
- package/src/assets/icons/code.svg +4 -0
- package/src/assets/icons/code_colored.svg +4 -0
- package/src/assets/icons/configuration.svg +3 -3
- package/src/assets/icons/csharp.svg +9 -0
- package/src/assets/icons/cypress.svg +9 -0
- package/src/assets/icons/defects.svg +8 -8
- package/src/assets/icons/delete_filled.svg +12 -0
- package/src/assets/icons/design_link.svg +7 -0
- package/src/assets/icons/disable_icon.svg +3 -0
- package/src/assets/icons/element.svg +4 -4
- package/src/assets/icons/enable_icon.svg +3 -0
- package/src/assets/icons/file_colored.svg +5 -0
- package/src/assets/icons/java.svg +4 -0
- package/src/assets/icons/javascript.svg +11 -0
- package/src/assets/icons/jira_colored.svg +15 -0
- package/src/assets/icons/mic.svg +4 -0
- package/src/assets/icons/mic_filled.svg +28 -0
- package/src/assets/icons/playwright.svg +9 -0
- package/src/assets/icons/project_element.svg +4 -4
- package/src/assets/icons/python.svg +19 -0
- package/src/assets/icons/regenerate.svg +4 -0
- package/src/assets/icons/right_arrow_filled_icon.svg +5 -0
- package/src/assets/icons/screenshot.svg +7 -0
- package/src/assets/icons/step_group.svg +10 -10
- package/src/assets/icons/variable.svg +3 -3
- package/src/assets/icons/web_service_icon.svg +3 -3
- package/src/components/Button/Button.tsx +2 -0
- package/src/components/Comment/Comments.scss +0 -1
- package/src/components/Comment/Comments.stories.tsx +22 -4
- package/src/components/Comment/Comments.tsx +20 -1
- package/src/components/Comment/type.ts +3 -3
- package/src/components/Excel/ExcelFile/ExcelFile.tsx +48 -42
- package/src/components/Excel/ExcelFile.stories.tsx +98 -96
- package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +65 -28
- package/src/components/Excel/Types.ts +1 -1
- package/src/components/Excel/dataConversion.ts +8 -10
- package/src/components/Icon/iconList.ts +46 -3
- package/src/components/MobileSkin/MobileSkin.scss +44 -44
- package/src/components/MobileSkin/MobileSkin.tsx +15 -14
- package/src/components/MobileSkin/types.ts +1 -1
- package/src/components/TableTree/Components/TableBody.tsx +1 -1
- package/src/components/TableTree/Components/TableCell.tsx +26 -12
- package/src/components/TableTree/TableTree.tsx +18 -15
- package/src/components/TableTree/data.ts +0 -31
- package/src/index.ts +3 -0
- package/src/utils/indexDBStore/indexDB.ts +67 -0
- package/lib/components/ThemeProvider/CustomThemeProvider.d.ts +0 -8
- 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
|
7
|
+
export declare const DisabledSelected: Story;
|
8
|
+
export declare const WithToolTipIcon: Story;
|
8
9
|
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;
|
@@ -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;
|
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:
|
3100
|
-
handleEditComment:
|
3101
|
-
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
|
-
|
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 };
|