@speakapbv/dough-component-library 10.3.0 → 10.3.2
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React, { ReactNode, MouseEvent, Ref } from "react";
|
|
1
|
+
import React, { ReactNode, MouseEvent, Ref, MouseEventHandler } from "react";
|
|
2
2
|
import { ColorsText, DoughDataAttributes } from "../../utils/constants";
|
|
3
3
|
import "./link.scss";
|
|
4
4
|
export interface LinkProps {
|
|
@@ -8,6 +8,9 @@ export interface LinkProps {
|
|
|
8
8
|
color?: ColorsText;
|
|
9
9
|
children: ReactNode;
|
|
10
10
|
onClick?(e: MouseEvent): void | boolean;
|
|
11
|
+
onMouseDown?: MouseEventHandler<HTMLAnchorElement>;
|
|
12
|
+
onPointerDown?: MouseEventHandler<HTMLAnchorElement>;
|
|
13
|
+
allEvents?: boolean;
|
|
11
14
|
underline?: boolean;
|
|
12
15
|
fullWidth?: boolean;
|
|
13
16
|
disabled?: boolean;
|
|
@@ -19,4 +22,4 @@ export interface LinkProps {
|
|
|
19
22
|
width?: string;
|
|
20
23
|
flex?: string;
|
|
21
24
|
}
|
|
22
|
-
export declare const Link: React.ForwardRefExoticComponent<Pick<LinkProps, "className" | "dataAttributes" | "color" | "children" | "onClick" | "underline" | "fullWidth" | "disabled" | "colorOnlyOnHover" | "href" | "target" | "rel" | "download" | "width" | "flex"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
25
|
+
export declare const Link: React.ForwardRefExoticComponent<Pick<LinkProps, "className" | "dataAttributes" | "color" | "children" | "onClick" | "onMouseDown" | "onPointerDown" | "allEvents" | "underline" | "fullWidth" | "disabled" | "colorOnlyOnHover" | "href" | "target" | "rel" | "download" | "width" | "flex"> & React.RefAttributes<HTMLAnchorElement>>;
|
package/dist/index.es.js
CHANGED
|
@@ -593,8 +593,24 @@ var deRegisterBreakpointView = function (id) {
|
|
|
593
593
|
};
|
|
594
594
|
|
|
595
595
|
var Link = forwardRef(function (props, ref) {
|
|
596
|
-
var _a = props.color, color = _a === void 0 ? ColorsText.LINK : _a, _b = props.underline, underline = _b === void 0 ? true : _b, _c = props.rel, rel = _c === void 0 ? "noopener noreferrer" : _c;
|
|
597
|
-
|
|
596
|
+
var _a = props.color, color = _a === void 0 ? ColorsText.LINK : _a, _b = props.underline, underline = _b === void 0 ? true : _b, _c = props.rel, rel = _c === void 0 ? "noopener noreferrer" : _c, onPointerDown = props.onPointerDown, onMouseDown = props.onMouseDown, _d = props.allEvents, allEvents = _d === void 0 ? false : _d;
|
|
597
|
+
function handleMouseDown(event) {
|
|
598
|
+
if (onMouseDown) {
|
|
599
|
+
onMouseDown(event);
|
|
600
|
+
}
|
|
601
|
+
else if (!allEvents) {
|
|
602
|
+
cancelEvent(event);
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
function handlePointerDown(event) {
|
|
606
|
+
if (onPointerDown) {
|
|
607
|
+
onPointerDown(event);
|
|
608
|
+
}
|
|
609
|
+
else if (!allEvents) {
|
|
610
|
+
cancelEvent(event);
|
|
611
|
+
}
|
|
612
|
+
}
|
|
613
|
+
return (React.createElement("a", __assign({ onMouseDown: handleMouseDown, onPointerDown: handlePointerDown, className: cn("dough-link", props.className, color, {
|
|
598
614
|
"dough-link-color-only-on-hover": props.colorOnlyOnHover,
|
|
599
615
|
"dough-link-no-underline": !underline,
|
|
600
616
|
"dough-link-full-width": props.fullWidth,
|
|
@@ -4540,7 +4556,7 @@ var PanelOverlay = function (props) {
|
|
|
4540
4556
|
};
|
|
4541
4557
|
PanelOverlay.displayName = "PanelOverlay";
|
|
4542
4558
|
|
|
4543
|
-
var css_248z$x = "/* COLORS */\n/* Typography*/\n/*Dennis should provide medium font size*/\n.dough-progress-bar {\n height: 4px;\n width: 100%;\n border-radius: 4px;\n position: relative;\n}\n\n.dough-progress-bar__progress {\n position: absolute;\n height: 100%;\n border-radius: 4px;\n z-index: 1;\n}\n\n.dough-multi-progress-bar {\n height: 8px;\n width: 100%;\n border-radius: 8px;\n display: flex;\n}\n\n.dough-multi-progress-bar__progress {\n height: 100%;\n z-index: 1;\n}\n.dough-multi-progress-bar__progress:first-of-type {\n border-top-left-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.dough-multi-progress-bar__progress:
|
|
4559
|
+
var css_248z$x = "/* COLORS */\n/* Typography*/\n/*Dennis should provide medium font size*/\n.dough-progress-bar {\n height: 4px;\n width: 100%;\n border-radius: 4px;\n position: relative;\n}\n\n.dough-progress-bar__progress {\n position: absolute;\n height: 100%;\n border-radius: 4px;\n z-index: 1;\n}\n\n.dough-multi-progress-bar {\n height: 8px;\n width: 100%;\n border-radius: 8px;\n display: flex;\n}\n\n.dough-multi-progress-bar__progress {\n height: 100%;\n z-index: 1;\n min-width: 4px;\n}\n.dough-multi-progress-bar__progress:first-of-type {\n border-top-left-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.dough-multi-progress-bar__progress:last-of-type {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n}";
|
|
4544
4560
|
styleInject(css_248z$x);
|
|
4545
4561
|
|
|
4546
4562
|
var DesignTokens = {
|
package/dist/index.js
CHANGED
|
@@ -588,8 +588,24 @@ var deRegisterBreakpointView = function (id) {
|
|
|
588
588
|
};
|
|
589
589
|
|
|
590
590
|
var Link = React.forwardRef(function (props, ref) {
|
|
591
|
-
var _a = props.color, color = _a === void 0 ? exports.ColorsText.LINK : _a, _b = props.underline, underline = _b === void 0 ? true : _b, _c = props.rel, rel = _c === void 0 ? "noopener noreferrer" : _c;
|
|
592
|
-
|
|
591
|
+
var _a = props.color, color = _a === void 0 ? exports.ColorsText.LINK : _a, _b = props.underline, underline = _b === void 0 ? true : _b, _c = props.rel, rel = _c === void 0 ? "noopener noreferrer" : _c, onPointerDown = props.onPointerDown, onMouseDown = props.onMouseDown, _d = props.allEvents, allEvents = _d === void 0 ? false : _d;
|
|
592
|
+
function handleMouseDown(event) {
|
|
593
|
+
if (onMouseDown) {
|
|
594
|
+
onMouseDown(event);
|
|
595
|
+
}
|
|
596
|
+
else if (!allEvents) {
|
|
597
|
+
cancelEvent(event);
|
|
598
|
+
}
|
|
599
|
+
}
|
|
600
|
+
function handlePointerDown(event) {
|
|
601
|
+
if (onPointerDown) {
|
|
602
|
+
onPointerDown(event);
|
|
603
|
+
}
|
|
604
|
+
else if (!allEvents) {
|
|
605
|
+
cancelEvent(event);
|
|
606
|
+
}
|
|
607
|
+
}
|
|
608
|
+
return (React__default.createElement("a", __assign({ onMouseDown: handleMouseDown, onPointerDown: handlePointerDown, className: cn("dough-link", props.className, color, {
|
|
593
609
|
"dough-link-color-only-on-hover": props.colorOnlyOnHover,
|
|
594
610
|
"dough-link-no-underline": !underline,
|
|
595
611
|
"dough-link-full-width": props.fullWidth,
|
|
@@ -4523,7 +4539,7 @@ var PanelOverlay = function (props) {
|
|
|
4523
4539
|
};
|
|
4524
4540
|
PanelOverlay.displayName = "PanelOverlay";
|
|
4525
4541
|
|
|
4526
|
-
var css_248z$x = "/* COLORS */\n/* Typography*/\n/*Dennis should provide medium font size*/\n.dough-progress-bar {\n height: 4px;\n width: 100%;\n border-radius: 4px;\n position: relative;\n}\n\n.dough-progress-bar__progress {\n position: absolute;\n height: 100%;\n border-radius: 4px;\n z-index: 1;\n}\n\n.dough-multi-progress-bar {\n height: 8px;\n width: 100%;\n border-radius: 8px;\n display: flex;\n}\n\n.dough-multi-progress-bar__progress {\n height: 100%;\n z-index: 1;\n}\n.dough-multi-progress-bar__progress:first-of-type {\n border-top-left-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.dough-multi-progress-bar__progress:
|
|
4542
|
+
var css_248z$x = "/* COLORS */\n/* Typography*/\n/*Dennis should provide medium font size*/\n.dough-progress-bar {\n height: 4px;\n width: 100%;\n border-radius: 4px;\n position: relative;\n}\n\n.dough-progress-bar__progress {\n position: absolute;\n height: 100%;\n border-radius: 4px;\n z-index: 1;\n}\n\n.dough-multi-progress-bar {\n height: 8px;\n width: 100%;\n border-radius: 8px;\n display: flex;\n}\n\n.dough-multi-progress-bar__progress {\n height: 100%;\n z-index: 1;\n min-width: 4px;\n}\n.dough-multi-progress-bar__progress:first-of-type {\n border-top-left-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.dough-multi-progress-bar__progress:last-of-type {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n}";
|
|
4527
4543
|
styleInject(css_248z$x);
|
|
4528
4544
|
|
|
4529
4545
|
var DesignTokens = {
|
|
@@ -14,6 +14,6 @@ export declare const ColorButton: import("@storybook/csf").AnnotatedStoryFn<impo
|
|
|
14
14
|
export declare const ColorButtonWithoutBorder: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react").ReactFramework, ButtonProps & {
|
|
15
15
|
width: string;
|
|
16
16
|
}>;
|
|
17
|
-
export declare const ConstrainedButton: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react").ReactFramework, Pick<ButtonProps, "className" | "children" | "dataAttributes" | "type" | "size" | "color" | "border" | "rounded" | "shadow" | "padding" | "onClick" | "
|
|
17
|
+
export declare const ConstrainedButton: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react").ReactFramework, Pick<ButtonProps, "className" | "children" | "dataAttributes" | "type" | "size" | "color" | "border" | "rounded" | "shadow" | "padding" | "onClick" | "onMouseDown" | "onPointerDown" | "allEvents" | "fullWidth" | "disabled" | "alignIconRight" | "linkProps" | "tabIndex" | "name" | "autoFocus" | "icon" | "onDoubleClick" | "flat" | "busy" | "withoutBackground" | "colorPicker"> & {
|
|
18
18
|
singleLabel: boolean;
|
|
19
19
|
}>;
|