pixel-react 1.13.70 → 1.13.71
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/StyleGuide/ColorPalette/colorPaletteList.js +10 -0
- package/lib/StyleGuide/ColorPalette/colorPaletteList.js.map +1 -1
- package/lib/_virtual/index10.js +2 -2
- package/lib/_virtual/index11.js +2 -2
- package/lib/assets/icons/capture_image.svg.js +6 -0
- package/lib/assets/icons/capture_image.svg.js.map +1 -0
- package/lib/components/Button/Button.js +6 -2
- package/lib/components/Button/Button.js.map +1 -1
- package/lib/components/Button/types.d.ts +4 -0
- package/lib/components/ChooseFile/ChooseFile.js +4 -2
- package/lib/components/ChooseFile/ChooseFile.js.map +1 -1
- package/lib/components/ChooseFile/types.d.ts +4 -0
- package/lib/components/Icon/iconList.js +2 -0
- package/lib/components/Icon/iconList.js.map +1 -1
- package/lib/components/TextArea/Textarea.d.ts +1 -1
- package/lib/components/TextArea/Textarea.js +6 -3
- package/lib/components/TextArea/Textarea.js.map +1 -1
- package/lib/components/TextArea/Types.d.ts +8 -0
- package/lib/components/variableSuggestionInputDropDown/VariableSuggestionInputDropDown.js +1 -1
- package/lib/components/variableSuggestionInputDropDown/VariableSuggestionInputDropDown.js.map +1 -1
- package/lib/index.cjs +20 -8
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +17 -1
- package/lib/node_modules/js-beautify/js/src/css/beautifier.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/javascript/beautifier.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/index.js +1 -1
- package/lib/styles.css +1 -1
- package/lib/styles.css.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
@@ -191,6 +191,10 @@ interface ButtonProps {
|
|
191
191
|
*/
|
192
192
|
typographyStyle?: React.CSSProperties;
|
193
193
|
iconColor?: string;
|
194
|
+
/**
|
195
|
+
* Is the Type ChooseFile Action Mandatory for the button
|
196
|
+
*/
|
197
|
+
isMandatory?: boolean;
|
194
198
|
}
|
195
199
|
|
196
200
|
declare const Button: React$1.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
@@ -1074,9 +1078,17 @@ interface TextareaProps {
|
|
1074
1078
|
* To make text are read only state
|
1075
1079
|
*/
|
1076
1080
|
readOnly?: boolean;
|
1081
|
+
/**
|
1082
|
+
* To show the capacity of textArea chars.
|
1083
|
+
*/
|
1084
|
+
displayCapacity?: boolean;
|
1085
|
+
/**
|
1086
|
+
* isLabe lRequired for the textArea field without label, showing placeholder
|
1087
|
+
*/
|
1088
|
+
isLabelRequired?: boolean;
|
1077
1089
|
}
|
1078
1090
|
|
1079
|
-
declare const Textarea: ({ capacity, name, label, value, variant, error, helperText, disabled, required, placeholder, className, onChange, onBlur, onFocus, onPaste, rows, cols, resize, errorText, readOnly, ...props }: TextareaProps) => react_jsx_runtime.JSX.Element;
|
1091
|
+
declare const Textarea: ({ capacity, name, label, value, variant, error, helperText, disabled, required, placeholder, className, onChange, onBlur, onFocus, onPaste, rows, cols, resize, errorText, readOnly, displayCapacity, isLabelRequired, ...props }: TextareaProps) => react_jsx_runtime.JSX.Element;
|
1080
1092
|
|
1081
1093
|
interface StatusButtonProps {
|
1082
1094
|
/**
|
@@ -3700,6 +3712,10 @@ interface ChooseFileProps {
|
|
3700
3712
|
* handleCloseIcon function will set to the initial state .
|
3701
3713
|
*/
|
3702
3714
|
handleCloseIcon?: () => void;
|
3715
|
+
/**
|
3716
|
+
* Is the Type ChooseFile Action Mandatory.
|
3717
|
+
*/
|
3718
|
+
isMandatory?: boolean;
|
3703
3719
|
}
|
3704
3720
|
|
3705
3721
|
declare const ChooseFile: FC<ChooseFileProps>;
|
@@ -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 { __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 beautifier } from '../../../../../_virtual/
|
1
|
+
import { __exports as beautifier } from '../../../../../_virtual/beautifier.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
|
|