plugin-ui-for-kzt 0.0.63 → 0.0.64
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/dist/components/BaseBadge/BaseBadge.vue.d.ts +1 -1
- package/dist/components/BaseButton/BaseButton.vue.d.ts +1 -1
- package/dist/components/BaseCalendar/BaseCalendar.vue.d.ts +1 -1
- package/dist/components/BaseCheckbox/BaseCheckbox.vue.d.ts +1 -1
- package/dist/components/BaseInput/BaseInput.vue.d.ts +3 -3
- package/dist/components/BaseInputCalendar/BaseInputCalendar.vue.d.ts +4 -4
- package/dist/components/BaseInputCurrency/BaseInputCurrency.vue.d.ts +4 -4
- package/dist/components/BaseInputEmail/BaseInputEmail.vue.d.ts +2 -2
- package/dist/components/BaseInputPhone/BaseInputPhone.vue.d.ts +2 -2
- package/dist/components/BaseInputWithSelector/BaseInputWithSelector.vue.d.ts +1 -1
- package/dist/components/BasePagination/BasePagination.vue.d.ts +2 -2
- package/dist/components/BaseRadio/BaseRadio.vue.d.ts +1 -1
- package/dist/components/BaseSelect/BaseSelect.vue.d.ts +1 -1
- package/dist/components/BaseSiteInput/BaseSiteInput.vue.d.ts +1 -1
- package/dist/components/BaseTag/BaseTag.vue.d.ts +1 -1
- package/dist/components/BaseTextarea/BaseTextarea.vue.d.ts +2 -2
- package/dist/components/BaseToast/BaseToast.vue.d.ts +1 -1
- package/dist/components/BaseToggle/BaseToggle.vue.d.ts +1 -1
- package/dist/components/BaseTooltip/BaseTooltip.vue.d.ts +1 -1
- package/dist/components/BaseUpload/BaseUpload.vue.d.ts +0 -4
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/components/BaseUpload/BaseUpload.vue +2 -2
- package/src/types/uploadedFile.d.ts +2 -2
package/package.json
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
class="base-file-upload__content"
|
|
37
37
|
>
|
|
38
38
|
<p class="base-file-upload__title">
|
|
39
|
-
<slot name="title">{{
|
|
39
|
+
<slot name="title">{{ texts?.instructions }}</slot>
|
|
40
40
|
<base-icon
|
|
41
41
|
v-if="isMobile"
|
|
42
42
|
name="upload"
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
/>
|
|
45
45
|
</p>
|
|
46
46
|
<p class="base-file-upload__description">
|
|
47
|
-
<slot name="description">{{
|
|
47
|
+
<slot name="description">{{ texts?.allowableFormats }}</slot>
|
|
48
48
|
</p>
|
|
49
49
|
</div>
|
|
50
50
|
</div>
|
|
@@ -16,9 +16,9 @@ export interface IpropsUpload {
|
|
|
16
16
|
enableCrop?: boolean; // Включить функциональность кропа для изображений
|
|
17
17
|
cropTexts?: CropTexts; // Тексты для кнопок в модальном окне кропа
|
|
18
18
|
files?: UploadedFile[];
|
|
19
|
-
title: string
|
|
20
|
-
subtitle: string;
|
|
21
19
|
texts?: {
|
|
20
|
+
instructions: string // 'Перетащите или кликните для загрузки'
|
|
21
|
+
allowableFormats: string; // 'Допустимый формат файлов: {formats}'
|
|
22
22
|
upload?: string; // 'Загрузить фото'
|
|
23
23
|
photo?: string; // 'Загрузить фото'
|
|
24
24
|
documents?: string; // 'Документы'
|