mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* start custom theming adf * demo shell cleaning * login mdl cleaning * uploader mdl cleaning * prebuilt themes * theme picker in demo shell * clean custom colors and mdl * fix rebase errors * theming from color style guide * dev default theme orange purple * fix color accent inverted in picker * fix test and add colors classes * fix tag component theming issues * fix datatable theming * add theming guides
69 lines
1.7 KiB
TypeScript
69 lines
1.7 KiB
TypeScript
/* tslint:disable */
|
|
|
|
// Angular
|
|
import '@angular/common';
|
|
import '@angular/core';
|
|
import '@angular/http';
|
|
import '@angular/platform-browser';
|
|
import '@angular/platform-browser-dynamic';
|
|
import '@angular/router';
|
|
|
|
// RxJS
|
|
import 'rxjs';
|
|
|
|
// hammerjs
|
|
import 'hammerjs';
|
|
|
|
// Alfresco
|
|
import 'alfresco-js-api';
|
|
import 'ng2-activiti-analytics';
|
|
import 'ng2-activiti-diagrams';
|
|
import 'ng2-activiti-form';
|
|
import 'ng2-activiti-processlist';
|
|
import 'ng2-activiti-tasklist';
|
|
import 'ng2-alfresco-core';
|
|
import 'ng2-alfresco-datatable';
|
|
import 'ng2-alfresco-documentlist';
|
|
import 'ng2-alfresco-login';
|
|
import 'ng2-alfresco-search';
|
|
import 'ng2-alfresco-social';
|
|
import 'ng2-alfresco-tag';
|
|
import 'ng2-alfresco-upload';
|
|
import 'ng2-alfresco-userinfo';
|
|
import 'ng2-alfresco-viewer';
|
|
import 'ng2-alfresco-webscript';
|
|
|
|
// Polyfill(s) for dialogs
|
|
require('script-loader!dialog-polyfill/dialog-polyfill');
|
|
import 'dialog-polyfill/dialog-polyfill.css';
|
|
|
|
// Google Material Design Lite
|
|
import 'material-design-icons/iconfont/material-icons.css';
|
|
import 'material-design-lite/dist/material.orange-blue.min.css';
|
|
import 'material-design-lite/material.js';
|
|
|
|
import '../public/css/muli-font.css';
|
|
|
|
import 'ng2-activiti-form/stencils/runtime.adf';
|
|
import 'ng2-activiti-form/stencils/runtime.ng1';
|
|
|
|
import 'chart.js';
|
|
import 'ng2-charts';
|
|
require('script-loader!raphael/raphael.min.js');
|
|
|
|
require('script-loader!moment/min/moment.min.js');
|
|
|
|
require('pdfjs-dist/web/compatibility.js');
|
|
|
|
// Setting worker path to worker bundle.
|
|
let pdfjsLib = require('pdfjs-dist');
|
|
pdfjsLib.PDFJS.workerSrc = 'pdf.worker.js';
|
|
|
|
require('pdfjs-dist/web/pdf_viewer.js');
|
|
|
|
|
|
// 3D viewer
|
|
require('three/build/three.min.js');
|
|
import 'ng2-3d-editor';
|
|
import 'three';
|