|
@@ -1,5 +1,6 @@
|
|
import { minimalConfiguration } from './minimal';
|
|
import { minimalConfiguration } from './minimal';
|
|
import { defaultConfiguration } from './default';
|
|
import { defaultConfiguration } from './default';
|
|
|
|
+import { extendedDefaultConfiguration } from './extendedDefault';
|
|
import { ViewerConfiguration } from '../configuration';
|
|
import { ViewerConfiguration } from '../configuration';
|
|
import * as deepmerge from '../../../assets/deepmerge.min.js';
|
|
import * as deepmerge from '../../../assets/deepmerge.min.js';
|
|
|
|
|
|
@@ -9,6 +10,9 @@ let getConfigurationType = function (type: string): ViewerConfiguration {
|
|
case 'default':
|
|
case 'default':
|
|
config = defaultConfiguration;
|
|
config = defaultConfiguration;
|
|
break;
|
|
break;
|
|
|
|
+ case 'extendedDefault':
|
|
|
|
+ config = extendedDefaultConfiguration;
|
|
|
|
+ break;
|
|
case 'minimal':
|
|
case 'minimal':
|
|
config = minimalConfiguration;
|
|
config = minimalConfiguration;
|
|
break;
|
|
break;
|