pixel-react 1.14.84 → 1.14.86
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 +2 -0
- package/lib/_virtual/index10.js +2 -2
- package/lib/_virtual/index11.js +2 -2
- package/lib/components/Excel/ExcelFile/ExcelFile.js +4 -4
- package/lib/components/Excel/ExcelFile/ExcelFile.js.map +1 -1
- package/lib/components/InputWithDropdown/InputWithDropdown.js +4 -2
- package/lib/components/InputWithDropdown/InputWithDropdown.js.map +1 -1
- package/lib/components/InputWithDropdown/types.d.ts +1 -0
- package/lib/components/MenuOption/MenuOption.js +2 -1
- package/lib/components/MenuOption/MenuOption.js.map +1 -1
- package/lib/components/MultiSelect/MultiSelect.js +1 -0
- package/lib/components/MultiSelect/MultiSelect.js.map +1 -1
- package/lib/components/Select/Select.js +41 -24
- package/lib/components/Select/Select.js.map +1 -1
- package/lib/components/Select/components/types.d.ts +1 -0
- package/lib/components/Select/components/types.js.map +1 -1
- package/lib/components/Select/types.d.ts +1 -0
- package/lib/components/SessionDropdown/SessionDropdown.js +45 -29
- package/lib/components/SessionDropdown/SessionDropdown.js.map +1 -1
- package/lib/components/SessionDropdown/type.d.ts +2 -0
- package/lib/components/TableTreeFn/Utils/addNewRow.js +30 -14
- package/lib/components/TableTreeFn/Utils/addNewRow.js.map +1 -1
- package/lib/components/TableTreeFn/Utils/updateParentSibling.d.ts +3 -0
- package/lib/components/TableTreeFn/Utils/updateParentSibling.js +56 -0
- package/lib/components/TableTreeFn/Utils/updateParentSibling.js.map +1 -0
- package/lib/components/TextArea/Textarea.js +2 -2
- package/lib/components/TextArea/Textarea.js.map +1 -1
- package/lib/index.cjs +181 -75
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +6 -0
- package/lib/node_modules/js-beautify/js/src/css/index.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/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/index.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/validations/regex.d.ts +2 -1
- package/lib/validations/regex.js +2 -2
- package/lib/validations/regex.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
@@ -1011,6 +1011,7 @@ interface SelectProps$1 {
|
|
1011
1011
|
dropDownHeight?: number;
|
1012
1012
|
onSearchText?: (text: string) => void;
|
1013
1013
|
isCustomButtonDisabled?: boolean;
|
1014
|
+
hasInnerClearIcon?: boolean;
|
1014
1015
|
}
|
1015
1016
|
type OptionValue$3 = any;
|
1016
1017
|
interface Option$5 {
|
@@ -1897,6 +1898,7 @@ interface InputWithDropdownProps {
|
|
1897
1898
|
*/
|
1898
1899
|
disableSelectHover?: boolean;
|
1899
1900
|
inputRefWithDropdown?: RefObject<HTMLInputElement>;
|
1901
|
+
autoFocus?: boolean;
|
1900
1902
|
}
|
1901
1903
|
|
1902
1904
|
declare const InputWithDropdown: React$1.ForwardRefExoticComponent<InputWithDropdownProps & React$1.RefAttributes<HTMLInputElement>>;
|
@@ -2214,6 +2216,8 @@ type TreeNodeProps = {
|
|
2214
2216
|
duration?: string;
|
2215
2217
|
headless?: boolean;
|
2216
2218
|
recordedVideoUrlId?: string;
|
2219
|
+
videoRecorderPath?: string;
|
2220
|
+
includeIteration?: boolean;
|
2217
2221
|
};
|
2218
2222
|
|
2219
2223
|
interface NewNode$1 {
|
@@ -4442,6 +4446,8 @@ interface SessionDropdownProps {
|
|
4442
4446
|
onSecondaryTabClick?: () => void;
|
4443
4447
|
onDownloadClick?: () => void;
|
4444
4448
|
onDeleteClick?: () => void;
|
4449
|
+
downloadIconName?: string;
|
4450
|
+
deleteIconName?: string;
|
4445
4451
|
tabsData?: {
|
4446
4452
|
id: string;
|
4447
4453
|
label: string;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { __module as css } from '../../../../../_virtual/
|
1
|
+
import { __module as css } 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/tokenizer2.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 { __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/tokenizer.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';
|