create-prisma-php-app 1.3.7 → 1.3.9
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/dist/src/app/index.php
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
<?php $relativePath; ?>
|
|
3
3
|
<header class="px-4 lg:px-6 h-14 flex items-center">
|
|
4
4
|
<a class="flex items-center justify-center" href="#">
|
|
5
|
-
<img class="h-10 w-10" src="assets/images/prisma-php.png" alt="Prisma PHP">
|
|
5
|
+
<img class="h-10 w-10" src="<?= $baseUrl ?>assets/images/prisma-php.png" alt="Prisma PHP">
|
|
6
6
|
<span class="sr-only">Prisma PHP</span>
|
|
7
7
|
</a>
|
|
8
8
|
<nav class="ml-auto flex gap-4 sm:gap-6">
|
|
9
9
|
<a class="text-sm font-medium hover:underline underline-offset-4" href="#">
|
|
10
10
|
Features
|
|
11
11
|
</a>
|
|
12
|
-
<a class="text-sm font-medium hover:underline underline-offset-4" href="
|
|
12
|
+
<a class="text-sm font-medium hover:underline underline-offset-4" href="https://prismaphp.tsnc.tech/docs?doc=get-started" target="_blank">
|
|
13
13
|
Documentation
|
|
14
14
|
</a>
|
|
15
15
|
<a class="text-sm font-medium hover:underline underline-offset-4" href="#">
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
<div class="px-4 md:px-6">
|
|
23
23
|
<div class="flex flex-col items-center space-y-4 text-center">
|
|
24
24
|
<h1 class="text-3xl font-bold tracking-tighter sm:text-4xl md:text-5xl lg:text-6xl/none flex items-center gap-3 justify-center">
|
|
25
|
-
Welcome to Prisma PHP <img class="h-20 w-20" src="assets/images/prisma-php.png" alt="Prisma PHP">
|
|
25
|
+
Welcome to Prisma PHP <img class="h-20 w-20" src="<?= $baseUrl ?>assets/images/prisma-php.png" alt="Prisma PHP">
|
|
26
26
|
</h1>
|
|
27
27
|
<p class="mx-auto max-w-[700px] text-gray-500 md:text-xl dark:text-gray-400">
|
|
28
28
|
The Next Generation ORM for PHP
|
package/dist/src/app/js/index.js
CHANGED
|
@@ -138,7 +138,7 @@ class StateManager {
|
|
|
138
138
|
*
|
|
139
139
|
* @param {*} update
|
|
140
140
|
*/
|
|
141
|
-
setState(update, saveToStorage =
|
|
141
|
+
setState(update, saveToStorage = false) {
|
|
142
142
|
this.state = { ...this.state, ...update };
|
|
143
143
|
this.listeners.forEach((listener) => listener(this.state));
|
|
144
144
|
if (saveToStorage) {
|