@pelcro/react-pelcro-js 4.0.0-alpha.106 → 4.0.0-alpha.108
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.cjs.js +12 -1
- package/dist/index.esm.js +12 -1
- package/dist/pelcro.css +16 -0
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -25978,8 +25978,19 @@ const ImageSelect = ({
|
|
|
25978
25978
|
components: {
|
|
25979
25979
|
Option: customOption,
|
|
25980
25980
|
SingleValue: customSingleValue
|
|
25981
|
+
},
|
|
25982
|
+
classNames: {
|
|
25983
|
+
menuList: () => "menu-list"
|
|
25981
25984
|
}
|
|
25982
|
-
}, props
|
|
25985
|
+
}, props, {
|
|
25986
|
+
menuPortalTarget: document.body,
|
|
25987
|
+
styles: {
|
|
25988
|
+
menuPortal: base => ({
|
|
25989
|
+
...base,
|
|
25990
|
+
zIndex: 9999999
|
|
25991
|
+
})
|
|
25992
|
+
}
|
|
25993
|
+
})));
|
|
25983
25994
|
};
|
|
25984
25995
|
|
|
25985
25996
|
var _path$o;
|
package/dist/index.esm.js
CHANGED
|
@@ -25948,8 +25948,19 @@ const ImageSelect = ({
|
|
|
25948
25948
|
components: {
|
|
25949
25949
|
Option: customOption,
|
|
25950
25950
|
SingleValue: customSingleValue
|
|
25951
|
+
},
|
|
25952
|
+
classNames: {
|
|
25953
|
+
menuList: () => "menu-list"
|
|
25951
25954
|
}
|
|
25952
|
-
}, props
|
|
25955
|
+
}, props, {
|
|
25956
|
+
menuPortalTarget: document.body,
|
|
25957
|
+
styles: {
|
|
25958
|
+
menuPortal: base => ({
|
|
25959
|
+
...base,
|
|
25960
|
+
zIndex: 9999999
|
|
25961
|
+
})
|
|
25962
|
+
}
|
|
25963
|
+
})));
|
|
25953
25964
|
};
|
|
25954
25965
|
|
|
25955
25966
|
var _path$o;
|
package/dist/pelcro.css
CHANGED
|
@@ -1959,6 +1959,14 @@ Add the correct display in Chrome and Safari.
|
|
|
1959
1959
|
align-items: center;
|
|
1960
1960
|
}
|
|
1961
1961
|
|
|
1962
|
+
.menu-list {
|
|
1963
|
+
font-family: "Lato", system-ui, -apple-system,
|
|
1964
|
+
/* Firefox supports this but not yet `system-ui` */
|
|
1965
|
+
"Segoe UI",
|
|
1966
|
+
Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
|
|
1967
|
+
"Segoe UI Emoji";
|
|
1968
|
+
}
|
|
1969
|
+
|
|
1962
1970
|
/*
|
|
1963
1971
|
styling is copied from react-easy-crop/react-easy-crop.css
|
|
1964
1972
|
in order to scope selectors under pelcro-root
|
|
@@ -4138,6 +4146,14 @@ apple-pay-button {
|
|
|
4138
4146
|
align-items: center;
|
|
4139
4147
|
}
|
|
4140
4148
|
|
|
4149
|
+
.menu-list {
|
|
4150
|
+
font-family: "Lato", system-ui, -apple-system,
|
|
4151
|
+
/* Firefox supports this but not yet `system-ui` */
|
|
4152
|
+
"Segoe UI",
|
|
4153
|
+
Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
|
|
4154
|
+
"Segoe UI Emoji";
|
|
4155
|
+
}
|
|
4156
|
+
|
|
4141
4157
|
/* purgecss end ignore */
|
|
4142
4158
|
|
|
4143
4159
|
/* purgecss start ignore */
|