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.
Files changed (34) hide show
  1. package/lib/assets/icons/mac_white_icon.svg.js +6 -0
  2. package/lib/assets/icons/mac_white_icon.svg.js.map +1 -0
  3. package/lib/assets/icons/maximize_livetesting.svg.js +6 -0
  4. package/lib/assets/icons/maximize_livetesting.svg.js.map +1 -0
  5. package/lib/assets/icons/timer_icon.svg.js +6 -0
  6. package/lib/assets/icons/timer_icon.svg.js.map +1 -0
  7. package/lib/assets/icons/windows_blue_icon.svg.js +6 -0
  8. package/lib/assets/icons/windows_blue_icon.svg.js.map +1 -0
  9. package/lib/components/AllProjectsDropdown/AllProjectsDropdown.js +40 -7
  10. package/lib/components/AllProjectsDropdown/AllProjectsDropdown.js.map +1 -1
  11. package/lib/components/AppHeader/AppHeader.js +33 -3
  12. package/lib/components/AppHeader/AppHeader.js.map +1 -1
  13. package/lib/components/AppHeader/types.d.ts +10 -0
  14. package/lib/components/ConditionalDropdown/ConditionalDropdown.js +1 -1
  15. package/lib/components/Editor/Editor.js +6 -3
  16. package/lib/components/Editor/Editor.js.map +1 -1
  17. package/lib/components/Editor/VariableDropdown.js +7 -7
  18. package/lib/components/Editor/VariableDropdown.js.map +1 -1
  19. package/lib/components/Editor/types.d.ts +8 -0
  20. package/lib/components/Icon/iconList.js +8 -6
  21. package/lib/components/Icon/iconList.js.map +1 -1
  22. package/lib/components/variableSuggestionInputDropDown/VariableSuggestionInputDropDown.js +1 -1
  23. package/lib/index.cjs +97 -28
  24. package/lib/index.cjs.map +1 -1
  25. package/lib/index.d.ts +18 -0
  26. package/lib/styles.css +1 -1
  27. package/lib/styles.css.map +1 -1
  28. package/package.json +1 -1
  29. package/lib/assets/icons/add_element.svg.js +0 -6
  30. package/lib/assets/icons/add_element.svg.js.map +0 -1
  31. package/lib/assets/icons/element_slider.svg.js +0 -6
  32. package/lib/assets/icons/element_slider.svg.js.map +0 -1
  33. package/lib/assets/icons/record.svg.js +0 -6
  34. 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;