@fraku/video 0.1.57 → 0.1.58
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/dist/components/DockButton/DockButton.d.ts +2 -1
- package/dist/index.cjs +165 -165
- package/dist/index.js +9249 -9055
- package/package.json +1 -1
|
@@ -8,6 +8,7 @@ type DockButtonProps = {
|
|
|
8
8
|
mainLabel?: string;
|
|
9
9
|
mainTitle?: string;
|
|
10
10
|
mainDataTestId?: string;
|
|
11
|
+
dataState?: string;
|
|
11
12
|
onMainClick: (e: MouseEvent<HTMLButtonElement>) => void;
|
|
12
13
|
showBadge?: boolean;
|
|
13
14
|
badgeValue?: string | number;
|
|
@@ -38,5 +39,5 @@ type DockButtonProps = {
|
|
|
38
39
|
*
|
|
39
40
|
* @returns A dock button component with main and optional secondary actions.
|
|
40
41
|
*/
|
|
41
|
-
declare const DockButton: ({ className, disabled, mainIcon, mainLabel, mainTitle, mainDataTestId, onMainClick, showBadge, badgeValue, secondaryIcon, secondaryTitle, secondaryDataTestId, onSecondaryClick, outlined, showSecondary }: DockButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
42
|
+
declare const DockButton: ({ className, disabled, mainIcon, mainLabel, mainTitle, mainDataTestId, dataState, onMainClick, showBadge, badgeValue, secondaryIcon, secondaryTitle, secondaryDataTestId, onSecondaryClick, outlined, showSecondary }: DockButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
42
43
|
export default DockButton;
|