pixel-react 1.21.36 → 1.21.37
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/index.d.ts +164 -162
- package/lib/index.js +6 -6
- package/lib/index.js.map +1 -1
- package/lib/styles.css +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -3321,6 +3321,169 @@ interface ContentCardProps {
|
|
|
3321
3321
|
|
|
3322
3322
|
declare const ContentCard: FC<ContentCardProps>;
|
|
3323
3323
|
|
|
3324
|
+
type WeightageColumnLabels = {
|
|
3325
|
+
principle: React__default.ReactNode;
|
|
3326
|
+
guidelines: React__default.ReactNode;
|
|
3327
|
+
weightage: React__default.ReactNode;
|
|
3328
|
+
};
|
|
3329
|
+
interface WeightageRow {
|
|
3330
|
+
/**
|
|
3331
|
+
* Label for the guideline row, e.g. "1.1 - Text alternative"
|
|
3332
|
+
*/
|
|
3333
|
+
label: string;
|
|
3334
|
+
/**
|
|
3335
|
+
* Weightage value in % for this row
|
|
3336
|
+
*/
|
|
3337
|
+
value: number;
|
|
3338
|
+
/**
|
|
3339
|
+
* Unique key for the row, falls back to label if not provided
|
|
3340
|
+
*/
|
|
3341
|
+
key?: string;
|
|
3342
|
+
/**
|
|
3343
|
+
* Disable the input for this row
|
|
3344
|
+
*/
|
|
3345
|
+
disabled?: boolean;
|
|
3346
|
+
/**
|
|
3347
|
+
* Minimum allowed value for this row's input (passed to Input's minValue)
|
|
3348
|
+
*/
|
|
3349
|
+
minValue?: number;
|
|
3350
|
+
/**
|
|
3351
|
+
* Maximum allowed value for this row's input (capped at 100)
|
|
3352
|
+
*/
|
|
3353
|
+
maxValue?: number;
|
|
3354
|
+
/**
|
|
3355
|
+
* Error state for this row's input, controlled internally unless passed in
|
|
3356
|
+
*/
|
|
3357
|
+
error?: boolean;
|
|
3358
|
+
/**
|
|
3359
|
+
* Helper text for this row's input, controlled internally unless passed in
|
|
3360
|
+
*/
|
|
3361
|
+
helperText?: string;
|
|
3362
|
+
}
|
|
3363
|
+
interface WeightageGroup {
|
|
3364
|
+
/**
|
|
3365
|
+
* Principle / group label, e.g. "1. Perceivable"
|
|
3366
|
+
*/
|
|
3367
|
+
principle: string;
|
|
3368
|
+
/**
|
|
3369
|
+
* Unique key for the group, falls back to principle if not provided
|
|
3370
|
+
*/
|
|
3371
|
+
key?: string;
|
|
3372
|
+
/**
|
|
3373
|
+
* Guideline rows belonging to this principle
|
|
3374
|
+
*/
|
|
3375
|
+
guidelines: WeightageRow[];
|
|
3376
|
+
}
|
|
3377
|
+
interface WeightageCellRenderProps {
|
|
3378
|
+
group: WeightageGroup;
|
|
3379
|
+
row: WeightageRow;
|
|
3380
|
+
groupIndex: number;
|
|
3381
|
+
rowIndex: number;
|
|
3382
|
+
rowKey: string;
|
|
3383
|
+
minValue: number;
|
|
3384
|
+
maxValue: number;
|
|
3385
|
+
disabled: boolean;
|
|
3386
|
+
inputWidth?: React__default.CSSProperties['width'];
|
|
3387
|
+
inputProps: {
|
|
3388
|
+
id: string;
|
|
3389
|
+
name: string;
|
|
3390
|
+
'aria-label': string;
|
|
3391
|
+
'aria-describedby'?: string;
|
|
3392
|
+
'aria-errormessage'?: string;
|
|
3393
|
+
'aria-invalid'?: boolean;
|
|
3394
|
+
};
|
|
3395
|
+
onChange: (updatedRow: WeightageRow) => void;
|
|
3396
|
+
}
|
|
3397
|
+
interface WeightageTableProps {
|
|
3398
|
+
/**
|
|
3399
|
+
* Title shown on the left side of the header bar
|
|
3400
|
+
*/
|
|
3401
|
+
title?: React__default.ReactNode;
|
|
3402
|
+
/**
|
|
3403
|
+
* Total weightage value shown on the right side of the header bar, e.g. 100.
|
|
3404
|
+
* If not passed, it is auto-computed as the sum of all row values.
|
|
3405
|
+
*/
|
|
3406
|
+
totalWeightage?: number;
|
|
3407
|
+
/**
|
|
3408
|
+
* Max possible weightage retained for backward compatibility.
|
|
3409
|
+
* Use minValue/maxValue for default input validation.
|
|
3410
|
+
*/
|
|
3411
|
+
maxWeightage?: number;
|
|
3412
|
+
/**
|
|
3413
|
+
* Column heading for the principle column
|
|
3414
|
+
*/
|
|
3415
|
+
principleColumnLabel?: React__default.ReactNode;
|
|
3416
|
+
/**
|
|
3417
|
+
* Column heading for the guidelines column
|
|
3418
|
+
*/
|
|
3419
|
+
guidelinesColumnLabel?: React__default.ReactNode;
|
|
3420
|
+
/**
|
|
3421
|
+
* Column heading for the weightage column
|
|
3422
|
+
*/
|
|
3423
|
+
weightageColumnLabel?: React__default.ReactNode;
|
|
3424
|
+
/**
|
|
3425
|
+
* Preferred API for overriding column labels in one place.
|
|
3426
|
+
* Individual label props are still supported for backward compatibility.
|
|
3427
|
+
*/
|
|
3428
|
+
columnLabels?: Partial<WeightageColumnLabels>;
|
|
3429
|
+
/**
|
|
3430
|
+
* Data for the table body, grouped by principle. This component is controlled —
|
|
3431
|
+
* the parent owns this array and updates it inside onWeightageChange.
|
|
3432
|
+
*/
|
|
3433
|
+
groups: WeightageGroup[];
|
|
3434
|
+
/**
|
|
3435
|
+
* Called whenever a single row's value changes. Only that row's data is passed back —
|
|
3436
|
+
* use groupIndex/rowIndex to update just that one row in your state.
|
|
3437
|
+
*/
|
|
3438
|
+
onWeightageChange?: (groupIndex: number, rowIndex: number, updatedRow: WeightageRow) => void;
|
|
3439
|
+
/**
|
|
3440
|
+
* Optional custom renderer for the weightage cell.
|
|
3441
|
+
* If omitted, the component renders its default number Input.
|
|
3442
|
+
*/
|
|
3443
|
+
renderWeightageCell?: (props: WeightageCellRenderProps) => React__default.ReactNode;
|
|
3444
|
+
/**
|
|
3445
|
+
* Width of the default weightage Input, e.g. "70px", "12%", or 70.
|
|
3446
|
+
*/
|
|
3447
|
+
weightageInputWidth?: React__default.CSSProperties['width'];
|
|
3448
|
+
/**
|
|
3449
|
+
* Called when the refresh/reset icon in the header is clicked
|
|
3450
|
+
*/
|
|
3451
|
+
onReset?: () => void;
|
|
3452
|
+
/**
|
|
3453
|
+
* Show or hide the refresh/reset icon in the header
|
|
3454
|
+
*/
|
|
3455
|
+
showResetIcon?: boolean;
|
|
3456
|
+
/**
|
|
3457
|
+
* Makes all weightage inputs disabled/read-only
|
|
3458
|
+
*/
|
|
3459
|
+
disabled?: boolean;
|
|
3460
|
+
/**
|
|
3461
|
+
* Default minValue applied to every row's Input unless the row overrides it
|
|
3462
|
+
*/
|
|
3463
|
+
minValue?: number;
|
|
3464
|
+
/**
|
|
3465
|
+
* Default maxValue applied to every row's Input unless the row overrides it.
|
|
3466
|
+
* Values above 100 are capped at 100.
|
|
3467
|
+
*/
|
|
3468
|
+
maxValue?: number;
|
|
3469
|
+
/**
|
|
3470
|
+
* Enables expand/collapse behavior for the table content.
|
|
3471
|
+
*/
|
|
3472
|
+
isAccordion?: boolean;
|
|
3473
|
+
/**
|
|
3474
|
+
* Initial expanded state when accordion behavior is enabled.
|
|
3475
|
+
*/
|
|
3476
|
+
defaultExpanded?: boolean;
|
|
3477
|
+
/**
|
|
3478
|
+
* To add styles in WeightageTable
|
|
3479
|
+
*/
|
|
3480
|
+
className?: string;
|
|
3481
|
+
style?: React__default.CSSProperties;
|
|
3482
|
+
[key: string]: any;
|
|
3483
|
+
}
|
|
3484
|
+
|
|
3485
|
+
declare const WeightageTable: React__default.FC<WeightageTableProps>;
|
|
3486
|
+
|
|
3324
3487
|
interface IconProps$1 {
|
|
3325
3488
|
/** Name of the icon to be displayed. */
|
|
3326
3489
|
name: string;
|
|
@@ -5976,167 +6139,6 @@ interface CardPanelProps {
|
|
|
5976
6139
|
|
|
5977
6140
|
declare const CardPanel: ({ headerLabel, children, className, style, contentStyle, headerActions, }: CardPanelProps) => React$1.JSX.Element;
|
|
5978
6141
|
|
|
5979
|
-
type WeightageColumnLabels = {
|
|
5980
|
-
principle: React__default.ReactNode;
|
|
5981
|
-
guidelines: React__default.ReactNode;
|
|
5982
|
-
weightage: React__default.ReactNode;
|
|
5983
|
-
};
|
|
5984
|
-
interface WeightageRow {
|
|
5985
|
-
/**
|
|
5986
|
-
* Label for the guideline row, e.g. "1.1 - Text alternative"
|
|
5987
|
-
*/
|
|
5988
|
-
label: string;
|
|
5989
|
-
/**
|
|
5990
|
-
* Weightage value in % for this row
|
|
5991
|
-
*/
|
|
5992
|
-
value: number;
|
|
5993
|
-
/**
|
|
5994
|
-
* Unique key for the row, falls back to label if not provided
|
|
5995
|
-
*/
|
|
5996
|
-
key?: string;
|
|
5997
|
-
/**
|
|
5998
|
-
* Disable the input for this row
|
|
5999
|
-
*/
|
|
6000
|
-
disabled?: boolean;
|
|
6001
|
-
/**
|
|
6002
|
-
* Minimum allowed value for this row's input (passed to Input's minValue)
|
|
6003
|
-
*/
|
|
6004
|
-
minValue?: number;
|
|
6005
|
-
/**
|
|
6006
|
-
* Maximum allowed value for this row's input (capped at 100)
|
|
6007
|
-
*/
|
|
6008
|
-
maxValue?: number;
|
|
6009
|
-
/**
|
|
6010
|
-
* Error state for this row's input, controlled internally unless passed in
|
|
6011
|
-
*/
|
|
6012
|
-
error?: boolean;
|
|
6013
|
-
/**
|
|
6014
|
-
* Helper text for this row's input, controlled internally unless passed in
|
|
6015
|
-
*/
|
|
6016
|
-
helperText?: string;
|
|
6017
|
-
}
|
|
6018
|
-
interface WeightageGroup {
|
|
6019
|
-
/**
|
|
6020
|
-
* Principle / group label, e.g. "1. Perceivable"
|
|
6021
|
-
*/
|
|
6022
|
-
principle: string;
|
|
6023
|
-
/**
|
|
6024
|
-
* Unique key for the group, falls back to principle if not provided
|
|
6025
|
-
*/
|
|
6026
|
-
key?: string;
|
|
6027
|
-
/**
|
|
6028
|
-
* Guideline rows belonging to this principle
|
|
6029
|
-
*/
|
|
6030
|
-
guidelines: WeightageRow[];
|
|
6031
|
-
}
|
|
6032
|
-
interface WeightageCellRenderProps {
|
|
6033
|
-
group: WeightageGroup;
|
|
6034
|
-
row: WeightageRow;
|
|
6035
|
-
groupIndex: number;
|
|
6036
|
-
rowIndex: number;
|
|
6037
|
-
rowKey: string;
|
|
6038
|
-
minValue: number;
|
|
6039
|
-
maxValue: number;
|
|
6040
|
-
disabled: boolean;
|
|
6041
|
-
inputWidth?: React__default.CSSProperties['width'];
|
|
6042
|
-
inputProps: {
|
|
6043
|
-
id: string;
|
|
6044
|
-
name: string;
|
|
6045
|
-
'aria-label': string;
|
|
6046
|
-
'aria-describedby'?: string;
|
|
6047
|
-
'aria-errormessage'?: string;
|
|
6048
|
-
'aria-invalid'?: boolean;
|
|
6049
|
-
};
|
|
6050
|
-
onChange: (updatedRow: WeightageRow) => void;
|
|
6051
|
-
}
|
|
6052
|
-
interface WeightageTableProps {
|
|
6053
|
-
/**
|
|
6054
|
-
* Title shown on the left side of the header bar
|
|
6055
|
-
*/
|
|
6056
|
-
title?: React__default.ReactNode;
|
|
6057
|
-
/**
|
|
6058
|
-
* Total weightage value shown on the right side of the header bar, e.g. 100.
|
|
6059
|
-
* If not passed, it is auto-computed as the sum of all row values.
|
|
6060
|
-
*/
|
|
6061
|
-
totalWeightage?: number;
|
|
6062
|
-
/**
|
|
6063
|
-
* Max possible weightage retained for backward compatibility.
|
|
6064
|
-
* Use minValue/maxValue for default input validation.
|
|
6065
|
-
*/
|
|
6066
|
-
maxWeightage?: number;
|
|
6067
|
-
/**
|
|
6068
|
-
* Column heading for the principle column
|
|
6069
|
-
*/
|
|
6070
|
-
principleColumnLabel?: React__default.ReactNode;
|
|
6071
|
-
/**
|
|
6072
|
-
* Column heading for the guidelines column
|
|
6073
|
-
*/
|
|
6074
|
-
guidelinesColumnLabel?: React__default.ReactNode;
|
|
6075
|
-
/**
|
|
6076
|
-
* Column heading for the weightage column
|
|
6077
|
-
*/
|
|
6078
|
-
weightageColumnLabel?: React__default.ReactNode;
|
|
6079
|
-
/**
|
|
6080
|
-
* Preferred API for overriding column labels in one place.
|
|
6081
|
-
* Individual label props are still supported for backward compatibility.
|
|
6082
|
-
*/
|
|
6083
|
-
columnLabels?: Partial<WeightageColumnLabels>;
|
|
6084
|
-
/**
|
|
6085
|
-
* Data for the table body, grouped by principle. This component is controlled —
|
|
6086
|
-
* the parent owns this array and updates it inside onWeightageChange.
|
|
6087
|
-
*/
|
|
6088
|
-
groups: WeightageGroup[];
|
|
6089
|
-
/**
|
|
6090
|
-
* Called whenever a single row's value changes. Only that row's data is passed back —
|
|
6091
|
-
* use groupIndex/rowIndex to update just that one row in your state.
|
|
6092
|
-
*/
|
|
6093
|
-
onWeightageChange?: (groupIndex: number, rowIndex: number, updatedRow: WeightageRow) => void;
|
|
6094
|
-
/**
|
|
6095
|
-
* Optional custom renderer for the weightage cell.
|
|
6096
|
-
* If omitted, the component renders its default number Input.
|
|
6097
|
-
*/
|
|
6098
|
-
renderWeightageCell?: (props: WeightageCellRenderProps) => React__default.ReactNode;
|
|
6099
|
-
/**
|
|
6100
|
-
* Width of the default weightage Input, e.g. "70px", "12%", or 70.
|
|
6101
|
-
*/
|
|
6102
|
-
weightageInputWidth?: React__default.CSSProperties['width'];
|
|
6103
|
-
/**
|
|
6104
|
-
* Called when the refresh/reset icon in the header is clicked
|
|
6105
|
-
*/
|
|
6106
|
-
onReset?: () => void;
|
|
6107
|
-
/**
|
|
6108
|
-
* Show or hide the refresh/reset icon in the header
|
|
6109
|
-
*/
|
|
6110
|
-
showResetIcon?: boolean;
|
|
6111
|
-
/**
|
|
6112
|
-
* Makes all weightage inputs disabled/read-only
|
|
6113
|
-
*/
|
|
6114
|
-
disabled?: boolean;
|
|
6115
|
-
/**
|
|
6116
|
-
* Default minValue applied to every row's Input unless the row overrides it
|
|
6117
|
-
*/
|
|
6118
|
-
minValue?: number;
|
|
6119
|
-
/**
|
|
6120
|
-
* Default maxValue applied to every row's Input unless the row overrides it.
|
|
6121
|
-
* Values above 100 are capped at 100.
|
|
6122
|
-
*/
|
|
6123
|
-
maxValue?: number;
|
|
6124
|
-
/**
|
|
6125
|
-
* Enables expand/collapse behavior for the table content.
|
|
6126
|
-
*/
|
|
6127
|
-
isAccordion?: boolean;
|
|
6128
|
-
/**
|
|
6129
|
-
* Initial expanded state when accordion behavior is enabled.
|
|
6130
|
-
*/
|
|
6131
|
-
defaultExpanded?: boolean;
|
|
6132
|
-
/**
|
|
6133
|
-
* To add styles in WeightageTable
|
|
6134
|
-
*/
|
|
6135
|
-
className?: string;
|
|
6136
|
-
style?: React__default.CSSProperties;
|
|
6137
|
-
[key: string]: any;
|
|
6138
|
-
}
|
|
6139
|
-
|
|
6140
6142
|
declare const computeTreeCountsAndFormatNodes: (treeData: TreeNodeProps[], timezone?: string) => TreeNodeProps[];
|
|
6141
6143
|
declare const updateSearchTree: (searchValues: DynamicObj$1, treeDataList: TreeNodeProps[], dispatch: Dispatch<any>, setSearchedTree: (data: any) => void, setSearchedRootModule: (data: any) => void) => void;
|
|
6142
6144
|
declare const passesFilters: (facetQueries: DynamicObj$1[], response: DynamicObj$1) => boolean;
|
|
@@ -6287,5 +6289,5 @@ declare const StorageUsageBar: React.FC<StorageUsageBarProps>;
|
|
|
6287
6289
|
|
|
6288
6290
|
declare const validateFileContent: (file: File) => Promise<boolean>;
|
|
6289
6291
|
|
|
6290
|
-
export { AADHAAR_REGEX, ALPHABET_ONLY_REGEX, ALPHABET_WITH_SPACES_ONLY_REGEX, ALPHANUMERIC_PARENTHESIS_REGEX, ALPHANUMERIC_REGEX, ALPHANUMERIC_WITH_DOT_REGEX, ALPHANUMERIC_WITH_ROUND_BRACES_REGEX, ALPHA_NUM_EXTENDED_REGEX, ALPHA_NUM_REGEX, Accordion, AddContentButton, AddResourceButton, AiToggle, AllProjectsDropdown, AnimatedSetting, AppHeader, AttachMedia, AttachmentButton, AutoTruncateText, Avatar, BASE64_REGEX, BIG_END_WHITESPACE, BINARY_NUMBER_REGEX, BODY_TAG_TYPE_VALIDATION, BarChart, Card as Box, BrowserTabs, Button, CAMEL_CASE_REGEX, CERTIFICATES_NAME_REGEX, CHECK_CAMEL_CASE, CREDIT_CARD_REGEX, CURRENCY_GENERIC_REGEX, CardPanel, ChatModal, ChatModalAi, Checkbox, Chip, ChipWithCount, ChooseFile, Col, Comments, ConditionalDropdown, ConnectingBranch, Container, ContentCard, CreateVariableSlider, DATE_REGEX, DECIMAL_NUMBER_REGEX, DRIVING_LICENSE_REGEX, DYNAMIC_VALUE_PATTERN_REGEX, DYNAMIC_VALUE_TYPE_REGEX, DYNAMIC_VALUE_WITH_VALID_BRACKETS_REGEX, DYNAMIC_VALUE__PLACEHOLDER_REGEX, DashboardDonutChart, CustomDatePicker as DatePicker, DebugToolsPanel, DonutChart, DownloadClient, DragAndDrop, Drawer, Dropzone, ELEMENTS_TRAILING_SPACE_REGEX, ELEMENTS_WHITE_SPACE_REGEX, EMAIL_FORMAT_REGEX, EMAIL_REGEX, EMAIL_VALIDATION_REGEX, EXCEL_SPACING_REGEX, EditLabel, EditTextField, Editor, ErrorBoundary, ExcelFile as Excel, ExpandableMenu, FILENAME_VALIDATION_REGEX, 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_FILE_TYPE_VALIDATION, HTML_TAG_REGEX, HighlightText, HistoryCard, INDIAN_CURRENCY_REGEX, INDIAN_PASSPORT_REGEX, INDIAN_PHONE_REGEX, INDIAN_PIN_CODE_REGEX, INTERNATIONAL_PHONE_REGEX, INVALID_EMAIL_REGEX, IPV4_REGEX, IPV6_REGEX, Icon, IconButton, IconRadialChart, IconRadioGroup, Input, InputWithDropdown, JAVASCRIPT_FILE_TYPE_VALIDATION, LINKEDIN_PROFILE_REGEX, LINK_VALIDATION_REGEX, LabelEditTextField, LayoutWithDrawer, LineChart, LineLoader, Link, Loader, MAC_ADDRESS_REGEX, MEMORY_VALIDATION_REGEX, MachineInputField, MediaPreview, MediaViewerModal as MediaViewerModel, MenuOption, MessageBox, MiniModal, MobileSkin, Modal, ModuleChip, MultiRadialChart, MultiSelect, NlpInput as NLPInput, NLP_DESCRIPTION_REGEX, NO_LEADING_TRAILING_SPACE_REGEX, NUMBERS_ONLY_REGEX, NUMBER_REGEX, NetworkErrorBoundary, NoDataAvailable, NoDataContent, NoResultFound, OsTree, OtpVerification, OverviewModal, PAN_CARD_REGEX, PARAMETER_ALPHANUMERIC_REGEX, PASSWORD_COMPLEX_REGEX, PASSWORD_SIMPLE_REGEX, PHONE_REGEX, POSTAL_CODE_REGEX, Paper, PhoneInputField, PieChart, PopUpModal, PrePostTable, ProgressBar, Prompt, PromptContainer, RGB_COLOR_REGEX, ROMAN_NUMERALS_REGEX, RadialChart, RadioButton, RadioGroup, Recaptcha, Row, SCRIPT_REGEX, SERVER_HOST_REGEX, SSN_REGEX, START_END_WHITESPACE_REGEX, STEP_GROUP_NAME_REGEX, ScoreGaugeChart, ScriptGenerationLoader, ScriptSwitchButton, Search, Select, SelectionSwitcher, SequentialConnectingBranch, SessionDropdown, SessionManager, StackedBarChart, StateDropdown, StatusBadge, StatusButton, StatusCard, StatusIndicator, StepLandingTable, StepResultStats, StorageUsageBar, SwitchButton, TIME_REGEX, TWITTER_HANDLE_REGEX, Table, TreeTable as TableTree, TableTreeFn, TableWithAccordion, Tabs, TabsWithSilder, Textarea as TextArea, TextEditor, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, TooltipService, TruncatedTooltip, Typography, UNIT_REGEX, URL_REGEX, USERNAME_REGEX, USERNAME_SPECIAL_REGEX, US_ZIP_CODE_REGEX, UUID_REGEX, VEHICLE_REGISTRATION_REGEX, VariableDropdown, VariableInput, VariableSuggestionInputDropDown, WHITESPACE_REGEX, XML_FILE_TYPE_VALIDATION, ZoomControl, addPrePostStepGroup, addStepGroup, autoScrollToTableLastRow, capitalize, checkEmpty, checkMicrophoneAccess, cleanAllTooltips, clearStore, compareArrays, compareObjects, computeTreeCountsAndFormatNodes, convertFormDataToObject, convertToBytes, convertToGB, convertToISO, copyToClipboard, debounce, deleteStoreValue, ffid, findAndInsert, formatDate, formatResponseDate, getEncryptedData, getExtension, getExtensionWithPeriod, getFiltersFromUrl, getNavigateToKey, getSequentialPayload, getStoreValue, getTopVisibleNodeKey, getTreeDetails, handleTimeZoneChange, handleTreeExpandAllCollapseAll, handleTreeNodeExpandCollapse, handleTreeNodeSect, handleUnCheckAllTreeNodesWithUpdates, hasDuplicateFile, isEmptyObject, isTextTruncated, nlpInputDelay, passesFilters, rearrangeDragItem, restoreSelectedFilters, saveFileFromBlob, scrollToView, setStoreValue, throttle, toCamelCase, toast, toggleShowHideEntity, truncateText, updateSearchTree, updateTreeState, useBeforeUnload, useClickOutside, useDeviceType, useFileDropzone, useKeyboardActions, useTheme, useTriggerControl, validateFileContent };
|
|
6292
|
+
export { AADHAAR_REGEX, ALPHABET_ONLY_REGEX, ALPHABET_WITH_SPACES_ONLY_REGEX, ALPHANUMERIC_PARENTHESIS_REGEX, ALPHANUMERIC_REGEX, ALPHANUMERIC_WITH_DOT_REGEX, ALPHANUMERIC_WITH_ROUND_BRACES_REGEX, ALPHA_NUM_EXTENDED_REGEX, ALPHA_NUM_REGEX, Accordion, AddContentButton, AddResourceButton, AiToggle, AllProjectsDropdown, AnimatedSetting, AppHeader, AttachMedia, AttachmentButton, AutoTruncateText, Avatar, BASE64_REGEX, BIG_END_WHITESPACE, BINARY_NUMBER_REGEX, BODY_TAG_TYPE_VALIDATION, BarChart, Card as Box, BrowserTabs, Button, CAMEL_CASE_REGEX, CERTIFICATES_NAME_REGEX, CHECK_CAMEL_CASE, CREDIT_CARD_REGEX, CURRENCY_GENERIC_REGEX, CardPanel, ChatModal, ChatModalAi, Checkbox, Chip, ChipWithCount, ChooseFile, Col, Comments, ConditionalDropdown, ConnectingBranch, Container, ContentCard, CreateVariableSlider, DATE_REGEX, DECIMAL_NUMBER_REGEX, DRIVING_LICENSE_REGEX, DYNAMIC_VALUE_PATTERN_REGEX, DYNAMIC_VALUE_TYPE_REGEX, DYNAMIC_VALUE_WITH_VALID_BRACKETS_REGEX, DYNAMIC_VALUE__PLACEHOLDER_REGEX, DashboardDonutChart, CustomDatePicker as DatePicker, DebugToolsPanel, DonutChart, DownloadClient, DragAndDrop, Drawer, Dropzone, ELEMENTS_TRAILING_SPACE_REGEX, ELEMENTS_WHITE_SPACE_REGEX, EMAIL_FORMAT_REGEX, EMAIL_REGEX, EMAIL_VALIDATION_REGEX, EXCEL_SPACING_REGEX, EditLabel, EditTextField, Editor, ErrorBoundary, ExcelFile as Excel, ExpandableMenu, FILENAME_VALIDATION_REGEX, 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_FILE_TYPE_VALIDATION, HTML_TAG_REGEX, HighlightText, HistoryCard, INDIAN_CURRENCY_REGEX, INDIAN_PASSPORT_REGEX, INDIAN_PHONE_REGEX, INDIAN_PIN_CODE_REGEX, INTERNATIONAL_PHONE_REGEX, INVALID_EMAIL_REGEX, IPV4_REGEX, IPV6_REGEX, Icon, IconButton, IconRadialChart, IconRadioGroup, Input, InputWithDropdown, JAVASCRIPT_FILE_TYPE_VALIDATION, LINKEDIN_PROFILE_REGEX, LINK_VALIDATION_REGEX, LabelEditTextField, LayoutWithDrawer, LineChart, LineLoader, Link, Loader, MAC_ADDRESS_REGEX, MEMORY_VALIDATION_REGEX, MachineInputField, MediaPreview, MediaViewerModal as MediaViewerModel, MenuOption, MessageBox, MiniModal, MobileSkin, Modal, ModuleChip, MultiRadialChart, MultiSelect, NlpInput as NLPInput, NLP_DESCRIPTION_REGEX, NO_LEADING_TRAILING_SPACE_REGEX, NUMBERS_ONLY_REGEX, NUMBER_REGEX, NetworkErrorBoundary, NoDataAvailable, NoDataContent, NoResultFound, OsTree, OtpVerification, OverviewModal, PAN_CARD_REGEX, PARAMETER_ALPHANUMERIC_REGEX, PASSWORD_COMPLEX_REGEX, PASSWORD_SIMPLE_REGEX, PHONE_REGEX, POSTAL_CODE_REGEX, Paper, PhoneInputField, PieChart, PopUpModal, PrePostTable, ProgressBar, Prompt, PromptContainer, RGB_COLOR_REGEX, ROMAN_NUMERALS_REGEX, RadialChart, RadioButton, RadioGroup, Recaptcha, Row, SCRIPT_REGEX, SERVER_HOST_REGEX, SSN_REGEX, START_END_WHITESPACE_REGEX, STEP_GROUP_NAME_REGEX, ScoreGaugeChart, ScriptGenerationLoader, ScriptSwitchButton, Search, Select, SelectionSwitcher, SequentialConnectingBranch, SessionDropdown, SessionManager, StackedBarChart, StateDropdown, StatusBadge, StatusButton, StatusCard, StatusIndicator, StepLandingTable, StepResultStats, StorageUsageBar, SwitchButton, TIME_REGEX, TWITTER_HANDLE_REGEX, Table, TreeTable as TableTree, TableTreeFn, TableWithAccordion, Tabs, TabsWithSilder, Textarea as TextArea, TextEditor, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, TooltipService, TruncatedTooltip, Typography, UNIT_REGEX, URL_REGEX, USERNAME_REGEX, USERNAME_SPECIAL_REGEX, US_ZIP_CODE_REGEX, UUID_REGEX, VEHICLE_REGISTRATION_REGEX, VariableDropdown, VariableInput, VariableSuggestionInputDropDown, WHITESPACE_REGEX, WeightageTable, XML_FILE_TYPE_VALIDATION, ZoomControl, addPrePostStepGroup, addStepGroup, autoScrollToTableLastRow, capitalize, checkEmpty, checkMicrophoneAccess, cleanAllTooltips, clearStore, compareArrays, compareObjects, computeTreeCountsAndFormatNodes, convertFormDataToObject, convertToBytes, convertToGB, convertToISO, copyToClipboard, debounce, deleteStoreValue, ffid, findAndInsert, formatDate, formatResponseDate, getEncryptedData, getExtension, getExtensionWithPeriod, getFiltersFromUrl, getNavigateToKey, getSequentialPayload, getStoreValue, getTopVisibleNodeKey, getTreeDetails, handleTimeZoneChange, handleTreeExpandAllCollapseAll, handleTreeNodeExpandCollapse, handleTreeNodeSect, handleUnCheckAllTreeNodesWithUpdates, hasDuplicateFile, isEmptyObject, isTextTruncated, nlpInputDelay, passesFilters, rearrangeDragItem, restoreSelectedFilters, saveFileFromBlob, scrollToView, setStoreValue, throttle, toCamelCase, toast, toggleShowHideEntity, truncateText, updateSearchTree, updateTreeState, useBeforeUnload, useClickOutside, useDeviceType, useFileDropzone, useKeyboardActions, useTheme, useTriggerControl, validateFileContent };
|
|
6291
6293
|
export type { RootNode$1 as RootNode, TreeNodeProps, WeightageCellRenderProps, WeightageColumnLabels, WeightageGroup, WeightageRow, WeightageTableProps };
|