pixel-react 1.15.34 → 1.15.36
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/Charts/LineChart/LineChart.js +1 -2
- package/lib/components/Charts/LineChart/LineChart.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js +64 -60
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/EditableCell.js +26 -12
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/EditableCell.js.map +1 -1
- package/lib/components/FileDropzone/FileDropzone.js +4 -2
- package/lib/components/FileDropzone/FileDropzone.js.map +1 -1
- package/lib/components/FileDropzone/types.d.ts +2 -0
- package/lib/components/MediaViewerModal/MediaViewerModal.js +1 -1
- package/lib/components/MediaViewerModal/MediaViewerModal.js.map +1 -1
- package/lib/components/MultiSelect/MultiSelect.js +4 -1
- package/lib/components/MultiSelect/MultiSelect.js.map +1 -1
- package/lib/components/StepsLandingTable/Components/StepGroupAccordions.js +37 -10
- package/lib/components/StepsLandingTable/Components/StepGroupAccordions.js.map +1 -1
- package/lib/components/StepsLandingTable/Components/StepInnerTable.js +85 -68
- package/lib/components/StepsLandingTable/Components/StepInnerTable.js.map +1 -1
- package/lib/components/StepsLandingTable/Components/StepTableMainRow.d.ts +3 -2
- package/lib/components/StepsLandingTable/Components/StepTableMainRow.js +10 -10
- package/lib/components/StepsLandingTable/Components/StepTableMainRow.js.map +1 -1
- package/lib/components/StepsLandingTable/Components/handleStepCheckBox.js +14 -4
- package/lib/components/StepsLandingTable/Components/handleStepCheckBox.js.map +1 -1
- package/lib/components/StepsLandingTable/StepLandingTable.d.ts +2 -2
- package/lib/components/StepsLandingTable/StepLandingTable.js +31 -29
- package/lib/components/StepsLandingTable/StepLandingTable.js.map +1 -1
- package/lib/hooks/useFileDropzone.js +16 -2
- package/lib/hooks/useFileDropzone.js.map +1 -1
- package/lib/index.cjs +280 -187
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +3 -1
- package/lib/node_modules/@dnd-kit/core/dist/core.esm.js +2 -2
- package/lib/node_modules/@dnd-kit/sortable/dist/sortable.esm.js +3 -3
- package/lib/node_modules/js-beautify/js/src/css/beautifier.js +1 -1
- package/lib/node_modules/js-beautify/js/src/css/index.js +1 -1
- package/lib/node_modules/js-beautify/js/src/html/index.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/beautifier.js +1 -1
- package/lib/styles.css +1 -1
- package/lib/styles.css.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1664,6 +1664,7 @@ interface FileDropzoneProps {
|
|
|
1664
1664
|
**/
|
|
1665
1665
|
isReplaceDisabled?: boolean;
|
|
1666
1666
|
showRejectedFileDetails?: boolean;
|
|
1667
|
+
disabledDragAndDrop?: boolean;
|
|
1667
1668
|
}
|
|
1668
1669
|
interface FileError {
|
|
1669
1670
|
message: string;
|
|
@@ -1689,6 +1690,7 @@ interface DropzoneOptions {
|
|
|
1689
1690
|
setSelectedFile?: (file: File | DynamicObj | null) => void;
|
|
1690
1691
|
handleReplaceFile?: (file?: File | DynamicObj | null) => void;
|
|
1691
1692
|
showRejectedFileDetails?: boolean;
|
|
1693
|
+
disabledDragAndDrop?: boolean;
|
|
1692
1694
|
}
|
|
1693
1695
|
interface DropzoneState {
|
|
1694
1696
|
getRootProps: () => React.HTMLAttributes<HTMLElement>;
|
|
@@ -5494,7 +5496,7 @@ interface TableProps {
|
|
|
5494
5496
|
isDraggable?: boolean;
|
|
5495
5497
|
}
|
|
5496
5498
|
|
|
5497
|
-
declare const StepLandingTable:
|
|
5499
|
+
declare const StepLandingTable: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TableProps & React__default.RefAttributes<any>>>;
|
|
5498
5500
|
|
|
5499
5501
|
interface RichTextEditorProps {
|
|
5500
5502
|
convertedContent: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React__default, { createContext,
|
|
1
|
+
import React__default, { createContext, useContext, useRef, useCallback, useEffect, useMemo, memo, useReducer, useState, forwardRef, cloneElement } from 'react';
|
|
2
2
|
import { unstable_batchedUpdates, createPortal } from 'react-dom';
|
|
3
|
-
import { useLatestValue,
|
|
3
|
+
import { useUniqueId, useLatestValue, useNodeRef, useIsomorphicLayoutEffect, useEvent, getWindow, getEventCoordinates, add, getOwnerDocument, isKeyboardEvent, subtract, useLazyMemo, isHTMLElement, canUseDOM, useInterval, usePrevious, findFirstFocusableNode, isWindow, isNode, isDocument, isSVGElement, CSS } from '../../utilities/dist/utilities.esm.js';
|
|
4
4
|
import { useAnnouncement, HiddenText, LiveRegion } from '../../accessibility/dist/accessibility.esm.js';
|
|
5
5
|
|
|
6
6
|
const DndMonitorContext = /*#__PURE__*/createContext(null);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React__default, { useMemo, useRef, useEffect,
|
|
2
|
-
import { KeyboardCode,
|
|
3
|
-
import {
|
|
1
|
+
import React__default, { useContext, useMemo, useRef, useEffect, useState } from 'react';
|
|
2
|
+
import { KeyboardCode, useDroppable, useDraggable, getClientRect, useDndContext, closestCorners, getFirstCollision, getScrollableAncestors } from '../../core/dist/core.esm.js';
|
|
3
|
+
import { useCombinedRefs, CSS, isKeyboardEvent, useIsomorphicLayoutEffect, useUniqueId, subtract } from '../../utilities/dist/utilities.esm.js';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Move an array item to a different position. Returns a new array with the item moved to the new position.
|
|
@@ -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 { __module as css } from '../../../../../_virtual/
|
|
1
|
+
import { __module as css } 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 { __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 { __exports as beautifier } from '../../../../../_virtual/
|
|
1
|
+
import { __exports as beautifier } from '../../../../../_virtual/beautifier3.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';
|