pixel-react 1.14.66 → 1.14.67
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/mac_white_icon.svg.js +6 -0
- package/lib/assets/icons/mac_white_icon.svg.js.map +1 -0
- package/lib/assets/icons/maximize_livetesting.svg.js +6 -0
- package/lib/assets/icons/maximize_livetesting.svg.js.map +1 -0
- package/lib/assets/icons/timer_icon.svg.js +6 -0
- package/lib/assets/icons/timer_icon.svg.js.map +1 -0
- package/lib/assets/icons/windows_blue_icon.svg.js +6 -0
- package/lib/assets/icons/windows_blue_icon.svg.js.map +1 -0
- package/lib/components/AllProjectsDropdown/AllProjectsDropdown.js +40 -7
- package/lib/components/AllProjectsDropdown/AllProjectsDropdown.js.map +1 -1
- package/lib/components/AppHeader/AppHeader.js +33 -3
- package/lib/components/AppHeader/AppHeader.js.map +1 -1
- package/lib/components/AppHeader/types.d.ts +10 -0
- package/lib/components/ConditionalDropdown/ConditionalDropdown.js +1 -1
- package/lib/components/Editor/Editor.js +6 -3
- package/lib/components/Editor/Editor.js.map +1 -1
- package/lib/components/Editor/VariableDropdown.js +7 -7
- package/lib/components/Editor/VariableDropdown.js.map +1 -1
- package/lib/components/Editor/types.d.ts +8 -0
- package/lib/components/Icon/iconList.js +8 -6
- package/lib/components/Icon/iconList.js.map +1 -1
- package/lib/components/variableSuggestionInputDropDown/VariableSuggestionInputDropDown.js +1 -1
- package/lib/index.cjs +97 -28
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +18 -0
- package/lib/styles.css +1 -1
- package/lib/styles.css.map +1 -1
- package/package.json +1 -1
- package/lib/assets/icons/add_element.svg.js +0 -6
- package/lib/assets/icons/add_element.svg.js.map +0 -1
- package/lib/assets/icons/element_slider.svg.js +0 -6
- package/lib/assets/icons/element_slider.svg.js.map +0 -1
- package/lib/assets/icons/record.svg.js +0 -6
- package/lib/assets/icons/record.svg.js.map +0 -1
package/lib/index.d.ts
CHANGED
@@ -2738,6 +2738,16 @@ interface AppHeaderProps {
|
|
2738
2738
|
disabled?: boolean;
|
2739
2739
|
isClient?: boolean;
|
2740
2740
|
hideNavbar?: boolean;
|
2741
|
+
centerInfoItems?: {
|
2742
|
+
iconName: string;
|
2743
|
+
label: string;
|
2744
|
+
}[];
|
2745
|
+
rightButtons?: {
|
2746
|
+
label: string;
|
2747
|
+
iconName?: string;
|
2748
|
+
color?: string;
|
2749
|
+
backgroundColor?: string;
|
2750
|
+
}[];
|
2741
2751
|
profileContent?: ReactNode;
|
2742
2752
|
}
|
2743
2753
|
interface appHeaderMenuItemProps {
|
@@ -3554,6 +3564,14 @@ interface EditorProps {
|
|
3554
3564
|
* Defaukt value for the editor
|
3555
3565
|
*/
|
3556
3566
|
defaultValue?: string;
|
3567
|
+
/**
|
3568
|
+
* Height of the variable dropdown
|
3569
|
+
*/
|
3570
|
+
VariableDropdownHeight?: string;
|
3571
|
+
/**
|
3572
|
+
* Custom Monaco Editor options
|
3573
|
+
*/
|
3574
|
+
customOptions?: any;
|
3557
3575
|
}
|
3558
3576
|
interface dropdownPositionType {
|
3559
3577
|
top: number;
|