hl-core 0.0.8-beta.35 → 0.0.8-beta.36

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 (33) hide show
  1. package/components/Button/Btn.vue +1 -1
  2. package/components/Button/ScrollButtons.vue +2 -2
  3. package/components/Complex/Page.vue +1 -1
  4. package/components/Dialog/Dialog.vue +3 -3
  5. package/components/Dialog/FamilyDialog.vue +7 -4
  6. package/components/Form/FormBlock.vue +10 -10
  7. package/components/Form/FormToggle.vue +2 -3
  8. package/components/Form/ManagerAttachment.vue +17 -17
  9. package/components/Form/ProductConditionsBlock.vue +8 -8
  10. package/components/Input/Datepicker.vue +1 -1
  11. package/components/Input/FileInput.vue +2 -2
  12. package/components/Input/FormInput.vue +3 -3
  13. package/components/Input/PanelInput.vue +1 -1
  14. package/components/Input/RoundedInput.vue +2 -2
  15. package/components/Input/RoundedSelect.vue +1 -1
  16. package/components/Layout/Drawer.vue +2 -2
  17. package/components/Layout/Loader.vue +1 -1
  18. package/components/Layout/SettingsPanel.vue +16 -10
  19. package/components/Menu/MenuHover.vue +1 -1
  20. package/components/Menu/MenuNav.vue +2 -3
  21. package/components/Menu/MenuNavItem.vue +1 -1
  22. package/components/Pages/Anketa.vue +13 -18
  23. package/components/Pages/Auth.vue +18 -25
  24. package/components/Pages/Documents.vue +3 -3
  25. package/components/Pages/InvoiceInfo.vue +4 -4
  26. package/components/Pages/MemberForm.vue +154 -151
  27. package/components/Pages/ProductAgreement.vue +4 -2
  28. package/components/Pages/ProductConditions.vue +117 -94
  29. package/components/Panel/PanelHandler.vue +22 -23
  30. package/components/Utilities/JsonViewer.vue +1 -1
  31. package/layouts/default.vue +3 -3
  32. package/package.json +14 -10
  33. package/pages/500.vue +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hl-core",
3
- "version": "0.0.8-beta.35",
3
+ "version": "0.0.8-beta.36",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "nuxt.config.ts",
@@ -19,6 +19,10 @@
19
19
  "tailwind.config.js",
20
20
  ".prettierrc"
21
21
  ],
22
+ "config": {
23
+ "project": "",
24
+ "branch": ""
25
+ },
22
26
  "scripts": {
23
27
  "build": "nuxt build",
24
28
  "dev": "nuxt clean && nuxt dev",
@@ -35,15 +39,15 @@
35
39
  "update:liferenta": "cd .. && cd liferenta && yarn && git checkout -b %npm_package_version% && git add . && git commit -m \"%npm_package_version%\" && git push && git checkout main && cd .. && cd core",
36
40
  "update:lka": "cd .. && cd lka && yarn && git checkout -b %npm_package_version% && git add . && git commit -m \"%npm_package_version%\" && git push && git checkout main && cd .. && cd core",
37
41
  "update:all": "yarn update:aml && yarn update:baiterek && yarn update:bolashak && yarn update:calculator && yarn update:efo && yarn update:gons && yarn update:kazyna && yarn update:liferenta && yarn update:lka",
38
- "pull:aml":"cd .. && cd aml && git pull && cd .. && cd core",
39
- "pull:baiterek":"cd .. && cd baiterek && git pull && cd .. && cd core",
40
- "pull:bolashak":"cd .. && cd bolashak && git pull && cd .. && cd core",
41
- "pull:calculator":"cd .. && cd calculator && git pull && cd .. && cd core",
42
- "pull:efo":"cd .. && cd efo && git pull && cd .. && cd core",
43
- "pull:gons":"cd .. && cd gons && git pull && cd .. && cd core",
44
- "pull:kazyna":"cd .. && cd kazyna && git pull && cd .. && cd core",
45
- "pull:liferenta":"cd .. && cd liferenta && git pull && cd .. && cd core",
46
- "pull:lka":"cd .. && cd lka && git pull && cd .. && cd core",
42
+ "pull:aml": "cd .. && cd aml && git pull && cd .. && cd core",
43
+ "pull:baiterek": "cd .. && cd baiterek && git pull && cd .. && cd core",
44
+ "pull:bolashak": "cd .. && cd bolashak && git pull && cd .. && cd core",
45
+ "pull:calculator": "cd .. && cd calculator && git pull && cd .. && cd core",
46
+ "pull:efo": "cd .. && cd efo && git pull && cd .. && cd core",
47
+ "pull:gons": "cd .. && cd gons && git pull && cd .. && cd core",
48
+ "pull:kazyna": "cd .. && cd kazyna && git pull && cd .. && cd core",
49
+ "pull:liferenta": "cd .. && cd liferenta && git pull && cd .. && cd core",
50
+ "pull:lka": "cd .. && cd lka && git pull && cd .. && cd core",
47
51
  "pull:all": "cd .. && cd aml && git pull && cd .. && cd baiterek && git pull && cd .. && cd bolashak && git pull && cd .. && cd calculator && git pull && cd .. && cd efo && git pull && cd .. && cd gons && git pull && cd .. && cd kazyna && git pull && cd .. && cd liferenta && git pull && cd .. && cd lka && git pull && cd ..",
48
52
  "typecheck": "nuxt typecheck"
49
53
  },
package/pages/500.vue CHANGED
@@ -47,7 +47,7 @@
47
47
  >
48
48
  </p>
49
49
  </div>
50
- <base-btn text="На главную" @click="goBack" class="!w-fit px-14"></base-btn>
50
+ <base-btn text="На главную" @click="goBack" class="!w-fit px-14" />
51
51
  </base-content>
52
52
  </template>
53
53