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 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 ? "..." : _props$text,
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,