pixel-react 1.13.99 → 1.14.0
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/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 +5 -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/node_modules/js-beautify/js/src/html/tokenizer.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/tokenizer.js +1 -1
- package/lib/styles.css +1 -1
- package/lib/styles.css.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utils/togglePrePostCondition/togglePrePostCondition.d.ts +2 -0
- package/lib/utils/togglePrePostCondition/togglePrePostCondition.js +13 -0
- package/lib/utils/togglePrePostCondition/togglePrePostCondition.js.map +1 -0
- 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>;
|
@@ -2851,6 +2853,7 @@ interface SelectProps {
|
|
2851
2853
|
isWebservice?: boolean;
|
2852
2854
|
closeInputOnOutsideClick?: () => void;
|
2853
2855
|
tooltipText?: string;
|
2856
|
+
ChipsAccordionWidth?: string;
|
2854
2857
|
}
|
2855
2858
|
interface NlpRenderOption {
|
2856
2859
|
displayName: string | ReactNode;
|
@@ -2863,7 +2866,7 @@ interface NlpRenderOption {
|
|
2863
2866
|
name?: string;
|
2864
2867
|
}
|
2865
2868
|
|
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;
|
2869
|
+
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
2870
|
|
2868
2871
|
interface IconRadioItem {
|
2869
2872
|
/**
|
@@ -4794,6 +4797,7 @@ interface PhoneInputProps {
|
|
4794
4797
|
isVerified?: boolean;
|
4795
4798
|
isVerifyDisplay?: boolean;
|
4796
4799
|
onVerifyClick?: () => void;
|
4800
|
+
onValidationChange?: (isValid: boolean) => void;
|
4797
4801
|
}
|
4798
4802
|
|
4799
4803
|
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';
|
@@ -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 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';
|