adminforth 1.2.58 → 1.2.60

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 (63) hide show
  1. package/package.json +2 -2
  2. package/dist/spa/.vscode/extensions.json +0 -6
  3. package/dist/spa/spa/.eslintrc.cjs +0 -14
  4. package/dist/spa/spa/.vscode/extensions.json +0 -6
  5. package/dist/spa/spa/README.md +0 -39
  6. package/dist/spa/spa/env.d.ts +0 -1
  7. package/dist/spa/spa/index.html +0 -23
  8. package/dist/spa/spa/package-lock.json +0 -4573
  9. package/dist/spa/spa/package.json +0 -49
  10. package/dist/spa/spa/postcss.config.js +0 -6
  11. package/dist/spa/spa/public/assets/favicon.png +0 -0
  12. package/dist/spa/spa/src/App.vue +0 -314
  13. package/dist/spa/spa/src/assets/base.css +0 -2
  14. package/dist/spa/spa/src/assets/logo.svg +0 -19
  15. package/dist/spa/spa/src/components/AcceptModal.vue +0 -45
  16. package/dist/spa/spa/src/components/Breadcrumbs.vue +0 -41
  17. package/dist/spa/spa/src/components/BreadcrumbsWithButtons.vue +0 -26
  18. package/dist/spa/spa/src/components/CustomDatePicker.vue +0 -176
  19. package/dist/spa/spa/src/components/CustomDateRangePicker.vue +0 -218
  20. package/dist/spa/spa/src/components/CustomRangePicker.vue +0 -152
  21. package/dist/spa/spa/src/components/Dropdown.vue +0 -168
  22. package/dist/spa/spa/src/components/Filters.vue +0 -222
  23. package/dist/spa/spa/src/components/HelloWorld.vue +0 -17
  24. package/dist/spa/spa/src/components/MenuLink.vue +0 -24
  25. package/dist/spa/spa/src/components/ResourceForm.vue +0 -294
  26. package/dist/spa/spa/src/components/ResourceListTable.vue +0 -394
  27. package/dist/spa/spa/src/components/SingleSkeletLoader.vue +0 -13
  28. package/dist/spa/spa/src/components/SkeleteLoader.vue +0 -23
  29. package/dist/spa/spa/src/components/Toast.vue +0 -77
  30. package/dist/spa/spa/src/components/ValueRenderer.vue +0 -66
  31. package/dist/spa/spa/src/components/icons/IconCalendar.vue +0 -5
  32. package/dist/spa/spa/src/components/icons/IconCommunity.vue +0 -7
  33. package/dist/spa/spa/src/components/icons/IconDocumentation.vue +0 -7
  34. package/dist/spa/spa/src/components/icons/IconEcosystem.vue +0 -7
  35. package/dist/spa/spa/src/components/icons/IconSupport.vue +0 -7
  36. package/dist/spa/spa/src/components/icons/IconTime.vue +0 -5
  37. package/dist/spa/spa/src/components/icons/IconTooling.vue +0 -19
  38. package/dist/spa/spa/src/composables/useFrontendApi.ts +0 -26
  39. package/dist/spa/spa/src/composables/useStores.ts +0 -127
  40. package/dist/spa/spa/src/index.scss +0 -27
  41. package/dist/spa/spa/src/main.ts +0 -18
  42. package/dist/spa/spa/src/router/index.ts +0 -63
  43. package/dist/spa/spa/src/spa_types/core.ts +0 -51
  44. package/dist/spa/spa/src/stores/core.ts +0 -144
  45. package/dist/spa/spa/src/stores/filters.ts +0 -22
  46. package/dist/spa/spa/src/stores/modal.ts +0 -48
  47. package/dist/spa/spa/src/stores/toast.ts +0 -15
  48. package/dist/spa/spa/src/stores/user.ts +0 -72
  49. package/dist/spa/spa/src/types/AdminForthConfig.ts +0 -1477
  50. package/dist/spa/spa/src/types/FrontendAPI.ts +0 -121
  51. package/dist/spa/spa/src/utils.ts +0 -103
  52. package/dist/spa/spa/src/views/CreateView.vue +0 -156
  53. package/dist/spa/spa/src/views/EditView.vue +0 -157
  54. package/dist/spa/spa/src/views/ListView.vue +0 -258
  55. package/dist/spa/spa/src/views/LoginView.vue +0 -160
  56. package/dist/spa/spa/src/views/ResourceParent.vue +0 -17
  57. package/dist/spa/spa/src/views/ShowView.vue +0 -184
  58. package/dist/spa/spa/tailwind.config.js +0 -17
  59. package/dist/spa/spa/tsconfig.app.json +0 -14
  60. package/dist/spa/spa/tsconfig.json +0 -11
  61. package/dist/spa/spa/tsconfig.node.json +0 -19
  62. package/dist/spa/spa/vite.config.ts +0 -56
  63. package/spa/.vscode/extensions.json +0 -6
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "1.2.58",
3
+ "version": "1.2.60",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1",
9
9
  "build": "tsc",
