ywana-core8 0.0.331 → 0.0.334
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 +9 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +9 -8
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +13 -11
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/squema.js +1 -1
- package/src/widgets/login/ResetPasswordBox.js +2 -2
package/dist/index.cjs
CHANGED
@@ -7,7 +7,6 @@ var ResumableJS = require('resumablejs');
|
|
7
7
|
var reactNotificationsComponent = require('react-notifications-component');
|
8
8
|
require('react-notifications-component/dist/theme.css');
|
9
9
|
var equal = require('deep-equal');
|
10
|
-
var ywanaCore8 = require('ywana-core8');
|
11
10
|
|
12
11
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
13
12
|
|
@@ -2209,11 +2208,13 @@ var ResetPasswordBox = function ResetPasswordBox(_ref) {
|
|
2209
2208
|
}, /*#__PURE__*/React__default["default"].createElement(Text, null, title)) : null, children), /*#__PURE__*/React__default["default"].createElement("main", null, /*#__PURE__*/React__default["default"].createElement(Text, {
|
2210
2209
|
use: "headline6"
|
2211
2210
|
}, "Change Password"), /*#__PURE__*/React__default["default"].createElement(TextField, {
|
2212
|
-
|
2213
|
-
|
2214
|
-
|
2215
|
-
|
2216
|
-
|
2211
|
+
id: "user",
|
2212
|
+
outlined: true,
|
2213
|
+
icon: "person",
|
2214
|
+
label: "User",
|
2215
|
+
lapse: 100,
|
2216
|
+
onChange: changeField,
|
2217
|
+
onEnter: ok
|
2217
2218
|
}), /*#__PURE__*/React__default["default"].createElement(TextField, {
|
2218
2219
|
id: "password1",
|
2219
2220
|
outlined: true,
|
@@ -5039,12 +5040,12 @@ var EntityViewer = function EntityViewer(props) {
|
|
5039
5040
|
var QUERY = {
|
5040
5041
|
id: {
|
5041
5042
|
id: "id",
|
5042
|
-
type:
|
5043
|
+
type: TYPES.STRING,
|
5043
5044
|
editable: false
|
5044
5045
|
},
|
5045
5046
|
name: {
|
5046
5047
|
id: "name",
|
5047
|
-
type:
|
5048
|
+
type: TYPES.STRING,
|
5048
5049
|
required: true,
|
5049
5050
|
label: "Name"
|
5050
5051
|
}
|