@geode/opengeodeweb-front 0.0.4 → 0.0.5

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/nuxt.config.js ADDED
@@ -0,0 +1,2 @@
1
+ export default defineNuxtConfig({
2
+ })
package/package.json CHANGED
@@ -8,20 +8,21 @@
8
8
  "release:beta": "npm version $(semver $npm_package_version -i prerelease --preid $(npm whoami) ) && npm publish --tag rc"
9
9
  },
10
10
  "devDependencies": {
11
- "semver": "^7.5.4",
12
11
  "@types/node": "^20.4.9",
12
+ "semver": "^7.5.4",
13
13
  "vuetify": "^3.3.12"
14
14
  },
15
15
  "overrides": {
16
16
  "vue": "latest"
17
17
  },
18
18
  "description": "OpenSource Vue/Vuetify framework for web applications",
19
- "version": "0.0.4",
19
+ "version": "0.0.5",
20
20
  "main": "index.js",
21
21
  "dependencies": {
22
22
  "@mdi/font": "^7.2.96",
23
23
  "@pinia/nuxt": "^0.4.11",
24
24
  "@vueuse/core": "^10.3.0",
25
+ "nuxt": "^3.6.5",
25
26
  "pinia": "^2.1.6",
26
27
  "sass": "^1.65.1",
27
28
  "vuetify": "^3.3.12"
package/index.js DELETED
@@ -1,2 +0,0 @@
1
- import { FileSelector } from "@/components/FileSelector";
2
- export default FileSelector
@@ -1,45 +0,0 @@
1
- import { createVuetify } from 'vuetify'
2
- import * as components from 'vuetify/components'
3
- import { VDataTable } from 'vuetify/labs/VDataTable'
4
- import * as directives from 'vuetify/directives'
5
-
6
- import '@mdi/font/css/materialdesignicons.css'
7
- import colors from 'vuetify/lib/util/colors'
8
- import 'vuetify/styles'
9
-
10
- const light_theme = {
11
- dark: false,
12
- colors: {
13
- background: '#FFFFFF',
14
- primary: colors.teal.darken1,
15
- secondary: colors.teal.lighten4,
16
- accent: colors.amber.accent4,
17
- error: colors.red.lighten2,
18
- info: colors.yellow.accent4,
19
- success: colors.green.accent4,
20
- warning: colors.orange.accent4,
21
- }
22
- }
23
-
24
- export default defineNuxtPlugin(nuxtApp => {
25
- const vuetify = createVuetify({
26
- components: {
27
- ...components,
28
- VDataTable,
29
- },
30
- directives,
31
- theme: {
32
- defaultTheme: 'light_theme',
33
- themes: {
34
- light_theme,
35
- }
36
- },
37
- defaultAssets: false,
38
- icons: {
39
- defaultSet: 'mdi'
40
- },
41
- ssr: true
42
- })
43
-
44
- nuxtApp.vueApp.use(vuetify)
45
- })