@scbt-ecom/ui 0.124.1 → 0.125.0
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/lib/exports/ui.js +1 -1
- package/dist/lib/shared/hooks/useClickOutside.js +1 -1
- package/dist/lib/shared/hooks/useClickOutside.js.map +1 -1
- package/dist/lib/shared/ui/calendar/model/utils.js +1 -1
- package/dist/lib/shared/ui/calendar/model/utils.js.map +1 -1
- package/dist/lib/shared/ui/index.js +1 -1
- package/dist/lib/shared/ui/table/Desktop.js +1 -1
- package/dist/lib/shared/ui/table/Desktop.js.map +1 -1
- package/dist/lib/shared/ui/table/index.js +1 -1
- package/dist/stats.html +1 -1
- package/dist/types/lib/shared/ui/calendar/model/utils.d.ts +4 -1
- package/dist/types/lib/shared/ui/table/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -5,9 +5,12 @@ export declare const DATE_VISIBLE_PATTERN = "dd.MM.yyyy";
|
|
|
5
5
|
* new Date() -> '10.10.2024'
|
|
6
6
|
* @param {Date} date
|
|
7
7
|
* @param {string} locale
|
|
8
|
+
* @param options
|
|
8
9
|
* @returns Форматированная строка
|
|
9
10
|
*/
|
|
10
|
-
export declare const formatDateToLocaleString: (date: Date, locale?: string
|
|
11
|
+
export declare const formatDateToLocaleString: (date: Date, locale?: string, options?: {
|
|
12
|
+
time?: boolean;
|
|
13
|
+
}) => string;
|
|
11
14
|
/**
|
|
12
15
|
* Форматирование объекта даты в читаемую строку года
|
|
13
16
|
* @example
|