@vidispine/vdt-materialui 22.1.0-pre.3 → 22.1.0
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/LICENSE.md +55 -0
- package/dist/index.es.js +292 -265
- package/dist/index.js +464 -437
- package/package.json +10 -10
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ require('core-js/es/string/replace-all');
|
|
|
6
6
|
var _slicedToArray = require('@babel/runtime/helpers/slicedToArray');
|
|
7
7
|
var React = require('react');
|
|
8
8
|
var CssBaseline = require('@material-ui/core/CssBaseline');
|
|
9
|
-
var styles$
|
|
9
|
+
var styles$2B = require('@material-ui/core/styles');
|
|
10
10
|
require('typeface-roboto');
|
|
11
11
|
var clsx = require('clsx');
|
|
12
12
|
var grey = require('@material-ui/core/colors/grey');
|
|
@@ -374,12 +374,12 @@ var VisibilityOff__default = /*#__PURE__*/_interopDefaultLegacy(VisibilityOff);
|
|
|
374
374
|
var DescriptionIcon__default = /*#__PURE__*/_interopDefaultLegacy(DescriptionIcon);
|
|
375
375
|
var RoleIcon__default = /*#__PURE__*/_interopDefaultLegacy(RoleIcon);
|
|
376
376
|
|
|
377
|
-
var light = styles$
|
|
377
|
+
var light = styles$2B.createTheme({
|
|
378
378
|
palette: {
|
|
379
379
|
type: 'light'
|
|
380
380
|
}
|
|
381
381
|
});
|
|
382
|
-
var dark = styles$
|
|
382
|
+
var dark = styles$2B.createTheme({
|
|
383
383
|
palette: {
|
|
384
384
|
type: 'dark'
|
|
385
385
|
}
|
|
@@ -448,8 +448,8 @@ function ThemeProvider(_ref) {
|
|
|
448
448
|
}, [isDefaultPalette, palette, theme, togglePalette]);
|
|
449
449
|
return /*#__PURE__*/React__default["default"].createElement(ThemeContext.Provider, {
|
|
450
450
|
value: contextValue
|
|
451
|
-
}, /*#__PURE__*/React__default["default"].createElement(styles$
|
|
452
|
-
theme: styles$
|
|
451
|
+
}, /*#__PURE__*/React__default["default"].createElement(styles$2B.MuiThemeProvider, {
|
|
452
|
+
theme: styles$2B.createTheme(theme, {
|
|
453
453
|
props: props
|
|
454
454
|
})
|
|
455
455
|
}, /*#__PURE__*/React__default["default"].createElement(CssBaseline__default["default"], null, children)));
|
|
@@ -465,7 +465,7 @@ function useThemeContext() {
|
|
|
465
465
|
return context;
|
|
466
466
|
}
|
|
467
467
|
|
|
468
|
-
var styles$
|
|
468
|
+
var styles$2A = function styles(theme) {
|
|
469
469
|
return {
|
|
470
470
|
button: {
|
|
471
471
|
borderRadius: 0,
|
|
@@ -502,7 +502,7 @@ function LayoutButtonGroup(_ref) {
|
|
|
502
502
|
}, /*#__PURE__*/React__default["default"].createElement(ViewHeadlineIcon__default["default"], null)));
|
|
503
503
|
}
|
|
504
504
|
|
|
505
|
-
var LayoutButtonGroup$1 = styles$
|
|
505
|
+
var LayoutButtonGroup$1 = styles$2B.withStyles(styles$2A, {
|
|
506
506
|
name: 'VdtLayoutButtonGroup'
|
|
507
507
|
})(LayoutButtonGroup);
|
|
508
508
|
|
|
@@ -614,7 +614,7 @@ var useMenu = function useMenu() {
|
|
|
614
614
|
|
|
615
615
|
var _excluded$1q = ["AlertProps"];
|
|
616
616
|
|
|
617
|
-
var styles$
|
|
617
|
+
var styles$2z = function styles() {
|
|
618
618
|
return {};
|
|
619
619
|
};
|
|
620
620
|
|
|
@@ -635,7 +635,7 @@ function useSnackbarAlert() {
|
|
|
635
635
|
var severity = _ref.severity,
|
|
636
636
|
message = _ref.message;
|
|
637
637
|
setAlert(function () {
|
|
638
|
-
return styles$
|
|
638
|
+
return styles$2B.withStyles(styles$2z)(function (_ref2) {
|
|
639
639
|
var AlertProps = _ref2.AlertProps,
|
|
640
640
|
props = _objectWithoutProperties__default["default"](_ref2, _excluded$1q);
|
|
641
641
|
|
|
@@ -1763,16 +1763,14 @@ var PropTypes$1 = propTypes$1.exports;
|
|
|
1763
1763
|
var _excluded$1p = ["checked", "name", "onChange"],
|
|
1764
1764
|
_excluded2$i = ["input", "meta", "label", "classes", "className", "FormControlProps", "FormControlLabelProps", "FormControlHelperTextProps"];
|
|
1765
1765
|
|
|
1766
|
-
var styles$
|
|
1766
|
+
var styles$2y = function styles(theme) {
|
|
1767
1767
|
return {
|
|
1768
1768
|
root: {
|
|
1769
1769
|
marginTop: theme.spacing(1),
|
|
1770
1770
|
width: '100%'
|
|
1771
1771
|
}
|
|
1772
1772
|
};
|
|
1773
|
-
};
|
|
1774
|
-
// Fields should behave like mui fields by default
|
|
1775
|
-
|
|
1773
|
+
};
|
|
1776
1774
|
|
|
1777
1775
|
function CheckboxField(_ref) {
|
|
1778
1776
|
var _ref$input = _ref.input;
|
|
@@ -1820,7 +1818,7 @@ function CheckboxField(_ref) {
|
|
|
1820
1818
|
}, FormControlHelperTextProps), error || submitError));
|
|
1821
1819
|
}
|
|
1822
1820
|
|
|
1823
|
-
var CheckboxField$1 = styles$
|
|
1821
|
+
var CheckboxField$1 = styles$2B.withStyles(styles$2y, {
|
|
1824
1822
|
name: 'VdtCheckboxField'
|
|
1825
1823
|
})(CheckboxField);
|
|
1826
1824
|
|
|
@@ -1828,7 +1826,7 @@ var _excluded$1o = ["label"],
|
|
|
1828
1826
|
_excluded2$h = ["value", "name", "onChange"],
|
|
1829
1827
|
_excluded3$6 = ["value", "label"];
|
|
1830
1828
|
|
|
1831
|
-
var styles$
|
|
1829
|
+
var styles$2x = function styles(theme) {
|
|
1832
1830
|
return {
|
|
1833
1831
|
root: {
|
|
1834
1832
|
marginTop: theme.spacing(2),
|
|
@@ -1844,9 +1842,7 @@ function DefaultFormLabel(_ref) {
|
|
|
1844
1842
|
return /*#__PURE__*/React__namespace.createElement(FormLabel__default["default"], _extends__default["default"]({
|
|
1845
1843
|
component: "legend"
|
|
1846
1844
|
}, props), label);
|
|
1847
|
-
}
|
|
1848
|
-
// Fields should behave like mui fields by default
|
|
1849
|
-
|
|
1845
|
+
}
|
|
1850
1846
|
|
|
1851
1847
|
function CheckboxGroupField(_ref2) {
|
|
1852
1848
|
var _ref2$input = _ref2.input;
|
|
@@ -1968,13 +1964,13 @@ function CheckboxGroupField(_ref2) {
|
|
|
1968
1964
|
}, FormHelperTextProps), error || submitError));
|
|
1969
1965
|
}
|
|
1970
1966
|
|
|
1971
|
-
var CheckboxGroupField$1 = styles$
|
|
1967
|
+
var CheckboxGroupField$1 = styles$2B.withStyles(styles$2x, {
|
|
1972
1968
|
name: 'VdtCheckboxGroupField'
|
|
1973
1969
|
})(CheckboxGroupField);
|
|
1974
1970
|
|
|
1975
1971
|
var _excluded$1n = ["value", "label"];
|
|
1976
1972
|
|
|
1977
|
-
var styles$
|
|
1973
|
+
var styles$2w = function styles(theme) {
|
|
1978
1974
|
return {
|
|
1979
1975
|
root: {
|
|
1980
1976
|
marginTop: theme.spacing(2),
|
|
@@ -2044,14 +2040,14 @@ function RadioField(_ref) {
|
|
|
2044
2040
|
}, FormHelperTextProps), error || submitError));
|
|
2045
2041
|
}
|
|
2046
2042
|
|
|
2047
|
-
var RadioField$1 = styles$
|
|
2043
|
+
var RadioField$1 = styles$2B.withStyles(styles$2w, {
|
|
2048
2044
|
name: 'VdtRadioField'
|
|
2049
2045
|
})(RadioField);
|
|
2050
2046
|
|
|
2051
2047
|
var _excluded$1m = ["input", "meta", "options", "label", "classes", "className", "FormControlProps", "InputLabelProps", "MenuItemProps", "FormHelperTextProps"],
|
|
2052
2048
|
_excluded2$g = ["value", "label"];
|
|
2053
2049
|
|
|
2054
|
-
var styles$
|
|
2050
|
+
var styles$2v = function styles(theme) {
|
|
2055
2051
|
return {
|
|
2056
2052
|
root: {
|
|
2057
2053
|
marginTop: theme.spacing(1),
|
|
@@ -2126,14 +2122,14 @@ function SelectField(_ref) {
|
|
|
2126
2122
|
}, FormHelperTextProps), touched && (error || submitError) ? error || submitError : ''));
|
|
2127
2123
|
}
|
|
2128
2124
|
|
|
2129
|
-
var SelectField$1 = styles$
|
|
2125
|
+
var SelectField$1 = styles$2B.withStyles(styles$2v, {
|
|
2130
2126
|
name: 'VdtSelectField'
|
|
2131
2127
|
})(SelectField);
|
|
2132
2128
|
|
|
2133
2129
|
var _excluded$1l = ["name", "onChange", "value"],
|
|
2134
2130
|
_excluded2$f = ["input", "meta", "helperText", "classes", "className", "FormControlProps"];
|
|
2135
2131
|
|
|
2136
|
-
var styles$
|
|
2132
|
+
var styles$2u = function styles(theme) {
|
|
2137
2133
|
return {
|
|
2138
2134
|
root: {
|
|
2139
2135
|
marginTop: theme.spacing(1),
|
|
@@ -2185,13 +2181,13 @@ function TextField(_ref) {
|
|
|
2185
2181
|
}, props)));
|
|
2186
2182
|
}
|
|
2187
2183
|
|
|
2188
|
-
var TextField$1 = styles$
|
|
2184
|
+
var TextField$1 = styles$2B.withStyles(styles$2u, {
|
|
2189
2185
|
name: 'VdtTextField'
|
|
2190
2186
|
})(TextField);
|
|
2191
2187
|
|
|
2192
2188
|
var _excluded$1k = ["input", "meta", "options", "label", "min", "max", "isRange", "step", "showMarks", "classes", "className", "FormControlProps", "FormLabelProps", "FormHelperTextProps", "exclude"];
|
|
2193
2189
|
|
|
2194
|
-
var styles$
|
|
2190
|
+
var styles$2t = function styles(theme) {
|
|
2195
2191
|
return {
|
|
2196
2192
|
root: {
|
|
2197
2193
|
marginTop: theme.spacing(2),
|
|
@@ -2291,13 +2287,13 @@ function Slider(_ref) {
|
|
|
2291
2287
|
}, FormHelperTextProps), error || submitError));
|
|
2292
2288
|
}
|
|
2293
2289
|
|
|
2294
|
-
var SliderField = styles$
|
|
2290
|
+
var SliderField = styles$2B.withStyles(styles$2t, {
|
|
2295
2291
|
name: 'VdtSliderField'
|
|
2296
2292
|
})(Slider);
|
|
2297
2293
|
|
|
2298
2294
|
var _excluded$1j = ["input", "meta", "options", "label", "classes", "className", "FormControlProps", "TextFieldProps", "InputLabelProps", "FormHelperTextProps", "AutocompleteProps"];
|
|
2299
2295
|
|
|
2300
|
-
var styles$
|
|
2296
|
+
var styles$2s = function styles(theme) {
|
|
2301
2297
|
return {
|
|
2302
2298
|
root: {
|
|
2303
2299
|
marginTop: theme.spacing(1),
|
|
@@ -2439,7 +2435,7 @@ function TagField(_ref) {
|
|
|
2439
2435
|
}, FormHelperTextProps), error || submitError));
|
|
2440
2436
|
}
|
|
2441
2437
|
|
|
2442
|
-
var TagField$1 = styles$
|
|
2438
|
+
var TagField$1 = styles$2B.withStyles(styles$2s, {
|
|
2443
2439
|
name: 'VdtTagField'
|
|
2444
2440
|
})(TagField);
|
|
2445
2441
|
|
|
@@ -2449,7 +2445,7 @@ function ownKeys$U(object, enumerableOnly) { var keys = Object.keys(object); if
|
|
|
2449
2445
|
|
|
2450
2446
|
function _objectSpread$U(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$U(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$U(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
2451
2447
|
|
|
2452
|
-
var styles$
|
|
2448
|
+
var styles$2r = function styles(theme) {
|
|
2453
2449
|
return {
|
|
2454
2450
|
root: {
|
|
2455
2451
|
marginTop: theme.spacing(2),
|
|
@@ -2506,11 +2502,11 @@ function DateField(_ref) {
|
|
|
2506
2502
|
}, props)));
|
|
2507
2503
|
}
|
|
2508
2504
|
|
|
2509
|
-
var DateField$1 = core.withStyles(styles$
|
|
2505
|
+
var DateField$1 = core.withStyles(styles$2r, {
|
|
2510
2506
|
name: 'VdtDateField'
|
|
2511
2507
|
})(DateField);
|
|
2512
2508
|
|
|
2513
|
-
var styles$
|
|
2509
|
+
var styles$2q = function styles(theme) {
|
|
2514
2510
|
return {
|
|
2515
2511
|
root: {
|
|
2516
2512
|
marginTop: theme.spacing(1),
|
|
@@ -2556,7 +2552,7 @@ function SwitchField(_ref) {
|
|
|
2556
2552
|
}, FormControlLabelProps)));
|
|
2557
2553
|
}
|
|
2558
2554
|
|
|
2559
|
-
var SwitchField$1 = styles$
|
|
2555
|
+
var SwitchField$1 = styles$2B.withStyles(styles$2q, {
|
|
2560
2556
|
name: 'VdtSwitchField'
|
|
2561
2557
|
})(SwitchField);
|
|
2562
2558
|
|
|
@@ -2566,7 +2562,7 @@ function ownKeys$T(object, enumerableOnly) { var keys = Object.keys(object); if
|
|
|
2566
2562
|
|
|
2567
2563
|
function _objectSpread$T(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$T(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$T(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
2568
2564
|
|
|
2569
|
-
var styles$
|
|
2565
|
+
var styles$2p = function styles() {};
|
|
2570
2566
|
|
|
2571
2567
|
var defaultGetOptionLabel = function defaultGetOptionLabel(opt) {
|
|
2572
2568
|
return opt.label || opt;
|
|
@@ -2586,9 +2582,7 @@ var defaultGetValue = function defaultGetValue(_ref) {
|
|
|
2586
2582
|
if (multiple && !Array.isArray(value)) return [value];
|
|
2587
2583
|
if (!multiple && Array.isArray(value)) return value.join(', ');
|
|
2588
2584
|
return value;
|
|
2589
|
-
};
|
|
2590
|
-
// Fields should behave like mui fields by default
|
|
2591
|
-
|
|
2585
|
+
};
|
|
2592
2586
|
|
|
2593
2587
|
function AutocompleteField(_ref2) {
|
|
2594
2588
|
var _ref2$input = _ref2.input,
|
|
@@ -2666,7 +2660,7 @@ function AutocompleteField(_ref2) {
|
|
|
2666
2660
|
}, props));
|
|
2667
2661
|
}
|
|
2668
2662
|
|
|
2669
|
-
var AutocompleteField$1 = core.withStyles(styles$
|
|
2663
|
+
var AutocompleteField$1 = core.withStyles(styles$2p, {
|
|
2670
2664
|
name: 'VdtAutocompleteField'
|
|
2671
2665
|
})(AutocompleteField);
|
|
2672
2666
|
|
|
@@ -3349,7 +3343,7 @@ var isUrl = function isUrl() {
|
|
|
3349
3343
|
return matches ? undefined : helperText;
|
|
3350
3344
|
};
|
|
3351
3345
|
|
|
3352
|
-
var UrlField = styles$
|
|
3346
|
+
var UrlField = styles$2B.withStyles({}, {
|
|
3353
3347
|
name: 'VdtUrlField'
|
|
3354
3348
|
})(function (_ref) {
|
|
3355
3349
|
var _ref$name = _ref.name,
|
|
@@ -3369,7 +3363,7 @@ var UrlField = styles$2A.withStyles({}, {
|
|
|
3369
3363
|
fullWidth: true
|
|
3370
3364
|
}, FieldProps, props));
|
|
3371
3365
|
});
|
|
3372
|
-
var UsernameField = styles$
|
|
3366
|
+
var UsernameField = styles$2B.withStyles({}, {
|
|
3373
3367
|
name: 'VdtUsernameField'
|
|
3374
3368
|
})(function (_ref2) {
|
|
3375
3369
|
var _ref2$name = _ref2.name,
|
|
@@ -3393,7 +3387,7 @@ var UsernameField = styles$2A.withStyles({}, {
|
|
|
3393
3387
|
fullWidth: true
|
|
3394
3388
|
}, FieldProps, props));
|
|
3395
3389
|
});
|
|
3396
|
-
var PasswordField$1 = styles$
|
|
3390
|
+
var PasswordField$1 = styles$2B.withStyles({}, {
|
|
3397
3391
|
name: 'VdtPasswordField'
|
|
3398
3392
|
})(function (_ref3) {
|
|
3399
3393
|
var _ref3$name = _ref3.name,
|
|
@@ -3417,7 +3411,7 @@ var PasswordField$1 = styles$2A.withStyles({}, {
|
|
|
3417
3411
|
fullWidth: true
|
|
3418
3412
|
}, FieldProps, props));
|
|
3419
3413
|
});
|
|
3420
|
-
var RememberMeField = styles$
|
|
3414
|
+
var RememberMeField = styles$2B.withStyles({}, {
|
|
3421
3415
|
name: 'VdtRememberMeField'
|
|
3422
3416
|
})(function (_ref4) {
|
|
3423
3417
|
var _ref4$name = _ref4.name,
|
|
@@ -3476,7 +3470,7 @@ function FormText(_ref6) {
|
|
|
3476
3470
|
}, submitError || helperText));
|
|
3477
3471
|
}
|
|
3478
3472
|
|
|
3479
|
-
var FormButtons = styles$
|
|
3473
|
+
var FormButtons = styles$2B.withStyles({}, {
|
|
3480
3474
|
name: 'VdtLoginFormButtons'
|
|
3481
3475
|
})(function (_ref7) {
|
|
3482
3476
|
var submitting = _ref7.submitting,
|
|
@@ -3490,7 +3484,7 @@ var FormButtons = styles$2A.withStyles({}, {
|
|
|
3490
3484
|
fullWidth: true
|
|
3491
3485
|
}, SubmitButtonProps), loginText));
|
|
3492
3486
|
});
|
|
3493
|
-
var styles$
|
|
3487
|
+
var styles$2o = function styles() {
|
|
3494
3488
|
return {
|
|
3495
3489
|
root: {}
|
|
3496
3490
|
};
|
|
@@ -3588,13 +3582,13 @@ LoginForm.defaultProps = {
|
|
|
3588
3582
|
FormButtonsProps: {}
|
|
3589
3583
|
};
|
|
3590
3584
|
|
|
3591
|
-
var Component$
|
|
3585
|
+
var Component$U = styles$2B.withStyles(styles$2o, {
|
|
3592
3586
|
name: 'VdtLoginForm'
|
|
3593
3587
|
})(LoginForm);
|
|
3594
|
-
Component$
|
|
3588
|
+
Component$U.displayName = 'LoginForm';
|
|
3595
3589
|
|
|
3596
3590
|
var _excluded$1c = ["checked", "classes", "className", "control", "disabled", "inputRef", "label", "name", "onChange", "value"];
|
|
3597
|
-
var styles$
|
|
3591
|
+
var styles$2n = function styles(theme) {
|
|
3598
3592
|
return {
|
|
3599
3593
|
root: {
|
|
3600
3594
|
display: 'inline-flex',
|
|
@@ -3677,7 +3671,7 @@ var ExpandedFormControlLabel = /*#__PURE__*/React__namespace.forwardRef(function
|
|
|
3677
3671
|
}, labelCount))
|
|
3678
3672
|
);
|
|
3679
3673
|
});
|
|
3680
|
-
var ExpandedFormControlLabel$1 = core.withStyles(styles$
|
|
3674
|
+
var ExpandedFormControlLabel$1 = core.withStyles(styles$2n, {
|
|
3681
3675
|
name: 'VdtExpandedFormControlLabel'
|
|
3682
3676
|
})(ExpandedFormControlLabel);
|
|
3683
3677
|
|
|
@@ -3741,7 +3735,7 @@ var onGetToken = /*#__PURE__*/function () {
|
|
|
3741
3735
|
};
|
|
3742
3736
|
}();
|
|
3743
3737
|
|
|
3744
|
-
var styles$
|
|
3738
|
+
var styles$2m = function styles(theme) {
|
|
3745
3739
|
return {
|
|
3746
3740
|
root: {
|
|
3747
3741
|
height: 20,
|
|
@@ -3772,7 +3766,7 @@ function FilterFormLabel(_ref) {
|
|
|
3772
3766
|
}, /*#__PURE__*/React__default["default"].createElement(IconComponent, null)));
|
|
3773
3767
|
}
|
|
3774
3768
|
|
|
3775
|
-
var FilterFormLabel$1 = styles$
|
|
3769
|
+
var FilterFormLabel$1 = styles$2B.withStyles(styles$2m, {
|
|
3776
3770
|
name: 'VdtFilterFormLabel'
|
|
3777
3771
|
})(FilterFormLabel);
|
|
3778
3772
|
|
|
@@ -3865,7 +3859,7 @@ function ownKeys$S(object, enumerableOnly) { var keys = Object.keys(object); if
|
|
|
3865
3859
|
|
|
3866
3860
|
function _objectSpread$S(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$S(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$S(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
3867
3861
|
|
|
3868
|
-
var styles$
|
|
3862
|
+
var styles$2l = function styles(theme) {
|
|
3869
3863
|
return {
|
|
3870
3864
|
header: {
|
|
3871
3865
|
padding: theme.spacing(2),
|
|
@@ -4075,7 +4069,7 @@ function FilterCard(_ref4) {
|
|
|
4075
4069
|
}, FormProps))) : null;
|
|
4076
4070
|
}
|
|
4077
4071
|
|
|
4078
|
-
var FilterCard$1 = styles$
|
|
4072
|
+
var FilterCard$1 = styles$2B.withStyles(styles$2l, {
|
|
4079
4073
|
name: 'VdtFilterCard'
|
|
4080
4074
|
})(FilterCard);
|
|
4081
4075
|
|
|
@@ -4229,7 +4223,7 @@ function JobRow(_ref) {
|
|
|
4229
4223
|
})));
|
|
4230
4224
|
}
|
|
4231
4225
|
|
|
4232
|
-
var JobRow$1 = styles$
|
|
4226
|
+
var JobRow$1 = styles$2B.withStyles({}, {
|
|
4233
4227
|
name: 'VdtJobRow'
|
|
4234
4228
|
})(JobRow);
|
|
4235
4229
|
|
|
@@ -4290,7 +4284,7 @@ function JobTable(_ref2) {
|
|
|
4290
4284
|
}))));
|
|
4291
4285
|
}
|
|
4292
4286
|
|
|
4293
|
-
var JobTable$1 = styles$
|
|
4287
|
+
var JobTable$1 = styles$2B.withStyles({}, {
|
|
4294
4288
|
name: 'VdtJobTable'
|
|
4295
4289
|
})(JobTable);
|
|
4296
4290
|
|
|
@@ -4495,7 +4489,7 @@ function SearchPagination(_ref) {
|
|
|
4495
4489
|
|
|
4496
4490
|
var _excluded$1a = ["classes", "onSubmit", "fields", "value", "query", "fieldPlaceHolder", "queryPlaceHolder", "disableReset", "disableRequired", "fieldInputRef", "queryInputRef"];
|
|
4497
4491
|
|
|
4498
|
-
var styles$
|
|
4492
|
+
var styles$2k = function styles(theme) {
|
|
4499
4493
|
return {
|
|
4500
4494
|
root: {
|
|
4501
4495
|
backgroundColor: theme.palette.background.paper
|
|
@@ -4642,15 +4636,15 @@ function SearchInputFieldSelect(_ref) {
|
|
|
4642
4636
|
})));
|
|
4643
4637
|
}
|
|
4644
4638
|
|
|
4645
|
-
var SearchInputFieldSelect$1 = styles$
|
|
4639
|
+
var SearchInputFieldSelect$1 = styles$2B.withStyles(styles$2k, {
|
|
4646
4640
|
name: 'VdtSearchInputFieldSelect'
|
|
4647
4641
|
})(SearchInputFieldSelect);
|
|
4648
4642
|
|
|
4649
4643
|
var useStyles$2 = function useStyles(secondaryColor) {
|
|
4650
|
-
return styles$
|
|
4644
|
+
return styles$2B.makeStyles({
|
|
4651
4645
|
selected: {
|
|
4652
4646
|
'&$selected': {
|
|
4653
|
-
backgroundColor: styles$
|
|
4647
|
+
backgroundColor: styles$2B.alpha(secondaryColor, 0.16),
|
|
4654
4648
|
color: secondaryColor
|
|
4655
4649
|
}
|
|
4656
4650
|
}
|
|
@@ -4698,7 +4692,7 @@ SortMenuItem.defaultProps = {
|
|
|
4698
4692
|
};
|
|
4699
4693
|
|
|
4700
4694
|
var _excluded$19 = ["classes", "caption", "options", "sortAsc", "sortDesc", "IconComponent", "MenuItemComponent", "onChange", "initialSort"];
|
|
4701
|
-
var styles$
|
|
4695
|
+
var styles$2j = function styles(theme) {
|
|
4702
4696
|
return {
|
|
4703
4697
|
root: {
|
|
4704
4698
|
color: theme.palette.secondary.main,
|
|
@@ -4846,10 +4840,10 @@ Sort.defaultProps = {
|
|
|
4846
4840
|
options: []
|
|
4847
4841
|
};
|
|
4848
4842
|
|
|
4849
|
-
var Component$
|
|
4843
|
+
var Component$T = styles$2B.withStyles(styles$2j, {
|
|
4850
4844
|
name: 'VdtSort'
|
|
4851
4845
|
})(Sort);
|
|
4852
|
-
Component$
|
|
4846
|
+
Component$T.displayName = 'Sort';
|
|
4853
4847
|
|
|
4854
4848
|
var _excluded$18 = ["onSubmit", "onChange", "options", "name", "label"];
|
|
4855
4849
|
|
|
@@ -5109,7 +5103,7 @@ function JobList(_ref) {
|
|
|
5109
5103
|
return handleDelete(index);
|
|
5110
5104
|
}
|
|
5111
5105
|
});
|
|
5112
|
-
})), /*#__PURE__*/React__default["default"].createElement(Component$
|
|
5106
|
+
})), /*#__PURE__*/React__default["default"].createElement(Component$T, {
|
|
5113
5107
|
options: sortOptions,
|
|
5114
5108
|
initialSort: initialSort,
|
|
5115
5109
|
onChange: onChangeSort,
|
|
@@ -5212,7 +5206,7 @@ function JobList(_ref) {
|
|
|
5212
5206
|
}, JobTableProps))))));
|
|
5213
5207
|
}
|
|
5214
5208
|
|
|
5215
|
-
var JobList$1 = styles$
|
|
5209
|
+
var JobList$1 = styles$2B.withStyles({}, {
|
|
5216
5210
|
name: 'VdtJobList'
|
|
5217
5211
|
})(JobList);
|
|
5218
5212
|
|
|
@@ -5222,7 +5216,7 @@ var _excluded$17 = ["fields", "TableRowComponent", "TableRowProps"],
|
|
|
5222
5216
|
function ownKeys$Q(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
5223
5217
|
|
|
5224
5218
|
function _objectSpread$Q(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$Q(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$Q(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
5225
|
-
var TableCellLabel$1 = styles$
|
|
5219
|
+
var TableCellLabel$1 = styles$2B.withStyles(function (theme) {
|
|
5226
5220
|
return {
|
|
5227
5221
|
root: _objectSpread$Q({
|
|
5228
5222
|
borderStyle: 'none',
|
|
@@ -5231,7 +5225,7 @@ var TableCellLabel$1 = styles$2A.withStyles(function (theme) {
|
|
|
5231
5225
|
}, theme.typography.body2)
|
|
5232
5226
|
};
|
|
5233
5227
|
})(TableCell__default["default"]);
|
|
5234
|
-
var TableCellValue$1 = styles$
|
|
5228
|
+
var TableCellValue$1 = styles$2B.withStyles(function (theme) {
|
|
5235
5229
|
return {
|
|
5236
5230
|
root: _objectSpread$Q({
|
|
5237
5231
|
borderStyle: 'none',
|
|
@@ -5423,7 +5417,7 @@ JobDataTable.defaultProps = {
|
|
|
5423
5417
|
TableComponent: ItemMetadataTable,
|
|
5424
5418
|
TableProps: {}
|
|
5425
5419
|
};
|
|
5426
|
-
var JobDataTable$1 = styles$
|
|
5420
|
+
var JobDataTable$1 = styles$2B.withStyles({}, {
|
|
5427
5421
|
name: 'VdtJobDataTable'
|
|
5428
5422
|
})(JobDataTable);
|
|
5429
5423
|
|
|
@@ -5578,7 +5572,7 @@ function JobTaskTableRow(_ref4) {
|
|
|
5578
5572
|
}, duration !== undefined ? humanizeDuration(duration) : '-')));
|
|
5579
5573
|
}
|
|
5580
5574
|
|
|
5581
|
-
var styles$
|
|
5575
|
+
var styles$2i = {
|
|
5582
5576
|
root: {},
|
|
5583
5577
|
TableHead: {},
|
|
5584
5578
|
TableBody: {}
|
|
@@ -5650,7 +5644,7 @@ JobTaskTable.defaultProps = {
|
|
|
5650
5644
|
JobTaskTableRowComponent: JobTaskTableRow,
|
|
5651
5645
|
JobTaskTableRowProps: {}
|
|
5652
5646
|
};
|
|
5653
|
-
var JobTaskTable$1 = styles$
|
|
5647
|
+
var JobTaskTable$1 = styles$2B.withStyles(styles$2i, {
|
|
5654
5648
|
name: 'VdtJobTaskTable'
|
|
5655
5649
|
})(JobTaskTable);
|
|
5656
5650
|
|
|
@@ -5716,7 +5710,7 @@ function JobMenu(_ref) {
|
|
|
5716
5710
|
}))));
|
|
5717
5711
|
}
|
|
5718
5712
|
|
|
5719
|
-
var styles$
|
|
5713
|
+
var styles$2h = {
|
|
5720
5714
|
root: {},
|
|
5721
5715
|
CardContent: {
|
|
5722
5716
|
height: 'calc(100% - 70px)',
|
|
@@ -5863,7 +5857,7 @@ JobCard.defaultProps = {
|
|
|
5863
5857
|
JobMenuComponent: JobMenu,
|
|
5864
5858
|
JobMenuProps: {}
|
|
5865
5859
|
};
|
|
5866
|
-
var JobCard$1 = styles$
|
|
5860
|
+
var JobCard$1 = styles$2B.withStyles(styles$2h, {
|
|
5867
5861
|
name: 'VdtJobCard'
|
|
5868
5862
|
})(JobCard);
|
|
5869
5863
|
|
|
@@ -6212,7 +6206,7 @@ function VidispineIcon(props) {
|
|
|
6212
6206
|
}, props));
|
|
6213
6207
|
}
|
|
6214
6208
|
|
|
6215
|
-
var styles$
|
|
6209
|
+
var styles$2g = function styles(theme) {
|
|
6216
6210
|
var isLight = theme.palette.type === 'light';
|
|
6217
6211
|
return {
|
|
6218
6212
|
badge: {
|
|
@@ -6246,7 +6240,7 @@ function MediaBadge(_ref) {
|
|
|
6246
6240
|
}, children);
|
|
6247
6241
|
}
|
|
6248
6242
|
|
|
6249
|
-
var MediaBadge$1 = styles$
|
|
6243
|
+
var MediaBadge$1 = styles$2B.withStyles(styles$2g, {
|
|
6250
6244
|
name: 'VdtMediaBadge'
|
|
6251
6245
|
})(MediaBadge);
|
|
6252
6246
|
|
|
@@ -6354,7 +6348,7 @@ var generateBadges = function generateBadges(_ref) {
|
|
|
6354
6348
|
return _toConsumableArray__default["default"](new Set(badges)); // remove duplicates
|
|
6355
6349
|
};
|
|
6356
6350
|
|
|
6357
|
-
var styles$
|
|
6351
|
+
var styles$2f = function styles() {
|
|
6358
6352
|
return {
|
|
6359
6353
|
root: {}
|
|
6360
6354
|
};
|
|
@@ -6387,11 +6381,11 @@ function MediaBadges(_ref2) {
|
|
|
6387
6381
|
}));
|
|
6388
6382
|
}
|
|
6389
6383
|
|
|
6390
|
-
var MediaBadges$1 = styles$
|
|
6384
|
+
var MediaBadges$1 = styles$2B.withStyles(styles$2f, {
|
|
6391
6385
|
name: 'VdtMediaBadges'
|
|
6392
6386
|
})(MediaBadges);
|
|
6393
6387
|
|
|
6394
|
-
var styles$
|
|
6388
|
+
var styles$2e = function styles(theme) {
|
|
6395
6389
|
return {
|
|
6396
6390
|
root: {
|
|
6397
6391
|
display: 'flex'
|
|
@@ -6444,7 +6438,7 @@ function ShapeTagCard(_ref) {
|
|
|
6444
6438
|
className: classes.description
|
|
6445
6439
|
}, shapeTag.description)));
|
|
6446
6440
|
}
|
|
6447
|
-
var ShapeTagCard$1 = styles$
|
|
6441
|
+
var ShapeTagCard$1 = styles$2B.withStyles(styles$2e, {
|
|
6448
6442
|
name: 'VdtShapeTagCard'
|
|
6449
6443
|
})(ShapeTagCard);
|
|
6450
6444
|
ShapeTagCard.propTypes = {
|
|
@@ -6539,7 +6533,7 @@ var useExpand = function useExpand(initialState) {
|
|
|
6539
6533
|
};
|
|
6540
6534
|
};
|
|
6541
6535
|
|
|
6542
|
-
var Accordion = styles$
|
|
6536
|
+
var Accordion = styles$2B.withStyles(function (theme) {
|
|
6543
6537
|
return {
|
|
6544
6538
|
root: {
|
|
6545
6539
|
border: theme.palette.type === 'light' ? '1px solid rgba(0, 0, 0, .125)' : '1px solid rgba(0, 0, 0, .3)',
|
|
@@ -6557,7 +6551,7 @@ var Accordion = styles$2A.withStyles(function (theme) {
|
|
|
6557
6551
|
expanded: {}
|
|
6558
6552
|
};
|
|
6559
6553
|
})(MuiAccordion__default["default"]);
|
|
6560
|
-
var AccordionSummary = styles$
|
|
6554
|
+
var AccordionSummary = styles$2B.withStyles(function (theme) {
|
|
6561
6555
|
return {
|
|
6562
6556
|
root: {
|
|
6563
6557
|
backgroundColor: theme.palette.type === 'light' ? 'rgba(0, 0, 0, .03)' : 'rgba(0, 0, 0, .1)',
|
|
@@ -6576,7 +6570,7 @@ var AccordionSummary = styles$2A.withStyles(function (theme) {
|
|
|
6576
6570
|
expanded: {}
|
|
6577
6571
|
};
|
|
6578
6572
|
})(MuiAccordionSummary__default["default"]);
|
|
6579
|
-
var AccordionDetails = styles$
|
|
6573
|
+
var AccordionDetails = styles$2B.withStyles(function (theme) {
|
|
6580
6574
|
return {
|
|
6581
6575
|
root: {
|
|
6582
6576
|
padding: theme.spacing(2)
|
|
@@ -6584,7 +6578,7 @@ var AccordionDetails = styles$2A.withStyles(function (theme) {
|
|
|
6584
6578
|
};
|
|
6585
6579
|
})(MuiAccordionDetails__default["default"]);
|
|
6586
6580
|
|
|
6587
|
-
var styles$
|
|
6581
|
+
var styles$2d = function styles(theme) {
|
|
6588
6582
|
return {
|
|
6589
6583
|
root: {},
|
|
6590
6584
|
Accordion: {},
|
|
@@ -6695,7 +6689,7 @@ function ShapeTagListAccordion(_ref3) {
|
|
|
6695
6689
|
})));
|
|
6696
6690
|
})));
|
|
6697
6691
|
}
|
|
6698
|
-
var ShapeTagListAccordion$1 = styles$
|
|
6692
|
+
var ShapeTagListAccordion$1 = styles$2B.withStyles(styles$2d, {
|
|
6699
6693
|
name: 'VdtShapeTagListAccordion'
|
|
6700
6694
|
})(ShapeTagListAccordion);
|
|
6701
6695
|
ShapeTagListAccordion.propTypes = {
|
|
@@ -6841,7 +6835,7 @@ var useTranscodeResources = function useTranscodeResources(_ref4) {
|
|
|
6841
6835
|
};
|
|
6842
6836
|
};
|
|
6843
6837
|
|
|
6844
|
-
var styles$
|
|
6838
|
+
var styles$2c = function styles(theme) {
|
|
6845
6839
|
return {
|
|
6846
6840
|
root: {},
|
|
6847
6841
|
noResourceText: _objectSpread$L(_objectSpread$L({}, theme.typography.body1), {}, {
|
|
@@ -7063,7 +7057,7 @@ function TranscodeDialog(_ref6) {
|
|
|
7063
7057
|
}, ShapeTagListProps)));
|
|
7064
7058
|
})));
|
|
7065
7059
|
}
|
|
7066
|
-
var TranscodeDialog$1 = styles$
|
|
7060
|
+
var TranscodeDialog$1 = styles$2B.withStyles(styles$2c, {
|
|
7067
7061
|
name: 'VdtTranscodeDialog'
|
|
7068
7062
|
})(TranscodeDialog);
|
|
7069
7063
|
TranscodeDialog.propTypes = {
|
|
@@ -7245,28 +7239,8 @@ var filterTimespanList = function filterTimespanList(_ref) {
|
|
|
7245
7239
|
});
|
|
7246
7240
|
}
|
|
7247
7241
|
}
|
|
7248
|
-
});
|
|
7249
|
-
|
|
7250
|
-
return filteredTimespans; // return parsedTimespans.filter((timespanType) => {
|
|
7251
|
-
// const fieldList = Array.isArray(field) ? field : [field];
|
|
7252
|
-
// const fieldGroupList = Array.isArray(fieldGroup) ? fieldGroup : [fieldGroup];
|
|
7253
|
-
// const { group: groupList = [] } = timespanType;
|
|
7254
|
-
// const matchingGroups = groupList.filter(({ name }) => fieldGroupList.includes(name));
|
|
7255
|
-
// const matchingValues = matchingGroups.reduce((acc, groupFields) => {
|
|
7256
|
-
// Object.entries(groupFields).forEach(([fieldName, fieldValue]) => {
|
|
7257
|
-
// if (fieldList.includes(fieldName)) {
|
|
7258
|
-
// acc.push(fieldValue);
|
|
7259
|
-
// }
|
|
7260
|
-
// });
|
|
7261
|
-
// return acc;
|
|
7262
|
-
// }, []);
|
|
7263
|
-
// const timespanText = matchingValues.join('');
|
|
7264
|
-
// if (timespanText === '') return false;
|
|
7265
|
-
// if (filterText) {
|
|
7266
|
-
// return timespanText.toLowerCase().includes(filterText.toLowerCase());
|
|
7267
|
-
// }
|
|
7268
|
-
// return true;
|
|
7269
|
-
// });
|
|
7242
|
+
});
|
|
7243
|
+
return filteredTimespans;
|
|
7270
7244
|
};
|
|
7271
7245
|
|
|
7272
7246
|
var sortTimespanList = function sortTimespanList(timespan1, timespan2) {
|
|
@@ -7418,10 +7392,15 @@ var useConfidenceSlider = function useConfidenceSlider(onChange) {
|
|
|
7418
7392
|
return [confidenceValue, onChangeConfidenceValue];
|
|
7419
7393
|
};
|
|
7420
7394
|
|
|
7421
|
-
var styles$
|
|
7422
|
-
|
|
7423
|
-
|
|
7424
|
-
|
|
7395
|
+
var styles$2b = function styles(theme) {
|
|
7396
|
+
return {
|
|
7397
|
+
Typography: {},
|
|
7398
|
+
Slider: {},
|
|
7399
|
+
root: {
|
|
7400
|
+
marginLeft: theme.spacing(2),
|
|
7401
|
+
marginRight: theme.spacing(2)
|
|
7402
|
+
}
|
|
7403
|
+
};
|
|
7425
7404
|
};
|
|
7426
7405
|
|
|
7427
7406
|
function ConfidenceSlider(_ref) {
|
|
@@ -7459,11 +7438,11 @@ function ConfidenceSlider(_ref) {
|
|
|
7459
7438
|
}, SliderProps)));
|
|
7460
7439
|
}
|
|
7461
7440
|
|
|
7462
|
-
var ConfidenceSlider$1 = styles$
|
|
7441
|
+
var ConfidenceSlider$1 = styles$2B.withStyles(styles$2b, {
|
|
7463
7442
|
name: 'VdtConfidenceSlider'
|
|
7464
7443
|
})(ConfidenceSlider);
|
|
7465
7444
|
|
|
7466
|
-
var styles$
|
|
7445
|
+
var styles$2a = {
|
|
7467
7446
|
Button: {
|
|
7468
7447
|
minWidth: 0
|
|
7469
7448
|
},
|
|
@@ -7490,7 +7469,7 @@ function EditButton(_ref) {
|
|
|
7490
7469
|
}, ButtonProps), /*#__PURE__*/React__default["default"].createElement(IconComponent, null));
|
|
7491
7470
|
}
|
|
7492
7471
|
|
|
7493
|
-
var EditButton$1 = styles$
|
|
7472
|
+
var EditButton$1 = styles$2B.withStyles(styles$2a)(EditButton);
|
|
7494
7473
|
|
|
7495
7474
|
var _excluded$15 = ["itemId", "video", "sampleRate", "onSuccess", "onError", "sameAsStartText", "laterThanEndText"],
|
|
7496
7475
|
_excluded2$c = ["startText", "endText", "uuid", "timespan"],
|
|
@@ -7725,7 +7704,7 @@ function ItemTimespanForm(_ref) {
|
|
|
7725
7704
|
}, cancelText)))));
|
|
7726
7705
|
}
|
|
7727
7706
|
|
|
7728
|
-
var ItemTimespanForm$1 = styles$
|
|
7707
|
+
var ItemTimespanForm$1 = styles$2B.withStyles({}, {
|
|
7729
7708
|
name: 'VdtItemTimespanForm'
|
|
7730
7709
|
})(ItemTimespanForm);
|
|
7731
7710
|
|
|
@@ -7734,7 +7713,7 @@ var _excluded$14 = ["className", "classes", "itemId", "sampleRate", "onSuccess",
|
|
|
7734
7713
|
function ownKeys$I(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
7735
7714
|
|
|
7736
7715
|
function _objectSpread$I(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$I(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$I(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
7737
|
-
var styles$
|
|
7716
|
+
var styles$29 = {
|
|
7738
7717
|
Form: {}
|
|
7739
7718
|
};
|
|
7740
7719
|
|
|
@@ -7795,7 +7774,7 @@ function ItemTimespanEdit(_ref) {
|
|
|
7795
7774
|
}, props));
|
|
7796
7775
|
}
|
|
7797
7776
|
|
|
7798
|
-
var ItemTimespanEdit$1 = styles$
|
|
7777
|
+
var ItemTimespanEdit$1 = styles$2B.withStyles(styles$29, {
|
|
7799
7778
|
name: 'VdtItemTimespanEdit'
|
|
7800
7779
|
})(ItemTimespanEdit);
|
|
7801
7780
|
|
|
@@ -7978,7 +7957,7 @@ var useItemTimespanInterval = function useItemTimespanInterval(_ref3) {
|
|
|
7978
7957
|
};
|
|
7979
7958
|
};
|
|
7980
7959
|
|
|
7981
|
-
var styles$
|
|
7960
|
+
var styles$28 = function styles(theme) {
|
|
7982
7961
|
return {
|
|
7983
7962
|
root: {
|
|
7984
7963
|
transition: 'background-color 0.3s ease-out',
|
|
@@ -8119,11 +8098,11 @@ function ItemTimespanInterval(_ref) {
|
|
|
8119
8098
|
);
|
|
8120
8099
|
}
|
|
8121
8100
|
|
|
8122
|
-
var ItemTimespanInterval$1 = styles$
|
|
8101
|
+
var ItemTimespanInterval$1 = styles$2B.withStyles(styles$28, {
|
|
8123
8102
|
name: 'VdtItemTimespanInterval'
|
|
8124
8103
|
})(ItemTimespanInterval);
|
|
8125
8104
|
|
|
8126
|
-
var styles$
|
|
8105
|
+
var styles$27 = {
|
|
8127
8106
|
root: {},
|
|
8128
8107
|
ItemTimespanIntervalContainer: {},
|
|
8129
8108
|
ItemTimespanInterval: {},
|
|
@@ -8184,12 +8163,12 @@ function ItemTimespanList(_ref) {
|
|
|
8184
8163
|
}));
|
|
8185
8164
|
}
|
|
8186
8165
|
|
|
8187
|
-
var ItemTimespanList$1 = styles$
|
|
8166
|
+
var ItemTimespanList$1 = styles$2B.withStyles(styles$27, {
|
|
8188
8167
|
name: 'VdtItemTimespanList'
|
|
8189
8168
|
})(ItemTimespanList);
|
|
8190
8169
|
|
|
8191
8170
|
var _excluded$13 = ["className", "classes", "onChange", "searchText", "SearchIconComponent", "CloseIconComponent", "inputRef"];
|
|
8192
|
-
var styles$
|
|
8171
|
+
var styles$26 = {
|
|
8193
8172
|
TextField: {},
|
|
8194
8173
|
InputAdornment: {},
|
|
8195
8174
|
Button: {
|
|
@@ -8266,11 +8245,11 @@ function ItemTimespanSearchInput(_ref) {
|
|
|
8266
8245
|
}, props));
|
|
8267
8246
|
}
|
|
8268
8247
|
|
|
8269
|
-
var ItemTimespanSearchInput$1 = styles$
|
|
8248
|
+
var ItemTimespanSearchInput$1 = styles$2B.withStyles(styles$26, {
|
|
8270
8249
|
name: 'VdtItemTimespanSearchInput'
|
|
8271
8250
|
})(ItemTimespanSearchInput);
|
|
8272
8251
|
|
|
8273
|
-
var styles$
|
|
8252
|
+
var styles$25 = function styles(theme) {
|
|
8274
8253
|
return {
|
|
8275
8254
|
root: {},
|
|
8276
8255
|
header: {
|
|
@@ -8428,11 +8407,11 @@ function ItemTimespanBox(_ref) {
|
|
|
8428
8407
|
}, ItemTimespanListProps)));
|
|
8429
8408
|
}
|
|
8430
8409
|
|
|
8431
|
-
var ItemTimespanBox$1 = styles$
|
|
8410
|
+
var ItemTimespanBox$1 = styles$2B.withStyles(styles$25, {
|
|
8432
8411
|
name: 'VdtItemTimespanBox'
|
|
8433
8412
|
})(ItemTimespanBox);
|
|
8434
8413
|
|
|
8435
|
-
var styles$
|
|
8414
|
+
var styles$24 = {
|
|
8436
8415
|
FormControl: {},
|
|
8437
8416
|
InputLabel: {},
|
|
8438
8417
|
Select: {},
|
|
@@ -8470,7 +8449,7 @@ function ItemTimespanSelection(_ref) {
|
|
|
8470
8449
|
})));
|
|
8471
8450
|
}
|
|
8472
8451
|
|
|
8473
|
-
var ItemTimespanSelection$1 = styles$
|
|
8452
|
+
var ItemTimespanSelection$1 = styles$2B.withStyles(styles$24, {
|
|
8474
8453
|
name: 'VdtItemTimespanSelection'
|
|
8475
8454
|
})(ItemTimespanSelection);
|
|
8476
8455
|
|
|
@@ -8531,7 +8510,7 @@ var useItemTimespan = function useItemTimespan(_ref) {
|
|
|
8531
8510
|
};
|
|
8532
8511
|
};
|
|
8533
8512
|
|
|
8534
|
-
var styles$
|
|
8513
|
+
var styles$23 = function styles(theme) {
|
|
8535
8514
|
return {
|
|
8536
8515
|
root: {},
|
|
8537
8516
|
ItemTimespanSelection: {
|
|
@@ -8598,7 +8577,7 @@ function ItemTimespan$1(_ref) {
|
|
|
8598
8577
|
}, timespanOptionValue, ItemTimespanBoxProps)));
|
|
8599
8578
|
}
|
|
8600
8579
|
|
|
8601
|
-
var ItemTimespan = styles$
|
|
8580
|
+
var ItemTimespan = styles$2B.withStyles(styles$23, {
|
|
8602
8581
|
name: 'VdtItemTimespan'
|
|
8603
8582
|
})(ItemTimespan$1);
|
|
8604
8583
|
|
|
@@ -8620,7 +8599,7 @@ var PERMISSIONS = {
|
|
|
8620
8599
|
NONE: 'NONE'
|
|
8621
8600
|
};
|
|
8622
8601
|
|
|
8623
|
-
var styles$
|
|
8602
|
+
var styles$22 = function styles(theme) {
|
|
8624
8603
|
return {
|
|
8625
8604
|
root: {},
|
|
8626
8605
|
recipientRoot: {
|
|
@@ -9028,14 +9007,14 @@ function EntityAccessEdit(_ref6) {
|
|
|
9028
9007
|
}, grantAccessText)));
|
|
9029
9008
|
}
|
|
9030
9009
|
|
|
9031
|
-
var EntityAccessEdit$1 = styles$
|
|
9010
|
+
var EntityAccessEdit$1 = styles$2B.withStyles(styles$22, {
|
|
9032
9011
|
name: 'VdtEntityAccessEdit'
|
|
9033
9012
|
})(EntityAccessEdit);
|
|
9034
9013
|
|
|
9035
9014
|
function ownKeys$F(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
9036
9015
|
|
|
9037
9016
|
function _objectSpread$F(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$F(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$F(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
9038
|
-
var TableCellLabel = styles$
|
|
9017
|
+
var TableCellLabel = styles$2B.withStyles(function (theme) {
|
|
9039
9018
|
return {
|
|
9040
9019
|
root: _objectSpread$F({
|
|
9041
9020
|
display: 'flex',
|
|
@@ -9044,14 +9023,14 @@ var TableCellLabel = styles$2A.withStyles(function (theme) {
|
|
|
9044
9023
|
}, theme.typography.body2)
|
|
9045
9024
|
};
|
|
9046
9025
|
})(TableCell__default["default"]);
|
|
9047
|
-
var TableCellValue = styles$
|
|
9026
|
+
var TableCellValue = styles$2B.withStyles(function (theme) {
|
|
9048
9027
|
return {
|
|
9049
9028
|
root: _objectSpread$F({
|
|
9050
9029
|
borderStyle: 'none'
|
|
9051
9030
|
}, theme.typography.subtitle2)
|
|
9052
9031
|
};
|
|
9053
9032
|
})(TableCell__default["default"]);
|
|
9054
|
-
var Chip = styles$
|
|
9033
|
+
var Chip = styles$2B.withStyles(function () {
|
|
9055
9034
|
return {
|
|
9056
9035
|
root: {
|
|
9057
9036
|
borderStyle: 'none'
|
|
@@ -9193,7 +9172,7 @@ function EntityAccessTable(_ref3) {
|
|
|
9193
9172
|
})));
|
|
9194
9173
|
}
|
|
9195
9174
|
|
|
9196
|
-
var EntityAccessTable$1 = styles$
|
|
9175
|
+
var EntityAccessTable$1 = styles$2B.withStyles({}, {
|
|
9197
9176
|
name: 'VdtEntityAccessTable'
|
|
9198
9177
|
})(EntityAccessTable);
|
|
9199
9178
|
|
|
@@ -9265,7 +9244,7 @@ function ItemAccessTab(_ref) {
|
|
|
9265
9244
|
}, EntityAccessTableProps)));
|
|
9266
9245
|
}
|
|
9267
9246
|
|
|
9268
|
-
var ItemAccessTab$1 = styles$
|
|
9247
|
+
var ItemAccessTab$1 = styles$2B.withStyles({}, {
|
|
9269
9248
|
name: 'VdtItemAccessTab'
|
|
9270
9249
|
})(ItemAccessTab);
|
|
9271
9250
|
|
|
@@ -9347,7 +9326,7 @@ function ownKeys$E(object, enumerableOnly) { var keys = Object.keys(object); if
|
|
|
9347
9326
|
|
|
9348
9327
|
function _objectSpread$E(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$E(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$E(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
9349
9328
|
|
|
9350
|
-
var styles$
|
|
9329
|
+
var styles$21 = function styles(theme) {
|
|
9351
9330
|
return {
|
|
9352
9331
|
root: {
|
|
9353
9332
|
height: '42px',
|
|
@@ -9413,7 +9392,7 @@ function ItemMetadataFieldRow(_ref) {
|
|
|
9413
9392
|
}, props))));
|
|
9414
9393
|
}
|
|
9415
9394
|
|
|
9416
|
-
var ItemMetadataFieldRow$1 = styles$
|
|
9395
|
+
var ItemMetadataFieldRow$1 = styles$2B.withStyles(styles$21, {
|
|
9417
9396
|
name: 'VdtItemMetadataFieldRow'
|
|
9418
9397
|
})(ItemMetadataFieldRow);
|
|
9419
9398
|
|
|
@@ -9496,7 +9475,7 @@ var defaultGetFieldProps = function defaultGetFieldProps(_ref) {
|
|
|
9496
9475
|
};
|
|
9497
9476
|
};
|
|
9498
9477
|
|
|
9499
|
-
var styles$
|
|
9478
|
+
var styles$20 = {
|
|
9500
9479
|
root: {
|
|
9501
9480
|
tableLayout: 'fixed'
|
|
9502
9481
|
},
|
|
@@ -9610,10 +9589,10 @@ function PureItemMetadataFieldGroupRow(_ref4) {
|
|
|
9610
9589
|
})))));
|
|
9611
9590
|
}
|
|
9612
9591
|
|
|
9613
|
-
var ItemMetadataFieldGroupRow = styles$
|
|
9592
|
+
var ItemMetadataFieldGroupRow = styles$2B.withStyles(FieldGroupRowStyles, {
|
|
9614
9593
|
name: 'VdtItemMetadataFieldGroupRow'
|
|
9615
9594
|
})(PureItemMetadataFieldGroupRow);
|
|
9616
|
-
var ItemMetadataFormTable = styles$
|
|
9595
|
+
var ItemMetadataFormTable = styles$2B.withStyles(styles$20, {
|
|
9617
9596
|
name: 'VdtItemMetadataFormTable'
|
|
9618
9597
|
})(PureItemMetadataFormTable);
|
|
9619
9598
|
|
|
@@ -9652,7 +9631,7 @@ function ItemMetadataForm(_ref) {
|
|
|
9652
9631
|
}, saveText)));
|
|
9653
9632
|
}
|
|
9654
9633
|
|
|
9655
|
-
var ItemMetadataForm$1 = styles$
|
|
9634
|
+
var ItemMetadataForm$1 = styles$2B.withStyles({}, {
|
|
9656
9635
|
name: 'VdtItemMetadataForm'
|
|
9657
9636
|
})(ItemMetadataForm);
|
|
9658
9637
|
|
|
@@ -9737,7 +9716,7 @@ function ownKeys$D(object, enumerableOnly) { var keys = Object.keys(object); if
|
|
|
9737
9716
|
|
|
9738
9717
|
function _objectSpread$D(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$D(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$D(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
9739
9718
|
|
|
9740
|
-
var styles$
|
|
9719
|
+
var styles$1$ = function styles(theme) {
|
|
9741
9720
|
return {
|
|
9742
9721
|
root: {
|
|
9743
9722
|
padding: 0,
|
|
@@ -9803,7 +9782,7 @@ function ItemMetadataListFieldItem(_ref) {
|
|
|
9803
9782
|
}));
|
|
9804
9783
|
}
|
|
9805
9784
|
|
|
9806
|
-
var ItemMetadataListFieldItem$1 = styles$
|
|
9785
|
+
var ItemMetadataListFieldItem$1 = styles$2B.withStyles(styles$1$, {
|
|
9807
9786
|
name: 'VdtItemMetadataListFieldItem'
|
|
9808
9787
|
})(ItemMetadataListFieldItem);
|
|
9809
9788
|
|
|
@@ -9815,7 +9794,7 @@ function ownKeys$C(object, enumerableOnly) { var keys = Object.keys(object); if
|
|
|
9815
9794
|
|
|
9816
9795
|
function _objectSpread$C(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$C(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$C(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
9817
9796
|
|
|
9818
|
-
var styles$
|
|
9797
|
+
var styles$1_ = function styles(theme) {
|
|
9819
9798
|
return {
|
|
9820
9799
|
root: {
|
|
9821
9800
|
padding: 0
|
|
@@ -9904,7 +9883,7 @@ function ItemMetadataListFieldGroupItem(_ref) {
|
|
|
9904
9883
|
}))));
|
|
9905
9884
|
}
|
|
9906
9885
|
|
|
9907
|
-
var ItemMetadataListFieldGroupItem$1 = styles$
|
|
9886
|
+
var ItemMetadataListFieldGroupItem$1 = styles$2B.withStyles(styles$1_, {
|
|
9908
9887
|
name: 'VdtItemMetadataListFieldGroupItem'
|
|
9909
9888
|
})(ItemMetadataListFieldGroupItem);
|
|
9910
9889
|
|
|
@@ -9912,7 +9891,7 @@ var _excluded$$ = ["classes", "className", "fields", "groups", "showFieldName",
|
|
|
9912
9891
|
_excluded2$9 = ["name"],
|
|
9913
9892
|
_excluded3$2 = ["name"];
|
|
9914
9893
|
|
|
9915
|
-
var styles$
|
|
9894
|
+
var styles$1Z = function styles() {
|
|
9916
9895
|
return {
|
|
9917
9896
|
root: {
|
|
9918
9897
|
width: '100%',
|
|
@@ -9969,7 +9948,7 @@ function ItemMetadataList(_ref) {
|
|
|
9969
9948
|
}));
|
|
9970
9949
|
}
|
|
9971
9950
|
|
|
9972
|
-
var ItemMetadataList$1 = styles$
|
|
9951
|
+
var ItemMetadataList$1 = styles$2B.withStyles(styles$1Z, {
|
|
9973
9952
|
name: 'VdtItemMetadataList'
|
|
9974
9953
|
})(ItemMetadataList);
|
|
9975
9954
|
|
|
@@ -10063,7 +10042,7 @@ function ItemMetadataTab(_ref) {
|
|
|
10063
10042
|
}))));
|
|
10064
10043
|
}
|
|
10065
10044
|
|
|
10066
|
-
var ItemMetadataTab$1 = styles$
|
|
10045
|
+
var ItemMetadataTab$1 = styles$2B.withStyles({}, {
|
|
10067
10046
|
name: 'VdtItemMetadataTab'
|
|
10068
10047
|
})(ItemMetadataTab);
|
|
10069
10048
|
|
|
@@ -10200,7 +10179,7 @@ function ItemFieldGroupTab(_ref) {
|
|
|
10200
10179
|
}))));
|
|
10201
10180
|
}
|
|
10202
10181
|
|
|
10203
|
-
var ItemFieldGroupTab$1 = styles$
|
|
10182
|
+
var ItemFieldGroupTab$1 = styles$2B.withStyles({}, {
|
|
10204
10183
|
name: 'VdtItemFieldGroupTab'
|
|
10205
10184
|
})(ItemFieldGroupTab);
|
|
10206
10185
|
|
|
@@ -15742,7 +15721,7 @@ function ownKeys$B(object, enumerableOnly) { var keys = Object.keys(object); if
|
|
|
15742
15721
|
|
|
15743
15722
|
function _objectSpread$B(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$B(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$B(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
15744
15723
|
|
|
15745
|
-
var styles$
|
|
15724
|
+
var styles$1Y = function styles(theme) {
|
|
15746
15725
|
return {
|
|
15747
15726
|
TableCellLabel: _objectSpread$B({
|
|
15748
15727
|
borderStyle: 'none'
|
|
@@ -15775,7 +15754,7 @@ function TableRow(_ref) {
|
|
|
15775
15754
|
}, value !== undefined ? formatValue(value) : ''));
|
|
15776
15755
|
}
|
|
15777
15756
|
|
|
15778
|
-
var TableRow$1 = styles$
|
|
15757
|
+
var TableRow$1 = styles$2B.withStyles(styles$1Y)(TableRow);
|
|
15779
15758
|
|
|
15780
15759
|
function AudioComponentTypeTableBody(_ref) {
|
|
15781
15760
|
var className = _ref.className,
|
|
@@ -16101,7 +16080,7 @@ function ShapeTypeTableBody(_ref2) {
|
|
|
16101
16080
|
}));
|
|
16102
16081
|
}
|
|
16103
16082
|
|
|
16104
|
-
var styles$
|
|
16083
|
+
var styles$1X = function styles() {
|
|
16105
16084
|
return {
|
|
16106
16085
|
MenuIconButton: {},
|
|
16107
16086
|
MenuIcon: {},
|
|
@@ -16189,7 +16168,7 @@ function ItemShapeMenu(_ref) {
|
|
|
16189
16168
|
}));
|
|
16190
16169
|
}
|
|
16191
16170
|
|
|
16192
|
-
var ItemShapeMenu$1 = styles$
|
|
16171
|
+
var ItemShapeMenu$1 = styles$2B.withStyles(styles$1X, {
|
|
16193
16172
|
name: 'VdtItemShapeMenu'
|
|
16194
16173
|
})(ItemShapeMenu);
|
|
16195
16174
|
|
|
@@ -16253,7 +16232,7 @@ function ItemShapeRow(_ref) {
|
|
|
16253
16232
|
})))))));
|
|
16254
16233
|
}
|
|
16255
16234
|
|
|
16256
|
-
var styles$
|
|
16235
|
+
var styles$1W = function styles() {
|
|
16257
16236
|
return {
|
|
16258
16237
|
root: {
|
|
16259
16238
|
width: '100%'
|
|
@@ -16318,10 +16297,10 @@ ItemShapeTable.defaultProps = {
|
|
|
16318
16297
|
canExpand: true
|
|
16319
16298
|
};
|
|
16320
16299
|
|
|
16321
|
-
var Component$
|
|
16300
|
+
var Component$S = styles$2B.withStyles(styles$1W, {
|
|
16322
16301
|
name: 'VdtItemShapeTable'
|
|
16323
16302
|
})(ItemShapeTable);
|
|
16324
|
-
Component$
|
|
16303
|
+
Component$S.displayName = 'ItemShapeTable';
|
|
16325
16304
|
|
|
16326
16305
|
var _excluded$Z = ["itemId", "hidden"];
|
|
16327
16306
|
var queryParams$2 = {
|
|
@@ -16362,7 +16341,7 @@ function ItemShapeTab(_ref) {
|
|
|
16362
16341
|
|
|
16363
16342
|
hiddenRef.current = hidden;
|
|
16364
16343
|
}, [hidden, onRefresh]);
|
|
16365
|
-
return /*#__PURE__*/React__default["default"].createElement(Component$
|
|
16344
|
+
return /*#__PURE__*/React__default["default"].createElement(Component$S, _extends__default["default"]({
|
|
16366
16345
|
itemId: itemId,
|
|
16367
16346
|
itemType: itemType,
|
|
16368
16347
|
onRemove: onRemove
|
|
@@ -16394,7 +16373,7 @@ function MetadataTypeTableBody(_ref) {
|
|
|
16394
16373
|
}));
|
|
16395
16374
|
}
|
|
16396
16375
|
|
|
16397
|
-
var styles$
|
|
16376
|
+
var styles$1V = function styles() {
|
|
16398
16377
|
return {
|
|
16399
16378
|
root: {
|
|
16400
16379
|
width: '100%'
|
|
@@ -16440,10 +16419,10 @@ ItemSourceTable.defaultProps = {
|
|
|
16440
16419
|
classes: {}
|
|
16441
16420
|
};
|
|
16442
16421
|
|
|
16443
|
-
var Component$
|
|
16422
|
+
var Component$R = styles$2B.withStyles(styles$1V, {
|
|
16444
16423
|
name: 'VdtItemSourceTable'
|
|
16445
16424
|
})(ItemSourceTable);
|
|
16446
|
-
Component$
|
|
16425
|
+
Component$R.displayName = 'ItemSourceTable';
|
|
16447
16426
|
|
|
16448
16427
|
var queryParams$1 = {
|
|
16449
16428
|
content: ['shape', 'metadata'],
|
|
@@ -16457,7 +16436,7 @@ function ItemSourceTab(_ref) {
|
|
|
16457
16436
|
return /*#__PURE__*/React__default["default"].createElement(vdtReact.GetItem, {
|
|
16458
16437
|
itemId: itemId,
|
|
16459
16438
|
queryParams: queryParams$1
|
|
16460
|
-
}, /*#__PURE__*/React__default["default"].createElement(Component$
|
|
16439
|
+
}, /*#__PURE__*/React__default["default"].createElement(Component$R, null));
|
|
16461
16440
|
}
|
|
16462
16441
|
|
|
16463
16442
|
function ItemPosterDialog(_ref) {
|
|
@@ -16511,7 +16490,7 @@ function ItemPosterDialog(_ref) {
|
|
|
16511
16490
|
function ownKeys$z(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
16512
16491
|
|
|
16513
16492
|
function _objectSpread$z(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$z(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$z(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
16514
|
-
var styles$
|
|
16493
|
+
var styles$1U = function styles(theme) {
|
|
16515
16494
|
return {
|
|
16516
16495
|
root: {
|
|
16517
16496
|
color: theme.palette.common.white,
|
|
@@ -16560,10 +16539,10 @@ MediaCardThumbnailLabel.defaultProps = {
|
|
|
16560
16539
|
style: {}
|
|
16561
16540
|
};
|
|
16562
16541
|
|
|
16563
|
-
var Component$
|
|
16542
|
+
var Component$Q = styles$2B.withStyles(styles$1U, {
|
|
16564
16543
|
name: 'VdtMediaCardThumbnailLabel'
|
|
16565
16544
|
})(MediaCardThumbnailLabel);
|
|
16566
|
-
Component$
|
|
16545
|
+
Component$Q.displayName = 'MediaCardThumbnailLabel';
|
|
16567
16546
|
|
|
16568
16547
|
var formatDurationSeconds = function formatDurationSeconds(durationSeconds) {
|
|
16569
16548
|
var hours = Math.floor(durationSeconds / 3600);
|
|
@@ -16582,7 +16561,7 @@ function MediaCardDurationLabel(_ref) {
|
|
|
16582
16561
|
var seconds = Number(label);
|
|
16583
16562
|
if (seconds === 0) return null;
|
|
16584
16563
|
var formattedDuration = formatDurationSeconds(seconds);
|
|
16585
|
-
return /*#__PURE__*/React__default["default"].createElement(Component$
|
|
16564
|
+
return /*#__PURE__*/React__default["default"].createElement(Component$Q, {
|
|
16586
16565
|
className: className,
|
|
16587
16566
|
classes: classes,
|
|
16588
16567
|
style: style,
|
|
@@ -16591,7 +16570,7 @@ function MediaCardDurationLabel(_ref) {
|
|
|
16591
16570
|
}
|
|
16592
16571
|
|
|
16593
16572
|
var _excluded$Y = ["classes", "className", "component", "image", "height", "width", "primaryColor", "onClick", "labelLeftTop", "LabelComponentLeftTop", "LabelPropsLeftTop", "labelLeftBottom", "LabelComponentLeftBottom", "LabelPropsLeftBottom", "labelRightTop", "LabelComponentRightTop", "LabelPropsRightTop", "labelRightBottom", "LabelComponentRightBottom", "LabelPropsRightBottom", "innerProps", "scrubOnHover", "scrubOffsetProp", "scrubLabelLeftMargin", "ScrubLabelComponent", "ScrubLabelProps"];
|
|
16594
|
-
var styles$
|
|
16573
|
+
var styles$1T = function styles(theme) {
|
|
16595
16574
|
return {
|
|
16596
16575
|
root: {},
|
|
16597
16576
|
container: {
|
|
@@ -16838,16 +16817,16 @@ MediaCardThumbnail.defaultProps = {
|
|
|
16838
16817
|
primaryColor: undefined,
|
|
16839
16818
|
onClick: undefined,
|
|
16840
16819
|
labelLeftTop: undefined,
|
|
16841
|
-
LabelComponentLeftTop: Component$
|
|
16820
|
+
LabelComponentLeftTop: Component$Q,
|
|
16842
16821
|
LabelPropsLeftTop: {},
|
|
16843
16822
|
labelLeftBottom: undefined,
|
|
16844
|
-
LabelComponentLeftBottom: Component$
|
|
16823
|
+
LabelComponentLeftBottom: Component$Q,
|
|
16845
16824
|
LabelPropsLeftBottom: {},
|
|
16846
16825
|
labelRightTop: undefined,
|
|
16847
|
-
LabelComponentRightTop: Component$
|
|
16826
|
+
LabelComponentRightTop: Component$Q,
|
|
16848
16827
|
LabelPropsRightTop: {},
|
|
16849
16828
|
labelRightBottom: undefined,
|
|
16850
|
-
LabelComponentRightBottom: Component$
|
|
16829
|
+
LabelComponentRightBottom: Component$Q,
|
|
16851
16830
|
LabelPropsRightBottom: {},
|
|
16852
16831
|
innerProps: {},
|
|
16853
16832
|
scrubOnHover: true,
|
|
@@ -16857,12 +16836,12 @@ MediaCardThumbnail.defaultProps = {
|
|
|
16857
16836
|
ScrubLabelProps: {}
|
|
16858
16837
|
};
|
|
16859
16838
|
|
|
16860
|
-
var Component$
|
|
16839
|
+
var Component$P = styles$2B.withStyles(styles$1T, {
|
|
16861
16840
|
name: 'VdtMediaCardThumbnail'
|
|
16862
16841
|
})(MediaCardThumbnail);
|
|
16863
|
-
Component$
|
|
16842
|
+
Component$P.displayName = 'MediaCardThumbnail';
|
|
16864
16843
|
|
|
16865
|
-
var styles$
|
|
16844
|
+
var styles$1S = function styles(theme) {
|
|
16866
16845
|
return {
|
|
16867
16846
|
root: {},
|
|
16868
16847
|
posterRoot: {
|
|
@@ -16880,7 +16859,7 @@ function ItemPosterList(_ref) {
|
|
|
16880
16859
|
imgList = _ref$imgList === void 0 ? [] : _ref$imgList,
|
|
16881
16860
|
handleOpen = _ref.handleOpen,
|
|
16882
16861
|
_ref$MediaCardThumbna = _ref.MediaCardThumbnailComponent,
|
|
16883
|
-
MediaCardThumbnailComponent = _ref$MediaCardThumbna === void 0 ? Component$
|
|
16862
|
+
MediaCardThumbnailComponent = _ref$MediaCardThumbna === void 0 ? Component$P : _ref$MediaCardThumbna,
|
|
16884
16863
|
_ref$MediaCardThumbna2 = _ref.MediaCardThumbnailProps,
|
|
16885
16864
|
MediaCardThumbnailProps = _ref$MediaCardThumbna2 === void 0 ? {} : _ref$MediaCardThumbna2;
|
|
16886
16865
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
@@ -16908,7 +16887,7 @@ function ItemPosterList(_ref) {
|
|
|
16908
16887
|
}));
|
|
16909
16888
|
}
|
|
16910
16889
|
|
|
16911
|
-
var ItemPosterList$1 = styles$
|
|
16890
|
+
var ItemPosterList$1 = styles$2B.withStyles(styles$1S, {
|
|
16912
16891
|
name: 'VdtItemPosterList'
|
|
16913
16892
|
})(ItemPosterList);
|
|
16914
16893
|
|
|
@@ -17082,7 +17061,7 @@ var IMAGE_MIMETYPE_PREFIX = 'image';
|
|
|
17082
17061
|
var COLLECTION$4 = 'collection';
|
|
17083
17062
|
var FILE$1 = 'file';
|
|
17084
17063
|
var PLACEHOLDER = 'placeholder';
|
|
17085
|
-
var styles$
|
|
17064
|
+
var styles$1R = {};
|
|
17086
17065
|
function MimeTypeIcon(_ref) {
|
|
17087
17066
|
var className = _ref.className,
|
|
17088
17067
|
classes = _ref.classes,
|
|
@@ -17143,12 +17122,12 @@ MimeTypeIcon.defaultProps = {
|
|
|
17143
17122
|
collectionIcon: FolderIcon__default["default"]
|
|
17144
17123
|
};
|
|
17145
17124
|
|
|
17146
|
-
var Component$
|
|
17125
|
+
var Component$O = styles$2B.withStyles(styles$1R, {
|
|
17147
17126
|
name: 'VdtMimeTypeIcon'
|
|
17148
17127
|
})(MimeTypeIcon);
|
|
17149
|
-
Component$
|
|
17128
|
+
Component$O.displayName = 'MimeTypeIcon';
|
|
17150
17129
|
|
|
17151
|
-
var styles$
|
|
17130
|
+
var styles$1Q = {
|
|
17152
17131
|
root: {
|
|
17153
17132
|
transition: 'background-color .2s ease-out'
|
|
17154
17133
|
},
|
|
@@ -17165,7 +17144,7 @@ function MediaCardAvatar(_ref) {
|
|
|
17165
17144
|
_ref$variant = _ref.variant,
|
|
17166
17145
|
variant = _ref$variant === void 0 ? 'square' : _ref$variant,
|
|
17167
17146
|
_ref$MimeTypeComponen = _ref.MimeTypeComponent,
|
|
17168
|
-
MimeTypeComponent = _ref$MimeTypeComponen === void 0 ? Component$
|
|
17147
|
+
MimeTypeComponent = _ref$MimeTypeComponen === void 0 ? Component$O : _ref$MimeTypeComponen,
|
|
17169
17148
|
_ref$MimeTypeProps = _ref.MimeTypeProps,
|
|
17170
17149
|
MimeTypeProps = _ref$MimeTypeProps === void 0 ? {} : _ref$MimeTypeProps,
|
|
17171
17150
|
_ref$SkeletonProps = _ref.SkeletonProps,
|
|
@@ -17206,20 +17185,20 @@ MediaCardAvatar.defaultProps = {
|
|
|
17206
17185
|
avatar: undefined,
|
|
17207
17186
|
skeleton: false,
|
|
17208
17187
|
variant: 'square',
|
|
17209
|
-
MimeTypeComponent: Component$
|
|
17188
|
+
MimeTypeComponent: Component$O,
|
|
17210
17189
|
MimeTypeProps: {},
|
|
17211
17190
|
SkeletonProps: {},
|
|
17212
17191
|
AvatarProps: {}
|
|
17213
17192
|
};
|
|
17214
17193
|
|
|
17215
|
-
var Component$
|
|
17194
|
+
var Component$N = styles$2B.withStyles(styles$1Q, {
|
|
17216
17195
|
name: 'VdtMediaCardAvatar'
|
|
17217
17196
|
})(MediaCardAvatar);
|
|
17218
|
-
Component$
|
|
17197
|
+
Component$N.displayName = 'MediaCardAvatar';
|
|
17219
17198
|
|
|
17220
17199
|
var _excluded$W = ["className", "classes", "checked", "handleHover", "children", "innerProps"];
|
|
17221
17200
|
|
|
17222
|
-
var styles$
|
|
17201
|
+
var styles$1P = function styles(theme) {
|
|
17223
17202
|
return {
|
|
17224
17203
|
root: {
|
|
17225
17204
|
width: 'inherit',
|
|
@@ -17239,7 +17218,7 @@ var styles$1O = function styles(theme) {
|
|
|
17239
17218
|
}
|
|
17240
17219
|
},
|
|
17241
17220
|
'& .MuiCardHeader-root': {
|
|
17242
|
-
backgroundColor: theme.palette.type === 'dark' ? styles$
|
|
17221
|
+
backgroundColor: theme.palette.type === 'dark' ? styles$2B.emphasize(theme.palette.background.paper, 0.1) : undefined,
|
|
17243
17222
|
color: theme.palette.type === 'dark' ? theme.palette.common.white : undefined
|
|
17244
17223
|
}
|
|
17245
17224
|
},
|
|
@@ -17267,7 +17246,7 @@ function MediaCardCard(_ref) {
|
|
|
17267
17246
|
}, CardProps), children);
|
|
17268
17247
|
}
|
|
17269
17248
|
|
|
17270
|
-
var MediaCardCard$1 = styles$
|
|
17249
|
+
var MediaCardCard$1 = styles$2B.withStyles(styles$1P, {
|
|
17271
17250
|
name: 'VdtMediaCardCard'
|
|
17272
17251
|
})(MediaCardCard);
|
|
17273
17252
|
|
|
@@ -17294,7 +17273,7 @@ function MediaCardContent(_ref) {
|
|
|
17294
17273
|
})))));
|
|
17295
17274
|
}
|
|
17296
17275
|
|
|
17297
|
-
var useStyles$1 = styles$
|
|
17276
|
+
var useStyles$1 = styles$2B.makeStyles({
|
|
17298
17277
|
colorDefault: {
|
|
17299
17278
|
color: function color(props) {
|
|
17300
17279
|
return props.primaryColor;
|
|
@@ -17355,7 +17334,7 @@ function MediaCardMenu(_ref) {
|
|
|
17355
17334
|
}, /*#__PURE__*/React__default["default"].createElement(MenuItem__default["default"], null, "First"), /*#__PURE__*/React__default["default"].createElement(MenuItem__default["default"], null, "Second"), /*#__PURE__*/React__default["default"].createElement(MenuItem__default["default"], null, "Third")));
|
|
17356
17335
|
}
|
|
17357
17336
|
|
|
17358
|
-
var useStyles = styles$
|
|
17337
|
+
var useStyles = styles$2B.makeStyles({
|
|
17359
17338
|
root: {
|
|
17360
17339
|
paddingLeft: 8,
|
|
17361
17340
|
paddingRight: 0,
|
|
@@ -17391,7 +17370,7 @@ function MediaCardHeader(_ref) {
|
|
|
17391
17370
|
handleChecked = _ref.handleChecked,
|
|
17392
17371
|
avatar = _ref.avatar,
|
|
17393
17372
|
_ref$AvatarComponent = _ref.AvatarComponent,
|
|
17394
|
-
AvatarComponent = _ref$AvatarComponent === void 0 ? Component$
|
|
17373
|
+
AvatarComponent = _ref$AvatarComponent === void 0 ? Component$N : _ref$AvatarComponent,
|
|
17395
17374
|
_ref$AvatarProps = _ref.AvatarProps,
|
|
17396
17375
|
AvatarProps = _ref$AvatarProps === void 0 ? {} : _ref$AvatarProps,
|
|
17397
17376
|
_ref$MenuComponent = _ref.MenuComponent,
|
|
@@ -17436,7 +17415,7 @@ var _excluded$V = ["className", "classes", "onHover", "onCheck", "onClick", "che
|
|
|
17436
17415
|
* MediaCard displays information, thumbnail and action buttons
|
|
17437
17416
|
*/
|
|
17438
17417
|
|
|
17439
|
-
var styles$
|
|
17418
|
+
var styles$1O = function styles() {
|
|
17440
17419
|
return {
|
|
17441
17420
|
root: {}
|
|
17442
17421
|
};
|
|
@@ -17569,10 +17548,10 @@ MediaCard.defaultProps = {
|
|
|
17569
17548
|
avatar: undefined,
|
|
17570
17549
|
CardComponent: MediaCardCard$1,
|
|
17571
17550
|
HeaderComponent: MediaCardHeader,
|
|
17572
|
-
ThumbnailComponent: Component$
|
|
17551
|
+
ThumbnailComponent: Component$P,
|
|
17573
17552
|
ContentComponent: MediaCardContent,
|
|
17574
17553
|
ActionsComponent: MediaCardActions,
|
|
17575
|
-
AvatarComponent: Component$
|
|
17554
|
+
AvatarComponent: Component$N,
|
|
17576
17555
|
MenuComponent: MediaCardMenu,
|
|
17577
17556
|
CardProps: {},
|
|
17578
17557
|
HeaderProps: {},
|
|
@@ -17583,10 +17562,10 @@ MediaCard.defaultProps = {
|
|
|
17583
17562
|
MenuProps: {}
|
|
17584
17563
|
};
|
|
17585
17564
|
|
|
17586
|
-
var Component$
|
|
17565
|
+
var Component$M = styles$2B.withStyles(styles$1O, {
|
|
17587
17566
|
name: 'VdtMediaCard'
|
|
17588
17567
|
})(MediaCard);
|
|
17589
|
-
Component$
|
|
17568
|
+
Component$M.displayName = 'MediaCard';
|
|
17590
17569
|
|
|
17591
17570
|
function CollectionAvatar() {
|
|
17592
17571
|
return /*#__PURE__*/React__default["default"].createElement(core.Avatar, {
|
|
@@ -17595,7 +17574,7 @@ function CollectionAvatar() {
|
|
|
17595
17574
|
}
|
|
17596
17575
|
|
|
17597
17576
|
var _excluded$U = ["collectionType", "MediaCardComponent", "AvatarComponent", "ThumbnailComponent", "MenuComponent", "ContentComponent", "ActionsComponent", "metadataToProps", "parseMetadataOpts", "titleSelector", "subheaderSelector"];
|
|
17598
|
-
var styles$
|
|
17577
|
+
var styles$1N = {};
|
|
17599
17578
|
|
|
17600
17579
|
var metadataToProps$3 = function metadataToProps(_ref) {
|
|
17601
17580
|
var collectionType = _ref.collectionType,
|
|
@@ -17665,7 +17644,7 @@ CollectionCard.defaultProps = {
|
|
|
17665
17644
|
joinValue: ', ',
|
|
17666
17645
|
flat: true
|
|
17667
17646
|
},
|
|
17668
|
-
MediaCardComponent: Component$
|
|
17647
|
+
MediaCardComponent: Component$M,
|
|
17669
17648
|
AvatarComponent: CollectionAvatar,
|
|
17670
17649
|
ThumbnailComponent: null,
|
|
17671
17650
|
MenuComponent: null,
|
|
@@ -17679,12 +17658,12 @@ CollectionCard.defaultProps = {
|
|
|
17679
17658
|
}
|
|
17680
17659
|
};
|
|
17681
17660
|
|
|
17682
|
-
var Component$
|
|
17661
|
+
var Component$L = styles$2B.withStyles(styles$1N, {
|
|
17683
17662
|
name: 'VdtCollectionCard'
|
|
17684
17663
|
})(CollectionCard);
|
|
17685
|
-
Component$
|
|
17664
|
+
Component$L.displayName = 'CollectionCard';
|
|
17686
17665
|
|
|
17687
|
-
var styles$
|
|
17666
|
+
var styles$1M = {
|
|
17688
17667
|
root: {
|
|
17689
17668
|
display: 'flex',
|
|
17690
17669
|
flexWrap: 'wrap',
|
|
@@ -17805,13 +17784,13 @@ ImageCollage.defaultProps = {
|
|
|
17805
17784
|
}
|
|
17806
17785
|
};
|
|
17807
17786
|
|
|
17808
|
-
var Component$
|
|
17787
|
+
var Component$K = styles$2B.withStyles(styles$1M, {
|
|
17809
17788
|
name: 'VdtImageCollage'
|
|
17810
17789
|
})(ImageCollage);
|
|
17811
|
-
Component$
|
|
17790
|
+
Component$K.displayName = 'ImageCollage';
|
|
17812
17791
|
|
|
17813
17792
|
var _excluded$T = ["classes", "className", "component", "height", "width", "primaryColor", "onClick", "onError", "innerProps", "ImageCollageProps"];
|
|
17814
|
-
var styles$
|
|
17793
|
+
var styles$1L = function styles() {
|
|
17815
17794
|
return {
|
|
17816
17795
|
root: {},
|
|
17817
17796
|
isClickable: {
|
|
@@ -17893,7 +17872,7 @@ function CollectionCardThumbnail(_ref) {
|
|
|
17893
17872
|
width: width,
|
|
17894
17873
|
backgroundColor: thumbnailUrls.length ? undefined : primaryColor
|
|
17895
17874
|
}
|
|
17896
|
-
}, /*#__PURE__*/React__default["default"].createElement(Component$
|
|
17875
|
+
}, /*#__PURE__*/React__default["default"].createElement(Component$K, _extends__default["default"]({
|
|
17897
17876
|
className: "VdtCollectionCardThumbnail-image",
|
|
17898
17877
|
urls: thumbnailUrls,
|
|
17899
17878
|
onError: handleError
|
|
@@ -17936,15 +17915,15 @@ CollectionCardThumbnail.defaultProps = {
|
|
|
17936
17915
|
ImageCollageProps: {}
|
|
17937
17916
|
};
|
|
17938
17917
|
|
|
17939
|
-
var Component$
|
|
17918
|
+
var Component$J = styles$2B.withStyles(styles$1L, {
|
|
17940
17919
|
name: 'VdtCollectionCardThumbnail'
|
|
17941
17920
|
})(CollectionCardThumbnail);
|
|
17942
|
-
Component$
|
|
17921
|
+
Component$J.displayName = 'CollectionCardThumbnail';
|
|
17943
17922
|
|
|
17944
17923
|
function ownKeys$y(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
17945
17924
|
|
|
17946
17925
|
function _objectSpread$y(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$y(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$y(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
17947
|
-
var styles$
|
|
17926
|
+
var styles$1K = {
|
|
17948
17927
|
root: {}
|
|
17949
17928
|
};
|
|
17950
17929
|
function CollectionGrid(_ref) {
|
|
@@ -18009,7 +17988,7 @@ CollectionGrid.defaultProps = {
|
|
|
18009
17988
|
className: undefined,
|
|
18010
17989
|
classes: {},
|
|
18011
17990
|
collectionListType: {},
|
|
18012
|
-
CollectionCardComponent: Component$
|
|
17991
|
+
CollectionCardComponent: Component$L,
|
|
18013
17992
|
CollectionCardProps: {},
|
|
18014
17993
|
GridContainerProps: {},
|
|
18015
17994
|
GridItemProps: {},
|
|
@@ -18017,10 +17996,10 @@ CollectionGrid.defaultProps = {
|
|
|
18017
17996
|
onCollectionClick: null
|
|
18018
17997
|
};
|
|
18019
17998
|
|
|
18020
|
-
var Component$
|
|
17999
|
+
var Component$I = styles$2B.withStyles(styles$1K, {
|
|
18021
18000
|
name: 'VdtCollectionGrid'
|
|
18022
18001
|
})(CollectionGrid);
|
|
18023
|
-
Component$
|
|
18002
|
+
Component$I.displayName = 'CollectionGrid';
|
|
18024
18003
|
|
|
18025
18004
|
var _excluded$S = ["classes", "className", "options", "metadataToProps", "parseMetadataOpts", "selected", "onCheck", "onClick", "TableRowProps"];
|
|
18026
18005
|
|
|
@@ -18038,7 +18017,7 @@ var defaultMetadataToProps = function defaultMetadataToProps(_ref) {
|
|
|
18038
18017
|
});
|
|
18039
18018
|
};
|
|
18040
18019
|
|
|
18041
|
-
var styles$
|
|
18020
|
+
var styles$1J = function styles() {
|
|
18042
18021
|
return {
|
|
18043
18022
|
root: {}
|
|
18044
18023
|
};
|
|
@@ -18132,13 +18111,13 @@ CollectionRow.defaultProps = {
|
|
|
18132
18111
|
TableRowProps: {}
|
|
18133
18112
|
};
|
|
18134
18113
|
|
|
18135
|
-
var Component$
|
|
18114
|
+
var Component$H = styles$2B.withStyles(styles$1J, {
|
|
18136
18115
|
name: 'VdtCollectionRow'
|
|
18137
18116
|
})(CollectionRow);
|
|
18138
|
-
Component$
|
|
18117
|
+
Component$H.displayName = 'CollectionRow';
|
|
18139
18118
|
|
|
18140
18119
|
var _excluded$R = ["classes", "className", "collectionListType", "RowComponent", "options", "onCheck", "selected", "onRowClick"];
|
|
18141
|
-
var styles$
|
|
18120
|
+
var styles$1I = function styles() {
|
|
18142
18121
|
return {
|
|
18143
18122
|
root: {}
|
|
18144
18123
|
};
|
|
@@ -18204,17 +18183,17 @@ CollectionTable.defaultProps = {
|
|
|
18204
18183
|
className: undefined,
|
|
18205
18184
|
classes: {},
|
|
18206
18185
|
collectionListType: {},
|
|
18207
|
-
RowComponent: Component$
|
|
18186
|
+
RowComponent: Component$H,
|
|
18208
18187
|
options: [],
|
|
18209
18188
|
onCheck: undefined,
|
|
18210
18189
|
selected: undefined,
|
|
18211
18190
|
onRowClick: undefined
|
|
18212
18191
|
};
|
|
18213
18192
|
|
|
18214
|
-
var Component$
|
|
18193
|
+
var Component$G = styles$2B.withStyles(styles$1I, {
|
|
18215
18194
|
name: 'VdtCollectionTable'
|
|
18216
18195
|
})(CollectionTable);
|
|
18217
|
-
Component$
|
|
18196
|
+
Component$G.displayName = 'CollectionTable';
|
|
18218
18197
|
|
|
18219
18198
|
var LOAD_MORE$1 = 'LOAD_MORE';
|
|
18220
18199
|
var ITEM$3 = 'ITEM';
|
|
@@ -18977,17 +18956,17 @@ withDrop.defaultProps = {
|
|
|
18977
18956
|
acceptedEntityTypes: ACCEPTED_ENTITY_TYPES
|
|
18978
18957
|
};
|
|
18979
18958
|
|
|
18980
|
-
var styles$
|
|
18959
|
+
var styles$1H = {
|
|
18981
18960
|
isDragging: {
|
|
18982
18961
|
opacity: 0.5,
|
|
18983
18962
|
cursor: 'move'
|
|
18984
18963
|
}
|
|
18985
18964
|
};
|
|
18986
|
-
var TreeItemDraggable = vdtReact.compose(core.withStyles(styles$
|
|
18965
|
+
var TreeItemDraggable = vdtReact.compose(core.withStyles(styles$1H, {
|
|
18987
18966
|
name: 'VdtTreeItemDraggable'
|
|
18988
18967
|
}), withDrag)(TreeItem__default["default"]);
|
|
18989
18968
|
|
|
18990
|
-
var styles$
|
|
18969
|
+
var styles$1G = function styles() {
|
|
18991
18970
|
return {
|
|
18992
18971
|
root: {}
|
|
18993
18972
|
};
|
|
@@ -19014,7 +18993,7 @@ function ItemLabel(_ref) {
|
|
|
19014
18993
|
className: clsx__default["default"](className, classes.root, 'VdtItemLabel-root'),
|
|
19015
18994
|
display: "flex",
|
|
19016
18995
|
alignItems: "flex-end"
|
|
19017
|
-
}, /*#__PURE__*/React__default["default"].createElement(Component$
|
|
18996
|
+
}, /*#__PURE__*/React__default["default"].createElement(Component$O, {
|
|
19018
18997
|
mimeType: mimeType
|
|
19019
18998
|
}), /*#__PURE__*/React__default["default"].createElement(core.Typography, {
|
|
19020
18999
|
style: {
|
|
@@ -19023,11 +19002,11 @@ function ItemLabel(_ref) {
|
|
|
19023
19002
|
}, label));
|
|
19024
19003
|
}
|
|
19025
19004
|
|
|
19026
|
-
var ItemLabel$1 = core.withStyles(styles$
|
|
19005
|
+
var ItemLabel$1 = core.withStyles(styles$1G, {
|
|
19027
19006
|
name: 'VdtItemLabel'
|
|
19028
19007
|
})(ItemLabel);
|
|
19029
19008
|
|
|
19030
|
-
var styles$
|
|
19009
|
+
var styles$1F = function styles(theme) {
|
|
19031
19010
|
return {
|
|
19032
19011
|
isOver: {
|
|
19033
19012
|
backgroundColor: theme.palette.primary.main
|
|
@@ -19035,11 +19014,11 @@ var styles$1E = function styles(theme) {
|
|
|
19035
19014
|
};
|
|
19036
19015
|
};
|
|
19037
19016
|
|
|
19038
|
-
var ItemLabelDroppable = vdtReact.compose(core.withStyles(styles$
|
|
19017
|
+
var ItemLabelDroppable = vdtReact.compose(core.withStyles(styles$1F, {
|
|
19039
19018
|
name: 'VdtItemLabelDroppable'
|
|
19040
19019
|
}), withDrop)(ItemLabel$1);
|
|
19041
19020
|
|
|
19042
|
-
var styles$
|
|
19021
|
+
var styles$1E = {
|
|
19043
19022
|
root: {}
|
|
19044
19023
|
};
|
|
19045
19024
|
|
|
@@ -19077,11 +19056,11 @@ function ItemTreeItem(_ref) {
|
|
|
19077
19056
|
}, TreeItemProps));
|
|
19078
19057
|
}
|
|
19079
19058
|
|
|
19080
|
-
var ItemTreeItem$1 = core.withStyles(styles$
|
|
19059
|
+
var ItemTreeItem$1 = core.withStyles(styles$1E, {
|
|
19081
19060
|
name: 'VdtItemTreeItem'
|
|
19082
19061
|
})(ItemTreeItem);
|
|
19083
19062
|
|
|
19084
|
-
var styles$
|
|
19063
|
+
var styles$1D = {
|
|
19085
19064
|
root: {}
|
|
19086
19065
|
};
|
|
19087
19066
|
|
|
@@ -19113,11 +19092,11 @@ function CollectionLabel(_ref) {
|
|
|
19113
19092
|
}, collectionLabel));
|
|
19114
19093
|
}
|
|
19115
19094
|
|
|
19116
|
-
var CollectionLabel$1 = core.withStyles(styles$
|
|
19095
|
+
var CollectionLabel$1 = core.withStyles(styles$1D, {
|
|
19117
19096
|
name: 'CollectionLabel'
|
|
19118
19097
|
})(CollectionLabel);
|
|
19119
19098
|
|
|
19120
|
-
var styles$
|
|
19099
|
+
var styles$1C = function styles(theme) {
|
|
19121
19100
|
return {
|
|
19122
19101
|
isOver: {
|
|
19123
19102
|
backgroundColor: theme.palette.primary.main
|
|
@@ -19125,7 +19104,7 @@ var styles$1B = function styles(theme) {
|
|
|
19125
19104
|
};
|
|
19126
19105
|
};
|
|
19127
19106
|
|
|
19128
|
-
var CollectionLabelDroppable = vdtReact.compose(core.withStyles(styles$
|
|
19107
|
+
var CollectionLabelDroppable = vdtReact.compose(core.withStyles(styles$1C, {
|
|
19129
19108
|
name: 'VdtCollectionLabelDroppable'
|
|
19130
19109
|
}), withDrop)(CollectionLabel$1);
|
|
19131
19110
|
|
|
@@ -19164,7 +19143,7 @@ var getStateWithParentCollection = function getStateWithParentCollection(state,
|
|
|
19164
19143
|
});
|
|
19165
19144
|
};
|
|
19166
19145
|
|
|
19167
|
-
var styles$
|
|
19146
|
+
var styles$1B = {
|
|
19168
19147
|
root: {}
|
|
19169
19148
|
};
|
|
19170
19149
|
function CollectionTreeList(_ref) {
|
|
@@ -19439,15 +19418,15 @@ function CollectionTreeList(_ref) {
|
|
|
19439
19418
|
}) : undefined);
|
|
19440
19419
|
}
|
|
19441
19420
|
|
|
19442
|
-
var Component$
|
|
19421
|
+
var Component$F = styles$2B.withStyles(styles$1B, {
|
|
19443
19422
|
name: 'VdtCollectionTreeList'
|
|
19444
19423
|
})(CollectionTreeList);
|
|
19445
|
-
Component$
|
|
19424
|
+
Component$F.displayName = 'CollectionTreeList';
|
|
19446
19425
|
|
|
19447
19426
|
function ownKeys$t(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
19448
19427
|
|
|
19449
19428
|
function _objectSpread$t(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$t(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$t(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
19450
|
-
var styles$
|
|
19429
|
+
var styles$1A = function styles() {
|
|
19451
19430
|
return {
|
|
19452
19431
|
ListItemSecondaryAction: {
|
|
19453
19432
|
visibility: 'hidden'
|
|
@@ -19610,7 +19589,7 @@ CollectionListItem.defaultProps = {
|
|
|
19610
19589
|
onClick: undefined,
|
|
19611
19590
|
ActionComponent: undefined,
|
|
19612
19591
|
ActionProps: {},
|
|
19613
|
-
AvatarComponent: Component$
|
|
19592
|
+
AvatarComponent: Component$N,
|
|
19614
19593
|
AvatarProps: {},
|
|
19615
19594
|
ListItemProps: {},
|
|
19616
19595
|
parseMetadataOptions: {
|
|
@@ -19620,12 +19599,12 @@ CollectionListItem.defaultProps = {
|
|
|
19620
19599
|
skeleton: false
|
|
19621
19600
|
};
|
|
19622
19601
|
|
|
19623
|
-
var Component$
|
|
19602
|
+
var Component$E = styles$2B.withStyles(styles$1A, {
|
|
19624
19603
|
name: 'VdtCollectionListItem'
|
|
19625
19604
|
})(CollectionListItem);
|
|
19626
|
-
Component$
|
|
19605
|
+
Component$E.displayName = 'CollectionListItem';
|
|
19627
19606
|
|
|
19628
|
-
var styles$
|
|
19607
|
+
var styles$1z = function styles() {
|
|
19629
19608
|
return {
|
|
19630
19609
|
root: {
|
|
19631
19610
|
width: '100%'
|
|
@@ -19666,14 +19645,14 @@ CollectionList.defaultProps = {
|
|
|
19666
19645
|
classes: {},
|
|
19667
19646
|
collectionListType: {},
|
|
19668
19647
|
onItemClick: undefined,
|
|
19669
|
-
CollectionListItemComponent: Component$
|
|
19648
|
+
CollectionListItemComponent: Component$E,
|
|
19670
19649
|
CollectionListItemProps: {}
|
|
19671
19650
|
};
|
|
19672
19651
|
|
|
19673
|
-
var Component$
|
|
19652
|
+
var Component$D = styles$2B.withStyles(styles$1z, {
|
|
19674
19653
|
name: 'VdtCollectionList'
|
|
19675
19654
|
})(CollectionList);
|
|
19676
|
-
Component$
|
|
19655
|
+
Component$D.displayName = 'CollectionList';
|
|
19677
19656
|
|
|
19678
19657
|
function CollectionMetadataEdit(_ref) {
|
|
19679
19658
|
var collectionId = _ref.collectionId,
|
|
@@ -19802,7 +19781,7 @@ function CollectionMetadataTab(_ref) {
|
|
|
19802
19781
|
}))));
|
|
19803
19782
|
}
|
|
19804
19783
|
|
|
19805
|
-
var CollectionMetadataTab$1 = styles$
|
|
19784
|
+
var CollectionMetadataTab$1 = styles$2B.withStyles({}, {
|
|
19806
19785
|
name: 'VdtCollectionMetadataTab'
|
|
19807
19786
|
})(CollectionMetadataTab);
|
|
19808
19787
|
|
|
@@ -19874,11 +19853,11 @@ function CollectionAccessTab(_ref) {
|
|
|
19874
19853
|
}, EntityAccessTableProps)));
|
|
19875
19854
|
}
|
|
19876
19855
|
|
|
19877
|
-
var CollectionAccessTab$1 = styles$
|
|
19856
|
+
var CollectionAccessTab$1 = styles$2B.withStyles({}, {
|
|
19878
19857
|
name: 'VdtCollectionAccessTab'
|
|
19879
19858
|
})(CollectionAccessTab);
|
|
19880
19859
|
|
|
19881
|
-
var styles$
|
|
19860
|
+
var styles$1y = function styles() {
|
|
19882
19861
|
return {
|
|
19883
19862
|
root: {}
|
|
19884
19863
|
};
|
|
@@ -19967,12 +19946,12 @@ CollectionCreateDialog.defaultProps = {
|
|
|
19967
19946
|
onSuccess: undefined
|
|
19968
19947
|
};
|
|
19969
19948
|
|
|
19970
|
-
var Component$
|
|
19949
|
+
var Component$C = styles$2B.withStyles(styles$1y, {
|
|
19971
19950
|
name: 'VdtCollectionCreateDialog'
|
|
19972
19951
|
})(CollectionCreateDialog);
|
|
19973
|
-
Component$
|
|
19952
|
+
Component$C.displayName = 'CollectionCreateDialog';
|
|
19974
19953
|
|
|
19975
|
-
var styles$
|
|
19954
|
+
var styles$1x = function styles(theme) {
|
|
19976
19955
|
return {
|
|
19977
19956
|
root: {
|
|
19978
19957
|
alignItems: 'center',
|
|
@@ -20238,10 +20217,10 @@ SearchInput.defaultProps = {
|
|
|
20238
20217
|
inputRef: undefined
|
|
20239
20218
|
};
|
|
20240
20219
|
|
|
20241
|
-
var Component$
|
|
20220
|
+
var Component$B = styles$2B.withStyles(styles$1x, {
|
|
20242
20221
|
name: 'VdtSearchInput'
|
|
20243
20222
|
})(SearchInput);
|
|
20244
|
-
Component$
|
|
20223
|
+
Component$B.displayName = 'SearchInput';
|
|
20245
20224
|
|
|
20246
20225
|
var _excluded$N = ["PaginationComponent"];
|
|
20247
20226
|
|
|
@@ -20253,41 +20232,39 @@ function PaginationWrapper$1(_ref) {
|
|
|
20253
20232
|
var _props$collectionList = props.collectionListType.hits,
|
|
20254
20233
|
count = _props$collectionList === void 0 ? 0 : _props$collectionList;
|
|
20255
20234
|
return /*#__PURE__*/React__default["default"].createElement(PaginationComponent, _extends__default["default"]({
|
|
20256
|
-
count: count
|
|
20235
|
+
count: count // eslint-disable-next-line react/jsx-props-no-spreading
|
|
20236
|
+
|
|
20257
20237
|
}, props));
|
|
20258
20238
|
}
|
|
20259
20239
|
|
|
20260
20240
|
function SearchInputWrapper$1(props) {
|
|
20261
20241
|
var isLoading = props.isLoading;
|
|
20262
|
-
return /*#__PURE__*/React__default["default"].createElement(Component$
|
|
20263
|
-
submitting: isLoading
|
|
20264
|
-
}, props));
|
|
20265
|
-
} // TODO: Rename to SelectCollection
|
|
20242
|
+
return /*#__PURE__*/React__default["default"].createElement(Component$B, _extends__default["default"]({
|
|
20243
|
+
submitting: isLoading // eslint-disable-next-line react/jsx-props-no-spreading
|
|
20266
20244
|
|
|
20245
|
+
}, props));
|
|
20246
|
+
}
|
|
20267
20247
|
|
|
20248
|
+
var styles$1w = function styles() {
|
|
20249
|
+
return {
|
|
20250
|
+
root: {}
|
|
20251
|
+
};
|
|
20252
|
+
};
|
|
20268
20253
|
function CollectionSearchPicker(_ref2) {
|
|
20269
|
-
var
|
|
20270
|
-
|
|
20271
|
-
|
|
20272
|
-
|
|
20273
|
-
CollectionTableComponent = _ref2
|
|
20274
|
-
|
|
20275
|
-
CollectionTableProps = _ref2$CollectionTable2 === void 0 ? {} : _ref2$CollectionTable2,
|
|
20254
|
+
var className = _ref2.className,
|
|
20255
|
+
classes = _ref2.classes,
|
|
20256
|
+
onChange = _ref2.onChange,
|
|
20257
|
+
onCheck = _ref2.onCheck,
|
|
20258
|
+
CollectionTableComponent = _ref2.CollectionTableComponent,
|
|
20259
|
+
CollectionTableProps = _ref2.CollectionTableProps,
|
|
20276
20260
|
searchProps = _ref2.searchProps,
|
|
20277
|
-
|
|
20278
|
-
|
|
20279
|
-
|
|
20280
|
-
|
|
20281
|
-
|
|
20282
|
-
|
|
20283
|
-
|
|
20284
|
-
searchPlaceholder = _ref2$searchPlacehold === void 0 ? 'Search collections' : _ref2$searchPlacehold,
|
|
20285
|
-
_ref2$SearchInputProp = _ref2.SearchInputProps,
|
|
20286
|
-
SearchInputProps = _ref2$SearchInputProp === void 0 ? {} : _ref2$SearchInputProp,
|
|
20287
|
-
_ref2$PaginationProps = _ref2.PaginationProps,
|
|
20288
|
-
PaginationProps = _ref2$PaginationProps === void 0 ? {} : _ref2$PaginationProps,
|
|
20289
|
-
_ref2$SearchCollectio = _ref2.SearchCollectionProps,
|
|
20290
|
-
SearchCollectionProps = _ref2$SearchCollectio === void 0 ? {} : _ref2$SearchCollectio;
|
|
20261
|
+
idLabelText = _ref2.idLabelText,
|
|
20262
|
+
titleLabelText = _ref2.titleLabelText,
|
|
20263
|
+
ownerLabelText = _ref2.ownerLabelText,
|
|
20264
|
+
searchPlaceholder = _ref2.searchPlaceholder,
|
|
20265
|
+
SearchInputProps = _ref2.SearchInputProps,
|
|
20266
|
+
PaginationProps = _ref2.PaginationProps,
|
|
20267
|
+
SearchCollectionProps = _ref2.SearchCollectionProps;
|
|
20291
20268
|
var defaultSearchProps = vdtReact.useSearch({
|
|
20292
20269
|
queryParams: {
|
|
20293
20270
|
field: ['collectionId', 'title', '__user'],
|
|
@@ -20336,15 +20313,19 @@ function CollectionSearchPicker(_ref2) {
|
|
|
20336
20313
|
return check(id);
|
|
20337
20314
|
};
|
|
20338
20315
|
|
|
20339
|
-
return /*#__PURE__*/React__default["default"].createElement(
|
|
20316
|
+
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
20317
|
+
className: clsx__default["default"](classes.root, 'VdtCollectionSearchPicker', className)
|
|
20318
|
+
}, /*#__PURE__*/React__default["default"].createElement(vdtReact.SearchCollection, _extends__default["default"]({
|
|
20340
20319
|
itemSearchDocument: itemSearchDocument,
|
|
20341
20320
|
matrixParams: matrixParams,
|
|
20342
|
-
queryParams: queryParams
|
|
20321
|
+
queryParams: queryParams // eslint-disable-next-line react/jsx-props-no-spreading
|
|
20322
|
+
|
|
20343
20323
|
}, SearchCollectionProps), /*#__PURE__*/React__default["default"].createElement(SearchInputWrapper$1, _extends__default["default"]({
|
|
20344
20324
|
onSubmit: function onSubmit(text) {
|
|
20345
20325
|
return setSearchText("*".concat(text, "*"));
|
|
20346
20326
|
},
|
|
20347
|
-
searchPlaceholder: searchPlaceholder
|
|
20327
|
+
searchPlaceholder: searchPlaceholder // eslint-disable-next-line react/jsx-props-no-spreading
|
|
20328
|
+
|
|
20348
20329
|
}, SearchInputProps)), /*#__PURE__*/React__default["default"].createElement(CollectionTableComponent, _extends__default["default"]({
|
|
20349
20330
|
onRowClick: handleRowClick,
|
|
20350
20331
|
onCheck: onCheck,
|
|
@@ -20358,18 +20339,60 @@ function CollectionSearchPicker(_ref2) {
|
|
|
20358
20339
|
}, {
|
|
20359
20340
|
label: ownerLabelText,
|
|
20360
20341
|
value: '__user'
|
|
20361
|
-
}]
|
|
20342
|
+
}] // eslint-disable-next-line react/jsx-props-no-spreading
|
|
20343
|
+
|
|
20362
20344
|
}, CollectionTableProps)), /*#__PURE__*/React__default["default"].createElement(PaginationWrapper$1, _extends__default["default"]({
|
|
20363
20345
|
onChangePage: onChangePage,
|
|
20364
20346
|
onChangeRowsPerPage: onChangeRowsPerPage,
|
|
20365
20347
|
page: page,
|
|
20366
|
-
rowsPerPage: rowsPerPage
|
|
20367
|
-
|
|
20348
|
+
rowsPerPage: rowsPerPage // eslint-disable-next-line react/jsx-props-no-spreading
|
|
20349
|
+
|
|
20350
|
+
}, PaginationProps))));
|
|
20368
20351
|
}
|
|
20352
|
+
CollectionSearchPicker.propTypes = {
|
|
20353
|
+
/**
|
|
20354
|
+
* Override or extend the styles applied to the component.
|
|
20355
|
+
*/
|
|
20356
|
+
classes: PropTypes$1.objectOf(PropTypes$1.string),
|
|
20369
20357
|
|
|
20370
|
-
|
|
20358
|
+
/**
|
|
20359
|
+
* @ignore
|
|
20360
|
+
*/
|
|
20361
|
+
className: PropTypes$1.string,
|
|
20362
|
+
onChange: PropTypes$1.func,
|
|
20363
|
+
onCheck: PropTypes$1.func,
|
|
20364
|
+
CollectionTableComponent: PropTypes$1.elementType,
|
|
20365
|
+
CollectionTableProps: PropTypes$1.objectOf(PropTypes$1.any),
|
|
20366
|
+
searchProps: PropTypes$1.objectOf(PropTypes$1.any),
|
|
20367
|
+
idLabelText: PropTypes$1.string,
|
|
20368
|
+
titleLabelText: PropTypes$1.string,
|
|
20369
|
+
ownerLabelText: PropTypes$1.string,
|
|
20370
|
+
searchPlaceholder: PropTypes$1.string,
|
|
20371
|
+
SearchInputProps: PropTypes$1.objectOf(PropTypes$1.any),
|
|
20372
|
+
PaginationProps: PropTypes$1.objectOf(PropTypes$1.any),
|
|
20373
|
+
SearchCollectionProps: PropTypes$1.objectOf(PropTypes$1.any)
|
|
20374
|
+
};
|
|
20375
|
+
CollectionSearchPicker.defaultProps = {
|
|
20376
|
+
className: undefined,
|
|
20377
|
+
classes: {},
|
|
20378
|
+
onChange: undefined,
|
|
20379
|
+
onCheck: function onCheck() {},
|
|
20380
|
+
CollectionTableComponent: Component$G,
|
|
20381
|
+
CollectionTableProps: {},
|
|
20382
|
+
searchProps: undefined,
|
|
20383
|
+
idLabelText: 'Id',
|
|
20384
|
+
titleLabelText: 'Title',
|
|
20385
|
+
ownerLabelText: 'Owner',
|
|
20386
|
+
searchPlaceholder: 'Search collections',
|
|
20387
|
+
SearchInputProps: {},
|
|
20388
|
+
PaginationProps: {},
|
|
20389
|
+
SearchCollectionProps: {}
|
|
20390
|
+
};
|
|
20391
|
+
|
|
20392
|
+
var Component$A = styles$2B.withStyles(styles$1w, {
|
|
20371
20393
|
name: 'VdtCollectionSearchPicker'
|
|
20372
20394
|
})(CollectionSearchPicker);
|
|
20395
|
+
Component$A.displayName = 'CollectionSearchPicker';
|
|
20373
20396
|
|
|
20374
20397
|
function ownKeys$s(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
20375
20398
|
|
|
@@ -20585,7 +20608,7 @@ AddToCollectionDialog.propTypes = {
|
|
|
20585
20608
|
AddToCollectionDialog.defaultProps = {
|
|
20586
20609
|
classes: {},
|
|
20587
20610
|
className: undefined,
|
|
20588
|
-
CollectionPickerComponent:
|
|
20611
|
+
CollectionPickerComponent: Component$A,
|
|
20589
20612
|
CreateCollectionComponent: CreateCollection,
|
|
20590
20613
|
onClose: function onClose() {},
|
|
20591
20614
|
onSubmit: defaultOnSubmit$1,
|
|
@@ -20607,7 +20630,7 @@ AddToCollectionDialog.defaultProps = {
|
|
|
20607
20630
|
SearchCollectionIcon: SearchIcon__default["default"]
|
|
20608
20631
|
};
|
|
20609
20632
|
|
|
20610
|
-
var Component$z = styles$
|
|
20633
|
+
var Component$z = styles$2B.withStyles(styles$1v, {
|
|
20611
20634
|
name: 'VdtAddToCollectionDialog'
|
|
20612
20635
|
})(AddToCollectionDialog);
|
|
20613
20636
|
Component$z.displayName = 'AddToCollectionDialog';
|
|
@@ -20702,7 +20725,7 @@ RemoveFromCollectionDialog.defaultProps = {
|
|
|
20702
20725
|
confirmText: 'Remove'
|
|
20703
20726
|
};
|
|
20704
20727
|
|
|
20705
|
-
var Component$y = styles$
|
|
20728
|
+
var Component$y = styles$2B.withStyles(styles$1u, {
|
|
20706
20729
|
name: 'VdtRemoveFromCollectionDialog'
|
|
20707
20730
|
})(RemoveFromCollectionDialog);
|
|
20708
20731
|
Component$y.displayName = 'RemoveFromCollectionDialog';
|
|
@@ -20874,7 +20897,7 @@ function CollectionContentCollection(_ref3) {
|
|
|
20874
20897
|
_ref3$PaperProps = _ref3.PaperProps,
|
|
20875
20898
|
PaperProps = _ref3$PaperProps === void 0 ? {} : _ref3$PaperProps,
|
|
20876
20899
|
_ref3$IconComponent = _ref3.IconComponent,
|
|
20877
|
-
IconComponent = _ref3$IconComponent === void 0 ? Component$
|
|
20900
|
+
IconComponent = _ref3$IconComponent === void 0 ? Component$O : _ref3$IconComponent;
|
|
20878
20901
|
var isSelected = selected && selected.entityType === 'collection' && selected.entityId === collectionId;
|
|
20879
20902
|
|
|
20880
20903
|
var onClickListItem = function onClickListItem() {
|
|
@@ -20912,7 +20935,7 @@ function CollectionContentCollection(_ref3) {
|
|
|
20912
20935
|
}, ListItemMenuProps)));
|
|
20913
20936
|
}
|
|
20914
20937
|
|
|
20915
|
-
var CollectionContentCollection$1 = styles$
|
|
20938
|
+
var CollectionContentCollection$1 = styles$2B.withStyles(styles$1t, {
|
|
20916
20939
|
name: 'VdtCollectionContentCollection'
|
|
20917
20940
|
})(CollectionContentCollection);
|
|
20918
20941
|
|
|
@@ -21098,13 +21121,13 @@ var defaultListItemAvatarComponent = function defaultListItemAvatarComponent(_re
|
|
|
21098
21121
|
_ref4$PaperProps = _ref4.PaperProps,
|
|
21099
21122
|
PaperProps = _ref4$PaperProps === void 0 ? {} : _ref4$PaperProps,
|
|
21100
21123
|
_ref4$ThumbnailCompon = _ref4.ThumbnailComponent,
|
|
21101
|
-
ThumbnailComponent = _ref4$ThumbnailCompon === void 0 ? Component$
|
|
21124
|
+
ThumbnailComponent = _ref4$ThumbnailCompon === void 0 ? Component$P : _ref4$ThumbnailCompon,
|
|
21102
21125
|
_ref4$ThumbnailProps = _ref4.ThumbnailProps,
|
|
21103
21126
|
ThumbnailProps = _ref4$ThumbnailProps === void 0 ? {} : _ref4$ThumbnailProps,
|
|
21104
21127
|
_ref4$ThumbnailLabelC = _ref4.ThumbnailLabelComponent,
|
|
21105
|
-
ThumbnailLabelComponent = _ref4$ThumbnailLabelC === void 0 ? Component$
|
|
21128
|
+
ThumbnailLabelComponent = _ref4$ThumbnailLabelC === void 0 ? Component$Q : _ref4$ThumbnailLabelC,
|
|
21106
21129
|
_ref4$IconComponent = _ref4.IconComponent,
|
|
21107
|
-
IconComponent = _ref4$IconComponent === void 0 ? Component$
|
|
21130
|
+
IconComponent = _ref4$IconComponent === void 0 ? Component$O : _ref4$IconComponent,
|
|
21108
21131
|
_ref4$ListItemAvatarC = _ref4.ListItemAvatarComponent,
|
|
21109
21132
|
ListItemAvatarComponent = _ref4$ListItemAvatarC === void 0 ? core.ListItemAvatar : _ref4$ListItemAvatarC,
|
|
21110
21133
|
props = _objectWithoutProperties__default["default"](_ref4, _excluded2$8);
|
|
@@ -21316,7 +21339,7 @@ function CollectionContentItem(_ref7) {
|
|
|
21316
21339
|
}, /*#__PURE__*/React__default["default"].createElement(icons.Wallpaper, null))));
|
|
21317
21340
|
}
|
|
21318
21341
|
|
|
21319
|
-
var CollectionContentItem$1 = styles$
|
|
21342
|
+
var CollectionContentItem$1 = styles$2B.withStyles(styles$1s, {
|
|
21320
21343
|
name: 'VdtCollectionContentItem'
|
|
21321
21344
|
})(CollectionContentItem);
|
|
21322
21345
|
|
|
@@ -21397,7 +21420,7 @@ CollectionContentSkeleton.defaultProps = {
|
|
|
21397
21420
|
ListItemAvatarProps: {},
|
|
21398
21421
|
ListItemTextProps: {}
|
|
21399
21422
|
};
|
|
21400
|
-
var CollectionContentSkeleton$1 = styles$
|
|
21423
|
+
var CollectionContentSkeleton$1 = styles$2B.withStyles(styles$1r, {
|
|
21401
21424
|
name: 'VdtCollectionContentSkeleton'
|
|
21402
21425
|
})(CollectionContentSkeleton);
|
|
21403
21426
|
|
|
@@ -21477,7 +21500,7 @@ function CollectionContentEntity(_ref) {
|
|
|
21477
21500
|
}[entityType];
|
|
21478
21501
|
}
|
|
21479
21502
|
|
|
21480
|
-
var CollectionContentEntity$1 = styles$
|
|
21503
|
+
var CollectionContentEntity$1 = styles$2B.withStyles({}, {
|
|
21481
21504
|
name: 'VdtCollectionContentEntity'
|
|
21482
21505
|
})(CollectionContentEntity);
|
|
21483
21506
|
|
|
@@ -21519,13 +21542,13 @@ var collectionContentDroppableStyles = function collectionContentDroppableStyles
|
|
|
21519
21542
|
canDrop: {
|
|
21520
21543
|
boxShadow: "inset 0px 0px 1px 1px ".concat(theme.palette.primary.main),
|
|
21521
21544
|
'&.VdtDroppable-isOver': {
|
|
21522
|
-
backgroundColor: styles$
|
|
21545
|
+
backgroundColor: styles$2B.emphasize(theme.palette.background.paper, 0.05)
|
|
21523
21546
|
}
|
|
21524
21547
|
}
|
|
21525
21548
|
};
|
|
21526
21549
|
};
|
|
21527
21550
|
|
|
21528
|
-
var CollectionContentDroppable = vdtReact.compose(styles$
|
|
21551
|
+
var CollectionContentDroppable = vdtReact.compose(styles$2B.withStyles(collectionContentDroppableStyles, {
|
|
21529
21552
|
name: 'VdtCollectionContentDroppable'
|
|
21530
21553
|
}), withDrop)(CollectionContentWrapper);
|
|
21531
21554
|
|
|
@@ -21533,7 +21556,7 @@ var CollectionContentEntityStyles = function CollectionContentEntityStyles(theme
|
|
|
21533
21556
|
return {
|
|
21534
21557
|
root: {
|
|
21535
21558
|
marginBottom: theme.spacing(1.25),
|
|
21536
|
-
backgroundColor: theme.palette.type === 'dark' ? styles$
|
|
21559
|
+
backgroundColor: theme.palette.type === 'dark' ? styles$2B.emphasize(theme.palette.background.paper, 0.1) : undefined,
|
|
21537
21560
|
color: theme.palette.type === 'dark' ? theme.palette.common.white : undefined,
|
|
21538
21561
|
borderColor: 'transparent',
|
|
21539
21562
|
borderWidth: 0.7,
|
|
@@ -21560,7 +21583,7 @@ function CollectionContentEntityWrapper(_ref2) {
|
|
|
21560
21583
|
}, /*#__PURE__*/React__default["default"].createElement(CollectionContentEntity$1, props));
|
|
21561
21584
|
}
|
|
21562
21585
|
|
|
21563
|
-
var CollectionContentEntityDraggable = vdtReact.compose(styles$
|
|
21586
|
+
var CollectionContentEntityDraggable = vdtReact.compose(styles$2B.withStyles(CollectionContentEntityStyles, {
|
|
21564
21587
|
name: 'VdtCollectionContentEntityDraggable'
|
|
21565
21588
|
}), withDrag)(CollectionContentEntityWrapper);
|
|
21566
21589
|
function CollectionContent(_ref3) {
|
|
@@ -21709,7 +21732,7 @@ function CollectionContent(_ref3) {
|
|
|
21709
21732
|
}));
|
|
21710
21733
|
}
|
|
21711
21734
|
|
|
21712
|
-
var Component$x = styles$
|
|
21735
|
+
var Component$x = styles$2B.withStyles(styles$1q, {
|
|
21713
21736
|
name: 'VdtCollectionContent'
|
|
21714
21737
|
})(CollectionContent);
|
|
21715
21738
|
Component$x.displayName = 'CollectionContent';
|
|
@@ -21911,7 +21934,7 @@ ItemParentsTab.defaultProps = {
|
|
|
21911
21934
|
var message = _ref5.message;
|
|
21912
21935
|
return console.error(message);
|
|
21913
21936
|
},
|
|
21914
|
-
CollectionListComponent: Component$
|
|
21937
|
+
CollectionListComponent: Component$D,
|
|
21915
21938
|
CollectionListProps: {},
|
|
21916
21939
|
collectionListType: {
|
|
21917
21940
|
collection: _toConsumableArray__default["default"](Array(3).keys()).map(function (id) {
|
|
@@ -21921,7 +21944,7 @@ ItemParentsTab.defaultProps = {
|
|
|
21921
21944
|
})
|
|
21922
21945
|
}
|
|
21923
21946
|
};
|
|
21924
|
-
var ItemParentsTab$1 = styles$
|
|
21947
|
+
var ItemParentsTab$1 = styles$2B.withStyles(styles$1p, {
|
|
21925
21948
|
name: 'VdtItemParentsTab'
|
|
21926
21949
|
})(ItemParentsTab);
|
|
21927
21950
|
|
|
@@ -22048,7 +22071,7 @@ function PaginationWrapper(props) {
|
|
|
22048
22071
|
|
|
22049
22072
|
function SearchInputWrapper(props) {
|
|
22050
22073
|
var isLoading = props.isLoading;
|
|
22051
|
-
return /*#__PURE__*/React__default["default"].createElement(Component$
|
|
22074
|
+
return /*#__PURE__*/React__default["default"].createElement(Component$B, _extends__default["default"]({
|
|
22052
22075
|
submitting: isLoading
|
|
22053
22076
|
}, props));
|
|
22054
22077
|
}
|
|
@@ -22154,7 +22177,7 @@ function ItemSearchPicker(_ref) {
|
|
|
22154
22177
|
}, PaginationProps)));
|
|
22155
22178
|
}
|
|
22156
22179
|
|
|
22157
|
-
var ItemSearchPicker$1 = styles$
|
|
22180
|
+
var ItemSearchPicker$1 = styles$2B.withStyles({}, {
|
|
22158
22181
|
name: 'VdtItemSearchPicker'
|
|
22159
22182
|
})(ItemSearchPicker);
|
|
22160
22183
|
|
|
@@ -22279,7 +22302,7 @@ AddRelationDialog.defaultProps = {
|
|
|
22279
22302
|
open: false,
|
|
22280
22303
|
setOpenDialog: function setOpenDialog() {}
|
|
22281
22304
|
};
|
|
22282
|
-
var AddRelationDialog$1 = styles$
|
|
22305
|
+
var AddRelationDialog$1 = styles$2B.withStyles({}, {
|
|
22283
22306
|
name: 'VdtAddRelationDialog'
|
|
22284
22307
|
})(AddRelationDialog);
|
|
22285
22308
|
|
|
@@ -22410,7 +22433,7 @@ ItemListItem.defaultProps = {
|
|
|
22410
22433
|
onClick: undefined,
|
|
22411
22434
|
ActionComponent: undefined,
|
|
22412
22435
|
ActionProps: {},
|
|
22413
|
-
AvatarComponent: Component$
|
|
22436
|
+
AvatarComponent: Component$N,
|
|
22414
22437
|
AvatarProps: {},
|
|
22415
22438
|
ListItemProps: {},
|
|
22416
22439
|
ListItemAvatarProps: {},
|
|
@@ -22422,7 +22445,7 @@ ItemListItem.defaultProps = {
|
|
|
22422
22445
|
skeleton: false
|
|
22423
22446
|
};
|
|
22424
22447
|
|
|
22425
|
-
var Component$w = styles$
|
|
22448
|
+
var Component$w = styles$2B.withStyles(styles$1o, {
|
|
22426
22449
|
name: 'VdtItemListItem'
|
|
22427
22450
|
})(ItemListItem);
|
|
22428
22451
|
Component$w.displayName = 'ItemListItem';
|
|
@@ -22467,7 +22490,7 @@ ItemList.defaultProps = {
|
|
|
22467
22490
|
ItemListItemProps: {}
|
|
22468
22491
|
};
|
|
22469
22492
|
|
|
22470
|
-
var Component$v = styles$
|
|
22493
|
+
var Component$v = styles$2B.withStyles(styles$1n, {
|
|
22471
22494
|
name: 'VdtItemList'
|
|
22472
22495
|
})(ItemList);
|
|
22473
22496
|
Component$v.displayName = 'ItemList';
|
|
@@ -22533,7 +22556,7 @@ ItemRelationRemoveDialog.defaultProps = {
|
|
|
22533
22556
|
confirmText: 'Remove',
|
|
22534
22557
|
rejectText: 'Cancel'
|
|
22535
22558
|
};
|
|
22536
|
-
var ItemRelationRemoveDialog$1 = styles$
|
|
22559
|
+
var ItemRelationRemoveDialog$1 = styles$2B.withStyles({}, {
|
|
22537
22560
|
name: 'VdtItemRelationRemoveDialog'
|
|
22538
22561
|
})(ItemRelationRemoveDialog);
|
|
22539
22562
|
|
|
@@ -22789,7 +22812,7 @@ ItemRelationsTab.defaultProps = {
|
|
|
22789
22812
|
addText: 'Add new relation',
|
|
22790
22813
|
direction: 'A'
|
|
22791
22814
|
};
|
|
22792
|
-
var ItemRelationsTab$1 = styles$
|
|
22815
|
+
var ItemRelationsTab$1 = styles$2B.withStyles(styles$1m, {
|
|
22793
22816
|
name: 'VdtItemRelationsTab'
|
|
22794
22817
|
})(ItemRelationsTab);
|
|
22795
22818
|
|
|
@@ -22829,7 +22852,7 @@ var styles$1l = function styles(theme) {
|
|
|
22829
22852
|
};
|
|
22830
22853
|
};
|
|
22831
22854
|
|
|
22832
|
-
var Tab = styles$
|
|
22855
|
+
var Tab = styles$2B.withStyles(styles$1l, {
|
|
22833
22856
|
name: 'VdtItemTabTab'
|
|
22834
22857
|
})(Tab__default["default"]);
|
|
22835
22858
|
|
|
@@ -22862,7 +22885,7 @@ function TabPanel(_ref2) {
|
|
|
22862
22885
|
}, props));
|
|
22863
22886
|
}
|
|
22864
22887
|
|
|
22865
|
-
var TabPanel$1 = styles$
|
|
22888
|
+
var TabPanel$1 = styles$2B.withStyles(styles$1k, {
|
|
22866
22889
|
name: 'VdtItemTabTabPanel'
|
|
22867
22890
|
})(TabPanel);
|
|
22868
22891
|
|
|
@@ -22878,7 +22901,7 @@ var styles$1j = {
|
|
|
22878
22901
|
backgroundColor: 'unset'
|
|
22879
22902
|
}
|
|
22880
22903
|
};
|
|
22881
|
-
var Tabs = styles$
|
|
22904
|
+
var Tabs = styles$2B.withStyles(styles$1j, {
|
|
22882
22905
|
name: 'VdtItemTabTabs'
|
|
22883
22906
|
})(Tabs__default["default"]);
|
|
22884
22907
|
|
|
@@ -22967,7 +22990,7 @@ ItemTabs.defaultProps = {
|
|
|
22967
22990
|
tabs: []
|
|
22968
22991
|
};
|
|
22969
22992
|
|
|
22970
|
-
var Component$u = styles$
|
|
22993
|
+
var Component$u = styles$2B.withStyles(styles$1i, {
|
|
22971
22994
|
name: 'VdtItemTabs'
|
|
22972
22995
|
})(ItemTabs);
|
|
22973
22996
|
Component$u.displayName = 'ItemTabs';
|
|
@@ -23071,7 +23094,7 @@ ItemCard.defaultProps = {
|
|
|
23071
23094
|
arrayOnSingle: false,
|
|
23072
23095
|
flat: true
|
|
23073
23096
|
},
|
|
23074
|
-
MediaCardComponent: Component$
|
|
23097
|
+
MediaCardComponent: Component$M,
|
|
23075
23098
|
titleSelector: function titleSelector() {
|
|
23076
23099
|
var parsedMetadata = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
23077
23100
|
return parsedMetadata.title;
|
|
@@ -23162,7 +23185,7 @@ function ItemCardClone(_ref) {
|
|
|
23162
23185
|
}), /*#__PURE__*/React__default["default"].createElement(ItemCardComponent, _extends__default["default"]({}, props, {
|
|
23163
23186
|
itemId: itemType.id,
|
|
23164
23187
|
itemType: itemType,
|
|
23165
|
-
MediaCardComponent: Component$
|
|
23188
|
+
MediaCardComponent: Component$M,
|
|
23166
23189
|
ThumbnailComponent: null
|
|
23167
23190
|
})));
|
|
23168
23191
|
}
|
|
@@ -23491,7 +23514,7 @@ ItemSidecarDownload$1.defaultProps = {
|
|
|
23491
23514
|
ItemSidecarDownloadListItemProps: {}
|
|
23492
23515
|
};
|
|
23493
23516
|
|
|
23494
|
-
var ItemSidecarDownload = styles$
|
|
23517
|
+
var ItemSidecarDownload = styles$2B.withStyles(styles$1h, {
|
|
23495
23518
|
name: 'VdtItemSidecarDownload'
|
|
23496
23519
|
})(ItemSidecarDownload$1);
|
|
23497
23520
|
|
|
@@ -24077,7 +24100,7 @@ ItemSidecarUpload$1.defaultProps = {
|
|
|
24077
24100
|
ItemSidecarUploadActionsProps: {}
|
|
24078
24101
|
};
|
|
24079
24102
|
|
|
24080
|
-
var ItemSidecarUpload = styles$
|
|
24103
|
+
var ItemSidecarUpload = styles$2B.withStyles(styles$1g, {
|
|
24081
24104
|
name: 'VdtItemSidecarUpload'
|
|
24082
24105
|
})(ItemSidecarUpload$1);
|
|
24083
24106
|
|
|
@@ -24212,7 +24235,7 @@ ItemSidecarDialog.defaultProps = {
|
|
|
24212
24235
|
ItemSidecarUploadProps: {}
|
|
24213
24236
|
};
|
|
24214
24237
|
|
|
24215
|
-
var Component$t = styles$
|
|
24238
|
+
var Component$t = styles$2B.withStyles(styles$1f, {
|
|
24216
24239
|
name: 'VdtItemSidecarDialog'
|
|
24217
24240
|
})(ItemSidecarDialog);
|
|
24218
24241
|
Component$t.displayName = 'ItemSidecarDialog';
|
|
@@ -24735,7 +24758,7 @@ function ItemCompoundMetadataTable(_ref) {
|
|
|
24735
24758
|
}, "Save")));
|
|
24736
24759
|
}
|
|
24737
24760
|
|
|
24738
|
-
var ItemCompoundMetadataTable$1 = styles$
|
|
24761
|
+
var ItemCompoundMetadataTable$1 = styles$2B.withStyles(styles$1d, {
|
|
24739
24762
|
name: 'VdtItemCompoundMetadataTable'
|
|
24740
24763
|
})(ItemCompoundMetadataTable);
|
|
24741
24764
|
|
|
@@ -24812,7 +24835,7 @@ function ItemCompoundMetadataTab(_ref) {
|
|
|
24812
24835
|
}))));
|
|
24813
24836
|
}
|
|
24814
24837
|
|
|
24815
|
-
var ItemCompoundMetadataTab$1 = styles$
|
|
24838
|
+
var ItemCompoundMetadataTab$1 = styles$2B.withStyles({}, {
|
|
24816
24839
|
name: 'VdtItemCompoundMetadataTab'
|
|
24817
24840
|
})(ItemCompoundMetadataTab);
|
|
24818
24841
|
|
|
@@ -24861,7 +24884,7 @@ function ItemAudioPlayer(_ref) {
|
|
|
24861
24884
|
}, audioPlayerProps))));
|
|
24862
24885
|
}
|
|
24863
24886
|
|
|
24864
|
-
var ItemAudioPlayer$1 = styles$
|
|
24887
|
+
var ItemAudioPlayer$1 = styles$2B.withStyles(styles$1c, {
|
|
24865
24888
|
name: 'VdtItemAudioPlayer'
|
|
24866
24889
|
})(ItemAudioPlayer);
|
|
24867
24890
|
|
|
@@ -24929,7 +24952,7 @@ function ItemPdfViewer(_ref) {
|
|
|
24929
24952
|
});
|
|
24930
24953
|
}
|
|
24931
24954
|
|
|
24932
|
-
var ItemPdfViewer$1 = styles$
|
|
24955
|
+
var ItemPdfViewer$1 = styles$2B.withStyles(styles$1b, {
|
|
24933
24956
|
name: 'VdtItemPdfViewer'
|
|
24934
24957
|
})(ItemPdfViewer);
|
|
24935
24958
|
|
|
@@ -24985,7 +25008,7 @@ function ItemImagePlayer(_ref) {
|
|
|
24985
25008
|
}));
|
|
24986
25009
|
}
|
|
24987
25010
|
|
|
24988
|
-
var ItemImagePlayer$1 = styles$
|
|
25011
|
+
var ItemImagePlayer$1 = styles$2B.withStyles(styles$1a, {
|
|
24989
25012
|
name: 'VdtItemImagePlayer'
|
|
24990
25013
|
})(ItemImagePlayer);
|
|
24991
25014
|
|
|
@@ -25127,7 +25150,7 @@ function ItemVideoPlayer(_ref) {
|
|
|
25127
25150
|
}, videoPlayerProps)))));
|
|
25128
25151
|
}
|
|
25129
25152
|
|
|
25130
|
-
var ItemVideoPlayer$1 = styles$
|
|
25153
|
+
var ItemVideoPlayer$1 = styles$2B.withStyles(styles$19, {
|
|
25131
25154
|
name: 'VdtItemVideoPlayer'
|
|
25132
25155
|
})(ItemVideoPlayer);
|
|
25133
25156
|
|
|
@@ -25162,7 +25185,7 @@ var defaultShapeToLabel = function defaultShapeToLabel(shape) {
|
|
|
25162
25185
|
return shape.tag;
|
|
25163
25186
|
};
|
|
25164
25187
|
|
|
25165
|
-
var SourceSelection = styles$
|
|
25188
|
+
var SourceSelection = styles$2B.withStyles({}, {
|
|
25166
25189
|
name: 'VdtSourceSelection'
|
|
25167
25190
|
})(function (_ref) {
|
|
25168
25191
|
var currentValue = _ref.value,
|
|
@@ -25365,7 +25388,7 @@ function ItemPlayer(_ref2) {
|
|
|
25365
25388
|
}, ItemVideoPlayerProps))));
|
|
25366
25389
|
}
|
|
25367
25390
|
|
|
25368
|
-
var Component$s = styles$
|
|
25391
|
+
var Component$s = styles$2B.withStyles(styles$18, {
|
|
25369
25392
|
name: 'VdtItemPlayer'
|
|
25370
25393
|
})(ItemPlayer);
|
|
25371
25394
|
Component$s.displayName = 'ItemPlayer';
|
|
@@ -25829,7 +25852,7 @@ function Editor(_ref) {
|
|
|
25829
25852
|
}, "Delete"))));
|
|
25830
25853
|
}
|
|
25831
25854
|
|
|
25832
|
-
var Editor$1 = styles$
|
|
25855
|
+
var Editor$1 = styles$2B.withStyles(styles$17, {
|
|
25833
25856
|
name: 'VdtFieldGroupEditor'
|
|
25834
25857
|
})(Editor);
|
|
25835
25858
|
|
|
@@ -25870,7 +25893,7 @@ function FieldIcon(_ref) {
|
|
|
25870
25893
|
}));
|
|
25871
25894
|
}
|
|
25872
25895
|
|
|
25873
|
-
var FieldIcon$1 = styles$
|
|
25896
|
+
var FieldIcon$1 = styles$2B.withStyles(styles$16, {
|
|
25874
25897
|
name: 'VdtFieldGroupIcon'
|
|
25875
25898
|
})(FieldIcon);
|
|
25876
25899
|
|
|
@@ -25901,7 +25924,7 @@ var styles$15 = function styles(theme) {
|
|
|
25901
25924
|
height: '40px'
|
|
25902
25925
|
},
|
|
25903
25926
|
activeItem: {
|
|
25904
|
-
backgroundColor: styles$
|
|
25927
|
+
backgroundColor: styles$2B.emphasize(theme.palette.background.paper, 0.1),
|
|
25905
25928
|
boxSizing: 'border-box',
|
|
25906
25929
|
fontSize: '14px',
|
|
25907
25930
|
userSelect: 'none',
|
|
@@ -26012,7 +26035,7 @@ function MyField(_ref2) {
|
|
|
26012
26035
|
})));
|
|
26013
26036
|
}
|
|
26014
26037
|
|
|
26015
|
-
var MyField$1 = styles$
|
|
26038
|
+
var MyField$1 = styles$2B.withStyles(styles$15, {
|
|
26016
26039
|
name: 'VdtFieldGroupMyField'
|
|
26017
26040
|
})(MyField);
|
|
26018
26041
|
|
|
@@ -26066,7 +26089,7 @@ function MyFieldList(_ref) {
|
|
|
26066
26089
|
});
|
|
26067
26090
|
}
|
|
26068
26091
|
|
|
26069
|
-
var MyFieldList$1 = styles$
|
|
26092
|
+
var MyFieldList$1 = styles$2B.withStyles(styles$14, {
|
|
26070
26093
|
name: 'VdtFieldGroupMyFieldList'
|
|
26071
26094
|
})(MyFieldList);
|
|
26072
26095
|
|
|
@@ -26836,7 +26859,7 @@ function FieldGroupDesigner(_ref2) {
|
|
|
26836
26859
|
}, "Add"))));
|
|
26837
26860
|
}
|
|
26838
26861
|
|
|
26839
|
-
var FieldGroupDesigner$1 = styles$
|
|
26862
|
+
var FieldGroupDesigner$1 = styles$2B.withStyles(styles$13, {
|
|
26840
26863
|
name: 'VdtFieldGroupDesigner'
|
|
26841
26864
|
})(FieldGroupDesigner);
|
|
26842
26865
|
|
|
@@ -26854,7 +26877,7 @@ var FILE = 'FILE';
|
|
|
26854
26877
|
var PREFIX = 'PREFIX';
|
|
26855
26878
|
var LOAD_MORE = 'LOAD_MORE';
|
|
26856
26879
|
var JOIN_CHARACTER = '_';
|
|
26857
|
-
var SelectedFile = styles$
|
|
26880
|
+
var SelectedFile = styles$2B.withStyles({}, {
|
|
26858
26881
|
name: 'VdtSelectedFile'
|
|
26859
26882
|
})(function (_ref) {
|
|
26860
26883
|
var _ref$className = _ref.className,
|
|
@@ -26918,7 +26941,7 @@ function SelectedFileWrapper(_ref2) {
|
|
|
26918
26941
|
fileId: fileType.id
|
|
26919
26942
|
}, props)) : null;
|
|
26920
26943
|
}
|
|
26921
|
-
var SelectedStorage = styles$
|
|
26944
|
+
var SelectedStorage = styles$2B.withStyles({}, {
|
|
26922
26945
|
name: 'VdtSelectedStorage'
|
|
26923
26946
|
})(function (_ref4) {
|
|
26924
26947
|
var _ref4$className = _ref4.className,
|
|
@@ -27173,7 +27196,7 @@ function FolderListTree(_ref11) {
|
|
|
27173
27196
|
onListFilesMore: onListFilesMore
|
|
27174
27197
|
}, FolderTreeProps));
|
|
27175
27198
|
}
|
|
27176
|
-
var StorageTree = styles$
|
|
27199
|
+
var StorageTree = styles$2B.withStyles({}, {
|
|
27177
27200
|
name: 'VdtStorageTree'
|
|
27178
27201
|
})(function (_ref14) {
|
|
27179
27202
|
var _ref14$className = _ref14.className,
|
|
@@ -27441,7 +27464,7 @@ function SearchSuggestions(_ref) {
|
|
|
27441
27464
|
}))) : null;
|
|
27442
27465
|
}
|
|
27443
27466
|
|
|
27444
|
-
var SearchSuggestions$1 = styles$
|
|
27467
|
+
var SearchSuggestions$1 = styles$2B.withStyles(styles$12, {
|
|
27445
27468
|
name: 'VdtSearchSuggestions'
|
|
27446
27469
|
})(SearchSuggestions);
|
|
27447
27470
|
|
|
@@ -27650,7 +27673,7 @@ function ShareSearch(_ref) {
|
|
|
27650
27673
|
}, props));
|
|
27651
27674
|
}
|
|
27652
27675
|
|
|
27653
|
-
var ShareSearch$1 = styles$
|
|
27676
|
+
var ShareSearch$1 = styles$2B.withStyles(styles$11, {
|
|
27654
27677
|
name: 'VdtShareSearch'
|
|
27655
27678
|
})(ShareSearch);
|
|
27656
27679
|
|
|
@@ -27809,7 +27832,11 @@ function SavedSearchRow(_ref) {
|
|
|
27809
27832
|
setAnchorEl(e.currentTarget);
|
|
27810
27833
|
};
|
|
27811
27834
|
|
|
27812
|
-
var handleMenuAction = function handleMenuAction(
|
|
27835
|
+
var handleMenuAction = function handleMenuAction() {
|
|
27836
|
+
var action = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : function () {
|
|
27837
|
+
return null;
|
|
27838
|
+
};
|
|
27839
|
+
var fieldType = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
|
27813
27840
|
return function (e) {
|
|
27814
27841
|
if (e.stopPropagation) e.stopPropagation();
|
|
27815
27842
|
setAnchorEl(null);
|
|
@@ -28004,7 +28031,7 @@ function SavedSearchRow(_ref) {
|
|
|
28004
28031
|
}, ListAccessProps)))));
|
|
28005
28032
|
}
|
|
28006
28033
|
|
|
28007
|
-
var SavedSearchRow$1 = styles$
|
|
28034
|
+
var SavedSearchRow$1 = styles$2B.withStyles(styles$10, {
|
|
28008
28035
|
name: 'VdtSavedSearchRow'
|
|
28009
28036
|
})(SavedSearchRow);
|
|
28010
28037
|
|
|
@@ -28025,7 +28052,7 @@ function SavedSearchList(_ref) {
|
|
|
28025
28052
|
accessTranslate = _ref.accessTranslate,
|
|
28026
28053
|
props = _objectWithoutProperties__default["default"](_ref, _excluded$t);
|
|
28027
28054
|
|
|
28028
|
-
return /*#__PURE__*/React__default["default"].createElement(
|
|
28055
|
+
return /*#__PURE__*/React__default["default"].createElement(Component$A, _extends__default["default"]({
|
|
28029
28056
|
searchProps: searchProps,
|
|
28030
28057
|
searchPlaceholder: searchPlaceholderText // TODO: Extract CollectionTableComponent to separate component to describe it's interface in a story
|
|
28031
28058
|
// eslint-disable-next-line react/no-unstable-nested-components
|
|
@@ -28063,7 +28090,7 @@ function SavedSearchList(_ref) {
|
|
|
28063
28090
|
}, props));
|
|
28064
28091
|
}
|
|
28065
28092
|
|
|
28066
|
-
var SavedSearchList$1 = styles$
|
|
28093
|
+
var SavedSearchList$1 = styles$2B.withStyles(styles$$, {
|
|
28067
28094
|
name: 'VdtSavedSearchList'
|
|
28068
28095
|
})(SavedSearchList);
|
|
28069
28096
|
|
|
@@ -28135,7 +28162,7 @@ function SaveSearchForm(_ref) {
|
|
|
28135
28162
|
}, saveText));
|
|
28136
28163
|
}
|
|
28137
28164
|
|
|
28138
|
-
var SaveSearchForm$1 = styles$
|
|
28165
|
+
var SaveSearchForm$1 = styles$2B.withStyles(styles$_, {
|
|
28139
28166
|
name: 'VdtSaveSearchForm'
|
|
28140
28167
|
})(SaveSearchForm);
|
|
28141
28168
|
|
|
@@ -28206,7 +28233,7 @@ function SavedSearch(_ref) {
|
|
|
28206
28233
|
}, SearchListProps)));
|
|
28207
28234
|
}
|
|
28208
28235
|
|
|
28209
|
-
var SavedSearch$1 = styles$
|
|
28236
|
+
var SavedSearch$1 = styles$2B.withStyles(styles$Z, {
|
|
28210
28237
|
name: 'VdtSavedSearchList'
|
|
28211
28238
|
})(SavedSearch);
|
|
28212
28239
|
|
|
@@ -28360,7 +28387,7 @@ SpellCheck.defaultProps = {
|
|
|
28360
28387
|
onClick: function onClick() {}
|
|
28361
28388
|
};
|
|
28362
28389
|
|
|
28363
|
-
var Component$r = styles$
|
|
28390
|
+
var Component$r = styles$2B.withStyles(styles$Y, {
|
|
28364
28391
|
name: 'VdtSpellCheck'
|
|
28365
28392
|
})(SpellCheck);
|
|
28366
28393
|
Component$r.displayName = 'SpellCheck';
|
|
@@ -28936,7 +28963,7 @@ SearchField.defaultProps = {
|
|
|
28936
28963
|
ProgressProps: {}
|
|
28937
28964
|
};
|
|
28938
28965
|
|
|
28939
|
-
var Component$q = styles$
|
|
28966
|
+
var Component$q = styles$2B.withStyles(styles$X, {
|
|
28940
28967
|
name: 'VdtSearchField'
|
|
28941
28968
|
})(SearchField);
|
|
28942
28969
|
Component$q.displayName = 'SearchField';
|
|
@@ -29124,7 +29151,7 @@ function FolderRowContent(_ref) {
|
|
|
29124
29151
|
}), children);
|
|
29125
29152
|
}
|
|
29126
29153
|
|
|
29127
|
-
var FolderRowContentWrapper = vdtReact.compose(styles$
|
|
29154
|
+
var FolderRowContentWrapper = vdtReact.compose(styles$2B.withStyles(folderRowContentStyles, {
|
|
29128
29155
|
name: 'VdtFolderRowContentWrapper'
|
|
29129
29156
|
}))(FolderRowContent);
|
|
29130
29157
|
|
|
@@ -29330,7 +29357,7 @@ function FolderRow(_ref2) {
|
|
|
29330
29357
|
}));
|
|
29331
29358
|
}
|
|
29332
29359
|
|
|
29333
|
-
var FolderRow$1 = styles$
|
|
29360
|
+
var FolderRow$1 = styles$2B.withStyles(styles$V, {
|
|
29334
29361
|
name: 'VdtFolderRow'
|
|
29335
29362
|
})(FolderRow);
|
|
29336
29363
|
|
|
@@ -29493,7 +29520,7 @@ QueryInput$1.defaultProps = {
|
|
|
29493
29520
|
autoCompleteHoc: function autoCompleteHoc() {}
|
|
29494
29521
|
};
|
|
29495
29522
|
|
|
29496
|
-
var QueryInput = styles$
|
|
29523
|
+
var QueryInput = styles$2B.withStyles(styles$U, {
|
|
29497
29524
|
name: 'VdtQueryInput'
|
|
29498
29525
|
})(QueryInput$1);
|
|
29499
29526
|
|
|
@@ -29583,7 +29610,7 @@ QueryBetween$1.defaultProps = {
|
|
|
29583
29610
|
InputComponent: QueryInput
|
|
29584
29611
|
};
|
|
29585
29612
|
|
|
29586
|
-
var QueryBetween = styles$
|
|
29613
|
+
var QueryBetween = styles$2B.withStyles(styles$T, {
|
|
29587
29614
|
name: 'VdtQueryBetween'
|
|
29588
29615
|
})(QueryBetween$1);
|
|
29589
29616
|
|
|
@@ -29732,7 +29759,7 @@ QueryContains$1.defaultProps = {
|
|
|
29732
29759
|
InputComponent: QueryInput
|
|
29733
29760
|
};
|
|
29734
29761
|
|
|
29735
|
-
var QueryContains = styles$
|
|
29762
|
+
var QueryContains = styles$2B.withStyles(styles$S, {
|
|
29736
29763
|
name: 'VdtQueryContains'
|
|
29737
29764
|
})(QueryContains$1);
|
|
29738
29765
|
|
|
@@ -29801,7 +29828,7 @@ QueryEquals$1.defaultProps = {
|
|
|
29801
29828
|
InputComponent: QueryInput
|
|
29802
29829
|
};
|
|
29803
29830
|
|
|
29804
|
-
var QueryEquals = styles$
|
|
29831
|
+
var QueryEquals = styles$2B.withStyles(styles$R, {
|
|
29805
29832
|
name: 'VdtQueryEquals'
|
|
29806
29833
|
})(QueryEquals$1);
|
|
29807
29834
|
|
|
@@ -30148,7 +30175,7 @@ QueryField$1.defaultProps = {
|
|
|
30148
30175
|
PredicateComponentProps: {}
|
|
30149
30176
|
};
|
|
30150
30177
|
|
|
30151
|
-
var QueryField = styles$
|
|
30178
|
+
var QueryField = styles$2B.withStyles(styles$Q, {
|
|
30152
30179
|
name: 'VdtQueryField'
|
|
30153
30180
|
})(QueryField$1);
|
|
30154
30181
|
|
|
@@ -30329,7 +30356,7 @@ QueryGroup$1.defaultProps = {
|
|
|
30329
30356
|
}
|
|
30330
30357
|
};
|
|
30331
30358
|
|
|
30332
|
-
var QueryGroup = styles$
|
|
30359
|
+
var QueryGroup = styles$2B.withStyles(styles$P, {
|
|
30333
30360
|
name: 'VdtQueryGroup'
|
|
30334
30361
|
})(QueryGroup$1);
|
|
30335
30362
|
|
|
@@ -30508,7 +30535,7 @@ QueryOperator$1.defaultProps = {
|
|
|
30508
30535
|
onChangeOperation: undefined
|
|
30509
30536
|
};
|
|
30510
30537
|
|
|
30511
|
-
var QueryOperator = styles$
|
|
30538
|
+
var QueryOperator = styles$2B.withStyles(styles$O, {
|
|
30512
30539
|
name: 'VdtQueryOperator'
|
|
30513
30540
|
})(QueryOperator$1);
|
|
30514
30541
|
|
|
@@ -30527,8 +30554,8 @@ var styles$N = function styles(theme) {
|
|
|
30527
30554
|
},
|
|
30528
30555
|
queryGroup: {
|
|
30529
30556
|
position: 'relative',
|
|
30530
|
-
border: "1px solid ".concat(styles$
|
|
30531
|
-
backgroundColor: styles$
|
|
30557
|
+
border: "1px solid ".concat(styles$2B.alpha(theme.palette.text.primary, 0.05)),
|
|
30558
|
+
backgroundColor: styles$2B.alpha(theme.palette.text.primary, 0.02),
|
|
30532
30559
|
borderRadius: '4px',
|
|
30533
30560
|
margin: '1rem 1rem 1rem 0',
|
|
30534
30561
|
'& .MuiTreeItem-iconContainer': {
|
|
@@ -30781,7 +30808,7 @@ QueryEntry$1.defaultProps = {
|
|
|
30781
30808
|
onRemove: undefined
|
|
30782
30809
|
};
|
|
30783
30810
|
|
|
30784
|
-
var QueryEntry = styles$
|
|
30811
|
+
var QueryEntry = styles$2B.withStyles(styles$N, {
|
|
30785
30812
|
name: 'VdtQueryEntry'
|
|
30786
30813
|
})(QueryEntry$1);
|
|
30787
30814
|
|
|
@@ -30981,7 +31008,7 @@ QueryBuilder.defaultProps = {
|
|
|
30981
31008
|
QueryEntryProps: {}
|
|
30982
31009
|
};
|
|
30983
31010
|
|
|
30984
|
-
var Component$p = styles$
|
|
31011
|
+
var Component$p = styles$2B.withStyles(styles$M, {
|
|
30985
31012
|
name: 'VdtQueryBuilder'
|
|
30986
31013
|
})(QueryBuilder);
|
|
30987
31014
|
Component$p.displayName = 'QueryBuilder';
|
|
@@ -31108,7 +31135,7 @@ QueryBuilderCard.defaultProps = {
|
|
|
31108
31135
|
searchButtonProps: {}
|
|
31109
31136
|
};
|
|
31110
31137
|
|
|
31111
|
-
var Component$o = styles$
|
|
31138
|
+
var Component$o = styles$2B.withStyles(styles$L, {
|
|
31112
31139
|
name: 'VdtQueryBuilderCard'
|
|
31113
31140
|
})(QueryBuilderCard);
|
|
31114
31141
|
Component$o.displayName = 'QueryBuilderCard';
|
|
@@ -31122,7 +31149,7 @@ function ownKeys$9(object, enumerableOnly) { var keys = Object.keys(object); if
|
|
|
31122
31149
|
function _objectSpread$9(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$9(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$9(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
31123
31150
|
var ITEM$2 = 'item';
|
|
31124
31151
|
var COLLECTION$2 = 'collection';
|
|
31125
|
-
var defaultEntityComponents = (_defaultEntityCompone = {}, _defineProperty__default["default"](_defaultEntityCompone, ITEM$2, ItemCard), _defineProperty__default["default"](_defaultEntityCompone, COLLECTION$2, Component$
|
|
31152
|
+
var defaultEntityComponents = (_defaultEntityCompone = {}, _defineProperty__default["default"](_defaultEntityCompone, ITEM$2, ItemCard), _defineProperty__default["default"](_defaultEntityCompone, COLLECTION$2, Component$L), _defaultEntityCompone);
|
|
31126
31153
|
function EntityCard(_ref) {
|
|
31127
31154
|
var entityType = _ref.entityType,
|
|
31128
31155
|
entity = _ref.entity,
|
|
@@ -31155,7 +31182,7 @@ function EntityGridItem(_ref) {
|
|
|
31155
31182
|
entity = _ref.entity,
|
|
31156
31183
|
index = _ref.index,
|
|
31157
31184
|
_ref$CollectionCardCo = _ref.CollectionCardComponent,
|
|
31158
|
-
CollectionCardComponent = _ref$CollectionCardCo === void 0 ? Component$
|
|
31185
|
+
CollectionCardComponent = _ref$CollectionCardCo === void 0 ? Component$L : _ref$CollectionCardCo,
|
|
31159
31186
|
_ref$ItemCardComponen = _ref.ItemCardComponent,
|
|
31160
31187
|
ItemCardComponent = _ref$ItemCardComponen === void 0 ? ItemCard : _ref$ItemCardComponen,
|
|
31161
31188
|
_ref$CollectionCardPr = _ref.CollectionCardProps,
|
|
@@ -31215,7 +31242,7 @@ function EntityGrid(_ref) {
|
|
|
31215
31242
|
_ref$EntityGridItemCo = _ref.EntityGridItemComponent,
|
|
31216
31243
|
EntityGridItemComponent = _ref$EntityGridItemCo === void 0 ? EntityGridItemDraggable$1 : _ref$EntityGridItemCo,
|
|
31217
31244
|
_ref$CollectionCardCo = _ref.CollectionCardComponent,
|
|
31218
|
-
CollectionCardComponent = _ref$CollectionCardCo === void 0 ? Component$
|
|
31245
|
+
CollectionCardComponent = _ref$CollectionCardCo === void 0 ? Component$L : _ref$CollectionCardCo,
|
|
31219
31246
|
_ref$ItemCardComponen = _ref.ItemCardComponent,
|
|
31220
31247
|
ItemCardComponent = _ref$ItemCardComponen === void 0 ? ItemCard : _ref$ItemCardComponen,
|
|
31221
31248
|
_ref$CollectionCardPr = _ref.CollectionCardProps,
|
|
@@ -31267,7 +31294,7 @@ function EntityTableRow(_ref) {
|
|
|
31267
31294
|
|
|
31268
31295
|
var isCollection = entityType === 'COLLECTION';
|
|
31269
31296
|
var isItem = entityType === 'ITEM';
|
|
31270
|
-
return /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, isCollection && /*#__PURE__*/React__default["default"].createElement(Component$
|
|
31297
|
+
return /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, isCollection && /*#__PURE__*/React__default["default"].createElement(Component$H, _extends__default["default"]({
|
|
31271
31298
|
collectionId: entityId,
|
|
31272
31299
|
collectionType: entity,
|
|
31273
31300
|
options: collectionOptions,
|
|
@@ -31564,7 +31591,7 @@ EntityDeleteDialog.defaultProps = {
|
|
|
31564
31591
|
'noauth-url': true
|
|
31565
31592
|
},
|
|
31566
31593
|
DialogProps: {},
|
|
31567
|
-
CollectionCardComponent: Component$
|
|
31594
|
+
CollectionCardComponent: Component$L,
|
|
31568
31595
|
CollectionCardProps: {},
|
|
31569
31596
|
ItemCardComponent: ItemCard,
|
|
31570
31597
|
ItemCardProps: {},
|
|
@@ -31572,7 +31599,7 @@ EntityDeleteDialog.defaultProps = {
|
|
|
31572
31599
|
classes: {}
|
|
31573
31600
|
};
|
|
31574
31601
|
|
|
31575
|
-
var Component$n = styles$
|
|
31602
|
+
var Component$n = styles$2B.withStyles(styles$I, {
|
|
31576
31603
|
name: 'VdtEntityDeleteDialog'
|
|
31577
31604
|
})(EntityDeleteDialog);
|
|
31578
31605
|
Component$n.displayName = 'EntityDeleteDialog';
|
|
@@ -31878,7 +31905,7 @@ function EntityCommentCard(_ref) {
|
|
|
31878
31905
|
})))));
|
|
31879
31906
|
}
|
|
31880
31907
|
|
|
31881
|
-
var EntityCommentCard$1 = styles$
|
|
31908
|
+
var EntityCommentCard$1 = styles$2B.withStyles(styles$H, {
|
|
31882
31909
|
name: 'VdtEntityCommentCard'
|
|
31883
31910
|
})(EntityCommentCard);
|
|
31884
31911
|
EntityCommentCard.propTypes = {
|
|
@@ -32061,7 +32088,7 @@ function EntityComment(_ref) {
|
|
|
32061
32088
|
}) : null));
|
|
32062
32089
|
}
|
|
32063
32090
|
|
|
32064
|
-
var EntityComment$1 = styles$
|
|
32091
|
+
var EntityComment$1 = styles$2B.withStyles(styles$G, {
|
|
32065
32092
|
name: 'VdtEntityComment'
|
|
32066
32093
|
})(EntityComment);
|
|
32067
32094
|
EntityComment.propTypes = {
|
|
@@ -32220,13 +32247,13 @@ var binContentDroppableStyles = function binContentDroppableStyles(theme) {
|
|
|
32220
32247
|
canDrop: {
|
|
32221
32248
|
boxShadow: "inset 0px 0px 1px 1px ".concat(theme.palette.primary.main),
|
|
32222
32249
|
'&.VdtDroppable-isOver': {
|
|
32223
|
-
backgroundColor: styles$
|
|
32250
|
+
backgroundColor: styles$2B.emphasize(theme.palette.background.paper, 0.05)
|
|
32224
32251
|
}
|
|
32225
32252
|
}
|
|
32226
32253
|
};
|
|
32227
32254
|
};
|
|
32228
32255
|
|
|
32229
|
-
var BinContentDroppable = vdtReact.compose(styles$
|
|
32256
|
+
var BinContentDroppable = vdtReact.compose(styles$2B.withStyles(binContentDroppableStyles, {
|
|
32230
32257
|
name: 'VdtBinContentDroppable'
|
|
32231
32258
|
}), withDrop)(BinContent);
|
|
32232
32259
|
var entityCardDraggableStyles = {
|
|
@@ -32234,7 +32261,7 @@ var entityCardDraggableStyles = {
|
|
|
32234
32261
|
opacity: 0
|
|
32235
32262
|
}
|
|
32236
32263
|
};
|
|
32237
|
-
var EntityCardDraggable = vdtReact.compose(styles$
|
|
32264
|
+
var EntityCardDraggable = vdtReact.compose(styles$2B.withStyles(entityCardDraggableStyles, {
|
|
32238
32265
|
name: 'VdtEntityCardDraggable'
|
|
32239
32266
|
}), withDrag)(EntityCard);
|
|
32240
32267
|
var styles$E = {
|
|
@@ -32475,12 +32502,12 @@ BinList.defaultProps = {
|
|
|
32475
32502
|
BinProps: {}
|
|
32476
32503
|
};
|
|
32477
32504
|
|
|
32478
|
-
var Component$m = styles$
|
|
32505
|
+
var Component$m = styles$2B.withStyles(styles$E, {
|
|
32479
32506
|
name: 'VdtBinList'
|
|
32480
32507
|
})(BinList);
|
|
32481
32508
|
Component$m.displayName = 'BinList';
|
|
32482
32509
|
|
|
32483
|
-
var Component$l = styles$
|
|
32510
|
+
var Component$l = styles$2B.withStyles(styles$F, {
|
|
32484
32511
|
name: 'VdtBinListMenu'
|
|
32485
32512
|
})(BinListMenu);
|
|
32486
32513
|
Component$l.displayName = 'BinListMenu';
|
|
@@ -32580,7 +32607,7 @@ function EntityTreeList(_ref3) {
|
|
|
32580
32607
|
return null;
|
|
32581
32608
|
} : _ref3$onAdjustHits,
|
|
32582
32609
|
_ref3$CollectionListC = _ref3.CollectionListComponent,
|
|
32583
|
-
CollectionListComponent = _ref3$CollectionListC === void 0 ? Component$
|
|
32610
|
+
CollectionListComponent = _ref3$CollectionListC === void 0 ? Component$F : _ref3$CollectionListC,
|
|
32584
32611
|
_ref3$ItemComponent = _ref3.ItemComponent,
|
|
32585
32612
|
ItemComponent = _ref3$ItemComponent === void 0 ? ItemTreeItem$1 : _ref3$ItemComponent,
|
|
32586
32613
|
_ref3$LoadMoreCompone = _ref3.LoadMoreComponent,
|
|
@@ -33022,7 +33049,7 @@ function SplitButton(_ref) {
|
|
|
33022
33049
|
}))))));
|
|
33023
33050
|
}
|
|
33024
33051
|
|
|
33025
|
-
var SplitButton$1 = styles$
|
|
33052
|
+
var SplitButton$1 = styles$2B.withStyles({}, {
|
|
33026
33053
|
name: 'VdtSplitButton'
|
|
33027
33054
|
})(SplitButton);
|
|
33028
33055
|
|
|
@@ -33239,7 +33266,7 @@ function UploadForm(_ref) {
|
|
|
33239
33266
|
})));
|
|
33240
33267
|
}
|
|
33241
33268
|
|
|
33242
|
-
var UploadForm$1 = styles$
|
|
33269
|
+
var UploadForm$1 = styles$2B.withStyles(styles$C, {
|
|
33243
33270
|
name: 'VdtUploadForm'
|
|
33244
33271
|
})(UploadForm);
|
|
33245
33272
|
|
|
@@ -33304,7 +33331,7 @@ function UploadEditor(_ref) {
|
|
|
33304
33331
|
}, UploadFormProps))));
|
|
33305
33332
|
}
|
|
33306
33333
|
|
|
33307
|
-
var UploadEditor$1 = styles$
|
|
33334
|
+
var UploadEditor$1 = styles$2B.withStyles(styles$B, {
|
|
33308
33335
|
name: 'VdtUploadEditor'
|
|
33309
33336
|
})(UploadEditor);
|
|
33310
33337
|
|
|
@@ -33336,7 +33363,7 @@ var styles$A = function styles(theme) {
|
|
|
33336
33363
|
'&:not(:first-of-type)': {
|
|
33337
33364
|
marginTop: theme.spacing(0.5)
|
|
33338
33365
|
},
|
|
33339
|
-
backgroundColor: styles$
|
|
33366
|
+
backgroundColor: styles$2B.emphasize(theme.palette.background.paper, 0.05),
|
|
33340
33367
|
'&:hover $fileListItemSecondaryAction': {
|
|
33341
33368
|
visibility: 'visible'
|
|
33342
33369
|
},
|
|
@@ -33352,7 +33379,7 @@ var styles$A = function styles(theme) {
|
|
|
33352
33379
|
},
|
|
33353
33380
|
fileListItemContainerHover: {
|
|
33354
33381
|
'&:hover': {
|
|
33355
|
-
backgroundColor: styles$
|
|
33382
|
+
backgroundColor: styles$2B.emphasize(theme.palette.background.paper, 0.1)
|
|
33356
33383
|
}
|
|
33357
33384
|
},
|
|
33358
33385
|
successIcon: {
|
|
@@ -33421,7 +33448,7 @@ function UploadListItem(_ref) {
|
|
|
33421
33448
|
_ref$DeleteIcon = _ref.DeleteIcon,
|
|
33422
33449
|
DeleteIcon = _ref$DeleteIcon === void 0 ? DeleteIcon__default["default"] : _ref$DeleteIcon,
|
|
33423
33450
|
_ref$MimeTypeAvatarIc = _ref.MimeTypeAvatarIcon,
|
|
33424
|
-
MimeTypeAvatarIcon = _ref$MimeTypeAvatarIc === void 0 ? Component$
|
|
33451
|
+
MimeTypeAvatarIcon = _ref$MimeTypeAvatarIc === void 0 ? Component$O : _ref$MimeTypeAvatarIc;
|
|
33425
33452
|
var mimeType = file.type,
|
|
33426
33453
|
size = file.size,
|
|
33427
33454
|
name = file.name,
|
|
@@ -33504,7 +33531,7 @@ function UploadListItem(_ref) {
|
|
|
33504
33531
|
}, /*#__PURE__*/React__default["default"].createElement(DeleteIcon, null))));
|
|
33505
33532
|
}
|
|
33506
33533
|
|
|
33507
|
-
var UploadListItem$1 = styles$
|
|
33534
|
+
var UploadListItem$1 = styles$2B.withStyles(styles$A, {
|
|
33508
33535
|
name: 'VdtUploadListItem'
|
|
33509
33536
|
})(UploadListItem);
|
|
33510
33537
|
|
|
@@ -33597,7 +33624,7 @@ var styles$z = function styles(theme) {
|
|
|
33597
33624
|
marginBottom: theme.spacing(1)
|
|
33598
33625
|
},
|
|
33599
33626
|
editorOpen: {
|
|
33600
|
-
backgroundColor: styles$
|
|
33627
|
+
backgroundColor: styles$2B.emphasize(theme.palette.background.paper, 0.05)
|
|
33601
33628
|
},
|
|
33602
33629
|
isEditing: {
|
|
33603
33630
|
width: '50%'
|
|
@@ -33924,7 +33951,7 @@ function Upload(_ref4) {
|
|
|
33924
33951
|
}, UploadCollectionPickerProps))));
|
|
33925
33952
|
}
|
|
33926
33953
|
|
|
33927
|
-
var Upload$1 = styles$
|
|
33954
|
+
var Upload$1 = styles$2B.withStyles(styles$z, {
|
|
33928
33955
|
name: 'VdtUpload'
|
|
33929
33956
|
})(Upload);
|
|
33930
33957
|
|
|
@@ -33986,7 +34013,7 @@ function MediaCardExpand(_ref) {
|
|
|
33986
34013
|
})));
|
|
33987
34014
|
}
|
|
33988
34015
|
|
|
33989
|
-
var MediaCardExpand$1 = styles$
|
|
34016
|
+
var MediaCardExpand$1 = styles$2B.withStyles(styles$y, {
|
|
33990
34017
|
name: 'VdtMediaCardExpand'
|
|
33991
34018
|
})(MediaCardExpand);
|
|
33992
34019
|
|
|
@@ -34020,7 +34047,7 @@ function MediaCardFullWidthCard(_ref) {
|
|
|
34020
34047
|
}, props), children);
|
|
34021
34048
|
}
|
|
34022
34049
|
|
|
34023
|
-
var MediaCardFullWidthCard$1 = styles$
|
|
34050
|
+
var MediaCardFullWidthCard$1 = styles$2B.withStyles(styles$x, {
|
|
34024
34051
|
name: 'VdtMediaCardFullWidthCard'
|
|
34025
34052
|
})(MediaCardFullWidthCard);
|
|
34026
34053
|
|
|
@@ -34078,7 +34105,7 @@ function MediaCardFullWidthContent(_ref) {
|
|
|
34078
34105
|
}, TypographyProps), content)));
|
|
34079
34106
|
}
|
|
34080
34107
|
|
|
34081
|
-
var MediaCardFullWidthContent$1 = styles$
|
|
34108
|
+
var MediaCardFullWidthContent$1 = styles$2B.withStyles(styles$w, {
|
|
34082
34109
|
name: 'VdtMediaCardFullWidthContent'
|
|
34083
34110
|
})(MediaCardFullWidthContent);
|
|
34084
34111
|
|
|
@@ -34127,7 +34154,7 @@ function MediaCardFullWidthHeader(_ref) {
|
|
|
34127
34154
|
}, props));
|
|
34128
34155
|
}
|
|
34129
34156
|
|
|
34130
|
-
var MediaCardFullWidthHeader$1 = styles$
|
|
34157
|
+
var MediaCardFullWidthHeader$1 = styles$2B.withStyles(styles$v, {
|
|
34131
34158
|
name: 'MediaCardFullWidthHeader'
|
|
34132
34159
|
})(MediaCardFullWidthHeader);
|
|
34133
34160
|
|
|
@@ -34322,7 +34349,7 @@ MediaCardFullWidth.defaultProps = {
|
|
|
34322
34349
|
expandedContent: undefined,
|
|
34323
34350
|
CardComponent: MediaCardFullWidthCard$1,
|
|
34324
34351
|
HeaderComponent: MediaCardFullWidthHeader$1,
|
|
34325
|
-
ThumbnailComponent: Component$
|
|
34352
|
+
ThumbnailComponent: Component$P,
|
|
34326
34353
|
ContentComponent: MediaCardFullWidthContent$1,
|
|
34327
34354
|
ExpandComponent: MediaCardExpand$1,
|
|
34328
34355
|
ExpandedContentComponent: MediaCardFullWidthContent$1,
|
|
@@ -34336,7 +34363,7 @@ MediaCardFullWidth.defaultProps = {
|
|
|
34336
34363
|
ActionsProps: {}
|
|
34337
34364
|
};
|
|
34338
34365
|
|
|
34339
|
-
var Component$k = styles$
|
|
34366
|
+
var Component$k = styles$2B.withStyles(styles$u, {
|
|
34340
34367
|
name: 'VdtMediaCardFullWidth'
|
|
34341
34368
|
})(MediaCardFullWidth);
|
|
34342
34369
|
Component$k.displayName = 'MediaCardFullWidth';
|
|
@@ -34666,7 +34693,7 @@ ChangePasswordForm.defaultProps = {
|
|
|
34666
34693
|
noPwdTxt: 'No password set',
|
|
34667
34694
|
noUserTxt: 'Cannot determine username'
|
|
34668
34695
|
};
|
|
34669
|
-
var ChangePasswordForm$1 = styles$
|
|
34696
|
+
var ChangePasswordForm$1 = styles$2B.withStyles(styles$t, {
|
|
34670
34697
|
name: 'VdtChangePasswordForm'
|
|
34671
34698
|
})(ChangePasswordForm);
|
|
34672
34699
|
|
|
@@ -34716,7 +34743,7 @@ function ChangePasswordDialog(_ref) {
|
|
|
34716
34743
|
}, props))));
|
|
34717
34744
|
}
|
|
34718
34745
|
|
|
34719
|
-
var ChangePasswordDialog$1 = styles$
|
|
34746
|
+
var ChangePasswordDialog$1 = styles$2B.withStyles(styles$s, {
|
|
34720
34747
|
name: 'VdtChangePasswordDialog'
|
|
34721
34748
|
})(ChangePasswordDialog);
|
|
34722
34749
|
|
|
@@ -34746,7 +34773,7 @@ function UserRow(_ref) {
|
|
|
34746
34773
|
}));
|
|
34747
34774
|
}
|
|
34748
34775
|
|
|
34749
|
-
var UserRow$1 = styles$
|
|
34776
|
+
var UserRow$1 = styles$2B.withStyles({}, {
|
|
34750
34777
|
name: 'VdtUserRow'
|
|
34751
34778
|
})(UserRow);
|
|
34752
34779
|
|
|
@@ -34824,7 +34851,7 @@ UserTable.defaultProps = {
|
|
|
34824
34851
|
userColumnLabels: DEFAULT_COLUMN_LABELS
|
|
34825
34852
|
};
|
|
34826
34853
|
|
|
34827
|
-
var Component$j = styles$
|
|
34854
|
+
var Component$j = styles$2B.withStyles(styles$r, {
|
|
34828
34855
|
name: 'VdtUserTable'
|
|
34829
34856
|
})(UserTable);
|
|
34830
34857
|
Component$j.displayName = 'UserTable';
|
|
@@ -34840,7 +34867,7 @@ var styles$q = function styles(theme) {
|
|
|
34840
34867
|
visibility: 'hidden'
|
|
34841
34868
|
},
|
|
34842
34869
|
'&:hover': {
|
|
34843
|
-
backgroundColor: styles$
|
|
34870
|
+
backgroundColor: styles$2B.emphasize(theme.palette.background.paper, 0.1),
|
|
34844
34871
|
'& .MuiListItemSecondaryAction-root': {
|
|
34845
34872
|
visibility: 'visible'
|
|
34846
34873
|
}
|
|
@@ -35118,7 +35145,7 @@ GroupRelationList.defaultProps = {
|
|
|
35118
35145
|
addButtonText: 'Add'
|
|
35119
35146
|
};
|
|
35120
35147
|
|
|
35121
|
-
var Component$i = styles$
|
|
35148
|
+
var Component$i = styles$2B.withStyles(styles$q, {
|
|
35122
35149
|
name: 'VdtGroupRelationList'
|
|
35123
35150
|
})(GroupRelationList);
|
|
35124
35151
|
Component$i.displayName = 'GroupRelationList';
|
|
@@ -35176,7 +35203,7 @@ function UserData(_ref2) {
|
|
|
35176
35203
|
}))));
|
|
35177
35204
|
}
|
|
35178
35205
|
|
|
35179
|
-
var UserData$1 = styles$
|
|
35206
|
+
var UserData$1 = styles$2B.withStyles(styles$p, {
|
|
35180
35207
|
name: 'VdtUserData'
|
|
35181
35208
|
})(UserData);
|
|
35182
35209
|
|
|
@@ -35376,7 +35403,7 @@ UserDetails.defaultProps = {
|
|
|
35376
35403
|
lockedUsers: ['admin', 'vidinetviewer']
|
|
35377
35404
|
};
|
|
35378
35405
|
|
|
35379
|
-
var Component$h = styles$
|
|
35406
|
+
var Component$h = styles$2B.withStyles(styles$o, {
|
|
35380
35407
|
name: 'VdtUserDetails'
|
|
35381
35408
|
})(UserDetails);
|
|
35382
35409
|
Component$h.displayName = 'UserDetails';
|
|
@@ -35604,7 +35631,7 @@ CreateUserDialog$1.defaultProps = {
|
|
|
35604
35631
|
CreateUserFormProps: {}
|
|
35605
35632
|
};
|
|
35606
35633
|
|
|
35607
|
-
var Component$g = styles$
|
|
35634
|
+
var Component$g = styles$2B.withStyles(styles$m, {
|
|
35608
35635
|
name: 'VdtCreateUserDialog'
|
|
35609
35636
|
})(CreateUserDialog$1);
|
|
35610
35637
|
Component$g.displayName = 'CreateUserDialog';
|
|
@@ -35739,7 +35766,7 @@ EditUserDialog.defaultProps = {
|
|
|
35739
35766
|
}
|
|
35740
35767
|
};
|
|
35741
35768
|
|
|
35742
|
-
var Component$f = styles$
|
|
35769
|
+
var Component$f = styles$2B.withStyles(styles$k, {
|
|
35743
35770
|
name: 'VdtEditUserDialog'
|
|
35744
35771
|
})(EditUserDialog);
|
|
35745
35772
|
Component$f.displayName = 'EditUserDialog';
|
|
@@ -35854,7 +35881,7 @@ CreateUserDialog.defaultProps = {
|
|
|
35854
35881
|
onSubmit: undefined
|
|
35855
35882
|
};
|
|
35856
35883
|
|
|
35857
|
-
var Component$e = styles$
|
|
35884
|
+
var Component$e = styles$2B.withStyles(styles$i, {
|
|
35858
35885
|
name: 'VdtChangeUserPasswordDialog'
|
|
35859
35886
|
})(CreateUserDialog);
|
|
35860
35887
|
Component$e.displayName = 'ChangeUserPasswordDialog';
|
|
@@ -35870,7 +35897,7 @@ var styles$h = function styles(theme) {
|
|
|
35870
35897
|
visibility: 'hidden'
|
|
35871
35898
|
},
|
|
35872
35899
|
'&:hover': {
|
|
35873
|
-
backgroundColor: styles$
|
|
35900
|
+
backgroundColor: styles$2B.emphasize(theme.palette.background.paper, 0.1),
|
|
35874
35901
|
'& .MuiListItemSecondaryAction-root': {
|
|
35875
35902
|
visibility: 'visible'
|
|
35876
35903
|
}
|
|
@@ -36136,7 +36163,7 @@ UserRelationList.defaultProps = {
|
|
|
36136
36163
|
addButtonText: 'Add'
|
|
36137
36164
|
};
|
|
36138
36165
|
|
|
36139
|
-
var Component$d = styles$
|
|
36166
|
+
var Component$d = styles$2B.withStyles(styles$h, {
|
|
36140
36167
|
name: 'VdtUserRelationList'
|
|
36141
36168
|
})(UserRelationList);
|
|
36142
36169
|
Component$d.displayName = 'UserRelationList';
|
|
@@ -36286,7 +36313,7 @@ UserAvatarButton.defaultProps = {
|
|
|
36286
36313
|
localeSelectProps: {}
|
|
36287
36314
|
};
|
|
36288
36315
|
|
|
36289
|
-
var Component$c = styles$
|
|
36316
|
+
var Component$c = styles$2B.withStyles(styles$g, {
|
|
36290
36317
|
name: 'VdtUserAvatarButton'
|
|
36291
36318
|
})(UserAvatarButton);
|
|
36292
36319
|
Component$c.displayName = 'UserAvatarButton';
|
|
@@ -36327,7 +36354,7 @@ function GroupRow(_ref) {
|
|
|
36327
36354
|
}));
|
|
36328
36355
|
}
|
|
36329
36356
|
|
|
36330
|
-
var GroupRow$1 = styles$
|
|
36357
|
+
var GroupRow$1 = styles$2B.withStyles(styles$f, {
|
|
36331
36358
|
name: 'VdtGroupRow'
|
|
36332
36359
|
})(GroupRow);
|
|
36333
36360
|
|
|
@@ -36415,7 +36442,7 @@ GroupTable.defaultProps = {
|
|
|
36415
36442
|
}
|
|
36416
36443
|
};
|
|
36417
36444
|
|
|
36418
|
-
var Component$b = styles$
|
|
36445
|
+
var Component$b = styles$2B.withStyles(styles$e, {
|
|
36419
36446
|
name: 'VdtGroupTable'
|
|
36420
36447
|
})(GroupTable);
|
|
36421
36448
|
Component$b.displayName = 'GroupTable';
|
|
@@ -36490,7 +36517,7 @@ function GroupData(_ref) {
|
|
|
36490
36517
|
})));
|
|
36491
36518
|
}
|
|
36492
36519
|
|
|
36493
|
-
var GroupData$1 = styles$
|
|
36520
|
+
var GroupData$1 = styles$2B.withStyles(styles$d, {
|
|
36494
36521
|
name: 'VdtGroupData'
|
|
36495
36522
|
})(GroupData);
|
|
36496
36523
|
|
|
@@ -36724,7 +36751,7 @@ GroupDetails.defaultProps = {
|
|
|
36724
36751
|
lockedUsers: ['admin', 'vidinetviewer']
|
|
36725
36752
|
};
|
|
36726
36753
|
|
|
36727
|
-
var Component$a = styles$
|
|
36754
|
+
var Component$a = styles$2B.withStyles(styles$c, {
|
|
36728
36755
|
name: 'VdtGroupDetails'
|
|
36729
36756
|
})(GroupDetails);
|
|
36730
36757
|
Component$a.displayName = 'GroupDetails';
|
|
@@ -37010,7 +37037,7 @@ CreateGroupDialog.defaultProps = {
|
|
|
37010
37037
|
CreateGroupFormProps: {}
|
|
37011
37038
|
};
|
|
37012
37039
|
|
|
37013
|
-
var Component$9 = styles$
|
|
37040
|
+
var Component$9 = styles$2B.withStyles(styles$a, {
|
|
37014
37041
|
name: 'VdtCreateGroupDialog'
|
|
37015
37042
|
})(CreateGroupDialog);
|
|
37016
37043
|
Component$9.displayName = 'CreateGroupDialog';
|
|
@@ -37131,7 +37158,7 @@ EditGroupDialog.defaultProps = {
|
|
|
37131
37158
|
EditGroupFormProps: {}
|
|
37132
37159
|
};
|
|
37133
37160
|
|
|
37134
|
-
var Component$8 = styles$
|
|
37161
|
+
var Component$8 = styles$2B.withStyles(styles$8, {
|
|
37135
37162
|
name: 'VdtEditGroupDialog'
|
|
37136
37163
|
})(EditGroupDialog);
|
|
37137
37164
|
Component$8.displayName = 'EditGroupDialog';
|
|
@@ -37282,7 +37309,7 @@ DragScroll.defaultProps = {
|
|
|
37282
37309
|
classes: {}
|
|
37283
37310
|
};
|
|
37284
37311
|
|
|
37285
|
-
var Component$7 = styles$
|
|
37312
|
+
var Component$7 = styles$2B.withStyles(styles$7, {
|
|
37286
37313
|
name: 'VdtDragScroll'
|
|
37287
37314
|
})(DragScroll);
|
|
37288
37315
|
Component$7.displayName = 'DragScroll';
|
|
@@ -37372,7 +37399,7 @@ SelectedToolbar.defaultProps = {
|
|
|
37372
37399
|
className: undefined
|
|
37373
37400
|
};
|
|
37374
37401
|
|
|
37375
|
-
var Component$6 = styles$
|
|
37402
|
+
var Component$6 = styles$2B.withStyles(styles$6, {
|
|
37376
37403
|
name: 'VdtSelectedToolbar'
|
|
37377
37404
|
})(SelectedToolbar);
|
|
37378
37405
|
Component$6.displayName = 'SelectedToolbar';
|
|
@@ -37391,10 +37418,10 @@ var styles$5 = function styles(theme) {
|
|
|
37391
37418
|
},
|
|
37392
37419
|
'@keyframes active': {
|
|
37393
37420
|
'0%': {
|
|
37394
|
-
borderColor: styles$
|
|
37421
|
+
borderColor: styles$2B.alpha(theme.palette.primary.main, 1)
|
|
37395
37422
|
},
|
|
37396
37423
|
'100%': {
|
|
37397
|
-
borderColor: styles$
|
|
37424
|
+
borderColor: styles$2B.alpha(theme.palette.primary.main, 0)
|
|
37398
37425
|
}
|
|
37399
37426
|
}
|
|
37400
37427
|
};
|
|
@@ -37463,7 +37490,7 @@ Event.defaultProps = {
|
|
|
37463
37490
|
EventContentProps: {}
|
|
37464
37491
|
};
|
|
37465
37492
|
|
|
37466
|
-
var Component$5 = styles$
|
|
37493
|
+
var Component$5 = styles$2B.withStyles(styles$5, {
|
|
37467
37494
|
name: 'VdtEvent'
|
|
37468
37495
|
})(Event);
|
|
37469
37496
|
Component$5.displayName = 'Event';
|
|
@@ -37524,7 +37551,7 @@ EventContainer.defaultProps = {
|
|
|
37524
37551
|
classes: {}
|
|
37525
37552
|
};
|
|
37526
37553
|
|
|
37527
|
-
var Component$4 = styles$
|
|
37554
|
+
var Component$4 = styles$2B.withStyles(styles$4, {
|
|
37528
37555
|
name: 'VdtEventContainer'
|
|
37529
37556
|
})(EventContainer);
|
|
37530
37557
|
Component$4.displayName = 'EventContainer';
|
|
@@ -37592,7 +37619,7 @@ EventMarker.defaultProps = {
|
|
|
37592
37619
|
onClick: undefined
|
|
37593
37620
|
};
|
|
37594
37621
|
|
|
37595
|
-
var Component$3 = styles$
|
|
37622
|
+
var Component$3 = styles$2B.withStyles(styles$3, {
|
|
37596
37623
|
name: 'VdtEventMarker'
|
|
37597
37624
|
})(EventMarker);
|
|
37598
37625
|
Component$3.displayName = 'EventMarker';
|
|
@@ -37679,7 +37706,7 @@ EventMarkerThumbnail.defaultProps = {
|
|
|
37679
37706
|
TooltipProps: {}
|
|
37680
37707
|
};
|
|
37681
37708
|
|
|
37682
|
-
var Component$2 = styles$
|
|
37709
|
+
var Component$2 = styles$2B.withStyles(styles$2, {
|
|
37683
37710
|
name: 'VdtEventMarkerThumbnail'
|
|
37684
37711
|
})(EventMarkerThumbnail);
|
|
37685
37712
|
Component$2.displayName = 'EventMarkerThumbnail';
|
|
@@ -37687,7 +37714,7 @@ Component$2.displayName = 'EventMarkerThumbnail';
|
|
|
37687
37714
|
var styles$1 = function styles(theme) {
|
|
37688
37715
|
return {
|
|
37689
37716
|
root: {
|
|
37690
|
-
backgroundColor: styles$
|
|
37717
|
+
backgroundColor: styles$2B.alpha(theme.palette.primary.main, 0.25),
|
|
37691
37718
|
height: '5px',
|
|
37692
37719
|
width: '100%',
|
|
37693
37720
|
borderRadius: '2px',
|
|
@@ -37740,7 +37767,7 @@ EventMarkerTimeline.defaultProps = {
|
|
|
37740
37767
|
length: undefined
|
|
37741
37768
|
};
|
|
37742
37769
|
|
|
37743
|
-
var Component$1 = styles$
|
|
37770
|
+
var Component$1 = styles$2B.withStyles(styles$1, {
|
|
37744
37771
|
name: 'VdtEventMarkerTimeline'
|
|
37745
37772
|
})(EventMarkerTimeline);
|
|
37746
37773
|
Component$1.displayName = 'EventMarkerTimeline';
|
|
@@ -38297,7 +38324,7 @@ EventTimeline.defaultProps = {
|
|
|
38297
38324
|
itemSearchDocument: {}
|
|
38298
38325
|
};
|
|
38299
38326
|
|
|
38300
|
-
var Component = styles$
|
|
38327
|
+
var Component = styles$2B.withStyles(styles, {
|
|
38301
38328
|
name: 'VdtEventTimeline'
|
|
38302
38329
|
})(EventTimeline);
|
|
38303
38330
|
Component.displayName = 'EventTimeline';
|
|
@@ -38316,19 +38343,19 @@ exports.ChangeUserPasswordDialog = Component$e;
|
|
|
38316
38343
|
exports.CheckboxField = CheckboxField$1;
|
|
38317
38344
|
exports.CheckboxGroupField = CheckboxGroupField$1;
|
|
38318
38345
|
exports.CollectionAccessTab = CollectionAccessTab$1;
|
|
38319
|
-
exports.CollectionCard = Component$
|
|
38320
|
-
exports.CollectionCardThumbnail = Component$
|
|
38346
|
+
exports.CollectionCard = Component$L;
|
|
38347
|
+
exports.CollectionCardThumbnail = Component$J;
|
|
38321
38348
|
exports.CollectionContent = Component$x;
|
|
38322
|
-
exports.CollectionCreateDialog = Component$
|
|
38323
|
-
exports.CollectionGrid = Component$
|
|
38324
|
-
exports.CollectionList = Component$
|
|
38325
|
-
exports.CollectionListItem = Component$
|
|
38349
|
+
exports.CollectionCreateDialog = Component$C;
|
|
38350
|
+
exports.CollectionGrid = Component$I;
|
|
38351
|
+
exports.CollectionList = Component$D;
|
|
38352
|
+
exports.CollectionListItem = Component$E;
|
|
38326
38353
|
exports.CollectionMetadataEdit = CollectionMetadataEdit;
|
|
38327
38354
|
exports.CollectionMetadataTab = CollectionMetadataTab$1;
|
|
38328
|
-
exports.CollectionRow = Component$
|
|
38329
|
-
exports.CollectionSearchPicker =
|
|
38330
|
-
exports.CollectionTable = Component$
|
|
38331
|
-
exports.CollectionTreeList = Component$
|
|
38355
|
+
exports.CollectionRow = Component$H;
|
|
38356
|
+
exports.CollectionSearchPicker = Component$A;
|
|
38357
|
+
exports.CollectionTable = Component$G;
|
|
38358
|
+
exports.CollectionTreeList = Component$F;
|
|
38332
38359
|
exports.CreateGroupDialog = Component$9;
|
|
38333
38360
|
exports.CreateUserDialog = Component$g;
|
|
38334
38361
|
exports.DateField = DateField$1;
|
|
@@ -38369,7 +38396,7 @@ exports.FolderTree = FolderTree;
|
|
|
38369
38396
|
exports.GroupDetails = Component$a;
|
|
38370
38397
|
exports.GroupRelationList = Component$i;
|
|
38371
38398
|
exports.GroupTable = Component$b;
|
|
38372
|
-
exports.ImageCollage = Component$
|
|
38399
|
+
exports.ImageCollage = Component$K;
|
|
38373
38400
|
exports.ItemAccessTab = ItemAccessTab$1;
|
|
38374
38401
|
exports.ItemCard = ItemCard;
|
|
38375
38402
|
exports.ItemCompoundMetadataTab = ItemCompoundMetadataTab$1;
|
|
@@ -38395,12 +38422,12 @@ exports.ItemRelationsTab = ItemRelationsTab$1;
|
|
|
38395
38422
|
exports.ItemRow = ItemRow;
|
|
38396
38423
|
exports.ItemSearchPicker = ItemSearchPicker$1;
|
|
38397
38424
|
exports.ItemShapeTab = ItemShapeTab;
|
|
38398
|
-
exports.ItemShapeTable = Component$
|
|
38425
|
+
exports.ItemShapeTable = Component$S;
|
|
38399
38426
|
exports.ItemSidecarDialog = Component$t;
|
|
38400
38427
|
exports.ItemSidecarDownload = ItemSidecarDownload;
|
|
38401
38428
|
exports.ItemSidecarUpload = ItemSidecarUpload;
|
|
38402
38429
|
exports.ItemSourceTab = ItemSourceTab;
|
|
38403
|
-
exports.ItemSourceTable = Component$
|
|
38430
|
+
exports.ItemSourceTable = Component$R;
|
|
38404
38431
|
exports.ItemTable = ItemTable;
|
|
38405
38432
|
exports.ItemTabs = Component$u;
|
|
38406
38433
|
exports.ItemTimespanTab = ItemTimespan;
|
|
@@ -38419,12 +38446,12 @@ exports.JobTable = JobTable$1;
|
|
|
38419
38446
|
exports.JobTaskTable = JobTaskTable$1;
|
|
38420
38447
|
exports.LOAD_MORE = LOAD_MORE;
|
|
38421
38448
|
exports.LayoutButtonGroup = LayoutButtonGroup$1;
|
|
38422
|
-
exports.LoginForm = Component$
|
|
38449
|
+
exports.LoginForm = Component$U;
|
|
38423
38450
|
exports.MediaBadge = MediaBadge$1;
|
|
38424
38451
|
exports.MediaBadges = MediaBadges$1;
|
|
38425
|
-
exports.MediaCard = Component$
|
|
38452
|
+
exports.MediaCard = Component$M;
|
|
38426
38453
|
exports.MediaCardActions = MediaCardActions;
|
|
38427
|
-
exports.MediaCardAvatar = Component$
|
|
38454
|
+
exports.MediaCardAvatar = Component$N;
|
|
38428
38455
|
exports.MediaCardCard = MediaCardCard$1;
|
|
38429
38456
|
exports.MediaCardCheckbox = MediaCardCheckbox;
|
|
38430
38457
|
exports.MediaCardContent = MediaCardContent;
|
|
@@ -38432,9 +38459,9 @@ exports.MediaCardDurationLabel = MediaCardDurationLabel;
|
|
|
38432
38459
|
exports.MediaCardFullWidth = Component$k;
|
|
38433
38460
|
exports.MediaCardHeader = MediaCardHeader;
|
|
38434
38461
|
exports.MediaCardMenu = MediaCardMenu;
|
|
38435
|
-
exports.MediaCardThumbnail = Component$
|
|
38436
|
-
exports.MediaCardThumbnailLabel = Component$
|
|
38437
|
-
exports.MimeTypeIcon = Component$
|
|
38462
|
+
exports.MediaCardThumbnail = Component$P;
|
|
38463
|
+
exports.MediaCardThumbnailLabel = Component$Q;
|
|
38464
|
+
exports.MimeTypeIcon = Component$O;
|
|
38438
38465
|
exports.PREFIX = PREFIX;
|
|
38439
38466
|
exports.Pagination = SearchPagination;
|
|
38440
38467
|
exports.PaginationActions = SearchPaginationActions;
|
|
@@ -38454,7 +38481,7 @@ exports.STORAGE = STORAGE;
|
|
|
38454
38481
|
exports.SavedSearch = SavedSearch$1;
|
|
38455
38482
|
exports.SavedSearchFolder = FolderRow$1;
|
|
38456
38483
|
exports.SearchField = Component$q;
|
|
38457
|
-
exports.SearchInput = Component$
|
|
38484
|
+
exports.SearchInput = Component$B;
|
|
38458
38485
|
exports.SearchInputFieldSelect = SearchInputFieldSelect$1;
|
|
38459
38486
|
exports.SearchResultRow = SearchResultRow;
|
|
38460
38487
|
exports.SearchResultTable = SearchResultTable;
|
|
@@ -38469,7 +38496,7 @@ exports.SelectedToolbar = Component$6;
|
|
|
38469
38496
|
exports.ShapeTagCard = ShapeTagCard$1;
|
|
38470
38497
|
exports.ShapeTagListAccordion = ShapeTagListAccordion$1;
|
|
38471
38498
|
exports.SliderField = SliderField;
|
|
38472
|
-
exports.Sort = Component$
|
|
38499
|
+
exports.Sort = Component$T;
|
|
38473
38500
|
exports.SortMenuItem = SortMenuItem;
|
|
38474
38501
|
exports.SpellCheck = Component$r;
|
|
38475
38502
|
exports.Storage = Storage;
|