es-grid-template 0.0.1 → 0.0.2

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/type.d.ts CHANGED
@@ -1,4 +1,5 @@
1
- import { TableProps, ColumnType as RcColumnType, ColumnGroupType as RcColumnGroupType } from "ui-rc";
1
+ import { TableProps } from "ui-rc";
2
+ import { ColumnType as RcColumnType, ColumnGroupType as RcColumnGroupType } from "ui-rc/dist/table";
2
3
  import { ReactElement, ReactNode } from "react";
3
4
  type IColumnType = "number" | "time" | "date" | "week" | "month" | "file" | "quarter" | "year" | "datetime" | "string" | "boolean" | "checkbox" | "color" | null | undefined;
4
5
  export interface ColumnGroupType<RecordType> extends Omit<RcColumnGroupType<RecordType>, 'children'> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "es-grid-template",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "React",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -38,8 +38,10 @@
38
38
  "@testing-library/react": "^14.2.1",
39
39
  "@types/jest": "^29.5.12",
40
40
  "@types/react": "^18.2.58",
41
+ "@types/react-resizable": "^3.0.7",
41
42
  "@typescript-eslint/eslint-plugin": "^5.39.0",
42
43
  "@typescript-eslint/parser": "^5.39.0",
44
+ "antd-style": "^3.7.1",
43
45
  "classnames": "^2.5.1",
44
46
  "eslint": "^8.25.0",
45
47
  "eslint-config-prettier": "^8.5.0",
@@ -51,9 +53,12 @@
51
53
  "jest-css-modules": "^2.1.0",
52
54
  "jest-environment-jsdom": "^29.7.0",
53
55
  "npm-run-all": "^4.1.5",
56
+ "postcss": "^8.4.35",
54
57
  "prettier": "^3.2.5",
55
58
  "react": "^18.2.0",
56
59
  "react-dom": "^18.2.0",
60
+ "react-numeric-component": "^1.0.7",
61
+ "react-resizable": "^3.0.5",
57
62
  "reactstrap": "^9.2.2",
58
63
  "rimraf": "^3.0.2",
59
64
  "rollup": "^2.56.2",
@@ -71,7 +76,8 @@
71
76
  "stylelint-prettier": "^5.0.0",
72
77
  "ts-jest": "^29.1.2",
73
78
  "tslib": "^2.6.2",
74
- "typescript": "^5.3.3"
79
+ "typescript": "^5.3.3",
80
+ "ui-rc": "^0.1.2"
75
81
  },
76
82
  "peerDependencies": {
77
83
  "react": ">=16.8.6",
@@ -81,11 +87,8 @@
81
87
  "access": "public"
82
88
  },
83
89
  "dependencies": {
84
- "@types/react-resizable": "^3.0.7",
85
- "antd-style": "^3.7.1",
86
- "postcss": "^8.4.35",
87
- "react-numeric-component": "^1.0.7",
88
- "react-resizable": "^3.0.5",
89
- "ui-rc": "^0.0.9"
90
+ "antd": "^5.24.1",
91
+ "dayjs": "^1.11.13",
92
+ "moment": "^2.30.1"
90
93
  }
91
94
  }