create-apexjs 0.5.0 → 0.5.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-apexjs",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Scaffold a new Apex JS app",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"templates"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"citty": "^0.
|
|
32
|
+
"citty": "^0.2.2"
|
|
33
33
|
},
|
|
34
34
|
"engines": {
|
|
35
35
|
"node": ">=20.19"
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
pages/loading.alpine — the client-side navigation loading boundary.
|
|
3
|
+
|
|
4
|
+
Apex renders this once and shows it in the page region during a navigation that
|
|
5
|
+
takes longer than a moment (e.g. a slow loader). It's plain, presentational
|
|
6
|
+
HTML — no loader, no interactivity needed.
|
|
7
|
+
-->
|
|
8
|
+
<template x-data>
|
|
9
|
+
<div class="flex flex-col items-center justify-center gap-3 py-24 text-center">
|
|
10
|
+
<div class="size-8 animate-spin rounded-full border-2 border-outline border-t-primary dark:border-outline-dark dark:border-t-primary-dark"></div>
|
|
11
|
+
<p class="text-sm text-on-surface/70 dark:text-on-surface-dark/70">Loading…</p>
|
|
12
|
+
</div>
|
|
13
|
+
</template>
|