pixel-react 1.15.2 → 1.15.3
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/Checkbox/Checkbox.js +1 -1
- package/lib/components/Checkbox/Checkbox.js.map +1 -1
- package/lib/components/Input/Input.js +1 -1
- package/lib/components/Input/Input.js.map +1 -1
- package/lib/components/MediaViewerModal/MediaViewerModal.js +60 -28
- package/lib/components/MediaViewerModal/MediaViewerModal.js.map +1 -1
- package/lib/components/MenuOption/MenuOption.js +1 -1
- package/lib/components/MenuOption/MenuOption.js.map +1 -1
- package/lib/components/Table/Table.js +1 -1
- package/lib/components/Table/Table.js.map +1 -1
- package/lib/components/variableSuggestionInputDropDown/VariableSuggestionInputDropDown.js +35 -2
- package/lib/components/variableSuggestionInputDropDown/VariableSuggestionInputDropDown.js.map +1 -1
- package/lib/components/variableSuggestionInputDropDown/types.d.ts +23 -0
- package/lib/index.cjs +98 -34
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +23 -0
- 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/javascript/beautifier.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/options.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
|
@@ -5217,6 +5217,29 @@ interface VariableSuggestionInputDropDownProps {
|
|
|
5217
5217
|
*/
|
|
5218
5218
|
inputTitle?: string;
|
|
5219
5219
|
helperTextWidth?: number | string;
|
|
5220
|
+
iconProps?: {
|
|
5221
|
+
/**
|
|
5222
|
+
* Flag to determine if icon should be shown
|
|
5223
|
+
*/
|
|
5224
|
+
isShowIcon?: boolean;
|
|
5225
|
+
/**
|
|
5226
|
+
* Function triggered when icon is clicked
|
|
5227
|
+
*/
|
|
5228
|
+
onIconClick?: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
|
|
5229
|
+
/**
|
|
5230
|
+
* Name of the icon to display
|
|
5231
|
+
*/
|
|
5232
|
+
iconName?: string;
|
|
5233
|
+
/**
|
|
5234
|
+
* Tooltip title shown when hovering over icon
|
|
5235
|
+
*/
|
|
5236
|
+
iconToolTipTitle?: string;
|
|
5237
|
+
/**
|
|
5238
|
+
* Flag to disable the icon
|
|
5239
|
+
*/
|
|
5240
|
+
isIconDisable?: boolean;
|
|
5241
|
+
iconColor?: string;
|
|
5242
|
+
};
|
|
5220
5243
|
}
|
|
5221
5244
|
|
|
5222
5245
|
declare const VariableSuggestionInputDropDown: React$1.ForwardRefExoticComponent<VariableSuggestionInputDropDownProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
@@ -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 { __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';
|