pixel-react 1.14.61 → 1.14.63
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/Excel/Data.d.ts +60 -0
- package/lib/components/Excel/Data.js +12 -2
- package/lib/components/Excel/Data.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.js +19 -4
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.js.map +1 -1
- package/lib/components/Excel/dataConversion.js +11 -2
- package/lib/components/Excel/dataConversion.js.map +1 -1
- package/lib/components/MachineInputField/MachineInputField.js +2 -2
- package/lib/components/MachineInputField/MachineInputField.js.map +1 -1
- package/lib/components/Select/Select.js +3 -1
- package/lib/components/Select/Select.js.map +1 -1
- package/lib/components/Select/types.d.ts +3 -2
- package/lib/components/SequentialConnectingBranch/components/Branches/Branches.js +4 -4
- package/lib/components/SequentialConnectingBranch/components/Branches/Branches.js.map +1 -1
- package/lib/index.cjs +38 -12
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +3 -2
- 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/javascript/beautifier.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/options.js +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
@@ -992,8 +992,8 @@ interface SelectProps$1 {
|
|
992
992
|
*/
|
993
993
|
background?: string;
|
994
994
|
/**
|
995
|
-
|
996
|
-
|
995
|
+
* No Result message
|
996
|
+
*/
|
997
997
|
noResultsMessage?: string;
|
998
998
|
/**
|
999
999
|
* Ref for select option dropdown
|
@@ -1003,6 +1003,7 @@ interface SelectProps$1 {
|
|
1003
1003
|
* handling dropdownDown height
|
1004
1004
|
*/
|
1005
1005
|
dropDownHeight?: number;
|
1006
|
+
onSearchText?: (text: string) => void;
|
1006
1007
|
}
|
1007
1008
|
type OptionValue$3 = any;
|
1008
1009
|
interface Option$5 {
|
@@ -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/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 requireTokenizer } from './tokenizer.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';
|
package/package.json
CHANGED