ywana-core8 0.0.275 → 0.0.276
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 +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +1 -0
- package/dist/index.css.map +1 -1
- package/dist/index.modern.js +4 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/table.js +0 -2
- package/src/html/tooltip.css +1 -0
- package/src/html/tooltip.js +1 -1
- package/src/site/site.js +1 -0
package/dist/index.cjs
CHANGED
@@ -2012,7 +2012,7 @@ var Switch = function Switch(props) {
|
|
2012
2012
|
|
2013
2013
|
var Tooltip = function Tooltip(props) {
|
2014
2014
|
var _props$text = props.text,
|
2015
|
-
text = _props$text === void 0 ? "
|
2015
|
+
text = _props$text === void 0 ? "" : _props$text,
|
2016
2016
|
_props$top = props.top,
|
2017
2017
|
top = _props$top === void 0 ? "1rem" : _props$top,
|
2018
2018
|
_props$left = props.left,
|
@@ -3013,6 +3013,9 @@ var SiteProvider = function SiteProvider(_ref) {
|
|
3013
3013
|
confirm: function confirm(message) {
|
3014
3014
|
return window.confirm(message);
|
3015
3015
|
},
|
3016
|
+
prompt: function prompt(message) {
|
3017
|
+
return window.prompt(message);
|
3018
|
+
},
|
3016
3019
|
notify: function notify(_ref2) {
|
3017
3020
|
var title = _ref2.title,
|
3018
3021
|
body = _ref2.body,
|