@wireapp/react-ui-kit 9.27.0 → 9.28.1
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/Icon/BoldIcon.d.ts +3 -0
- package/lib/Icon/BoldIcon.d.ts.map +1 -0
- package/lib/Icon/BoldIcon.js +25 -0
- package/lib/Icon/BulletListIcon.d.ts +3 -0
- package/lib/Icon/BulletListIcon.d.ts.map +1 -0
- package/lib/Icon/BulletListIcon.js +25 -0
- package/lib/Icon/CodeIcon.d.ts +3 -0
- package/lib/Icon/CodeIcon.d.ts.map +1 -0
- package/lib/Icon/CodeIcon.js +25 -0
- package/lib/Icon/HeadingIcon.d.ts +3 -0
- package/lib/Icon/HeadingIcon.d.ts.map +1 -0
- package/lib/Icon/HeadingIcon.js +25 -0
- package/lib/Icon/ItalicIcon.d.ts +3 -0
- package/lib/Icon/ItalicIcon.d.ts.map +1 -0
- package/lib/Icon/ItalicIcon.js +25 -0
- package/lib/Icon/MarkdownIcon.d.ts +3 -0
- package/lib/Icon/MarkdownIcon.d.ts.map +1 -0
- package/lib/Icon/MarkdownIcon.js +25 -0
- package/lib/Icon/NumberedListIcon.d.ts +3 -0
- package/lib/Icon/NumberedListIcon.d.ts.map +1 -0
- package/lib/Icon/NumberedListIcon.js +25 -0
- package/lib/Icon/StrikethroughIcon.d.ts +3 -0
- package/lib/Icon/StrikethroughIcon.d.ts.map +1 -0
- package/lib/Icon/StrikethroughIcon.js +25 -0
- package/lib/Icon/UnderlineIcon.d.ts +3 -0
- package/lib/Icon/UnderlineIcon.d.ts.map +1 -0
- package/lib/Icon/UnderlineIcon.js +25 -0
- package/lib/Icon/index.d.ts +9 -0
- package/lib/Icon/index.d.ts.map +1 -1
- package/lib/Icon/index.js +9 -0
- package/package.json +5 -5
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BoldIcon.d.ts","sourceRoot":"","sources":["../../src/Icon/BoldIcon.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAU,YAAY,EAAC,MAAM,WAAW,CAAC;AAEhD,eAAO,MAAM,QAAQ,UAAW,YAAY,qDAI3C,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BoldIcon = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("@emotion/react/jsx-runtime");
|
|
5
|
+
/*
|
|
6
|
+
* Wire
|
|
7
|
+
* Copyright (C) 2024 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 BoldIcon = (props) => ((0, jsx_runtime_1.jsx)(SVGIcon_1.SVGIcon, { realWidth: 16, realHeight: 16, ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M3 15V1H8.37405C9.73738 1.0128 10.7615 1.35848 11.4463 2.03704C12.1375 2.722 12.4831 3.62779 12.4831 4.75446C12.4957 5.33059 12.3594 5.88111 12.0741 6.40604C11.9282 6.65569 11.719 6.89255 11.4463 7.1166C11.1736 7.35345 10.8376 7.5679 10.4381 7.75994V7.79835C11.1927 7.9968 11.7633 8.39689 12.1501 8.99863C12.5116 9.61957 12.6923 10.2949 12.6923 11.0247C12.6796 12.2346 12.3055 13.1916 11.5699 13.8957C10.8407 14.6319 9.93078 15 8.84011 15H3ZM8.336 8.7139H5.10206V12.88H8.336C9.11595 12.8673 9.68664 12.6549 10.0481 12.2427C10.4095 11.8369 10.5902 11.355 10.5902 10.7969C10.5902 10.2262 10.4095 9.73798 10.0481 9.33215C9.68664 8.93266 9.11595 8.72658 8.336 8.7139ZM8.13626 2.87378H5.10206V6.84011H8.13626C8.90353 6.84011 9.46788 6.64037 9.82932 6.24088C10.1971 5.8731 10.381 5.41021 10.381 4.85219C10.381 4.29418 10.1971 3.82177 9.82932 3.43497C9.46788 3.07352 8.90353 2.88646 8.13626 2.87378Z" }) }));
|
|
25
|
+
exports.BoldIcon = BoldIcon;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BulletListIcon.d.ts","sourceRoot":"","sources":["../../src/Icon/BulletListIcon.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAU,YAAY,EAAC,MAAM,WAAW,CAAC;AAEhD,eAAO,MAAM,cAAc,UAAW,YAAY,qDAIjD,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BulletListIcon = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("@emotion/react/jsx-runtime");
|
|
5
|
+
/*
|
|
6
|
+
* Wire
|
|
7
|
+
* Copyright (C) 2024 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 BulletListIcon = (props) => ((0, jsx_runtime_1.jsx)(SVGIcon_1.SVGIcon, { realWidth: 16, realHeight: 16, ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M3 1H1V3H3V1ZM15 7H5V9H15V7ZM15 1H5V3H15V1ZM15 13H5V15H15V13ZM1 7H3V9H1V7ZM3 13H1V15H3V13Z" }) }));
|
|
25
|
+
exports.BulletListIcon = BulletListIcon;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CodeIcon.d.ts","sourceRoot":"","sources":["../../src/Icon/CodeIcon.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAU,YAAY,EAAC,MAAM,WAAW,CAAC;AAEhD,eAAO,MAAM,QAAQ,UAAW,YAAY,qDAI3C,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CodeIcon = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("@emotion/react/jsx-runtime");
|
|
5
|
+
/*
|
|
6
|
+
* Wire
|
|
7
|
+
* Copyright (C) 2024 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 CodeIcon = (props) => ((0, jsx_runtime_1.jsx)(SVGIcon_1.SVGIcon, { realWidth: 16, realHeight: 16, ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M5.52218 14.7905L8.52218 0.790466L10.4778 1.20952L7.47779 15.2095L5.52218 14.7905ZM4.84799 4.52999L3.15199 3.47L0.32074 8L3.15199 12.53L4.84799 11.47L2.67923 8L4.84799 4.52999ZM10.8207 4.52999L12.5167 3.47L15.348 8L12.5167 12.53L10.8207 11.47L12.9895 8L10.8207 4.52999Z" }) }));
|
|
25
|
+
exports.CodeIcon = CodeIcon;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HeadingIcon.d.ts","sourceRoot":"","sources":["../../src/Icon/HeadingIcon.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAU,YAAY,EAAC,MAAM,WAAW,CAAC;AAEhD,eAAO,MAAM,WAAW,UAAW,YAAY,qDAI9C,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.HeadingIcon = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("@emotion/react/jsx-runtime");
|
|
5
|
+
/*
|
|
6
|
+
* Wire
|
|
7
|
+
* Copyright (C) 2024 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 HeadingIcon = (props) => ((0, jsx_runtime_1.jsx)(SVGIcon_1.SVGIcon, { realWidth: 16, realHeight: 16, ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M2 1H4.00562V6.99719H6.48315V1H8.48876V15H6.48315V8.76685H4.00562V15H2V1ZM12.4803 3.1236L10.4747 4.59831V2.47472L12.4803 1H14.486V15H12.4803V3.1236Z" }) }));
|
|
25
|
+
exports.HeadingIcon = HeadingIcon;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ItalicIcon.d.ts","sourceRoot":"","sources":["../../src/Icon/ItalicIcon.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAU,YAAY,EAAC,MAAM,WAAW,CAAC;AAEhD,eAAO,MAAM,UAAU,UAAW,YAAY,qDAI7C,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ItalicIcon = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("@emotion/react/jsx-runtime");
|
|
5
|
+
/*
|
|
6
|
+
* Wire
|
|
7
|
+
* Copyright (C) 2024 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 ItalicIcon = (props) => ((0, jsx_runtime_1.jsx)(SVGIcon_1.SVGIcon, { realWidth: 16, realHeight: 16, ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M8.30769 12.8462L9.69231 3.15385H10.6923L11 1H7L6.69231 3.15385H7.69231L6.30769 12.8462H5.30769L5 15H9L9.30769 12.8462H8.30769Z" }) }));
|
|
25
|
+
exports.ItalicIcon = ItalicIcon;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MarkdownIcon.d.ts","sourceRoot":"","sources":["../../src/Icon/MarkdownIcon.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAU,YAAY,EAAC,MAAM,WAAW,CAAC;AAEhD,eAAO,MAAM,YAAY,UAAW,YAAY,qDAQ/C,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MarkdownIcon = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("@emotion/react/jsx-runtime");
|
|
5
|
+
/*
|
|
6
|
+
* Wire
|
|
7
|
+
* Copyright (C) 2024 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 MarkdownIcon = (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: "M5.75766 1H4.10028L1 14.883H2.98886L3.57382 11.8997H6.28412L6.86908 14.883H8.85794L5.75766 1ZM13.4401 13.8691H13.4791V14.883H15.468V8C15.468 7.48003 15.39 7.02507 15.234 6.6351C15.078 6.24512 14.8668 5.92015 14.6003 5.66017C14.3338 5.40018 14.0186 5.2052 13.6546 5.07521C13.2906 4.94522 12.9007 4.88022 12.4847 4.88022C12.0297 4.88022 11.6202 4.95497 11.2563 5.10446C10.8923 5.25395 10.5803 5.45868 10.3203 5.71866C9.78737 6.25163 9.48839 6.96657 9.4234 7.86351H11.3538C11.4188 7.53853 11.5585 7.29155 11.773 7.12256C11.9875 6.95357 12.2247 6.86908 12.4847 6.86908C12.8617 6.86908 13.1216 6.97957 13.2646 7.20056C13.4076 7.42154 13.4791 7.70102 13.4791 8.039V9.07242C13.2711 9.05942 13.0956 9.04643 12.9526 9.03343C12.8097 9.02043 12.6667 9.01393 12.5237 9.01393C11.8997 9.01393 11.3863 9.08217 10.9833 9.21866C10.5803 9.35515 10.2586 9.56314 10.0181 9.84262C9.77762 10.1221 9.61189 10.4731 9.52089 10.8955C9.4299 11.318 9.3844 11.8087 9.3844 12.3677C9.3844 12.9137 9.45265 13.3589 9.58914 13.7033C9.72563 14.0478 9.90111 14.3143 10.1156 14.5028C10.3301 14.6913 10.5608 14.8213 10.8078 14.8928C11.0548 14.9643 11.2953 15 11.5292 15C12.0102 15 12.3839 14.9025 12.6504 14.7075C12.9169 14.5125 13.1801 14.2331 13.4401 13.8691ZM13.4791 10.6323C13.2581 10.5933 13.0761 10.5738 12.9331 10.5738C12.5042 10.5738 12.137 10.6746 11.8315 10.876C11.526 11.0775 11.3733 11.4448 11.3733 11.9777C11.3733 12.3547 11.4643 12.6602 11.6462 12.8942C11.8282 13.1281 12.0817 13.2451 12.4067 13.2451C12.7447 13.2451 13.0079 13.1346 13.1964 12.9136C13.3849 12.6927 13.4791 12.3807 13.4791 11.9777V10.6323ZM4.89972 4.99721H4.93872L5.91365 10.0279H3.92479L4.89972 4.99721Z" }) }));
|
|
25
|
+
exports.MarkdownIcon = MarkdownIcon;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NumberedListIcon.d.ts","sourceRoot":"","sources":["../../src/Icon/NumberedListIcon.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAU,YAAY,EAAC,MAAM,WAAW,CAAC;AAEhD,eAAO,MAAM,gBAAgB,UAAW,YAAY,qDAInD,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NumberedListIcon = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("@emotion/react/jsx-runtime");
|
|
5
|
+
/*
|
|
6
|
+
* Wire
|
|
7
|
+
* Copyright (C) 2024 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 NumberedListIcon = (props) => ((0, jsx_runtime_1.jsx)(SVGIcon_1.SVGIcon, { realWidth: 16, realHeight: 16, ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M5 7H15V9H5V7ZM5 1H15V3H5V1ZM5 13H15V15H5V13ZM1.604 4V1.28516H1.55762L0.708008 1.85889V1.0874L1.604 0.477051H2.5V4H1.604ZM0.770508 7.25439C0.770508 6.55371 1.31738 6.08008 2.13525 6.08008C2.92383 6.08008 3.45117 6.50244 3.45117 7.125C3.45117 7.51562 3.22168 7.8623 2.59668 8.41895L2.01562 8.95361V9H3.5V9.69824H0.821777V9.1001L1.93506 8.05273C2.45264 7.57422 2.58447 7.396 2.58447 7.18848C2.58447 6.92969 2.39404 6.75635 2.10352 6.75635C1.80078 6.75635 1.59082 6.96143 1.59082 7.25195V7.26904H0.770508V7.25439ZM1.60791 13.9946V13.377H2.04004C2.34033 13.377 2.53809 13.2085 2.53809 12.9521C2.53809 12.6958 2.34521 12.5371 2.03271 12.5371C1.7251 12.5371 1.51758 12.7202 1.50781 12.9961H0.694824C0.707031 12.3076 1.23438 11.8682 2.05225 11.8682C2.8335 11.8682 3.37061 12.2612 3.37061 12.8301C3.37061 13.2354 3.09961 13.5552 2.7041 13.6284V13.6748C3.18994 13.7261 3.5 14.0459 3.5 14.5C3.5 15.1372 2.89941 15.5815 2.0376 15.5815C1.21484 15.5815 0.660645 15.1323 0.628906 14.4414H1.4834C1.49561 14.71 1.71289 14.876 2.05225 14.876C2.36963 14.876 2.58936 14.6953 2.58936 14.4316C2.58936 14.1606 2.38184 13.9946 2.04004 13.9946H1.60791Z" }) }));
|
|
25
|
+
exports.NumberedListIcon = NumberedListIcon;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StrikethroughIcon.d.ts","sourceRoot":"","sources":["../../src/Icon/StrikethroughIcon.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAU,YAAY,EAAC,MAAM,WAAW,CAAC;AAEhD,eAAO,MAAM,iBAAiB,UAAW,YAAY,qDAKpD,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.StrikethroughIcon = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("@emotion/react/jsx-runtime");
|
|
5
|
+
/*
|
|
6
|
+
* Wire
|
|
7
|
+
* Copyright (C) 2024 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 StrikethroughIcon = (props) => ((0, jsx_runtime_1.jsxs)(SVGIcon_1.SVGIcon, { realWidth: 16, realHeight: 16, ...props, children: [(0, jsx_runtime_1.jsx)("path", { d: "M8.01333 15.4187C7.14222 15.4187 6.41422 15.232 5.82933 14.8587C5.25689 14.4853 4.82133 13.9689 4.52267 13.3093C4.224 12.6498 4.04978 11.8844 4 11.0133L5.86667 10.5093C5.904 11.0444 5.98489 11.5609 6.10933 12.0587C6.24622 12.5564 6.464 12.9671 6.76267 13.2907C7.06133 13.6018 7.47822 13.7573 8.01333 13.7573C8.56089 13.7573 8.97156 13.608 9.24533 13.3093C9.53156 12.9982 9.67467 12.5564 9.67467 11.984C9.67467 11.2996 9.51911 10.752 9.208 10.3413C8.89689 9.91822 8.50489 9.49511 8.032 9.072L5.49333 6.832C4.99556 6.39644 4.62844 5.92356 4.392 5.41333C4.15556 4.89067 4.03733 4.24978 4.03733 3.49067C4.03733 2.38311 4.35467 1.52444 4.98933 0.914667C5.624 0.304889 6.48889 0 7.584 0C8.18133 0 8.704 0.0808888 9.152 0.242667C9.61244 0.392 9.992 0.628444 10.2907 0.952C10.6018 1.27556 10.8444 1.68622 11.0187 2.184C11.2053 2.66933 11.3298 3.24178 11.392 3.90133L9.6 4.38667C9.56267 3.88889 9.488 3.43467 9.376 3.024C9.264 2.60089 9.06489 2.26489 8.77867 2.016C8.50489 1.75467 8.10667 1.624 7.584 1.624C7.06133 1.624 6.65067 1.76711 6.352 2.05333C6.06578 2.32711 5.92267 2.73778 5.92267 3.28533C5.92267 3.74578 5.99733 4.12533 6.14667 4.424C6.30844 4.72267 6.56356 5.02756 6.912 5.33867L9.46933 7.57867C10.0418 8.07644 10.5458 8.67378 10.9813 9.37067C11.4169 10.0551 11.6347 10.8702 11.6347 11.816C11.6347 12.5627 11.4791 13.2098 11.168 13.7573C10.8569 14.2924 10.4276 14.7031 9.88 14.9893C9.34489 15.2756 8.72267 15.4187 8.01333 15.4187Z" }), (0, jsx_runtime_1.jsx)("rect", { x: "3", y: "7", width: "11", height: "2" })] }));
|
|
25
|
+
exports.StrikethroughIcon = StrikethroughIcon;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UnderlineIcon.d.ts","sourceRoot":"","sources":["../../src/Icon/UnderlineIcon.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAU,YAAY,EAAC,MAAM,WAAW,CAAC;AAEhD,eAAO,MAAM,aAAa,UAAW,YAAY,qDAIhD,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UnderlineIcon = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("@emotion/react/jsx-runtime");
|
|
5
|
+
/*
|
|
6
|
+
* Wire
|
|
7
|
+
* Copyright (C) 2024 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 UnderlineIcon = (props) => ((0, jsx_runtime_1.jsx)(SVGIcon_1.SVGIcon, { realWidth: 16, realHeight: 16, ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M5.10588 10.1932C4.38145 9.61625 4.01282 8.76361 4 7.63529V1H6.00982V6.94291C6.00982 7.61606 6.19894 8.14175 6.57718 8.51999C6.94902 8.89824 7.42342 9.08736 8.00041 9.08736C8.57739 9.08736 9.04859 8.89824 9.41401 8.51999C9.78584 8.14175 9.97176 7.61606 9.97176 6.94291V1H11.9816V10.9818H9.97176V9.91436H9.93329C9.27297 10.7029 8.41071 11.0972 7.34649 11.0972C6.51948 11.0844 5.77262 10.783 5.10588 10.1932ZM12.0291 12.9927H4V15H12.0291V12.9927Z" }) }));
|
|
25
|
+
exports.UnderlineIcon = UnderlineIcon;
|
package/lib/Icon/index.d.ts
CHANGED
|
@@ -85,4 +85,13 @@ export * from './CertificateRevoked';
|
|
|
85
85
|
export * from './ExpiresSoon';
|
|
86
86
|
export * from './MLSVerified';
|
|
87
87
|
export * from './ProteusVerified';
|
|
88
|
+
export * from './BoldIcon';
|
|
89
|
+
export * from './ItalicIcon';
|
|
90
|
+
export * from './StrikethroughIcon';
|
|
91
|
+
export * from './UnderlineIcon';
|
|
92
|
+
export * from './BulletListIcon';
|
|
93
|
+
export * from './NumberedListIcon';
|
|
94
|
+
export * from './MarkdownIcon';
|
|
95
|
+
export * from './HeadingIcon';
|
|
96
|
+
export * from './CodeIcon';
|
|
88
97
|
//# sourceMappingURL=index.d.ts.map
|
package/lib/Icon/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Icon/index.ts"],"names":[],"mappings":"AAmBA,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oBAAoB,CAAC;AACnC,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,oBAAoB,CAAC;AACnC,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,0BAA0B,CAAC;AACzC,cAAc,YAAY,CAAC;AAG3B,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,qBAAqB,CAAC;AAEpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Icon/index.ts"],"names":[],"mappings":"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"}
|
package/lib/Icon/index.js
CHANGED
|
@@ -120,3 +120,12 @@ __exportStar(require("./CertificateRevoked"), exports);
|
|
|
120
120
|
__exportStar(require("./ExpiresSoon"), exports);
|
|
121
121
|
__exportStar(require("./MLSVerified"), exports);
|
|
122
122
|
__exportStar(require("./ProteusVerified"), exports);
|
|
123
|
+
__exportStar(require("./BoldIcon"), exports);
|
|
124
|
+
__exportStar(require("./ItalicIcon"), exports);
|
|
125
|
+
__exportStar(require("./StrikethroughIcon"), exports);
|
|
126
|
+
__exportStar(require("./UnderlineIcon"), exports);
|
|
127
|
+
__exportStar(require("./BulletListIcon"), exports);
|
|
128
|
+
__exportStar(require("./NumberedListIcon"), exports);
|
|
129
|
+
__exportStar(require("./MarkdownIcon"), exports);
|
|
130
|
+
__exportStar(require("./HeadingIcon"), exports);
|
|
131
|
+
__exportStar(require("./CodeIcon"), exports);
|
package/package.json
CHANGED
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"react-transition-group": "4.4.5"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@babel/cli": "7.
|
|
18
|
+
"@babel/cli": "7.26.4",
|
|
19
19
|
"@babel/core": "7.26.0",
|
|
20
20
|
"@babel/preset-env": "7.26.0",
|
|
21
|
-
"@babel/preset-react": "7.
|
|
21
|
+
"@babel/preset-react": "7.26.3",
|
|
22
22
|
"@babel/preset-typescript": "7.26.0",
|
|
23
23
|
"@emotion/babel-preset-css-prop": "^11.10.0",
|
|
24
24
|
"@emotion/jest": "11.13.0",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@swc/core": "^1.3.10",
|
|
28
28
|
"@swc/jest": "^0.2.23",
|
|
29
29
|
"@testing-library/jest-dom": "6.6.3",
|
|
30
|
-
"@testing-library/react": "16.0
|
|
30
|
+
"@testing-library/react": "16.1.0",
|
|
31
31
|
"@testing-library/user-event": "14.5.2",
|
|
32
32
|
"@types/jest": "^29.2.0",
|
|
33
33
|
"@types/node": "^22.0.0",
|
|
@@ -69,6 +69,6 @@
|
|
|
69
69
|
"test:watch": "jest --watch",
|
|
70
70
|
"test:update": "jest --updateSnapshot"
|
|
71
71
|
},
|
|
72
|
-
"version": "9.
|
|
73
|
-
"gitHead": "
|
|
72
|
+
"version": "9.28.1",
|
|
73
|
+
"gitHead": "46c672959751a4b29d562ce1eb13bb6092125085"
|
|
74
74
|
}
|