@vidispine/vdt-materialui 21.4.0-pre.1 → 21.4.0-pre.2

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 (3) hide show
  1. package/dist/index.es.js +425 -203
  2. package/dist/index.js +571 -347
  3. package/package.json +10 -9
package/dist/index.es.js CHANGED
@@ -50,7 +50,7 @@ import Autocomplete, { createFilterOptions } from '@material-ui/lab/Autocomplete
50
50
  import { Autocomplete as Autocomplete$1 } from '@material-ui/lab';
51
51
  import CircularProgress from '@material-ui/core/CircularProgress';
52
52
  import { metadatafield, analyzepreset, resource, item, shape, vidinet, utils, user, job, taskdefinition, shapetag, metadata, access, group, fieldgroup, collection, subtitle, vsimport, thumbnail, file, storage, globalmetadata, search } from '@vidispine/vdt-api';
53
- import { useApi, HasRole, useGetItem, useEntityAccess, useAddMetadataFieldAttributes, GetItem, MetadataType as MetadataType$1, useHoverScrub, useMouseDownPosition, compose, GetCollection, useSearch, SearchCollection, useGetEntity, useGetCollection, useRepresentativeItems, SearchItem, useSavedSearch, useGetSavedSearchFolders, handleMoveEntity, useUploadFiles } from '@vidispine/vdt-react';
53
+ import { useApi, HasRole, useGetItem, useEntityAccess, useAddMetadataFieldAttributes, GetItem, MetadataType as MetadataType$1, useHoverScrub, useMouseDownPosition, compose, GetCollection, useSearch, SearchCollection, useGetEntity, useGetCollection, useRepresentativeItems, SearchItem, useCompoundMetadata, useSavedSearch, useGetSavedSearchFolders, handleMoveEntity, useUploadFiles } from '@vidispine/vdt-react';
54
54
  import Box from '@material-ui/core/Box';
55
55
  import Button$1 from '@material-ui/core/Button';
56
56
  import { FORM_ERROR } from 'final-form';
@@ -129,6 +129,9 @@ import ListItemSecondaryAction$1 from '@material-ui/core/ListItemSecondaryAction
129
129
  import ListItemAvatar$1 from '@material-ui/core/ListItemAvatar';
130
130
  import { useDropzone } from 'react-dropzone';
131
131
  import ListSubheader from '@material-ui/core/ListSubheader';
132
+ import TableContainer$1 from '@material-ui/core/TableContainer';
133
+ import Input$1 from '@material-ui/core/Input';
134
+ import useDeepCompareEffect from 'use-deep-compare-effect';
132
135
  import DialogContentText from '@material-ui/core/DialogContentText';
133
136
  import TextFieldsIcon from '@material-ui/icons/TextFields';
134
137
  import ThumbsUpDownIcon from '@material-ui/icons/ThumbsUpDown';
@@ -6349,11 +6352,14 @@ function JobFooter(_ref) {
6349
6352
  _ref$startTimeFromMin = _ref.startTimeFromMinutes,
6350
6353
  startTimeFromMinutes = _ref$startTimeFromMin === void 0 ? 10 : _ref$startTimeFromMin,
6351
6354
  _ref$JobTableComponen = _ref.JobTableComponent,
6352
- JobTableComponent = _ref$JobTableComponen === void 0 ? JobTable$1 : _ref$JobTableComponen;
6355
+ JobTableComponent = _ref$JobTableComponen === void 0 ? JobTable$1 : _ref$JobTableComponen,
6356
+ showJobList = _ref.showJobList,
6357
+ setShowJobList = _ref.setShowJobList;
6353
6358
 
6354
6359
  var _useExpand = useExpand(defaultExpanded),
6355
6360
  expanded = _useExpand.expanded,
6356
- onToggle = _useExpand.onToggle;
6361
+ onToggle = _useExpand.onToggle,
6362
+ onClose = _useExpand.onClose;
6357
6363
 
6358
6364
  var _React$useState = React__default.useState({
6359
6365
  first: 1,
@@ -6389,9 +6395,18 @@ function JobFooter(_ref) {
6389
6395
  return function () {
6390
6396
  return clearInterval(interval);
6391
6397
  };
6392
- }, [onRefresh, refreshInterval]); // eslint-disable-next-line max-len
6398
+ }, [onRefresh, refreshInterval]);
6393
6399
 
6394
- if (!hasLoaded || matrixParams.state === ALL_STATES && jobs.length === 0) return null;
6400
+ var onHideJobs = function onHideJobs() {
6401
+ onClose();
6402
+ setShowJobList(false);
6403
+ };
6404
+
6405
+ React__default.useEffect(function () {
6406
+ setShowJobList(true);
6407
+ }, [jobs.length, setShowJobList]); // eslint-disable-next-line max-len
6408
+
6409
+ if (!hasLoaded || !showJobList || matrixParams.state === ALL_STATES && jobs.length === 0) return null;
6395
6410
  return /*#__PURE__*/React__default.createElement(AppBar, {
6396
6411
  color: "inherit",
6397
6412
  position: "fixed",
@@ -6441,7 +6456,9 @@ function JobFooter(_ref) {
6441
6456
  }, jobs.length > 0 ? /*#__PURE__*/React__default.createElement(JobTableComponent, {
6442
6457
  jobs: jobs,
6443
6458
  hideHeader: true
6444
- }) : /*#__PURE__*/React__default.createElement("span", null, "No jobs found"))));
6459
+ }) : /*#__PURE__*/React__default.createElement("span", null, "No jobs found"), /*#__PURE__*/React__default.createElement(Button$1, {
6460
+ onClick: onHideJobs
6461
+ }, "Close"))));
6445
6462
  }
6446
6463
 
6447
6464
  function SearchPaginationActions(_ref) {
@@ -7936,6 +7953,11 @@ var JobFooterContextProvider = function JobFooterContextProvider(_ref) {
7936
7953
  matrixParams = _React$useState4[0],
7937
7954
  setMatrixParams = _React$useState4[1];
7938
7955
 
7956
+ var _React$useState5 = React__default.useState(true),
7957
+ _React$useState6 = _slicedToArray(_React$useState5, 2),
7958
+ showJobList = _React$useState6[0],
7959
+ setShowJobList = _React$useState6[1];
7960
+
7939
7961
  var _useApi = useApi(job.listJob),
7940
7962
  onListJob = _useApi.request,
7941
7963
  _useApi$data = _useApi.data;
@@ -7995,13 +8017,17 @@ var JobFooterContextProvider = function JobFooterContextProvider(_ref) {
7995
8017
  queryParams: queryParams,
7996
8018
  matrixParams: matrixParams,
7997
8019
  setQueryParams: setQueryParams,
7998
- setMatrixParams: setMatrixParams
8020
+ setMatrixParams: setMatrixParams,
8021
+ showJobList: showJobList,
8022
+ setShowJobList: setShowJobList
7999
8023
  }
8000
8024
  }, children, /*#__PURE__*/React__default.createElement(JobFooterComponent, _extends({
8001
8025
  jobs: jobs,
8002
8026
  isLoading: isLoading,
8003
8027
  hasLoaded: hasLoaded,
8004
- onListJob: onListJob // eslint-disable-next-line react/jsx-props-no-spreading
8028
+ onListJob: onListJob,
8029
+ showJobList: showJobList,
8030
+ setShowJobList: setShowJobList // eslint-disable-next-line react/jsx-props-no-spreading
8005
8031
 
8006
8032
  }, JobFooterProps)));
8007
8033
  };
@@ -28916,7 +28942,203 @@ ItemFileShareDialog.defaultProps = {
28916
28942
  onShareFile: defaultOnShareFile
28917
28943
  };
28918
28944
 
28919
- var styles$1q = {
28945
+ var _excluded$U = ["classes", "className", "itemId", "groups", "isEditing", "onRefresh", "onSuccess", "onError", "editJoinValue", "formatValue", "rowsPerPageOptions"];
28946
+
28947
+ var styles$1q = function styles() {
28948
+ return {
28949
+ root: {
28950
+ width: '100%',
28951
+ overflowX: 'auto',
28952
+ display: 'grid'
28953
+ },
28954
+ table: {
28955
+ maxWidth: '100%'
28956
+ }
28957
+ };
28958
+ };
28959
+
28960
+ var ItemCompoundMetadataTable = function ItemCompoundMetadataTable(_ref) {
28961
+ var classes = _ref.classes,
28962
+ className = _ref.className,
28963
+ itemId = _ref.itemId,
28964
+ _ref$groups = _ref.groups,
28965
+ groups = _ref$groups === void 0 ? [] : _ref$groups,
28966
+ isEditing = _ref.isEditing,
28967
+ onRefresh = _ref.onRefresh,
28968
+ onSuccess = _ref.onSuccess,
28969
+ onError = _ref.onError,
28970
+ editJoinValue = _ref.editJoinValue,
28971
+ formatValue = _ref.formatValue,
28972
+ _ref$rowsPerPageOptio = _ref.rowsPerPageOptions,
28973
+ rowsPerPageOptions = _ref$rowsPerPageOptio === void 0 ? [5, 10, 25] : _ref$rowsPerPageOptio,
28974
+ values = _objectWithoutProperties(_ref, _excluded$U);
28975
+
28976
+ var _React$useState = React__default.useState([]),
28977
+ _React$useState2 = _slicedToArray(_React$useState, 2),
28978
+ groupFields = _React$useState2[0],
28979
+ setGroupFields = _React$useState2[1];
28980
+
28981
+ var _React$useState3 = React__default.useState(0),
28982
+ _React$useState4 = _slicedToArray(_React$useState3, 2),
28983
+ page = _React$useState4[0],
28984
+ setPage = _React$useState4[1];
28985
+
28986
+ var _React$useState5 = React__default.useState(5),
28987
+ _React$useState6 = _slicedToArray(_React$useState5, 2),
28988
+ rowsPerPage = _React$useState6[0],
28989
+ setRowsPerPage = _React$useState6[1];
28990
+
28991
+ useDeepCompareEffect(function () {
28992
+ setGroupFields(values.group);
28993
+ }, [values]);
28994
+
28995
+ var _useCompoundMetadata = useCompoundMetadata(itemId, values, groups, groupFields, setGroupFields, onRefresh, onSuccess, onError),
28996
+ tableColumns = _useCompoundMetadata.tableColumns,
28997
+ _onChange = _useCompoundMetadata.onChange,
28998
+ onSubmit = _useCompoundMetadata.onSubmit;
28999
+
29000
+ var handleChangePage = function handleChangePage(event, newPage) {
29001
+ setPage(newPage);
29002
+ };
29003
+
29004
+ var handleChangeRowsPerPage = function handleChangeRowsPerPage(event) {
29005
+ setRowsPerPage(event.target.value);
29006
+ setPage(0);
29007
+ };
29008
+
29009
+ var getKey = function getKey(name, index) {
29010
+ return "".concat(name, "_").concat(Math.random(), "_").concat(index);
29011
+ };
29012
+
29013
+ return /*#__PURE__*/React__default.createElement(React__default.Fragment, null, groupFields && groupFields.map(function (group, groupIndex) {
29014
+ return /*#__PURE__*/React__default.createElement(Paper, {
29015
+ className: classes.root,
29016
+ key: getKey(group.name, groupIndex)
29017
+ }, /*#__PURE__*/React__default.createElement(TableContainer$1, {
29018
+ className: classes.table
29019
+ }, /*#__PURE__*/React__default.createElement(Table$1, {
29020
+ size: "medium"
29021
+ }, /*#__PURE__*/React__default.createElement(TableHead$1$1, null, /*#__PURE__*/React__default.createElement(TableRow$3$1, null, tableColumns.map(function (row) {
29022
+ return /*#__PURE__*/React__default.createElement(TableCell$1, {
29023
+ key: row.name
29024
+ }, row.name);
29025
+ }))), /*#__PURE__*/React__default.createElement(TableBody$1, null, group.group.slice(page * rowsPerPage, page * rowsPerPage + rowsPerPage).map(function (row, rowIndex) {
29026
+ return /*#__PURE__*/React__default.createElement(TableRow$3$1, {
29027
+ key: getKey(row.name, rowIndex)
29028
+ }, tableColumns.map(function (field, fieldIndex) {
29029
+ return /*#__PURE__*/React__default.createElement(TableCell$1, {
29030
+ key: getKey(field.name, fieldIndex)
29031
+ }, isEditing ? /*#__PURE__*/React__default.createElement(Input$1, {
29032
+ value: row[field.name],
29033
+ name: field.name,
29034
+ onChange: function onChange(e) {
29035
+ return _onChange(e, row, groupIndex, page * rowsPerPage + fieldIndex);
29036
+ }
29037
+ }) : row[field.name]);
29038
+ }));
29039
+ })))), /*#__PURE__*/React__default.createElement(TablePagination, {
29040
+ rowsPerPageOptions: rowsPerPageOptions,
29041
+ component: "div",
29042
+ count: group.group.length,
29043
+ rowsPerPage: rowsPerPage,
29044
+ page: page,
29045
+ onPageChange: handleChangePage,
29046
+ onRowsPerPageChange: handleChangeRowsPerPage
29047
+ }));
29048
+ }), isEditing && /*#__PURE__*/React__default.createElement(Box$1, {
29049
+ m: 2
29050
+ }, /*#__PURE__*/React__default.createElement(Button, {
29051
+ fullWidth: true,
29052
+ variant: "outlined",
29053
+ onClick: function onClick() {
29054
+ return onSubmit(groupFields);
29055
+ },
29056
+ color: "primary"
29057
+ }, "Save")));
29058
+ };
29059
+
29060
+ var ItemCompoundMetadataTable$1 = withStyles(styles$1q, {
29061
+ name: 'VdtItemCompoundMetadataTable'
29062
+ })(ItemCompoundMetadataTable);
29063
+
29064
+ function ItemCompoundMetadataTab(_ref) {
29065
+ var itemId = _ref.itemId,
29066
+ groups = _ref.groups,
29067
+ _ref$editingLabel = _ref.editingLabel,
29068
+ editingLabel = _ref$editingLabel === void 0 ? function (isEditing) {
29069
+ return isEditing ? 'Cancel' : 'Edit';
29070
+ } : _ref$editingLabel,
29071
+ _ref$showEditMetadata = _ref.showEditMetadata,
29072
+ showEditMetadata = _ref$showEditMetadata === void 0 ? true : _ref$showEditMetadata,
29073
+ onError = _ref.onError,
29074
+ _ref$useContentPaths = _ref.useContentPaths,
29075
+ useContentPaths = _ref$useContentPaths === void 0 ? false : _ref$useContentPaths,
29076
+ formatValue = _ref.formatValue;
29077
+ var queryParams = React__default.useMemo(function () {
29078
+ if (useContentPaths) {
29079
+ var groupPathParams = groups ? groups.map(function (g) {
29080
+ return g.name;
29081
+ }).map(function (name) {
29082
+ return "metadata.timespan.group[name=".concat(name, "]");
29083
+ }).join(',') : undefined;
29084
+ return {
29085
+ p: [groupPathParams].join(',')
29086
+ };
29087
+ }
29088
+
29089
+ return {
29090
+ group: groups ? groups.map(function (_ref2) {
29091
+ var name = _ref2.name;
29092
+ return name;
29093
+ }) : [],
29094
+ content: 'metadata'
29095
+ };
29096
+ }, [groups, useContentPaths]);
29097
+
29098
+ var _React$useState = React__default.useState(false),
29099
+ _React$useState2 = _slicedToArray(_React$useState, 2),
29100
+ isEditing = _React$useState2[0],
29101
+ setIsEditing = _React$useState2[1];
29102
+
29103
+ var toggleEdit = function toggleEdit() {
29104
+ return setIsEditing(!isEditing);
29105
+ };
29106
+
29107
+ var _useAddMetadataFieldA = useAddMetadataFieldAttributes({
29108
+ groups: groups
29109
+ }),
29110
+ groupsWithAttributes = _useAddMetadataFieldA.groupsWithAttributes;
29111
+
29112
+ return /*#__PURE__*/React__default.createElement(React__default.Fragment, null, showEditMetadata && /*#__PURE__*/React__default.createElement(Box, {
29113
+ display: "flex",
29114
+ justifyContent: "flex-end"
29115
+ }, /*#__PURE__*/React__default.createElement(FormControlLabel, {
29116
+ control: /*#__PURE__*/React__default.createElement(Switch, {
29117
+ checked: isEditing,
29118
+ onChange: toggleEdit
29119
+ }),
29120
+ label: editingLabel(isEditing),
29121
+ labelPlacement: "start"
29122
+ })), groupsWithAttributes.length > 0 && /*#__PURE__*/React__default.createElement(GetItem, {
29123
+ itemId: itemId,
29124
+ queryParams: queryParams
29125
+ }, /*#__PURE__*/React__default.createElement(MetadataType$1, {
29126
+ joinValue: ", "
29127
+ }, /*#__PURE__*/React__default.createElement(ItemCompoundMetadataTable$1, {
29128
+ itemId: itemId,
29129
+ groups: groupsWithAttributes,
29130
+ formatValue: formatValue,
29131
+ isEditing: isEditing,
29132
+ onSuccess: toggleEdit,
29133
+ onError: onError
29134
+ }))));
29135
+ }
29136
+
29137
+ var ItemCompoundMetadataTab$1 = withStyles({}, {
29138
+ name: 'VdtItemCompoundMetadataTab'
29139
+ })(ItemCompoundMetadataTab);
29140
+
29141
+ var styles$1r = {
28920
29142
  root: {
28921
29143
  '& > *': {
28922
29144
  marginTop: '20px',
@@ -29372,11 +29594,11 @@ function Editor(_ref) {
29372
29594
  }, "Delete"))));
