@syncfusion/ej2-angular-filemanager 30.1.37-ngcc → 30.1.38-ngcc
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/@syncfusion/ej2-angular-filemanager.es5.js +306 -306
- package/@syncfusion/ej2-angular-filemanager.js +261 -261
- package/dist/ej2-angular-filemanager.umd.js +297 -297
- package/dist/ej2-angular-filemanager.umd.min.js +1 -1
- package/ej2-angular-filemanager.d.ts +5 -5
- package/{LICENSE → license} +10 -10
- package/package.json +45 -14
- package/public_api.d.ts +1 -1
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +4 -4
- package/src/file-manager/filemanager-all.module.d.ts +13 -13
- package/src/file-manager/filemanager.component.d.ts +64 -64
- package/src/file-manager/filemanager.module.d.ts +5 -5
- package/src/file-manager/toolbaritems.directive.d.ts +144 -144
- package/src/index.d.ts +5 -5
@@ -3,275 +3,275 @@ import { ArrayBase, ComplexBase, ComponentBase, ComponentMixins, Template, setVa
|
|
3
3
|
import { BreadCrumbBar, ContextMenu, DetailsView, FileManager, LargeIconsView, NavigationPane, Toolbar, Virtualization } from '@syncfusion/ej2-filemanager';
|
4
4
|
import { CommonModule } from '@angular/common';
|
5
5
|
|
6
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
7
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
8
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
9
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
10
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
11
|
-
};
|
12
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
13
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
14
|
-
};
|
15
|
-
let input = ['align', 'cssClass', 'disabled', 'htmlAttributes', 'id', 'name', 'overflow', 'prefixIcon', 'showAlwaysInPopup', 'showTextOn', 'suffixIcon', 'tabIndex', 'template', 'text', 'tooltipText', 'type', 'visible', 'width'];
|
16
|
-
let outputs = [];
|
17
|
-
class ToolbarItemDirective extends ComplexBase {
|
18
|
-
/**
|
19
|
-
* @param {?} viewContainerRef
|
20
|
-
*/
|
21
|
-
constructor(viewContainerRef) {
|
22
|
-
super();
|
23
|
-
this.viewContainerRef = viewContainerRef;
|
24
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
25
|
-
this.registerEvents(outputs);
|
26
|
-
this.directivePropList = input;
|
27
|
-
}
|
28
|
-
}
|
29
|
-
ToolbarItemDirective.decorators = [
|
30
|
-
{ type: Directive, args: [{
|
31
|
-
selector: 'e-toolbaritems>e-toolbaritem',
|
32
|
-
inputs: input,
|
33
|
-
outputs: outputs,
|
34
|
-
queries: {}
|
35
|
-
},] },
|
36
|
-
];
|
37
|
-
/**
|
38
|
-
* @nocollapse
|
39
|
-
*/
|
40
|
-
ToolbarItemDirective.ctorParameters = () => [
|
41
|
-
{ type: ViewContainerRef, },
|
42
|
-
];
|
43
|
-
ToolbarItemDirective.propDecorators = {
|
44
|
-
'template': [{ type: ContentChild, args: ['template',] },],
|
45
|
-
};
|
46
|
-
__decorate([
|
47
|
-
Template(),
|
48
|
-
__metadata("design:type", Object)
|
49
|
-
], ToolbarItemDirective.prototype, "template", void 0);
|
50
|
-
/**
|
51
|
-
* ToolbarItem Array Directive
|
52
|
-
*/
|
53
|
-
class ToolbarItemsDirective extends ArrayBase {
|
54
|
-
constructor() {
|
55
|
-
super('toolbaritems');
|
56
|
-
}
|
57
|
-
}
|
58
|
-
ToolbarItemsDirective.decorators = [
|
59
|
-
{ type: Directive, args: [{
|
60
|
-
selector: 'ejs-filemanager>e-toolbaritems',
|
61
|
-
queries: {
|
62
|
-
children: new ContentChildren(ToolbarItemDirective)
|
63
|
-
},
|
64
|
-
},] },
|
65
|
-
];
|
66
|
-
/**
|
67
|
-
* @nocollapse
|
68
|
-
*/
|
6
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
7
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
8
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
9
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
10
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
11
|
+
};
|
12
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
13
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
14
|
+
};
|
15
|
+
let input = ['align', 'cssClass', 'disabled', 'htmlAttributes', 'id', 'name', 'overflow', 'prefixIcon', 'showAlwaysInPopup', 'showTextOn', 'suffixIcon', 'tabIndex', 'template', 'text', 'tooltipText', 'type', 'visible', 'width'];
|
16
|
+
let outputs = [];
|
17
|
+
class ToolbarItemDirective extends ComplexBase {
|
18
|
+
/**
|
19
|
+
* @param {?} viewContainerRef
|
20
|
+
*/
|
21
|
+
constructor(viewContainerRef) {
|
22
|
+
super();
|
23
|
+
this.viewContainerRef = viewContainerRef;
|
24
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
25
|
+
this.registerEvents(outputs);
|
26
|
+
this.directivePropList = input;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
ToolbarItemDirective.decorators = [
|
30
|
+
{ type: Directive, args: [{
|
31
|
+
selector: 'e-toolbaritems>e-toolbaritem',
|
32
|
+
inputs: input,
|
33
|
+
outputs: outputs,
|
34
|
+
queries: {}
|
35
|
+
},] },
|
36
|
+
];
|
37
|
+
/**
|
38
|
+
* @nocollapse
|
39
|
+
*/
|
40
|
+
ToolbarItemDirective.ctorParameters = () => [
|
41
|
+
{ type: ViewContainerRef, },
|
42
|
+
];
|
43
|
+
ToolbarItemDirective.propDecorators = {
|
44
|
+
'template': [{ type: ContentChild, args: ['template',] },],
|
45
|
+
};
|
46
|
+
__decorate([
|
47
|
+
Template(),
|
48
|
+
__metadata("design:type", Object)
|
49
|
+
], ToolbarItemDirective.prototype, "template", void 0);
|
50
|
+
/**
|
51
|
+
* ToolbarItem Array Directive
|
52
|
+
*/
|
53
|
+
class ToolbarItemsDirective extends ArrayBase {
|
54
|
+
constructor() {
|
55
|
+
super('toolbaritems');
|
56
|
+
}
|
57
|
+
}
|
58
|
+
ToolbarItemsDirective.decorators = [
|
59
|
+
{ type: Directive, args: [{
|
60
|
+
selector: 'ejs-filemanager>e-toolbaritems',
|
61
|
+
queries: {
|
62
|
+
children: new ContentChildren(ToolbarItemDirective)
|
63
|
+
},
|
64
|
+
},] },
|
65
|
+
];
|
66
|
+
/**
|
67
|
+
* @nocollapse
|
68
|
+
*/
|
69
69
|
ToolbarItemsDirective.ctorParameters = () => [];
|
70
70
|
|
71
|
-
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
72
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
73
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
74
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
75
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
76
|
-
};
|
77
|
-
var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
78
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
79
|
-
};
|
80
|
-
const inputs = ['ajaxSettings', 'allowDragAndDrop', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'detailsViewSettings', 'enableHtmlSanitizer', 'enablePersistence', 'enableRangeSelection', 'enableRtl', 'enableVirtualization', 'fileSystemData', 'height', 'locale', 'navigationPaneSettings', 'path', 'popupTarget', 'rootAliasName', 'searchSettings', 'selectedItems', 'showFileExtension', 'showHiddenItems', 'showItemCheckBoxes', 'showThumbnail', 'sortBy', 'sortComparer', 'sortOrder', 'toolbarItems', 'toolbarSettings', 'uploadSettings', 'view', 'width'];
|
81
|
-
const outputs$1 = ['beforeDelete', 'beforeDownload', 'beforeFolderCreate', 'beforeImageLoad', 'beforeMove', 'beforePopupClose', 'beforePopupOpen', 'beforeRename', 'beforeSend', 'created', 'delete', 'destroyed', 'failure', 'fileDragStart', 'fileDragStop', 'fileDragging', 'fileDropped', 'fileLoad', 'fileOpen', 'fileSelect', 'fileSelection', 'folderCreate', 'menuClick', 'menuClose', 'menuOpen', 'move', 'popupClose', 'popupOpen', 'rename', 'search', 'success', 'toolbarClick', 'toolbarCreate', 'uploadListCreate'];
|
82
|
-
const twoWays = [''];
|
83
|
-
/**
|
84
|
-
* Represents the Essential JS 2 Angular FileManager Component.
|
85
|
-
* ```html
|
86
|
-
* <ejs-filemanager showThumbnail='false'></ejs-filemanager>
|
87
|
-
* ```
|
88
|
-
*/
|
89
|
-
let FileManagerComponent = class FileManagerComponent extends FileManager {
|
90
|
-
/**
|
91
|
-
* @param {?} ngEle
|
92
|
-
* @param {?} srenderer
|
93
|
-
* @param {?} viewContainerRef
|
94
|
-
* @param {?} injector
|
95
|
-
*/
|
96
|
-
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
97
|
-
super();
|
98
|
-
this.ngEle = ngEle;
|
99
|
-
this.srenderer = srenderer;
|
100
|
-
this.viewContainerRef = viewContainerRef;
|
101
|
-
this.injector = injector;
|
102
|
-
this.tags = ['toolbarItems'];
|
103
|
-
this.element = this.ngEle.nativeElement;
|
104
|
-
this.injectedModules = this.injectedModules || [];
|
105
|
-
try {
|
106
|
-
let mod = this.injector.get('FileManagerDetailsView');
|
107
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
108
|
-
this.injectedModules.push(mod);
|
109
|
-
}
|
110
|
-
}
|
111
|
-
catch (_a) { }
|
112
|
-
try {
|
113
|
-
let mod = this.injector.get('FileManagerNavigationPane');
|
114
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
115
|
-
this.injectedModules.push(mod);
|
116
|
-
}
|
117
|
-
}
|
118
|
-
catch (_b) { }
|
119
|
-
try {
|
120
|
-
let mod = this.injector.get('FileManagerLargeIconsView');
|
121
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
122
|
-
this.injectedModules.push(mod);
|
123
|
-
}
|
124
|
-
}
|
125
|
-
catch (_c) { }
|
126
|
-
try {
|
127
|
-
let mod = this.injector.get('FileManagerToolbar');
|
128
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
129
|
-
this.injectedModules.push(mod);
|
130
|
-
}
|
131
|
-
}
|
132
|
-
catch (_d) { }
|
133
|
-
try {
|
134
|
-
let mod = this.injector.get('FileManagerContextMenu');
|
135
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
136
|
-
this.injectedModules.push(mod);
|
137
|
-
}
|
138
|
-
}
|
139
|
-
catch (_e) { }
|
140
|
-
try {
|
141
|
-
let mod = this.injector.get('FileManagerBreadCrumbBar');
|
142
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
143
|
-
this.injectedModules.push(mod);
|
144
|
-
}
|
145
|
-
}
|
146
|
-
catch (_f) { }
|
147
|
-
try {
|
148
|
-
let mod = this.injector.get('FileManagerVirtualization');
|
149
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
150
|
-
this.injectedModules.push(mod);
|
151
|
-
}
|
152
|
-
}
|
153
|
-
catch (_g) { }
|
154
|
-
this.registerEvents(outputs$1);
|
155
|
-
this.addTwoWay.call(this, twoWays);
|
156
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
157
|
-
this.context = new ComponentBase();
|
158
|
-
}
|
159
|
-
/**
|
160
|
-
* @return {?}
|
161
|
-
*/
|
162
|
-
ngOnInit() {
|
163
|
-
this.context.ngOnInit(this);
|
164
|
-
}
|
165
|
-
/**
|
166
|
-
* @return {?}
|
167
|
-
*/
|
168
|
-
ngAfterViewInit() {
|
169
|
-
this.context.ngAfterViewInit(this);
|
170
|
-
}
|
171
|
-
/**
|
172
|
-
* @return {?}
|
173
|
-
*/
|
174
|
-
ngOnDestroy() {
|
175
|
-
this.context.ngOnDestroy(this);
|
176
|
-
}
|
177
|
-
/**
|
178
|
-
* @return {?}
|
179
|
-
*/
|
180
|
-
ngAfterContentChecked() {
|
181
|
-
this.tagObjects[0].instance = this.childToolbarItems;
|
182
|
-
this.context.ngAfterContentChecked(this);
|
183
|
-
}
|
184
|
-
};
|
185
|
-
FileManagerComponent.decorators = [
|
186
|
-
{ type: Component, args: [{
|
187
|
-
selector: 'ejs-filemanager',
|
188
|
-
inputs: inputs,
|
189
|
-
outputs: outputs$1,
|
190
|
-
template: '',
|
191
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
192
|
-
queries: {
|
193
|
-
childToolbarItems: new ContentChild(ToolbarItemsDirective)
|
194
|
-
}
|
195
|
-
},] },
|
196
|
-
];
|
197
|
-
/**
|
198
|
-
* @nocollapse
|
199
|
-
*/
|
200
|
-
FileManagerComponent.ctorParameters = () => [
|
201
|
-
{ type: ElementRef, },
|
202
|
-
{ type: Renderer2, },
|
203
|
-
{ type: ViewContainerRef, },
|
204
|
-
{ type: Injector, },
|
205
|
-
];
|
206
|
-
FileManagerComponent = __decorate$1([
|
207
|
-
ComponentMixins([ComponentBase]),
|
208
|
-
__metadata$1("design:paramtypes", [ElementRef,
|
209
|
-
Renderer2,
|
210
|
-
ViewContainerRef,
|
211
|
-
Injector])
|
71
|
+
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
72
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
73
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
74
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
75
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
76
|
+
};
|
77
|
+
var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
78
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
79
|
+
};
|
80
|
+
const inputs = ['ajaxSettings', 'allowDragAndDrop', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'detailsViewSettings', 'enableHtmlSanitizer', 'enablePersistence', 'enableRangeSelection', 'enableRtl', 'enableVirtualization', 'fileSystemData', 'height', 'locale', 'navigationPaneSettings', 'path', 'popupTarget', 'rootAliasName', 'searchSettings', 'selectedItems', 'showFileExtension', 'showHiddenItems', 'showItemCheckBoxes', 'showThumbnail', 'sortBy', 'sortComparer', 'sortOrder', 'toolbarItems', 'toolbarSettings', 'uploadSettings', 'view', 'width'];
|
81
|
+
const outputs$1 = ['beforeDelete', 'beforeDownload', 'beforeFolderCreate', 'beforeImageLoad', 'beforeMove', 'beforePopupClose', 'beforePopupOpen', 'beforeRename', 'beforeSend', 'created', 'delete', 'destroyed', 'failure', 'fileDragStart', 'fileDragStop', 'fileDragging', 'fileDropped', 'fileLoad', 'fileOpen', 'fileSelect', 'fileSelection', 'folderCreate', 'menuClick', 'menuClose', 'menuOpen', 'move', 'popupClose', 'popupOpen', 'rename', 'search', 'success', 'toolbarClick', 'toolbarCreate', 'uploadListCreate'];
|
82
|
+
const twoWays = [''];
|
83
|
+
/**
|
84
|
+
* Represents the Essential JS 2 Angular FileManager Component.
|
85
|
+
* ```html
|
86
|
+
* <ejs-filemanager showThumbnail='false'></ejs-filemanager>
|
87
|
+
* ```
|
88
|
+
*/
|
89
|
+
let FileManagerComponent = class FileManagerComponent extends FileManager {
|
90
|
+
/**
|
91
|
+
* @param {?} ngEle
|
92
|
+
* @param {?} srenderer
|
93
|
+
* @param {?} viewContainerRef
|
94
|
+
* @param {?} injector
|
95
|
+
*/
|
96
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
97
|
+
super();
|
98
|
+
this.ngEle = ngEle;
|
99
|
+
this.srenderer = srenderer;
|
100
|
+
this.viewContainerRef = viewContainerRef;
|
101
|
+
this.injector = injector;
|
102
|
+
this.tags = ['toolbarItems'];
|
103
|
+
this.element = this.ngEle.nativeElement;
|
104
|
+
this.injectedModules = this.injectedModules || [];
|
105
|
+
try {
|
106
|
+
let mod = this.injector.get('FileManagerDetailsView');
|
107
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
108
|
+
this.injectedModules.push(mod);
|
109
|
+
}
|
110
|
+
}
|
111
|
+
catch (_a) { }
|
112
|
+
try {
|
113
|
+
let mod = this.injector.get('FileManagerNavigationPane');
|
114
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
115
|
+
this.injectedModules.push(mod);
|
116
|
+
}
|
117
|
+
}
|
118
|
+
catch (_b) { }
|
119
|
+
try {
|
120
|
+
let mod = this.injector.get('FileManagerLargeIconsView');
|
121
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
122
|
+
this.injectedModules.push(mod);
|
123
|
+
}
|
124
|
+
}
|
125
|
+
catch (_c) { }
|
126
|
+
try {
|
127
|
+
let mod = this.injector.get('FileManagerToolbar');
|
128
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
129
|
+
this.injectedModules.push(mod);
|
130
|
+
}
|
131
|
+
}
|
132
|
+
catch (_d) { }
|
133
|
+
try {
|
134
|
+
let mod = this.injector.get('FileManagerContextMenu');
|
135
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
136
|
+
this.injectedModules.push(mod);
|
137
|
+
}
|
138
|
+
}
|
139
|
+
catch (_e) { }
|
140
|
+
try {
|
141
|
+
let mod = this.injector.get('FileManagerBreadCrumbBar');
|
142
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
143
|
+
this.injectedModules.push(mod);
|
144
|
+
}
|
145
|
+
}
|
146
|
+
catch (_f) { }
|
147
|
+
try {
|
148
|
+
let mod = this.injector.get('FileManagerVirtualization');
|
149
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
150
|
+
this.injectedModules.push(mod);
|
151
|
+
}
|
152
|
+
}
|
153
|
+
catch (_g) { }
|
154
|
+
this.registerEvents(outputs$1);
|
155
|
+
this.addTwoWay.call(this, twoWays);
|
156
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
157
|
+
this.context = new ComponentBase();
|
158
|
+
}
|
159
|
+
/**
|
160
|
+
* @return {?}
|
161
|
+
*/
|
162
|
+
ngOnInit() {
|
163
|
+
this.context.ngOnInit(this);
|
164
|
+
}
|
165
|
+
/**
|
166
|
+
* @return {?}
|
167
|
+
*/
|
168
|
+
ngAfterViewInit() {
|
169
|
+
this.context.ngAfterViewInit(this);
|
170
|
+
}
|
171
|
+
/**
|
172
|
+
* @return {?}
|
173
|
+
*/
|
174
|
+
ngOnDestroy() {
|
175
|
+
this.context.ngOnDestroy(this);
|
176
|
+
}
|
177
|
+
/**
|
178
|
+
* @return {?}
|
179
|
+
*/
|
180
|
+
ngAfterContentChecked() {
|
181
|
+
this.tagObjects[0].instance = this.childToolbarItems;
|
182
|
+
this.context.ngAfterContentChecked(this);
|
183
|
+
}
|
184
|
+
};
|
185
|
+
FileManagerComponent.decorators = [
|
186
|
+
{ type: Component, args: [{
|
187
|
+
selector: 'ejs-filemanager',
|
188
|
+
inputs: inputs,
|
189
|
+
outputs: outputs$1,
|
190
|
+
template: '',
|
191
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
192
|
+
queries: {
|
193
|
+
childToolbarItems: new ContentChild(ToolbarItemsDirective)
|
194
|
+
}
|
195
|
+
},] },
|
196
|
+
];
|
197
|
+
/**
|
198
|
+
* @nocollapse
|
199
|
+
*/
|
200
|
+
FileManagerComponent.ctorParameters = () => [
|
201
|
+
{ type: ElementRef, },
|
202
|
+
{ type: Renderer2, },
|
203
|
+
{ type: ViewContainerRef, },
|
204
|
+
{ type: Injector, },
|
205
|
+
];
|
206
|
+
FileManagerComponent = __decorate$1([
|
207
|
+
ComponentMixins([ComponentBase]),
|
208
|
+
__metadata$1("design:paramtypes", [ElementRef,
|
209
|
+
Renderer2,
|
210
|
+
ViewContainerRef,
|
211
|
+
Injector])
|
212
212
|
], FileManagerComponent);
|
213
213
|
|
214
|
-
/**
|
215
|
-
* NgModule definition for the FileManager component.
|
216
|
-
*/
|
217
|
-
class FileManagerModule {
|
218
|
-
}
|
219
|
-
FileManagerModule.decorators = [
|
220
|
-
{ type: NgModule, args: [{
|
221
|
-
imports: [CommonModule],
|
222
|
-
declarations: [
|
223
|
-
FileManagerComponent,
|
224
|
-
ToolbarItemDirective,
|
225
|
-
ToolbarItemsDirective
|
226
|
-
],
|
227
|
-
exports: [
|
228
|
-
FileManagerComponent,
|
229
|
-
ToolbarItemDirective,
|
230
|
-
ToolbarItemsDirective
|
231
|
-
]
|
232
|
-
},] },
|
233
|
-
];
|
234
|
-
/**
|
235
|
-
* @nocollapse
|
236
|
-
*/
|
214
|
+
/**
|
215
|
+
* NgModule definition for the FileManager component.
|
216
|
+
*/
|
217
|
+
class FileManagerModule {
|
218
|
+
}
|
219
|
+
FileManagerModule.decorators = [
|
220
|
+
{ type: NgModule, args: [{
|
221
|
+
imports: [CommonModule],
|
222
|
+
declarations: [
|
223
|
+
FileManagerComponent,
|
224
|
+
ToolbarItemDirective,
|
225
|
+
ToolbarItemsDirective
|
226
|
+
],
|
227
|
+
exports: [
|
228
|
+
FileManagerComponent,
|
229
|
+
ToolbarItemDirective,
|
230
|
+
ToolbarItemsDirective
|
231
|
+
]
|
232
|
+
},] },
|
233
|
+
];
|
234
|
+
/**
|
235
|
+
* @nocollapse
|
236
|
+
*/
|
237
237
|
FileManagerModule.ctorParameters = () => [];
|
238
238
|
|
239
|
-
const DetailsViewService = { provide: 'FileManagerDetailsView', useValue: DetailsView };
|
240
|
-
const NavigationPaneService = { provide: 'FileManagerNavigationPane', useValue: NavigationPane };
|
241
|
-
const LargeIconsViewService = { provide: 'FileManagerLargeIconsView', useValue: LargeIconsView };
|
242
|
-
const ToolbarService = { provide: 'FileManagerToolbar', useValue: Toolbar };
|
243
|
-
const ContextMenuService = { provide: 'FileManagerContextMenu', useValue: ContextMenu };
|
244
|
-
const BreadCrumbBarService = { provide: 'FileManagerBreadCrumbBar', useValue: BreadCrumbBar };
|
245
|
-
const VirtualizationService = { provide: 'FileManagerVirtualization', useValue: Virtualization };
|
246
|
-
/**
|
247
|
-
* NgModule definition for the FileManager component with providers.
|
248
|
-
*/
|
249
|
-
class FileManagerAllModule {
|
250
|
-
}
|
251
|
-
FileManagerAllModule.decorators = [
|
252
|
-
{ type: NgModule, args: [{
|
253
|
-
imports: [CommonModule, FileManagerModule],
|
254
|
-
exports: [
|
255
|
-
FileManagerModule
|
256
|
-
],
|
257
|
-
providers: [
|
258
|
-
DetailsViewService,
|
259
|
-
NavigationPaneService,
|
260
|
-
LargeIconsViewService,
|
261
|
-
ToolbarService,
|
262
|
-
ContextMenuService,
|
263
|
-
BreadCrumbBarService,
|
264
|
-
VirtualizationService
|
265
|
-
]
|
266
|
-
},] },
|
267
|
-
];
|
268
|
-
/**
|
269
|
-
* @nocollapse
|
270
|
-
*/
|
239
|
+
const DetailsViewService = { provide: 'FileManagerDetailsView', useValue: DetailsView };
|
240
|
+
const NavigationPaneService = { provide: 'FileManagerNavigationPane', useValue: NavigationPane };
|
241
|
+
const LargeIconsViewService = { provide: 'FileManagerLargeIconsView', useValue: LargeIconsView };
|
242
|
+
const ToolbarService = { provide: 'FileManagerToolbar', useValue: Toolbar };
|
243
|
+
const ContextMenuService = { provide: 'FileManagerContextMenu', useValue: ContextMenu };
|
244
|
+
const BreadCrumbBarService = { provide: 'FileManagerBreadCrumbBar', useValue: BreadCrumbBar };
|
245
|
+
const VirtualizationService = { provide: 'FileManagerVirtualization', useValue: Virtualization };
|
246
|
+
/**
|
247
|
+
* NgModule definition for the FileManager component with providers.
|
248
|
+
*/
|
249
|
+
class FileManagerAllModule {
|
250
|
+
}
|
251
|
+
FileManagerAllModule.decorators = [
|
252
|
+
{ type: NgModule, args: [{
|
253
|
+
imports: [CommonModule, FileManagerModule],
|
254
|
+
exports: [
|
255
|
+
FileManagerModule
|
256
|
+
],
|
257
|
+
providers: [
|
258
|
+
DetailsViewService,
|
259
|
+
NavigationPaneService,
|
260
|
+
LargeIconsViewService,
|
261
|
+
ToolbarService,
|
262
|
+
ContextMenuService,
|
263
|
+
BreadCrumbBarService,
|
264
|
+
VirtualizationService
|
265
|
+
]
|
266
|
+
},] },
|
267
|
+
];
|
268
|
+
/**
|
269
|
+
* @nocollapse
|
270
|
+
*/
|
271
271
|
FileManagerAllModule.ctorParameters = () => [];
|
272
272
|
|
273
|
-
/**
|
274
|
-
* Generated bundle index. Do not edit.
|
273
|
+
/**
|
274
|
+
* Generated bundle index. Do not edit.
|
275
275
|
*/
|
276
276
|
|
277
277
|
export { ToolbarItemDirective, ToolbarItemsDirective, FileManagerComponent, FileManagerModule, FileManagerAllModule, DetailsViewService, NavigationPaneService, LargeIconsViewService, ToolbarService, ContextMenuService, BreadCrumbBarService, VirtualizationService, inputs as ɵa, outputs$1 as ɵb };
|