pixel-react 1.13.92 → 1.13.94
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/AttachmentButton/AttachmentButton.js +1 -1
- package/lib/components/EditLabel/EditLabel.js +1 -1
- package/lib/components/EditLabel/EditLabel.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js +29 -20
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Cell.d.ts +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Cell.js +8 -9
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Cell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.js +3 -3
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.js +3 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.js.map +1 -1
- package/lib/components/MachineInputField/MachineInputField.js +15 -3
- package/lib/components/MachineInputField/MachineInputField.js.map +1 -1
- package/lib/components/MachineInputField/types.d.ts +1 -0
- package/lib/components/SequentialConnectingBranch/components/Branches/Branches.js +3 -2
- package/lib/components/SequentialConnectingBranch/components/Branches/Branches.js.map +1 -1
- package/lib/components/Table/Table.d.ts +1 -1
- package/lib/components/Table/Table.js +88 -58
- package/lib/components/Table/Table.js.map +1 -1
- package/lib/components/Table/Types.d.ts +2 -4
- package/lib/components/TableTreeFn/Components/TableBody.js +4 -16
- package/lib/components/TableTreeFn/Components/TableBody.js.map +1 -1
- package/lib/components/TableTreeFn/TableTreeFn.js +140 -128
- package/lib/components/TableTreeFn/TableTreeFn.js.map +1 -1
- package/lib/components/TableTreeFn/types.d.ts +1 -0
- package/lib/components/TextArea/Textarea.js +1 -1
- package/lib/components/TextArea/Textarea.js.map +1 -1
- package/lib/index.cjs +294 -242
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +5 -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/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/components/TableTreeFn/TableTree.storiesFn.d.ts +0 -11
- package/lib/components/TableTreeFn/TableTree.storiesFn.js +0 -340
- package/lib/components/TableTreeFn/TableTree.storiesFn.js.map +0 -1
package/lib/index.d.ts
CHANGED
@@ -1394,7 +1394,6 @@ interface TableProps$2 {
|
|
1394
1394
|
* The content that to be displayed if editComponent
|
1395
1395
|
*/
|
1396
1396
|
editComponent?: ReactNode;
|
1397
|
-
columnSticky?: boolean;
|
1398
1397
|
/**
|
1399
1398
|
* tableRef to get the scroll position & to pass control of table to parent component
|
1400
1399
|
*/
|
@@ -1411,9 +1410,11 @@ interface TableProps$2 {
|
|
1411
1410
|
* z-index for the table header
|
1412
1411
|
*/
|
1413
1412
|
tableHeaderZindex?: number;
|
1413
|
+
frozenWidth?: number;
|
1414
|
+
freezeColumns?: number;
|
1414
1415
|
}
|
1415
1416
|
|
1416
|
-
declare const Table: ({ data, columns, headerType, withCheckbox, onSelect, allSelected, partialSelected, withFixedHeader, borderWithRadius, headerCheckboxDisabled, noDataContent, height, className, tableHeadClass, tableBodyRowClass, headerTextColor, tableDataTextColor, headerIconName, headerIconOnClick, draggable, onDragEnd, loadMore, editMode, editComponent, getAccordionStatus, accordionContent,
|
1417
|
+
declare const Table: ({ data, columns, headerType, withCheckbox, onSelect, allSelected, partialSelected, withFixedHeader, borderWithRadius, headerCheckboxDisabled, noDataContent, height, className, tableHeadClass, tableBodyRowClass, headerTextColor, tableDataTextColor, headerIconName, headerIconOnClick, draggable, onDragEnd, loadMore, editMode, editComponent, getAccordionStatus, accordionContent, tableRef, isRowCheckBoxDisable, isRowDisabled, tableHeaderZindex, freezeColumns, }: TableProps$2) => react_jsx_runtime.JSX.Element;
|
1417
1418
|
|
1418
1419
|
/**
|
1419
1420
|
* Props for the Add Resource Button component.
|
@@ -2907,6 +2908,7 @@ declare const IconRadioGroup: React__default.FC<IconRadioGroupProps>;
|
|
2907
2908
|
interface MachineType {
|
2908
2909
|
type: string;
|
2909
2910
|
label: string;
|
2911
|
+
version?: string;
|
2910
2912
|
}
|
2911
2913
|
interface MachineInputFieldProps {
|
2912
2914
|
width?: string;
|
@@ -4347,6 +4349,7 @@ interface TreeTableProps {
|
|
4347
4349
|
disableEditLabelConfirmIcon?: boolean;
|
4348
4350
|
transparentHeader?: boolean;
|
4349
4351
|
navigateTreeNode?: string | null;
|
4352
|
+
handleRemoveNavigateTreeNode?: () => void;
|
4350
4353
|
}
|
4351
4354
|
type OptionValue = any;
|
4352
4355
|
interface Option$1 {
|
@@ -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';
|