hl-core 0.0.9-beta.43 → 0.0.9-beta.44

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.
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <section :class="[$styles.blueBgLight, $styles.rounded]" class="mt-[14px] p-4 flex flex-col gap-[1px]">
3
- <h2 :class="[$styles.textTitle]" class="font-medium text-center w-full mb-4">
3
+ <h2 v-if="title && typeof title === 'string'" :class="[$styles.textTitle]" class="font-medium text-center w-full mb-4">
4
4
  {{ title }}
5
5
  <slot name="icon"></slot>
6
6
  </h2>
@@ -13,8 +13,8 @@ export default defineComponent({
13
13
  props: {
14
14
  title: {
15
15
  type: String,
16
- default: 'Заголовок',
17
- required: true,
16
+ default: '',
17
+ required: false,
18
18
  },
19
19
  },
20
20
  });
@@ -55,7 +55,7 @@ export default defineComponent({
55
55
  }
56
56
 
57
57
  .base-switch-input .v-selection-control--dirty .v-switch__track {
58
- background: #2aa65c !important;
58
+ background: #009c73 !important;
59
59
  }
60
60
 
61
61
  .base-switch-input .v-switch .v-selection-control {
package/locales/ru.json CHANGED
@@ -709,7 +709,6 @@
709
709
  "welcome": "Добро пожаловать",
710
710
  "information": "Дополнительные данные",
711
711
  "policyNumber": "Номер полиса",
712
- "policyStartDate": "Начало полиса",
713
712
  "statusCode": "Статус заявки",
714
713
  "initiator": "Инициатор",
715
714
  "iin&bin": "ИИН/БИН",
@@ -729,7 +728,7 @@
729
728
  "premiumWithLoad": "Страховая премия за факт период (с нагрузкой)",
730
729
  "premiumWithoutLoad": "Страховая премия за факт период (без нагрузки)",
731
730
  "policyStartDate": "Дата начала действия полиса",
732
- "policyEndDate": "Дата окончания действия полиса",
731
+ "policyEndDate": "Дата окончания действия полиса"
733
732
  },
734
733
  "placeholders": {
735
734
  "login": "Логин",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hl-core",
3
- "version": "0.0.9-beta.43",
3
+ "version": "0.0.9-beta.44",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "nuxt.config.ts",
@@ -3148,6 +3148,7 @@ export const useDataStore = defineStore('data', {
3148
3148
  delete policyholder.clientData.identityDocument;
3149
3149
  delete policyholder.clientData.authoritedPerson.identityDocument;
3150
3150
  delete policyholder.clientData.activityTypes;
3151
+ delete policyholder.clientData.citizenship;
3151
3152
  if (!policyholder.clientData.iin) return false;
3152
3153
  try {
3153
3154
  const response = await this.api.startApplication(policyholder);