material-react-table 2.0.0-beta.10 → 2.0.0-beta.12
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/index.esm.js +17 -14
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +258 -168
- package/dist/index.js.map +1 -1
- package/locales/ar.js +2 -0
- package/locales/az.js +2 -0
- package/locales/bg.js +2 -0
- package/locales/cs.js +2 -0
- package/locales/da.js +2 -0
- package/locales/de.js +2 -0
- package/locales/en.js +2 -0
- package/locales/es.js +2 -0
- package/locales/et.js +2 -0
- package/locales/fa.js +2 -0
- package/locales/fi.js +2 -0
- package/locales/fr.js +2 -0
- package/locales/hu.js +2 -0
- package/locales/hy.js +2 -0
- package/locales/id.js +2 -0
- package/locales/it.js +2 -0
- package/locales/ja.js +2 -0
- package/locales/ko.js +2 -0
- package/locales/nl.js +2 -0
- package/locales/no.js +2 -0
- package/locales/np.js +2 -0
- package/locales/pl.js +2 -0
- package/locales/pt-BR.js +2 -0
- package/locales/pt.js +2 -0
- package/locales/ro.js +2 -0
- package/locales/ru.js +2 -0
- package/locales/sk.js +2 -0
- package/locales/sr-Cyrl-RS.js +2 -0
- package/locales/sr-Latn-RS.js +2 -0
- package/locales/sv.js +2 -0
- package/locales/tr.js +2 -0
- package/locales/uk.js +2 -0
- package/locales/vi.js +2 -0
- package/locales/zh-Hans.js +2 -0
- package/locales/zh-Hant.js +2 -0
- package/package.json +21 -20
package/dist/index.esm.js
CHANGED
@@ -103,20 +103,23 @@ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
103
103
|
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
104
104
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
105
105
|
PERFORMANCE OF THIS SOFTWARE.
|
106
|
-
***************************************************************************** */
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
}
|
117
|
-
|
118
|
-
|
119
|
-
|
106
|
+
***************************************************************************** */
|
107
|
+
|
108
|
+
function __rest(s, e) {
|
109
|
+
var t = {};
|
110
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
111
|
+
t[p] = s[p];
|
112
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
113
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
114
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
115
|
+
t[p[i]] = s[p[i]];
|
116
|
+
}
|
117
|
+
return t;
|
118
|
+
}
|
119
|
+
|
120
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
121
|
+
var e = new Error(message);
|
122
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
120
123
|
};
|
121
124
|
|
122
125
|
const getColumnId = (columnDef) => { var _a, _b, _c, _d; return (_d = (_a = columnDef.id) !== null && _a !== void 0 ? _a : (_c = (_b = columnDef.accessorKey) === null || _b === void 0 ? void 0 : _b.toString) === null || _c === void 0 ? void 0 : _c.call(_b)) !== null && _d !== void 0 ? _d : columnDef.header; };
|