@jobber/components 6.111.2 → 6.111.4
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/Button-cjs.js +1 -1
- package/dist/Button-es.js +1 -1
- package/dist/Icon/Icon.d.ts +2 -7
- package/dist/Icon-cjs.js +2 -2
- package/dist/Icon-es.js +2 -2
- package/dist/Tooltip-cjs.js +3 -7
- package/dist/Tooltip-es.js +4 -8
- package/dist/styles.css +14 -0
- package/package.json +2 -2
package/dist/Button-cjs.js
CHANGED
|
@@ -59,7 +59,7 @@ function ButtonIcon(_a) {
|
|
|
59
59
|
var { size: sizeProp } = _a, props = tslib_es6.__rest(_a, ["size"]);
|
|
60
60
|
const { size: contextSize } = useButtonContext();
|
|
61
61
|
const size = sizeProp || contextSize;
|
|
62
|
-
return React.createElement(Icon.Icon, Object.assign({}, props, { size: size
|
|
62
|
+
return React.createElement(Icon.Icon, Object.assign({}, props, { size: size }));
|
|
63
63
|
}
|
|
64
64
|
function ButtonLabel(_a) {
|
|
65
65
|
var { element = "span", fontWeight = "semiBold", fontFamily = "base", size: sizeProp } = _a, props = tslib_es6.__rest(_a, ["element", "fontWeight", "fontFamily", "size"]);
|
package/dist/Button-es.js
CHANGED
|
@@ -57,7 +57,7 @@ function ButtonIcon(_a) {
|
|
|
57
57
|
var { size: sizeProp } = _a, props = __rest(_a, ["size"]);
|
|
58
58
|
const { size: contextSize } = useButtonContext();
|
|
59
59
|
const size = sizeProp || contextSize;
|
|
60
|
-
return React__default.createElement(Icon, Object.assign({}, props, { size: size
|
|
60
|
+
return React__default.createElement(Icon, Object.assign({}, props, { size: size }));
|
|
61
61
|
}
|
|
62
62
|
function ButtonLabel(_a) {
|
|
63
63
|
var { element = "span", fontWeight = "semiBold", fontFamily = "base", size: sizeProp } = _a, props = __rest(_a, ["element", "fontWeight", "fontFamily", "size"]);
|
package/dist/Icon/Icon.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { CSSProperties } from "react";
|
|
2
2
|
import React from "react";
|
|
3
3
|
import type { IconColorNames, IconNames, IconSizes } from "@jobber/design";
|
|
4
4
|
export type { IconColorNames, IconNames } from "@jobber/design";
|
|
@@ -24,11 +24,6 @@ export interface IconProps {
|
|
|
24
24
|
* Used to locate this view in end-to-end tests
|
|
25
25
|
*/
|
|
26
26
|
readonly testID?: string;
|
|
27
|
-
/**
|
|
28
|
-
* Indicates whether the element is exposed to an accessibility API.
|
|
29
|
-
* @see {@link https://www.w3.org/TR/wai-aria-1.2/#aria-hidden}
|
|
30
|
-
*/
|
|
31
|
-
readonly "aria-hidden"?: AriaAttributes["aria-hidden"];
|
|
32
27
|
/**
|
|
33
28
|
* **Use at your own risk:** Custom classnames for specific elements. This should only be used as a
|
|
34
29
|
* **last resort**. Using this may result in unexpected side effects.
|
|
@@ -48,4 +43,4 @@ export interface IconProps {
|
|
|
48
43
|
path?: CSSProperties;
|
|
49
44
|
};
|
|
50
45
|
}
|
|
51
|
-
export declare function Icon({ name, color, customColor, size, testID, UNSAFE_className, UNSAFE_style,
|
|
46
|
+
export declare function Icon({ name, color, customColor, size, testID, UNSAFE_className, UNSAFE_style, }: IconProps): React.JSX.Element;
|
package/dist/Icon-cjs.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
var React = require('react');
|
|
4
4
|
var design = require('@jobber/design');
|
|
5
5
|
|
|
6
|
-
function Icon({ name, color, customColor, size = "base", testID, UNSAFE_className, UNSAFE_style,
|
|
6
|
+
function Icon({ name, color, customColor, size = "base", testID, UNSAFE_className, UNSAFE_style, }) {
|
|
7
7
|
let icon;
|
|
8
8
|
const { svgStyle, pathStyle, paths, viewBox } = design.getIcon({
|
|
9
9
|
name,
|
|
@@ -17,7 +17,7 @@ function Icon({ name, color, customColor, size = "base", testID, UNSAFE_classNam
|
|
|
17
17
|
else {
|
|
18
18
|
icon = paths.map((path) => (React.createElement("path", { key: path, style: Object.assign(Object.assign({}, pathStyle), UNSAFE_style === null || UNSAFE_style === void 0 ? void 0 : UNSAFE_style.path), className: UNSAFE_className === null || UNSAFE_className === void 0 ? void 0 : UNSAFE_className.path, d: path, fill: customColor })));
|
|
19
19
|
}
|
|
20
|
-
return (React.createElement("svg", {
|
|
20
|
+
return (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: viewBox, style: Object.assign(Object.assign({}, svgStyle), UNSAFE_style === null || UNSAFE_style === void 0 ? void 0 : UNSAFE_style.svg), className: UNSAFE_className === null || UNSAFE_className === void 0 ? void 0 : UNSAFE_className.svg, "data-testid": testID || name }, icon));
|
|
21
21
|
}
|
|
22
22
|
function getIconColor(name, color) {
|
|
23
23
|
if (name === "truck") {
|
package/dist/Icon-es.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React__default from 'react';
|
|
2
2
|
import { getIcon } from '@jobber/design';
|
|
3
3
|
|
|
4
|
-
function Icon({ name, color, customColor, size = "base", testID, UNSAFE_className, UNSAFE_style,
|
|
4
|
+
function Icon({ name, color, customColor, size = "base", testID, UNSAFE_className, UNSAFE_style, }) {
|
|
5
5
|
let icon;
|
|
6
6
|
const { svgStyle, pathStyle, paths, viewBox } = getIcon({
|
|
7
7
|
name,
|
|
@@ -15,7 +15,7 @@ function Icon({ name, color, customColor, size = "base", testID, UNSAFE_classNam
|
|
|
15
15
|
else {
|
|
16
16
|
icon = paths.map((path) => (React__default.createElement("path", { key: path, style: Object.assign(Object.assign({}, pathStyle), UNSAFE_style === null || UNSAFE_style === void 0 ? void 0 : UNSAFE_style.path), className: UNSAFE_className === null || UNSAFE_className === void 0 ? void 0 : UNSAFE_className.path, d: path, fill: customColor })));
|
|
17
17
|
}
|
|
18
|
-
return (React__default.createElement("svg", {
|
|
18
|
+
return (React__default.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: viewBox, style: Object.assign(Object.assign({}, svgStyle), UNSAFE_style === null || UNSAFE_style === void 0 ? void 0 : UNSAFE_style.svg), className: UNSAFE_className === null || UNSAFE_className === void 0 ? void 0 : UNSAFE_className.svg, "data-testid": testID || name }, icon));
|
|
19
19
|
}
|
|
20
20
|
function getIconColor(name, color) {
|
|
21
21
|
if (name === "truck") {
|
package/dist/Tooltip-cjs.js
CHANGED
|
@@ -72,7 +72,6 @@ function Tooltip({ message, children, preferredPlacement = "top", setTabIndex =
|
|
|
72
72
|
? `${(_d = floatingStyles.arrow) === null || _d === void 0 ? void 0 : _d.y}px`
|
|
73
73
|
: "",
|
|
74
74
|
};
|
|
75
|
-
const tooltipId = React.useId();
|
|
76
75
|
return (React.createElement(React.Fragment, null,
|
|
77
76
|
React.createElement("span", { className: styles.shadowActivator, ref: shadowRef }),
|
|
78
77
|
children,
|
|
@@ -82,7 +81,7 @@ function Tooltip({ message, children, preferredPlacement = "top", setTabIndex =
|
|
|
82
81
|
duration: 0.15,
|
|
83
82
|
delay: 0.3,
|
|
84
83
|
} },
|
|
85
|
-
React.createElement("p", { className: styles.tooltipMessage
|
|
84
|
+
React.createElement("p", { className: styles.tooltipMessage }, message),
|
|
86
85
|
React.createElement("div", { ref: setArrowRef, style: arrowStyles, className: styles.arrow })))))));
|
|
87
86
|
function initializeListeners() {
|
|
88
87
|
const showTooltip = () => {
|
|
@@ -95,14 +94,11 @@ function Tooltip({ message, children, preferredPlacement = "top", setTabIndex =
|
|
|
95
94
|
var _a;
|
|
96
95
|
if ((_a = shadowRef === null || shadowRef === void 0 ? void 0 : shadowRef.current) === null || _a === void 0 ? void 0 : _a.nextElementSibling) {
|
|
97
96
|
const activator = shadowRef.current.nextElementSibling;
|
|
98
|
-
// Manually inject "aria-
|
|
97
|
+
// Manually inject "aria-description" and "tabindex" to let the screen
|
|
99
98
|
// readers read the tooltip message.
|
|
100
99
|
// This is to avoid having to add those attribute as a prop on every
|
|
101
100
|
// component we have.
|
|
102
|
-
|
|
103
|
-
// for now, we will leverage the fact that aria-labelledby overrides aria-label, avoiding
|
|
104
|
-
// double announcements of the same element assuming it uses "aria-label" as its mechanism.
|
|
105
|
-
activator.setAttribute("aria-labelledby", tooltipId);
|
|
101
|
+
activator.setAttribute("aria-description", message);
|
|
106
102
|
if (setTabIndex) {
|
|
107
103
|
activator.setAttribute("tabindex", "0"); // enable focus
|
|
108
104
|
}
|
package/dist/Tooltip-es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React__default, { useRef, useState
|
|
1
|
+
import React__default, { useRef, useState } from 'react';
|
|
2
2
|
import classnames from 'classnames';
|
|
3
3
|
import { u as useFloating, s as shift, f as flip, a as arrow, h as hide, b as autoUpdate, l as limitShift, F as FloatingPortal } from './floating-ui.react-es.js';
|
|
4
4
|
import { motion } from 'framer-motion';
|
|
@@ -70,7 +70,6 @@ function Tooltip({ message, children, preferredPlacement = "top", setTabIndex =
|
|
|
70
70
|
? `${(_d = floatingStyles.arrow) === null || _d === void 0 ? void 0 : _d.y}px`
|
|
71
71
|
: "",
|
|
72
72
|
};
|
|
73
|
-
const tooltipId = useId();
|
|
74
73
|
return (React__default.createElement(React__default.Fragment, null,
|
|
75
74
|
React__default.createElement("span", { className: styles.shadowActivator, ref: shadowRef }),
|
|
76
75
|
children,
|
|
@@ -80,7 +79,7 @@ function Tooltip({ message, children, preferredPlacement = "top", setTabIndex =
|
|
|
80
79
|
duration: 0.15,
|
|
81
80
|
delay: 0.3,
|
|
82
81
|
} },
|
|
83
|
-
React__default.createElement("p", { className: styles.tooltipMessage
|
|
82
|
+
React__default.createElement("p", { className: styles.tooltipMessage }, message),
|
|
84
83
|
React__default.createElement("div", { ref: setArrowRef, style: arrowStyles, className: styles.arrow })))))));
|
|
85
84
|
function initializeListeners() {
|
|
86
85
|
const showTooltip = () => {
|
|
@@ -93,14 +92,11 @@ function Tooltip({ message, children, preferredPlacement = "top", setTabIndex =
|
|
|
93
92
|
var _a;
|
|
94
93
|
if ((_a = shadowRef === null || shadowRef === void 0 ? void 0 : shadowRef.current) === null || _a === void 0 ? void 0 : _a.nextElementSibling) {
|
|
95
94
|
const activator = shadowRef.current.nextElementSibling;
|
|
96
|
-
// Manually inject "aria-
|
|
95
|
+
// Manually inject "aria-description" and "tabindex" to let the screen
|
|
97
96
|
// readers read the tooltip message.
|
|
98
97
|
// This is to avoid having to add those attribute as a prop on every
|
|
99
98
|
// component we have.
|
|
100
|
-
|
|
101
|
-
// for now, we will leverage the fact that aria-labelledby overrides aria-label, avoiding
|
|
102
|
-
// double announcements of the same element assuming it uses "aria-label" as its mechanism.
|
|
103
|
-
activator.setAttribute("aria-labelledby", tooltipId);
|
|
99
|
+
activator.setAttribute("aria-description", message);
|
|
104
100
|
if (setTabIndex) {
|
|
105
101
|
activator.setAttribute("tabindex", "0"); // enable focus
|
|
106
102
|
}
|
package/dist/styles.css
CHANGED
|
@@ -9419,12 +9419,26 @@ input.oOrjwubmsVA- {
|
|
|
9419
9419
|
}
|
|
9420
9420
|
|
|
9421
9421
|
._8oxipSwiMJQ- {
|
|
9422
|
+
outline: transparent;
|
|
9422
9423
|
color: hsl(107, 58%, 33%);
|
|
9423
9424
|
color: var(--color-interactive);
|
|
9424
9425
|
-webkit-text-decoration: underline;
|
|
9425
9426
|
text-decoration: underline;
|
|
9426
9427
|
}
|
|
9427
9428
|
|
|
9429
|
+
._8oxipSwiMJQ-:hover,
|
|
9430
|
+
._8oxipSwiMJQ-:focus {
|
|
9431
|
+
color: hsl(107, 65%, 24%);
|
|
9432
|
+
color: var(--color-interactive--hover);
|
|
9433
|
+
text-decoration-color: hsl(107, 65%, 24%);
|
|
9434
|
+
text-decoration-color: var(--color-interactive--hover);
|
|
9435
|
+
}
|
|
9436
|
+
|
|
9437
|
+
._8oxipSwiMJQ-:focus-visible {
|
|
9438
|
+
box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 1), 0px 0px 0px 4px hsl(198, 12%, 57%);
|
|
9439
|
+
box-shadow: var(--shadow-focus);
|
|
9440
|
+
}
|
|
9441
|
+
|
|
9428
9442
|
.rJffaV10x20- {
|
|
9429
9443
|
width: 100%;
|
|
9430
9444
|
padding: 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/components",
|
|
3
|
-
"version": "6.111.
|
|
3
|
+
"version": "6.111.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -538,5 +538,5 @@
|
|
|
538
538
|
"> 1%",
|
|
539
539
|
"IE 10"
|
|
540
540
|
],
|
|
541
|
-
"gitHead": "
|
|
541
|
+
"gitHead": "7f1df502111c69f3371131ca2e2d3ff2ee5cb1af"
|
|
542
542
|
}
|