10
- "prepareDist": "cp -rL spa dist/spa",
10
+ "prepareDist": "cp -rL spa dist/",
11
11
  "rollout": "tsc && npm run prepareDist && npm version patch && npm publish && npm run rollout-doc",
12
12
  "rollout-doc": "cd documentation && npm run build && npm run deploy",
13
13
  "docs": "typedoc"
@@ -1,6 +0,0 @@
1
- {
2
- "recommendations": [
3
- "Vue.volar",
4
- "dbaeumer.vscode-eslint"
5
- ]
6
- }
@@ -1,14 +0,0 @@
1
- /* eslint-env node */
2
- require('@rushstack/eslint-patch/modern-module-resolution')
3
-
4
- module.exports = {
5
- root: true,
6
- 'extends': [
7
- 'plugin:vue/vue3-essential',
8
- 'eslint:recommended',
9
- '@vue/eslint-config-typescript'
10
- ],
11
- parserOptions: {
12
- ecmaVersion: 'latest'
13
- }
14
- }
@@ -1,6 +0,0 @@
1
- {
2
- "recommendations": [
3
- "Vue.volar",
4
- "dbaeumer.vscode-eslint"
5
- ]
6
- }
@@ -1,39 +0,0 @@
1
- # spa
2
-
3
- This template should help get you started developing with Vue 3 in Vite.
4
-
5
- ## Recommended IDE Setup
6
-
7
- [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
8
-
9
- ## Type Support for `.vue` Imports in TS
10
-
11
- TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types.
12
-
13
- ## Customize configuration
14
-
15
- See [Vite Configuration Reference](https://vitejs.dev/config/).
16
-
17
- ## Project Setup
18
-
19
- ```sh
20
- npm install
21
- ```
22
-
23
- ### Compile and Hot-Reload for Development
24
-
25
- ```sh
26
- npm run dev
27
- ```
28
-
29
- ### Type-Check, Compile and Minify for Production
30
-
31
- ```sh
32
- npm run build
33
- ```
34
-
35
- ### Lint with [ESLint](https://eslint.org/)
36
-
37
- ```sh
38
- npm run lint
39
- ```
@@ -1 +0,0 @@
1
- /// <reference types="vite/client" />
@@ -1,23 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <link rel="icon" href="/* IMPORTANT:ADMINFORTH FAVICON */">
6
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
- <title>/* IMPORTANT:ADMINFORTH TITLE */</title>
8
- <!--
9
- <script>
10
- // On page load or when changing themes, best to add inline in `head` to avoid FOUC
11
- if (localStorage.getItem('color-theme') === 'dark' || (!('color-theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
12
- document.documentElement.classList.add('dark');
13
- } else {
14
- document.documentElement.classList.remove('dark')
15
- }
16
- </script> -->
17
-
18
- </head>
19
- <body class=" ">
20
- <div id="app" class="min-h-screen bg-lightHtml dark:bg-darkHtml"></div>
21
- <script type="module" src="/src/main.ts"></script>
22
- </body>
23
- </html>