material-react-table 2.0.0-beta.8 → 2.0.0-rc.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.
Files changed (145) 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} +79 -83
  4. package/dist/index.esm.js.map +1 -0
  5. package/dist/{cjs/index.js → index.js} +298 -208
  6. package/dist/index.js.map +1 -0
  7. package/locales/ar/index.js +2 -0
  8. package/locales/ar/package.json +3 -11
  9. package/locales/az/index.js +2 -0
  10. package/locales/az/package.json +3 -11
  11. package/locales/bg/index.js +2 -0
  12. package/locales/bg/package.json +3 -11
  13. package/locales/cs/index.js +2 -0
  14. package/locales/cs/package.json +3 -11
  15. package/locales/da/index.js +2 -0
  16. package/locales/da/package.json +3 -11
  17. package/locales/de/index.js +2 -0
  18. package/locales/de/package.json +3 -11
  19. package/locales/en/index.js +2 -0
  20. package/locales/en/package.json +3 -11
  21. package/locales/es/index.js +2 -0
  22. package/locales/es/package.json +3 -11
  23. package/locales/et/index.js +2 -0
  24. package/locales/et/package.json +3 -11
  25. package/locales/fa/index.js +2 -0
  26. package/locales/fa/package.json +3 -11
  27. package/locales/fi/index.js +2 -0
  28. package/locales/fi/package.json +3 -11
  29. package/locales/fr/index.js +2 -0
  30. package/locales/fr/package.json +3 -11
  31. package/locales/hu/index.js +2 -0
  32. package/locales/hu/package.json +3 -11
  33. package/locales/hy/index.js +2 -0
  34. package/locales/hy/package.json +3 -11
  35. package/locales/id/index.js +2 -0
  36. package/locales/id/package.json +3 -11
  37. package/locales/it/index.js +2 -0
  38. package/locales/it/package.json +3 -11
  39. package/locales/ja/index.js +2 -0
  40. package/locales/ja/package.json +3 -11
  41. package/locales/ko/index.js +2 -0
  42. package/locales/ko/package.json +3 -11
  43. package/locales/nl/index.js +2 -0
  44. package/locales/nl/package.json +3 -11
  45. package/locales/no/index.js +2 -0
  46. package/locales/no/package.json +3 -11
  47. package/locales/np/index.js +2 -0
  48. package/locales/np/package.json +3 -11
  49. package/locales/pl/index.js +2 -0
  50. package/locales/pl/package.json +3 -11
  51. package/locales/pt/index.js +2 -0
  52. package/locales/pt/package.json +3 -11
  53. package/locales/pt-BR/index.js +2 -0
  54. package/locales/pt-BR/package.json +3 -11
  55. package/locales/ro/index.js +2 -0
  56. package/locales/ro/package.json +3 -11
  57. package/locales/ru/index.js +2 -0
  58. package/locales/ru/package.json +3 -11
  59. package/locales/sk/index.js +2 -0
  60. package/locales/sk/package.json +3 -11
  61. package/locales/sr-Cyrl-RS/index.js +2 -0
  62. package/locales/sr-Cyrl-RS/package.json +3 -11
  63. package/locales/sr-Latn-RS/index.js +2 -0
  64. package/locales/sr-Latn-RS/package.json +3 -11
  65. package/locales/sv/index.js +2 -0
  66. package/locales/sv/package.json +3 -11
  67. package/locales/tr/index.js +2 -0
  68. package/locales/tr/package.json +3 -11
  69. package/locales/uk/index.js +2 -0
  70. package/locales/uk/package.json +3 -11
  71. package/locales/vi/index.js +2 -0
  72. package/locales/vi/package.json +3 -11
  73. package/locales/zh-Hans/index.esm.js +18 -18
  74. package/locales/zh-Hans/index.js +20 -18
  75. package/locales/zh-Hans/package.json +3 -11
  76. package/locales/zh-Hant/index.js +2 -0
  77. package/locales/zh-Hant/package.json +3 -11
  78. package/package.json +25 -36
  79. package/src/body/MRT_TableBodyCell.tsx +2 -2
  80. package/src/buttons/MRT_ColumnPinningButtons.tsx +3 -3
  81. package/src/buttons/MRT_CopyButton.tsx +0 -1
  82. package/src/buttons/MRT_EditActionButtons.tsx +2 -2
  83. package/src/buttons/MRT_ExpandAllButton.tsx +0 -1
  84. package/src/buttons/MRT_ExpandButton.tsx +0 -1
  85. package/src/buttons/MRT_GrabHandleButton.tsx +0 -1
  86. package/src/buttons/MRT_RowPinButton.tsx +0 -1
  87. package/src/buttons/MRT_ShowHideColumnsButton.tsx +1 -1
  88. package/src/buttons/MRT_ToggleDensePaddingButton.tsx +1 -1
  89. package/src/buttons/MRT_ToggleFiltersButton.tsx +1 -1
  90. package/src/buttons/MRT_ToggleFullScreenButton.tsx +0 -1
  91. package/src/buttons/MRT_ToggleGlobalFilterButton.tsx +1 -1
  92. package/src/buttons/MRT_ToggleRowActionMenuButton.tsx +1 -2
  93. package/src/column.utils.ts +17 -0
  94. package/src/head/MRT_TableHeadCellColumnActionsButton.tsx +0 -1
  95. package/src/head/MRT_TableHeadCellFilterLabel.tsx +1 -1
  96. package/src/head/MRT_TableHeadCellSortLabel.tsx +1 -1
  97. package/src/hooks/index.ts +4 -0
  98. package/src/hooks/useMRT_TableOptions.ts +2 -2
  99. package/src/index.ts +1 -0
  100. package/src/inputs/MRT_EditCellTextField.tsx +20 -30
  101. package/src/inputs/MRT_FilterCheckbox.tsx +0 -1
  102. package/src/inputs/MRT_FilterTextField.tsx +41 -53
  103. package/src/inputs/MRT_GlobalFilterTextField.tsx +2 -2
  104. package/src/inputs/MRT_SelectCheckbox.tsx +0 -1
  105. package/src/locales/zh-Hans.ts +18 -18
  106. package/src/menus/MRT_ShowHideColumnsMenuItems.tsx +0 -1
  107. package/src/table/MRT_TablePaper.tsx +6 -6
  108. package/src/types.ts +23 -4
  109. package/dist/cjs/index.js.map +0 -1
  110. package/dist/esm/material-react-table.esm.js.map +0 -1
  111. package/locales/ar.js +0 -93
  112. package/locales/az.js +0 -93
  113. package/locales/bg.js +0 -93
  114. package/locales/cs.js +0 -93
  115. package/locales/da.js +0 -93
  116. package/locales/de.js +0 -93
  117. package/locales/en.js +0 -93
  118. package/locales/es.js +0 -93
  119. package/locales/et.js +0 -93
  120. package/locales/fa.js +0 -93
  121. package/locales/fi.js +0 -93
  122. package/locales/fr.js +0 -93
  123. package/locales/hu.js +0 -93
  124. package/locales/hy.js +0 -93
  125. package/locales/id.js +0 -93
  126. package/locales/it.js +0 -93
  127. package/locales/ja.js +0 -93
  128. package/locales/ko.js +0 -93
  129. package/locales/nl.js +0 -93
  130. package/locales/no.js +0 -93
  131. package/locales/np.js +0 -93
  132. package/locales/pl.js +0 -93
  133. package/locales/pt-BR.js +0 -93
  134. package/locales/pt.js +0 -93
  135. package/locales/ro.js +0 -93
  136. package/locales/ru.js +0 -93
  137. package/locales/sk.js +0 -93
  138. package/locales/sr-Cyrl-RS.js +0 -93
  139. package/locales/sr-Latn-RS.js +0 -93
  140. package/locales/sv.js +0 -93
  141. package/locales/tr.js +0 -93
  142. package/locales/uk.js +0 -93
  143. package/locales/vi.js +0 -93
  144. package/locales/zh-Hans.js +0 -93
  145. package/locales/zh-Hant.js +0 -93
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_AZ = {
4
6
  actions: 'Əməliyyatlar',
5
7
  and: 'və',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_BG = {
4
6
  actions: 'Действия',
5
7
  and: 'и',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_CS = {
4
6
  actions: 'Akce',
5
7
  and: 'a',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_DA = {
4
6
  actions: 'Handlinger',
5
7
  and: 'og',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_DE = {
4
6
  actions: 'Aktionen',
5
7
  and: 'und',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_EN = {
4
6
  actions: 'Actions',
5
7
  and: 'and',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_ES = {
4
6
  actions: 'Acciones',
5
7
  and: 'y',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_ET = {
4
6
  actions: 'Toimingud',
5
7
  and: 'ja',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_FA = {
4
6
  actions: 'عملیات',
5
7
  and: 'و',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_FI = {
4
6
  actions: 'Toiminnot',
5
7
  and: 'ja',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_FR = {
4
6
  actions: 'Actions',
5
7
  and: 'et',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_HU = {
4
6
  actions: 'Műveletek',
5
7
  and: 'és',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_HY = {
4
6
  actions: 'Գործողություններ',
5
7
  and: 'և',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_ID = {
4
6
  actions: 'Aksi',
5
7
  and: 'dan',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_IT = {
4
6
  actions: 'Azioni',
5
7
  and: 'e',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_JA = {
4
6
  actions: '操作',
5
7
  and: 'と',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_KO = {
4
6
  actions: '동작',
5
7
  and: '~',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_NL = {
4
6
  actions: 'Acties',
5
7
  and: 'en',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_NO = {
4
6
  cancel: 'Avbryt',
5
7
  actions: 'Handlinger',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_NP = {
4
6
  actions: 'कार्यहरू',
5
7
  and: 'तथा',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_PL = {
4
6
  actions: 'Akcje',
5
7
  and: 'i',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
3
5
  const MRT_Localization_PT = {
4
6
  actions: 'Ações',
5
7
  and: 'e',
@@ -1,14 +1,6 @@
1
1
  {
2
- "main": "./index.js",
3
- "module": "./index.esm.js",
2
+ "main": "index.js",
3
+ "module": "index.esm.js",
4
4
  "sideEffects": false,
5
- "types": "./index.d.ts",
6
- "exports": {
7
- ".": {
8
- "types": "./index.d.ts",
9
- "import": "./index.esm.js",
10
- "require": "./index.js"
11
- },
12
- "./package.json": "./package.json"
13
- }
5
+ "types": "index.d.ts"
14
6
  }
@@ -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',