@devbonnysid/ui-kit-default 1.5.1 → 1.6.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/components/Table/Table.d.ts +28 -0
- package/dist/components/Table/components/Cell/Cell.d.ts +14 -0
- package/dist/components/Table/components/Cell/index.d.ts +1 -0
- package/dist/components/Table/components/HeadCell/HeadCell.d.ts +14 -0
- package/dist/components/Table/components/HeadCell/index.d.ts +1 -0
- package/dist/components/Table/components/Pagination/Pagination.d.ts +9 -0
- package/dist/components/Table/components/Pagination/index.d.ts +1 -0
- package/dist/components/Table/components/Row/Row.d.ts +26 -0
- package/dist/components/Table/components/Row/index.d.ts +1 -0
- package/dist/components/Table/components/index.d.ts +4 -0
- package/dist/components/Table/hooks/index.d.ts +2 -0
- package/dist/components/Table/hooks/usePagination.d.ts +19 -0
- package/dist/components/Table/hooks/useSort.d.ts +9 -0
- package/dist/components/Table/index.d.ts +4 -0
- package/dist/components/Table/types.d.ts +48 -0
- package/dist/components/Table/utils/formatWidth.d.ts +2 -0
- package/dist/components/Table/utils/index.d.ts +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/i18n/index.d.ts +14 -0
- package/dist/index.cjs.js +10 -10
- package/dist/index.es.js +2314 -1824
- package/dist/locales/en/ui-kit.json.d.ts +8 -1
- package/dist/locales/ru/ui-kit.json.d.ts +8 -1
- package/dist/styles.css +1 -1
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/mapToOption.d.ts +4 -0
- package/package.json +1 -1
|
@@ -2,7 +2,14 @@ declare const _default: {
|
|
|
2
2
|
"noOptions": "No options",
|
|
3
3
|
"resetAll": "Reset all",
|
|
4
4
|
"search": "Search",
|
|
5
|
-
"selectAll": "Select all"
|
|
5
|
+
"selectAll": "Select all",
|
|
6
|
+
"NoData": "No data",
|
|
7
|
+
"LoadingData": "Loading data...",
|
|
8
|
+
"pagination": {
|
|
9
|
+
"itemsOnPage": "Items on page:",
|
|
10
|
+
"ofPages": "of pages:",
|
|
11
|
+
"currentItems": "Showing {{totalItems}} items from {{start}} to {{end}}"
|
|
12
|
+
}
|
|
6
13
|
}
|
|
7
14
|
;
|
|
8
15
|
|
|
@@ -2,7 +2,14 @@ declare const _default: {
|
|
|
2
2
|
"noOptions": "Нет опций",
|
|
3
3
|
"resetAll": "Сбросить все",
|
|
4
4
|
"search": "Поиск",
|
|
5
|
-
"selectAll": "Выбрать все"
|
|
5
|
+
"selectAll": "Выбрать все",
|
|
6
|
+
"NoDate": "Нет данных",
|
|
7
|
+
"LoadingData": "Данные загружаются...",
|
|
8
|
+
"pagination": {
|
|
9
|
+
"itemsOnPage": "Элементов на странице:",
|
|
10
|
+
"ofPages": "из страниц:",
|
|
11
|
+
"currentItems": "Показано {{totalItems}} элементов с {{start}} по {{end}}"
|
|
12
|
+
}
|
|
6
13
|
}
|
|
7
14
|
;
|
|
8
15
|
|