create-prisma-php-app 3.0.4 → 3.1.0
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/bootstrap.php +25 -12
- package/dist/src/Lib/ErrorHandler.php +194 -0
- package/dist/src/Lib/IncludeTracker.php +2 -41
- package/dist/src/Lib/PHPX/Exceptions/ComponentValidationException.php +49 -0
- package/dist/src/Lib/PHPX/PHPX.php +6 -11
- package/dist/src/Lib/PHPX/TemplateCompiler.php +61 -99
- package/dist/src/Lib/PrismaPHPSettings.php +0 -19
- package/dist/src/app/error.php +1 -1
- package/dist/src/app/js/index.js +1 -1
- package/package.json +1 -1
- package/dist/settings/html-events.json +0 -118
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
"beforexrselect",
|
|
3
|
-
"abort",
|
|
4
|
-
"beforeinput",
|
|
5
|
-
"beforematch",
|
|
6
|
-
"beforetoggle",
|
|
7
|
-
"blur",
|
|
8
|
-
"cancel",
|
|
9
|
-
"canplay",
|
|
10
|
-
"canplaythrough",
|
|
11
|
-
"change",
|
|
12
|
-
"click",
|
|
13
|
-
"close",
|
|
14
|
-
"contentvisibilityautostatechange",
|
|
15
|
-
"contextlost",
|
|
16
|
-
"contextmenu",
|
|
17
|
-
"contextrestored",
|
|
18
|
-
"cuechange",
|
|
19
|
-
"dblclick",
|
|
20
|
-
"drag",
|
|
21
|
-
"dragend",
|
|
22
|
-
"dragenter",
|
|
23
|
-
"dragleave",
|
|
24
|
-
"dragover",
|
|
25
|
-
"dragstart",
|
|
26
|
-
"drop",
|
|
27
|
-
"durationchange",
|
|
28
|
-
"emptied",
|
|
29
|
-
"ended",
|
|
30
|
-
"error",
|
|
31
|
-
"focus",
|
|
32
|
-
"formdata",
|
|
33
|
-
"input",
|
|
34
|
-
"invalid",
|
|
35
|
-
"keydown",
|
|
36
|
-
"keypress",
|
|
37
|
-
"keyup",
|
|
38
|
-
"load",
|
|
39
|
-
"loadeddata",
|
|
40
|
-
"loadedmetadata",
|
|
41
|
-
"loadstart",
|
|
42
|
-
"mousedown",
|
|
43
|
-
"mouseenter",
|
|
44
|
-
"mouseleave",
|
|
45
|
-
"mousemove",
|
|
46
|
-
"mouseout",
|
|
47
|
-
"mouseover",
|
|
48
|
-
"mouseup",
|
|
49
|
-
"mousewheel",
|
|
50
|
-
"pause",
|
|
51
|
-
"play",
|
|
52
|
-
"playing",
|
|
53
|
-
"progress",
|
|
54
|
-
"ratechange",
|
|
55
|
-
"reset",
|
|
56
|
-
"resize",
|
|
57
|
-
"scroll",
|
|
58
|
-
"securitypolicyviolation",
|
|
59
|
-
"seeked",
|
|
60
|
-
"seeking",
|
|
61
|
-
"select",
|
|
62
|
-
"slotchange",
|
|
63
|
-
"stalled",
|
|
64
|
-
"submit",
|
|
65
|
-
"suspend",
|
|
66
|
-
"timeupdate",
|
|
67
|
-
"toggle",
|
|
68
|
-
"volumechange",
|
|
69
|
-
"waiting",
|
|
70
|
-
"webkitanimationend",
|
|
71
|
-
"webkitanimationiteration",
|
|
72
|
-
"webkitanimationstart",
|
|
73
|
-
"webkittransitionend",
|
|
74
|
-
"wheel",
|
|
75
|
-
"auxclick",
|
|
76
|
-
"gotpointercapture",
|
|
77
|
-
"lostpointercapture",
|
|
78
|
-
"pointerdown",
|
|
79
|
-
"pointermove",
|
|
80
|
-
"pointerrawupdate",
|
|
81
|
-
"pointerup",
|
|
82
|
-
"pointercancel",
|
|
83
|
-
"pointerover",
|
|
84
|
-
"pointerout",
|
|
85
|
-
"pointerenter",
|
|
86
|
-
"pointerleave",
|
|
87
|
-
"selectstart",
|
|
88
|
-
"selectionchange",
|
|
89
|
-
"animationend",
|
|
90
|
-
"animationiteration",
|
|
91
|
-
"animationstart",
|
|
92
|
-
"transitionrun",
|
|
93
|
-
"transitionstart",
|
|
94
|
-
"transitionend",
|
|
95
|
-
"transitioncancel",
|
|
96
|
-
"copy",
|
|
97
|
-
"cut",
|
|
98
|
-
"paste",
|
|
99
|
-
"command",
|
|
100
|
-
"scrollend",
|
|
101
|
-
"scrollsnapchange",
|
|
102
|
-
"scrollsnapchanging",
|
|
103
|
-
"readystatechange",
|
|
104
|
-
"pointerlockchange",
|
|
105
|
-
"pointerlockerror",
|
|
106
|
-
"beforecopy",
|
|
107
|
-
"beforecut",
|
|
108
|
-
"beforepaste",
|
|
109
|
-
"freeze",
|
|
110
|
-
"prerenderingchange",
|
|
111
|
-
"resume",
|
|
112
|
-
"search",
|
|
113
|
-
"visibilitychange",
|
|
114
|
-
"fullscreenchange",
|
|
115
|
-
"fullscreenerror",
|
|
116
|
-
"webkitfullscreenchange",
|
|
117
|
-
"webkitfullscreenerror"
|
|
118
|
-
]
|