@dartech/arsenal-ui 1.3.45 → 1.3.46

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.
Files changed (2) hide show
  1. package/index.js +5 -3
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -3191,7 +3191,7 @@ const EntityPropertiesShortView = ({
3191
3191
  const stepperData = useMemo(() => {
3192
3192
  if (_properties) {
3193
3193
  return _properties.map(property => {
3194
- const propertyType = typeof property.propertyType === 'string' ? property.propertyType : property['propertyType']['value'];
3194
+ const propertyType = typeof property.propertyType === 'string' ? property.propertyType : property['propertyType'] ? property['propertyType']['value'] : '';
3195
3195
  return {
3196
3196
  label: jsxs(Box, Object.assign({
3197
3197
  display: "flex",
@@ -3200,7 +3200,7 @@ const EntityPropertiesShortView = ({
3200
3200
  children: [jsxs("b", {
3201
3201
  children: [property.name, property.isRequired ? '*' : '']
3202
3202
  }), jsxs("span", {
3203
- children: [property.key, " | ", property.isMultiple ? 'multiple' : 'single', " | ", propertyType]
3203
+ children: [property.key, " | ", property.isMultiple ? 'multiple' : 'single', " |", ' ', propertyType]
3204
3204
  })]
3205
3205
  })),
3206
3206
  content: property.propertyType === 'ENTITY' && jsx(EntityPropertiesShortView, {
@@ -3310,7 +3310,9 @@ const EntityAdditionalFields = ({
3310
3310
  children: [jsxs(Grid$1, Object.assign({
3311
3311
  xs: 3,
3312
3312
  style: {
3313
- backgroundColor: '#f9f9f9'
3313
+ backgroundColor: '#f9f9f9',
3314
+ height: '100%',
3315
+ overflowY: 'auto'
3314
3316
  }
3315
3317
  }, {
3316
3318
  children: [jsx(Stepper, Object.assign({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dartech/arsenal-ui",
3
- "version": "1.3.45",
3
+ "version": "1.3.46",
4
4
  "author": "DAR",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"