@ansiversa/components 0.0.167 → 0.0.169

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/index.ts CHANGED
@@ -43,6 +43,8 @@ export { default as AvAiAssist } from "./src/components/Ai/AvAiAssist.astro";
43
43
  export { default as FaqManager } from "./src/components/Admin/FaqManager.astro";
44
44
  export { AvBookmarkButton, AvBookmarksEmpty, AvBookmarksList } from "./src/components/Bookmarks";
45
45
  export { AppLogo } from "./src/Logo";
46
+ export { AppLogoExpenseTracker } from "./src/Logo";
47
+ export { AppLogoJobTracker } from "./src/Logo";
46
48
  export type { AppLogoProps } from "./src/Logo";
47
49
  export { default as ResumeBuilderShell } from './src/resume-templates/ResumeBuilderShell.astro';
48
50
  export { default as ResumeTemplateClassic } from './src/resume-templates/ResumeTemplateClassic.astro';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ansiversa/components",
3
- "version": "0.0.167",
3
+ "version": "0.0.169",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  import AppLogoDefault from "./logos/AppLogoDefault.astro";
3
+ import AppLogoExpenseTracker from "./logos/AppLogoExpenseTracker.astro";
3
4
  import AppLogoFlashNote from "./logos/AppLogoFlashNote.astro";
5
+ import AppLogoJobTracker from "./logos/AppLogoJobTracker.astro";
4
6
  import AppLogoPortfolioCreator from "./logos/AppLogoPortfolioCreator.astro";
5
7
  import AppLogoQuiz from "./logos/AppLogoQuiz.astro";
6
8
  import AppLogoResumeBuilder from "./logos/AppLogoResumeBuilder.astro";
@@ -26,7 +28,9 @@ const logoRegistry = {
26
28
  "resume-builder": AppLogoResumeBuilder,
27
29
  "portfolio-creator": AppLogoPortfolioCreator,
28
30
  flashnote: AppLogoFlashNote,
31
+ "job-tracker": AppLogoJobTracker,
29
32
  "study-planner": AppLogoStudyPlanner,
33
+ "expense-tracker": AppLogoExpenseTracker,
30
34
  } as const;
31
35
 
32
36
  const Logo = logoRegistry[appId as keyof typeof logoRegistry] ?? AppLogoDefault;
package/src/Logo/index.ts CHANGED
@@ -1,6 +1,8 @@
1
1
  export { default as AppLogo } from "./AppLogo.astro";
2
2
  export { default as AppLogoDefault } from "./logos/AppLogoDefault.astro";
3
+ export { default as AppLogoExpenseTracker } from "./logos/AppLogoExpenseTracker.astro";
3
4
  export { default as AppLogoFlashNote } from "./logos/AppLogoFlashNote.astro";
5
+ export { default as AppLogoJobTracker } from "./logos/AppLogoJobTracker.astro";
4
6
  export { default as AppLogoPortfolioCreator } from "./logos/AppLogoPortfolioCreator.astro";
5
7
  export { default as AppLogoQuiz } from "./logos/AppLogoQuiz.astro";
6
8
  export { default as AppLogoResumeBuilder } from "./logos/AppLogoResumeBuilder.astro";
@@ -0,0 +1,26 @@
1
+ ---
2
+ import type { AppLogoGlyphProps } from "./AppLogoQuiz.astro";
3
+
4
+ const { size = 18, class: className, title } = Astro.props as AppLogoGlyphProps;
5
+ ---
6
+
7
+ <svg
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ viewBox="0 0 24 24"
10
+ width={size}
11
+ height={size}
12
+ fill="none"
13
+ stroke="currentColor"
14
+ stroke-width="1.75"
15
+ stroke-linecap="round"
16
+ stroke-linejoin="round"
17
+ class={className}
18
+ aria-hidden={title ? undefined : "true"}
19
+ role={title ? "img" : "presentation"}
20
+ >
21
+ {title ? <title>{title}</title> : null}
22
+ <path d="M4 7.5A2.5 2.5 0 0 1 6.5 5h11A2.5 2.5 0 0 1 20 7.5v9A2.5 2.5 0 0 1 17.5 19h-11A2.5 2.5 0 0 1 4 16.5Z" />
23
+ <path d="M4 9.5h16" />
24
+ <path d="M12 11.5v5" />
25
+ <path d="m9.8 14.3 2.2 2.2 2.2-2.2" />
26
+ </svg>
@@ -0,0 +1,26 @@
1
+ ---
2
+ import type { AppLogoGlyphProps } from "./AppLogoQuiz.astro";
3
+
4
+ const { size = 18, class: className, title } = Astro.props as AppLogoGlyphProps;
5
+ ---
6
+
7
+ <svg
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ viewBox="0 0 24 24"
10
+ width={size}
11
+ height={size}
12
+ fill="none"
13
+ stroke="currentColor"
14
+ stroke-width="1.75"
15
+ stroke-linecap="round"
16
+ stroke-linejoin="round"
17
+ class={className}
18
+ aria-hidden={title ? undefined : "true"}
19
+ role={title ? "img" : "presentation"}
20
+ >
21
+ {title ? <title>{title}</title> : null}
22
+ <path d="M7 6.5h10" />
23
+ <path d="M9 4.2h6" />
24
+ <rect x="4" y="5.8" width="16" height="14" rx="2.5" />
25
+ <path d="m8.7 13 2.1 2.1 4.5-4.6" />
26
+ </svg>
@@ -22,6 +22,10 @@ export const MINI_APP_REGISTRY: Record<string, MiniAppMeta> = {
22
22
  name: "FlashNote",
23
23
  links: [{ label: "Home", href: "/" }],
24
24
  },
25
+ "job-tracker": {
26
+ name: "Job Tracker",
27
+ links: [{ label: "Home", href: "/" }],
28
+ },
25
29
  "study-planner": {
26
30
  name: "Study Planner",
27
31
  links: [{ label: "Home", href: "/" }],