pixel-priya 1.3.39 → 1.3.43
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/components/AllProjectsDropdown/AllProjectsDropdown.d.ts +1 -1
- package/lib/components/AllProjectsDropdown/AllProjectsDropdown.js +5 -3
- package/lib/components/AllProjectsDropdown/AllProjectsDropdown.js.map +1 -1
- package/lib/components/AllProjectsDropdown/types.d.ts +3 -2
- package/lib/components/AppHeader/AppHeader.js +50 -3
- package/lib/components/AppHeader/AppHeader.js.map +1 -1
- package/lib/components/AppHeader/types.d.ts +23 -5
- package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.js +1 -7
- package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.js.map +1 -1
- package/lib/components/OverviewModal/overviewModal.js +24 -22
- package/lib/components/OverviewModal/overviewModal.js.map +1 -1
- package/lib/index.d.ts +27 -8
- package/lib/index.js +1 -1
- package/lib/styles.css +1 -1
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -2821,21 +2821,22 @@ declare const VariableInput: ({ type, name, label, disabled, required, placehold
|
|
|
2821
2821
|
interface optionsType$1 {
|
|
2822
2822
|
label: string;
|
|
2823
2823
|
value: string;
|
|
2824
|
-
iconName
|
|
2824
|
+
iconName?: string;
|
|
2825
2825
|
platform?: string;
|
|
2826
2826
|
appType?: string;
|
|
2827
2827
|
}
|
|
2828
2828
|
interface AllProjectsDropdownProps {
|
|
2829
2829
|
options: optionsType$1[];
|
|
2830
2830
|
onMenuClick?: () => void;
|
|
2831
|
-
onClick: (
|
|
2831
|
+
onClick: (_option: optionsType$1) => void;
|
|
2832
2832
|
selectedOption: optionsType$1;
|
|
2833
2833
|
selected?: boolean;
|
|
2834
2834
|
placeholder?: string;
|
|
2835
2835
|
disabled?: boolean;
|
|
2836
|
+
showIcons?: boolean;
|
|
2836
2837
|
}
|
|
2837
2838
|
|
|
2838
|
-
declare const AllProjectsDropdown: ({ onClick, onMenuClick, options, selectedOption, selected, placeholder, disabled, }: AllProjectsDropdownProps) => react_jsx_runtime.JSX.Element;
|
|
2839
|
+
declare const AllProjectsDropdown: ({ onClick, onMenuClick, options, selectedOption, selected, placeholder, disabled, showIcons, }: AllProjectsDropdownProps) => react_jsx_runtime.JSX.Element;
|
|
2839
2840
|
|
|
2840
2841
|
interface PieChartProps {
|
|
2841
2842
|
radius: number;
|
|
@@ -2849,6 +2850,19 @@ interface PieChartProps {
|
|
|
2849
2850
|
|
|
2850
2851
|
declare const PieChart: React__default.FC<PieChartProps>;
|
|
2851
2852
|
|
|
2853
|
+
interface ClientProjectOptionsRect {
|
|
2854
|
+
top: number;
|
|
2855
|
+
right: number;
|
|
2856
|
+
bottom: number;
|
|
2857
|
+
left: number;
|
|
2858
|
+
width: number;
|
|
2859
|
+
height: number;
|
|
2860
|
+
}
|
|
2861
|
+
interface ClientProjectOptionsChangePayload {
|
|
2862
|
+
isOpen: boolean;
|
|
2863
|
+
rect?: ClientProjectOptionsRect;
|
|
2864
|
+
selected?: boolean;
|
|
2865
|
+
}
|
|
2852
2866
|
interface AppHeaderProps {
|
|
2853
2867
|
scriptId?: string | undefined | null;
|
|
2854
2868
|
width?: string;
|
|
@@ -2857,18 +2871,23 @@ interface AppHeaderProps {
|
|
|
2857
2871
|
leftContent?: ReactNode;
|
|
2858
2872
|
rightContent?: ReactNode;
|
|
2859
2873
|
projectsList?: optionsType$1[];
|
|
2874
|
+
licenseList?: optionsType$1[];
|
|
2875
|
+
showLicenseMenu?: boolean;
|
|
2860
2876
|
appHeaderMenuItems: appHeaderMenuItemProps[];
|
|
2861
2877
|
appHeaderHiddenMenuItems?: appHeaderMenuItemProps[];
|
|
2862
2878
|
selectedMenu: string;
|
|
2863
2879
|
selectedSubMenu?: string;
|
|
2864
2880
|
selectedQuickMenu?: string;
|
|
2865
2881
|
selectedProject?: optionsType$1;
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
|
|
2882
|
+
selectedLicense?: optionsType$1 | null;
|
|
2883
|
+
onMenuClick?: (_text: any) => void;
|
|
2884
|
+
onSubMenuClick?: (_text: any) => void;
|
|
2885
|
+
onQuickMenuClick?: (_text: any) => void;
|
|
2886
|
+
onProjectMenuClick?: (_text: any) => void;
|
|
2870
2887
|
onProjectDropdownLabelClick?: () => void;
|
|
2871
|
-
|
|
2888
|
+
onClientProjectOptionsChange?: (_payload: ClientProjectOptionsChangePayload) => void;
|
|
2889
|
+
onLicenseMenuClick?: (_text: any) => void;
|
|
2890
|
+
onMoreMenuOptionClick?: (_text: any, _callback: () => void) => void;
|
|
2872
2891
|
disabled?: boolean;
|
|
2873
2892
|
isClient?: boolean;
|
|
2874
2893
|
hideNavbar?: boolean;
|