es-grid-template 1.5.10 → 1.5.13
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/es/index.d.ts +2 -0
- package/es/index.js +2 -1
- package/es/tabs/index.d.ts +4 -0
- package/es/tabs/index.js +2 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +8 -1
- package/lib/tabs/index.d.ts +4 -0
- package/lib/tabs/index.js +8 -0
- package/package.json +3 -3
package/es/index.d.ts
CHANGED
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
export { default as GridComponent } from './grid-component';
|
|
2
2
|
export type { ColumnsTable, TableProps, ColumnTable, CommandItem, ToolbarItem, ContextMenuItem } from './grid-component';
|
|
3
|
+
export { default as Tabs } from './tabs';
|
|
4
|
+
export type { TabPaneProps, TabsProps } from './tabs';
|
package/es/index.js
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export { default as GridComponent } from "./grid-component";
|
|
1
|
+
export { default as GridComponent } from "./grid-component";
|
|
2
|
+
export { default as Tabs } from "./tabs";
|
package/es/tabs/index.js
ADDED
package/lib/index.d.ts
CHANGED
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
export { default as GridComponent } from './grid-component';
|
|
2
2
|
export type { ColumnsTable, TableProps, ColumnTable, CommandItem, ToolbarItem, ContextMenuItem } from './grid-component';
|
|
3
|
+
export { default as Tabs } from './tabs';
|
|
4
|
+
export type { TabPaneProps, TabsProps } from './tabs';
|
package/lib/index.js
CHANGED
|
@@ -10,4 +10,11 @@ Object.defineProperty(exports, "GridComponent", {
|
|
|
10
10
|
return _gridComponent.default;
|
|
11
11
|
}
|
|
12
12
|
});
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "Tabs", {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function () {
|
|
16
|
+
return _tabs.default;
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
var _gridComponent = _interopRequireDefault(require("./grid-component"));
|
|
20
|
+
var _tabs = _interopRequireDefault(require("./tabs"));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "es-grid-template",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.13",
|
|
4
4
|
"description": "es-grid-template",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"rc-checkbox": "^3.5.0",
|
|
63
63
|
"rc-dropdown": "^4.2.1",
|
|
64
64
|
"rc-field-form": "^2.6.0",
|
|
65
|
-
"rc-master-ui": "^1.1.
|
|
65
|
+
"rc-master-ui": "^1.1.36",
|
|
66
66
|
"rc-select": "^14.16.3",
|
|
67
67
|
"rc-tooltip": "^6.3.0",
|
|
68
68
|
"rc-tree": "^5.10.1",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"react-numeric-component": "^1.0.7",
|
|
73
73
|
"react-resizable": "^3.0.5",
|
|
74
74
|
"react-tooltip": "^5.28.1",
|
|
75
|
-
"rimraf": "
|
|
75
|
+
"rimraf": "5.0.10",
|
|
76
76
|
"sass": "^1.81.0",
|
|
77
77
|
"styled-components": "^6.1.15",
|
|
78
78
|
"sweetalert2": "^11.4.14",
|