@rokkit/icons 1.0.0-next.141 → 1.0.0-next.142

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.
Files changed (61) hide show
  1. package/lib/app/icons.json +114 -114
  2. package/lib/app/index.d.ts +6 -6
  3. package/lib/app/index.js +8 -8
  4. package/lib/app/index.mjs +5 -5
  5. package/lib/app/package.json +22 -22
  6. package/lib/app.json +2 -2
  7. package/lib/auth/icons.json +363 -375
  8. package/lib/auth/index.d.ts +6 -6
  9. package/lib/auth/index.js +8 -8
  10. package/lib/auth/index.mjs +5 -5
  11. package/lib/auth/package.json +22 -22
  12. package/lib/auth.json +8 -20
  13. package/lib/base/icons.json +288 -288
  14. package/lib/base/index.d.ts +6 -6
  15. package/lib/base/index.js +8 -8
  16. package/lib/base/index.mjs +5 -5
  17. package/lib/base/package.json +22 -22
  18. package/lib/base.json +2 -2
  19. package/lib/glyph/icons.json +1919 -0
  20. package/lib/glyph/index.d.ts +8 -0
  21. package/lib/glyph/index.js +9 -0
  22. package/lib/glyph/index.mjs +6 -0
  23. package/lib/glyph/package.json +24 -0
  24. package/lib/glyph.json +1919 -0
  25. package/lib/light/icons.json +21 -21
  26. package/lib/light/index.d.ts +6 -6
  27. package/lib/light/index.js +8 -8
  28. package/lib/light/index.mjs +5 -5
  29. package/lib/light/package.json +22 -22
  30. package/lib/light.json +2 -2
  31. package/lib/semantic/chars.json +1 -0
  32. package/lib/semantic/icons.json +1136 -0
  33. package/lib/semantic/index.d.ts +8 -0
  34. package/lib/semantic/index.js +9 -0
  35. package/lib/semantic/index.mjs +6 -0
  36. package/lib/semantic/info.json +1 -0
  37. package/lib/semantic/metadata.json +1 -0
  38. package/lib/semantic/package.json +24 -0
  39. package/lib/semantic.json +1136 -0
  40. package/lib/solid/icons.json +42 -42
  41. package/lib/solid/index.d.ts +6 -6
  42. package/lib/solid/index.js +8 -8
  43. package/lib/solid/index.mjs +5 -5
  44. package/lib/solid/package.json +22 -22
  45. package/lib/solid.json +2 -2
  46. package/lib/twotone/icons.json +18 -18
  47. package/lib/twotone/index.d.ts +6 -6
  48. package/lib/twotone/index.js +8 -8
  49. package/lib/twotone/index.mjs +5 -5
  50. package/lib/twotone/package.json +22 -22
  51. package/lib/twotone.json +2 -2
  52. package/package.json +4 -4
  53. package/lib/components/icons.json +0 -155
  54. package/lib/components/index.d.ts +0 -8
  55. package/lib/components/index.js +0 -9
  56. package/lib/components/index.mjs +0 -6
  57. package/lib/components/package.json +0 -24
  58. package/lib/components.json +0 -155
  59. /package/lib/{components → glyph}/chars.json +0 -0
  60. /package/lib/{components → glyph}/info.json +0 -0
  61. /package/lib/{components → glyph}/metadata.json +0 -0
@@ -1,8 +1,8 @@
1
- import type { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars } from '@iconify/types'
1
+ import type { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars } from '@iconify/types';
2
2
 
3
- export { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars }
3
+ export { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars };
4
4
 
5
- export declare const icons: IconifyJSON
6
- export declare const info: IconifyInfo
7
- export declare const metadata: IconifyMetaData
8
- export declare const chars: IconifyChars
5
+ export declare const icons: IconifyJSON;
6
+ export declare const info: IconifyInfo;
7
+ export declare const metadata: IconifyMetaData;
8
+ export declare const chars: IconifyChars;
package/lib/base/index.js CHANGED
@@ -1,9 +1,9 @@
1
- const icons = require('./icons.json')
2
- const info = {}
3
- const metadata = {}
4
- const chars = {}
1
+ const icons = require('./icons.json');
2
+ const info = {};
3
+ const metadata = {};
4
+ const chars = {};
5
5
 
6
- exports.icons = icons
7
- exports.info = info
8
- exports.metadata = metadata
9
- exports.chars = chars
6
+ exports.icons = icons;
7
+ exports.info = info;
8
+ exports.metadata = metadata;
9
+ exports.chars = chars;
@@ -1,6 +1,6 @@
1
- import icons from './icons.json' with { type: 'json' }
1
+ import icons from './icons.json' with { type: 'json' };
2
2
 
3
- const info = {}
4
- const metadata = {}
5
- const chars = {}
6
- export { icons, info, metadata, chars }
3
+ const info = {};
4
+ const metadata = {};
5
+ const chars = {};
6
+ export { icons, info, metadata, chars };
@@ -1,24 +1,24 @@
1
1
  {
2
- "name": "@rokkit/base",
3
- "description": "base icon set in Iconify JSON format",
4
- "version": "1.0.0",
5
- "main": "index.js",
6
- "module": "index.mjs",
7
- "types": "index.d.ts",
8
- "homepage": "https://github.com/jerrythomas/rokkit",
9
- "exports": {
10
- "./*": "./*",
11
- ".": {
12
- "types": "./index.d.ts",
13
- "require": "./index.js",
14
- "import": "./index.mjs"
15
- },
16
- "./icons.json": "./icons.json"
17
- },
18
- "iconSet": {
19
- "icons": "icons.json"
20
- },
21
- "dependencies": {
22
- "@iconify/types": "*"
23
- }
2
+ "name": "@rokkit/base",
3
+ "description": "base icon set in Iconify JSON format",
4
+ "version": "1.0.0",
5
+ "main": "index.js",
6
+ "module": "index.mjs",
7
+ "types": "index.d.ts",
8
+ "homepage": "https://github.com/jerrythomas/rokkit",
9
+ "exports": {
10
+ "./*": "./*",
11
+ ".": {
12
+ "types": "./index.d.ts",
13
+ "require": "./index.js",
14
+ "import": "./index.mjs"
15
+ },
16
+ "./icons.json": "./icons.json"
17
+ },
18
+ "iconSet": {
19
+ "icons": "icons.json"
20
+ },
21
+ "dependencies": {
22
+ "@iconify/types": "*"
23
+ }
24
24
  }
package/lib/base.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "prefix": "base",
3
- "lastModified": 1773334675,
3
+ "lastModified": 1773761813,
4
4
  "icons": {
5
5
  "accordion-closed": {
6
6
  "body": "<path fill=\"currentColor\" d=\"M16.5 12 9 19.5l-1.05-1.05L14.4 12 7.95 5.55 9 4.5z\"/>"
@@ -287,4 +287,4 @@
287
287
  },
288
288
  "width": 24,
289
289
  "height": 24
290
- }
290
+ }