@popmenu/common-ui 0.155.0 → 0.156.0
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/build/cjs/components/Avatar/Avatar.d.ts +1 -1
- package/build/cjs/components/BrowserSilhouette/BrowserSilhouette.d.ts +2 -2
- package/build/cjs/components/Checkbox/Checkbox.d.ts +1 -1
- package/build/cjs/components/Chip/Chip.d.ts +1 -1
- package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationAltActions.d.ts +2 -1
- package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationBody.d.ts +2 -1
- package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationCloseButton.d.ts +2 -1
- package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationContent.d.ts +1 -1
- package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationDialog.d.ts +2 -1
- package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationFooter.d.ts +2 -1
- package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationForm.d.ts +2 -1
- package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationGraphic.d.ts +2 -1
- package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationInfo.d.ts +2 -1
- package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationLogoContainer.d.ts +2 -1
- package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationPrivacyPolicy.d.ts +2 -1
- package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationTitle.d.ts +2 -1
- package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationUserForm.d.ts +2 -1
- package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationVipBenefitRows.d.ts +2 -1
- package/build/cjs/components/IconButton/IconButton.d.ts +1 -1
- package/build/cjs/components/Paper/Paper.d.ts +1 -1
- package/build/cjs/components/PaperContent/PaperContent.d.ts +1 -1
- package/build/cjs/components/Radio/Radio.d.ts +1 -1
- package/build/cjs/components/Switch/Switch.d.ts +1 -1
- package/build/cjs/components/TabPanel/TabPanel.d.ts +2 -2
- package/build/cjs/components/ToggleButton/ToggleButton.d.ts +1 -1
- package/build/cjs/components/ToggleButtonGroup/ToggleButtonGroup.d.ts +1 -1
- package/build/cjs/components/Tooltip/Tooltip.d.ts +1 -1
- package/build/esm/components/Avatar/Avatar.d.ts +1 -1
- package/build/esm/components/BrowserSilhouette/BrowserSilhouette.d.ts +2 -2
- package/build/esm/components/Checkbox/Checkbox.d.ts +1 -1
- package/build/esm/components/Chip/Chip.d.ts +1 -1
- package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationAltActions.d.ts +2 -1
- package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationBody.d.ts +2 -1
- package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationCloseButton.d.ts +2 -1
- package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationContent.d.ts +1 -1
- package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationDialog.d.ts +2 -1
- package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationFooter.d.ts +2 -1
- package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationForm.d.ts +2 -1
- package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationGraphic.d.ts +2 -1
- package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationInfo.d.ts +2 -1
- package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationLogoContainer.d.ts +2 -1
- package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationPrivacyPolicy.d.ts +2 -1
- package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationTitle.d.ts +2 -1
- package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationUserForm.d.ts +2 -1
- package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationVipBenefitRows.d.ts +2 -1
- package/build/esm/components/IconButton/IconButton.d.ts +1 -1
- package/build/esm/components/Paper/Paper.d.ts +1 -1
- package/build/esm/components/PaperContent/PaperContent.d.ts +1 -1
- package/build/esm/components/Radio/Radio.d.ts +1 -1
- package/build/esm/components/Switch/Switch.d.ts +1 -1
- package/build/esm/components/TabPanel/TabPanel.d.ts +2 -2
- package/build/esm/components/ToggleButton/ToggleButton.d.ts +1 -1
- package/build/esm/components/ToggleButtonGroup/ToggleButtonGroup.d.ts +1 -1
- package/build/esm/components/Tooltip/Tooltip.d.ts +1 -1
- package/package.json +2 -2
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { AvatarProps } from './AvatarProps';
|
|
3
|
-
export declare const Avatar: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const Avatar: React.ForwardRefExoticComponent<Omit<AvatarProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { PropsWithChildren } from 'react';
|
|
2
|
-
export declare const BrowserSilhouette: ({ children }: PropsWithChildren<Record<string, unknown>>) => JSX.Element;
|
|
1
|
+
import React, { PropsWithChildren } from 'react';
|
|
2
|
+
export declare const BrowserSilhouette: ({ children }: PropsWithChildren<Record<string, unknown>>) => React.JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { CheckboxProps } from './CheckboxProps';
|
|
3
|
-
export declare const Checkbox: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const Checkbox: React.ForwardRefExoticComponent<Omit<CheckboxProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ChipProps } from './ChipProps';
|
|
3
3
|
export declare const Chip: {
|
|
4
|
-
<C extends React.ElementType = "div">(props: ChipProps<C>): JSX.Element;
|
|
4
|
+
<C extends React.ElementType = "div">(props: ChipProps<C>): React.JSX.Element;
|
|
5
5
|
displayName: string;
|
|
6
6
|
};
|
package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationAltActions.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationAltActions: () => React.JSX.Element | null;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationBody: () => React.JSX.Element;
|
package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationCloseButton.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
interface FollowerAuthenticationCloseButtonProps {
|
|
2
3
|
show: boolean;
|
|
3
4
|
}
|
|
4
|
-
export declare const FollowerAuthenticationCloseButton: ({ show }: FollowerAuthenticationCloseButtonProps) => JSX.Element | null;
|
|
5
|
+
export declare const FollowerAuthenticationCloseButton: ({ show }: FollowerAuthenticationCloseButtonProps) => React.JSX.Element | null;
|
|
5
6
|
export {};
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { FollowerAuthenticationDialogProps } from './FollowerAuthenticationDialogProps';
|
|
2
|
-
export declare const FollowerAuthenticationDialog: (props: FollowerAuthenticationDialogProps) => JSX.Element;
|
|
3
|
+
export declare const FollowerAuthenticationDialog: (props: FollowerAuthenticationDialogProps) => React.JSX.Element;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationFooter: () => React.JSX.Element;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationForm: () => React.JSX.Element | null;
|
package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationGraphic.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationGraphic: () => React.JSX.Element | null;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationInfo: () => React.JSX.Element | null;
|
package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationLogoContainer.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationLogoContainer: () => React.JSX.Element;
|
package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationPrivacyPolicy.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationPrivacyPolicy: () => React.JSX.Element | null;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationTitle: () => React.JSX.Element;
|
package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationUserForm.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationUserForm: () => React.JSX.Element;
|
package/build/cjs/components/FollowerAuthenticationDialog/FollowerAuthenticationVipBenefitRows.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationVipBenefitRows: () => React.JSX.Element | null;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { IconButtonProps } from './IconButtonProps';
|
|
3
|
-
export declare const IconButton: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const IconButton: React.ForwardRefExoticComponent<Omit<IconButtonProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -3,4 +3,4 @@ import { PaperProps as MuiPaperProps } from '@material-ui/core';
|
|
|
3
3
|
export interface PaperProps extends MuiPaperProps {
|
|
4
4
|
legacyStyles?: boolean;
|
|
5
5
|
}
|
|
6
|
-
export declare const Paper: React.ForwardRefExoticComponent<
|
|
6
|
+
export declare const Paper: React.ForwardRefExoticComponent<Omit<PaperProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { RadioProps } from './RadioProps';
|
|
3
|
-
export declare const Radio: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const Radio: React.ForwardRefExoticComponent<Omit<RadioProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { SwitchProps } from './SwitchProps';
|
|
3
|
-
export declare const Switch: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const Switch: React.ForwardRefExoticComponent<Omit<SwitchProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { PropsWithChildren } from 'react';
|
|
1
|
+
import React, { PropsWithChildren } from 'react';
|
|
2
2
|
import { TabPanelProps } from './TabPanelProps';
|
|
3
|
-
export declare const TabPanel: (props: PropsWithChildren<TabPanelProps>) => JSX.Element | null;
|
|
3
|
+
export declare const TabPanel: (props: PropsWithChildren<TabPanelProps>) => React.JSX.Element | null;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ToggleButtonProps } from './ToggleButtonProps';
|
|
3
|
-
export declare const ToggleButton: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const ToggleButton: React.ForwardRefExoticComponent<Omit<ToggleButtonProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ToggleButtonGroupProps } from './ToggleButtonGroupProps';
|
|
3
|
-
export declare const ToggleButtonGroup: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const ToggleButtonGroup: React.ForwardRefExoticComponent<Omit<ToggleButtonGroupProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { TooltipProps } from './TooltipProps';
|
|
3
|
-
export declare const Tooltip: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const Tooltip: React.ForwardRefExoticComponent<Omit<TooltipProps, "ref"> & React.RefAttributes<HTMLElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { AvatarProps } from './AvatarProps';
|
|
3
|
-
export declare const Avatar: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const Avatar: React.ForwardRefExoticComponent<Omit<AvatarProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { PropsWithChildren } from 'react';
|
|
2
|
-
export declare const BrowserSilhouette: ({ children }: PropsWithChildren<Record<string, unknown>>) => JSX.Element;
|
|
1
|
+
import React, { PropsWithChildren } from 'react';
|
|
2
|
+
export declare const BrowserSilhouette: ({ children }: PropsWithChildren<Record<string, unknown>>) => React.JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { CheckboxProps } from './CheckboxProps';
|
|
3
|
-
export declare const Checkbox: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const Checkbox: React.ForwardRefExoticComponent<Omit<CheckboxProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ChipProps } from './ChipProps';
|
|
3
3
|
export declare const Chip: {
|
|
4
|
-
<C extends React.ElementType = "div">(props: ChipProps<C>): JSX.Element;
|
|
4
|
+
<C extends React.ElementType = "div">(props: ChipProps<C>): React.JSX.Element;
|
|
5
5
|
displayName: string;
|
|
6
6
|
};
|
package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationAltActions.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationAltActions: () => React.JSX.Element | null;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationBody: () => React.JSX.Element;
|
package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationCloseButton.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
interface FollowerAuthenticationCloseButtonProps {
|
|
2
3
|
show: boolean;
|
|
3
4
|
}
|
|
4
|
-
export declare const FollowerAuthenticationCloseButton: ({ show }: FollowerAuthenticationCloseButtonProps) => JSX.Element | null;
|
|
5
|
+
export declare const FollowerAuthenticationCloseButton: ({ show }: FollowerAuthenticationCloseButtonProps) => React.JSX.Element | null;
|
|
5
6
|
export {};
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { FollowerAuthenticationDialogProps } from './FollowerAuthenticationDialogProps';
|
|
2
|
-
export declare const FollowerAuthenticationDialog: (props: FollowerAuthenticationDialogProps) => JSX.Element;
|
|
3
|
+
export declare const FollowerAuthenticationDialog: (props: FollowerAuthenticationDialogProps) => React.JSX.Element;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationFooter: () => React.JSX.Element;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationForm: () => React.JSX.Element | null;
|
package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationGraphic.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationGraphic: () => React.JSX.Element | null;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationInfo: () => React.JSX.Element | null;
|
package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationLogoContainer.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationLogoContainer: () => React.JSX.Element;
|
package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationPrivacyPolicy.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationPrivacyPolicy: () => React.JSX.Element | null;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationTitle: () => React.JSX.Element;
|
package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationUserForm.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationUserForm: () => React.JSX.Element;
|
package/build/esm/components/FollowerAuthenticationDialog/FollowerAuthenticationVipBenefitRows.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const FollowerAuthenticationVipBenefitRows: () => React.JSX.Element | null;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { IconButtonProps } from './IconButtonProps';
|
|
3
|
-
export declare const IconButton: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const IconButton: React.ForwardRefExoticComponent<Omit<IconButtonProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -3,4 +3,4 @@ import { PaperProps as MuiPaperProps } from '@material-ui/core';
|
|
|
3
3
|
export interface PaperProps extends MuiPaperProps {
|
|
4
4
|
legacyStyles?: boolean;
|
|
5
5
|
}
|
|
6
|
-
export declare const Paper: React.ForwardRefExoticComponent<
|
|
6
|
+
export declare const Paper: React.ForwardRefExoticComponent<Omit<PaperProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { RadioProps } from './RadioProps';
|
|
3
|
-
export declare const Radio: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const Radio: React.ForwardRefExoticComponent<Omit<RadioProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { SwitchProps } from './SwitchProps';
|
|
3
|
-
export declare const Switch: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const Switch: React.ForwardRefExoticComponent<Omit<SwitchProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { PropsWithChildren } from 'react';
|
|
1
|
+
import React, { PropsWithChildren } from 'react';
|
|
2
2
|
import { TabPanelProps } from './TabPanelProps';
|
|
3
|
-
export declare const TabPanel: (props: PropsWithChildren<TabPanelProps>) => JSX.Element | null;
|
|
3
|
+
export declare const TabPanel: (props: PropsWithChildren<TabPanelProps>) => React.JSX.Element | null;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ToggleButtonProps } from './ToggleButtonProps';
|
|
3
|
-
export declare const ToggleButton: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const ToggleButton: React.ForwardRefExoticComponent<Omit<ToggleButtonProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ToggleButtonGroupProps } from './ToggleButtonGroupProps';
|
|
3
|
-
export declare const ToggleButtonGroup: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const ToggleButtonGroup: React.ForwardRefExoticComponent<Omit<ToggleButtonGroupProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { TooltipProps } from './TooltipProps';
|
|
3
|
-
export declare const Tooltip: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const Tooltip: React.ForwardRefExoticComponent<Omit<TooltipProps, "ref"> & React.RefAttributes<HTMLElement>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@popmenu/common-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.156.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Popmenu Design System Team",
|
|
6
6
|
"description": "React components for all Popmenu apps on the web.",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"react": "18.x || 19.x"
|
|
32
32
|
},
|
|
33
33
|
"sideEffects": false,
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "390beafb484a58645ca5a7331c94a018ffe4dc92"
|
|
35
35
|
}
|