@wireapp/react-ui-kit 9.66.1 → 9.68.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/lib/DataDisplay/BadgesWithTooltip/BadgesWithTooltip.stories.d.ts +1 -1
- package/lib/DataDisplay/Icon/CirclePlusIcon.d.ts +3 -0
- package/lib/DataDisplay/Icon/CirclePlusIcon.d.ts.map +1 -0
- package/lib/DataDisplay/Icon/CirclePlusIcon.js +25 -0
- package/lib/DataDisplay/Icon/ShareLinkIcon.d.ts +3 -0
- package/lib/DataDisplay/Icon/ShareLinkIcon.d.ts.map +1 -0
- package/lib/DataDisplay/Icon/ShareLinkIcon.js +25 -0
- package/lib/DataDisplay/Icon/index.d.ts +2 -0
- package/lib/DataDisplay/Icon/index.d.ts.map +1 -1
- package/lib/DataDisplay/Icon/index.js +2 -0
- package/lib/DataDisplay/Tooltip/Tooltip.stories.d.ts +1 -1
- package/lib/Inputs/ButtonGroup/ButtonGroup.js +3 -3
- package/lib/Inputs/ComboboxSelect/ComboboxSelect.stories.d.ts +1 -1
- package/lib/Inputs/Select/Select.stories.d.ts +1 -1
- package/lib/Typography/Label/Label.stories.d.ts +1 -1
- package/package.json +4 -4
|
@@ -9,7 +9,7 @@ declare const meta: {
|
|
|
9
9
|
layout: string;
|
|
10
10
|
};
|
|
11
11
|
tags: string[];
|
|
12
|
-
decorators: ((Story: import("storybook/
|
|
12
|
+
decorators: ((Story: import("@storybook/core/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
|
|
13
13
|
items: string[];
|
|
14
14
|
}>) => import("@emotion/react/jsx-runtime").JSX.Element)[];
|
|
15
15
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CirclePlusIcon.d.ts","sourceRoot":"","sources":["../../../src/DataDisplay/Icon/CirclePlusIcon.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAU,YAAY,EAAC,MAAM,WAAW,CAAC;AAEhD,eAAO,MAAM,cAAc,UAAW,YAAY,qDASjD,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CirclePlusIcon = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("@emotion/react/jsx-runtime");
|
|
5
|
+
/*
|
|
6
|
+
* Wire
|
|
7
|
+
* Copyright (C) 2025 Wire Swiss GmbH
|
|
8
|
+
*
|
|
9
|
+
* This program is free software: you can redistribute it and/or modify
|
|
10
|
+
* it under the terms of the GNU General Public License as published by
|
|
11
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
12
|
+
* (at your option) any later version.
|
|
13
|
+
*
|
|
14
|
+
* This program is distributed in the hope that it will be useful,
|
|
15
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17
|
+
* GNU General Public License for more details.
|
|
18
|
+
*
|
|
19
|
+
* You should have received a copy of the GNU General Public License
|
|
20
|
+
* along with this program. If not, see http://www.gnu.org/licenses/.
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
const SVGIcon_1 = require("./SVGIcon");
|
|
24
|
+
const CirclePlusIcon = (props) => ((0, jsx_runtime_1.jsx)(SVGIcon_1.SVGIcon, { realWidth: 16, realHeight: 16, ...props, children: (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 8C0 12.4183 3.58172 16 8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8ZM7 9H3V7H7V3H9V7H13V9H9V13H7V9Z", fill: "currentColor" }) }));
|
|
25
|
+
exports.CirclePlusIcon = CirclePlusIcon;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ShareLinkIcon.d.ts","sourceRoot":"","sources":["../../../src/DataDisplay/Icon/ShareLinkIcon.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAU,YAAY,EAAC,MAAM,WAAW,CAAC;AAEhD,eAAO,MAAM,aAAa,UAAW,YAAY,qDAoBhD,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ShareLinkIcon = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("@emotion/react/jsx-runtime");
|
|
5
|
+
/*
|
|
6
|
+
* Wire
|
|
7
|
+
* Copyright (C) 2025 Wire Swiss GmbH
|
|
8
|
+
*
|
|
9
|
+
* This program is free software: you can redistribute it and/or modify
|
|
10
|
+
* it under the terms of the GNU General Public License as published by
|
|
11
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
12
|
+
* (at your option) any later version.
|
|
13
|
+
*
|
|
14
|
+
* This program is distributed in the hope that it will be useful,
|
|
15
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17
|
+
* GNU General Public License for more details.
|
|
18
|
+
*
|
|
19
|
+
* You should have received a copy of the GNU General Public License
|
|
20
|
+
* along with this program. If not, see http://www.gnu.org/licenses/.
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
const SVGIcon_1 = require("./SVGIcon");
|
|
24
|
+
const ShareLinkIcon = (props) => ((0, jsx_runtime_1.jsxs)(SVGIcon_1.SVGIcon, { realWidth: 16, realHeight: 16, strokeWidth: "2", ...props, children: [(0, jsx_runtime_1.jsx)("path", { fill: "none", strokeWidth: "2", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", d: "M5.99998 11.3333H4.66665C3.78259 11.3333 2.93475 10.9821 2.30962 10.357C1.6845 9.73186 1.33331 8.88401 1.33331 7.99996C1.33331 7.1159 1.6845 6.26806 2.30962 5.64294C2.93475 5.01782 3.78259 4.66663 4.66665 4.66663H5.99998" }), (0, jsx_runtime_1.jsx)("path", { fill: "none", strokeWidth: "2", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", d: "M10 4.66663H11.3333C12.2174 4.66663 13.0652 5.01782 13.6904 5.64294C14.3155 6.26806 14.6667 7.1159 14.6667 7.99996C14.6667 8.88401 14.3155 9.73186 13.6904 10.357C13.0652 10.9821 12.2174 11.3333 11.3333 11.3333H10" }), (0, jsx_runtime_1.jsx)("path", { d: "M5.5 8H10.5", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })] }));
|
|
25
|
+
exports.ShareLinkIcon = ShareLinkIcon;
|
|
@@ -14,6 +14,7 @@ export * from './CheckIcon';
|
|
|
14
14
|
export * from './CheckRoundIcon';
|
|
15
15
|
export * from './ChevronIcon';
|
|
16
16
|
export * from './CircleCloseIcon';
|
|
17
|
+
export * from './CirclePlusIcon';
|
|
17
18
|
export * from './CloseIcon';
|
|
18
19
|
export * from './DeviceIcon';
|
|
19
20
|
export * from './DownloadIcon';
|
|
@@ -65,6 +66,7 @@ export * from './ScreenshareIcon';
|
|
|
65
66
|
export * from './SearchIcon';
|
|
66
67
|
export * from './ServicesIcon';
|
|
67
68
|
export * from './SettingsIcon';
|
|
69
|
+
export * from './ShareLinkIcon';
|
|
68
70
|
export * from './ShowIcon';
|
|
69
71
|
export * from './SignIcon';
|
|
70
72
|
export * from './SortIcon';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/DataDisplay/Icon/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/DataDisplay/Icon/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -48,6 +48,7 @@ __exportStar(require("./CheckIcon"), exports);
|
|
|
48
48
|
__exportStar(require("./CheckRoundIcon"), exports);
|
|
49
49
|
__exportStar(require("./ChevronIcon"), exports);
|
|
50
50
|
__exportStar(require("./CircleCloseIcon"), exports);
|
|
51
|
+
__exportStar(require("./CirclePlusIcon"), exports);
|
|
51
52
|
__exportStar(require("./CloseIcon"), exports);
|
|
52
53
|
__exportStar(require("./DeviceIcon"), exports);
|
|
53
54
|
__exportStar(require("./DownloadIcon"), exports);
|
|
@@ -99,6 +100,7 @@ __exportStar(require("./ScreenshareIcon"), exports);
|
|
|
99
100
|
__exportStar(require("./SearchIcon"), exports);
|
|
100
101
|
__exportStar(require("./ServicesIcon"), exports);
|
|
101
102
|
__exportStar(require("./SettingsIcon"), exports);
|
|
103
|
+
__exportStar(require("./ShareLinkIcon"), exports);
|
|
102
104
|
__exportStar(require("./ShowIcon"), exports);
|
|
103
105
|
__exportStar(require("./SignIcon"), exports);
|
|
104
106
|
__exportStar(require("./SortIcon"), exports);
|
|
@@ -5,7 +5,7 @@ declare const meta: {
|
|
|
5
5
|
parameters: {
|
|
6
6
|
layout: string;
|
|
7
7
|
};
|
|
8
|
-
decorators: ((Story: import("storybook/
|
|
8
|
+
decorators: ((Story: import("@storybook/core/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
|
|
9
9
|
body: import("react").ReactNode;
|
|
10
10
|
selector?: string;
|
|
11
11
|
accept?: string | undefined;
|
|
@@ -34,15 +34,15 @@ const groupedButtonStyle = (theme, props) => ({
|
|
|
34
34
|
cursor: 'pointer',
|
|
35
35
|
display: 'flex',
|
|
36
36
|
alignItems: 'center',
|
|
37
|
-
'&:not(:last-
|
|
37
|
+
'&:not(:last-of-type)': {
|
|
38
38
|
borderTopRightRadius: '0',
|
|
39
39
|
borderBottomRightRadius: '0',
|
|
40
40
|
},
|
|
41
|
-
'&:not(:first-
|
|
41
|
+
'&:not(:first-of-type)': {
|
|
42
42
|
borderTopLeftRadius: '0',
|
|
43
43
|
borderBottomLeftRadius: '0',
|
|
44
44
|
},
|
|
45
|
-
'&:first-
|
|
45
|
+
'&:first-of-type:last-of-type': {
|
|
46
46
|
borderRadius: '0',
|
|
47
47
|
},
|
|
48
48
|
...(0, Button_styles_1.buttonStyle)(theme, props),
|
|
@@ -6,7 +6,7 @@ declare const meta: {
|
|
|
6
6
|
parameters: {
|
|
7
7
|
layout: string;
|
|
8
8
|
};
|
|
9
|
-
decorators: ((Story: import("storybook/
|
|
9
|
+
decorators: ((Story: import("@storybook/core/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
|
|
10
10
|
id: string;
|
|
11
11
|
options: import("./ComboboxSelect").ComboboxSelectOption[];
|
|
12
12
|
value?: import("./ComboboxSelect").ComboboxSelectOption | import("./ComboboxSelect").ComboboxSelectOption[];
|
|
@@ -5,7 +5,7 @@ declare const meta: {
|
|
|
5
5
|
parameters: {
|
|
6
6
|
layout: string;
|
|
7
7
|
};
|
|
8
|
-
decorators: ((Story: import("storybook/
|
|
8
|
+
decorators: ((Story: import("@storybook/core/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
|
|
9
9
|
id: string;
|
|
10
10
|
disabled?: boolean;
|
|
11
11
|
dataUieName: string;
|
|
@@ -10,7 +10,7 @@ declare const meta: {
|
|
|
10
10
|
parameters: {
|
|
11
11
|
layout: string;
|
|
12
12
|
};
|
|
13
|
-
decorators: ((Story: import("storybook/
|
|
13
|
+
decorators: ((Story: import("@storybook/core/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
|
|
14
14
|
markInvalid?: boolean;
|
|
15
15
|
block?: boolean;
|
|
16
16
|
bold?: boolean;
|
package/package.json
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@emotion/react": "^11.10.4",
|
|
29
29
|
"@storybook/addon-essentials": "^8.5.2",
|
|
30
30
|
"@storybook/addon-interactions": "^8.5.2",
|
|
31
|
-
"@storybook/addon-onboarding": "^
|
|
31
|
+
"@storybook/addon-onboarding": "^8.5.2",
|
|
32
32
|
"@storybook/addon-themes": "^8.5.2",
|
|
33
33
|
"@storybook/addon-webpack5-compiler-swc": "^4.0.1",
|
|
34
34
|
"@storybook/blocks": "^8.5.2",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"react-helmet": "6.1.0",
|
|
54
54
|
"react-test-renderer": "18.3.1",
|
|
55
55
|
"rimraf": "6.0.1",
|
|
56
|
-
"storybook": "^
|
|
56
|
+
"storybook": "^8.5.2",
|
|
57
57
|
"typescript": "^5.0.4",
|
|
58
58
|
"webpack": "^5.74.0"
|
|
59
59
|
},
|
|
@@ -79,6 +79,6 @@
|
|
|
79
79
|
"test:watch": "jest --watch",
|
|
80
80
|
"test:update": "jest --updateSnapshot"
|
|
81
81
|
},
|
|
82
|
-
"version": "9.
|
|
83
|
-
"gitHead": "
|
|
82
|
+
"version": "9.68.0",
|
|
83
|
+
"gitHead": "b7b917566348427dacede815d29116f248c20599"
|
|
84
84
|
}
|