ywana-core8 0.0.599 → 0.0.602
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 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/CollectionPage.js +1 -1
- package/src/domain/ContentViewer.js +12 -1
- package/src/domain/TabbedTablePage.js +1 -1
- package/src/http/token.test.js +14 -2
package/dist/index.umd.js
CHANGED
@@ -5621,7 +5621,8 @@
|
|
5621
5621
|
label: "" + name,
|
5622
5622
|
type: schema,
|
5623
5623
|
onOK: onOK,
|
5624
|
-
validator: addValidator
|
5624
|
+
validator: addValidator,
|
5625
|
+
className: className
|
5625
5626
|
}));
|
5626
5627
|
}
|
5627
5628
|
|
@@ -8787,7 +8788,8 @@
|
|
8787
8788
|
var field = schema[key];
|
8788
8789
|
return {
|
8789
8790
|
id: field.id,
|
8790
|
-
label: field.label
|
8791
|
+
label: field.label,
|
8792
|
+
type: field.type
|
8791
8793
|
};
|
8792
8794
|
});
|
8793
8795
|
var rows = all.filter(function (item) {
|