@data-fair/app-dashboards 0.11.8 → 1.0.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/index.html CHANGED
@@ -1,10 +1,7 @@
1
1
  <!DOCTYPE html>
2
- <html lang="en">
2
+ <html lang="fr">
3
3
 
4
4
  <head>
5
- <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin="anonymous">
6
- <link rel="preload" as="style" onload="this.rel=&#39;stylesheet&#39;" href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&amp;display=swap">
7
-
8
5
  <meta charset="UTF-8" />
9
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
10
7
  <meta name="x-capture" content="trigger" />
@@ -13,17 +10,23 @@
13
10
  <meta name="df:filter-concepts" content="false">
14
11
  <meta name="{VERSION}" content="trigger" />
15
12
  <meta name="application-name" content="Dashboards">
13
+ <meta name="title" content="Dashboards">
16
14
  <meta name="description" lang="fr" content="Une application de dashboards génériques.">
17
15
  <meta name="keywords" lang="fr" content="Dashboards">
16
+ <meta name="thumbnail" content="%PUBLIC_URL%/thumbnail.png">
18
17
  <meta name="df:vjsf" content="3">
19
18
  <meta name="df:sync-config" content="true">
20
19
 
20
+ <link rel="preconnect" href="https://fonts.googleapis.com">
21
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
22
+ <link href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap" rel="stylesheet">
23
+
21
24
  <title lang="fr">Dashboards</title>
22
25
 
23
26
  <!-- Capture a global variable defined by data-fair's reverse proxy. -->
24
27
  <script type="text/javascript">window.APPLICATION=%APPLICATION%;</script>
25
- <script type="module" crossorigin src="https://cdn.jsdelivr.net/npm/@data-fair/app-dashboards@0.11.8/dist/assets/index-DsbYdw1G.js"></script>
26
- <link rel="stylesheet" crossorigin href="https://cdn.jsdelivr.net/npm/@data-fair/app-dashboards@0.11.8/dist/assets/index-D368B1Ce.css">
28
+ <script type="module" crossorigin src="https://cdn.jsdelivr.net/npm/@data-fair/app-dashboards@1.0.0/dist/assets/index-CsckV716.js"></script>
29
+ <link rel="stylesheet" crossorigin href="https://cdn.jsdelivr.net/npm/@data-fair/app-dashboards@1.0.0/dist/assets/index-B300Ftha.css">
27
30
  </head>
28
31
 
29
32
  <body>
@@ -31,5 +34,3 @@
31
34
  </body>
32
35
 
33
36
  </html>
34
-
35
-
package/package.json CHANGED
@@ -1,13 +1,18 @@
1
1
  {
2
2
  "name": "@data-fair/app-dashboards",
3
- "version": "0.11.8",
3
+ "version": "1.0.0",
4
4
  "scripts": {
5
5
  "dev": "zellij --layout .zellij.kdl",
6
6
  "dev-server": "APP_URL=http://localhost:3000/app/ df-dev-server",
7
7
  "dev-app": "vite",
8
8
  "build": "rm -rf dist && PUBLIC_URL=https://cdn.jsdelivr.net/npm/@data-fair/app-dashboards@${npm_package_version}/dist vite build",
9
9
  "prepublishOnly": "npm run build",
10
- "lint": "eslint . --fix --ignore-path .gitignore"
10
+ "lint": "eslint . --fix --ignore-path .gitignore --ext .js,.ts,.vue",
11
+ "type-check": "vue-tsc --noEmit",
12
+ "build-types": "df-build-types && cp src/config/.type/resolved-schema.json public/config-schema.json",
13
+ "test:e2e": "playwright test",
14
+ "test:e2e:ui": "playwright test --ui",
15
+ "test:e2e:report": "playwright show-report"
11
16
  },
12
17
  "files": [
13
18
  "dist"
@@ -20,22 +25,29 @@
20
25
  ],
21
26
  "dependencies": {
22
27
  "@data-fair/frame": "^0.13.1",
28
+ "@data-fair/lib-common-types": "^1.20.6",
23
29
  "@data-fair/lib-vue": "^1.24.2",
24
- "@data-fair/lib-vuetify": "^1.13.0",
30
+ "@data-fair/lib-vuetify": "^2.3.0",
25
31
  "@vueuse/core": "^14.1.0",
32
+ "dayjs": "^1.11.21",
26
33
  "ofetch": "^1.3.3",
27
34
  "vue": "^3.5.27",
28
- "vuetify": "^3.11.7"
35
+ "vuetify": "^4.0.8"
29
36
  },
30
37
  "devDependencies": {
31
38
  "@data-fair/dev-server": "^2.0.24",
39
+ "@data-fair/lib-types-builder": "^1.12.0",
40
+ "@playwright/test": "^1.60.0",
41
+ "@typescript-eslint/eslint-plugin": "^7.0.0",
42
+ "@typescript-eslint/parser": "^7.0.0",
32
43
  "@vitejs/plugin-vue": "^6.0.0",
33
44
  "eslint": "^8.49.0",
34
45
  "eslint-config-standard": "^17.1.0",
35
46
  "eslint-plugin-vue": "^9.17.0",
36
47
  "sass": "^1.71.0",
37
- "unplugin-fonts": "^1.4.0",
38
- "vite": "npm:rolldown-vite@^7.2.5",
39
- "vite-plugin-vuetify": "^2.1.1"
48
+ "typescript": "^5.8.0",
49
+ "vite": "^8.0.14",
50
+ "vite-plugin-vuetify": "^2.1.1",
51
+ "vue-tsc": "^2.2.0"
40
52
  }
41
53
  }