hl-core 0.0.8-beta.35 → 0.0.8-beta.37
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/components/Button/Btn.vue +1 -1
- package/components/Button/ScrollButtons.vue +2 -2
- package/components/Complex/Page.vue +1 -1
- package/components/Dialog/Dialog.vue +3 -3
- package/components/Dialog/FamilyDialog.vue +7 -4
- package/components/Form/FormBlock.vue +10 -10
- package/components/Form/FormToggle.vue +2 -3
- package/components/Form/ManagerAttachment.vue +17 -17
- package/components/Form/ProductConditionsBlock.vue +8 -8
- package/components/Input/Datepicker.vue +1 -1
- package/components/Input/FileInput.vue +2 -2
- package/components/Input/FormInput.vue +3 -3
- package/components/Input/PanelInput.vue +1 -1
- package/components/Input/RoundedInput.vue +2 -2
- package/components/Input/RoundedSelect.vue +1 -1
- package/components/Layout/Drawer.vue +2 -2
- package/components/Layout/Loader.vue +1 -1
- package/components/Layout/SettingsPanel.vue +16 -10
- package/components/Menu/MenuHover.vue +1 -1
- package/components/Menu/MenuNav.vue +2 -3
- package/components/Menu/MenuNavItem.vue +1 -1
- package/components/Pages/Anketa.vue +13 -18
- package/components/Pages/Auth.vue +18 -25
- package/components/Pages/Documents.vue +3 -3
- package/components/Pages/InvoiceInfo.vue +4 -4
- package/components/Pages/MemberForm.vue +162 -156
- package/components/Pages/ProductAgreement.vue +4 -2
- package/components/Pages/ProductConditions.vue +128 -96
- package/components/Panel/PanelHandler.vue +22 -23
- package/components/Utilities/JsonViewer.vue +1 -1
- package/layouts/default.vue +3 -3
- package/package.json +14 -10
- package/pages/500.vue +1 -1
- package/store/data.store.js +2 -0
package/layouts/default.vue
CHANGED
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
@onLink="onLink"
|
|
20
20
|
>
|
|
21
21
|
<template #end>
|
|
22
|
-
<base-loader v-if="$dataStore.menu.loading" class="self-center m-5 opacity-70"
|
|
22
|
+
<base-loader v-if="$dataStore.menu.loading" class="self-center m-5 opacity-70" />
|
|
23
23
|
</template>
|
|
24
24
|
</base-menu-nav>
|
|
25
|
-
<slot
|
|
26
|
-
<base-settings-panel
|
|
25
|
+
<slot></slot>
|
|
26
|
+
<base-settings-panel />
|
|
27
27
|
</section>
|
|
28
28
|
</div>
|
|
29
29
|
</template>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hl-core",
|
|
3
|
-
"version": "0.0.8-beta.
|
|
3
|
+
"version": "0.0.8-beta.37",
|
|
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
package/store/data.store.js
CHANGED
|
@@ -1521,8 +1521,10 @@ export const useDataStore = defineStore('data', {
|
|
|
1521
1521
|
}
|
|
1522
1522
|
if (this.formStore.productConditionsForm.insurancePremiumPerMonth != null) {
|
|
1523
1523
|
this.formStore.productConditionsForm.requestedSumInsured = this.getNumberWithSpaces(result.value);
|
|
1524
|
+
this.formStore.productConditionsForm.insurancePremiumPerMonth = this.getNumberWithSpaces(applicationData.policyAppDto.premium);
|
|
1524
1525
|
} else {
|
|
1525
1526
|
this.formStore.productConditionsForm.insurancePremiumPerMonth = this.getNumberWithSpaces(result.value);
|
|
1527
|
+
this.formStore.productConditionsForm.requestedSumInsured = this.getNumberWithSpaces(applicationData.policyAppDto.amount);
|
|
1526
1528
|
}
|
|
1527
1529
|
if (this.isLiferenta) {
|
|
1528
1530
|
this.formStore.productConditionsForm.amountAnnuityPayments = this.getNumberWithSpaces(applicationData.policyAppDto.annuityMonthPay);
|