mig-schema-table 5.0.0 → 5.0.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.
- package/README.md +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -39,7 +39,7 @@ const userSchema = {
|
|
|
39
39
|
```typescript jsx
|
|
40
40
|
import React from "react";
|
|
41
41
|
import { SchemaTable, IColumnConfig } from "mig-schema-table";
|
|
42
|
-
import "mig-schema-table/dist/
|
|
42
|
+
import "mig-schema-table/dist/mig-schema-table.css";
|
|
43
43
|
// Add this for default datepicker styling
|
|
44
44
|
import "react-datepicker/dist/react-datepicker.css";
|
|
45
45
|
// Optionally add bootstrap5 styles
|
package/package.json
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mig-schema-table",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
7
7
|
],
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
+
"types": "./dist/component/index.d.ts",
|
|
10
11
|
"import": "./dist/mig-schema-table.es.js",
|
|
11
12
|
"require": "./dist/mig-schema-table.umd.js"
|
|
12
13
|
},
|
|
13
|
-
"./dist/
|
|
14
|
+
"./dist/mig-schema-table.css": "./dist/mig-schema-table.css"
|
|
14
15
|
},
|
|
15
16
|
"main": "./dist/mig-schema-table.umd.js",
|
|
16
17
|
"module": "./dist/mig-schema-table.es.js",
|