ywana-core8 0.0.346 → 0.0.349
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 +10 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +10 -3
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +10 -3
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/CreateContentDialog.js +1 -1
- package/src/widgets/login/LoginBox.js +2 -1
package/dist/index.modern.js
CHANGED
@@ -2066,6 +2066,8 @@ var LoginBox = function LoginBox(_ref) {
|
|
2066
2066
|
userLabel = _ref$userLabel === void 0 ? "User" : _ref$userLabel,
|
2067
2067
|
_ref$passwordLabel = _ref.passwordLabel,
|
2068
2068
|
passwordLabel = _ref$passwordLabel === void 0 ? "Password" : _ref$passwordLabel,
|
2069
|
+
_ref$passwordValue = _ref.passwordValue,
|
2070
|
+
passwordValue = _ref$passwordValue === void 0 ? '' : _ref$passwordValue,
|
2069
2071
|
_ref$loginLabel = _ref.loginLabel,
|
2070
2072
|
loginLabel = _ref$loginLabel === void 0 ? "Log In" : _ref$loginLabel,
|
2071
2073
|
onOK = _ref.onOK,
|
@@ -2079,7 +2081,7 @@ var LoginBox = function LoginBox(_ref) {
|
|
2079
2081
|
user = _useState[0],
|
2080
2082
|
setUser = _useState[1];
|
2081
2083
|
|
2082
|
-
var _useState2 = useState(
|
2084
|
+
var _useState2 = useState(passwordValue),
|
2083
2085
|
password = _useState2[0],
|
2084
2086
|
setPassword = _useState2[1];
|
2085
2087
|
|
@@ -4228,7 +4230,10 @@ var CreateContentDialog = function CreateContentDialog(_ref) {
|
|
4228
4230
|
value = _ref$value === void 0 ? {} : _ref$value,
|
4229
4231
|
filter = _ref.filter,
|
4230
4232
|
validator = _ref.validator,
|
4231
|
-
onOK = _ref.onOK
|
4233
|
+
onOK = _ref.onOK,
|
4234
|
+
className = _ref.className,
|
4235
|
+
_ref$outlined = _ref.outlined,
|
4236
|
+
outlined = _ref$outlined === void 0 ? true : _ref$outlined;
|
4232
4237
|
var site = useContext(SiteContext);
|
4233
4238
|
|
4234
4239
|
var _useState = useState(value),
|
@@ -4296,7 +4301,9 @@ var CreateContentDialog = function CreateContentDialog(_ref) {
|
|
4296
4301
|
}, /*#__PURE__*/React.createElement(ContentEditor, {
|
4297
4302
|
content: content,
|
4298
4303
|
onChange: change,
|
4299
|
-
filter: filterForm
|
4304
|
+
filter: filterForm,
|
4305
|
+
className: className,
|
4306
|
+
outlined: outlined
|
4300
4307
|
}), errors.map(function (error) {
|
4301
4308
|
return /*#__PURE__*/React.createElement(Text, {
|
4302
4309
|
use: "overline",
|