quasarwind 1.0.4 → 1.0.6

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 (28) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
  3. package/template/src/components/ExampleComponent.vue +76 -0
  4. package/{quasarwind → template}/src/layout/MainLayout.vue +0 -1
  5. package/quasarwind/src/components/ExampleComponent.vue +0 -74
  6. /package/{quasarwind → template}/.prettierrc +0 -0
  7. /package/{quasarwind → template}/.vscode/extensions.json +0 -0
  8. /package/{quasarwind → template}/.vscode/settings.json +0 -0
  9. /package/{quasarwind → template}/README.md +0 -0
  10. /package/{quasarwind → template}/eslint.config.js +0 -0
  11. /package/{quasarwind → template}/index.html +0 -0
  12. /package/{quasarwind → template}/package-lock.json +0 -0
  13. /package/{quasarwind → template}/package.json +0 -0
  14. /package/{quasarwind → template}/public/vite.svg +0 -0
  15. /package/{quasarwind → template}/src/App.vue +0 -0
  16. /package/{quasarwind → template}/src/assets/vue.svg +0 -0
  17. /package/{quasarwind → template}/src/css/app.css +0 -0
  18. /package/{quasarwind → template}/src/main.ts +0 -0
  19. /package/{quasarwind → template}/src/page/NotFound.vue +0 -0
  20. /package/{quasarwind → template}/src/router/index.ts +0 -0
  21. /package/{quasarwind → template}/src/router/routes.ts +0 -0
  22. /package/{quasarwind → template}/src/stores/example-store.ts +0 -0
  23. /package/{quasarwind → template}/src/vite-env.d.ts +0 -0
  24. /package/{quasarwind → template}/tsconfig.app.json +0 -0
  25. /package/{quasarwind → template}/tsconfig.json +0 -0
  26. /package/{quasarwind → template}/tsconfig.node.json +0 -0
  27. /package/{quasarwind → template}/types.d.ts +0 -0
  28. /package/{quasarwind → template}/vite.config.ts +0 -0
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # quasarwind
2
2
 
3
- 1. install
3
+ ### 1. install
4
4
  npm i -g quasarwind
5
- 2. execute cli
5
+ ### 2. execute cli
6
6
  quasarwind name_project
7
- 3. Follow instructions
7
+ ### 3. Follow instructions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quasarwind",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "CLI for generating custom project vite with Quasar and Tailwind",
5
5
  "bin": {
6
6
  "quasarwind": "bin/index.js"
@@ -0,0 +1,76 @@
1
+ <template>
2
+ <div>
3
+ <div class="pl-[10px] text-3xl font-bold underline text-white">
4
+ Hello world 1! - Example aplication
5
+ </div>
6
+
7
+ <div class="q-pa-md q-gutter-md grid grid-cols-4">
8
+ <q-card class="my-card">
9
+ <q-card-section>
10
+ {{ lorem }}
11
+ </q-card-section>
12
+ </q-card>
13
+
14
+ <q-card
15
+ class="my-card text-white"
16
+ style="background: radial-gradient(circle, #35a2ff 0%, #014a88 100%)"
17
+ >
18
+ <q-card-section>
19
+ <div class="text-h6">Our Changing Planet</div>
20
+ <div class="text-subtitle2">by John Doe</div>
21
+ </q-card-section>
22
+
23
+ <q-card-section class="q-pt-none">21323
24
+ {{ lorem }}
25
+ </q-card-section>
26
+ </q-card>
27
+
28
+ <q-card dark bordered class="bg-grey-9 my-card">
29
+ <q-card-section>
30
+ <div class="text-h6">Our Changing Planet</div>
31
+ <div class="text-subtitle2">by John Doe</div>
32
+ </q-card-section>
33
+
34
+ <q-separator dark inset />
35
+
36
+ <q-card-section>
37
+ {{ lorem }}
38
+ </q-card-section>
39
+ </q-card>
40
+
41
+ <q-card flat bordered class="my-card">
42
+ <q-card-section>
43
+ <div class="text-h6">Our Changing Planet</div>
44
+ </q-card-section>
45
+
46
+ <q-card-section class="q-pt-none">
47
+ PPPP Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
48
+ tempor incididunt ut labore et dolore magna aliqua. dfsdfsadfsdfsddfsdfsdfsd
49
+ </q-card-section>
50
+
51
+ <q-separator inset />
52
+
53
+ <q-card-section>
54
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
55
+ tempor incididunt ut labore et dolore magna aliqua. sdfs
56
+ </q-card-section>
57
+ </q-card>
58
+ </div>
59
+
60
+ <q-btn class="q-ml-md" label="click me" color="primary" @click="store.increment">&nbsp;
61
+ {{ store.doubleCount }}
62
+ </q-btn>
63
+ </div>
64
+ </template>
65
+
66
+ <script setup lang="ts">
67
+ import { useCounterStore } from '../stores/example-store';
68
+
69
+ const store = useCounterStore()
70
+
71
+ const lorem= 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'
72
+ </script>
73
+
74
+ <style scoped>
75
+
76
+ </style>
@@ -5,7 +5,6 @@
5
5
  </template>
6
6
 
7
7
  <script setup lang="ts">
8
- console.log('DirName:', __dirname)
9
8
  </script>
10
9
 
11
10
  <style scoped></style>
@@ -1,74 +0,0 @@
1
- <template>
2
- <div class="q-pa-md q-gutter-md grid grid-cols-4">
3
- <q-card class="my-card">
4
- <q-card-section>
5
- {{ lorem }}
6
- </q-card-section>
7
- </q-card>
8
-
9
- <q-card
10
- class="my-card text-white"
11
- style="background: radial-gradient(circle, #35a2ff 0%, #014a88 100%)"
12
- >
13
- <q-card-section>
14
- <div class="text-h6">Our Changing Planet</div>
15
- <div class="text-subtitle2">by John Doe</div>
16
- </q-card-section>
17
-
18
- <q-card-section class="q-pt-none">21323
19
- {{ lorem }}
20
- </q-card-section>
21
- </q-card>
22
-
23
- <q-card dark bordered class="bg-grey-9 my-card">
24
- <q-card-section>
25
- <div class="text-h6">Our Changing Planet</div>
26
- <div class="text-subtitle2">by John Doe</div>
27
- </q-card-section>
28
-
29
- <q-separator dark inset />
30
-
31
- <q-card-section>
32
- {{ lorem }}
33
- </q-card-section>
34
- </q-card>
35
-
36
- <q-card flat bordered class="my-card">
37
- <q-card-section>
38
- <div class="text-h6">Our Changing Planet</div>
39
- </q-card-section>
40
-
41
- <q-card-section class="q-pt-none">
42
- PPPP Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
43
- tempor incididunt ut labore et dolore magna aliqua. dfsdfsadfsdfsddfsdfsdfsd
44
- </q-card-section>
45
-
46
- <q-separator inset />
47
-
48
- <q-card-section>
49
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
50
- tempor incididunt ut labore et dolore magna aliqua. sdfs
51
- </q-card-section>
52
- </q-card>
53
- </div>
54
-
55
- <div class="text-3xl font-bold underline">
56
- Hello world 1!
57
- </div>
58
-
59
- <q-btn label="click me" color="primary" @click="store.increment">&nbsp;
60
- {{ store.doubleCount }}</q-btn>
61
-
62
- </template>
63
-
64
- <script setup lang="ts">
65
- import { useCounterStore } from '../stores/example-store';
66
-
67
- const store = useCounterStore()
68
-
69
- const lorem= 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'
70
- </script>
71
-
72
- <style scoped>
73
-
74
- </style>
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes