@ainyc/canonry 1.10.1 → 1.12.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/README.md +27 -3
- package/assets/apple-touch-icon.png +0 -0
- package/assets/assets/index-BEsueXzg.css +1 -0
- package/assets/assets/index-Bol7Z6qk.js +243 -0
- package/assets/favicon-32.png +0 -0
- package/assets/favicon.svg +24 -0
- package/assets/index.html +7 -3
- package/dist/{chunk-2DC7RBXJ.js → chunk-O4HLQBL7.js} +324 -106
- package/dist/cli.js +114 -17
- package/dist/index.d.ts +20 -0
- package/dist/index.js +1 -1
- package/package.json +6 -6
- package/assets/assets/index-BDoQOjXO.js +0 -243
- package/assets/assets/index-Dhvjw6Lo.css +0 -1
|
Binary file
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" role="img" aria-labelledby="title desc">
|
|
2
|
+
<title id="title">Canonry canary</title>
|
|
3
|
+
<desc id="desc">A cute red canary mascot for the Canonry logo and favicon.</desc>
|
|
4
|
+
<g fill="none" stroke-linecap="round" stroke-linejoin="round">
|
|
5
|
+
<g fill="#D93F45" stroke="#8A171E" stroke-width="2.6">
|
|
6
|
+
<circle cx="25" cy="16" r="5.5" />
|
|
7
|
+
<circle cx="32" cy="12.5" r="6" />
|
|
8
|
+
<circle cx="39" cy="16" r="5.5" />
|
|
9
|
+
<ellipse cx="21.5" cy="34" rx="6.5" ry="10.5" transform="rotate(-18 21.5 34)" fill="#B82931" />
|
|
10
|
+
<ellipse cx="42.5" cy="34" rx="6.5" ry="10.5" transform="rotate(18 42.5 34)" fill="#B82931" />
|
|
11
|
+
<ellipse cx="32" cy="34" rx="16.5" ry="18.5" />
|
|
12
|
+
</g>
|
|
13
|
+
<ellipse cx="27.5" cy="26.5" rx="4.6" ry="6.2" fill="#FFB0AE" opacity=".2" />
|
|
14
|
+
<ellipse cx="32" cy="39.5" rx="11.5" ry="12.5" fill="#FF8E8B" opacity=".24" />
|
|
15
|
+
<circle cx="23.2" cy="35.5" r="2" fill="#FFB8B2" opacity=".7" />
|
|
16
|
+
<circle cx="40.8" cy="35.5" r="2" fill="#FFB8B2" opacity=".7" />
|
|
17
|
+
<path d="M32 30.5 27.8 33.9 32 37.1 36.2 33.9Z" fill="#F39A31" stroke="#8A171E" stroke-width="2" />
|
|
18
|
+
<circle cx="27.2" cy="28.6" r="2.8" fill="#2C2412" />
|
|
19
|
+
<circle cx="36.8" cy="28.6" r="2.8" fill="#2C2412" />
|
|
20
|
+
<circle cx="26.4" cy="27.7" r="0.9" fill="#FFF8E2" />
|
|
21
|
+
<circle cx="36" cy="27.7" r="0.9" fill="#FFF8E2" />
|
|
22
|
+
<path d="M26 53.5v3.5m0 0-2 2m2-2 2 2m10-5.5v3.5m0 0-2 2m2-2 2 2" stroke="#DB8B2B" stroke-width="2.4" />
|
|
23
|
+
</g>
|
|
24
|
+
</svg>
|
package/assets/index.html
CHANGED
|
@@ -3,15 +3,19 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<meta name="theme-color" content="#10141C" />
|
|
6
7
|
<meta
|
|
7
8
|
name="description"
|
|
8
9
|
content="Canonry is the AINYC monitoring dashboard for answer visibility and technical readiness."
|
|
9
10
|
/>
|
|
11
|
+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
12
|
+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png" />
|
|
13
|
+
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
|
10
14
|
<title>Canonry</title>
|
|
11
|
-
<script type="module" crossorigin src="/assets/index-
|
|
12
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
15
|
+
<script type="module" crossorigin src="/assets/index-Bol7Z6qk.js"></script>
|
|
16
|
+
<link rel="stylesheet" crossorigin href="/assets/index-BEsueXzg.css">
|
|
13
17
|
</head>
|
|
14
18
|
<body>
|
|
15
19
|
<div id="root"></div>
|
|
16
20
|
</body>
|
|
17
|
-
|
|
21
|
+
</html>
|