pixel-react 1.13.52 → 1.13.54
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/_virtual/index10.js +2 -2
- package/lib/_virtual/index11.js +2 -2
- package/lib/_virtual/index9.js +2 -2
- package/lib/components/AllProjectsDropdown/AllProjectsDropdown.js +3 -3
- package/lib/components/AllProjectsDropdown/AllProjectsDropdown.js.map +1 -1
- package/lib/components/AppHeader/AppHeader.d.ts +0 -1
- package/lib/components/AppHeader/AppHeader.js +4 -28
- package/lib/components/AppHeader/AppHeader.js.map +1 -1
- package/lib/components/AttachmentButton/AttachmentButton.js +5 -2
- package/lib/components/AttachmentButton/AttachmentButton.js.map +1 -1
- package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.js +3 -5
- package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.js.map +1 -1
- package/lib/components/ContentCard/ContentCard.d.ts +1 -1
- package/lib/components/Drawer/Drawer.js +12 -0
- package/lib/components/Drawer/Drawer.js.map +1 -1
- package/lib/components/EditLabel/EditLabel.js +11 -2
- package/lib/components/EditLabel/EditLabel.js.map +1 -1
- package/lib/components/Editor/Editor.js +39 -24
- package/lib/components/Editor/Editor.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js +2 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/matrix.d.ts +2 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/matrix.js +7 -8
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/matrix.js.map +1 -1
- package/lib/components/Icon/iconList.js.map +1 -1
- package/lib/components/Input/Input.js +5 -0
- package/lib/components/Input/Input.js.map +1 -1
- package/lib/components/Input/types.d.ts +8 -0
- package/lib/components/InputWithDropdown/InputWithDropdown.js +2 -0
- package/lib/components/InputWithDropdown/InputWithDropdown.js.map +1 -1
- package/lib/components/InputWithDropdown/types.d.ts +1 -0
- package/lib/components/MachineInputField/MachineInputField.js +4 -1
- package/lib/components/MachineInputField/MachineInputField.js.map +1 -1
- package/lib/components/MenuOption/MenuOption.d.ts +1 -1
- package/lib/components/MenuOption/MenuOption.js +6 -5
- package/lib/components/MenuOption/MenuOption.js.map +1 -1
- package/lib/components/MenuOption/types.d.ts +1 -0
- package/lib/components/MultiSelect/Dropdown.js +5 -1
- package/lib/components/MultiSelect/Dropdown.js.map +1 -1
- package/lib/components/MultiSelect/MultiSelect.js +1 -1
- package/lib/components/MultiSelect/MultiSelect.js.map +1 -1
- package/lib/components/OverviewModal/overviewModal.js +3 -1
- package/lib/components/OverviewModal/overviewModal.js.map +1 -1
- package/lib/components/ScriptGenerationLoader/ScriptGenerationLoader.js +44 -10
- package/lib/components/ScriptGenerationLoader/ScriptGenerationLoader.js.map +1 -1
- package/lib/components/Search/Search.js +2 -1
- package/lib/components/Search/Search.js.map +1 -1
- package/lib/components/Select/Select.js +3 -0
- package/lib/components/Select/Select.js.map +1 -1
- package/lib/components/Select/components/Dropdown.js +8 -3
- package/lib/components/Select/components/Dropdown.js.map +1 -1
- package/lib/components/TableTree/Components/TableHead.d.ts +1 -1
- package/lib/components/TableTree/Components/TableHead.js +3 -2
- package/lib/components/TableTree/Components/TableHead.js.map +1 -1
- package/lib/components/TableTree/TableTree.js +4 -2
- package/lib/components/TableTree/TableTree.js.map +1 -1
- package/lib/components/TableTree/types.d.ts +2 -0
- package/lib/components/variableSuggestionInputDropDown/VariableSuggestionInputDropDown.js +20 -3
- package/lib/components/variableSuggestionInputDropDown/VariableSuggestionInputDropDown.js.map +1 -1
- package/lib/hooks/useFileDropzone.js +8 -4
- package/lib/hooks/useFileDropzone.js.map +1 -1
- package/lib/index.cjs +197 -207
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +31 -2
- package/lib/index.js +2 -1
- package/lib/index.js.map +1 -1
- package/lib/node_modules/js-beautify/js/src/css/beautifier.js +1 -1
- package/lib/node_modules/js-beautify/js/src/css/index.js +1 -1
- package/lib/node_modules/js-beautify/js/src/html/beautifier.js +1 -1
- package/lib/node_modules/js-beautify/js/src/html/index.js +1 -1
- package/lib/node_modules/js-beautify/js/src/html/options.js +1 -1
- package/lib/node_modules/js-beautify/js/src/html/tokenizer.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/beautifier.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/index.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/options.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/tokenizer.js +1 -1
- package/lib/styles.css +1 -3
- package/lib/styles.css.map +1 -1
- package/package.json +1 -2
package/lib/index.d.ts
CHANGED
@@ -829,6 +829,14 @@ interface InputProps {
|
|
829
829
|
* Reset min and max value for the input field on blur
|
830
830
|
*/
|
831
831
|
adjustToValidRange?: boolean;
|
832
|
+
/**
|
833
|
+
* pattern for input component
|
834
|
+
*/
|
835
|
+
pattern?: string;
|
836
|
+
/**
|
837
|
+
* background for handle input component background
|
838
|
+
*/
|
839
|
+
background?: string;
|
832
840
|
}
|
833
841
|
|
834
842
|
declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
@@ -1243,9 +1251,10 @@ interface MenuOptionProps {
|
|
1243
1251
|
disabled?: boolean;
|
1244
1252
|
/** position of the Menuoption*/
|
1245
1253
|
alignOption?: 'left' | 'right' | 'center';
|
1254
|
+
displayCard?: boolean;
|
1246
1255
|
}
|
1247
1256
|
|
1248
|
-
declare const MenuOption: ({ labelName, iconName, tooltipTitle, tooltipPlacement, options, onClick, onOptionClick, iconButtonSize, iconButtonBorderRadius, iconSize, variant, zIndex, dropdownPlacement, optionCardVariant, targetRef, treeRowRef, isAddResourceButton, disabled, alignOption, }: MenuOptionProps) => react_jsx_runtime.JSX.Element;
|
1257
|
+
declare const MenuOption: ({ labelName, iconName, tooltipTitle, tooltipPlacement, options, onClick, onOptionClick, iconButtonSize, iconButtonBorderRadius, iconSize, variant, zIndex, dropdownPlacement, optionCardVariant, targetRef, treeRowRef, isAddResourceButton, disabled, alignOption, displayCard, }: MenuOptionProps) => react_jsx_runtime.JSX.Element;
|
1249
1258
|
|
1250
1259
|
interface DataProps$3 {
|
1251
1260
|
/**
|
@@ -1812,6 +1821,7 @@ interface InputWithDropdownProps {
|
|
1812
1821
|
dropdownPosition?: 'left' | 'right';
|
1813
1822
|
leftDropDownPositionZindex?: number;
|
1814
1823
|
rightDropDownPositionZindex?: number;
|
1824
|
+
onKeyDown?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
1815
1825
|
}
|
1816
1826
|
|
1817
1827
|
declare const InputWithDropdown: React$1.ForwardRefExoticComponent<InputWithDropdownProps & React$1.RefAttributes<HTMLInputElement>>;
|
@@ -2181,6 +2191,7 @@ interface TreeTableProps {
|
|
2181
2191
|
addModuleSelectWidth?: number;
|
2182
2192
|
onScroll?: () => void;
|
2183
2193
|
disableEditLabelConfirmIcon?: boolean;
|
2194
|
+
transparentHeader?: boolean;
|
2184
2195
|
}
|
2185
2196
|
type OptionValue$1 = any;
|
2186
2197
|
interface Option$2 {
|
@@ -5249,4 +5260,22 @@ declare const convertToBytes: (value: string) => number;
|
|
5249
5260
|
|
5250
5261
|
declare const StepResultStats: React__default.FC<any>;
|
5251
5262
|
|
5252
|
-
|
5263
|
+
interface ScriptGenerationLoaderProps {
|
5264
|
+
/**
|
5265
|
+
* array
|
5266
|
+
*/
|
5267
|
+
actions?: string[];
|
5268
|
+
/**
|
5269
|
+
* In percentage
|
5270
|
+
*/
|
5271
|
+
width?: number;
|
5272
|
+
/**
|
5273
|
+
* In percentage
|
5274
|
+
*/
|
5275
|
+
height?: number;
|
5276
|
+
path?: string;
|
5277
|
+
}
|
5278
|
+
|
5279
|
+
declare const ScriptGenerationLoader: React__default.FC<ScriptGenerationLoaderProps>;
|
5280
|
+
|
5281
|
+
export { AADHAAR_REGEX, ALPHABET_ONLY_REGEX, ALPHANUMERIC_REGEX, ALPHANUMERIC_WITH_ROUND_BRACES_REGEX, ALPHA_NUM_EXTENDED_REGEX, ALPHA_NUM_REGEX, Accordion, AddContentButton, AddResourceButton, AiToggle, AllProjectsDropdown, AnimatedSetting, AppHeader, AttachMedia, AttachmentButton, Avatar, BASE64_REGEX, 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, ChatModal, 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, DonutChart, DownloadClient, DragAndDrop, Drawer, Dropzone, ELEMENTS_TRAILING_SPACE_REGEX, ELEMENTS_WHITE_SPACE_REGEX, EMAIL_REGEX, EMAIL_VALIDATION_REGEX, EditLabel, EditTextField, Editor, ErrorBoundary, 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_FILE_TYPE_VALIDATION, HTML_TAG_REGEX, HighlightText, HistoryCard, 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, JAVASCRIPT_FILE_TYPE_VALIDATION, LINKEDIN_PROFILE_REGEX, LINK_VALIDATION_REGEX, LabelEditTextField, LineChart, LineLoader, Link, 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, NUMBERS_ONLY_REGEX, NUMBER_REGEX, NoDataContent, 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, type RootNode, Row, SCRIPT_REGEX, SSN_REGEX, START_END_WHITESPACE_REGEX, STEP_GROUP_NAME_REGEX, ScriptGenerationLoader, ScriptSwitchButton, Search, Select, SequentialConnectingBranch, SessionDropdown, StateDropdown, StatusButton, StatusCard, StatusIndicator, StepLandingTable, StepResultStats, SwitchButton, TIME_REGEX, TWITTER_HANDLE_REGEX, Table, TreeTable as TableTree, TableWithAccordion, Tabs, TabsWithSilder, Textarea as TextArea, TextEditor, ThemeProvider, Toaster, Toastify, Toggle, ToggleSwitch, Tooltip, type TreeNodeProps, 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, addPrePostStepGroup, addStepGroup, autoScrollToTableLastRow, capitalize, checkEmpty, clearStore, compareArrays, compareObjects, convertFormDataToObject, convertToBytes, convertToGB, convertToISO, debounce, deleteStoreValue, ffid, findAndInsert, formatDate, formatResponseDate, getEncryptedData, getExtension, getExtensionWithPeriod, getSequentialPayload, getStoreValue, getTopVisibleNodeKey, getTreeDetails, handleTimeZoneChange, handleTreeExpandAllCollapseAll, handleTreeNodeExpandCollapse, handleTreeNodeSect, handleUnCheckAllTreeNodesWithUpdates, hasDuplicateFile, isEmptyObject, isTextTruncated, nlpInputDelay, rearrangeDragItem, saveFileFromBlob, scrollToView, setStoreValue, throttle, toCamelCase, toast, togglePrePostConditions, truncateText, updateTreeState, useBeforeUnload, useClickOutside, useFileDropzone, useKeyboardActions, useTheme };
|
package/lib/index.js
CHANGED
@@ -156,5 +156,6 @@ export { convertToGB } from './utils/convertToGB/convertToGB.js';
|
|
156
156
|
export { convertToBytes } from './utils/convertToBytes/convertToBytes.js';
|
157
157
|
export { default as Janus } from './node_modules/janus-gateway/npm/dist/janus.es.js';
|
158
158
|
export { default as adapter } from './node_modules/webrtc-adapter/src/js/adapter_core.js';
|
159
|
-
export { default as
|
159
|
+
export { default as StepResultStats } from './components/StepsLandingTable/Components/StepResultStats.js';
|
160
|
+
export { default as ScriptGenerationLoader } from './components/ScriptGenerationLoader/ScriptGenerationLoader.js';
|
160
161
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { __exports as beautifier } from '../../../../../_virtual/
|
1
|
+
import { __exports as beautifier } from '../../../../../_virtual/beautifier.js';
|
2
2
|
import { __require as requireOptions } from './options.js';
|
3
3
|
import { __require as requireOutput } from '../core/output.js';
|
4
4
|
import { __require as requireInputscanner } from '../core/inputscanner.js';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { __module as css } from '../../../../../_virtual/
|
1
|
+
import { __module as css } from '../../../../../_virtual/index9.js';
|
2
2
|
import { __require as requireBeautifier } from './beautifier.js';
|
3
3
|
import { __require as requireOptions } from './options.js';
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { __exports as beautifier } from '../../../../../_virtual/
|
1
|
+
import { __exports as beautifier } from '../../../../../_virtual/beautifier3.js';
|
2
2
|
import { __require as requireOptions } from './options.js';
|
3
3
|
import { __require as requireOutput } from '../core/output.js';
|
4
4
|
import { __require as requireTokenizer } from './tokenizer.js';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { __module as html } from '../../../../../_virtual/
|
1
|
+
import { __module as html } from '../../../../../_virtual/index11.js';
|
2
2
|
import { __require as requireBeautifier } from './beautifier.js';
|
3
3
|
import { __require as requireOptions } from './options.js';
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { __exports as tokenizer } from '../../../../../_virtual/
|
1
|
+
import { __exports as tokenizer } from '../../../../../_virtual/tokenizer.js';
|
2
2
|
import { __require as requireTokenizer$1 } from '../core/tokenizer.js';
|
3
3
|
import { __require as requireDirectives } from '../core/directives.js';
|
4
4
|
import { __require as requireTemplatablepattern } from '../core/templatablepattern.js';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { __exports as beautifier } from '../../../../../_virtual/
|
1
|
+
import { __exports as beautifier } from '../../../../../_virtual/beautifier2.js';
|
2
2
|
import { __require as requireOutput } from '../core/output.js';
|
3
3
|
import { __require as requireToken } from '../core/token.js';
|
4
4
|
import { __require as requireAcorn } from './acorn.js';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { __module as javascript } from '../../../../../_virtual/
|
1
|
+
import { __module as javascript } from '../../../../../_virtual/index10.js';
|
2
2
|
import { __require as requireBeautifier } from './beautifier.js';
|
3
3
|
import { __require as requireOptions } from './options.js';
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { __exports as tokenizer } from '../../../../../_virtual/
|
1
|
+
import { __exports as tokenizer } from '../../../../../_virtual/tokenizer2.js';
|
2
2
|
import { __require as requireInputscanner } from '../core/inputscanner.js';
|
3
3
|
import { __require as requireTokenizer$1 } from '../core/tokenizer.js';
|
4
4
|
import { __require as requireDirectives } from '../core/directives.js';
|