@iconify/json 1.1.405 → 2.0.0-beta.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/collections.md CHANGED
@@ -146,7 +146,7 @@
146
146
  * Author: IBM
147
147
  * URL: https://github.com/carbon-design-system/carbon/tree/main/packages/icons
148
148
  * License: Apache 2.0
149
- * Version: 10.38.0
149
+ * Version: 10.39.0
150
150
  * Palette: Colorless
151
151
 
152
152
 
@@ -316,17 +316,17 @@
316
316
 
317
317
 
318
318
  ### Octicons
319
- * Number of icons: 461
319
+ * Number of icons: 463
320
320
  * Author: GitHub
321
321
  * URL: https://github.com/primer/octicons/
322
322
  * License: Open Font License
323
323
  * License URL: https://raw.githubusercontent.com/primer/octicons/main/LICENSE
324
- * Version: 15.2.0
324
+ * Version: 16.0.0
325
325
  * Palette: Colorless
326
326
 
327
327
 
328
328
  ### Codicons
329
- * Number of icons: 376
329
+ * Number of icons: 381
330
330
  * Author: Microsoft Corporation
331
331
  * URL: https://github.com/microsoft/vscode-codicons
332
332
  * License: CC BY 4.0
@@ -336,7 +336,7 @@
336
336
 
337
337
 
338
338
  ### Ant Design Icons
339
- * Number of icons: 788
339
+ * Number of icons: 789
340
340
  * Author: HeskeyBaozi
341
341
  * URL: https://github.com/ant-design/ant-design-icons
342
342
  * License: MIT
@@ -344,7 +344,7 @@
344
344
 
345
345
 
346
346
  ### Lucide
347
- * Number of icons: 496
347
+ * Number of icons: 500
348
348
  * Author: Lucide Contributors
349
349
  * URL: https://github.com/lucide-icons/lucide
350
350
  * License: ISC
@@ -642,7 +642,7 @@
642
642
 
643
643
 
644
644
  ### Maki
645
- * Number of icons: 204
645
+ * Number of icons: 205
646
646
  * Author: Mapbox
647
647
  * URL: https://github.com/mapbox/maki
648
648
  * License: CC0
@@ -913,12 +913,12 @@
913
913
 
914
914
 
915
915
  ### Simple Icons
916
- * Number of icons: 2012
916
+ * Number of icons: 2020
917
917
  * Author: Simple Icons Collaborators
918
918
  * URL: https://github.com/simple-icons/simple-icons
919
919
  * License: CC0 1.0
920
920
  * License URL: https://github.com/simple-icons/simple-icons/blob/develop/LICENSE.md
921
- * Version: 5.15.0
921
+ * Version: 5.16.0
922
922
  * Palette: Colorless
923
923
 
924
924
 
@@ -0,0 +1,49 @@
1
+ import { PathLike } from 'fs';
2
+ import { IconifyInfo, IconifyJSON } from '@iconify/types';
3
+
4
+ /**
5
+ * This file is part of the iconify.design libraries.
6
+ *
7
+ * (c) Vjacheslav Trushkin <cyberalien@gmail.com>
8
+ *
9
+ * @license MIT
10
+ *
11
+ * For the full copyright and license information, please view the license.txt
12
+ * file that is available in this file's directory.
13
+ */
14
+
15
+ /**
16
+ * Collection info map
17
+ */
18
+ declare type IconifyMetaDataCollection = {
19
+ [prefix: string]: IconifyInfo;
20
+ };
21
+ /**
22
+ * Locate JSON file
23
+ *
24
+ * @param {string} name Collection name
25
+ * @returns {string} Path to collection json file
26
+ */
27
+ declare const locate: (name: string) => PathLike;
28
+ /**
29
+ * Loads a collection.
30
+ *
31
+ * @param {PathLike} path The path to locate the `json` collection file.
32
+ * @return {Promise<IconifyJSON>}
33
+ */
34
+ declare const loadCollection: (path: PathLike) => Promise<IconifyJSON>;
35
+ /**
36
+ * Get a collection.
37
+ *
38
+ * @param {string} name The name of the collection
39
+ * @return {Promise<IconifyJSON>}
40
+ */
41
+ declare const lookupCollection: (name: string) => Promise<IconifyJSON>;
42
+ /**
43
+ * Get list of collections info.
44
+ *
45
+ * @return {Promise<IconifyMetaDataCollection>}
46
+ */
47
+ declare const lookupCollections: () => Promise<IconifyMetaDataCollection>;
48
+
49
+ export { IconifyMetaDataCollection, loadCollection, locate, lookupCollection, lookupCollections };
package/dist/index.js ADDED
@@ -0,0 +1,32 @@
1
+ "use strict";var __import_meta_url = typeof document === 'undefined' ? 'file://' + __filename : new URL('index.js', document.baseURI).href;Object.defineProperty(exports, "__esModule", {value: true});// src/index.ts
2
+ var _fs = require('fs');
3
+ var _url = require('url');
4
+ var _pathe = require('pathe');
5
+ var _dirname = typeof __dirname !== "undefined" ? __dirname : _pathe.dirname.call(void 0, _url.fileURLToPath.call(void 0, __import_meta_url));
6
+ var dir = _pathe.join.call(void 0, _dirname, "/..");
7
+ var locate = (name) => _pathe.join.call(void 0, dir, `./json/${name}.json`);
8
+ var loadCollection = async (path) => {
9
+ return JSON.parse(await _fs.promises.readFile(path, "utf8"));
10
+ };
11
+ var lookupCollection = async (name) => {
12
+ return await loadCollection(locate(name));
13
+ };
14
+ var lookupCollections = async () => {
15
+ return JSON.parse(await _fs.promises.readFile(_pathe.join.call(void 0, dir, "./collections.json"), "utf8"));
16
+ };
17
+
18
+
19
+
20
+
21
+
22
+ exports.loadCollection = loadCollection; exports.locate = locate; exports.lookupCollection = lookupCollection; exports.lookupCollections = lookupCollections;
23
+ /**
24
+ * This file is part of the iconify.design libraries.
25
+ *
26
+ * (c) Vjacheslav Trushkin <cyberalien@gmail.com>
27
+ *
28
+ * @license MIT
29
+ *
30
+ * For the full copyright and license information, please view the license.txt
31
+ * file that is available in this file's directory.
32
+ */
package/dist/index.mjs ADDED
@@ -0,0 +1,32 @@
1
+ // src/index.ts
2
+ import { promises as fs } from "fs";
3
+ import { fileURLToPath } from "url";
4
+ import { dirname, join } from "pathe";
5
+ var _dirname = typeof __dirname !== "undefined" ? __dirname : dirname(fileURLToPath(import.meta.url));
6
+ var dir = join(_dirname, "/..");
7
+ var locate = (name) => join(dir, `./json/${name}.json`);
8
+ var loadCollection = async (path) => {
9
+ return JSON.parse(await fs.readFile(path, "utf8"));
10
+ };
11
+ var lookupCollection = async (name) => {
12
+ return await loadCollection(locate(name));
13
+ };
14
+ var lookupCollections = async () => {
15
+ return JSON.parse(await fs.readFile(join(dir, "./collections.json"), "utf8"));
16
+ };
17
+ export {
18
+ loadCollection,
19
+ locate,
20
+ lookupCollection,
21
+ lookupCollections
22
+ };
23
+ /**
24
+ * This file is part of the iconify.design libraries.
25
+ *
26
+ * (c) Vjacheslav Trushkin <cyberalien@gmail.com>
27
+ *
28
+ * @license MIT
29
+ *
30
+ * For the full copyright and license information, please view the license.txt
31
+ * file that is available in this file's directory.
32
+ */
@@ -2,7 +2,7 @@
2
2
  "prefix": "ant-design",
