@rokkit/icons 1.0.0-next.98 → 1.0.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.
Files changed (63) hide show
  1. package/README.md +104 -1
  2. package/lib/app/icons.json +114 -114
  3. package/lib/app/index.d.ts +6 -6
  4. package/lib/app/index.js +8 -8
  5. package/lib/app/index.mjs +5 -5
  6. package/lib/app/package.json +1 -2
  7. package/lib/app.json +2 -2
  8. package/lib/auth/icons.json +363 -45
  9. package/lib/auth/index.d.ts +6 -6
  10. package/lib/auth/index.js +8 -8
  11. package/lib/auth/index.mjs +5 -5
  12. package/lib/auth/package.json +1 -2
  13. package/lib/auth.json +333 -15
  14. package/lib/base/icons.json +294 -207
  15. package/lib/base/index.d.ts +6 -6
  16. package/lib/base/index.js +8 -8
  17. package/lib/base/index.mjs +5 -5
  18. package/lib/base/package.json +1 -2
  19. package/lib/base.json +98 -11
  20. package/lib/glyph/icons.json +1931 -0
  21. package/lib/glyph/index.d.ts +8 -0
  22. package/lib/glyph/index.js +9 -0
  23. package/lib/glyph/index.mjs +6 -0
  24. package/lib/{components → glyph}/package.json +3 -4
  25. package/lib/glyph.json +1931 -0
  26. package/lib/light/icons.json +21 -21
  27. package/lib/light/index.d.ts +6 -6
  28. package/lib/light/index.js +8 -8
  29. package/lib/light/index.mjs +5 -5
  30. package/lib/light/package.json +1 -2
  31. package/lib/light.json +2 -2
  32. package/lib/semantic/chars.json +1 -0
  33. package/lib/semantic/icons.json +1196 -0
  34. package/lib/semantic/index.d.ts +8 -0
  35. package/lib/semantic/index.js +9 -0
  36. package/lib/semantic/index.mjs +6 -0
  37. package/lib/semantic/info.json +1 -0
  38. package/lib/semantic/metadata.json +1 -0
  39. package/lib/semantic/package.json +24 -0
  40. package/lib/semantic.json +1196 -0
  41. package/lib/solid/icons.json +42 -42
  42. package/lib/solid/index.d.ts +6 -6
  43. package/lib/solid/index.js +8 -8
  44. package/lib/solid/index.mjs +5 -5
  45. package/lib/solid/package.json +1 -2
  46. package/lib/solid.json +2 -2
  47. package/lib/twotone/icons.json +18 -18
  48. package/lib/twotone/index.d.ts +6 -6
  49. package/lib/twotone/index.js +8 -8
  50. package/lib/twotone/index.mjs +5 -5
  51. package/lib/twotone/package.json +1 -2
  52. package/lib/twotone.json +2 -2
  53. package/package.json +34 -32
  54. package/lib/components/icons.json +0 -92
  55. package/lib/components/index.d.ts +0 -8
  56. package/lib/components/index.js +0 -9
  57. package/lib/components/index.mjs +0 -6
  58. package/lib/components.json +0 -92
  59. package/src/convert.js +0 -96
  60. package/src/index.js +0 -8
  61. /package/lib/{components → glyph}/chars.json +0 -0
  62. /package/lib/{components → glyph}/info.json +0 -0
  63. /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/auth/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' assert { 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 };
@@ -5,7 +5,6 @@
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",
7
7
  "types": "index.d.ts",
8
- "bugs": "https://github.com/jerrythomas/rokkit/issues",
9
8
  "homepage": "https://github.com/jerrythomas/rokkit",
10
9
  "exports": {
11
10
  "./*": "./*",
@@ -20,6 +19,6 @@
20
19
  "icons": "icons.json"
21
20
  },
22
21
  "dependencies": {
23
- "@iconify/types": "^2.0.0"
22
+ "@iconify/types": "*"
24
23
  }
25
24
  }