mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
fix demo shell
This commit is contained in:
@@ -19,6 +19,7 @@ import { bootstrap } from '@angular/platform-browser-dynamic';
|
|||||||
import { HTTP_PROVIDERS } from '@angular/http';
|
import { HTTP_PROVIDERS } from '@angular/http';
|
||||||
import { ALFRESCO_SEARCH_PROVIDERS } from 'ng2-alfresco-search';
|
import { ALFRESCO_SEARCH_PROVIDERS } from 'ng2-alfresco-search';
|
||||||
import { ALFRESCO_CORE_PROVIDERS } from 'ng2-alfresco-core';
|
import { ALFRESCO_CORE_PROVIDERS } from 'ng2-alfresco-core';
|
||||||
|
import { ATIVITI_FORM_PROVIDERS } from 'ng2-activiti-form';
|
||||||
import { UploadService } from 'ng2-alfresco-upload';
|
import { UploadService } from 'ng2-alfresco-upload';
|
||||||
import { AppComponent } from './app.component';
|
import { AppComponent } from './app.component';
|
||||||
|
|
||||||
@@ -29,5 +30,6 @@ bootstrap(AppComponent, [
|
|||||||
HTTP_PROVIDERS,
|
HTTP_PROVIDERS,
|
||||||
ALFRESCO_CORE_PROVIDERS,
|
ALFRESCO_CORE_PROVIDERS,
|
||||||
ALFRESCO_SEARCH_PROVIDERS,
|
ALFRESCO_SEARCH_PROVIDERS,
|
||||||
UploadService
|
UploadService,
|
||||||
|
ATIVITI_FORM_PROVIDERS
|
||||||
]).catch(err => console.error(err));
|
]).catch(err => console.error(err));
|
||||||
|
@@ -15,8 +15,19 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import { FormService } from './src/services/form.service';
|
||||||
|
import { EcmModelService } from './src/services/ecm-model.service';
|
||||||
|
import { NodeService } from './src/services/node.service';
|
||||||
|
|
||||||
export * from './src/components/activiti-form.component';
|
export * from './src/components/activiti-form.component';
|
||||||
export * from './src/services/form.service';
|
export * from './src/services/form.service';
|
||||||
export * from './src/components/widgets/index';
|
export * from './src/components/widgets/index';
|
||||||
export * from './src/services/ecm-model.service';
|
export * from './src/services/ecm-model.service';
|
||||||
export * from './src/services/node.service';
|
export * from './src/services/node.service';
|
||||||
|
|
||||||
|
|
||||||
|
export const ATIVITI_FORM_PROVIDERS: [any] = [
|
||||||
|
FormService,
|
||||||
|
EcmModelService,
|
||||||
|
NodeService
|
||||||
|
];
|
||||||
|
Reference in New Issue
Block a user