pixel-react 1.13.99 → 1.14.1
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/ComponentProps/TreeNodeProps.d.ts +3 -0
- package/lib/components/Editor/DynamicWidthToolTip.d.ts +6 -0
- package/lib/components/Editor/DynamicWidthToolTip.js +63 -0
- package/lib/components/Editor/DynamicWidthToolTip.js.map +1 -0
- package/lib/components/Editor/Editor.js +2 -2
- package/lib/components/Editor/Editor.js.map +1 -1
- package/lib/components/Editor/VariableDropdown.js +41 -17
- package/lib/components/Editor/VariableDropdown.js.map +1 -1
- package/lib/components/Editor/constants.js +2 -2
- package/lib/components/Editor/constants.js.map +1 -1
- package/lib/components/FileDropzone/FileDropzone.js +4 -3
- package/lib/components/FileDropzone/FileDropzone.js.map +1 -1
- package/lib/components/FileDropzone/types.d.ts +2 -0
- package/lib/components/MachineInputField/MachineInputField.js +4 -4
- package/lib/components/MachineInputField/MachineInputField.js.map +1 -1
- package/lib/components/NLPInput/NlpInput.d.ts +1 -1
- package/lib/components/NLPInput/NlpInput.js +4 -2
- package/lib/components/NLPInput/NlpInput.js.map +1 -1
- package/lib/components/NLPInput/components/ChipsFolder/ChipsAccordion.js +3 -2
- package/lib/components/NLPInput/components/ChipsFolder/ChipsAccordion.js.map +1 -1
- package/lib/components/NLPInput/components/NlpDropDown/NlpDropdown.js +1 -1
- package/lib/components/NLPInput/components/NlpDropDown/NlpDropdown.js.map +1 -1
- package/lib/components/NLPInput/types.d.ts +2 -0
- package/lib/components/PhoneInput/PhoneInput.js +11 -7
- package/lib/components/PhoneInput/PhoneInput.js.map +1 -1
- package/lib/components/PhoneInput/types.d.ts +1 -0
- package/lib/components/TableTreeFn/Components/TableHead.d.ts +1 -1
- package/lib/components/TableTreeFn/Components/TableHead.js +8 -10
- package/lib/components/TableTreeFn/Components/TableHead.js.map +1 -1
- package/lib/components/TableTreeFn/TableTreeFn.js +2 -1
- package/lib/components/TableTreeFn/TableTreeFn.js.map +1 -1
- package/lib/hooks/useFileDropzone.js +15 -12
- package/lib/hooks/useFileDropzone.js.map +1 -1
- package/lib/index.cjs +158 -72
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +8 -1
- package/lib/node_modules/js-beautify/js/src/css/beautifier.js +1 -1
- package/lib/node_modules/js-beautify/js/src/css/options.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/options.js +1 -1
- package/lib/styles.css +1 -1
- package/lib/styles.css.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
@@ -1595,6 +1595,7 @@ interface FileDropzoneProps {
|
|
1595
1595
|
* Its fileInputRef using inside fileDropZone.
|
1596
1596
|
**/
|
1597
1597
|
fileInputRef?: RefObject<HTMLInputElement>;
|
1598
|
+
handleReplaceFile?: () => void;
|
1598
1599
|
}
|
1599
1600
|
interface FileError {
|
1600
1601
|
message: string;
|
@@ -1618,6 +1619,7 @@ interface DropzoneOptions {
|
|
1618
1619
|
isApiResponseError?: boolean;
|
1619
1620
|
selectedFile?: File | DynamicObj | null;
|
1620
1621
|
setSelectedFile?: (file: File | DynamicObj | null) => void;
|
1622
|
+
handleReplaceFile?: () => void;
|
1621
1623
|
}
|
1622
1624
|
interface DropzoneState {
|
1623
1625
|
getRootProps: () => React.HTMLAttributes<HTMLElement>;
|
@@ -2166,6 +2168,9 @@ type TreeNodeProps = {
|
|
2166
2168
|
hideResources?: boolean;
|
2167
2169
|
hidePreOrPost?: boolean;
|
2168
2170
|
isScript?: boolean;
|
2171
|
+
stepId?: string;
|
2172
|
+
conditionId?: string;
|
2173
|
+
machInstanceId?: string;
|
2169
2174
|
};
|
2170
2175
|
|
2171
2176
|
interface NewNode$1 {
|
@@ -2851,6 +2856,7 @@ interface SelectProps {
|
|
2851
2856
|
isWebservice?: boolean;
|
2852
2857
|
closeInputOnOutsideClick?: () => void;
|
2853
2858
|
tooltipText?: string;
|
2859
|
+
ChipsAccordionWidth?: string;
|
2854
2860
|
}
|
2855
2861
|
interface NlpRenderOption {
|
2856
2862
|
displayName: string | ReactNode;
|
@@ -2863,7 +2869,7 @@ interface NlpRenderOption {
|
|
2863
2869
|
name?: string;
|
2864
2870
|
}
|
2865
2871
|
|
2866
|
-
declare const NlpInput: ({ label, leftIcon, rightIcon, rightIconColor, showLabel, onHelpIconClick, aiIconClick, webServiceClick, containerWidth, optionsList, selectedOption, onChange, errorMsg, className, optionZIndex, disabled, borderRadius, showBorder, required, value, onSelect, chipOptionList, selectedChips, loadMoreOptions, isWebservice, closeInputOnOutsideClick, tooltipText, }: SelectProps) => react_jsx_runtime.JSX.Element;
|
2872
|
+
declare const NlpInput: ({ label, leftIcon, rightIcon, rightIconColor, showLabel, onHelpIconClick, aiIconClick, webServiceClick, containerWidth, optionsList, selectedOption, onChange, errorMsg, className, optionZIndex, disabled, borderRadius, showBorder, required, value, onSelect, chipOptionList, selectedChips, loadMoreOptions, isWebservice, closeInputOnOutsideClick, tooltipText, ChipsAccordionWidth, }: SelectProps) => react_jsx_runtime.JSX.Element;
|
2867
2873
|
|
2868
2874
|
interface IconRadioItem {
|
2869
2875
|
/**
|
@@ -4794,6 +4800,7 @@ interface PhoneInputProps {
|
|
4794
4800
|
isVerified?: boolean;
|
4795
4801
|
isVerifyDisplay?: boolean;
|
4796
4802
|
onVerifyClick?: () => void;
|
4803
|
+
onValidationChange?: (isValid: boolean) => void;
|
4797
4804
|
}
|
4798
4805
|
|
4799
4806
|
declare const PhoneInputField: React__default.FC<PhoneInputProps>;
|
@@ -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 requireInputscanner } from '../core/inputscanner.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 requireOptions } from './options.js';
|
3
3
|
import { __require as requireOutput } from '../core/output.js';
|
4
4
|
import { __require as requireTokenizer } from './tokenizer.js';
|