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.modern.js
CHANGED
@@ -5619,7 +5619,8 @@ var CollectionPage = function CollectionPage(props) {
|
|
5619
5619
|
label: "" + name,
|
5620
5620
|
type: schema,
|
5621
5621
|
onOK: onOK,
|
5622
|
-
validator: addValidator
|
5622
|
+
validator: addValidator,
|
5623
|
+
className: className
|
5623
5624
|
}));
|
5624
5625
|
}
|
5625
5626
|
|
@@ -8785,7 +8786,8 @@ var TableSelector = function TableSelector(props) {
|
|
8785
8786
|
var field = schema[key];
|
8786
8787
|
return {
|
8787
8788
|
id: field.id,
|
8788
|
-
label: field.label
|
8789
|
+
label: field.label,
|
8790
|
+
type: field.type
|
8789
8791
|
};
|
8790
8792
|
});
|
8791
8793
|
var rows = all.filter(function (item) {
|