@ianicdev/datatables2 0.4.2 → 0.4.3
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/lib/index.d.ts +2 -3
- package/lib/locale/index.d.ts +15 -14
- package/package.json +3 -2
package/lib/index.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
}
|
|
1
|
+
// lib/index.d.ts
|
|
2
|
+
export function useCellRendererFrameworks(): any;
|
package/lib/locale/index.d.ts
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
// lib/locale/index.d.ts
|
|
2
|
+
export const el: {
|
|
3
|
+
[key: string]: any;
|
|
4
|
+
};
|
|
5
|
+
|
|
6
|
+
export const en: {
|
|
7
|
+
[key: string]: any;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
declare const defaultExport: {
|
|
11
|
+
el: typeof el;
|
|
12
|
+
en: typeof en;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export default defaultExport;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ianicdev/datatables2",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"types": "./lib/index.d.ts",
|
|
6
6
|
"publishConfig": {
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"./styles.css": "./dist/style.css",
|
|
17
17
|
"./locale": {
|
|
18
18
|
"types": "./lib/locale/index.d.ts",
|
|
19
|
-
"import": "./lib/locale/index.js"
|
|
19
|
+
"import": "./lib/locale/index.js",
|
|
20
|
+
"require": "./lib/locale/index.js"
|
|
20
21
|
}
|
|
21
22
|
},
|
|
22
23
|
"module": "./dist/datatables.js",
|