pixel-react 1.14.47 → 1.14.49
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/assets/icons/fireflink_platform_product.svg.js +6 -0
- package/lib/assets/icons/fireflink_platform_product.svg.js.map +1 -0
- package/lib/assets/icons/salesforce_product.svg.js +1 -1
- package/lib/assets/icons/salesforce_product.svg.js.map +1 -1
- package/lib/components/AppHeader/AppHeader.js +11 -15
- package/lib/components/AppHeader/AppHeader.js.map +1 -1
- package/lib/components/AppHeader/types.d.ts +2 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.js +7 -6
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.js.map +1 -1
- package/lib/components/Icon/iconList.js +2 -0
- package/lib/components/Icon/iconList.js.map +1 -1
- package/lib/components/Select/Select.js +4 -2
- package/lib/components/Select/Select.js.map +1 -1
- package/lib/components/Select/components/Dropdown.js +3 -3
- package/lib/components/Select/components/Dropdown.js.map +1 -1
- package/lib/components/Select/components/types.d.ts +1 -0
- package/lib/components/Select/components/types.js.map +1 -1
- package/lib/components/Select/types.d.ts +4 -0
- package/lib/index.cjs +29 -27
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +6 -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/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/index.d.ts
CHANGED
@@ -998,6 +998,10 @@ interface SelectProps$1 {
|
|
998
998
|
* Ref for select option dropdown
|
999
999
|
*/
|
1000
1000
|
dropDownRef?: RefObject<HTMLDivElement>;
|
1001
|
+
/**
|
1002
|
+
* handling dropdownDown height
|
1003
|
+
*/
|
1004
|
+
dropDownHeight?: number;
|
1001
1005
|
}
|
1002
1006
|
type OptionValue$3 = any;
|
1003
1007
|
interface Option$5 {
|
@@ -2706,7 +2710,7 @@ interface AppHeaderProps {
|
|
2706
2710
|
scriptId?: string | undefined | null;
|
2707
2711
|
width?: string;
|
2708
2712
|
borderRadius?: string;
|
2709
|
-
|
2713
|
+
logo: ReactNode;
|
2710
2714
|
leftContent?: ReactNode;
|
2711
2715
|
rightContent?: ReactNode;
|
2712
2716
|
projectsList?: optionsType$1[];
|
@@ -2725,6 +2729,7 @@ interface AppHeaderProps {
|
|
2725
2729
|
disabled?: boolean;
|
2726
2730
|
isClient?: boolean;
|
2727
2731
|
hideNavbar?: boolean;
|
2732
|
+
profileContent?: ReactNode;
|
2728
2733
|
}
|
2729
2734
|
interface appHeaderMenuItemProps {
|
2730
2735
|
iconName?: string;
|
@@ -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/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';
|