29373
29595
  }
29374
29596
 
29375
- var Editor$1 = withStyles(styles$1q, {
29597
+ var Editor$1 = withStyles(styles$1r, {
29376
29598
  name: 'VdtFieldGroupEditor'
29377
29599
  })(Editor);
29378
29600
 
29379
- var styles$1r = {
29601
+ var styles$1s = {
29380
29602
  iconContainer: {
29381
29603
  width: '40px',
29382
29604
  height: '40px',
@@ -29413,11 +29635,11 @@ function FieldIcon(_ref) {
29413
29635
  }));
29414
29636
  }
29415
29637
 
29416
- var FieldIcon$1 = withStyles(styles$1r, {
29638
+ var FieldIcon$1 = withStyles(styles$1s, {
29417
29639
  name: 'VdtFieldGroupIcon'
29418
29640
  })(FieldIcon);
29419
29641
 
29420
- var styles$1s = function styles(theme) {
29642
+ var styles$1t = function styles(theme) {
29421
29643
  return {
29422
29644
  fieldTitle: {
29423
29645
  lineHeight: '40px',
@@ -29552,11 +29774,11 @@ function MyField(_ref2) {
29552
29774
  })));
29553
29775
  }
29554
29776
 
29555
- var MyField$1 = withStyles(styles$1s, {
29777
+ var MyField$1 = withStyles(styles$1t, {
29556
29778
  name: 'VdtFieldGroupMyField'
29557
29779
  })(MyField);
29558
29780
 
29559
- var styles$1t = {
29781
+ var styles$1u = {
29560
29782
  droppable: {
29561
29783
  height: 600
29562
29784
  }
@@ -29606,11 +29828,11 @@ function MyFieldList(_ref) {
29606
29828
  });
29607
29829
  }
29608
29830
 
29609
- var MyFieldList$1 = withStyles(styles$1t, {
29831
+ var MyFieldList$1 = withStyles(styles$1u, {
29610
29832
  name: 'VdtFieldGroupMyFieldList'
29611
29833
  })(MyFieldList);
29612
29834
 
29613
- var _excluded$U = ["groupName", "orderedFieldIds"];
29835
+ var _excluded$V = ["groupName", "orderedFieldIds"];
29614
29836
  var vFetch = utils.vFetch,
29615
29837
  isRequired = utils.isRequired;
29616
29838
  function updateGroupFieldOrder(_ref) {
@@ -29618,7 +29840,7 @@ function updateGroupFieldOrder(_ref) {
29618
29840
  groupName = _ref$groupName === void 0 ? isRequired() : _ref$groupName,
29619
29841
  _ref$orderedFieldIds = _ref.orderedFieldIds,
29620
29842
  orderedFieldIds = _ref$orderedFieldIds === void 0 ? isRequired() : _ref$orderedFieldIds,
29621
- props = _objectWithoutProperties(_ref, _excluded$U);
29843
+ props = _objectWithoutProperties(_ref, _excluded$V);
29622
29844
 
29623
29845
  var path = "/API/metadata-field/field-group/".concat(groupName, "/metadata/order");
29624
29846
  return vFetch(_objectSpread2({
@@ -29641,7 +29863,7 @@ function uuidv4$1() {
29641
29863
  });
29642
29864
  }
29643
29865
 
29644
- var styles$1u = {
29866
+ var styles$1v = {
29645
29867
  data: {
29646
29868
  display: 'flex',
29647
29869
  width: '100%'
@@ -30380,11 +30602,11 @@ function FieldGroupDesigner(_ref2) {
30380
30602
  }, "Add"))));
30381
30603
  }
30382
30604
 
30383
- var FieldGroupDesigner$1 = withStyles(styles$1u, {
30605
+ var FieldGroupDesigner$1 = withStyles(styles$1v, {
30384
30606
  name: 'VdtFieldGroupDesigner'
30385
30607
  })(FieldGroupDesigner);
30386
30608
 
30387
- var _excluded$V = ["entityId", "SelectedFileComponent"],
30609
+ var _excluded$W = ["entityId", "SelectedFileComponent"],
30388
30610
  _excluded2$d = ["entityId", "SelectedStorageComponent"],
30389
30611
  _excluded3$5 = ["selected", "SelectedEntities"],
30390
30612
  _excluded4$1 = ["file"],
@@ -30434,7 +30656,7 @@ function SelectedFileWrapper(_ref2) {
30434
30656
  var entityId = _ref2.entityId,
30435
30657
  _ref2$SelectedFileCom = _ref2.SelectedFileComponent,
30436
30658
  SelectedFileComponent = _ref2$SelectedFileCom === void 0 ? SelectedFile : _ref2$SelectedFileCom,
30437
- props = _objectWithoutProperties(_ref2, _excluded$V);
30659
+ props = _objectWithoutProperties(_ref2, _excluded$W);
30438
30660
 
30439
30661
  var _React$useState = React__default.useState(),
30440
30662
  _React$useState2 = _slicedToArray(_React$useState, 2),
@@ -30946,7 +31168,7 @@ function StorageListTree(_ref20) {
30946
31168
  , StorageListProps));
30947
31169
  }
30948
31170
 
30949
- var styles$1v = function styles(theme) {
31171
+ var styles$1w = function styles(theme) {
30950
31172
  return {
30951
31173
  popper: {
30952
31174
  backgroundColor: theme.palette.background["default"],
@@ -30998,11 +31220,11 @@ function SearchSuggestions(_ref) {
30998
31220
  }))) : null;
30999
31221
  }
31000
31222
 
31001
- var SearchSuggestions$1 = withStyles(styles$1v, {
31223
+ var SearchSuggestions$1 = withStyles(styles$1w, {
31002
31224
  name: 'VdtSearchSuggestions'
31003
31225
  })(SearchSuggestions);
31004
31226
 
31005
- var _excluded$W = ["options", "metadataToProps", "parseMetadataOpts", "selected", "onCheck", "onClick"];
31227
+ var _excluded$X = ["options", "metadataToProps", "parseMetadataOpts", "selected", "onCheck", "onClick"];
31006
31228
 
31007
31229
  var metadataToProps$4 = function metadataToProps(_ref) {
31008
31230
  var searchResultEntryType = _ref.searchResultEntryType,
@@ -31040,7 +31262,7 @@ function SearchResultRow(_ref4) {
31040
31262
  selected = _ref4.selected,
31041
31263
  onCheck = _ref4.onCheck,
31042
31264
  onClick = _ref4.onClick,
31043
- innerProps = _objectWithoutProperties(_ref4, _excluded$W);
31265
+ innerProps = _objectWithoutProperties(_ref4, _excluded$X);
31044
31266
 
31045
31267
  var searchResultEntryType = innerProps.searchResultEntryType;
31046
31268
  var rowValues = React__default.useMemo(function () {
@@ -31078,7 +31300,7 @@ function SearchResultRow(_ref4) {
31078
31300
  }));
31079
31301
  }
31080
31302
 
31081
- var _excluded$X = ["searchResultType", "RowComponent", "options", "onCheck", "onRowClick"];
31303
+ var _excluded$Y = ["searchResultType", "RowComponent", "options", "onCheck", "onRowClick"];
31082
31304
  function SearchResultTable(_ref) {
31083
31305
  var _ref$searchResultType = _ref.searchResultType,
31084
31306
  searchResultType = _ref$searchResultType === void 0 ? {} : _ref$searchResultType,
@@ -31088,7 +31310,7 @@ function SearchResultTable(_ref) {
31088
31310
  options = _ref$options === void 0 ? [] : _ref$options,
31089
31311
  onCheck = _ref.onCheck,
31090
31312
  onRowClick = _ref.onRowClick,
31091
- innerProps = _objectWithoutProperties(_ref, _excluded$X);
31313
+ innerProps = _objectWithoutProperties(_ref, _excluded$Y);
31092
31314
 
31093
31315
  var _searchResultType$ent = searchResultType.entry,
31094
31316
  entryList = _searchResultType$ent === void 0 ? [] : _searchResultType$ent;
@@ -31139,11 +31361,11 @@ function FolderMultipleIcon(props) {
31139
31361
  }, props));
31140
31362
  }
31141
31363
 
31142
- var _excluded$Y = ["collectionId"];
31364
+ var _excluded$Z = ["collectionId"];
31143
31365
 
31144
31366
  function SavedSearchAccessList(_ref) {
31145
31367
  var collectionId = _ref.collectionId,
31146
- props = _objectWithoutProperties(_ref, _excluded$Y);
31368
+ props = _objectWithoutProperties(_ref, _excluded$Z);
31147
31369
 
31148
31370
  var _useEntityAccess = useEntityAccess({
31149
31371
  entityId: collectionId,
@@ -31170,8 +31392,8 @@ function SavedSearchAccessList(_ref) {
31170
31392
  }, props));
31171
31393
  }
31172
31394
 
31173
- var _excluded$Z = ["classes", "collectionId"];
31174
- var styles$1w = {
31395
+ var _excluded$_ = ["classes", "collectionId"];
31396
+ var styles$1x = {
31175
31397
  actionsSubmit: {
31176
31398
  width: '100%'
31177
31399
  },
@@ -31183,7 +31405,7 @@ var styles$1w = {
31183
31405
  function ShareSearch(_ref) {
31184
31406
  var classes = _ref.classes,
31185
31407
  collectionId = _ref.collectionId,
31186
- props = _objectWithoutProperties(_ref, _excluded$Z);
31408
+ props = _objectWithoutProperties(_ref, _excluded$_);
31187
31409
 
31188
31410
  var handleSubmit = function handleSubmit(args) {
31189
31411
  return access.createEntityAccess(_objectSpread2(_objectSpread2({}, args), {}, {
@@ -31207,14 +31429,14 @@ function ShareSearch(_ref) {
31207
31429
  }, props));
31208
31430
  }
31209
31431
 
31210
- var ShareSearch$1 = withStyles(styles$1w, {
31432
+ var ShareSearch$1 = withStyles(styles$1x, {
31211
31433
  name: 'VdtShareSearch'
31212
31434
  })(ShareSearch);
31213
31435
 
31214
31436
  var SHARE_MENU = 'SHARE_MENU';
31215
31437
  var LISTACCESS_MENU = 'LISTACCESS_MENU';
31216
31438
 
31217
- var styles$1x = function styles(theme) {
31439
+ var styles$1y = function styles(theme) {
31218
31440
  return {
31219
31441
  root: {
31220
31442
  '&:hover $SubmitSearchIcon': {
@@ -31564,12 +31786,12 @@ function SavedSearchRow(_ref) {
31564
31786
  }, ListAccessProps)))));
31565
31787
  }
31566
31788
 
31567
- var SavedSearchRow$1 = withStyles(styles$1x, {
31789
+ var SavedSearchRow$1 = withStyles(styles$1y, {
31568
31790
  name: 'VdtSavedSearchRow'
31569
31791
  })(SavedSearchRow);
31570
31792
 
31571
- var _excluded$_ = ["searchProps", "searchPlaceholderText", "onSelect", "onDelete", "onUpdateSearchMetadata", "RowComponent", "RowProps", "accessTranslate"];
31572
- var styles$1y = {};
31793
+ var _excluded$$ = ["searchProps", "searchPlaceholderText", "onSelect", "onDelete", "onUpdateSearchMetadata", "RowComponent", "RowProps", "accessTranslate"];
31794
+ var styles$1z = {};
31573
31795
 
31574
31796
  function SavedSearchList(_ref) {
31575
31797
  var searchProps = _ref.searchProps,
@@ -31583,7 +31805,7 @@ function SavedSearchList(_ref) {
31583
31805
  _ref$RowProps = _ref.RowProps,
31584
31806
  RowProps = _ref$RowProps === void 0 ? {} : _ref$RowProps,
31585
31807
  accessTranslate = _ref.accessTranslate,
31586
- props = _objectWithoutProperties(_ref, _excluded$_);
31808
+ props = _objectWithoutProperties(_ref, _excluded$$);
31587
31809
 
31588
31810
  return /*#__PURE__*/React__default.createElement(CollectionSearchPicker$1, _extends({
31589
31811
  searchProps: searchProps,
@@ -31623,11 +31845,11 @@ function SavedSearchList(_ref) {
31623
31845
  }, props));
31624
31846
  }
31625
31847
 
31626
- var SavedSearchList$1 = withStyles(styles$1y, {
31848
+ var SavedSearchList$1 = withStyles(styles$1z, {
31627
31849
  name: 'VdtSavedSearchList'
31628
31850
  })(SavedSearchList);
31629
31851
 
31630
- var styles$1z = function styles(theme) {
31852
+ var styles$1A = function styles(theme) {
31631
31853
  return {
31632
31854
  root: {
31633
31855
  paddingTop: theme.spacing(1),
@@ -31695,11 +31917,11 @@ function SaveSearchForm(_ref) {
31695
31917
  }, saveText));
31696
31918
  }
31697
31919
 
31698
- var SaveSearchForm$1 = withStyles(styles$1z, {
31920
+ var SaveSearchForm$1 = withStyles(styles$1A, {
31699
31921
  name: 'VdtSaveSearchForm'
31700
31922
  })(SaveSearchForm);
31701
31923
 
31702
- var styles$1A = function styles(theme) {
31924
+ var styles$1B = function styles(theme) {
31703
31925
  return {
31704
31926
  root: {
31705
31927
  padding: theme.spacing(2)
@@ -31768,11 +31990,11 @@ function SavedSearch(_ref) {
31768
31990
  }, SearchListProps)));
31769
31991
  }
31770
31992
 
31771
- var SavedSearch$1 = withStyles(styles$1A, {
31993
+ var SavedSearch$1 = withStyles(styles$1B, {
31772
31994
  name: 'VdtSavedSearchList'
31773
31995
  })(SavedSearch);
31774
31996
 
31775
- var styles$1B = function styles(theme) {
31997
+ var styles$1C = function styles(theme) {
31776
31998
  return {
31777
31999
  suggestion: {
31778
32000
  '&:hover': {
@@ -31905,7 +32127,7 @@ function SpellCheck(_ref4) {
31905
32127
  }));
31906
32128
  }
31907
32129
 
31908
- var SpellCheck$1 = withStyles(styles$1B, {
32130
+ var SpellCheck$1 = withStyles(styles$1C, {
31909
32131
  name: 'VdtSpellCheck'
31910
32132
  })(SpellCheck);
31911
32133
 
@@ -40041,10 +40263,10 @@ var SelectCreatable$1 = makeCreatableSelect(Select);
40041
40263
  var SelectCreatableState = manageState(SelectCreatable$1);
40042
40264
  var AsyncCreatable = makeAsyncSelect(SelectCreatableState);
40043
40265
 
40044
- var _excluded$$ = ["isFocused"],
40266
+ var _excluded$10 = ["isFocused"],
40045
40267
  _excluded2$e = ["inputRef"];
40046
40268
 
40047
- var styles$1C = function styles(theme) {
40269
+ var styles$1D = function styles(theme) {
40048
40270
  return {
40049
40271
  root: {
40050
40272
  width: '100%',
@@ -40117,7 +40339,7 @@ var styles$1C = function styles(theme) {
40117
40339
 
40118
40340
  var createTabelDefaultStyles = function createTabelDefaultStyles(_ref) {
40119
40341
  var isFocused = _ref.isFocused,
40120
- props = _objectWithoutProperties(_ref, _excluded$$);
40342
+ props = _objectWithoutProperties(_ref, _excluded$10);
40121
40343
 
40122
40344
  return function (theme) {
40123
40345
  return _objectSpread2({
@@ -40559,7 +40781,7 @@ function SearchField(_ref5) {
40559
40781
  , SearchIconsProps)));
40560
40782
  }
40561
40783
 
40562
- var SearchField$1 = withStyles(styles$1C, {
40784
+ var SearchField$1 = withStyles(styles$1D, {
40563
40785
  withTheme: true,
40564
40786
  name: 'VdtSearchField'
40565
40787
  })(SearchField);
@@ -40615,7 +40837,7 @@ SearchField.defaultProps = {
40615
40837
  ProgressProps: {}
40616
40838
  };
40617
40839
 
40618
- var styles$1D = function styles() {
40840
+ var styles$1E = function styles() {
40619
40841
  return {
40620
40842
  root: {
40621
40843
  marginRight: 4,
@@ -40724,11 +40946,11 @@ function AddFolderRow(_ref) {
40724
40946
  }, /*#__PURE__*/React__default.createElement(CancelIcon, null)));
40725
40947
  }
40726
40948
 
40727
- var AddFolderRow$1 = withStyles$1(styles$1D, {
40949
+ var AddFolderRow$1 = withStyles$1(styles$1E, {
40728
40950
  name: 'VdtAddFolderRow'
40729
40951
  })(AddFolderRow);
40730
40952
 
40731
- var _excluded$10 = ["classes", "id", "queryParams", "markerProps", "childFolders", "metadata", "itemSearchDocument", "folderDepth", "type", "hideSubFolderSharing", "onSelect", "onRemoveItem", "indentationValues", "indentationProps", "FolderRowContentComponent", "FolderRowContentProps", "AddRowComponent", "AddRowProps", "FolderRowContentWrapperComponent", "FolderRowContentWrapperProps"];
40953
+ var _excluded$11 = ["classes", "id", "queryParams", "markerProps", "childFolders", "metadata", "itemSearchDocument", "folderDepth", "type", "hideSubFolderSharing", "onSelect", "onRemoveItem", "indentationValues", "indentationProps", "FolderRowContentComponent", "FolderRowContentProps", "AddRowComponent", "AddRowProps", "FolderRowContentWrapperComponent", "FolderRowContentWrapperProps"];
40732
40954
  var defaultmarkerProps = {
40733
40955
  markerValue: 'savedSearch',
40734
40956
  markerField: 'eidr_referentType'
@@ -40740,7 +40962,7 @@ var defaultIndentationProps = {
40740
40962
  defalutNewRowIndentation: 10
40741
40963
  };
40742
40964
 
40743
- var styles$1E = function styles() {
40965
+ var styles$1F = function styles() {
40744
40966
  return {
40745
40967
  root: {
40746
40968
  display: 'flex',
@@ -40833,7 +41055,7 @@ function FolderRow(_ref2) {
40833
41055
  FolderRowContentWrapperComponent = _ref2$FolderRowConten3 === void 0 ? FolderRowContentWrapper : _ref2$FolderRowConten3,
40834
41056
  _ref2$FolderRowConten4 = _ref2.FolderRowContentWrapperProps,
40835
41057
  FolderRowContentWrapperProps = _ref2$FolderRowConten4 === void 0 ? {} : _ref2$FolderRowConten4,
40836
- props = _objectWithoutProperties(_ref2, _excluded$10);
41058
+ props = _objectWithoutProperties(_ref2, _excluded$11);
40837
41059
 
40838
41060
  var _React$useState = React__default.useState(),
40839
41061
  _React$useState2 = _slicedToArray(_React$useState, 2),
@@ -41007,14 +41229,14 @@ function FolderRow(_ref2) {
41007
41229
  }));
41008
41230
  }
41009
41231
 
41010
- var FolderRow$1 = withStyles(styles$1E, {
41232
+ var FolderRow$1 = withStyles(styles$1F, {
41011
41233
  name: 'VdtFolderRow'
41012
41234
  })(FolderRow);
41013
41235
 
41014
- var _excluded$11 = ["value", "onChange"],
41236
+ var _excluded$12 = ["value", "onChange"],
41015
41237
  _excluded2$f = ["value", "onChange"],
41016
41238
  _excluded3$6 = ["displayType", "withAutocomplete", "autoCompleteHoc", "type"];
41017
- var styles$1F = function styles() {
41239
+ var styles$1G = function styles() {
41018
41240
  return {
41019
41241
  root: {
41020
41242
  '& .MuiFormHelperText-root': {
@@ -41040,7 +41262,7 @@ function withUpdateOnBlur(InputComponent) {
41040
41262
  return function (_ref) {
41041
41263
  var value = _ref.value,
41042
41264
  onChange = _ref.onChange,
41043
- props = _objectWithoutProperties(_ref, _excluded$11);
41265
+ props = _objectWithoutProperties(_ref, _excluded$12);
41044
41266
 
41045
41267
  var _React$useState = React__default.useState(value),
41046
41268
  _React$useState2 = _slicedToArray(_React$useState, 2),
@@ -41172,12 +41394,12 @@ QueryInput.defaultProps = {
41172
41394
  autoCompleteHoc: function autoCompleteHoc() {}
41173
41395
  };
41174
41396
 
41175
- var QueryInput$1 = withStyles(styles$1F, {
41397
+ var QueryInput$1 = withStyles(styles$1G, {
41176
41398
  name: 'VdtQueryInput'
41177
41399
  })(QueryInput);
41178
41400
 
41179
- var _excluded$12 = ["classes", "className", "field", "onChange", "InputComponent"];
41180
- var styles$1G = function styles(theme) {
41401
+ var _excluded$13 = ["classes", "className", "field", "onChange", "InputComponent"];
41402
+ var styles$1H = function styles(theme) {
41181
41403
  return {
41182
41404
  root: {
41183
41405
  width: '50%'
@@ -41195,7 +41417,7 @@ function QueryBetween(_ref) {
41195
41417
  field = _ref.field,
41196
41418
  _onChange = _ref.onChange,
41197
41419
  InputComponent = _ref.InputComponent,
41198
- props = _objectWithoutProperties(_ref, _excluded$12);
41420
+ props = _objectWithoutProperties(_ref, _excluded$13);
41199
41421
 
41200
41422
  var betweenField = function betweenField(min, max) {
41201
41423
  return {
@@ -41264,12 +41486,12 @@ QueryBetween.defaultProps = {
41264
41486
  InputComponent: QueryInput$1
41265
41487
  };
41266
41488
 
41267
- var QueryBetween$1 = withStyles(styles$1G, {
41489
+ var QueryBetween$1 = withStyles(styles$1H, {
41268
41490
  name: 'VdtQueryBetween'
41269
41491
  })(QueryBetween);
41270
41492
 
41271
- var _excluded$13 = ["classes", "className", "field", "onChange", "InputComponent"];
41272
- var styles$1H = function styles() {
41493
+ var _excluded$14 = ["classes", "className", "field", "onChange", "InputComponent"];
41494
+ var styles$1I = function styles() {
41273
41495
  return {
41274
41496
  root: {}
41275
41497
  };
@@ -41280,7 +41502,7 @@ function QueryEquals(_ref) {
41280
41502
  field = _ref.field,
41281
41503
  _onChange = _ref.onChange,
41282
41504
  InputComponent = _ref.InputComponent,
41283
- props = _objectWithoutProperties(_ref, _excluded$13);
41505
+ props = _objectWithoutProperties(_ref, _excluded$14);
41284
41506
 
41285
41507
  var equalsField = function equalsField(value) {
41286
41508
  return {
@@ -41334,12 +41556,12 @@ QueryEquals.defaultProps = {
41334
41556
  InputComponent: QueryInput$1
41335
41557
  };
41336
41558
 
41337
- var QueryEquals$1 = withStyles(styles$1H, {
41559
+ var QueryEquals$1 = withStyles(styles$1I, {
41338
41560
  name: 'VdtQueryEquals'
41339
41561
  })(QueryEquals);
41340
41562
 
41341
- var _excluded$14 = ["classes", "className", "field", "onChange", "InputComponent"];
41342
- var styles$1I = function styles() {
41563
+ var _excluded$15 = ["classes", "className", "field", "onChange", "InputComponent"];
41564
+ var styles$1J = function styles() {
41343
41565
  return {
41344
41566
  root: {}
41345
41567
  };
@@ -41350,7 +41572,7 @@ function QueryContains(_ref) {
41350
41572
  field = _ref.field,
41351
41573
  _onChange = _ref.onChange,
41352
41574
  InputComponent = _ref.InputComponent,
41353
- props = _objectWithoutProperties(_ref, _excluded$14);
41575
+ props = _objectWithoutProperties(_ref, _excluded$15);
41354
41576
 
41355
41577
  var equalsField = function equalsField(value) {
41356
41578
  return {
@@ -41404,11 +41626,11 @@ QueryContains.defaultProps = {
41404
41626
  InputComponent: QueryInput$1
41405
41627
  };
41406
41628
 
41407
- var QueryContains$1 = withStyles(styles$1I, {
41629
+ var QueryContains$1 = withStyles(styles$1J, {
41408
41630
  name: 'VdtQueryContains'
41409
41631
  })(QueryContains);
41410
41632
 
41411
- var _excluded$15 = ["value", "options", "onChange", "equalsText", "containsText", "betweenText"];
41633
+ var _excluded$16 = ["value", "options", "onChange", "equalsText", "containsText", "betweenText"];
41412
41634
  var defaultPredicates = {
41413
41635
  equals: {
41414
41636
  label: 'Equals',
@@ -41512,7 +41734,7 @@ function PredicatePicker(_ref2) {
41512
41734
  equalsText = _ref2.equalsText,
41513
41735
  containsText = _ref2.containsText,
41514
41736
  betweenText = _ref2.betweenText,
41515
- props = _objectWithoutProperties(_ref2, _excluded$15);
41737
+ props = _objectWithoutProperties(_ref2, _excluded$16);
41516
41738
 
41517
41739
  return /*#__PURE__*/React__default.createElement(Select$1, _extends({
41518
41740
  value: value,
@@ -41530,7 +41752,7 @@ function PredicatePicker(_ref2) {
41530
41752
  }));
41531
41753
  }
41532
41754
 
41533
- var styles$1J = function styles(theme) {
41755
+ var styles$1K = function styles(theme) {
41534
41756
  return {
41535
41757
  root: {
41536
41758
  '& > *': {
@@ -41755,7 +41977,7 @@ QueryField.defaultProps = {
41755
41977
  PredicateComponentProps: {}
41756
41978
  };
41757
41979
 
41758
- var QueryField$1 = withStyles(styles$1J, {
41980
+ var QueryField$1 = withStyles(styles$1K, {
41759
41981
  name: 'VdtQueryField'
41760
41982
  })(QueryField);
41761
41983
 
@@ -41766,7 +41988,7 @@ var stopProp = function stopProp(f) {
41766
41988
  };
41767
41989
  };
41768
41990
 
41769
- var styles$1K = function styles(theme) {
41991
+ var styles$1L = function styles(theme) {
41770
41992
  return {
41771
41993
  root: {},
41772
41994
  errorButton: {
@@ -41937,7 +42159,7 @@ QueryGroup.defaultProps = {
41937
42159
  }
41938
42160
  };
41939
42161
 
41940
- var QueryGroup$1 = withStyles(styles$1K, {
42162
+ var QueryGroup$1 = withStyles(styles$1L, {
41941
42163
  name: 'VdtQueryGroup'
41942
42164
  })(QueryGroup);
41943
42165
 
@@ -41948,7 +42170,7 @@ var stopProp$1 = function stopProp(f) {
41948
42170
  };
41949
42171
  };
41950
42172
 
41951
- var styles$1L = function styles(theme) {
42173
+ var styles$1M = function styles(theme) {
41952
42174
  return {
41953
42175
  root: {},
41954
42176
  errorButton: {
@@ -42116,7 +42338,7 @@ QueryOperator.defaultProps = {
42116
42338
  onChangeOperation: undefined
42117
42339
  };
42118
42340
 
42119
- var QueryOperator$1 = withStyles(styles$1L, {
42341
+ var QueryOperator$1 = withStyles(styles$1M, {
42120
42342
  name: 'VdtQueryOperator'
42121
42343
  })(QueryOperator);
42122
42344
 
@@ -42194,9 +42416,9 @@ var useQueryBuilder = function useQueryBuilder(path) {
42194
42416
  };
42195
42417
  };
42196
42418
 
42197
- var _excluded$16 = ["canExpandpath", "path", "fields", "groups", "defaultField", "defaultGroup", "not", "nodeId", "canExpand", "parentGroup", "onRemove"],
42419
+ var _excluded$17 = ["canExpandpath", "path", "fields", "groups", "defaultField", "defaultGroup", "not", "nodeId", "canExpand", "parentGroup", "onRemove"],
42198
42420
  _excluded2$g = ["uuid"];
42199
- var styles$1M = function styles(theme) {
42421
+ var styles$1N = function styles(theme) {
42200
42422
  return {
42201
42423
  root: {
42202
42424
  '&:focus > .MuiTreeItem-content .MuiTreeItem-label': {
@@ -42245,7 +42467,7 @@ function QueryEntry(_ref) {
42245
42467
  canExpand = _ref.canExpand,
42246
42468
  parentGroup = _ref.parentGroup,
42247
42469
  onRemove = _ref.onRemove,
42248
- props = _objectWithoutProperties(_ref, _excluded$16);
42470
+ props = _objectWithoutProperties(_ref, _excluded$17);
42249
42471
 
42250
42472
  var expandNode = props.expandNode,
42251
42473
  OperatorComponent = props.OperatorComponent,
@@ -42468,13 +42690,13 @@ QueryEntry.defaultProps = {
42468
42690
  onRemove: undefined
42469
42691
  };
42470
42692
 
42471
- var QueryEntry$1 = withStyles(styles$1M, {
42693
+ var QueryEntry$1 = withStyles(styles$1N, {
42472
42694
  name: 'VdtQueryEntry'
42473
42695
  })(QueryEntry);
42474
42696
 
42475
- var _excluded$17 = ["uuid"],
42697
+ var _excluded$18 = ["uuid"],
42476
42698
  _excluded2$h = ["uuid", "predicate"];
42477
- var styles$1N = function styles(theme) {
42699
+ var styles$1O = function styles(theme) {
42478
42700
  return {
42479
42701
  root: {},
42480
42702
  treeRoot: {
@@ -42491,7 +42713,7 @@ var styles$1N = function styles(theme) {
42491
42713
  var queryToItemSearchDocument = function queryToItemSearchDocument(query) {
42492
42714
  function toGroupOrOperator(_ref) {
42493
42715
  var uuid = _ref.uuid,
42494
- entry = _objectWithoutProperties(_ref, _excluded$17);
42716
+ entry = _objectWithoutProperties(_ref, _excluded$18);
42495
42717
 
42496
42718
  var isOperator = entry.operation;
42497
42719
 
@@ -42665,11 +42887,11 @@ QueryBuilder.defaultProps = {
42665
42887
  QueryEntryProps: {}
42666
42888
  };
42667
42889
 
42668
- var QueryBuilder$1 = withStyles(styles$1N, {
42890
+ var QueryBuilder$1 = withStyles(styles$1O, {
42669
42891
  name: 'VdtQueryBuilder'
42670
42892
  })(QueryBuilder);
42671
42893
 
42672
- var styles$1O = function styles(theme) {
42894
+ var styles$1P = function styles(theme) {
42673
42895
  return {
42674
42896
  root: {
42675
42897
  padding: theme.spacing(1)
@@ -42796,7 +43018,7 @@ QueryBuilderCard.defaultProps = {
42796
43018
  searchButtonProps: {}
42797
43019
  };
42798
43020
 
42799
- var index$4 = withStyles(styles$1O, {
43021
+ var index$4 = withStyles(styles$1P, {
42800
43022
  name: 'VdtQueryBuilderCard'
42801
43023
  })(QueryBuilderCard);
42802
43024
 
@@ -42863,7 +43085,7 @@ var BinListMenu$1 = withStyles({}, {
42863
43085
  name: 'VdtBinListMenu'
42864
43086
  })(BinListMenu);
42865
43087
 
42866
- var _excluded$18 = ["entityType", "entity", "entityComponents"];
43088
+ var _excluded$19 = ["entityType", "entity", "entityComponents"];
42867
43089
 
42868
43090
  var _defaultEntityCompone;
42869
43091
  var ITEM$1 = 'item';
@@ -42874,7 +43096,7 @@ function EntityCard(_ref) {
42874
43096
  entity = _ref.entity,
42875
43097
  _ref$entityComponents = _ref.entityComponents,
42876
43098
  entityComponents = _ref$entityComponents === void 0 ? defaultEntityComponents : _ref$entityComponents,
42877
- props = _objectWithoutProperties(_ref, _excluded$18);
43099
+ props = _objectWithoutProperties(_ref, _excluded$19);
42878
43100
 
42879
43101
  if (!entityType) return null;
42880
43102
 
@@ -42895,7 +43117,7 @@ function EntityCard(_ref) {
42895
43117
  , entityProps);
42896
43118
  }
42897
43119
 
42898
- var _excluded$19 = ["children", "classes", "className"];
43120
+ var _excluded$1a = ["children", "classes", "className"];
42899
43121
  var BIN_ENTITY_TYPE = 'BIN';
42900
43122
 
42901
43123
  var BinItemMenu = function BinItemMenu(_ref) {
@@ -42914,7 +43136,7 @@ var BinContent = function BinContent(_ref2) {
42914
43136
  var children = _ref2.children,
42915
43137
  classes = _ref2.classes,
42916
43138
  className = _ref2.className,
42917
- props = _objectWithoutProperties(_ref2, _excluded$19);
43139
+ props = _objectWithoutProperties(_ref2, _excluded$1a);
42918
43140
 
42919
43141
  return /*#__PURE__*/React__default.createElement("div", _extends({
42920
43142
  className: clsx(className, classes.root)
@@ -42952,7 +43174,7 @@ var entityCardDraggableStyles = {
42952
43174
  var EntityCardDraggable = compose(withStyles(entityCardDraggableStyles, {
42953
43175
  name: 'VdtEntityCardDraggable'
42954
43176
  }), withDrag)(EntityCard);
42955
- var styles$1P = {
43177
+ var styles$1Q = {
42956
43178
  root: {
42957
43179
  minWidth: 340
42958
43180
  }
@@ -43141,11 +43363,11 @@ function BinList(_ref3) {
43141
43363
  }, AddToCollectionDialogProps))));
43142
43364
  }
43143
43365
 
43144
- var BinList$1 = withStyles(styles$1P, {
43366
+ var BinList$1 = withStyles(styles$1Q, {
43145
43367
  name: 'VdtBinList'
43146
43368
  })(BinList);
43147
43369
 
43148
- var _excluded$1a = ["entityType", "entityId", "entity", "index", "CollectionCardComponent", "ItemCardComponent", "CollectionCardProps", "ItemCardProps"];
43370
+ var _excluded$1b = ["entityType", "entityId", "entity", "index", "CollectionCardComponent", "ItemCardComponent", "CollectionCardProps", "ItemCardProps"];
43149
43371
  function EntityGridItem(_ref) {
43150
43372
  var entityType = _ref.entityType,
43151
43373
  entityId = _ref.entityId,
@@ -43159,7 +43381,7 @@ function EntityGridItem(_ref) {
43159
43381
  CollectionCardProps = _ref$CollectionCardPr === void 0 ? {} : _ref$CollectionCardPr,
43160
43382
  _ref$ItemCardProps = _ref.ItemCardProps,
43161
43383
  ItemCardProps = _ref$ItemCardProps === void 0 ? {} : _ref$ItemCardProps,
43162
- props = _objectWithoutProperties(_ref, _excluded$1a);
43384
+ props = _objectWithoutProperties(_ref, _excluded$1b);
43163
43385
 
43164
43386
  var isCollection = entityType === 'COLLECTION';
43165
43387
  var isItem = entityType === 'ITEM';
@@ -43180,8 +43402,8 @@ function EntityGridItem(_ref) {
43180
43402
  }, ItemCardProps)));
43181
43403
  }
43182
43404
 
43183
- var _excluded$1b = ["className", "classes", "isDragging"];
43184
- var styles$1Q = {
43405
+ var _excluded$1c = ["className", "classes", "isDragging"];
43406
+ var styles$1R = {
43185
43407
  root: {},
43186
43408
  rootIsDragging: {
43187
43409
  opacity: 0.5,
@@ -43193,7 +43415,7 @@ var EntityGridItemDraggable = function EntityGridItemDraggable(_ref) {
43193
43415
  var className = _ref.className,
43194
43416
  classes = _ref.classes,
43195
43417
  isDragging = _ref.isDragging,
43196
- props = _objectWithoutProperties(_ref, _excluded$1b);
43418
+ props = _objectWithoutProperties(_ref, _excluded$1c);
43197
43419
 
43198
43420
  return /*#__PURE__*/React__default.createElement(EntityGridItem, _extends({
43199
43421
  className: clsx(classes.root, 'VdtEntityGridItemDraggable-root', isDragging && classes.rootIsDragging, isDragging && 'VdtEntityGridItemDraggable-rootIsDragging', className) // eslint-disable-next-line react/jsx-props-no-spreading
@@ -43201,7 +43423,7 @@ var EntityGridItemDraggable = function EntityGridItemDraggable(_ref) {
43201
43423
  }, props));
43202
43424
  };
43203
43425
 
43204
- var EntityGridItemDraggable$1 = compose(withDrag, withStyles$1(styles$1Q, {
43426
+ var EntityGridItemDraggable$1 = compose(withDrag, withStyles$1(styles$1R, {
43205
43427
  name: 'VdtEntityGridItemDraggable'
43206
43428
  }))(EntityGridItemDraggable);
43207
43429
 
@@ -43252,7 +43474,7 @@ function EntityGrid(_ref) {
43252
43474
  }));
43253
43475
  }
43254
43476
 
43255
- var _excluded$1c = ["entityType", "entityId", "entity", "collectionOptions", "itemOptions", "onCollectionClick", "onItemClick"];
43477
+ var _excluded$1d = ["entityType", "entityId", "entity", "collectionOptions", "itemOptions", "onCollectionClick", "onItemClick"];
43256
43478
  function EntityTableRow(_ref) {
43257
43479
  var entityType = _ref.entityType,
43258
43480
  entityId = _ref.entityId,
@@ -43263,7 +43485,7 @@ function EntityTableRow(_ref) {
43263
43485
  itemOptions = _ref$itemOptions === void 0 ? [] : _ref$itemOptions,
43264
43486
  onCollectionClick = _ref.onCollectionClick,
43265
43487
  onItemClick = _ref.onItemClick,
43266
- props = _objectWithoutProperties(_ref, _excluded$1c);
43488
+ props = _objectWithoutProperties(_ref, _excluded$1d);
43267
43489
 
43268
43490
  var isCollection = entityType === 'COLLECTION';
43269
43491
  var isItem = entityType === 'ITEM';
@@ -43282,8 +43504,8 @@ function EntityTableRow(_ref) {
43282
43504
  }, props)));
43283
43505
  }
43284
43506
 
43285
- var _excluded$1d = ["className", "classes", "isDragging"];
43286
- var styles$1R = {
43507
+ var _excluded$1e = ["className", "classes", "isDragging"];
43508
+ var styles$1S = {
43287
43509
  root: {},
43288
43510
  rootIsDragging: {
43289
43511
  opacity: 0.5,
@@ -43295,7 +43517,7 @@ var EntityTableRowDraggable = function EntityTableRowDraggable(_ref) {
43295
43517
  var className = _ref.className,
43296
43518
  classes = _ref.classes,
43297
43519
  isDragging = _ref.isDragging,
43298
- props = _objectWithoutProperties(_ref, _excluded$1d);
43520
+ props = _objectWithoutProperties(_ref, _excluded$1e);
43299
43521
 
43300
43522
  return /*#__PURE__*/React__default.createElement(EntityTableRow, _extends({
43301
43523
  className: clsx(classes.root, 'VdtEntityTableRowDraggable-root', isDragging && classes.rootIsDragging, isDragging && 'VdtEntityTableRowDraggable-rootIsDragging', className) // eslint-disable-next-line react/jsx-props-no-spreading
@@ -43303,7 +43525,7 @@ var EntityTableRowDraggable = function EntityTableRowDraggable(_ref) {
43303
43525
  }, props));
43304
43526
  };
43305
43527
 
43306
- var EntityTableRowDraggable$1 = compose(withDrag, withStyles$1(styles$1R, {
43528
+ var EntityTableRowDraggable$1 = compose(withDrag, withStyles$1(styles$1S, {
43307
43529
  name: 'VdtEntityTableRowDraggable'
43308
43530
  }))(EntityTableRowDraggable);
43309
43531
 
@@ -43376,7 +43598,7 @@ function EntityTable(_ref) {
43376
43598
  }) : null));
43377
43599
  }
43378
43600
 
43379
- var styles$1S = function styles() {
43601
+ var styles$1T = function styles() {
43380
43602
  return {
43381
43603
  root: {},
43382
43604
  entityCard: {
@@ -43512,7 +43734,7 @@ function EntityDeleteDialog(_ref) {
43512
43734
  }, confirmButtonText)));
43513
43735
  }
43514
43736
 
43515
- var EntityDeleteDialog$1 = withStyles(styles$1S, 'VdtEntityDeleteDialog')(EntityDeleteDialog);
43737
+ var EntityDeleteDialog$1 = withStyles(styles$1T, 'VdtEntityDeleteDialog')(EntityDeleteDialog);
43516
43738
  EntityDeleteDialog.propTypes = {
43517
43739
  open: propTypes.bool,
43518
43740
  onClose: propTypes.func,
@@ -43741,7 +43963,7 @@ var useComments = function useComments(_ref) {
43741
43963
  };
43742
43964
  };
43743
43965
 
43744
- var styles$1T = function styles(theme) {
43966
+ var styles$1U = function styles(theme) {
43745
43967
  return {
43746
43968
  root: {
43747
43969
  display: 'flex',
@@ -43867,7 +44089,7 @@ function EntityCommentCard(_ref) {
43867
44089
  })))));
43868
44090
  }
43869
44091
 
43870
- var EntityCommentCard$1 = withStyles(styles$1T, {
44092
+ var EntityCommentCard$1 = withStyles(styles$1U, {
43871
44093
  name: 'VdtEntityCommentCard'
43872
44094
  })(EntityCommentCard);
43873
44095
  EntityCommentCard.propTypes = {
@@ -43895,7 +44117,7 @@ EntityCommentCard.defaultProps = {
43895
44117
  UserIconComponent: UserIcon
43896
44118
  };
43897
44119
 
43898
- var styles$1U = function styles(theme) {
44120
+ var styles$1V = function styles(theme) {
43899
44121
  return {
43900
44122
  root: {
43901
44123
  paddingTop: theme.spacing(2)
@@ -44047,7 +44269,7 @@ function EntityComment(_ref) {
44047
44269
  }) : null));
44048
44270
  }
44049
44271
 
44050
- var EntityComment$1 = withStyles(styles$1U, {
44272
+ var EntityComment$1 = withStyles(styles$1V, {
44051
44273
  name: 'VdtEntityComment'
44052
44274
  })(EntityComment);
44053
44275
  EntityComment.propTypes = {
@@ -44338,7 +44560,7 @@ var EntityTreeList = function EntityTreeList(_ref3) {
44338
44560
  }, DropZoneProps)));
44339
44561
  };
44340
44562
 
44341
- var _excluded$1e = ["entry"];
44563
+ var _excluded$1f = ["entry"];
44342
44564
  var defaultSearchState = {
44343
44565
  interval: 'generic',
44344
44566
  queryParams: {
@@ -44369,7 +44591,7 @@ var defaultSearchState = {
44369
44591
  }]
44370
44592
  }
44371
44593
  };
44372
- var styles$1V = {
44594
+ var styles$1W = {
44373
44595
  root: {}
44374
44596
  };
44375
44597
 
@@ -44462,7 +44684,7 @@ var EntityTree = function EntityTree(_ref) {
44462
44684
 
44463
44685
  var _data$entry = data.entry,
44464
44686
  newEntries = _data$entry === void 0 ? [] : _data$entry,
44465
- newEntryProps = _objectWithoutProperties(data, _excluded$1e);
44687
+ newEntryProps = _objectWithoutProperties(data, _excluded$1f);
44466
44688
 
44467
44689
  setSearchResultType(function (old) {
44468
44690
  return _objectSpread2(_objectSpread2({}, newEntryProps), {}, {
@@ -44534,7 +44756,7 @@ var EntityTree = function EntityTree(_ref) {
44534
44756
  }, EntityTreeListProps))));
44535
44757
  };
44536
44758
 
44537
- var EntityTree$1 = withStyles$1(styles$1V, {
44759
+ var EntityTree$1 = withStyles$1(styles$1W, {
44538
44760
  name: 'VdtEntityTree'
44539
44761
  })(EntityTree);
44540
44762
 
@@ -44557,7 +44779,7 @@ function LinearProgressWithLabel(props) {
44557
44779
  }, "".concat(Math.round(value), "%"))));
44558
44780
  }
44559
44781
 
44560
- var styles$1W = function styles(theme) {
44782
+ var styles$1X = function styles(theme) {
44561
44783
  return {
44562
44784
  fileListItemSecondaryAction: {
44563
44785
  visibility: 'hidden'
@@ -44736,15 +44958,15 @@ function UploadListItem(_ref) {
44736
44958
  }, /*#__PURE__*/React__default.createElement(DeleteIcon$1, null))));
44737
44959
  }
44738
44960
 
44739
- var UploadListItem$1 = withStyles(styles$1W, {
44961
+ var UploadListItem$1 = withStyles(styles$1X, {
44740
44962
  name: 'VdtUploadListItem'
44741
44963
  })(UploadListItem);
44742
44964
 
44743
- var _excluded$1f = ["path", "files"];
44965
+ var _excluded$1g = ["path", "files"];
44744
44966
  function UploadListFolder(_ref) {
44745
44967
  var path = _ref.path,
44746
44968
  descendants = _ref.files,
44747
- props = _objectWithoutProperties(_ref, _excluded$1f);
44969
+ props = _objectWithoutProperties(_ref, _excluded$1g);
44748
44970
 
44749
44971
  var totalBytes = descendants.reduce(function (total, f) {
44750
44972
  return total + f.file.size || 0;
@@ -44771,7 +44993,7 @@ function UploadListFolder(_ref) {
44771
44993
  }, props));
44772
44994
  }
44773
44995
 
44774
- var styles$1X = function styles(theme) {
44996
+ var styles$1Y = function styles(theme) {
44775
44997
  return {
44776
44998
  form: {
44777
44999
  '& > *': {
@@ -44846,11 +45068,11 @@ function UploadForm(_ref) {
44846
45068
  })));
44847
45069
  }
44848
45070
 
44849
- var UploadForm$1 = withStyles(styles$1X, {
45071
+ var UploadForm$1 = withStyles(styles$1Y, {
44850
45072
  name: 'VdtUploadForm'
44851
45073
  })(UploadForm);
44852
45074
 
44853
- var styles$1Y = function styles(theme) {
45075
+ var styles$1Z = function styles(theme) {
44854
45076
  return {
44855
45077
  root: {
44856
45078
  backgroundColor: theme.palette.action.selected,
@@ -44908,11 +45130,11 @@ function UploadEditor(_ref) {
44908
45130
  }, UploadFormProps))));
44909
45131
  }
44910
45132
 
44911
- var UploadEditor$1 = withStyles(styles$1Y, {
45133
+ var UploadEditor$1 = withStyles(styles$1Z, {
44912
45134
  name: 'VdtUploadEditor'
44913
45135
  })(UploadEditor);
44914
45136
 
44915
- var _excluded$1g = ["fileTree", "files"];
45137
+ var _excluded$1h = ["fileTree", "files"];
44916
45138
 
44917
45139
  function fileToPathTree(file) {
44918
45140
  var result = {};
@@ -44939,7 +45161,7 @@ function parseFilesIntoTree(files) {
44939
45161
  function FileTreeNode(_ref) {
44940
45162
  var fileTree = _ref.fileTree,
44941
45163
  files = _ref.files,
44942
- props = _objectWithoutProperties(_ref, _excluded$1g);
45164
+ props = _objectWithoutProperties(_ref, _excluded$1h);
44943
45165
 
44944
45166
  var clickFile = props.clickFile,
44945
45167
  removeFile = props.removeFile,
@@ -45154,10 +45376,10 @@ var SplitButton$1 = withStyles({}, {
45154
45376
  name: 'VdtSplitButton'
45155
45377
  })(SplitButton);
45156
45378
 
45157
- var _excluded$1h = ["selected", "startIndex", "onClickFile", "removeFiles"],
45379
+ var _excluded$1i = ["selected", "startIndex", "onClickFile", "removeFiles"],
45158
45380
  _excluded2$i = ["onSubmit"];
45159
45381
 
45160
- var styles$1Z = function styles(theme) {
45382
+ var styles$1_ = function styles(theme) {
45161
45383
  return {
45162
45384
  root: {
45163
45385
  paddingLeft: theme.spacing(2),
@@ -45231,7 +45453,7 @@ function ExtendedFileTree(_ref) {
45231
45453
  startIndex = _ref$startIndex === void 0 ? 0 : _ref$startIndex,
45232
45454
  onClickFile = _ref.onClickFile,
45233
45455
  removeFiles = _ref.removeFiles,
45234
- rest = _objectWithoutProperties(_ref, _excluded$1h);
45456
+ rest = _objectWithoutProperties(_ref, _excluded$1i);
45235
45457
 
45236
45458
  var handleClickFile = function handleClickFile(idx) {
45237
45459
  return onClickFile(idx + startIndex);
@@ -45545,15 +45767,15 @@ function Upload(_ref4) {
45545
45767
  }, UploadCollectionPickerProps))));
45546
45768
  }
45547
45769
 
45548
- var Upload$1 = withStyles(styles$1Z, {
45770
+ var Upload$1 = withStyles(styles$1_, {
45549
45771
  name: 'VdtUpload'
45550
45772
  })(Upload);
45551
45773
 
45552
- var _excluded$1i = ["children"];
45774
+ var _excluded$1j = ["children"];
45553
45775
  var MediaCardContext = /*#__PURE__*/React__default.createContext();
45554
45776
  var MediaCardProvider = function MediaCardProvider(_ref) {
45555
45777
  var children = _ref.children,
45556
- props = _objectWithoutProperties(_ref, _excluded$1i);
45778
+ props = _objectWithoutProperties(_ref, _excluded$1j);
45557
45779
 
45558
45780
  return /*#__PURE__*/React__default.createElement(MediaCardContext.Provider, {
45559
45781
  value: props
@@ -45569,9 +45791,9 @@ var useMediaCardContext = function useMediaCardContext() {
45569
45791
  return context;
45570
45792
  };
45571
45793
 
45572
- var _excluded$1j = ["classes", "className", "title", "titleTypographyProps", "subheader", "subheaderTypographyProps"];
45794
+ var _excluded$1k = ["classes", "className", "title", "titleTypographyProps", "subheader", "subheaderTypographyProps"];
45573
45795
 
45574
- var styles$1_ = function styles(theme) {
45796
+ var styles$1$ = function styles(theme) {
45575
45797
  return {
45576
45798
  root: {
45577
45799
  paddingLeft: theme.spacing(2),
@@ -45599,7 +45821,7 @@ function MediaCardFullWidthHeader(_ref) {
45599
45821
  subheaderTypographyProps = _ref$subheaderTypogra === void 0 ? {
45600
45822
  noWrap: true
45601
45823
  } : _ref$subheaderTypogra,
45602
- props = _objectWithoutProperties(_ref, _excluded$1j);
45824
+ props = _objectWithoutProperties(_ref, _excluded$1k);
45603
45825
 
45604
45826
  return /*#__PURE__*/React__default.createElement(CardHeader$1, _extends({
45605
45827
  className: className,
@@ -45615,11 +45837,11 @@ function MediaCardFullWidthHeader(_ref) {
45615
45837
  }, props));
45616
45838
  }
45617
45839
 
45618
- var MediaCardFullWidthHeader$1 = withStyles(styles$1_, {
45840
+ var MediaCardFullWidthHeader$1 = withStyles(styles$1$, {
45619
45841
  name: 'MediaCardFullWidthHeader'
45620
45842
  })(MediaCardFullWidthHeader);
45621
45843
 
45622
- var styles$1$ = function styles(theme) {
45844
+ var styles$20 = function styles(theme) {
45623
45845
  return {
45624
45846
  root: {
45625
45847
  paddingBottom: theme.spacing(1),
@@ -45671,13 +45893,13 @@ function MediaCardFullWidthContent(_ref) {
45671
45893
  }, TypographyProps), content)));
45672
45894
  }
45673
45895
 
45674
- var MediaCardFullWidthContent$1 = withStyles(styles$1$, {
45896
+ var MediaCardFullWidthContent$1 = withStyles(styles$20, {
45675
45897
  name: 'VdtMediaCardFullWidthContent'
45676
45898
  })(MediaCardFullWidthContent);
45677
45899
 
45678
- var _excluded$1k = ["className", "classes", "selected", "children"];
45900
+ var _excluded$1l = ["className", "classes", "selected", "children"];
45679
45901
 
45680
- var styles$20 = function styles(theme) {
45902
+ var styles$21 = function styles(theme) {
45681
45903
  return {
45682
45904
  root: {
45683
45905
  width: '100%',
@@ -45697,7 +45919,7 @@ function MediaCardFullWidthCard(_ref) {
45697
45919
  classes = _ref.classes,
45698
45920
  selected = _ref.selected,
45699
45921
  children = _ref.children,
45700
- props = _objectWithoutProperties(_ref, _excluded$1k);
45922
+ props = _objectWithoutProperties(_ref, _excluded$1l);
45701
45923
 
45702
45924
  return /*#__PURE__*/React__default.createElement(Card$1, _extends({
45703
45925
  className: clsx(classes.root, _defineProperty({}, classes.selected, selected), 'VdtMediaCardFullWidthCard-root', className),
@@ -45706,11 +45928,11 @@ function MediaCardFullWidthCard(_ref) {
45706
45928
  }, props), children);
45707
45929
  }
45708
45930
 
45709
- var MediaCardFullWidthCard$1 = withStyles(styles$20, {
45931
+ var MediaCardFullWidthCard$1 = withStyles(styles$21, {
45710
45932
  name: 'VdtMediaCardFullWidthCard'
45711
45933
  })(MediaCardFullWidthCard);
45712
45934
 
45713
- var styles$21 = function styles(theme) {
45935
+ var styles$22 = function styles(theme) {
45714
45936
  return {
45715
45937
  root: {
45716
45938
  height: '100%',
@@ -45748,12 +45970,12 @@ function MediaCardExpand(_ref) {
45748
45970
  })));
45749
45971
  }
45750
45972
 
45751
- var MediaCardExpand$1 = withStyles(styles$21, {
45973
+ var MediaCardExpand$1 = withStyles(styles$22, {
45752
45974
  name: 'VdtMediaCardExpand'
45753
45975
  })(MediaCardExpand);
45754
45976
 
45755
- var _excluded$1l = ["className", "classes", "onClick", "onExpand", "expanded", "defaultExpanded", "onSelect", "selected", "defaultSelected", "title", "subheader", "image", "content", "expandedContent", "CardComponent", "CardProps", "HeaderComponent", "HeaderProps", "ThumbnailComponent", "ThumbnailProps", "ContentComponent", "ContentProps", "ExpandedContentComponent", "ExpandedContentProps", "ExpandComponent", "ExpandProps", "ActionsComponent", "ActionsProps"];
45756
- var styles$22 = function styles(theme) {
45977
+ var _excluded$1m = ["className", "classes", "onClick", "onExpand", "expanded", "defaultExpanded", "onSelect", "selected", "defaultSelected", "title", "subheader", "image", "content", "expandedContent", "CardComponent", "CardProps", "HeaderComponent", "HeaderProps", "ThumbnailComponent", "ThumbnailProps", "ContentComponent", "ContentProps", "ExpandedContentComponent", "ExpandedContentProps", "ExpandComponent", "ExpandProps", "ActionsComponent", "ActionsProps"];
45978
+ var styles$23 = function styles(theme) {
45757
45979
  return {
45758
45980
  root: {
45759
45981
  width: '100%',
@@ -45799,7 +46021,7 @@ function MediaCardFullWidth(_ref) {
45799
46021
  ExpandProps = _ref.ExpandProps,
45800
46022
  ActionsComponent = _ref.ActionsComponent,
45801
46023
  ActionsProps = _ref.ActionsProps,
45802
- props = _objectWithoutProperties(_ref, _excluded$1l);
46024
+ props = _objectWithoutProperties(_ref, _excluded$1m);
45803
46025
 
45804
46026
  var _useToggleOnClick = useToggleOnClick(defaultExpanded, onExpand, controlledExpanded),
45805
46027
  _useToggleOnClick2 = _slicedToArray(_useToggleOnClick, 2),
@@ -45968,7 +46190,7 @@ MediaCardFullWidth.defaultProps = {
45968
46190
  ActionsProps: {}
45969
46191
  };
45970
46192
 
45971
- var index$5 = withStyles(styles$22, {
46193
+ var index$5 = withStyles(styles$23, {
45972
46194
  name: 'VdtMediaCardFullWidth'
45973
46195
  })(MediaCardFullWidth);
45974
46196
 
@@ -46028,7 +46250,7 @@ function reducer(state, action) {
46028
46250
  }
46029
46251
  }
46030
46252
 
46031
- var styles$23 = function styles(theme) {
46253
+ var styles$24 = function styles(theme) {
46032
46254
  return {
46033
46255
  root: {},
46034
46256
  FormControl: {
@@ -46294,13 +46516,13 @@ ChangePasswordForm.defaultProps = {
46294
46516
  noPwdTxt: 'No password set',
46295
46517
  noUserTxt: 'Cannot determine username'
46296
46518
  };
46297
- var ChangePasswordForm$1 = withStyles(styles$23, {
46519
+ var ChangePasswordForm$1 = withStyles(styles$24, {
46298
46520
  name: 'VdtChangePasswordForm'
46299
46521
  })(ChangePasswordForm);
46300
46522
 
46301
- var _excluded$1m = ["classes", "username", "onClose", "onSuccess", "changePasswordTxt"];
46523
+ var _excluded$1n = ["classes", "username", "onClose", "onSuccess", "changePasswordTxt"];
46302
46524
 
46303
- var styles$24 = function styles(theme) {
46525
+ var styles$25 = function styles(theme) {
46304
46526
  return {
46305
46527
  DialogTitle: {
46306
46528
  margin: 0,
@@ -46322,7 +46544,7 @@ function ChangePasswordDialog(_ref) {
46322
46544
  _onSuccess = _ref.onSuccess,
46323
46545
  _ref$changePasswordTx = _ref.changePasswordTxt,
46324
46546
  changePasswordTxt = _ref$changePasswordTx === void 0 ? 'Change Password' : _ref$changePasswordTx,
46325
- props = _objectWithoutProperties(_ref, _excluded$1m);
46547
+ props = _objectWithoutProperties(_ref, _excluded$1n);
46326
46548
 
46327
46549
  return /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(DialogTitle$1, {
46328
46550
  disableTypography: true,
@@ -46345,11 +46567,11 @@ function ChangePasswordDialog(_ref) {
46345
46567
  }, props))));
46346
46568
  }
46347
46569
 
46348
- var ChangePasswordDialog$1 = withStyles(styles$24, {
46570
+ var ChangePasswordDialog$1 = withStyles(styles$25, {
46349
46571
  name: 'VdtChangePasswordDialog'
46350
46572
  })(ChangePasswordDialog);
46351
46573
 
46352
- var _excluded$1n = ["user", "columns", "onClick"];
46574
+ var _excluded$1o = ["user", "columns", "onClick"];
46353
46575
 
46354
46576
  function UserRow(_ref) {
46355
46577
  var _ref$user = _ref.user,
@@ -46357,7 +46579,7 @@ function UserRow(_ref) {
46357
46579
  _ref$columns = _ref.columns,
46358
46580
  columns = _ref$columns === void 0 ? [] : _ref$columns,
46359
46581
  onClick = _ref.onClick,
46360
- TableRowProps = _objectWithoutProperties(_ref, _excluded$1n);
46582
+ TableRowProps = _objectWithoutProperties(_ref, _excluded$1o);
46361
46583
 
46362
46584
  return /*#__PURE__*/React__default.createElement(TableRow$3, _extends({
46363
46585
  onClick: onClick !== undefined ? function () {
@@ -46397,7 +46619,7 @@ var DEFAULT_COLUMN_LABELS$2 = {
46397
46619
  realName: 'Real name',
46398
46620
  disabled: 'Status'
46399
46621
  };
46400
- var styles$25 = function styles() {
46622
+ var styles$26 = function styles() {
46401
46623
  return {
46402
46624
  root: {}
46403
46625
  };
@@ -46455,11 +46677,11 @@ UserTable.defaultProps = {
46455
46677
  userColumnLabels: DEFAULT_COLUMN_LABELS$2
46456
46678
  };
46457
46679
 
46458
- var index$6 = withStyles(styles$25, {
46680
+ var index$6 = withStyles(styles$26, {
46459
46681
  name: 'VdtUserTable'
46460
46682
  })(UserTable);
46461
46683
 
46462
- var styles$26 = function styles(theme) {
46684
+ var styles$27 = function styles(theme) {
46463
46685
  return {
46464
46686
  root: {
46465
46687
  display: 'flex',
@@ -46767,11 +46989,11 @@ GroupRelationList.defaultProps = {
46767
46989
  addButtonText: 'Add'
46768
46990
  };
46769
46991
 
46770
- var GroupRealtionList = withStyles(styles$26, {
46992
+ var GroupRealtionList = withStyles(styles$27, {
46771
46993
  name: 'VdtGroupRelationList'
46772
46994
  })(GroupRelationList);
46773
46995
 
46774
- var styles$27 = function styles(theme) {
46996
+ var styles$28 = function styles(theme) {
46775
46997
  return {
46776
46998
  root: {
46777
46999
  display: 'flex',
@@ -46824,11 +47046,11 @@ function UserData(_ref2) {
46824
47046
  }))));
46825
47047
  }
46826
47048
 
46827
- var UserData$1 = withStyles(styles$27, {
47049
+ var UserData$1 = withStyles(styles$28, {
46828
47050
  name: 'VdtUserData'
46829
47051
  })(UserData);
46830
47052
 
46831
- var _excluded$1o = ["user", "onToggleDisabled", "onEdit", "onChangePassword", "onDelete", "editUserText", "changePasswordText", "deleteUserText", "enableUsertext", "disableUsertext"];
47053
+ var _excluded$1p = ["user", "onToggleDisabled", "onEdit", "onChangePassword", "onDelete", "editUserText", "changePasswordText", "deleteUserText", "enableUsertext", "disableUsertext"];
46832
47054
  function UserMenu(_ref) {
46833
47055
  var user = _ref.user,
46834
47056
  onToggleDisabled = _ref.onToggleDisabled,
@@ -46845,7 +47067,7 @@ function UserMenu(_ref) {
46845
47067
  enableUsertext = _ref$enableUsertext === void 0 ? 'Enable User' : _ref$enableUsertext,
46846
47068
  _ref$disableUsertext = _ref.disableUsertext,
46847
47069
  disableUsertext = _ref$disableUsertext === void 0 ? 'Disable User' : _ref$disableUsertext,
46848
- props = _objectWithoutProperties(_ref, _excluded$1o);
47070
+ props = _objectWithoutProperties(_ref, _excluded$1p);
46849
47071
 
46850
47072
  return (
46851
47073
  /*#__PURE__*/
@@ -46870,7 +47092,7 @@ function UserMenu(_ref) {
46870
47092
  );
46871
47093
  }
46872
47094
 
46873
- var styles$28 = function styles(theme) {
47095
+ var styles$29 = function styles(theme) {
46874
47096
  return {
46875
47097
  root: {
46876
47098
  display: 'grid',
@@ -47037,7 +47259,7 @@ UserDetails.defaultProps = {
47037
47259
  lockedUsers: ['admin', 'vidinetviewer']
47038
47260
  };
47039
47261
 
47040
- var index$7 = withStyles(styles$28, {
47262
+ var index$7 = withStyles(styles$29, {
47041
47263
  name: 'VdtUserDetails'
47042
47264
  })(UserDetails);
47043
47265
 
@@ -47064,7 +47286,7 @@ function PasswordField$1(props) {
47064
47286
  }, props));
47065
47287
  }
47066
47288
 
47067
- var styles$29 = function styles(theme) {
47289
+ var styles$2a = function styles(theme) {
47068
47290
  return {
47069
47291
  root: {
47070
47292
  display: 'flex',
@@ -47189,11 +47411,11 @@ function CreateUserForm(_ref) {
47189
47411
  }, submitText))));
47190
47412
  }
47191
47413
 
47192
- var CreateUserForm$1 = withStyles$1(styles$29, {
47414
+ var CreateUserForm$1 = withStyles$1(styles$2a, {
47193
47415
  name: 'VdtCreateUserForm'
47194
47416
  })(CreateUserForm);
47195
47417
 
47196
- var styles$2a = function styles() {
47418
+ var styles$2b = function styles() {
47197
47419
  return {
47198
47420
  root: {},
47199
47421
  DialogTitle: {},
@@ -47268,11 +47490,11 @@ CreateUserDialog.defaultProps = {
47268
47490
  CreateUserFormProps: {}
47269
47491
  };
47270
47492
 
47271
- var index$8 = withStyles(styles$2a, {
47493
+ var index$8 = withStyles(styles$2b, {
47272
47494
  name: 'VdtCreateUserDialog'
47273
47495
  })(CreateUserDialog);
47274
47496
 
47275
- var styles$2b = function styles(theme) {
47497
+ var styles$2c = function styles(theme) {
47276
47498
  return {
47277
47499
  root: {
47278
47500
  display: 'flex',
@@ -47341,11 +47563,11 @@ function EditUserForm(_ref) {
47341
47563
  }, submitText)));
47342
47564
  }
47343
47565
 
47344
- var EditUserForm$1 = withStyles$1(styles$2b, {
47566
+ var EditUserForm$1 = withStyles$1(styles$2c, {
47345
47567
  name: 'VdtEditUserForm'
47346
47568
  })(EditUserForm);
47347
47569
 
47348
- var styles$2c = function styles() {
47570
+ var styles$2d = function styles() {
47349
47571
  return {
47350
47572
  root: {}
47351
47573
  };
@@ -47380,11 +47602,11 @@ CreateUserDialog$1.defaultProps = {
47380
47602
  classes: {}
47381
47603
  };
47382
47604
 
47383
- var index$9 = withStyles(styles$2c, {
47605
+ var index$9 = withStyles(styles$2d, {
47384
47606
  name: 'VdtEditUserDialog'
47385
47607
  })(CreateUserDialog$1);
47386
47608
 
47387
- var styles$2d = function styles(theme) {
47609
+ var styles$2e = function styles(theme) {
47388
47610
  return {
47389
47611
  root: {
47390
47612
  display: 'flex',
@@ -47449,11 +47671,11 @@ function UserPasswordForm(_ref) {
47449
47671
  }, submitText)));
47450
47672
  }
47451
47673
 
47452
- var UserPasswordForm$1 = withStyles$1(styles$2d, {
47674
+ var UserPasswordForm$1 = withStyles$1(styles$2e, {
47453
47675
  name: 'VdtUserPasswordForm'
47454
47676
  })(UserPasswordForm);
47455
47677
 
47456
- var styles$2e = function styles() {
47678
+ var styles$2f = function styles() {
47457
47679
  return {
47458
47680
  root: {}
47459
47681
  };
@@ -47494,11 +47716,11 @@ CreateUserDialog$2.defaultProps = {
47494
47716
  onSubmit: undefined
47495
47717
  };
47496
47718
 
47497
- var index$a = withStyles(styles$2e, {
47719
+ var index$a = withStyles(styles$2f, {
47498
47720
  name: 'VdtChangeUserPasswordDialog'
47499
47721
  })(CreateUserDialog$2);
47500
47722
 
47501
- var styles$2f = function styles(theme) {
47723
+ var styles$2g = function styles(theme) {
47502
47724
  return {
47503
47725
  root: {
47504
47726
  display: 'flex',
@@ -47794,13 +48016,13 @@ UserRelationList.defaultProps = {
47794
48016
  addButtonText: 'Add'
47795
48017
  };
47796
48018
 
47797
- var UserRelationList$1 = withStyles(styles$2f, {
48019
+ var UserRelationList$1 = withStyles(styles$2g, {
47798
48020
  name: 'VdtUserRelationList'
47799
48021
  })(UserRelationList);
47800
48022
 
47801
- var _excluded$1p = ["classes", "group", "columns", "onClick"];
48023
+ var _excluded$1q = ["classes", "group", "columns", "onClick"];
47802
48024
 
47803
- var styles$2g = function styles() {
48025
+ var styles$2h = function styles() {
47804
48026
  return {
47805
48027
  TableRow: {},
47806
48028
  TableCell: {}
@@ -47814,7 +48036,7 @@ function GroupRow(_ref) {
47814
48036
  _ref$columns = _ref.columns,
47815
48037
  columns = _ref$columns === void 0 ? [] : _ref$columns,
47816
48038
  onClick = _ref.onClick,
47817
- TableRowProps = _objectWithoutProperties(_ref, _excluded$1p);
48039
+ TableRowProps = _objectWithoutProperties(_ref, _excluded$1q);
47818
48040
 
47819
48041
  return /*#__PURE__*/React__default.createElement(TableRow$3, _extends({
47820
48042
  onClick: onClick !== undefined ? function () {
@@ -47835,11 +48057,11 @@ function GroupRow(_ref) {
47835
48057
  }));
47836
48058
  }
47837
48059
 
47838
- var GroupRow$1 = withStyles(styles$2g, {
48060
+ var GroupRow$1 = withStyles(styles$2h, {
47839
48061
  name: 'VdtGroupRow'
47840
48062
  })(GroupRow);
47841
48063
 
47842
- var styles$2h = function styles() {
48064
+ var styles$2i = function styles() {
47843
48065
  return {
47844
48066
  root: {},
47845
48067
  TableContainer: {},
@@ -47924,11 +48146,11 @@ GroupTable.defaultProps = {
47924
48146
  }
47925
48147
  };
47926
48148
 
47927
- var index$b = withStyles(styles$2h, {
48149
+ var index$b = withStyles(styles$2i, {
47928
48150
  name: 'VdtGroupTable'
47929
48151
  })(GroupTable);
47930
48152
 
47931
- var styles$2i = function styles(theme) {
48153
+ var styles$2j = function styles(theme) {
47932
48154
  return {
47933
48155
  root: {
47934
48156
  display: 'flex',
@@ -47998,11 +48220,11 @@ function GroupData(_ref) {
47998
48220
  })));
47999
48221
  }
48000
48222
 
48001
- var GroupData$1 = withStyles(styles$2i, {
48223
+ var GroupData$1 = withStyles(styles$2j, {
48002
48224
  name: 'VdtGroupData'
48003
48225
  })(GroupData);
48004
48226
 
48005
- var _excluded$1q = ["groupType", "onEdit", "onDelete", "editGroupText", "deleteGroupText"];
48227
+ var _excluded$1r = ["groupType", "onEdit", "onDelete", "editGroupText", "deleteGroupText"];
48006
48228
  function GroupMenu(_ref) {
48007
48229
  var groupType = _ref.groupType,
48008
48230
  onEdit = _ref.onEdit,
@@ -48011,7 +48233,7 @@ function GroupMenu(_ref) {
48011
48233
  editGroupText = _ref$editGroupText === void 0 ? 'Edit Group' : _ref$editGroupText,
48012
48234
  _ref$deleteGroupText = _ref.deleteGroupText,
48013
48235
  deleteGroupText = _ref$deleteGroupText === void 0 ? 'Delete Group' : _ref$deleteGroupText,
48014
- props = _objectWithoutProperties(_ref, _excluded$1q);
48236
+ props = _objectWithoutProperties(_ref, _excluded$1r);
48015
48237
 
48016
48238
  return (
48017
48239
  /*#__PURE__*/
@@ -48028,7 +48250,7 @@ function GroupMenu(_ref) {
48028
48250
  );
48029
48251
  }
48030
48252
 
48031
- var styles$2j = function styles(theme) {
48253
+ var styles$2k = function styles(theme) {
48032
48254
  return {
48033
48255
  root: {
48034
48256
  display: 'grid',
@@ -48247,11 +48469,11 @@ GroupDetails.defaultProps = {
48247
48469
  lockedUsers: ['admin', 'vidinetviewer']
48248
48470
  };
48249
48471
 
48250
- var index$c = withStyles(styles$2j, {
48472
+ var index$c = withStyles(styles$2k, {
48251
48473
  name: 'VdtGroupDetails'
48252
48474
  })(GroupDetails);
48253
48475
 
48254
- var styles$2k = function styles(theme) {
48476
+ var styles$2l = function styles(theme) {
48255
48477
  return {
48256
48478
  root: {
48257
48479
  display: 'flex',
@@ -48443,11 +48665,11 @@ function CreateGroupForm(_ref) {
48443
48665
  }, submitText)));
48444
48666
  }
48445
48667
 
48446
- var CreateGroupForm$1 = withStyles$1(styles$2k, {
48668
+ var CreateGroupForm$1 = withStyles$1(styles$2l, {
48447
48669
  name: 'VdtCreateGroupForm'
48448
48670
  })(CreateGroupForm);
48449
48671
 
48450
- var styles$2l = function styles() {
48672
+ var styles$2m = function styles() {
48451
48673
  return {
48452
48674
  root: {},
48453
48675
  DialogTitle: {},
@@ -48533,11 +48755,11 @@ CreateGroupDialog.defaultProps = {
48533
48755
  CreateGroupFormProps: {}
48534
48756
  };
48535
48757
 
48536
- var index$d = withStyles(styles$2l, {
48758
+ var index$d = withStyles(styles$2m, {
48537
48759
  name: 'VdtCreateGroupDialog'
48538
48760
  })(CreateGroupDialog);
48539
48761
 
48540
- var styles$2m = function styles(theme) {
48762
+ var styles$2n = function styles(theme) {
48541
48763
  return {
48542
48764
  root: {
48543
48765
  display: 'flex',
@@ -48596,11 +48818,11 @@ function EditGroupForm(_ref) {
48596
48818
  }, submitText)));
48597
48819
  }
48598
48820
 
48599
- var EditGroupForm$1 = withStyles$1(styles$2m, {
48821
+ var EditGroupForm$1 = withStyles$1(styles$2n, {
48600
48822
  name: 'VdtEditGroupForm'
48601
48823
  })(EditGroupForm);
48602
48824
 
48603
- var styles$2n = function styles() {
48825
+ var styles$2o = function styles() {
48604
48826
  return {
48605
48827
  root: {},
48606
48828
  DialogTitle: {},
@@ -48654,8 +48876,8 @@ CreateUserDialog$3.defaultProps = {
48654
48876
  EditGroupFormProps: {}
48655
48877
  };
48656
48878
 
48657
- var index$e = withStyles(styles$2n, {
48879
+ var index$e = withStyles(styles$2o, {
48658
48880
  name: 'VdtEditGroupDialog'
48659
48881
  })(CreateUserDialog$3);
48660
48882
 
48661
- export { AddRelationDialog$1 as AddRelationDialog, AddToCollectionDialog$1 as AddToCollectionDialog, AutocompleteConstraintField$1 as AutocompleteConstraintField, AutocompleteField$1 as AutocompleteField, BatonAnalysisDialog$1 as BatonAnalysisDialog, BatonFormComponent as BatonAnalysisForm, BinList$1 as BinList, BinListMenu$1 as BinListMenu, ChangePasswordDialog$1 as ChangePasswordDialog, ChangePasswordForm$1 as ChangePasswordForm, index$a as ChangeUserPasswordDialog, CheckboxField$1 as CheckboxField, CheckboxGroupField$1 as CheckboxGroupField, CollectionAccessTab$1 as CollectionAccessTab, CollectionCard, CollectionCardThumbnail$1 as CollectionCardThumbnail, CollectionContent$1 as CollectionContent, CollectionCreateDialog$1 as CollectionCreateDialog, CollectionGrid, CollectionList$1 as CollectionList, CollectionMetadataEdit, CollectionMetadataTab$1 as CollectionMetadataTab, CollectionRow, CollectionSearchPicker$1 as CollectionSearchPicker, CollectionTable, CollectionTreeList$1 as CollectionTreeList, index$d as CreateGroupDialog, index$8 as CreateUserDialog, DateField$1 as DateField, DragAndDropContext, DragAndDropProvider, COLLECTION$1 as ENTITY_TREE_COLLECTION, ITEM as ENTITY_TREE_ITEM, JOIN_CHARACTER as ENTITY_TREE_JOIN_CHARACTER, ROOT as ENTITY_TREE_ROOT, index$e as EditGroupDialog, index$9 as EditUserDialog, EntityCard, EntityComment$1 as EntityComment, EntityDeleteDialog$1 as EntityDeleteDialog, EntityGrid, EntityGridItemDraggable$1 as EntityGridItemDraggable, EntityTable, EntityTableRowDraggable$1 as EntityTableRowDraggable, EntityTree$1 as EntityTree, EntityTreeContext, EntityTreeList, Event$1 as Event, EventContainer$1 as EventContainer, EventMarker$1 as EventMarker, EventMarkerThumbnail$1 as EventMarkerThumbnail, EventMarkerTimeline$1 as EventMarkerTimeline, index$3 as EventTimeline, ExpandedFormControlLabel$1 as ExpandedFormControlLabel, FILE, FieldGroupDesigner$1 as FieldGroupDesigner, FieldIcon$1 as FieldIcon, FilterCard$1 as FilterCard, FilterForm, FilterFormLabel$1 as FilterFormLabel, FolderListTree, FolderTree, index$c as GroupDetails, GroupRealtionList as GroupRelationList, index$b as GroupTable, ItemAccessTab$1 as ItemAccessTab, ItemCard, ItemFieldGroupTab$1 as ItemFieldGroupTab, ItemFileShareDialog$1 as ItemFileShareDialog, ItemGrid, ItemGridDroppable, ItemImagePlayer$1 as ItemImagePlayer, ItemList$1 as ItemList, ItemListItem$1 as ItemListItem, ItemMetadataFieldGroupRow, ItemMetadataFieldRow$1 as ItemMetadataFieldRow, ItemMetadataFieldRow$1 as ItemMetadataFormRow, ItemMetadataFormTable, ItemMetadataTab$1 as ItemMetadataTab, ItemParentsTab$1 as ItemParentsTab, ItemPlayer, ItemPoster, ItemPosterTab, ItemRelationRemoveDialog$1 as ItemRelationRemoveDialog, ItemRelationsTab$1 as ItemRelationsTab, ItemRow, ItemSearchPicker$1 as ItemSearchPicker, ItemShapeTab, ItemShapeTable$1 as ItemShapeTable, index$2 as ItemSidecarDialog, ItemSidecarDownload$1 as ItemSidecarDownload, ItemSidecarUpload$1 as ItemSidecarUpload, ItemSourceTab, ItemSourceTable$1 as ItemSourceTable, ItemTable, index$1 as ItemTabs, ItemTimespan$1 as ItemTimespanTab, ItemTreeItem$1 as ItemTreeItem, ItemVideoPlayer$1 as ItemVideoPlayer, JOIN_CHARACTER$1 as JOIN_CHARACTER, JobCard$1 as JobCard, JobDataTable$1 as JobDataTable, JobFooter, JobFooterContext, JobFooterContextProvider, JobList$1 as JobList, JobRow$1 as JobRow, JobRowButton, JobTable$1 as JobTable, JobTaskTable$1 as JobTaskTable, LOAD_MORE$1 as LOAD_MORE, LayoutButtonGroup$1 as LayoutButtonGroup, LoginForm, MediaBadge$1 as MediaBadge, MediaBadges$1 as MediaBadges, MediaCard$1 as MediaCard, MediaCardActions, MediaCardAvatar$1 as MediaCardAvatar, MediaCardCard$1 as MediaCardCard, MediaCardCheckbox, MediaCardContent, MediaCardDurationLabel, index$5 as MediaCardFullWidth, MediaCardHeader, MediaCardMenu, MediaCardThumbnail$1 as MediaCardThumbnail, MediaCardThumbnailLabel$1 as MediaCardThumbnailLabel, MimeTypeIcon$1 as MimeTypeIcon, PREFIX, SearchPagination as Pagination, SearchPaginationActions as PaginationActions, QueryBetween$1 as QueryBetween, QueryBuilder$1 as QueryBuilder, index$4 as QueryBuilderCard, QueryContains$1 as QueryContains, QueryEntry$1 as QueryEntry, QueryEquals$1 as QueryEquals, QueryField$1 as QueryField, QueryGroup$1 as QueryGroup, QueryInput$1 as QueryInput, QueryOperator$1 as QueryOperator, RadioField$1 as RadioField, RemoveFromCollectionDialog, STORAGE, SavedSearch$1 as SavedSearch, FolderRow$1 as SavedSearchFolder, SearchField$1 as SearchField, SearchInput$1 as SearchInput, SearchInputFieldSelect$1 as SearchInputFieldSelect, SearchResultRow, SearchResultTable, SearchSuggestions$1 as SearchSuggestions, SelectField$1 as SelectField, SelectedEntityWrapper, SelectedFile, SelectedFileWrapper, SelectedStorage, SelectedStorageWrapper, SelectedToolbar$1 as SelectedToolbar, ShapeTagCard$1 as ShapeTagCard, ShapeTagListAccordion$1 as ShapeTagListAccordion, SliderField, Sort$1 as Sort, SortMenuItem, SpellCheck$1 as SpellCheck, Storage, StorageList, StorageListTree, StorageTree, SubmitButton, SwitchField$1 as SwitchField, TagField$1 as TagField, TextField$1 as TextField, ThemeContext, ThemeProvider, TranscodeDialog$1 as TranscodeDialog, Upload$1 as Upload, UploadEditor$1 as UploadEditor, UploadForm$1 as UploadForm, UploadListItem$1 as UploadListItem, UserAvatarButton$1 as UserAvatarButton, index$7 as UserDetails, UserRelationList$1 as UserRelationList, index$6 as UserTable, extractEntityInfo, onGetToken, useConfirmationDialog, useDraggedComponent, useMediaCardContext, useMenu, useSnackbarAlert, useThemeContext, withDrag, withDrop };
48883
+ export { AddRelationDialog$1 as AddRelationDialog, AddToCollectionDialog$1 as AddToCollectionDialog, AutocompleteConstraintField$1 as AutocompleteConstraintField, AutocompleteField$1 as AutocompleteField, BatonAnalysisDialog$1 as BatonAnalysisDialog, BatonFormComponent as BatonAnalysisForm, BinList$1 as BinList, BinListMenu$1 as BinListMenu, ChangePasswordDialog$1 as ChangePasswordDialog, ChangePasswordForm$1 as ChangePasswordForm, index$a as ChangeUserPasswordDialog, CheckboxField$1 as CheckboxField, CheckboxGroupField$1 as CheckboxGroupField, CollectionAccessTab$1 as CollectionAccessTab, CollectionCard, CollectionCardThumbnail$1 as CollectionCardThumbnail, CollectionContent$1 as CollectionContent, CollectionCreateDialog$1 as CollectionCreateDialog, CollectionGrid, CollectionList$1 as CollectionList, CollectionMetadataEdit, CollectionMetadataTab$1 as CollectionMetadataTab, CollectionRow, CollectionSearchPicker$1 as CollectionSearchPicker, CollectionTable, CollectionTreeList$1 as CollectionTreeList, index$d as CreateGroupDialog, index$8 as CreateUserDialog, DateField$1 as DateField, DragAndDropContext, DragAndDropProvider, COLLECTION$1 as ENTITY_TREE_COLLECTION, ITEM as ENTITY_TREE_ITEM, JOIN_CHARACTER as ENTITY_TREE_JOIN_CHARACTER, ROOT as ENTITY_TREE_ROOT, index$e as EditGroupDialog, index$9 as EditUserDialog, EntityCard, EntityComment$1 as EntityComment, EntityDeleteDialog$1 as EntityDeleteDialog, EntityGrid, EntityGridItemDraggable$1 as EntityGridItemDraggable, EntityTable, EntityTableRowDraggable$1 as EntityTableRowDraggable, EntityTree$1 as EntityTree, EntityTreeContext, EntityTreeList, Event$1 as Event, EventContainer$1 as EventContainer, EventMarker$1 as EventMarker, EventMarkerThumbnail$1 as EventMarkerThumbnail, EventMarkerTimeline$1 as EventMarkerTimeline, index$3 as EventTimeline, ExpandedFormControlLabel$1 as ExpandedFormControlLabel, FILE, FieldGroupDesigner$1 as FieldGroupDesigner, FieldIcon$1 as FieldIcon, FilterCard$1 as FilterCard, FilterForm, FilterFormLabel$1 as FilterFormLabel, FolderListTree, FolderTree, index$c as GroupDetails, GroupRealtionList as GroupRelationList, index$b as GroupTable, ItemAccessTab$1 as ItemAccessTab, ItemCard, ItemCompoundMetadataTab$1 as ItemCompoundMetadataTab, ItemCompoundMetadataTable$1 as ItemCompoundMetadataTable, ItemFieldGroupTab$1 as ItemFieldGroupTab, ItemFileShareDialog$1 as ItemFileShareDialog, ItemGrid, ItemGridDroppable, ItemImagePlayer$1 as ItemImagePlayer, ItemList$1 as ItemList, ItemListItem$1 as ItemListItem, ItemMetadataFieldGroupRow, ItemMetadataFieldRow$1 as ItemMetadataFieldRow, ItemMetadataFieldRow$1 as ItemMetadataFormRow, ItemMetadataFormTable, ItemMetadataTab$1 as ItemMetadataTab, ItemParentsTab$1 as ItemParentsTab, ItemPlayer, ItemPoster, ItemPosterTab, ItemRelationRemoveDialog$1 as ItemRelationRemoveDialog, ItemRelationsTab$1 as ItemRelationsTab, ItemRow, ItemSearchPicker$1 as ItemSearchPicker, ItemShapeTab, ItemShapeTable$1 as ItemShapeTable, index$2 as ItemSidecarDialog, ItemSidecarDownload$1 as ItemSidecarDownload, ItemSidecarUpload$1 as ItemSidecarUpload, ItemSourceTab, ItemSourceTable$1 as ItemSourceTable, ItemTable, index$1 as ItemTabs, ItemTimespan$1 as ItemTimespanTab, ItemTreeItem$1 as ItemTreeItem, ItemVideoPlayer$1 as ItemVideoPlayer, JOIN_CHARACTER$1 as JOIN_CHARACTER, JobCard$1 as JobCard, JobDataTable$1 as JobDataTable, JobFooter, JobFooterContext, JobFooterContextProvider, JobList$1 as JobList, JobRow$1 as JobRow, JobRowButton, JobTable$1 as JobTable, JobTaskTable$1 as JobTaskTable, LOAD_MORE$1 as LOAD_MORE, LayoutButtonGroup$1 as LayoutButtonGroup, LoginForm, MediaBadge$1 as MediaBadge, MediaBadges$1 as MediaBadges, MediaCard$1 as MediaCard, MediaCardActions, MediaCardAvatar$1 as MediaCardAvatar, MediaCardCard$1 as MediaCardCard, MediaCardCheckbox, MediaCardContent, MediaCardDurationLabel, index$5 as MediaCardFullWidth, MediaCardHeader, MediaCardMenu, MediaCardThumbnail$1 as MediaCardThumbnail, MediaCardThumbnailLabel$1 as MediaCardThumbnailLabel, MimeTypeIcon$1 as MimeTypeIcon, PREFIX, SearchPagination as Pagination, SearchPaginationActions as PaginationActions, QueryBetween$1 as QueryBetween, QueryBuilder$1 as QueryBuilder, index$4 as QueryBuilderCard, QueryContains$1 as QueryContains, QueryEntry$1 as QueryEntry, QueryEquals$1 as QueryEquals, QueryField$1 as QueryField, QueryGroup$1 as QueryGroup, QueryInput$1 as QueryInput, QueryOperator$1 as QueryOperator, RadioField$1 as RadioField, RemoveFromCollectionDialog, STORAGE, SavedSearch$1 as SavedSearch, FolderRow$1 as SavedSearchFolder, SearchField$1 as SearchField, SearchInput$1 as SearchInput, SearchInputFieldSelect$1 as SearchInputFieldSelect, SearchResultRow, SearchResultTable, SearchSuggestions$1 as SearchSuggestions, SelectField$1 as SelectField, SelectedEntityWrapper, SelectedFile, SelectedFileWrapper, SelectedStorage, SelectedStorageWrapper, SelectedToolbar$1 as SelectedToolbar, ShapeTagCard$1 as ShapeTagCard, ShapeTagListAccordion$1 as ShapeTagListAccordion, SliderField, Sort$1 as Sort, SortMenuItem, SpellCheck$1 as SpellCheck, Storage, StorageList, StorageListTree, StorageTree, SubmitButton, SwitchField$1 as SwitchField, TagField$1 as TagField, TextField$1 as TextField, ThemeContext, ThemeProvider, TranscodeDialog$1 as TranscodeDialog, Upload$1 as Upload, UploadEditor$1 as UploadEditor, UploadForm$1 as UploadForm, UploadListItem$1 as UploadListItem, UserAvatarButton$1 as UserAvatarButton, index$7 as UserDetails, UserRelationList$1 as UserRelationList, index$6 as UserTable, extractEntityInfo, onGetToken, useConfirmationDialog, useDraggedComponent, useMediaCardContext, useMenu, useSnackbarAlert, useThemeContext, withDrag, withDrop };