pixel-react 1.14.95 → 1.14.97
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/_virtual/index10.js +2 -2
- package/lib/_virtual/index11.js +2 -2
- package/lib/components/Editor/Editor.js +10 -8
- package/lib/components/Editor/Editor.js.map +1 -1
- package/lib/components/Editor/types.d.ts +4 -0
- package/lib/components/TableTreeFn/Utils/addNewRow.js +4 -4
- package/lib/index.cjs +14 -12
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +4 -0
- package/lib/node_modules/js-beautify/js/src/css/options.js +1 -1
- package/lib/node_modules/js-beautify/js/src/html/index.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/index.js +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -3600,6 +3600,10 @@ interface EditorProps {
|
|
|
3600
3600
|
* Custom Monaco Editor options
|
|
3601
3601
|
*/
|
|
3602
3602
|
customOptions?: any;
|
|
3603
|
+
/**
|
|
3604
|
+
* Zindex of the variable dropdown in the editor
|
|
3605
|
+
*/
|
|
3606
|
+
editorVariableZindex?: number;
|
|
3603
3607
|
}
|
|
3604
3608
|
interface dropdownPositionType {
|
|
3605
3609
|
top: number;
|
|
@@ -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 { __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
|
|
package/package.json
CHANGED