pixel-react 1.14.38 → 1.14.39
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 -1
- package/lib/components/Charts/BarChart/BarChart.d.ts +1 -0
- package/lib/components/Charts/BarChart/BarChart.js +6 -2
- package/lib/components/Charts/BarChart/BarChart.js.map +1 -1
- package/lib/components/variableSuggestionInputDropDown/VariableSuggestionInputDropDown.js +21 -18
- package/lib/components/variableSuggestionInputDropDown/VariableSuggestionInputDropDown.js.map +1 -1
- package/lib/index.cjs +27 -20
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +3 -1
- 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/lib/styles.css +1 -1
- package/lib/styles.css.map +1 -1
- package/lib/utils/TreeNavigateUtils/types.d.ts +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
@@ -2135,7 +2135,7 @@ type TreeNodeProps = {
|
|
2135
2135
|
path?: string;
|
2136
2136
|
searchKey?: string;
|
2137
2137
|
key: string;
|
2138
|
-
name?: string;
|
2138
|
+
name?: string | JSX.Element;
|
2139
2139
|
projectId?: string;
|
2140
2140
|
hierarchy: number;
|
2141
2141
|
executionOrder?: number;
|
@@ -2190,6 +2190,7 @@ type TreeNodeProps = {
|
|
2190
2190
|
stepId?: string;
|
2191
2191
|
conditionId?: string;
|
2192
2192
|
machInstanceId?: string;
|
2193
|
+
duration?: string;
|
2193
2194
|
};
|
2194
2195
|
|
2195
2196
|
interface NewNode$1 {
|
@@ -4485,6 +4486,7 @@ type BarChartProps = {
|
|
4485
4486
|
isDashboardVersions?: boolean;
|
4486
4487
|
type?: string;
|
4487
4488
|
isMemory?: boolean;
|
4489
|
+
tooltipWidth?: string;
|
4488
4490
|
};
|
4489
4491
|
declare const BarChart: React__default.FC<BarChartProps>;
|
4490
4492
|
|
@@ -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 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/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';
|