3
3
  "info": {
4
4
  "name": "Ant Design Icons",
5
- "total": 788,
5
+ "total": 789,
6
6
  "author": {
7
7
  "name": "HeskeyBaozi",
8
8
  "url": "https://github.com/ant-design/ant-design-icons"
@@ -1212,6 +1212,9 @@
1212
1212
  "history-outlined": {
1213
1213
  "body": "<path d=\"M536.1 273H488c-4.4 0-8 3.6-8 8v275.3c0 2.6 1.2 5 3.3 6.5l165.3 120.7c3.6 2.6 8.6 1.9 11.2-1.7l28.6-39c2.7-3.7 1.9-8.7-1.7-11.2L544.1 528.5V281c0-4.4-3.6-8-8-8zm219.8 75.2l156.8 38.3c5 1.2 9.9-2.6 9.9-7.7l.8-161.5c0-6.7-7.7-10.5-12.9-6.3L752.9 334.1a8 8 0 0 0 3 14.1zm167.7 301.1l-56.7-19.5a8 8 0 0 0-10.1 4.8c-1.9 5.1-3.9 10.1-6 15.1c-17.8 42.1-43.3 80-75.9 112.5a353 353 0 0 1-112.5 75.9a352.18 352.18 0 0 1-137.7 27.8c-47.8 0-94.1-9.3-137.7-27.8a353 353 0 0 1-112.5-75.9c-32.5-32.5-58-70.4-75.9-112.5A353.44 353.44 0 0 1 171 512c0-47.8 9.3-94.2 27.8-137.8c17.8-42.1 43.3-80 75.9-112.5a353 353 0 0 1 112.5-75.9C430.6 167.3 477 158 524.8 158s94.1 9.3 137.7 27.8A353 353 0 0 1 775 261.7c10.2 10.3 19.8 21 28.6 32.3l59.8-46.8C784.7 146.6 662.2 81.9 524.6 82C285 82.1 92.6 276.7 95 516.4C97.4 751.9 288.9 942 524.8 942c185.5 0 343.5-117.6 403.7-282.3c1.5-4.2-.7-8.9-4.9-10.4z\" fill=\"currentColor\"/>"
1214
1214
  },
1215
+ "holder-outlined": {
1216
+ "body": "<path d=\"M300 276.497a56 56 0 1 0 56-96.994a56 56 0 0 0-56 96.994zm0 284a56 56 0 1 0 56-96.994a56 56 0 0 0-56 96.994zM640 228a56 56 0 1 0 112 0a56 56 0 0 0-112 0zm0 284a56 56 0 1 0 112 0a56 56 0 0 0-112 0zM300 844.497a56 56 0 1 0 56-96.994a56 56 0 0 0-56 96.994zM640 796a56 56 0 1 0 112 0a56 56 0 0 0-112 0z\" fill=\"currentColor\"/>"
1217
+ },
1215
1218
  "home-filled": {
1216
1219
  "body": "<path d=\"M946.5 505L534.6 93.4a31.93 31.93 0 0 0-45.2 0L77.5 505c-12 12-18.8 28.3-18.8 45.3c0 35.3 28.7 64 64 64h43.4V908c0 17.7 14.3 32 32 32H448V716h112v224h265.9c17.7 0 32-14.3 32-32V614.3h43.4c17 0 33.3-6.7 45.3-18.8c24.9-25 24.9-65.5-.1-90.5z\" fill=\"currentColor\"/>"
1217
1220
  },
package/json/carbon.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "title": "Apache 2.0",
12
12
  "spdx": "Apache-2.0"
13
13
  },
14
- "version": "10.38.0",
14
+ "version": "10.39.0",
15
15
  "samples": [
16
16
  "user-certification",
17
17
  "humidity",
package/json/codicon.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "prefix": "codicon",
3
3
  "info": {
4
4
  "name": "Codicons",
5
- "total": 376,
5
+ "total": 381,
6
6
  "author": {
7
7
  "name": "Microsoft Corporation",
8
8
  "url": "https://github.com/microsoft/vscode-codicons"
@@ -75,6 +75,9 @@
75
75
  "beaker": {
76
76
  "body": "<g fill=\"currentColor\"><path d=\"M13.893 13.558L10 6.006v-4h1v-1H9.994V1l-.456.005H5V2h1v3.952l-3.894 7.609A1 1 0 0 0 3 15.006h10a1 1 0 0 0 .893-1.448zm-7-7.15L7 6.193V2.036l2-.024v4.237l.11.215l1.827 3.542H5.049l1.844-3.598zM3 14.017l1.54-3.011h6.916l1.547 3L3 14.017z\"/></g>"
77
77
  },
78
+ "beaker-stop": {
79
+ "body": "<g fill=\"currentColor\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 15.006h5.007a5.03 5.03 0 0 1-.998-.993L3 14.017l1.542-3.011H6V11c0-.34.034-.673.099-.994h-1.05l1.844-3.598L7 6.193V2.036l2-.024v4.237l.07.137c.31-.13.636-.23.974-.295L10 6.006v-4h1v-1H9.994V1l-.456.005H5V2h1v3.952l-3.894 7.609A1 1 0 0 0 3 15.006zm5.778-7.332a4 4 0 1 1 4.444 6.652a4 4 0 0 1-4.444-6.652zm.1 5.447A3 3 0 0 0 11 14a3 3 0 0 0 1.74-.55L8.55 9.26A3 3 0 0 0 8 11a3 3 0 0 0 .879 2.121zm.382-4.57l4.19 4.189A3 3 0 0 0 14 11a3 3 0 0 0-3-3a3 3 0 0 0-1.74.55z\"/></g>"
80
+ },
78
81
  "bell": {
79
82
  "body": "<g fill=\"currentColor\"><path d=\"M13.377 10.573a7.63 7.63 0 0 1-.383-2.38V6.195a5.115 5.115 0 0 0-1.268-3.446a5.138 5.138 0 0 0-3.242-1.722c-.694-.072-1.4 0-2.07.227c-.67.215-1.28.574-1.794 1.053a4.923 4.923 0 0 0-1.208 1.675a5.067 5.067 0 0 0-.431 2.022v2.2a7.61 7.61 0 0 1-.383 2.37L2 12.343l.479.658h3.505c0 .526.215 1.04.586 1.412c.37.37.885.586 1.412.586c.526 0 1.04-.215 1.411-.586s.587-.886.587-1.412h3.505l.478-.658l-.586-1.77zm-4.69 3.147a.997.997 0 0 1-.705.299a.997.997 0 0 1-.706-.3a.997.997 0 0 1-.3-.705h1.999a.939.939 0 0 1-.287.706zm-5.515-1.71l.371-1.114a8.633 8.633 0 0 0 .443-2.691V6.004c0-.563.12-1.113.347-1.616c.227-.514.55-.969.969-1.34c.419-.382.91-.67 1.436-.837c.538-.18 1.1-.24 1.65-.18a4.147 4.147 0 0 1 2.597 1.4a4.133 4.133 0 0 1 1.004 2.776v2.01c0 .909.144 1.818.443 2.691l.371 1.113h-9.63v-.012z\"/></g>"
80
83
  },
@@ -279,6 +282,9 @@
279
282
  "debug-continue": {
280
283
  "body": "<g fill=\"currentColor\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.5 2H4v12H2.5V2zm4.936.39L6.25 3v10l1.186.61l7-5V7.39l-7-5zM12.71 8l-4.96 3.543V4.457L12.71 8z\"/></g>"
281
284
  },
285
+ "debug-continue-small": {
286
+ "body": "<g fill=\"currentColor\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 2H3v12h1V2zm3.29.593L6.5 3v10l.79.407l7-5v-.814l-7-5zM13.14 8L7.5 12.028V3.972L13.14 8z\"/></g>"
287
+ },
282
288
  "debug-coverage": {
283
289
  "body": "<g fill=\"currentColor\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5 2.41L5.78 2l9 6v.83L9 12.683v-1.2l4.6-3.063L6 3.35V7H5V2.41z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.13 12.124c-.182.18-.322.379-.42.6c-.097.219-.145.457-.145.715v.862a.685.685 0 0 1-.205.495a.703.703 0 0 1-.496.204h-.865a.691.691 0 0 1-.497-.204a.701.701 0 0 1-.205-.495v-.862c0-.258-.049-.496-.147-.716a1.913 1.913 0 0 0-.418-.6a2.525 2.525 0 0 1-.542-.773a2.255 2.255 0 0 1-.19-.927A2.386 2.386 0 0 1 2.332 9.2a2.404 2.404 0 0 1 .87-.87A2.473 2.473 0 0 1 4.432 8a2.41 2.41 0 0 1 1.225.33a2.41 2.41 0 0 1 1.205 2.093c0 .332-.063.641-.19.927a2.525 2.525 0 0 1-.542.774zm-1.103.991H3.835v1.186c0 .043.016.08.049.114c.033.033.07.048.115.048h.865a.156.156 0 0 0 .114-.048a.154.154 0 0 0 .049-.114v-1.186z\"/></g>"
284
290
  },
@@ -527,6 +533,12 @@
527
533
  "graph-left": {
528
534
  "body": "<g fill=\"currentColor\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.119 4L3 4.881l-.619.619L.715 3.833v-.618L2.38 1.548l.62.619L2.167 3H15v1H2.119zM4 14.546V5.455L4.5 5h2l.5.455v9.09L6.5 15h-2l-.5-.454zm2-.455V5.909H5v8.182h1zm2-1.535V5.444L8.5 5h2l.5.444v7.112l-.5.444h-2l-.5-.444zm2-.445V5.89H9v6.222h1zm2-6.682v5.143l.5.428h2l.5-.428V5.429L14.5 5h-2l-.5.429zm2 .428v4.286h-1V5.857h1z\"/></g>"
529
535
  },
536
+ "graph-line": {
537
+ "body": "<g fill=\"currentColor\"><path d=\"M15 13v1H1.5l-.5-.5V0h1v13h13z\"/><path d=\"M13 3.207L7.854 8.354h-.708L5.5 6.707l-3.646 3.647l-.708-.708l4-4h.708L7.5 7.293l5.146-5.147h.707l2 2l-.707.708L13 3.207z\"/></g>"
538
+ },
539
+ "graph-scatter": {
540
+ "body": "<g fill=\"currentColor\"><path d=\"M15 13v1H1.5l-.5-.5V0h1v13h13z\"/><path d=\"M5 2h2v2H5z\"/><path d=\"M12 1h2v2h-2z\"/><path d=\"M8 5h2v2H8z\"/><path d=\"M5 9h2v2H5z\"/><path d=\"M12 8h2v2h-2z\"/></g>"
541
+ },
530
542
  "gripper": {
531
543
  "body": "<g fill=\"currentColor\"><path d=\"M5 3h2v2H5zm0 4h2v2H5zm0 4h2v2H5zm4-8h2v2H9zm0 4h2v2H9zm0 4h2v2H9z\"/></g>"
532
544
  },
@@ -736,6 +748,9 @@
736
748
  "person-add": {
737
749
  "body": "<g fill=\"currentColor\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13 10h-1v2h-2v1h2v2h1v-2h2v-1h-2v-2zM8.556 2.169a1 1 0 1 0-1.112 1.663a1 1 0 0 0 1.112-1.663zm-1.667-.832A2 2 0 1 1 9.11 4.663a2 2 0 0 1-2.22-3.326zM6.77 5.49h2.46A1.77 1.77 0 0 1 11 7.26V8h-1v-.74a.76.76 0 0 0-.77-.77H6.77a.76.76 0 0 0-.77.77V10h1v3.31a.2.2 0 0 0 .2.2H8v1.02h-.8a1.2 1.2 0 0 1-1.2-1.2V11a1.06 1.06 0 0 1-1-1.1V7.26a1.77 1.77 0 0 1 1.77-1.77z\"/></g>"
738
750
  },
751
+ "pie-chart": {
752
+ "body": "<g fill=\"currentColor\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 6h3.9A5.006 5.006 0 0 0 10 2.1V6zm0-4.917A6.005 6.005 0 0 1 15 7H9V1c.34 0 .675.028 1 .083zM7 8l1 1h4.9A5.002 5.002 0 0 1 3 8a5.002 5.002 0 0 1 4-4.9V8zm1 6a6.002 6.002 0 0 0 6-6H8V2a6.002 6.002 0 0 0 0 12z\"/></g>"
753
+ },
739
754
  "pin": {
740
755
  "body": "<g fill=\"currentColor\"><path d=\"M14 5v7h-.278c-.406 0-.778-.086-1.117-.258A2.528 2.528 0 0 1 11.73 11H8.87a3.463 3.463 0 0 1-.546.828a3.685 3.685 0 0 1-.735.633c-.27.177-.565.31-.882.398a3.875 3.875 0 0 1-.985.141h-.5V9H2l-1-.5L2 8h3.222V4h.5c.339 0 .664.047.977.14c.312.094.607.227.883.4A3.404 3.404 0 0 1 8.87 6h2.859a2.56 2.56 0 0 1 .875-.734c.338-.172.71-.26 1.117-.266H14zm-.778 1.086a1.222 1.222 0 0 0-.32.156a1.491 1.491 0 0 0-.43.461L12.285 7H8.183l-.117-.336a2.457 2.457 0 0 0-.711-1.047C7.027 5.331 6.427 5.09 6 5v7c.427-.088 1.027-.33 1.355-.617c.328-.287.565-.636.71-1.047L8.184 10h4.102l.18.297c.057.094.122.177.195.25c.073.073.153.143.242.21c.088.069.195.12.32.157V6.086z\"/></g>"
741
756
  },
package/json/lucide.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "prefix": "lucide",
3
3
  "info": {
4
4
  "name": "Lucide",
5
- "total": 496,
5
+ "total": 500,
6
6
  "author": {
7
7
  "name": "Lucide Contributors",
8
8
  "url": "https://github.com/lucide-icons/lucide"
@@ -34,6 +34,9 @@
34
34
  "alarm-clock": {
35
35
  "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"13\" r=\"8\"/><path d=\"M12 9v4l2 2\"/><path d=\"M5 3L2 6\"/><path d=\"M22 6l-3-3\"/><path d=\"M6 19l-2 2\"/><path d=\"M18 19l2 2\"/></g>"
36
36
  },
37
+ "alarm-clock-off": {
38
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M19.94 14A8 8 0 0 0 10 5.25m8.13 12.89A8 8 0 1 1 6.87 6.86\"/><path d=\"M22 6l-3-3\"/><path d=\"M6 19l-2 2\"/><path d=\"M2 2l20 20\"/><path d=\"M4 4L2 6\"/></g>"
39
+ },
37
40
  "alarm-minus": {
38
41
  "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 21a8 8 0 1 0 0-16a8 8 0 0 0 0 16z\"/><path d=\"M5 3L2 6\"/><path d=\"M22 6l-3-3\"/><path d=\"M6 19l-2 2\"/><path d=\"M18 19l2 2\"/><path d=\"M9 13h6\"/></g>"
39
42
  },
@@ -206,7 +209,13 @@
206
209
  "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z\"/><path d=\"M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z\"/></g>"
207
210
  },
208
211
  "bookmark": {
209
- "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M19 21l-7-5l-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z\"/></g>"
212
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M19 21l-7-4l-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z\"/></g>"
213
+ },
214
+ "bookmark-minus": {
215
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M19 21l-7-4l-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z\"/><path d=\"M15 10H9\"/></g>"
216
+ },
217
+ "bookmark-plus": {
218
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M19 21l-7-4l-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z\"/><path d=\"M12 7v6\"/><path d=\"M15 10H9\"/></g>"
210
219
  },
211
220
  "bot": {
212
221
  "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"3\" y=\"11\" width=\"18\" height=\"10\" rx=\"2\"/><circle cx=\"12\" cy=\"5\" r=\"2\"/><path d=\"M12 7v4\"/><path d=\"M8 16h0\"/><path d=\"M16 16h0\"/></g>"
@@ -775,6 +784,9 @@
775
784
  "key": {
776
785
  "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778a5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4\"/></g>"
777
786
  },
787
+ "landmark": {
788
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 22h18\"/><path d=\"M6 18v-7\"/><path d=\"M10 18v-7\"/><path d=\"M14 18v-7\"/><path d=\"M18 18v-7\"/><path d=\"M12 2l8 5H4z\"/></g>"
789
+ },
778
790
  "languages": {
779
791
  "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M5 8l6 6\"/><path d=\"M4 14l6-6l2-3\"/><path d=\"M2 5h12\"/><path d=\"M7 2h1\"/><path d=\"M22 22l-5-10l-5 10\"/><path d=\"M14 18h6\"/></g>"
780
792
  },
@@ -1262,10 +1274,10 @@
1262
1274
  "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M2 12h20\"/><path d=\"M12 2v20\"/><path d=\"M20 16l-4-4l4-4\"/><path d=\"M4 8l4 4l-4 4\"/><path d=\"M16 4l-4 4l-4-4\"/><path d=\"M8 20l4-4l4 4\"/></g>"
1263
1275
  },
1264
1276
  "sort-asc": {
1265
- "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M11 5h10\"/><path d=\"M11 9h7\"/><path d=\"M11 13h4\"/><path d=\"M3 17l3 3l3-3\"/><path d=\"M6 18V4\"/></g>"
1277
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M11 5h4\"/><path d=\"M11 9h7\"/><path d=\"M11 13h10\"/><path d=\"M3 17l3 3l3-3\"/><path d=\"M6 18V4\"/></g>"
1266
1278
  },
1267
1279
  "sort-desc": {
1268
- "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M11 5h4\"/><path d=\"M11 9h7\"/><path d=\"M11 13h10\"/><path d=\"M3 17l3 3l3-3\"/><path d=\"M6 18V4\"/></g>"
1280
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M11 5h10\"/><path d=\"M11 9h7\"/><path d=\"M11 13h4\"/><path d=\"M3 17l3 3l3-3\"/><path d=\"M6 18V4\"/></g>"
1269
1281
  },
1270
1282
  "speaker": {
1271
1283
  "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"4\" y=\"2\" width=\"16\" height=\"20\" rx=\"2\" ry=\"2\"/><circle cx=\"12\" cy=\"14\" r=\"4\"/><path d=\"M12 6h.01\"/></g>"
package/json/maki.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "prefix": "maki",
3
3
  "info": {
4
4
  "name": "Maki",
5
- "total": 204,
5
+ "total": 205,
6
6
  "author": {
7
7
  "name": "Mapbox",
8
8
  "url": "https://github.com/mapbox/maki"
@@ -77,6 +77,9 @@
77
77
  "height": 11,
78
78
  "hidden": true
79
79
  },
80
+ "animal-shelter": {
81
+ "body": "<path d=\"M7.528.895L9 2h1L11.473.896a.33.33 0 0 1 .527.263V4.5c0 .722-.522 1.184-1 1.573V10l.8 2.4l.706.353a.894.894 0 0 1 .494.8c0 .247-.2.447-.447.447H4.25C3.017 14 2 13 2 11.713c0-2.17.453-3.783.745-4.868c.146-.543.29-.95.393-1.231c.058-.157.115-.303.192-.449c.449-.855 1.744-.21 1.342.668a6.311 6.311 0 0 0-.133.317c-.091.232-.214.593-.346 1.084c-.246.915-.519 2.287-.635 4.133c.368-2.06 2.422-4.128 4.077-5.609c-.345-.326-.634-.72-.634-1.258V1.158c0-.27.31-.425.527-.263z\" fill=\"currentColor\"/>"
82
+ },
80
83
  "aquarium": {
81
84
  "body": "<path d=\"M10.9 11.6c-.3-.6-.3-2.3 0-2.8c.4-.6 3.4 1.4 3.4 1.4c.9.4.9-6.1 0-5.7c0 0-3.1 2.1-3.4 1.4c-.3-.7-.3-2.1 0-2.8c.3-.6 4.1-.7 4.1-.7c0-.7-2.9-1.4-4.1-1.4s-2.5.1-4.1.8c-1.6.6-2.9 1.6-4.1 2.8S0 8.2 0 8.9s1.5 2.8 3.7 3.7s3.3 1.1 4.5 1.3c1.1.1 2.6 0 3.9-.3c1-.2 2.9-.7 2.9-1.1c0-.2-3.8-.3-4.1-.9zM4.5 9.3C3.7 9.3 3 8.6 3 7.8s.7-1.5 1.5-1.5S6 7 6 7.8s-.7 1.5-1.5 1.5z\" fill=\"currentColor\"/>"
82
85
  },
package/json/mdi.json CHANGED
@@ -20714,7 +20714,7 @@
20714
20714
  "parent": "shield-lock-outline"
20715
20715
  },
20716
20716
  "alarm-arm-home": {
20717
- "parent": "shield-home-outline"
20717
+ "parent": "shield-home"
20718
20718
  },
20719
20719
  "alarm-arm-home-outline": {
20720
20720
  "parent": "shield-account-outline"
@@ -21284,10 +21284,10 @@
21284
21284
  "parent": "application-import"
21285
21285
  },
21286
21286
  "approval": {
21287
- "parent": "check-decagram"
21287
+ "parent": "check-decagram-outline"
21288
21288
  },
21289
21289
  "approve": {
21290
- "parent": "check-decagram"
21290
+ "parent": "check-decagram-outline"
21291
21291
  },
21292
21292
  "aquarium": {
21293
21293
  "parent": "fishbowl"
@@ -21371,7 +21371,7 @@
21371
21371
  "parent": "scent-off"
21372
21372
  },
21373
21373
  "arrow": {
21374
- "parent": "undo-variant"
21374
+ "parent": "undo"
21375
21375
  },
21376
21376
  "arrow-back": {
21377
21377
  "parent": "arrow-left"
@@ -21611,7 +21611,7 @@
21611
21611
  "parent": "paperclip"
21612
21612
  },
21613
21613
  "audio": {
21614
- "parent": "volume-low"
21614
+ "parent": "volume-medium"
21615
21615
  },
21616
21616
  "audio-book": {
21617
21617
  "parent": "book-music"
@@ -21797,7 +21797,7 @@
21797
21797
  "parent": "ph"
21798
21798
  },
21799
21799
  "bassinet": {
21800
- "parent": "cradle"
21800
+ "parent": "cradle-outline"
21801
21801
  },
21802
21802
  "bathroom-tissue": {
21803
21803
  "parent": "paper-roll"
@@ -21857,7 +21857,7 @@
21857
21857
  "parent": "battery-sync-outline"
21858
21858
  },
21859
21859
  "battery-saver": {
21860
- "parent": "battery-plus-variant"
21860
+ "parent": "battery-sync"
21861
21861
  },
21862
21862
  "battery-saver-outline": {
21863
21863
  "parent": "battery-sync-outline"
@@ -21968,7 +21968,7 @@
21968
21968
  "parent": "text-account"
21969
21969
  },
21970
21970
  "birthday-cake": {
21971
- "parent": "cake"
21971
+ "parent": "cake-layered"
21972
21972
  },
21973
21973
  "birthday-cake-outline": {
21974
21974
  "parent": "cake-variant-outline"
@@ -24050,7 +24050,7 @@
24050
24050
  "parent": "cookie-settings-outline"
24051
24051
  },
24052
24052
  "couch": {
24053
- "parent": "sofa"
24053
+ "parent": "sofa-single"
24054
24054
  },
24055
24055
  "couch-outline": {
24056
24056
  "parent": "sofa-single-outline"
@@ -24122,7 +24122,7 @@
24122
24122
  "parent": "credit-card-multiple-outline"
24123
24123
  },
24124
24124
  "crib": {
24125
- "parent": "cradle"
24125
+ "parent": "cradle-outline"
24126
24126
  },
24127
24127
  "cricket-bat": {
24128
24128
  "parent": "cricket"
@@ -24209,7 +24209,7 @@
24209
24209
  "parent": "silverware-variant"
24210
24210
  },
24211
24211
  "cycling": {
24212
- "parent": "bicycle"
24212
+ "parent": "bike"
24213
24213
  },
24214
24214
  "dad": {
24215
24215
  "parent": "human-male-girl"
@@ -27425,19 +27425,19 @@
27425
27425
  "parent": "home-thermometer-outline"
27426
27426
  },
27427
27427
  "home-electricity": {
27428
- "parent": "home-lightning-bolt-outline"
27428
+ "parent": "home-lightning-bolt"
27429
27429
  },
27430
27430
  "home-electricity-outline": {
27431
27431
  "parent": "home-battery-outline"
27432
27432
  },
27433
27433
  "home-energy": {
27434
- "parent": "home-lightning-bolt-outline"
27434
+ "parent": "home-lightning-bolt"
27435
27435
  },
27436
27436
  "home-energy-outline": {
27437
27437
  "parent": "home-battery-outline"
27438
27438
  },
27439
27439
  "home-flash": {
27440
- "parent": "home-lightning-bolt-outline"
27440
+ "parent": "home-lightning-bolt"
27441
27441
  },
27442
27442
  "home-floor-attic": {
27443
27443
  "parent": "home-floor-a"
@@ -27488,7 +27488,7 @@
27488
27488
  "parent": "home-map-marker"
27489
27489
  },
27490
27490
  "home-power": {
27491
- "parent": "home-lightning-bolt-outline"
27491
+ "parent": "home-lightning-bolt"
27492
27492
  },
27493
27493
  "home-power-outline": {
27494
27494
  "parent": "home-battery-outline"
@@ -28091,7 +28091,7 @@
28091
28091
  "parent": "invert-colors-off"
28092
28092
  },
28093
28093
  "invite": {
28094
- "parent": "account-multiple-plus"
28094
+ "parent": "account-plus"
28095
28095
  },
28096
28096
  "invoice": {
28097
28097
  "parent": "receipt"
@@ -29414,7 +29414,7 @@
29414
29414
  "parent": "ruler-square-compass"
29415
29415
  },
29416
29416
  "material": {
29417
- "parent": "palette-swatch-variant"
29417
+ "parent": "palette-swatch"
29418
29418
  },
29419
29419
  "math-compass-variant": {
29420
29420
  "parent": "android-studio"
@@ -30743,7 +30743,7 @@
30743
30743
  "parent": "palette-swatch-outline"
30744
30744
  },
30745
30745
  "paintbrush": {
30746
- "parent": "brush-variant"
30746
+ "parent": "brush"
30747
30747
  },
30748
30748
  "pan-down-left": {
30749
30749
  "parent": "pan-bottom-left"
@@ -32024,7 +32024,7 @@
32024
32024
  "parent": "help-network-outline"
32025
32025
  },
32026
32026
  "queue": {
32027
- "parent": "tray-minus"
32027
+ "parent": "tray-remove"
32028
32028
  },
32029
32029
  "queue-music": {
32030
32030
  "parent": "playlist-music"
@@ -32426,7 +32426,7 @@
32426
32426
  "parent": "restore"
32427
32427
  },
32428
32428
  "royalty": {
32429
- "parent": "chess-king"
32429
+ "parent": "chess-queen"
32430
32430
  },
32431
32431
  "rss-feed": {
32432
32432
  "parent": "rss"
@@ -33518,10 +33518,10 @@
33518
33518
  "parent": "snowflake-alert"
33519
33519
  },
33520
33520
  "solar-electricity": {
33521
- "parent": "solar-panel"
33521
+ "parent": "solar-power"
33522
33522
  },
33523
33523
  "solar-energy": {
33524
- "parent": "solar-panel"
33524
+ "parent": "solar-power"
33525
33525
  },
33526
33526
  "solar-panel-electricity": {
33527
33527
  "parent": "solar-panel-large"
@@ -33626,7 +33626,7 @@
33626
33626
  "parent": "radius-outline"
33627
33627
  },
33628
33628
  "spicy": {
33629
- "parent": "chili-mild"
33629
+ "parent": "chili-medium"
33630
33630
  },
33631
33631
  "spicy-off": {
33632
33632
  "parent": "chili-off"
@@ -33917,7 +33917,7 @@
33917
33917
  "parent": "baby-carriage-off"
33918
33918
  },
33919
33919
  "style": {
33920
- "parent": "palette-swatch-variant"
33920
+ "parent": "palette-swatch"
33921
33921
  },
33922
33922
  "style-outline": {
33923
33923
  "parent": "palette-swatch-outline"
@@ -35501,7 +35501,7 @@
35501
35501
  "parent": "air-filter"
35502
35502
  },
35503
35503
  "water-flow": {
35504
- "parent": "waves-arrow-right"
35504
+ "parent": "waves-arrow-left"
35505
35505
  },
35506
35506
  "water-heater": {
35507
35507
  "parent": "water-boiler"
@@ -46885,6 +46885,7 @@
46885
46885
  "image-filter-vintage",
46886
46886
  "image-multiple-outline",
46887
46887
  "orbit-variant",
46888
+ "panorama",
46888
46889
  "white-balance-auto",
46889
46890
  "white-balance-incandescent",
46890
46891
  "white-balance-iridescent",
package/json/octicon.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "prefix": "octicon",
3
3
  "info": {
4
4
  "name": "Octicons",
5
- "total": 461,
5
+ "total": 463,
6
6
  "author": {
7
7
  "name": "GitHub",
8
8
  "url": "https://github.com/primer/octicons/"
@@ -12,7 +12,7 @@
12
12
  "spdx": "OFL-1.1",
13
13
  "url": "https://raw.githubusercontent.com/primer/octicons/main/LICENSE"
14
14
  },
15
- "version": "15.2.0",
15
+ "version": "16.0.0",
16
16
  "samples": [
17
17
  "alert-24",
18
18
  "bell-slash-24",
@@ -1378,6 +1378,14 @@
1378
1378
  "width": 24,
1379
1379
  "height": 24
1380
1380
  },
1381
+ "iterations-16": {
1382
+ "body": "<path d=\"M2.5 7.25a4.75 4.75 0 0 1 9.5 0a.75.75 0 0 0 1.5 0a6.25 6.25 0 1 0-6.25 6.25H12v2.146c0 .223.27.335.427.177l2.896-2.896a.25.25 0 0 0 0-.354l-2.896-2.896a.25.25 0 0 0-.427.177V12H7.25A4.75 4.75 0 0 1 2.5 7.25z\" fill=\"currentColor\"/>"
1383
+ },
1384
+ "iterations-24": {
1385
+ "body": "<path d=\"M2.5 10.5a8 8 0 1 1 16 0a.75.75 0 0 0 1.5 0a9.5 9.5 0 1 0-9.5 9.5h10.94l-2.72 2.72a.75.75 0 1 0 1.06 1.06l3.735-3.735c.44-.439.44-1.151 0-1.59L19.78 14.72a.75.75 0 0 0-1.06 1.06l2.72 2.72H10.5a8 8 0 0 1-8-8z\" fill=\"currentColor\"/>",
1386
+ "width": 24,
1387
+ "height": 24
1388
+ },
1381
1389
  "jersey": {
1382
1390
  "body": "<path fill-rule=\"evenodd\" d=\"M4.5 6l-.5.5v5l.5.5h2l.5-.5v-5L6.5 6h-2zM6 11H5V7h1v4zm6.27-7.25C12.05 2.37 11.96 1.12 12 0H9.02c0 .27-.13.48-.39.69c-.25.2-.63.3-1.13.3c-.5 0-.88-.09-1.13-.3c-.23-.2-.36-.42-.36-.69H3c.05 1.13-.03 2.38-.25 3.75C2.55 5.13 1.95 5.88 1 6v9c.02.27.11.48.31.69c.2.21.42.3.69.31h11c.27-.02.48-.11.69-.31c.21-.2.3-.42.31-.69V6c-.95-.13-1.53-.88-1.75-2.25h.02zM13 15H2V7c.89-.5 1.48-1.25 1.72-2.25S4.03 2.5 4 1h1c-.02.78.16 1.47.52 2.06c.36.58 1.02.89 2 .94c.98-.02 1.64-.33 2-.94c.36-.59.5-1.28.48-2.06h1c.02 1.42.13 2.55.33 3.38c.2.81.69 2 1.67 2.63v8V15zM8.5 6l-.5.5v5l.5.5h2l.5-.5v-5l-.5-.5h-2zm1.5 5H9V7h1v4z\" fill=\"currentColor\"/>",
1383
1391
  "width": 14,
@@ -2118,9 +2126,6 @@
2118
2126
  "width": 24,
2119
2127
  "height": 24
2120
2128
  },
2121
- "select-single-16": {
2122
- "body": "<path d=\"M5.06 7.356l2.795 2.833c.08.081.21.081.29 0l2.794-2.833c.13-.131.038-.356-.145-.356H5.206c-.183 0-.275.225-.145.356z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" d=\"M1 2.75C1 1.784 1.784 1 2.75 1h10.5c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25V2.75zm1.75-.25a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25H2.75z\" fill=\"currentColor\"/>"
2123
- },
2124
2129
  "server": {
2125
2130
  "body": "<path fill-rule=\"evenodd\" d=\"M11 6H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1zM2 9H1V7h1v2zm2 0H3V7h1v2zm2 0H5V7h1v2zm2 0H7V7h1v2zm3-8H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM2 4H1V2h1v2zm2 0H3V2h1v2zm2 0H5V2h1v2zm2 0H7V2h1v2zm3-1h-1V2h1v1zm0 8H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm-9 3H1v-2h1v2zm2 0H3v-2h1v2zm2 0H5v-2h1v2zm2 0H7v-2h1v2z\" fill=\"currentColor\"/>",
2126
2131
  "width": 12,
@@ -2239,6 +2244,9 @@
2239
2244
  "width": 24,
2240
2245
  "height": 24
2241
2246
  },
2247
+ "single-select-16": {
2248
+ "body": "<path d=\"M5.06 7.356l2.795 2.833c.08.081.21.081.29 0l2.794-2.833c.13-.131.038-.356-.145-.356H5.206c-.183 0-.275.225-.145.356z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" d=\"M1 2.75C1 1.784 1.784 1 2.75 1h10.5c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25V2.75zm1.75-.25a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25H2.75z\" fill=\"currentColor\"/>"
2249
+ },
2242
2250
  "single-select-24": {
2243
2251
  "body": "<path d=\"M7.854 10.854l3.792 3.792a.5.5 0 0 0 .708 0l3.793-3.792a.5.5 0 0 0-.354-.854H8.207a.5.5 0 0 0-.353.854z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" d=\"M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25V3.75zm1.75-.25a.25.25 0 0 0-.25.25v16.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25H3.75z\" fill=\"currentColor\"/>",
2244
2252
  "width": 24,
@@ -2766,6 +2774,9 @@
2766
2774
  "repo-pull": {
2767
2775
  "parent": "repo-pull-16"
2768
2776
  },
2777
+ "select-single-16": {
2778
+ "parent": "single-select-16"
2779
+ },
2769
2780
  "trashcan-16": {
2770
2781
  "parent": "trash-16"
2771
2782
  },