pixel-react 1.13.93 → 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/_virtual/index4.js +3 -5
- package/lib/_virtual/index4.js.map +1 -1
- package/lib/_virtual/index5.js +5 -3
- package/lib/_virtual/index5.js.map +1 -1
- 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 +2 -1
- package/lib/components/MachineInputField/MachineInputField.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/index.cjs +278 -237
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +4 -2
- package/lib/node_modules/input-format/modules/react/Input.js +1 -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/node_modules/react-google-recaptcha/lib/esm/recaptcha.js +1 -1
- package/lib/node_modules/react-phone-number-input/modules/CountryIcon.js +1 -1
- package/lib/node_modules/react-phone-number-input/modules/CountrySelect.js +1 -1
- package/lib/node_modules/react-phone-number-input/modules/Flag.js +1 -1
- package/lib/node_modules/react-phone-number-input/modules/InputBasic.js +1 -1
- package/lib/node_modules/react-phone-number-input/modules/InputSmart.js +1 -1
- package/lib/node_modules/react-phone-number-input/modules/InternationalIcon.js +1 -1
- package/lib/node_modules/react-phone-number-input/modules/PhoneInputWithCountry.js +1 -1
- package/lib/node_modules/react-phone-number-input/modules/PhoneInputWithCountryDefault.js +1 -1
- package/lib/node_modules/react-phone-number-input/modules/PropTypes.js +1 -1
- package/lib/node_modules/use-context-selector/dist/index.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
@@ -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.
|
@@ -4348,6 +4349,7 @@ interface TreeTableProps {
|
|
4348
4349
|
disableEditLabelConfirmIcon?: boolean;
|
4349
4350
|
transparentHeader?: boolean;
|
4350
4351
|
navigateTreeNode?: string | null;
|
4352
|
+
handleRemoveNavigateTreeNode?: () => void;
|
4351
4353
|
}
|
4352
4354
|
type OptionValue = any;
|
4353
4355
|
interface Option$1 {
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import React__default from 'react';
|
2
|
-
import PropTypes from '../../../../_virtual/
|
2
|
+
import PropTypes from '../../../../_virtual/index5.js';
|
3
3
|
import useInput from './useInput.js';
|
4
4
|
|
5
5
|
var _excluded = ["inputComponent", "parse", "format", "value", "defaultValue", "onChange", "controlled", "onKeyDown", "type"];
|
@@ -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';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as React from 'react';
|
2
|
-
import PropTypes from '../../../../_virtual/
|
2
|
+
import PropTypes from '../../../../_virtual/index5.js';
|
3
3
|
|
4
4
|
var _excluded = ["sitekey", "onChange", "theme", "type", "tabindex", "onExpired", "onErrored", "size", "stoken", "grecaptcha", "badge", "hl", "isolated"];
|
5
5
|
function _extends() {
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import React__default from 'react';
|
2
|
-
import PropTypes from '../../../_virtual/
|
2
|
+
import PropTypes from '../../../_virtual/index5.js';
|
3
3
|
import classNames from '../../../_virtual/index.js';
|
4
4
|
import InternationalIcon from './InternationalIcon.js';
|
5
5
|
import FlagComponent from './Flag.js';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import React__default, { useMemo, useCallback } from 'react';
|
2
|
-
import PropTypes from '../../../_virtual/
|
2
|
+
import PropTypes from '../../../_virtual/index5.js';
|
3
3
|
import classNames from '../../../_virtual/index.js';
|
4
4
|
import getCountryFlag from '../../country-flag-icons/modules/unicode.js';
|
5
5
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import React__default, { useCallback } from 'react';
|
2
|
-
import PropTypes from '../../../_virtual/
|
2
|
+
import PropTypes from '../../../_virtual/index5.js';
|
3
3
|
import { getPrefixForFormattingValueAsPhoneNumber, removePrefixFromFormattedPhoneNumber } from './helpers/inputValuePrefix.js';
|
4
4
|
import useInputKeyDownHandler from './useInputKeyDownHandler.js';
|
5
5
|
import parseIncompletePhoneNumber from '../../libphonenumber-js/es6/parseIncompletePhoneNumber.js';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import React__default, { useCallback } from 'react';
|
2
|
-
import PropTypes from '../../../_virtual/
|
2
|
+
import PropTypes from '../../../_virtual/index5.js';
|
3
3
|
import { getPrefixForFormattingValueAsPhoneNumber, removePrefixFromFormattedPhoneNumber } from './helpers/inputValuePrefix.js';
|
4
4
|
import parsePhoneNumberCharacter_ from './helpers/parsePhoneNumberCharacter.js';
|
5
5
|
import useInputKeyDownHandler from './useInputKeyDownHandler.js';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import React__default from 'react';
|
2
|
-
import PropTypes from '../../../_virtual/
|
2
|
+
import PropTypes from '../../../_virtual/index5.js';
|
3
3
|
import classNames from '../../../_virtual/index.js';
|
4
4
|
import InputSmart from './InputSmart.js';
|
5
5
|
import InputBasic from './InputBasic.js';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import React__default from 'react';
|
2
|
-
import '../../../_virtual/
|
2
|
+
import '../../../_virtual/index5.js';
|
3
3
|
import defaultLabels from '../locale/en.json.js';
|
4
4
|
import { labels, metadata } from './PropTypes.js';
|
5
5
|
import PhoneNumberInput from './PhoneInputWithCountry.js';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { createContext as createContext$1, useRef, useState, useEffect, useLayoutEffect, createElement, useContext, useReducer } from 'react';
|
2
|
-
import { s as schedulerExports } from '../../../_virtual/
|
2
|
+
import { s as schedulerExports } from '../../../_virtual/index4.js';
|
3
3
|
|
4
4
|
const CONTEXT_VALUE = Symbol();
|
5
5
|
const ORIGINAL_PROVIDER = Symbol();
|