@fileverse-dev/fortune-react 1.0.2-mod-36 → 1.0.2-mod-38
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/components/Toolbar/index.d.ts +0 -1
- package/dist/index.css +15 -31
- package/dist/index.esm.css +15 -31
- package/dist/index.esm.js +424 -334
- package/dist/index.js +423 -333
- package/dist/index.umd.css +15 -31
- package/dist/index.umd.js +5401 -7262
- package/dist/index.umd.min.css +1 -1
- package/dist/index.umd.min.js +9 -9
- package/package.json +2 -2
- package/dist/utils/datepickerStyles.d.ts +0 -2
package/dist/index.umd.css
CHANGED
|
@@ -987,32 +987,28 @@ html::-webkit-scrollbar-button {
|
|
|
987
987
|
|
|
988
988
|
#luckysheet-dataVerification-showHintBox {
|
|
989
989
|
display: none;
|
|
990
|
-
padding:
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
border: 1px solid hsl(var(--color-border-default));
|
|
994
|
-
border-left: 4px solid #f4874a !important;
|
|
995
|
-
border-radius: 4px;
|
|
990
|
+
padding: 10px;
|
|
991
|
+
background-color: #ffffff;
|
|
992
|
+
border: 1px solid #ccc;
|
|
996
993
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
997
994
|
position: absolute;
|
|
998
|
-
transform: translateY(4px);
|
|
999
995
|
z-index: 1000;
|
|
1000
996
|
-webkit-user-select: none;
|
|
1001
997
|
-moz-user-select: none;
|
|
1002
998
|
user-select: none;
|
|
1003
999
|
cursor: default;
|
|
1004
1000
|
white-space: nowrap;
|
|
1005
|
-
font-size:
|
|
1001
|
+
font-size: 12px;
|
|
1006
1002
|
}
|
|
1007
1003
|
|
|
1008
1004
|
#luckysheet-dataVerification-dropdown-btn {
|
|
1009
1005
|
display: none;
|
|
1010
|
-
|
|
1006
|
+
width: 20px;
|
|
1007
|
+
height: 20px;
|
|
1008
|
+
background-color: #ffffff;
|
|
1011
1009
|
position: absolute;
|
|
1012
|
-
transform: translateY(15%);
|
|
1013
1010
|
z-index: 10;
|
|
1014
1011
|
overflow: hidden;
|
|
1015
|
-
cursor: pointer !important;
|
|
1016
1012
|
}
|
|
1017
1013
|
|
|
1018
1014
|
.luckysheet-formula-search-c {
|
|
@@ -1818,7 +1814,8 @@ line-height: 16px; /* 133.333% */
|
|
|
1818
1814
|
}
|
|
1819
1815
|
|
|
1820
1816
|
#fortune-data-verification {
|
|
1821
|
-
min-width:
|
|
1817
|
+
min-width: 500px;
|
|
1818
|
+
padding: 10px 0px;
|
|
1822
1819
|
-webkit-user-select: none;
|
|
1823
1820
|
-moz-user-select: none;
|
|
1824
1821
|
user-select: none;
|
|
@@ -1995,38 +1992,25 @@ line-height: 16px; /* 133.333% */
|
|
|
1995
1992
|
}
|
|
1996
1993
|
|
|
1997
1994
|
#luckysheet-dataVerification-dropdown-List {
|
|
1998
|
-
background-color:
|
|
1999
|
-
border: 1px solid
|
|
2000
|
-
border-radius: 8px;
|
|
1995
|
+
background-color: #fff;
|
|
1996
|
+
border: 1px solid #ccc;
|
|
2001
1997
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
2002
|
-
transform: translateY(4px);
|
|
2003
1998
|
position: absolute;
|
|
2004
1999
|
z-index: 10000;
|
|
2005
2000
|
box-sizing: border-box;
|
|
2006
|
-
font-size:
|
|
2007
|
-
padding: 8px;
|
|
2008
|
-
min-width: 160px;
|
|
2001
|
+
font-size: 12px;
|
|
2009
2002
|
}
|
|
2010
2003
|
|
|
2011
2004
|
#luckysheet-dataVerification-dropdown-List .dropdown-List-item {
|
|
2012
|
-
padding:
|
|
2005
|
+
padding: 5px 10px;
|
|
2013
2006
|
box-sizing: border-box;
|
|
2014
|
-
cursor: pointer
|
|
2015
|
-
border-radius: 4px;
|
|
2007
|
+
cursor: pointer;
|
|
2016
2008
|
}
|
|
2017
2009
|
|
|
2018
2010
|
#luckysheet-dataVerification-dropdown-List .dropdown-List-item:hover {
|
|
2019
|
-
background-color:
|
|
2020
|
-
transition: background-color 0.2s ease;
|
|
2011
|
+
background-color: #e1e1e1;
|
|
2021
2012
|
}
|
|
2022
2013
|
|
|
2023
|
-
[data-radix-popper-content-wrapper] {
|
|
2024
|
-
z-index: 10000 !important;
|
|
2025
|
-
}
|
|
2026
|
-
|
|
2027
|
-
.data-verification-checkbox-label {
|
|
2028
|
-
min-width: 100px;
|
|
2029
|
-
}
|
|
2030
2014
|
.condition-format-sub-menu {
|
|
2031
2015
|
position: absolute;
|
|
2032
2016
|
top: -12px;
|