ywana-core8 0.0.848 → 0.0.849
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 +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +3 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/TablePage2.js +2 -2
- package/src/site/site.js +2 -2
package/package.json
CHANGED
package/src/domain/TablePage2.js
CHANGED
@@ -480,11 +480,11 @@ export const TableEditor = (props) => {
|
|
480
480
|
children: <DataTable {...table} onRowSelection={select} editable={editable} onCheckAll={check} className={className} />
|
481
481
|
})
|
482
482
|
})
|
483
|
-
|
483
|
+
|
484
484
|
return (
|
485
485
|
<Fragment>
|
486
486
|
<Header icon={icon} title={<Text>{title}</Text>}>
|
487
|
-
{groupBy ? <DropDown id="groupBy" label=
|
487
|
+
{groupBy ? <DropDown id="groupBy" label={<Text>Group By</Text>} value={groupBy} options={buildGroupOptions(schema)} onChange={changeGroup} /> : null}
|
488
488
|
{tabbedBy ? <Tabs fillRight={true} fillLeft={false}>
|
489
489
|
{tabs.map(tab => <Tab id={tab.value} label={tab.label} />)}
|
490
490
|
</Tabs> : ''}
|
package/src/site/site.js
CHANGED
@@ -147,9 +147,9 @@ const SiteNotifications = () => {
|
|
147
147
|
* Site Header
|
148
148
|
*/
|
149
149
|
const SiteHeader = (props) => {
|
150
|
-
const { icon = "equalizer", title } = props
|
150
|
+
const { icon = "equalizer", iconSrc, title } = props
|
151
151
|
return (
|
152
|
-
<Header icon={icon} title={title} />
|
152
|
+
<Header icon={icon} iconSrc={iconSrc} title={title} />
|
153
153
|
)
|
154
154
|
}
|
155
155
|
|