@illuma-ai/icons 2.1.0 → 2.3.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/dist/brand/Terminal.d.ts +25 -0
- package/dist/brand/ThinkingOrb.d.ts +16 -0
- package/dist/brand/index.d.ts +4 -0
- package/dist/brand.cjs +53 -0
- package/dist/brand.es.js +178 -0
- package/dist/files/icons.generated.d.ts +30 -0
- package/dist/files.cjs +45 -1
- package/dist/files.es.js +101 -30
- package/package.json +7 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@illuma-ai/icons",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "Illuma icon system:
|
|
3
|
+
"version": "2.3.0",
|
|
4
|
+
"description": "Illuma icon system: file-type icons (static + animated GIF), hover-animated nav icons, terminal logo, and a WebGL thinking orb.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Illuma AI",
|
|
@@ -24,6 +24,11 @@
|
|
|
24
24
|
"types": "./dist/animated/index.d.ts",
|
|
25
25
|
"import": "./dist/animated.es.js",
|
|
26
26
|
"require": "./dist/animated.cjs"
|
|
27
|
+
},
|
|
28
|
+
"./brand": {
|
|
29
|
+
"types": "./dist/brand/index.d.ts",
|
|
30
|
+
"import": "./dist/brand.es.js",
|
|
31
|
+
"require": "./dist/brand.cjs"
|
|
27
32
|
}
|
|
28
33
|
},
|
|
29
34
|
"files": [
|