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.umd.js
CHANGED
@@ -2007,7 +2007,7 @@
|
|
2007
2007
|
|
2008
2008
|
var Tooltip = function Tooltip(props) {
|
2009
2009
|
var _props$text = props.text,
|
2010
|
-
text = _props$text === void 0 ? "
|
2010
|
+
text = _props$text === void 0 ? "" : _props$text,
|
2011
2011
|
_props$top = props.top,
|
2012
2012
|
top = _props$top === void 0 ? "1rem" : _props$top,
|
2013
2013
|
_props$left = props.left,
|
@@ -3008,6 +3008,9 @@
|
|
3008
3008
|
confirm: function confirm(message) {
|
3009
3009
|
return window.confirm(message);
|
3010
3010
|
},
|
3011
|
+
prompt: function prompt(message) {
|
3012
|
+
return window.prompt(message);
|
3013
|
+
},
|
3011
3014
|
notify: function notify(_ref2) {
|
3012
3015
|
var title = _ref2.title,
|
3013
3016
|
body = _ref2.body,
|