hl-core 0.0.7 → 0.0.8-beta.2

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 (65) hide show
  1. package/.prettierrc +2 -1
  2. package/api/index.ts +548 -0
  3. package/api/interceptors.ts +38 -0
  4. package/components/Button/Btn.vue +57 -0
  5. package/components/Button/BtnIcon.vue +47 -0
  6. package/components/Button/ScrollButtons.vue +6 -0
  7. package/components/Button/SortArrow.vue +21 -0
  8. package/components/Complex/Content.vue +5 -0
  9. package/components/Complex/ContentBlock.vue +5 -0
  10. package/components/Complex/Page.vue +43 -0
  11. package/components/Dialog/Dialog.vue +76 -0
  12. package/components/Dialog/FamilyDialog.vue +39 -0
  13. package/components/Form/FormBlock.vue +114 -0
  14. package/components/Form/FormSection.vue +18 -0
  15. package/components/Form/FormTextSection.vue +20 -0
  16. package/components/Form/FormToggle.vue +52 -0
  17. package/components/Form/ProductConditionsBlock.vue +68 -0
  18. package/components/Input/Datepicker.vue +41 -0
  19. package/components/Input/EmptyFormField.vue +5 -0
  20. package/components/Input/FileInput.vue +71 -0
  21. package/components/Input/FormInput.vue +174 -0
  22. package/components/Input/PanelInput.vue +133 -0
  23. package/components/Input/RoundedInput.vue +143 -0
  24. package/components/Layout/Drawer.vue +45 -0
  25. package/components/Layout/Header.vue +48 -0
  26. package/components/Layout/Loader.vue +35 -0
  27. package/components/Layout/SettingsPanel.vue +48 -0
  28. package/components/List/ListEmpty.vue +22 -0
  29. package/components/Menu/MenuNav.vue +108 -0
  30. package/components/Menu/MenuNavItem.vue +37 -0
  31. package/components/Pages/Anketa.vue +341 -0
  32. package/components/Pages/Auth.vue +91 -0
  33. package/components/Pages/Documents.vue +108 -0
  34. package/components/Pages/MemberForm.vue +1148 -0
  35. package/components/Pages/ProductAgreement.vue +18 -0
  36. package/components/Pages/ProductConditions.vue +436 -0
  37. package/components/Panel/PanelHandler.vue +231 -0
  38. package/components/Panel/PanelItem.vue +5 -0
  39. package/components/Panel/PanelSelectItem.vue +20 -0
  40. package/components/Transitions/FadeTransition.vue +5 -0
  41. package/components/Transitions/SlideTransition.vue +5 -0
  42. package/composables/axios.ts +11 -0
  43. package/composables/classes.ts +1129 -0
  44. package/composables/constants.ts +66 -0
  45. package/composables/index.ts +168 -2
  46. package/composables/styles.ts +47 -8
  47. package/layouts/clear.vue +3 -0
  48. package/layouts/default.vue +75 -0
  49. package/layouts/full.vue +6 -0
  50. package/nuxt.config.ts +31 -5
  51. package/package.json +24 -10
  52. package/pages/500.vue +85 -0
  53. package/plugins/helperFunctionsPlugins.ts +17 -2
  54. package/plugins/storePlugin.ts +6 -7
  55. package/plugins/vuetifyPlugin.ts +10 -0
  56. package/store/data.store.js +2484 -6
  57. package/store/form.store.ts +8 -0
  58. package/store/member.store.ts +291 -0
  59. package/store/messages.ts +162 -38
  60. package/store/rules.js +29 -38
  61. package/tailwind.config.js +10 -0
  62. package/types/index.ts +303 -0
  63. package/app.vue +0 -3
  64. package/components/Button/GreenBtn.vue +0 -33
  65. package/store/app.store.js +0 -12
@@ -1,4 +1,5 @@
1
1
  import '@mdi/font/css/materialdesignicons.css';
2
+ import 'animate.css';
2
3
  import 'vuetify/styles';
3
4
  import { createVuetify } from 'vuetify';
4
5
  import * as components from 'vuetify/components';
@@ -9,6 +10,15 @@ export default defineNuxtPlugin(nuxtApp => {
9
10
  ssr: false,
10
11
  components,
11
12
  directives,
13
+ theme: {
14
+ themes: {
15
+ light: {
16
+ colors: {
17
+ error: '#FF5449',
18
+ },
19
+ },
20
+ },
21
+ },
12
22
  });
13
23
 
14
24
  nuxtApp.vueApp.use(vuetify);