@snabcentr/vue-ui-lib 4.18.1 → 4.19.1
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/manifest.json +2 -2
- package/dist/release_notes.tmp +4 -3
- package/dist/sc-vue-ui-lib.css +1 -1
- package/dist/sc-vue-ui-lib.js +1700 -1668
- package/dist/sc-vue-ui-lib.js.map +1 -1
- package/dist/sc-vue-ui-lib.umd.cjs +25 -25
- package/dist/sc-vue-ui-lib.umd.cjs.map +1 -1
- package/dist/src/components/dates/date-range/date-range-fields.vue.d.ts +1 -1
- package/dist/src/components/dates/date-range/date-range-input.vue.d.ts +1 -1
- package/dist/src/helpers/file-helper.d.ts +13 -0
- package/dist/src/helpers/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -62,5 +62,5 @@ declare const _default: import('vue').DefineComponent<IClearable & IDateRangeDis
|
|
|
62
62
|
dateFormat: string;
|
|
63
63
|
placeholderFrom: string;
|
|
64
64
|
placeholderTo: string;
|
|
65
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
65
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
66
66
|
export default _default;
|
|
@@ -2,7 +2,7 @@ import { IClearable } from '../../../properties/interfaces/i-clearable';
|
|
|
2
2
|
import { IDisabled } from '../../../properties/interfaces/i-disabled';
|
|
3
3
|
import { IPlaceholder } from '../../../properties/interfaces/i-placeholder';
|
|
4
4
|
/**
|
|
5
|
-
* Поле одиночной даты: слева в панели год и
|
|
5
|
+
* Поле одиночной даты: слева в панели год и месяцы (на телефоне скрыты), справа календарь дней.
|
|
6
6
|
*/
|
|
7
7
|
declare const _default: import('vue').DefineComponent<IClearable & IDisabled & IPlaceholder & {
|
|
8
8
|
/**
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IFile } from '@snabcentr/common-lib';
|
|
2
|
+
/**
|
|
3
|
+
* Объект помощников работы с файлами.
|
|
4
|
+
* Предоставляет методы подготовки файлов к отправке на портал.
|
|
5
|
+
*/
|
|
6
|
+
export declare const FileHelper: {
|
|
7
|
+
/**
|
|
8
|
+
* Читает содержимое файла и возвращает данные файла в формате, принимаемом порталом.
|
|
9
|
+
*
|
|
10
|
+
* @param file Файл, выбранный пользователем.
|
|
11
|
+
*/
|
|
12
|
+
readAsFileData(file: File): Promise<IFile>;
|
|
13
|
+
};
|