@voidzero-dev/vitepress-theme 0.0.17 → 0.0.18

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 (48) hide show
  1. package/dist/_virtual/_/plugin-vue/export-helper.js +11 -0
  2. package/dist/assets/cta-background-CgYtVhnO.jpg +1 -0
  3. package/dist/assets/cta-background.jpg +1 -0
  4. package/dist/{style.css → index.css} +14 -11
  5. package/dist/index.d.ts +2 -0
  6. package/dist/index.js +3 -6544
  7. package/dist/vitepress/assets/cta-background.js +5 -0
  8. package/dist/vitepress/components/Eyebrow.js +18 -0
  9. package/dist/vitepress/components/Footer.js +72 -0
  10. package/dist/vitepress/components/Header.js +34 -0
  11. package/dist/vitepress/components/RiveAnimation.js +117 -0
  12. package/dist/vitepress/components/Terminal.js +161 -0
  13. package/dist/vitepress/components/icons/VZIconBluesky.js +21 -0
  14. package/dist/vitepress/components/icons/VZIconGitHub.js +21 -0
  15. package/dist/vitepress/components/icons/VZIconLogo.js +24 -0
  16. package/dist/vitepress/components/icons/VZIconTwitter.js +21 -0
  17. package/dist/vitepress/components/terminal-animations/TerminalAnimation1.js +37 -0
  18. package/dist/vitepress/components/terminal-animations/TerminalAnimation2.js +44 -0
  19. package/dist/vitepress/components/terminal-animations/TerminalAnimation3.js +37 -0
  20. package/dist/vitepress/components/terminal-animations/TerminalAnimation4.js +37 -0
  21. package/dist/vitepress/components/terminal-animations/TerminalAnimation5.js +37 -0
  22. package/dist/vitepress/components/terminal-animations/TerminalAnimation6.js +37 -0
  23. package/dist/vitepress/index.d.ts +34 -0
  24. package/dist/vitepress/index.js +21 -0
  25. package/package.json +14 -22
  26. package/assets/checkmark.svg +0 -1
  27. package/assets/primary-button-background.jpg +0 -0
  28. package/assets/terminal-background.jpg +0 -0
  29. package/components/Eyebrow.vue +0 -11
  30. package/components/Footer.vue +0 -44
  31. package/components/Header.vue +0 -38
  32. package/components/RiveAnimation.vue +0 -144
  33. package/components/Terminal.vue +0 -165
  34. package/components/terminal-animations/TerminalAnimation1.vue +0 -54
  35. package/components/terminal-animations/TerminalAnimation2.vue +0 -59
  36. package/components/terminal-animations/TerminalAnimation3.vue +0 -46
  37. package/components/terminal-animations/TerminalAnimation4.vue +0 -50
  38. package/components/terminal-animations/TerminalAnimation5.vue +0 -51
  39. package/components/terminal-animations/TerminalAnimation6.vue +0 -55
  40. package/composables/useTypewriter.ts +0 -43
  41. package/dist/assets/terminal-background.jpg +0 -0
  42. package/dist/index.js.map +0 -1
  43. package/fonts/APK-Protocol-Medium.woff2 +0 -0
  44. package/fonts/KHTeka-Medium.woff2 +0 -0
  45. package/fonts/KHTeka-Regular.woff2 +0 -0
  46. package/fonts/KHTekaMono-Medium.woff2 +0 -0
  47. package/fonts/KHTekaMono-Regular.woff2 +0 -0
  48. package/style.css +0 -343
@@ -0,0 +1,11 @@
1
+ //#region \0/plugin-vue/export-helper
2
+ var export_helper_default = (sfc, props) => {
3
+ const target = sfc.__vccOpts || sfc;
4
+ for (const [key, val] of props) {
5
+ target[key] = val;
6
+ }
7
+ return target;
8
+ };
9
+
10
+ //#endregion
11
+ export { export_helper_default as default };
@@ -0,0 +1 @@
1
+ PLACEHOLDER - Replace with actual cta-background.jpg from viteplus.dev repository
@@ -0,0 +1 @@
1
+ PLACEHOLDER - Replace with actual cta-background.jpg from viteplus.dev repository
@@ -1,9 +1,8 @@
1
1
  /**
2
2
  * Shared theme styles
3
3
  *
4
- * Usage in consuming project:
5
- * @import "@voidzero-dev/vitepress-theme/style.css";
6
- * @import "tailwindcss" source(".") source("../../node_modules/@voidzero-dev/vitepress-theme/components");
4
+ * NOTE: This file does NOT import Tailwind itself.
5
+ * The consuming project must import Tailwind first, then this file.
7
6
  */
