pixel-react 1.14.40 → 1.14.41
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/_virtual/index4.js +3 -5
- package/lib/_virtual/index4.js.map +1 -1
- package/lib/_virtual/index5.js +5 -3
- package/lib/_virtual/index5.js.map +1 -1
- package/lib/assets/icons/windows.svg.js +1 -1
- package/lib/assets/icons/windows.svg.js.map +1 -1
- package/lib/components/Comments/Comments.js +1 -1
- package/lib/components/Comments/Comments.js.map +1 -1
- package/lib/components/Excel/Data.d.ts +127 -0
- package/lib/components/Excel/Data.js +646 -0
- package/lib/components/Excel/Data.js.map +1 -0
- package/lib/components/Excel/Data2.d.ts +133 -0
- package/lib/components/Excel/Data2.js +698 -0
- package/lib/components/Excel/Data2.js.map +1 -0
- package/lib/components/Excel/ExcelContextMenu/ExcelContextMenu.d.ts +0 -1
- package/lib/components/Excel/ExcelContextMenu/ExcelContextMenu.js +3 -6
- package/lib/components/Excel/ExcelContextMenu/ExcelContextMenu.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFile.d.ts +8 -20
- package/lib/components/Excel/ExcelFile/ExcelFile.js +37 -31
- package/lib/components/Excel/ExcelFile/ExcelFile.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.d.ts +1 -12
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js +1 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.js +13 -9
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.js +14 -10
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +3 -12
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.js +17 -5
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/actions.d.ts +19 -12
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/actions.js +18 -12
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/actions.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducer.js +39 -21
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducer.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/types.d.ts +11 -6
- package/lib/components/Excel/Types.d.ts +1 -0
- package/lib/components/MultiSelect/MultiSelect.js +1 -1
- package/lib/components/MultiSelect/MultiSelect.js.map +1 -1
- package/lib/components/Table/Table.js +1 -1
- package/lib/components/Table/Table.js.map +1 -1
- package/lib/index.cjs +146 -98
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +29 -27
- package/lib/node_modules/input-format/modules/react/Input.js +1 -1
- package/lib/node_modules/js-beautify/js/src/css/beautifier.js +1 -1
- package/lib/node_modules/js-beautify/js/src/css/options.js +1 -1
- package/lib/node_modules/js-beautify/js/src/html/beautifier.js +1 -1
- package/lib/node_modules/js-beautify/js/src/html/options.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/beautifier.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/options.js +1 -1
- package/lib/node_modules/react-google-recaptcha/lib/esm/recaptcha.js +1 -1
- package/lib/node_modules/react-phone-number-input/modules/CountryIcon.js +1 -1
- package/lib/node_modules/react-phone-number-input/modules/CountrySelect.js +1 -1
- package/lib/node_modules/react-phone-number-input/modules/Flag.js +1 -1
- package/lib/node_modules/react-phone-number-input/modules/InputBasic.js +1 -1
- package/lib/node_modules/react-phone-number-input/modules/InputSmart.js +1 -1
- package/lib/node_modules/react-phone-number-input/modules/InternationalIcon.js +1 -1
- package/lib/node_modules/react-phone-number-input/modules/PhoneInputWithCountry.js +1 -1
- package/lib/node_modules/react-phone-number-input/modules/PhoneInputWithCountryDefault.js +1 -1
- package/lib/node_modules/react-phone-number-input/modules/PropTypes.js +1 -1
- package/lib/node_modules/use-context-selector/dist/index.js +1 -1
- package/lib/styles.css +1 -1
- package/lib/styles.css.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -0,0 +1,133 @@
|
|
1
|
+
export declare const Data2: {
|
2
|
+
sheetName: string;
|
3
|
+
data: (({
|
4
|
+
value: string;
|
5
|
+
style: {
|
6
|
+
name: string;
|
7
|
+
size: number;
|
8
|
+
bold: boolean;
|
9
|
+
italic: boolean;
|
10
|
+
underline: boolean;
|
11
|
+
color: string;
|
12
|
+
backgroundColor: string;
|
13
|
+
borderColor: string;
|
14
|
+
border: {
|
15
|
+
top: string;
|
16
|
+
right: string;
|
17
|
+
bottom: string;
|
18
|
+
left: string;
|
19
|
+
};
|
20
|
+
alignment: {
|
21
|
+
horizontal: string;
|
22
|
+
vertical: string;
|
23
|
+
wrapText: boolean;
|
24
|
+
};
|
25
|
+
};
|
26
|
+
readOnly: boolean;
|
27
|
+
inputType: {
|
28
|
+
type: string;
|
29
|
+
};
|
30
|
+
contextDisable: {
|
31
|
+
"Delete Column": boolean;
|
32
|
+
"Delete Row": boolean;
|
33
|
+
"Add Row Top": boolean;
|
34
|
+
};
|
35
|
+
} | {
|
36
|
+
value: string;
|
37
|
+
style: {
|
38
|
+
name: string;
|
39
|
+
size: number;
|
40
|
+
bold: boolean;
|
41
|
+
italic: boolean;
|
42
|
+
underline: boolean;
|
43
|
+
color: string;
|
44
|
+
backgroundColor: string;
|
45
|
+
borderColor: string;
|
46
|
+
border: {
|
47
|
+
top: string;
|
48
|
+
right: string;
|
49
|
+
bottom: string;
|
50
|
+
left: string;
|
51
|
+
};
|
52
|
+
alignment: {
|
53
|
+
horizontal: string;
|
54
|
+
vertical: string;
|
55
|
+
wrapText: boolean;
|
56
|
+
};
|
57
|
+
};
|
58
|
+
readOnly: boolean;
|
59
|
+
inputType: {
|
60
|
+
type: string;
|
61
|
+
};
|
62
|
+
contextDisable: {
|
63
|
+
"Delete Column": boolean;
|
64
|
+
"Delete Row"?: undefined;
|
65
|
+
"Add Row Top"?: undefined;
|
66
|
+
};
|
67
|
+
})[] | ({
|
68
|
+
value: string;
|
69
|
+
style: {
|
70
|
+
name: string;
|
71
|
+
size: number;
|
72
|
+
bold: boolean;
|
73
|
+
italic: boolean;
|
74
|
+
underline: boolean;
|
75
|
+
color: string;
|
76
|
+
backgroundColor: string;
|
77
|
+
borderColor: string;
|
78
|
+
border: {
|
79
|
+
top: string;
|
80
|
+
right: string;
|
81
|
+
bottom: string;
|
82
|
+
left: string;
|
83
|
+
};
|
84
|
+
alignment: {
|
85
|
+
horizontal: string;
|
86
|
+
vertical: string;
|
87
|
+
wrapText: boolean;
|
88
|
+
};
|
89
|
+
};
|
90
|
+
readOnly: boolean;
|
91
|
+
inputType: {
|
92
|
+
type: string;
|
93
|
+
options?: undefined;
|
94
|
+
};
|
95
|
+
} | {
|
96
|
+
value: string;
|
97
|
+
style: {
|
98
|
+
name: string;
|
99
|
+
size: number;
|
100
|
+
bold: boolean;
|
101
|
+
italic: boolean;
|
102
|
+
underline: boolean;
|
103
|
+
color: string;
|
104
|
+
backgroundColor: string;
|
105
|
+
borderColor: string;
|
106
|
+
border: {
|
107
|
+
top: string;
|
108
|
+
right: string;
|
109
|
+
bottom: string;
|
110
|
+
left: string;
|
111
|
+
};
|
112
|
+
alignment: {
|
113
|
+
horizontal: string;
|
114
|
+
vertical: string;
|
115
|
+
wrapText: boolean;
|
116
|
+
};
|
117
|
+
};
|
118
|
+
readOnly: boolean;
|
119
|
+
inputType: {
|
120
|
+
type: string;
|
121
|
+
options: {
|
122
|
+
color: string;
|
123
|
+
disable: boolean;
|
124
|
+
title: string;
|
125
|
+
label: string;
|
126
|
+
value: string;
|
127
|
+
}[];
|
128
|
+
};
|
129
|
+
})[])[];
|
130
|
+
columns: {
|
131
|
+
readOnly: number[];
|
132
|
+
};
|
133
|
+
}[];
|