@fileverse-dev/fortune-react 1.2.0-patch-1 → 1.2.0-patch-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/CHANGELOG.md +1615 -0
- package/es/components/ContextMenu/Menu.d.ts +0 -1
- package/es/components/ContextMenu/Menu.js +2 -5
- package/es/components/ContextMenu/index.css +1 -4
- package/es/components/ContextMenu/index.js +8 -35
- package/es/components/DataVerification/RangeDialog.js +3 -0
- package/es/components/SheetOverlay/ColumnHeader.js +3 -3
- package/es/components/SheetOverlay/FormulaSearch/index.css +1 -0
- package/es/components/SheetOverlay/FormulaSearch/index.js +1 -1
- package/es/components/SheetOverlay/RowHeader.js +3 -3
- package/es/components/SheetOverlay/index.css +6 -2
- package/es/components/Toolbar/Combo.js +2 -5
- package/es/components/Toolbar/index.css +1 -17
- package/es/components/Toolbar/index.js +1 -2
- package/lib/components/ContextMenu/Menu.d.ts +0 -1
- package/lib/components/ContextMenu/Menu.js +2 -5
- package/lib/components/ContextMenu/index.css +1 -4
- package/lib/components/ContextMenu/index.js +7 -34
- package/lib/components/DataVerification/RangeDialog.js +3 -0
- package/lib/components/SheetOverlay/ColumnHeader.js +2 -1
- package/lib/components/SheetOverlay/FormulaSearch/index.css +1 -0
- package/lib/components/SheetOverlay/FormulaSearch/index.js +1 -1
- package/lib/components/SheetOverlay/RowHeader.js +2 -1
- package/lib/components/SheetOverlay/index.css +6 -2
- package/lib/components/Toolbar/Combo.js +1 -4
- package/lib/components/Toolbar/index.css +1 -17
- package/package.json +2 -2
|
@@ -141,24 +141,12 @@
|
|
|
141
141
|
|
|
142
142
|
.fortune-toolbar-combo-button {
|
|
143
143
|
font-size: 12px;
|
|
144
|
-
padding-top: 4px;
|
|
145
|
-
padding-bottom: 4px;
|
|
146
|
-
padding-left: 8px;
|
|
147
|
-
padding-right: 8px;
|
|
148
|
-
border-radius: 4px;
|
|
149
|
-
gap: 8px;
|
|
150
|
-
}
|
|
151
|
-
.fortune-toolbar-combo-button:hover {
|
|
152
|
-
background: hsl(var(--color-bg-default-hover));
|
|
153
144
|
}
|
|
154
145
|
|
|
155
146
|
.fortune-toolbar-select-option {
|
|
156
147
|
font-size: 12px;
|
|
157
148
|
min-width: 60px;
|
|
158
|
-
padding
|
|
159
|
-
padding-right: 8px;
|
|
160
|
-
padding-top: 6px;
|
|
161
|
-
padding-bottom: 6px;
|
|
149
|
+
padding: 8px;
|
|
162
150
|
cursor: pointer;
|
|
163
151
|
user-select: none;
|
|
164
152
|
}
|
|
@@ -183,10 +171,6 @@
|
|
|
183
171
|
font-weight: 500;
|
|
184
172
|
font-size: 14px;
|
|
185
173
|
line-height: 20px;
|
|
186
|
-
max-width: 56px;
|
|
187
|
-
overflow: hidden;
|
|
188
|
-
text-overflow: ellipsis;
|
|
189
|
-
white-space: nowrap;
|
|
190
174
|
}
|
|
191
175
|
|
|
192
176
|
.fortune-toolbar-color-picker-item {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fileverse-dev/fortune-react",
|
|
3
|
-
"version": "1.2.0-patch-
|
|
3
|
+
"version": "1.2.0-patch-2",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"types": "lib/index.d.ts",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"tsc": "tsc"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@fileverse-dev/fortune-core": "1.2.0-patch-
|
|
19
|
+
"@fileverse-dev/fortune-core": "1.2.0-patch-2",
|
|
20
20
|
"@fileverse/ui": "^4.1.7-patch-21",
|
|
21
21
|
"@tippyjs/react": "^4.2.6",
|
|
22
22
|
"@types/regenerator-runtime": "^0.13.6",
|