react-table-edit 1.2.20 → 1.2.21
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.css +66 -0
- package/dist/index.d.mts +3 -4
- package/dist/index.d.ts +3 -4
- package/dist/index.js +26846 -990
- package/dist/index.mjs +26866 -1002
- package/package.json +9 -9
package/dist/index.css
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/* node_modules/react-resizable/css/styles.css */
|
|
2
|
+
.react-resizable {
|
|
3
|
+
position: relative;
|
|
4
|
+
}
|
|
5
|
+
.react-resizable-handle {
|
|
6
|
+
position: absolute;
|
|
7
|
+
width: 20px;
|
|
8
|
+
height: 20px;
|
|
9
|
+
background-repeat: no-repeat;
|
|
10
|
+
background-origin: content-box;
|
|
11
|
+
box-sizing: border-box;
|
|
12
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2IDYiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iNnB4Ij48ZyBvcGFjaXR5PSIwLjMwMiI+PHBhdGggZD0iTSA2IDYgTCAwIDYgTCAwIDQuMiBMIDQgNC4yIEwgNC4yIDQuMiBMIDQuMiAwIEwgNiAwIEwgNiA2IEwgNiA2IFoiIGZpbGw9IiMwMDAwMDAiLz48L2c+PC9zdmc+);
|
|
13
|
+
background-position: bottom right;
|
|
14
|
+
padding: 0 3px 3px 0;
|
|
15
|
+
}
|
|
16
|
+
.react-resizable-handle-sw {
|
|
17
|
+
bottom: 0;
|
|
18
|
+
left: 0;
|
|
19
|
+
cursor: sw-resize;
|
|
20
|
+
transform: rotate(90deg);
|
|
21
|
+
}
|
|
22
|
+
.react-resizable-handle-se {
|
|
23
|
+
bottom: 0;
|
|
24
|
+
right: 0;
|
|
25
|
+
cursor: se-resize;
|
|
26
|
+
}
|
|
27
|
+
.react-resizable-handle-nw {
|
|
28
|
+
top: 0;
|
|
29
|
+
left: 0;
|
|
30
|
+
cursor: nw-resize;
|
|
31
|
+
transform: rotate(180deg);
|
|
32
|
+
}
|
|
33
|
+
.react-resizable-handle-ne {
|
|
34
|
+
top: 0;
|
|
35
|
+
right: 0;
|
|
36
|
+
cursor: ne-resize;
|
|
37
|
+
transform: rotate(270deg);
|
|
38
|
+
}
|
|
39
|
+
.react-resizable-handle-w,
|
|
40
|
+
.react-resizable-handle-e {
|
|
41
|
+
top: 50%;
|
|
42
|
+
margin-top: -10px;
|
|
43
|
+
cursor: ew-resize;
|
|
44
|
+
}
|
|
45
|
+
.react-resizable-handle-w {
|
|
46
|
+
left: 0;
|
|
47
|
+
transform: rotate(135deg);
|
|
48
|
+
}
|
|
49
|
+
.react-resizable-handle-e {
|
|
50
|
+
right: 0;
|
|
51
|
+
transform: rotate(315deg);
|
|
52
|
+
}
|
|
53
|
+
.react-resizable-handle-n,
|
|
54
|
+
.react-resizable-handle-s {
|
|
55
|
+
left: 50%;
|
|
56
|
+
margin-left: -10px;
|
|
57
|
+
cursor: ns-resize;
|
|
58
|
+
}
|
|
59
|
+
.react-resizable-handle-n {
|
|
60
|
+
top: 0;
|
|
61
|
+
transform: rotate(225deg);
|
|
62
|
+
}
|
|
63
|
+
.react-resizable-handle-s {
|
|
64
|
+
bottom: 0;
|
|
65
|
+
transform: rotate(45deg);
|
|
66
|
+
}
|
package/dist/index.d.mts
CHANGED
|
@@ -72,13 +72,13 @@ type ISettingFormElement = {
|
|
|
72
72
|
labelSize?: 'label-small' | 'label-medium' | 'label-large';
|
|
73
73
|
menuWidth?: number;
|
|
74
74
|
menuHeight?: number;
|
|
75
|
-
onFormOpen?: any;
|
|
76
|
-
onFormSubmit?: any;
|
|
77
75
|
displayValue?: any;
|
|
78
76
|
footerTemplate?: any;
|
|
79
|
-
onChangeField?: any;
|
|
80
77
|
openOnFocus?: boolean;
|
|
81
78
|
isClearable?: boolean;
|
|
79
|
+
onChangeField?: any;
|
|
80
|
+
onFormOpen?: any;
|
|
81
|
+
onFormSubmit?: any;
|
|
82
82
|
};
|
|
83
83
|
type ISettingSelectElement = {
|
|
84
84
|
isClearable?: boolean;
|
|
@@ -131,7 +131,6 @@ type IColumnTable = {
|
|
|
131
131
|
template?: any;
|
|
132
132
|
commandItems?: ICommandItem[];
|
|
133
133
|
editTypeCondition?: any;
|
|
134
|
-
onPaste?: any;
|
|
135
134
|
onPasteValidate?: any;
|
|
136
135
|
placeholder?: string;
|
|
137
136
|
numericSettings?: ISettingNumericElement;
|
package/dist/index.d.ts
CHANGED
|
@@ -72,13 +72,13 @@ type ISettingFormElement = {
|
|
|
72
72
|
labelSize?: 'label-small' | 'label-medium' | 'label-large';
|
|
73
73
|
menuWidth?: number;
|
|
74
74
|
menuHeight?: number;
|
|
75
|
-
onFormOpen?: any;
|
|
76
|
-
onFormSubmit?: any;
|
|
77
75
|
displayValue?: any;
|
|
78
76
|
footerTemplate?: any;
|
|
79
|
-
onChangeField?: any;
|
|
80
77
|
openOnFocus?: boolean;
|
|
81
78
|
isClearable?: boolean;
|
|
79
|
+
onChangeField?: any;
|
|
80
|
+
onFormOpen?: any;
|
|
81
|
+
onFormSubmit?: any;
|
|
82
82
|
};
|
|
83
83
|
type ISettingSelectElement = {
|
|
84
84
|
isClearable?: boolean;
|
|
@@ -131,7 +131,6 @@ type IColumnTable = {
|
|
|
131
131
|
template?: any;
|
|
132
132
|
commandItems?: ICommandItem[];
|
|
133
133
|
editTypeCondition?: any;
|
|
134
|
-
onPaste?: any;
|
|
135
134
|
onPasteValidate?: any;
|
|
136
135
|
placeholder?: string;
|
|
137
136
|
numericSettings?: ISettingNumericElement;
|