@onehat/ui 0.3.347 → 0.3.348

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onehat/ui",
3
- "version": "0.3.347",
3
+ "version": "0.3.348",
4
4
  "description": "Base UI for OneHat apps",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -692,6 +692,7 @@ export function ComboComponent(props) {
692
692
  'disablePrint',
693
693
  'selectorId',
694
694
  'selectorSelected',
695
+ 'usePermissions',
695
696
  ]);
696
697
  const WhichGrid = isEditor ? WindowedGridEditor : Grid;
697
698
  grid = <WhichGrid
@@ -273,6 +273,7 @@ function TagComponent(props) {
273
273
  onGridSave={onGridSave}
274
274
  onGridDelete={onGridDelete}
275
275
  tooltip={tooltip}
276
+ usePermissions={props.usePermissions}
276
277
  {..._combo}
277
278
  />}
278
279
  </Column>