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.modern.js
CHANGED
@@ -7,7 +7,6 @@ import ResumableJS from 'resumablejs';
|
|
7
7
|
import { ReactNotifications, Store } from 'react-notifications-component';
|
8
8
|
import 'react-notifications-component/dist/theme.css';
|
9
9
|
import equal from 'deep-equal';
|
10
|
-
import { TYPES as TYPES$1 } from 'ywana-core8';
|
11
10
|
|
12
11
|
function _catch$2(body, recover) {
|
13
12
|
try {
|
@@ -2201,11 +2200,13 @@ var ResetPasswordBox = function ResetPasswordBox(_ref) {
|
|
2201
2200
|
}, /*#__PURE__*/React.createElement(Text, null, title)) : null, children), /*#__PURE__*/React.createElement("main", null, /*#__PURE__*/React.createElement(Text, {
|
2202
2201
|
use: "headline6"
|
2203
2202
|
}, "Change Password"), /*#__PURE__*/React.createElement(TextField, {
|
2204
|
-
|
2205
|
-
|
2206
|
-
|
2207
|
-
|
2208
|
-
|
2203
|
+
id: "user",
|
2204
|
+
outlined: true,
|
2205
|
+
icon: "person",
|
2206
|
+
label: "User",
|
2207
|
+
lapse: 100,
|
2208
|
+
onChange: changeField,
|
2209
|
+
onEnter: ok
|
2209
2210
|
}), /*#__PURE__*/React.createElement(TextField, {
|
2210
2211
|
id: "password1",
|
2211
2212
|
outlined: true,
|
@@ -5031,12 +5032,12 @@ var EntityViewer = function EntityViewer(props) {
|
|
5031
5032
|
var QUERY = {
|
5032
5033
|
id: {
|
5033
5034
|
id: "id",
|
5034
|
-
type: TYPES
|
5035
|
+
type: TYPES.STRING,
|
5035
5036
|
editable: false
|
5036
5037
|
},
|
5037
5038
|
name: {
|
5038
5039
|
id: "name",
|
5039
|
-
type: TYPES
|
5040
|
+
type: TYPES.STRING,
|
5040
5041
|
required: true,
|
5041
5042
|
label: "Name"
|
5042
5043
|
}
|