add new folders in assets

This commit is contained in:
Priyatham-sai-chand 2024-02-16 12:18:08 -08:00
parent 3d94a02a8b
commit 6a1b092e8b
No known key found for this signature in database
GPG Key ID: 7CFEA02EC3ECF89A
7 changed files with 25864 additions and 76 deletions

17040
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,24 +1,33 @@
{ {
"name": "Interface", "name": "Interface",
"private": true,
"version": "0.0.0", "version": "0.0.0",
"type": "module", "private": true,
"scripts": { "scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build", "build": "vue-tsc --noEmit && vite build",
"dev": "vite",
"preview": "vite preview", "preview": "vite preview",
"styleguide": "vue-cli-service styleguidist --config styleguide.config.cjs",
"styleguide:build": "vue-cli-service styleguidist:build",
"tauri": "tauri" "tauri": "tauri"
}, },
"dependencies": { "dependencies": {
"vue": "^3.2.45", "@tauri-apps/api": "^1.4.0",
"@tauri-apps/api": "^1.4.0" "vue": "^3.2.45"
}, },
"devDependencies": { "devDependencies": {
"@tauri-apps/cli": "^1.4.0",
"@types/node": "^18.7.10", "@types/node": "^18.7.10",
"@vitejs/plugin-vue": "^4.0.0", "@vitejs/plugin-vue": "^4.0.0",
"typescript": "^4.9.5", "typescript": "^4.9.5",
"vite": "^4.2.1", "vite": "^4.2.1",
"vue-tsc": "^1.0.11", "vue-cli-plugin-styleguidist": "~4.72.4",
"@tauri-apps/cli": "^1.4.0" "vue-styleguidist": "^4.72.4",
} "webpack": "^5.90.1"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"type": "module"
} }

File diff suppressed because it is too large Load Diff

View File

@ -21,7 +21,7 @@
"bundle": { "bundle": {
"active": true, "active": true,
"targets": "all", "targets": "all",
"identifier": "com.tauri.build", "identifier": "com.gcs-user-interface.app",
"icon": [ "icon": [
"icons/32x32.png", "icons/32x32.png",
"icons/128x128.png", "icons/128x128.png",

View File

@ -1,13 +1,12 @@
<script setup lang="ts"> <script setup lang="ts">
// This starter template is using Vue 3 <script setup> SFCs // This starter template is using Vue 3 <script setup> SFCs
// Check out https://vuejs.org/api/sfc-script-setup.html#script-setup // Check out https://vuejs.org/api/sfc-script-setup.html#script-setup
import Greet from "./components/Greet.vue"; // import Greet from "./components/Greet.vue";
</script> </script>
<template> <template>
<div class="container"> <div class="container">
<h1>Welcome to Tauri!</h1> <h1>Welcome to Tauri!</h1>
<div class="row"> <div class="row">
<a href="https://vitejs.dev" target="_blank"> <a href="https://vitejs.dev" target="_blank">
<img src="/vite.svg" class="logo vite" alt="Vite logo" /> <img src="/vite.svg" class="logo vite" alt="Vite logo" />
@ -37,7 +36,6 @@ import Greet from "./components/Greet.vue";
> >
</p> </p>
<Greet />
</div> </div>
</template> </template>

View File

@ -10,12 +10,3 @@ async function greet() {
greetMsg.value = await invoke("greet", { name: name.value }); greetMsg.value = await invoke("greet", { name: name.value });
} }
</script> </script>
<template>
<form class="row" @submit.prevent="greet">
<input id="greet-input" v-model="name" placeholder="Enter a name..." />
<button type="submit">Greet</button>
</form>
<p>{{ greetMsg }}</p>
</template>

17
styleguide.config.cjs Normal file
View File

@ -0,0 +1,17 @@
module.exports = {
// set your styleguidist configuration here
title: 'Default Style Guide',
serverPort: 6061,
// components: 'src/components/**/[A-Z]*.vue',
// defaultExample: true,
// sections: [
// {
// name: 'First Section',
// components: 'src/components/**/[A-Z]*.vue'
// }
// ],
// webpackConfig: {
// // custom config goes here
// },
exampleMode: 'expand'
}