pixel-react 1.13.46 → 1.13.48
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/assets/icons/add_variable.svg.js +1 -1
- package/lib/assets/icons/add_variable.svg.js.map +1 -1
- package/lib/assets/icons/impact_list.svg.js +1 -1
- package/lib/assets/icons/impact_list.svg.js.map +1 -1
- package/lib/components/Button/Button.js +1 -1
- package/lib/components/Charts/RadialChart/RadialChart.js +4 -2
- package/lib/components/Charts/RadialChart/RadialChart.js.map +1 -1
- package/lib/components/Charts/RadialChart/types.d.ts +1 -0
- package/lib/components/CreateVariable/CreateVariableSlider.js +4 -1
- package/lib/components/CreateVariable/CreateVariableSlider.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFile.js +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFile.js.map +1 -1
- package/lib/components/Link/Link.js +10 -5
- package/lib/components/Link/Link.js.map +1 -1
- package/lib/components/MenuOption/MenuOption.js +2 -2
- package/lib/components/MenuOption/MenuOption.js.map +1 -1
- package/lib/components/MenuOption/types.d.ts +1 -1
- package/lib/components/MiniModal/MiniModal.js +18 -2
- package/lib/components/MiniModal/MiniModal.js.map +1 -1
- package/lib/components/MobileSkin/MobileSkinInterface.d.ts +7 -13
- package/lib/components/MultiSelect/MultiSelect.js +30 -0
- package/lib/components/MultiSelect/MultiSelect.js.map +1 -1
- package/lib/components/NLPInput/components/ChipsFolder/ChipsAccordion.js +1 -0
- package/lib/components/NLPInput/components/ChipsFolder/ChipsAccordion.js.map +1 -1
- package/lib/components/PhoneInput/PhoneInput.js +12 -1
- package/lib/components/PhoneInput/PhoneInput.js.map +1 -1
- package/lib/components/PhoneInput/types.d.ts +3 -0
- package/lib/components/Table/Table.d.ts +1 -1
- package/lib/components/Table/Table.js +8 -5
- package/lib/components/Table/Table.js.map +1 -1
- package/lib/components/Table/Types.d.ts +4 -0
- package/lib/components/Tabs/Tabs.js +1 -1
- package/lib/components/Tabs/Tabs.js.map +1 -1
- package/lib/components/variableSuggestionInputDropDown/OptionsDropdown.js +1 -1
- package/lib/components/variableSuggestionInputDropDown/OptionsDropdown.js.map +1 -1
- package/lib/components/variableSuggestionInputDropDown/VariableSuggestionInputDropDown.js +4 -3
- package/lib/components/variableSuggestionInputDropDown/VariableSuggestionInputDropDown.js.map +1 -1
- package/lib/index.cjs +97 -25
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +16 -15
- 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/lib/node_modules/js-beautify/js/src/javascript/options.js +1 -1
- package/lib/styles.css +2 -2
- package/lib/styles.css.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
@@ -839,6 +839,7 @@ interface RadialChartProps {
|
|
839
839
|
statusValues: Status$1[];
|
840
840
|
onClick?: (status: Status$1) => void;
|
841
841
|
fontSize: number;
|
842
|
+
gap?: number;
|
842
843
|
}
|
843
844
|
|
844
845
|
declare const RadialChart: React__default.FC<RadialChartProps>;
|
@@ -1122,7 +1123,7 @@ interface OptionType extends OptionClick {
|
|
1122
1123
|
* @type {string}
|
1123
1124
|
* @optional
|
1124
1125
|
*/
|
1125
|
-
icon?: string;
|
1126
|
+
icon?: string | ReactNode;
|
1126
1127
|
iconColor?: string;
|
1127
1128
|
name?: string | ReactNode;
|
1128
1129
|
/**
|
@@ -1373,9 +1374,13 @@ interface TableProps$2 {
|
|
1373
1374
|
* Explicitly handling the checkbox disability for the row.
|
1374
1375
|
*/
|
1375
1376
|
isRowCheckBoxDisable?: boolean;
|
1377
|
+
/**
|
1378
|
+
* Explicitly handling the disability for the row.
|
1379
|
+
*/
|
1380
|
+
isRowDisabled?: boolean;
|
1376
1381
|
}
|
1377
1382
|
|
1378
|
-
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, columnSticky, tableRef, isRowCheckBoxDisable, }: TableProps$2) => react_jsx_runtime.JSX.Element;
|
1383
|
+
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, columnSticky, tableRef, isRowCheckBoxDisable, isRowDisabled, }: TableProps$2) => react_jsx_runtime.JSX.Element;
|
1379
1384
|
|
1380
1385
|
/**
|
1381
1386
|
* Props for the Add Resource Button component.
|
@@ -3727,27 +3732,20 @@ type MediaPreviewProps = {
|
|
3727
3732
|
|
3728
3733
|
declare const MediaPreview: React__default.FC<MediaPreviewProps>;
|
3729
3734
|
|
3735
|
+
interface NavBarIcon {
|
3736
|
+
name: string;
|
3737
|
+
[key: string]: any;
|
3738
|
+
}
|
3730
3739
|
interface MobileSkinProps {
|
3731
3740
|
children: React.ReactNode | string;
|
3732
3741
|
orientation?: 'portrait' | 'landscape';
|
3733
|
-
navBarIcons?:
|
3734
|
-
|
3735
|
-
name: string;
|
3736
|
-
onClick: () => void;
|
3737
|
-
height?: number;
|
3738
|
-
width?: number;
|
3739
|
-
className?: string;
|
3740
|
-
}>;
|
3742
|
+
navBarIcons?: NavBarIcon[];
|
3743
|
+
topNavBarIcons?: NavBarIcon[];
|
3741
3744
|
mobileHeight?: number;
|
3742
3745
|
mobileWidth?: number;
|
3743
3746
|
UtilityBar?: boolean;
|
3744
3747
|
background?: string;
|
3745
3748
|
tooltip?: Record<string, string>;
|
3746
|
-
topNavBarIcons?: Array<{
|
3747
|
-
title: string;
|
3748
|
-
className?: string;
|
3749
|
-
[key: string]: any;
|
3750
|
-
}>;
|
3751
3749
|
navBarPosition?: 'top' | 'bottom';
|
3752
3750
|
tooltipFormatter?: ((title: string) => React.ReactNode) | undefined;
|
3753
3751
|
}
|
@@ -4629,6 +4627,9 @@ interface PhoneInputProps {
|
|
4629
4627
|
enableAreaCodeStretch?: boolean;
|
4630
4628
|
defaultCountry?: string;
|
4631
4629
|
disabled?: boolean;
|
4630
|
+
isVerified?: boolean;
|
4631
|
+
isVerifyDisplay?: boolean;
|
4632
|
+
onVerifyClick?: () => void;
|
4632
4633
|
}
|
4633
4634
|
|
4634
4635
|
declare const PhoneInputField: React__default.FC<PhoneInputProps>;
|
@@ -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
|
|