8
7
 
9
8
  @plugin "@tailwindcss/typography";
@@ -14,31 +13,31 @@
14
13
  @font-face {
15
14
  font-family: 'APK Protocol';
16
15
  font-weight: 500;
17
- src: url('./fonts/APK-Protocol-Medium.woff2') format('woff2');
16
+ src: url('fonts/APK-Protocol-Medium.woff2') format('woff2');
18
17
  }
19
18
 
20
19
  @font-face {
21
20
  font-family: 'KH Teka';
22
21
  font-weight: 400;
23
- src: url('./fonts/KHTeka-Regular.woff2') format('woff2');
22
+ src: url('fonts/KHTeka-Regular.woff2') format('woff2');
24
23
  }
25
24
 
26
25
  @font-face {
27
26
  font-family: 'KH Teka';
28
27
  font-weight: 500;
29
- src: url('./fonts/KHTeka-Medium.woff2') format('woff2');
28
+ src: url('fonts/KHTeka-Medium.woff2') format('woff2');
30
29
  }
31
30
 
32
31
  @font-face {
33
32
  font-family: 'KH Teka Mono';
34
33
  font-weight: 400;
35
- src: url('./fonts/KHTekaMono-Regular.woff2') format('woff2');
34
+ src: url('fonts/KHTekaMono-Regular.woff2') format('woff2');
36
35
  }
37
36
 
38
37
  @font-face {
39
38
  font-family: 'KH Teka Mono';
40
39
  font-weight: 500;
41
- src: url('./fonts/KHTekaMono-Medium.woff2') format('woff2');
40
+ src: url('fonts/KHTekaMono-Medium.woff2') format('woff2');
42
41
  }
43
42
 
44
43
  @custom-variant dark (&:where([data-theme=dark], [data-theme=dark] *));
@@ -73,7 +72,7 @@
73
72
  --color-sea: #002624;
74
73
  }
75
74
 
76
- @layer components {
75
+ @layer base {
77
76
 
78
77
  h1 {
79
78
  @apply text-5xl md:text-6xl font-medium font-heading text-balance text-primary md:leading-[4.2rem] tracking-tighter;
@@ -107,6 +106,10 @@
107
106
  @apply font-mono text-space text-base px-1.5 py-0.5 outline outline-stroke rounded dark:outline-grey dark:text-white;
108
107
  }
109
108
 
109
+ }
110
+
111
+ @layer components {
112
+
110
113
  .wrapper {
111
114
  @apply max-w-[calc(100vw-2rem)] xl:max-w-[80rem] mx-auto border-l border-r border-stroke dark:border-nickel divide-stroke dark:divide-nickel relative overflow-x-clip;
112
115
  }
@@ -175,7 +178,7 @@
175
178
  right: -3px;
176
179
  bottom: -3px;
177
180
  background-color: #CCCCCC;
178
- background-image: url('./assets/primary-button-background.jpg');
181
+ background-image: url('assets/primary-button-background.jpg');
179
182
  background-size: 150% 150%;
180
183
  background-position: center;
181
184
  border-radius: calc(0.5rem + 3px);
@@ -270,7 +273,7 @@
270
273
  transform: translateY(-50%);
271
274
  width: 20px;
272
275
  height: 20px;
273
- background-image: url('./assets/checkmark.svg');
276
+ background-image: url('assets/checkmark.svg');
274
277
  background-size: contain;
275
278
  background-repeat: no-repeat;
276
279
  background-position: center;
@@ -0,0 +1,2 @@
1
+ import { VPTheme } from "./vitepress/index.js";
2
+ export { VPTheme, VPTheme as default };