@edgedev/create-edge-app 1.1.16 → 1.1.17
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/assets/css/tailwind.css +7 -0
- package/package.json +9 -2
package/assets/css/tailwind.css
CHANGED
|
@@ -104,4 +104,11 @@
|
|
|
104
104
|
body {
|
|
105
105
|
@apply bg-background text-foreground;
|
|
106
106
|
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/* Fix: stop Uno's per-property `translate:` from stacking with Tailwind's `transform` */
|
|
110
|
+
.fixed.left-1\/2.top-1\/2.-translate-x-1\/2.-translate-y-1\/2 {
|
|
111
|
+
translate: initial !important; /* or `none` */
|
|
112
|
+
--un-translate-x: initial !important;
|
|
113
|
+
--un-translate-y: initial !important;
|
|
107
114
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edgedev/create-edge-app",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.17",
|
|
4
4
|
"description": "Create Edge Starter App",
|
|
5
5
|
"bin": {
|
|
6
6
|
"create-edge-app": "./bin/cli.js"
|
|
@@ -22,21 +22,28 @@
|
|
|
22
22
|
"@capacitor/push-notifications": "5.1.0",
|
|
23
23
|
"@chenfengyuan/vue-number-input": "2",
|
|
24
24
|
"@edgedev/firebase": "latest",
|
|
25
|
+
"@guolao/vue-monaco-editor": "^1.5.5",
|
|
25
26
|
"@tiptap/extension-image": "^2.11.5",
|
|
26
27
|
"@tiptap/extension-text-style": "^2.11.5",
|
|
27
28
|
"@tiptap/extension-underline": "^3.4.1",
|
|
28
29
|
"@tiptap/starter-kit": "^2.11.5",
|
|
29
30
|
"@tiptap/vue-3": "^2.11.5",
|
|
31
|
+
"@unocss/preset-wind4": "^66.5.1",
|
|
32
|
+
"@unocss/runtime": "^66.5.1",
|
|
30
33
|
"@unovis/ts": "^1.5.1",
|
|
31
34
|
"@unovis/vue": "^1.5.1",
|
|
32
35
|
"@vee-validate/zod": "^4.15.0",
|
|
33
36
|
"@vueuse/core": "10.4.1",
|
|
34
37
|
"class-variance-authority": "^0.7.1",
|
|
35
38
|
"clsx": "^2.1.1",
|
|
36
|
-
"
|
|
39
|
+
"dompurify": "^3.2.7",
|
|
40
|
+
"embla-carousel": "^8.5.2",
|
|
41
|
+
"embla-carousel-autoplay": "^8.6.0",
|
|
42
|
+
"embla-carousel-fade": "^8.6.0",
|
|
37
43
|
"embla-carousel-vue": "^8.5.2",
|
|
38
44
|
"lucide-vue-next": "^0.394.0",
|
|
39
45
|
"maska": "2.1.9",
|
|
46
|
+
"papaparse": "^5.5.3",
|
|
40
47
|
"reka-ui": "^2.1.0",
|
|
41
48
|
"tailwind-merge": "^2.6.0",
|
|
42
49
|
"tailwindcss-animate": "^1.0.7",
|