@ansiversa/components 0.0.167 → 0.0.168
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,7 @@ 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";
|
|
46
47
|
export type { AppLogoProps } from "./src/Logo";
|
|
47
48
|
export { default as ResumeBuilderShell } from './src/resume-templates/ResumeBuilderShell.astro';
|
|
48
49
|
export { default as ResumeTemplateClassic } from './src/resume-templates/ResumeTemplateClassic.astro';
|
package/package.json
CHANGED
package/src/Logo/AppLogo.astro
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
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";
|
|
4
5
|
import AppLogoPortfolioCreator from "./logos/AppLogoPortfolioCreator.astro";
|
|
5
6
|
import AppLogoQuiz from "./logos/AppLogoQuiz.astro";
|
|
@@ -27,6 +28,7 @@ const logoRegistry = {
|
|
|
27
28
|
"portfolio-creator": AppLogoPortfolioCreator,
|
|
28
29
|
flashnote: AppLogoFlashNote,
|
|
29
30
|
"study-planner": AppLogoStudyPlanner,
|
|
31
|
+
"expense-tracker": AppLogoExpenseTracker,
|
|
30
32
|
} as const;
|
|
31
33
|
|
|
32
34
|
const Logo = logoRegistry[appId as keyof typeof logoRegistry] ?? AppLogoDefault;
|
package/src/Logo/index.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
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";
|
|
4
5
|
export { default as AppLogoPortfolioCreator } from "./logos/AppLogoPortfolioCreator.astro";
|
|
5
6
|
export { default as AppLogoQuiz } from "./logos/AppLogoQuiz.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>
|