adminforth 1.5.15-next.7 → 1.6.2-next.1

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 (93) hide show
  1. package/dist/index.d.ts.map +1 -1
  2. package/dist/index.js +0 -1
  3. package/dist/index.js.map +1 -1
  4. package/dist/spa/.eslintrc.cjs +14 -0
  5. package/dist/spa/README.md +39 -0
  6. package/dist/spa/env.d.ts +1 -0
  7. package/dist/spa/index.html +23 -0
  8. package/dist/spa/package-lock.json +5062 -0
  9. package/dist/spa/package.json +58 -0
  10. package/dist/spa/postcss.config.js +6 -0
  11. package/dist/spa/public/assets/favicon.png +0 -0
  12. package/dist/spa/src/App.vue +432 -0
  13. package/dist/spa/src/adminforth.ts +160 -0
  14. package/dist/spa/src/afcl/AreaChart.vue +160 -0
  15. package/dist/spa/src/afcl/BarChart.vue +170 -0
  16. package/dist/spa/src/afcl/Button.vue +27 -0
  17. package/dist/spa/src/afcl/Checkbox.vue +24 -0
  18. package/dist/spa/src/afcl/Dropzone.vue +128 -0
  19. package/dist/spa/src/afcl/Input.vue +41 -0
  20. package/dist/spa/src/afcl/Link.vue +17 -0
  21. package/dist/spa/src/afcl/LinkButton.vue +25 -0
  22. package/dist/spa/src/afcl/PieChart.vue +175 -0
  23. package/dist/spa/src/afcl/ProgressBar.vue +57 -0
  24. package/dist/spa/src/afcl/Select.vue +246 -0
  25. package/dist/spa/src/afcl/Skeleton.vue +26 -0
  26. package/dist/spa/src/afcl/Spinner.vue +9 -0
  27. package/dist/spa/src/afcl/Table.vue +116 -0
  28. package/dist/spa/src/afcl/Tooltip.vue +43 -0
  29. package/dist/spa/src/afcl/VerticalTabs.vue +49 -0
  30. package/dist/spa/src/afcl/index.ts +20 -0
  31. package/dist/spa/src/assets/base.css +2 -0
  32. package/dist/spa/src/assets/logo.svg +19 -0
  33. package/dist/spa/src/components/AcceptModal.vue +44 -0
  34. package/dist/spa/src/components/Breadcrumbs.vue +41 -0
  35. package/dist/spa/src/components/BreadcrumbsWithButtons.vue +25 -0
  36. package/dist/spa/src/components/CustomDatePicker.vue +180 -0
  37. package/dist/spa/src/components/CustomDateRangePicker.vue +218 -0
  38. package/dist/spa/src/components/CustomRangePicker.vue +156 -0
  39. package/dist/spa/src/components/Filters.vue +232 -0
  40. package/dist/spa/src/components/GroupsTable.vue +218 -0
  41. package/dist/spa/src/components/HelloWorld.vue +17 -0
  42. package/dist/spa/src/components/MenuLink.vue +41 -0
  43. package/dist/spa/src/components/ResourceForm.vue +260 -0
  44. package/dist/spa/src/components/ResourceListTable.vue +486 -0
  45. package/dist/spa/src/components/ShowTable.vue +81 -0
  46. package/dist/spa/src/components/SingleSkeletLoader.vue +13 -0
  47. package/dist/spa/src/components/SkeleteLoader.vue +18 -0
  48. package/dist/spa/src/components/ThreeDotsMenu.vue +43 -0
  49. package/dist/spa/src/components/Toast.vue +78 -0
  50. package/dist/spa/src/components/ValueRenderer.vue +141 -0
  51. package/dist/spa/src/components/icons/IconCalendar.vue +5 -0
  52. package/dist/spa/src/components/icons/IconCommunity.vue +7 -0
  53. package/dist/spa/src/components/icons/IconDocumentation.vue +7 -0
  54. package/dist/spa/src/components/icons/IconEcosystem.vue +7 -0
  55. package/dist/spa/src/components/icons/IconSupport.vue +7 -0
  56. package/dist/spa/src/components/icons/IconTime.vue +5 -0
  57. package/dist/spa/src/components/icons/IconTooling.vue +19 -0
  58. package/dist/spa/src/composables/useFrontendApi.ts +28 -0
  59. package/dist/spa/src/i18n.ts +54 -0
  60. package/dist/spa/src/index.scss +34 -0
  61. package/dist/spa/src/main.ts +22 -0
  62. package/dist/spa/src/renderers/CompactField.vue +46 -0
  63. package/dist/spa/src/renderers/CompactUUID.vue +46 -0
  64. package/dist/spa/src/renderers/CountryFlag.vue +65 -0
  65. package/dist/spa/src/renderers/HumanNumber.vue +58 -0
  66. package/dist/spa/src/renderers/RelativeTime.vue +42 -0
  67. package/dist/spa/src/renderers/URL.vue +18 -0
  68. package/dist/spa/src/router/index.ts +70 -0
  69. package/dist/spa/src/spa_types/core.ts +51 -0
  70. package/dist/spa/src/stores/core.ts +228 -0
  71. package/dist/spa/src/stores/filters.ts +27 -0
  72. package/dist/spa/src/stores/modal.ts +48 -0
  73. package/dist/spa/src/stores/toast.ts +30 -0
  74. package/dist/spa/src/stores/user.ts +79 -0
  75. package/dist/spa/src/types/Adapters.ts +26 -0
  76. package/dist/spa/src/types/Back.ts +1344 -0
  77. package/dist/spa/src/types/Common.ts +940 -0
  78. package/dist/spa/src/types/FrontendAPI.ts +189 -0
  79. package/dist/spa/src/utils.ts +184 -0
  80. package/dist/spa/src/views/CreateView.vue +167 -0
  81. package/dist/spa/src/views/EditView.vue +171 -0
  82. package/dist/spa/src/views/ListView.vue +442 -0
  83. package/dist/spa/src/views/LoginView.vue +199 -0
  84. package/dist/spa/src/views/PageNotFound.vue +20 -0
  85. package/dist/spa/src/views/ResourceParent.vue +50 -0
  86. package/dist/spa/src/views/ShowView.vue +209 -0
  87. package/dist/spa/src/websocket.ts +129 -0
  88. package/dist/spa/tailwind.config.js +19 -0
  89. package/dist/spa/tsconfig.app.json +14 -0
  90. package/dist/spa/tsconfig.json +11 -0
  91. package/dist/spa/tsconfig.node.json +19 -0
  92. package/dist/spa/vite.config.ts +52 -0
  93. package/package.json +2 -2

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.