material-react-table 2.0.0-beta.9 → 2.0.0-rc.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.
Files changed (310) hide show
  1. package/README.md +36 -27
  2. package/dist/index.d.ts +54 -5
  3. package/dist/{esm/material-react-table.esm.js → index.esm.js} +57 -61
  4. package/dist/index.esm.js.map +1 -0
  5. package/dist/{cjs/index.js → index.js} +299 -209
  6. package/dist/index.js.map +1 -0
  7. package/dist/types/MaterialReactTable.d.ts +7 -0
  8. package/dist/types/aggregationFns.d.ts +11 -0
  9. package/dist/types/body/MRT_TableBody.d.ts +13 -0
  10. package/dist/types/body/MRT_TableBodyCell.d.ts +15 -0
  11. package/dist/types/body/MRT_TableBodyCellValue.d.ts +8 -0
  12. package/dist/types/body/MRT_TableBodyRow.d.ts +18 -0
  13. package/dist/types/body/MRT_TableBodyRowGrabHandle.d.ts +10 -0
  14. package/dist/types/body/MRT_TableBodyRowPinButton.d.ts +8 -0
  15. package/dist/types/body/MRT_TableDetailPanel.d.ts +13 -0
  16. package/dist/types/body/index.d.ts +7 -0
  17. package/dist/types/buttons/MRT_ColumnPinningButtons.d.ts +8 -0
  18. package/dist/types/buttons/MRT_CopyButton.d.ts +8 -0
  19. package/dist/types/buttons/MRT_EditActionButtons.d.ts +9 -0
  20. package/dist/types/buttons/MRT_ExpandAllButton.d.ts +7 -0
  21. package/dist/types/buttons/MRT_ExpandButton.d.ts +8 -0
  22. package/dist/types/buttons/MRT_GrabHandleButton.d.ts +12 -0
  23. package/dist/types/buttons/MRT_RowPinButton.d.ts +10 -0
  24. package/dist/types/buttons/MRT_ShowHideColumnsButton.d.ts +7 -0
  25. package/dist/types/buttons/MRT_ToggleDensePaddingButton.d.ts +7 -0
  26. package/dist/types/buttons/MRT_ToggleFiltersButton.d.ts +7 -0
  27. package/dist/types/buttons/MRT_ToggleFullScreenButton.d.ts +7 -0
  28. package/dist/types/buttons/MRT_ToggleGlobalFilterButton.d.ts +7 -0
  29. package/dist/types/buttons/MRT_ToggleRowActionMenuButton.d.ts +9 -0
  30. package/dist/types/buttons/index.d.ts +13 -0
  31. package/dist/types/column.utils.d.ts +127 -0
  32. package/dist/types/filterFns.d.ts +69 -0
  33. package/dist/types/footer/MRT_TableFooter.d.ts +11 -0
  34. package/dist/types/footer/MRT_TableFooterCell.d.ts +8 -0
  35. package/dist/types/footer/MRT_TableFooterRow.d.ts +12 -0
  36. package/dist/types/footer/index.d.ts +3 -0
  37. package/dist/types/head/MRT_TableHead.d.ts +11 -0
  38. package/dist/types/head/MRT_TableHeadCell.d.ts +8 -0
  39. package/dist/types/head/MRT_TableHeadCellColumnActionsButton.d.ts +8 -0
  40. package/dist/types/head/MRT_TableHeadCellFilterContainer.d.ts +8 -0
  41. package/dist/types/head/MRT_TableHeadCellFilterLabel.d.ts +8 -0
  42. package/dist/types/head/MRT_TableHeadCellGrabHandle.d.ts +10 -0
  43. package/dist/types/head/MRT_TableHeadCellResizeHandle.d.ts +8 -0
  44. package/dist/types/head/MRT_TableHeadCellSortLabel.d.ts +8 -0
  45. package/dist/types/head/MRT_TableHeadRow.d.ts +12 -0
  46. package/dist/types/head/index.d.ts +9 -0
  47. package/dist/types/hooks/index.d.ts +4 -0
  48. package/dist/types/hooks/useMRT_DisplayColumns.d.ts +9 -0
  49. package/dist/types/hooks/useMRT_Effects.d.ts +2 -0
  50. package/dist/types/hooks/useMRT_TableInstance.d.ts +2 -0
  51. package/dist/types/hooks/useMRT_TableOptions.d.ts +22 -0
  52. package/dist/types/icons.d.ts +36 -0
  53. package/dist/types/index.d.ts +18 -0
  54. package/dist/types/inputs/MRT_EditCellTextField.d.ts +8 -0
  55. package/dist/types/inputs/MRT_FilterCheckbox.d.ts +8 -0
  56. package/dist/types/inputs/MRT_FilterRangeFields.d.ts +8 -0
  57. package/dist/types/inputs/MRT_FilterRangeSlider.d.ts +8 -0
  58. package/dist/types/inputs/MRT_FilterTextField.d.ts +9 -0
  59. package/dist/types/inputs/MRT_GlobalFilterTextField.d.ts +7 -0
  60. package/dist/types/inputs/MRT_SelectCheckbox.d.ts +9 -0
  61. package/dist/types/inputs/index.d.ts +7 -0
  62. package/{locales → dist/types/locales}/ar.d.ts +0 -1
  63. package/{locales → dist/types/locales}/az.d.ts +0 -1
  64. package/{locales → dist/types/locales}/bg.d.ts +0 -1
  65. package/{locales → dist/types/locales}/cs.d.ts +0 -1
  66. package/{locales → dist/types/locales}/da.d.ts +0 -1
  67. package/{locales → dist/types/locales}/de.d.ts +0 -1
  68. package/{locales → dist/types/locales}/en.d.ts +0 -1
  69. package/{locales → dist/types/locales}/es.d.ts +0 -1
  70. package/{locales → dist/types/locales}/et.d.ts +0 -1
  71. package/{locales → dist/types/locales}/fa.d.ts +0 -1
  72. package/{locales → dist/types/locales}/fi.d.ts +0 -1
  73. package/{locales → dist/types/locales}/fr.d.ts +0 -1
  74. package/{locales → dist/types/locales}/hu.d.ts +0 -1
  75. package/{locales → dist/types/locales}/hy.d.ts +0 -1
  76. package/{locales → dist/types/locales}/id.d.ts +0 -1
  77. package/{locales → dist/types/locales}/it.d.ts +0 -1
  78. package/{locales → dist/types/locales}/ja.d.ts +0 -1
  79. package/{locales → dist/types/locales}/ko.d.ts +0 -1
  80. package/{locales → dist/types/locales}/nl.d.ts +0 -1
  81. package/{locales → dist/types/locales}/no.d.ts +0 -1
  82. package/{locales → dist/types/locales}/np.d.ts +0 -1
  83. package/{locales → dist/types/locales}/pl.d.ts +0 -1
  84. package/{locales → dist/types/locales}/pt-BR.d.ts +0 -1
  85. package/{locales → dist/types/locales}/pt.d.ts +0 -1
  86. package/{locales → dist/types/locales}/ro.d.ts +0 -1
  87. package/{locales → dist/types/locales}/ru.d.ts +0 -1
  88. package/{locales → dist/types/locales}/sk.d.ts +0 -1
  89. package/{locales → dist/types/locales}/sr-Cyrl-RS.d.ts +0 -1
  90. package/{locales → dist/types/locales}/sr-Latn-RS.d.ts +0 -1
  91. package/{locales → dist/types/locales}/sv.d.ts +0 -1
  92. package/{locales → dist/types/locales}/tr.d.ts +0 -1
  93. package/{locales → dist/types/locales}/uk.d.ts +0 -1
  94. package/{locales → dist/types/locales}/vi.d.ts +0 -1
  95. package/{locales → dist/types/locales}/zh-Hans.d.ts +0 -1
  96. package/{locales → dist/types/locales}/zh-Hant.d.ts +0 -1
  97. package/dist/types/menus/MRT_ColumnActionMenu.d.ts +20 -0
  98. package/dist/types/menus/MRT_FilterOptionMenu.d.ts +13 -0
  99. package/dist/types/menus/MRT_RowActionMenu.d.ts +12 -0
  100. package/dist/types/menus/MRT_ShowHideColumnsMenu.d.ts +10 -0
  101. package/dist/types/menus/MRT_ShowHideColumnsMenuItems.d.ts +12 -0
  102. package/dist/types/menus/index.d.ts +5 -0
  103. package/dist/types/modals/MRT_EditRowModal.d.ts +8 -0
  104. package/dist/types/modals/index.d.ts +1 -0
  105. package/dist/types/sortingFns.d.ts +12 -0
  106. package/dist/types/style.utils.d.ts +32 -0
  107. package/dist/types/table/MRT_Table.d.ts +7 -0
  108. package/dist/types/table/MRT_TableContainer.d.ts +7 -0
  109. package/dist/types/table/MRT_TableLoadingOverlay.d.ts +7 -0
  110. package/dist/types/table/MRT_TablePaper.d.ts +7 -0
  111. package/dist/types/table/index.d.ts +5 -0
  112. package/dist/types/toolbar/MRT_BottomToolbar.d.ts +7 -0
  113. package/dist/types/toolbar/MRT_LinearProgressBar.d.ts +8 -0
  114. package/dist/types/toolbar/MRT_TablePagination.d.ts +11 -0
  115. package/dist/types/toolbar/MRT_ToolbarAlertBanner.d.ts +8 -0
  116. package/dist/types/toolbar/MRT_ToolbarDropZone.d.ts +7 -0
  117. package/dist/types/toolbar/MRT_ToolbarInternalButtons.d.ts +7 -0
  118. package/dist/types/toolbar/MRT_TopToolbar.d.ts +6 -0
  119. package/dist/types/toolbar/index.d.ts +7 -0
  120. package/dist/types/types.d.ts +844 -0
  121. package/dist/types/useMaterialReactTable.d.ts +2 -0
  122. package/locales/ar/index.d.ts +3 -0
  123. package/locales/ar/index.esm.d.ts +3 -0
  124. package/locales/{ar.js → ar/index.js} +2 -0
  125. package/locales/ar/package.json +6 -0
  126. package/locales/az/index.d.ts +3 -0
  127. package/locales/az/index.esm.d.ts +3 -0
  128. package/locales/{az.js → az/index.js} +2 -0
  129. package/locales/az/package.json +6 -0
  130. package/locales/bg/index.d.ts +3 -0
  131. package/locales/bg/index.esm.d.ts +3 -0
  132. package/locales/{bg.js → bg/index.js} +2 -0
  133. package/locales/bg/package.json +6 -0
  134. package/locales/cs/index.d.ts +3 -0
  135. package/locales/cs/index.esm.d.ts +3 -0
  136. package/locales/{cs.js → cs/index.js} +2 -0
  137. package/locales/cs/package.json +6 -0
  138. package/locales/da/index.d.ts +3 -0
  139. package/locales/da/index.esm.d.ts +3 -0
  140. package/locales/{da.js → da/index.js} +2 -0
  141. package/locales/da/package.json +6 -0
  142. package/locales/de/index.d.ts +3 -0
  143. package/locales/de/index.esm.d.ts +3 -0
  144. package/locales/{de.js → de/index.js} +2 -0
  145. package/locales/de/package.json +6 -0
  146. package/locales/en/index.d.ts +3 -0
  147. package/locales/en/index.esm.d.ts +3 -0
  148. package/locales/{en.js → en/index.js} +2 -0
  149. package/locales/en/package.json +6 -0
  150. package/locales/es/index.d.ts +3 -0
  151. package/locales/es/index.esm.d.ts +3 -0
  152. package/locales/{es.js → es/index.js} +2 -0
  153. package/locales/es/package.json +6 -0
  154. package/locales/et/index.d.ts +3 -0
  155. package/locales/et/index.esm.d.ts +3 -0
  156. package/locales/{et.js → et/index.js} +2 -0
  157. package/locales/et/package.json +6 -0
  158. package/locales/fa/index.d.ts +3 -0
  159. package/locales/fa/index.esm.d.ts +3 -0
  160. package/locales/{fa.js → fa/index.js} +2 -0
  161. package/locales/fa/package.json +6 -0
  162. package/locales/fi/index.d.ts +3 -0
  163. package/locales/fi/index.esm.d.ts +3 -0
  164. package/locales/{fi.js → fi/index.js} +2 -0
  165. package/locales/fi/package.json +6 -0
  166. package/locales/fr/index.d.ts +3 -0
  167. package/locales/fr/index.esm.d.ts +3 -0
  168. package/locales/{fr.js → fr/index.js} +2 -0
  169. package/locales/fr/package.json +6 -0
  170. package/locales/hu/index.d.ts +3 -0
  171. package/locales/hu/index.esm.d.ts +3 -0
  172. package/locales/{hu.js → hu/index.js} +2 -0
  173. package/locales/hu/package.json +6 -0
  174. package/locales/hy/index.d.ts +3 -0
  175. package/locales/hy/index.esm.d.ts +3 -0
  176. package/locales/{hy.js → hy/index.js} +2 -0
  177. package/locales/hy/package.json +6 -0
  178. package/locales/id/index.d.ts +3 -0
  179. package/locales/id/index.esm.d.ts +3 -0
  180. package/locales/{id.js → id/index.js} +2 -0
  181. package/locales/id/package.json +6 -0
  182. package/locales/it/index.d.ts +3 -0
  183. package/locales/it/index.esm.d.ts +3 -0
  184. package/locales/{it.js → it/index.js} +2 -0
  185. package/locales/it/package.json +6 -0
  186. package/locales/ja/index.d.ts +3 -0
  187. package/locales/ja/index.esm.d.ts +3 -0
  188. package/locales/{ja.js → ja/index.js} +2 -0
  189. package/locales/ja/package.json +6 -0
  190. package/locales/ko/index.d.ts +3 -0
  191. package/locales/ko/index.esm.d.ts +3 -0
  192. package/locales/{ko.js → ko/index.js} +2 -0
  193. package/locales/ko/package.json +6 -0
  194. package/locales/nl/index.d.ts +3 -0
  195. package/locales/nl/index.esm.d.ts +3 -0
  196. package/locales/{nl.js → nl/index.js} +2 -0
  197. package/locales/nl/package.json +6 -0
  198. package/locales/no/index.d.ts +3 -0
  199. package/locales/no/index.esm.d.ts +3 -0
  200. package/locales/{no.js → no/index.js} +2 -0
  201. package/locales/no/package.json +6 -0
  202. package/locales/np/index.d.ts +3 -0
  203. package/locales/np/index.esm.d.ts +3 -0
  204. package/locales/{np.js → np/index.js} +2 -0
  205. package/locales/np/package.json +6 -0
  206. package/locales/pl/index.d.ts +3 -0
  207. package/locales/pl/index.esm.d.ts +3 -0
  208. package/locales/{pl.js → pl/index.js} +2 -0
  209. package/locales/pl/package.json +6 -0
  210. package/locales/pt/index.d.ts +3 -0
  211. package/locales/pt/index.esm.d.ts +3 -0
  212. package/locales/{pt.js → pt/index.js} +2 -0
  213. package/locales/pt/package.json +6 -0
  214. package/locales/pt-BR/index.d.ts +3 -0
  215. package/locales/pt-BR/index.esm.d.ts +3 -0
  216. package/locales/{pt-BR.js → pt-BR/index.js} +2 -0
  217. package/locales/pt-BR/package.json +6 -0
  218. package/locales/ro/index.d.ts +3 -0
  219. package/locales/ro/index.esm.d.ts +3 -0
  220. package/locales/{ro.js → ro/index.js} +2 -0
  221. package/locales/ro/package.json +6 -0
  222. package/locales/ru/index.d.ts +3 -0
  223. package/locales/ru/index.esm.d.ts +3 -0
  224. package/locales/{ru.js → ru/index.js} +2 -0
  225. package/locales/ru/package.json +6 -0
  226. package/locales/sk/index.d.ts +3 -0
  227. package/locales/sk/index.esm.d.ts +3 -0
  228. package/locales/{sk.js → sk/index.js} +2 -0
  229. package/locales/sk/package.json +6 -0
  230. package/locales/sr-Cyrl-RS/index.d.ts +3 -0
  231. package/locales/sr-Cyrl-RS/index.esm.d.ts +3 -0
  232. package/locales/{sr-Cyrl-RS.js → sr-Cyrl-RS/index.js} +2 -0
  233. package/locales/sr-Cyrl-RS/package.json +6 -0
  234. package/locales/sr-Latn-RS/index.d.ts +3 -0
  235. package/locales/sr-Latn-RS/index.esm.d.ts +3 -0
  236. package/locales/{sr-Latn-RS.js → sr-Latn-RS/index.js} +2 -0
  237. package/locales/sr-Latn-RS/package.json +6 -0
  238. package/locales/sv/index.d.ts +3 -0
  239. package/locales/sv/index.esm.d.ts +3 -0
  240. package/locales/{sv.js → sv/index.js} +2 -0
  241. package/locales/sv/package.json +6 -0
  242. package/locales/tr/index.d.ts +3 -0
  243. package/locales/tr/index.esm.d.ts +3 -0
  244. package/locales/{tr.js → tr/index.js} +2 -0
  245. package/locales/tr/package.json +6 -0
  246. package/locales/uk/index.d.ts +3 -0
  247. package/locales/uk/index.esm.d.ts +3 -0
  248. package/locales/{uk.js → uk/index.js} +2 -0
  249. package/locales/uk/package.json +6 -0
  250. package/locales/vi/index.d.ts +3 -0
  251. package/locales/vi/index.esm.d.ts +3 -0
  252. package/locales/{vi.js → vi/index.js} +2 -0
  253. package/locales/vi/package.json +6 -0
  254. package/locales/zh-Hans/index.d.ts +3 -0
  255. package/locales/zh-Hans/index.esm.d.ts +3 -0
  256. package/locales/{zh-Hans.mjs → zh-Hans/index.esm.js} +3 -3
  257. package/locales/{zh-Hans.js → zh-Hans/index.js} +5 -3
  258. package/locales/zh-Hans/package.json +6 -0
  259. package/locales/zh-Hant/index.d.ts +3 -0
  260. package/locales/zh-Hant/index.esm.d.ts +3 -0
  261. package/locales/{zh-Hant.js → zh-Hant/index.js} +2 -0
  262. package/locales/zh-Hant/package.json +6 -0
  263. package/package.json +25 -210
  264. package/src/body/MRT_TableBodyCell.tsx +2 -2
  265. package/src/body/MRT_TableBodyCellValue.tsx +1 -1
  266. package/src/column.utils.ts +17 -0
  267. package/src/hooks/index.ts +4 -0
  268. package/src/hooks/useMRT_TableOptions.ts +2 -2
  269. package/src/index.ts +1 -0
  270. package/src/inputs/MRT_EditCellTextField.tsx +20 -30
  271. package/src/inputs/MRT_FilterTextField.tsx +39 -51
  272. package/src/locales/zh-Hans.ts +3 -3
  273. package/src/table/MRT_TablePaper.tsx +6 -6
  274. package/src/types.ts +23 -4
  275. package/dist/cjs/index.js.map +0 -1
  276. package/dist/esm/material-react-table.esm.js.map +0 -1
  277. /package/locales/{ar.mjs → ar/index.esm.js} +0 -0
  278. /package/locales/{az.mjs → az/index.esm.js} +0 -0
  279. /package/locales/{bg.mjs → bg/index.esm.js} +0 -0
  280. /package/locales/{cs.mjs → cs/index.esm.js} +0 -0
  281. /package/locales/{da.mjs → da/index.esm.js} +0 -0
  282. /package/locales/{de.mjs → de/index.esm.js} +0 -0
  283. /package/locales/{en.mjs → en/index.esm.js} +0 -0
  284. /package/locales/{es.mjs → es/index.esm.js} +0 -0
  285. /package/locales/{et.mjs → et/index.esm.js} +0 -0
  286. /package/locales/{fa.mjs → fa/index.esm.js} +0 -0
  287. /package/locales/{fi.mjs → fi/index.esm.js} +0 -0
  288. /package/locales/{fr.mjs → fr/index.esm.js} +0 -0
  289. /package/locales/{hu.mjs → hu/index.esm.js} +0 -0
  290. /package/locales/{hy.mjs → hy/index.esm.js} +0 -0
  291. /package/locales/{id.mjs → id/index.esm.js} +0 -0
  292. /package/locales/{it.mjs → it/index.esm.js} +0 -0
  293. /package/locales/{ja.mjs → ja/index.esm.js} +0 -0
  294. /package/locales/{ko.mjs → ko/index.esm.js} +0 -0
  295. /package/locales/{nl.mjs → nl/index.esm.js} +0 -0
  296. /package/locales/{no.mjs → no/index.esm.js} +0 -0
  297. /package/locales/{np.mjs → np/index.esm.js} +0 -0
  298. /package/locales/{pl.mjs → pl/index.esm.js} +0 -0
  299. /package/locales/{pt.mjs → pt/index.esm.js} +0 -0
  300. /package/locales/{pt-BR.mjs → pt-BR/index.esm.js} +0 -0
  301. /package/locales/{ro.mjs → ro/index.esm.js} +0 -0
  302. /package/locales/{ru.mjs → ru/index.esm.js} +0 -0
  303. /package/locales/{sk.mjs → sk/index.esm.js} +0 -0
  304. /package/locales/{sr-Cyrl-RS.mjs → sr-Cyrl-RS/index.esm.js} +0 -0
  305. /package/locales/{sr-Latn-RS.mjs → sr-Latn-RS/index.esm.js} +0 -0
  306. /package/locales/{sv.mjs → sv/index.esm.js} +0 -0
  307. /package/locales/{tr.mjs → tr/index.esm.js} +0 -0
  308. /package/locales/{uk.mjs → uk/index.esm.js} +0 -0
  309. /package/locales/{vi.mjs → vi/index.esm.js} +0 -0
  310. /package/locales/{zh-Hant.mjs → zh-Hant/index.esm.js} +0 -0
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
+ "sideEffects": false,
5
+ "types": "index.d.ts"
6
+ }
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_PT_BR: MRT_Localization;
3
+
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_PT_BR: MRT_Localization;
3
+
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_PT_BR = {
4
6
  actions: 'Ações',
5
7
  and: 'e',
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
+ "sideEffects": false,
5
+ "types": "index.d.ts"
6
+ }
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_RO: MRT_Localization;
3
+
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_RO: MRT_Localization;
3
+
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_RO = {
4
6
  actions: 'Acțiuni',
5
7
  and: 'și',
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
+ "sideEffects": false,
5
+ "types": "index.d.ts"
6
+ }
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_RU: MRT_Localization;
3
+
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_RU: MRT_Localization;
3
+
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_RU = {
4
6
  actions: 'Действия',
5
7
  and: 'и',
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
+ "sideEffects": false,
5
+ "types": "index.d.ts"
6
+ }
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_SK: MRT_Localization;
3
+
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_SK: MRT_Localization;
3
+
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_SK = {
4
6
  actions: 'Akcie',
5
7
  and: 'a',
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
+ "sideEffects": false,
5
+ "types": "index.d.ts"
6
+ }
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_SR_CYRL_RS: MRT_Localization;
3
+
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_SR_CYRL_RS: MRT_Localization;
3
+
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_SR_CYRL_RS = {
4
6
  actions: 'Акције',
5
7
  and: 'и',
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
+ "sideEffects": false,
5
+ "types": "index.d.ts"
6
+ }
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_SR_LATN_RS: MRT_Localization;
3
+
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_SR_LATN_RS: MRT_Localization;
3
+
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_SR_LATN_RS = {
4
6
  actions: 'Akcije',
5
7
  and: 'i',
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
+ "sideEffects": false,
5
+ "types": "index.d.ts"
6
+ }
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_SV: MRT_Localization;
3
+
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_SV: MRT_Localization;
3
+
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_SV = {
4
6
  actions: 'Åtgärder',
5
7
  and: 'och',
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
+ "sideEffects": false,
5
+ "types": "index.d.ts"
6
+ }
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_TR: MRT_Localization;
3
+
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_TR: MRT_Localization;
3
+
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_TR = {
4
6
  actions: 'İşlemler',
5
7
  and: 've',
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
+ "sideEffects": false,
5
+ "types": "index.d.ts"
6
+ }
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_UK: MRT_Localization;
3
+
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_UK: MRT_Localization;
3
+
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_UK = {
4
6
  actions: 'Дії',
5
7
  and: 'і',
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
+ "sideEffects": false,
5
+ "types": "index.d.ts"
6
+ }
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_VI: MRT_Localization;
3
+
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_VI: MRT_Localization;
3
+
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_VI = {
4
6
  actions: 'Thao tác',
5
7
  and: 'và',
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
+ "sideEffects": false,
5
+ "types": "index.d.ts"
6
+ }
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_ZH_HANS: MRT_Localization;
3
+
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_ZH_HANS: MRT_Localization;
3
+
@@ -1,5 +1,5 @@
1
1
  const MRT_Localization_ZH_HANS = {
2
- actions: '动作',
2
+ actions: '操作',
3
3
  and: '与',
4
4
  cancel: '取消',
5
5
  changeFilterMode: '更改过滤模式',
@@ -10,7 +10,7 @@ const MRT_Localization_ZH_HANS = {
10
10
  clickToCopy: '点击以复制',
11
11
  collapse: '折叠',
12
12
  collapseAll: '全部折叠',
13
- columnActions: '列动作',
13
+ columnActions: '列操作',
14
14
  copiedToClipboard: '已复制至剪贴板',
15
15
  dropToGroupBy: '拖放以按 {column} 分组',
16
16
  edit: '编辑',
@@ -62,7 +62,7 @@ const MRT_Localization_ZH_HANS = {
62
62
  pinToRight: '固定至右边',
63
63
  resetColumnSize: '重置列大小',
64
64
  resetOrder: '重置排序',
65
- rowActions: '行动作',
65
+ rowActions: '行操作',
66
66
  rowNumber: '#',
67
67
  rowNumbers: '行号码',
68
68
  rowsPerPage: '每页行数',
@@ -1,7 +1,9 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_ZH_HANS = {
4
- actions: '动作',
6
+ actions: '操作',
5
7
  and: '与',
6
8
  cancel: '取消',
7
9
  changeFilterMode: '更改过滤模式',
@@ -12,7 +14,7 @@ const MRT_Localization_ZH_HANS = {
12
14
  clickToCopy: '点击以复制',
13
15
  collapse: '折叠',
14
16
  collapseAll: '全部折叠',
15
- columnActions: '列动作',
17
+ columnActions: '列操作',
16
18
  copiedToClipboard: '已复制至剪贴板',
17
19
  dropToGroupBy: '拖放以按 {column} 分组',
18
20
  edit: '编辑',
@@ -64,7 +66,7 @@ const MRT_Localization_ZH_HANS = {
64
66
  pinToRight: '固定至右边',
65
67
  resetColumnSize: '重置列大小',
66
68
  resetOrder: '重置排序',
67
- rowActions: '行动作',
69
+ rowActions: '行操作',
68
70
  rowNumber: '#',
69
71
  rowNumbers: '行号码',
70
72
  rowsPerPage: '每页行数',
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
+ "sideEffects": false,
5
+ "types": "index.d.ts"
6
+ }
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_ZH_HANT: MRT_Localization;
3
+
@@ -0,0 +1,3 @@
1
+ import { type MRT_Localization } from '../..';
2
+ export declare const MRT_Localization_ZH_HANT: MRT_Localization;
3
+
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_ZH_HANT = {
4
6
  actions: '動作',
5
7
  and: '與',
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
+ "sideEffects": false,
5
+ "types": "index.d.ts"
6
+ }