@syncfusion/ej2-filemanager 20.1.52-10460 → 20.1.52-10461

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.
Files changed (172) hide show
  1. package/CHANGELOG.md +412 -410
  2. package/README.md +69 -69
  3. package/dist/ej2-filemanager.min.js +1 -0
  4. package/dist/ej2-filemanager.umd.min.js +1 -10
  5. package/dist/ej2-filemanager.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-filemanager.es2015.js +57 -54
  7. package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
  8. package/dist/es6/ej2-filemanager.es5.js +174 -171
  9. package/dist/es6/ej2-filemanager.es5.js.map +1 -1
  10. package/dist/global/ej2-filemanager.min.js +1 -10
  11. package/dist/global/ej2-filemanager.min.js.map +1 -1
  12. package/dist/global/index.d.ts +0 -9
  13. package/dist/ts/file-manager/actions/breadcrumb-bar.ts +427 -0
  14. package/dist/ts/file-manager/actions/toolbar.ts +498 -0
  15. package/dist/ts/file-manager/base/classes.ts +225 -0
  16. package/dist/ts/file-manager/base/constant.ts +137 -0
  17. package/dist/ts/file-manager/base/file-manager.ts +1659 -0
  18. package/dist/ts/file-manager/base/interface.ts +652 -0
  19. package/dist/ts/file-manager/common/operations.ts +614 -0
  20. package/dist/ts/file-manager/common/utility.ts +1503 -0
  21. package/dist/ts/file-manager/layout/details-view.ts +1837 -0
  22. package/dist/ts/file-manager/layout/large-icons-view.ts +1587 -0
  23. package/dist/ts/file-manager/layout/navigation-pane.ts +879 -0
  24. package/dist/ts/file-manager/models/ajax-settings.ts +39 -0
  25. package/dist/ts/file-manager/models/column.ts +197 -0
  26. package/dist/ts/file-manager/models/contextMenu-settings.ts +44 -0
  27. package/dist/ts/file-manager/models/default-locale.ts +102 -0
  28. package/dist/ts/file-manager/models/details-view-settings.ts +48 -0
  29. package/dist/ts/file-manager/models/navigation-pane-settings.ts +42 -0
  30. package/dist/ts/file-manager/models/search-settings.ts +48 -0
  31. package/dist/ts/file-manager/models/toolbar-settings.ts +25 -0
  32. package/dist/ts/file-manager/models/upload-settings.ts +51 -0
  33. package/dist/ts/file-manager/pop-up/context-menu.ts +614 -0
  34. package/dist/ts/file-manager/pop-up/dialog.ts +996 -0
  35. package/helpers/e2e/filemanagerHelper.js +183 -166
  36. package/license +9 -9
  37. package/package.json +72 -72
  38. package/src/file-manager/base/file-manager-model.d.ts +329 -329
  39. package/src/file-manager/base/file-manager.js +19 -19
  40. package/src/file-manager/models/ajax-settings-model.d.ts +21 -21
  41. package/src/file-manager/models/ajax-settings.js +19 -19
  42. package/src/file-manager/models/column-model.d.ts +98 -98
  43. package/src/file-manager/models/column.js +19 -19
  44. package/src/file-manager/models/contextMenu-settings-model.d.ts +21 -21
  45. package/src/file-manager/models/contextMenu-settings.js +19 -19
  46. package/src/file-manager/models/details-view-settings-model.d.ts +19 -19
  47. package/src/file-manager/models/details-view-settings.js +19 -19
  48. package/src/file-manager/models/navigation-pane-settings-model.d.ts +25 -25
  49. package/src/file-manager/models/navigation-pane-settings.js +19 -19
  50. package/src/file-manager/models/search-settings-model.d.ts +26 -26
  51. package/src/file-manager/models/search-settings.js +19 -19
  52. package/src/file-manager/models/toolbar-settings-model.d.ts +11 -11
  53. package/src/file-manager/models/toolbar-settings.js +19 -19
  54. package/src/file-manager/models/upload-settings-model.d.ts +31 -31
  55. package/src/file-manager/models/upload-settings.js +19 -19
  56. package/src/file-manager/pop-up/context-menu.js +3 -0
  57. package/styles/compatibility/bootstrap.css +1 -0
  58. package/styles/compatibility/bootstrap.scss +12 -0
  59. package/styles/compatibility/bootstrap4.css +1 -0
  60. package/styles/compatibility/bootstrap4.scss +12 -0
  61. package/styles/compatibility/fabric.css +1 -0
  62. package/styles/compatibility/fabric.scss +12 -0
  63. package/styles/compatibility/highcontrast.css +1 -0
  64. package/styles/compatibility/highcontrast.scss +12 -0
  65. package/styles/compatibility/material.css +1 -0
  66. package/styles/compatibility/material.scss +12 -0
  67. package/styles/file-manager/_all.scss +2 -2
  68. package/styles/file-manager/_bds-definition.scss +236 -0
  69. package/styles/file-manager/_bigger.scss +759 -0
  70. package/styles/file-manager/_bootstrap-dark-definition.scss +244 -240
  71. package/styles/file-manager/_bootstrap-definition.scss +245 -241
  72. package/styles/file-manager/_bootstrap4-definition.scss +246 -242
  73. package/styles/file-manager/_bootstrap5-definition.scss +242 -237
  74. package/styles/file-manager/_bootstrap5.3-definition.scss +242 -0
  75. package/styles/file-manager/_fabric-dark-definition.scss +242 -238
  76. package/styles/file-manager/_fabric-definition.scss +244 -240
  77. package/styles/file-manager/_fluent-definition.scss +249 -246
  78. package/styles/file-manager/_fluent2-definition.scss +255 -0
  79. package/styles/file-manager/_fusionnew-definition.scss +241 -0
  80. package/styles/file-manager/_highcontrast-definition.scss +244 -240
  81. package/styles/file-manager/_highcontrast-light-definition.scss +244 -240
  82. package/styles/file-manager/_layout.scss +1252 -1815
  83. package/styles/file-manager/_material-dark-definition.scss +245 -240
  84. package/styles/file-manager/_material-definition.scss +245 -240
  85. package/styles/file-manager/_material3-definition.scss +235 -0
  86. package/styles/file-manager/_tailwind-definition.scss +236 -232
  87. package/styles/file-manager/_theme.scss +418 -397
  88. package/styles/file-manager/icons/_bds.scss +235 -0
  89. package/styles/file-manager/icons/_bootstrap-dark.scss +235 -235
  90. package/styles/file-manager/icons/_bootstrap.scss +235 -236
  91. package/styles/file-manager/icons/_bootstrap4.scss +235 -236
  92. package/styles/file-manager/icons/_bootstrap5.3.scss +235 -0
  93. package/styles/file-manager/icons/_bootstrap5.scss +235 -235
  94. package/styles/file-manager/icons/_fabric-dark.scss +229 -230
  95. package/styles/file-manager/icons/_fabric.scss +229 -230
  96. package/styles/file-manager/icons/_fluent.scss +235 -235
  97. package/styles/file-manager/icons/_fluent2.scss +235 -0
  98. package/styles/file-manager/icons/_fusionnew.scss +235 -0
  99. package/styles/file-manager/icons/_highcontrast-light.scss +235 -235
  100. package/styles/file-manager/icons/_highcontrast.scss +229 -229
  101. package/styles/file-manager/icons/_material-dark.scss +235 -235
  102. package/styles/file-manager/icons/_material.scss +235 -235
  103. package/styles/file-manager/icons/_material3.scss +235 -0
  104. package/styles/file-manager/icons/_tailwind.scss +235 -235
  105. package/.eslintrc.json +0 -244
  106. package/styles/bootstrap-dark.css +0 -1920
  107. package/styles/bootstrap-dark.scss +0 -1
  108. package/styles/bootstrap.css +0 -1899
  109. package/styles/bootstrap.scss +0 -1
  110. package/styles/bootstrap4.css +0 -1935
  111. package/styles/bootstrap4.scss +0 -1
  112. package/styles/bootstrap5-dark.css +0 -1982
  113. package/styles/bootstrap5-dark.scss +0 -1
  114. package/styles/bootstrap5.css +0 -1982
  115. package/styles/bootstrap5.scss +0 -1
  116. package/styles/fabric-dark.css +0 -1891
  117. package/styles/fabric-dark.scss +0 -1
  118. package/styles/fabric.css +0 -1891
  119. package/styles/fabric.scss +0 -1
  120. package/styles/file-manager/_bootstrap5-dark-definition.scss +0 -1
  121. package/styles/file-manager/_fluent-dark-definition.scss +0 -1
  122. package/styles/file-manager/_tailwind-dark-definition.scss +0 -1
  123. package/styles/file-manager/bootstrap-dark.css +0 -1920
  124. package/styles/file-manager/bootstrap-dark.scss +0 -16
  125. package/styles/file-manager/bootstrap.css +0 -1899
  126. package/styles/file-manager/bootstrap.scss +0 -16
  127. package/styles/file-manager/bootstrap4.css +0 -1935
  128. package/styles/file-manager/bootstrap4.scss +0 -16
  129. package/styles/file-manager/bootstrap5-dark.css +0 -1982
  130. package/styles/file-manager/bootstrap5-dark.scss +0 -16
  131. package/styles/file-manager/bootstrap5.css +0 -1982
  132. package/styles/file-manager/bootstrap5.scss +0 -16
  133. package/styles/file-manager/fabric-dark.css +0 -1891
  134. package/styles/file-manager/fabric-dark.scss +0 -16
  135. package/styles/file-manager/fabric.css +0 -1891
  136. package/styles/file-manager/fabric.scss +0 -16
  137. package/styles/file-manager/fluent-dark.css +0 -1901
  138. package/styles/file-manager/fluent-dark.scss +0 -16
  139. package/styles/file-manager/fluent.css +0 -1900
  140. package/styles/file-manager/fluent.scss +0 -16
  141. package/styles/file-manager/highcontrast-light.css +0 -1897
  142. package/styles/file-manager/highcontrast-light.scss +0 -16
  143. package/styles/file-manager/highcontrast.css +0 -1897
  144. package/styles/file-manager/highcontrast.scss +0 -16
  145. package/styles/file-manager/icons/_bootstrap5-dark.scss +0 -1
  146. package/styles/file-manager/icons/_fluent-dark.scss +0 -1
  147. package/styles/file-manager/icons/_tailwind-dark.scss +0 -1
  148. package/styles/file-manager/material-dark.css +0 -1945
  149. package/styles/file-manager/material-dark.scss +0 -16
  150. package/styles/file-manager/material.css +0 -1932
  151. package/styles/file-manager/material.scss +0 -16
  152. package/styles/file-manager/tailwind-dark.css +0 -1969
  153. package/styles/file-manager/tailwind-dark.scss +0 -16
  154. package/styles/file-manager/tailwind.css +0 -1969
  155. package/styles/file-manager/tailwind.scss +0 -16
  156. package/styles/fluent-dark.css +0 -1901
  157. package/styles/fluent-dark.scss +0 -1
  158. package/styles/fluent.css +0 -1900
  159. package/styles/fluent.scss +0 -1
  160. package/styles/highcontrast-light.css +0 -1897
  161. package/styles/highcontrast-light.scss +0 -1
  162. package/styles/highcontrast.css +0 -1897
  163. package/styles/highcontrast.scss +0 -1
  164. package/styles/material-dark.css +0 -1945
  165. package/styles/material-dark.scss +0 -1
  166. package/styles/material.css +0 -1932
  167. package/styles/material.scss +0 -1
  168. package/styles/tailwind-dark.css +0 -1969
  169. package/styles/tailwind-dark.scss +0 -1
  170. package/styles/tailwind.css +0 -1969
  171. package/styles/tailwind.scss +0 -1
  172. package/tslint.json +0 -111
@@ -1,167 +1,184 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const e2e_1 = require("@syncfusion/ej2-base/helpers/e2e");
4
- /**
5
- * E2E test helpers for FileManager to easily interact and the test the component
6
- */
7
- class FileManagerHelpers extends e2e_1.TestHelper {
8
- /**
9
- * Initialize the FileManager E2E helpers
10
- * @param id Element id of the FileManager element
11
- * @param wrapperFn Pass the wrapper function
12
- */
13
- constructor(id, wrapperFn) {
14
- super();
15
- this.id = id;
16
- if (wrapperFn !== undefined) {
17
- this.wrapperFn = wrapperFn;
1
+ var __extends = (this && this.__extends) || (function () {
2
+ var extendStatics = function (d, b) {
3
+ extendStatics = Object.setPrototypeOf ||
4
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
+ return extendStatics(d, b);
7
+ };
8
+ return function (d, b) {
9
+ extendStatics(d, b);
10
+ function __() { this.constructor = d; }
11
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
+ };
13
+ })();
14
+ define(["require", "exports", "@syncfusion/ej2-base/helpers/e2e"], function (require, exports, e2e_1) {
15
+ "use strict";
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ /**
18
+ * E2E test helpers for FileManager to easily interact and the test the component
19
+ */
20
+ var FileManagerHelpers = /** @class */ (function (_super) {
21
+ __extends(FileManagerHelpers, _super);
22
+ /**
23
+ * Initialize the FileManager E2E helpers
24
+ * @param id Element id of the FileManager element
25
+ * @param wrapperFn Pass the wrapper function
26
+ */
27
+ function FileManagerHelpers(id, wrapperFn) {
28
+ var _this = _super.call(this) || this;
29
+ _this.id = id;
30
+ if (wrapperFn !== undefined) {
31
+ _this.wrapperFn = wrapperFn;
32
+ }
33
+ return _this;
18
34
  }
19
- return this;
20
- }
21
- selector(arg) {
22
- return (this.wrapperFn ? this.wrapperFn(arg) : arg);
23
- }
24
- /**
25
- * Returns the root element of the FileManager component.
26
- */
27
- getElement() {
28
- return this.selector('#' + this.id);
29
- }
30
- /**
31
- * Returns the toolbar items from the FileManager component.
32
- */
33
- getToolbarItems() {
34
- return this.selector('#' + this.id + '.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item');
35
- }
36
- /**
37
- * Returns the active toolbar item element from the FileManager component.
38
- */
39
- getToolbarItemsActive() {
40
- return this.selector('#' + this.id + '.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-active');
41
- }
42
- getTreeviewItems() {
43
- return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item');
44
- }
45
- /**
46
- * Returns the collapsed treeview node element from the FileManager component.
47
- */
48
- getTreeviewCollapsedItems() {
49
- return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-node-collapsed');
50
- }
51
- /**
52
- * Returns the collapsed icon of treeview node element from the FileManager component.
53
- */
54
- getTreeviewCollapsedIcon() {
55
- return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-icons.e-icon-collapsible');
56
- }
57
- /**
58
- * Returns the expanded icon of treeview node element from the FileManager component.
59
- */
60
- getTreeviewExpandedIcon() {
61
- return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-icons.e-icon-expandable');
62
- }
63
- /**
64
- * Returns the active treeview node element from the FileManager component.
65
- */
66
- getTreeviewActiveItems() {
67
- return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-active');
68
- }
69
- /**
70
- * Returns the treeview items folder icon from the FileManager component.
71
- */
72
- getTreeviewItemsFolderIcon() {
73
- return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-list-icon.e-fe-folder');
74
- }
75
- /**
76
- * Returns the treeview items text from the FileManager component.
77
- */
78
- getTreeviewItemsText() {
79
- return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-list-text');
80
- }
81
- /**
82
- * Returns the largeIcon element from the FileManager component.
83
- */
84
- getlargeIconsItems() {
85
- return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-large-icons .e-list-parent.e-ul .e-list-item"');
86
- }
87
- /**
88
- * Returns the active list element in largeIcon view from the FileManager component.
89
- */
90
- getlargeIconsActiveItems() {
91
- return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-large-icons .e-list-parent.e-ul .e-list-item.e-active');
92
- }
93
- /**
94
- * Returns the checked element in largeIcon view from the FileManager component.
95
- */
96
- getlargeIconsCheckedItems() {
97
- return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-large-icons .e-list-parent.e-ul .e-list-item .e-checkbox-wrapper .e-check');
98
- }
99
- /**
100
- * Returns the grid element from the FileManager component.
101
- */
102
- getGridElement() {
103
- return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-grid');
104
- }
105
- /**
106
- * Returns the active element in grid view from the FileManager component.
107
- */
108
- getGridActiveElements() {
109
- return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-grid .e-gridcontent .e-table .e-row .e-rowcell.e-active');
110
- }
111
- /**
112
- * Returns the checked element in grid view from the FileManager component.
113
- */
114
- getGridCheckedElements() {
115
- return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-grid .e-gridcontent .e-table .e-row .e-rowcell .e-checkbox-wrapper .e-check');
116
- }
117
- /**
118
- * Returns the dialog element from the FileManager component.
119
- */
120
- getDialogElement() {
121
- return this.selector('#' + this.id + '.e-filemanager .e-dialog.e-popup.e-popup-open');
122
- }
123
- /**
124
- * Returns the breadcrumbBar element from the FileManager component.
125
- */
126
- getBreadCrumbBarElement() {
127
- return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-address .e-addressbar-ul .e-address-list-item');
128
- }
129
- /**
130
- * Returns the splitter element from the FileManager component.
131
- */
132
- getSplitterElement() {
133
- return this.selector('#' + this.id + '.e-filemanager .e-splitter.e-splitter-horizontal');
134
- }
135
- /**
136
- * Returns the contextmenu element from the FileManager component.
137
- */
138
- getContextMenuElement() {
139
- return this.selector('.e-fe-popup .e-contextmenu');
140
- }
141
- /**
142
- * Returns the sortby popup element from the FileManager component.
143
- */
144
- getSortByPopupElement() {
145
- return this.selector('.e-dropdown-popup.e-fe-popup.e-popup-open');
146
- }
147
- setModel(property, value) {
148
- let cy;
149
- return cy.get('#' + this.id).then((ele) => {
150
- return ele[0].ej2_instances[0][property] = value;
151
- });
152
- }
153
- getModel(property) {
154
- let cy;
155
- return cy.get('#' + this.id).then((ele) => {
156
- return ele[0].ej2_instances[0][property];
157
- });
158
- }
159
- invoke(fName, args = []) {
160
- let cy;
161
- return cy.get('#' + this.id).then((ele) => {
162
- var inst = ele[0].ej2_instances[0];
163
- return inst[fName].apply(inst, args);
164
- });
165
- }
166
- }
167
- exports.FileManagerHelpers = FileManagerHelpers;
35
+ FileManagerHelpers.prototype.selector = function (arg) {
36
+ return (this.wrapperFn ? this.wrapperFn(arg) : arg);
37
+ };
38
+ /**
39
+ * Returns the root element of the FileManager component.
40
+ */
41
+ FileManagerHelpers.prototype.getElement = function () {
42
+ return this.selector('#' + this.id);
43
+ };
44
+ /**
45
+ * Returns the toolbar items from the FileManager component.
46
+ */
47
+ FileManagerHelpers.prototype.getToolbarItems = function () {
48
+ return this.selector('#' + this.id + '.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item');
49
+ };
50
+ /**
51
+ * Returns the active toolbar item element from the FileManager component.
52
+ */
53
+ FileManagerHelpers.prototype.getToolbarItemsActive = function () {
54
+ return this.selector('#' + this.id + '.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-active');
55
+ };
56
+ FileManagerHelpers.prototype.getTreeviewItems = function () {
57
+ return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item');
58
+ };
59
+ /**
60
+ * Returns the collapsed treeview node element from the FileManager component.
61
+ */
62
+ FileManagerHelpers.prototype.getTreeviewCollapsedItems = function () {
63
+ return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-node-collapsed');
64
+ };
65
+ /**
66
+ * Returns the collapsed icon of treeview node element from the FileManager component.
67
+ */
68
+ FileManagerHelpers.prototype.getTreeviewCollapsedIcon = function () {
69
+ return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-icons.e-icon-collapsible');
70
+ };
71
+ /**
72
+ * Returns the expanded icon of treeview node element from the FileManager component.
73
+ */
74
+ FileManagerHelpers.prototype.getTreeviewExpandedIcon = function () {
75
+ return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-icons.e-icon-expandable');
76
+ };
77
+ /**
78
+ * Returns the active treeview node element from the FileManager component.
79
+ */
80
+ FileManagerHelpers.prototype.getTreeviewActiveItems = function () {
81
+ return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-active');
82
+ };
83
+ /**
84
+ * Returns the treeview items folder icon from the FileManager component.
85
+ */
86
+ FileManagerHelpers.prototype.getTreeviewItemsFolderIcon = function () {
87
+ return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-list-icon.e-fe-folder');
88
+ };
89
+ /**
90
+ * Returns the treeview items text from the FileManager component.
91
+ */
92
+ FileManagerHelpers.prototype.getTreeviewItemsText = function () {
93
+ return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-list-text');
94
+ };
95
+ /**
96
+ * Returns the largeIcon element from the FileManager component.
97
+ */
98
+ FileManagerHelpers.prototype.getlargeIconsItems = function () {
99
+ return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-large-icons .e-list-parent.e-ul .e-list-item"');
100
+ };
101
+ /**
102
+ * Returns the active list element in largeIcon view from the FileManager component.
103
+ */
104
+ FileManagerHelpers.prototype.getlargeIconsActiveItems = function () {
105
+ return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-large-icons .e-list-parent.e-ul .e-list-item.e-active');
106
+ };
107
+ /**
108
+ * Returns the checked element in largeIcon view from the FileManager component.
109
+ */
110
+ FileManagerHelpers.prototype.getlargeIconsCheckedItems = function () {
111
+ return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-large-icons .e-list-parent.e-ul .e-list-item .e-checkbox-wrapper .e-check');
112
+ };
113
+ /**
114
+ * Returns the grid element from the FileManager component.
115
+ */
116
+ FileManagerHelpers.prototype.getGridElement = function () {
117
+ return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-grid');
118
+ };
119
+ /**
120
+ * Returns the active element in grid view from the FileManager component.
121
+ */
122
+ FileManagerHelpers.prototype.getGridActiveElements = function () {
123
+ return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-grid .e-gridcontent .e-table .e-row .e-rowcell.e-active');
124
+ };
125
+ /**
126
+ * Returns the checked element in grid view from the FileManager component.
127
+ */
128
+ FileManagerHelpers.prototype.getGridCheckedElements = function () {
129
+ return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-grid .e-gridcontent .e-table .e-row .e-rowcell .e-checkbox-wrapper .e-check');
130
+ };
131
+ /**
132
+ * Returns the dialog element from the FileManager component.
133
+ */
134
+ FileManagerHelpers.prototype.getDialogElement = function () {
135
+ return this.selector('#' + this.id + '.e-filemanager .e-dialog.e-popup.e-popup-open');
136
+ };
137
+ /**
138
+ * Returns the breadcrumbBar element from the FileManager component.
139
+ */
140
+ FileManagerHelpers.prototype.getBreadCrumbBarElement = function () {
141
+ return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-address .e-addressbar-ul .e-address-list-item');
142
+ };
143
+ /**
144
+ * Returns the splitter element from the FileManager component.
145
+ */
146
+ FileManagerHelpers.prototype.getSplitterElement = function () {
147
+ return this.selector('#' + this.id + '.e-filemanager .e-splitter.e-splitter-horizontal');
148
+ };
149
+ /**
150
+ * Returns the contextmenu element from the FileManager component.
151
+ */
152
+ FileManagerHelpers.prototype.getContextMenuElement = function () {
153
+ return this.selector('.e-fe-popup .e-contextmenu');
154
+ };
155
+ /**
156
+ * Returns the sortby popup element from the FileManager component.
157
+ */
158
+ FileManagerHelpers.prototype.getSortByPopupElement = function () {
159
+ return this.selector('.e-dropdown-popup.e-fe-popup.e-popup-open');
160
+ };
161
+ FileManagerHelpers.prototype.setModel = function (property, value) {
162
+ var cy;
163
+ return cy.get('#' + this.id).then(function (ele) {
164
+ return ele[0].ej2_instances[0][property] = value;
165
+ });
166
+ };
167
+ FileManagerHelpers.prototype.getModel = function (property) {
168
+ var cy;
169
+ return cy.get('#' + this.id).then(function (ele) {
170
+ return ele[0].ej2_instances[0][property];
171
+ });
172
+ };
173
+ FileManagerHelpers.prototype.invoke = function (fName, args) {
174
+ if (args === void 0) { args = []; }
175
+ var cy;
176
+ return cy.get('#' + this.id).then(function (ele) {
177
+ var inst = ele[0].ej2_instances[0];
178
+ return inst[fName].apply(inst, args);
179
+ });
180
+ };
181
+ return FileManagerHelpers;
182
+ }(e2e_1.TestHelper));
183
+ exports.FileManagerHelpers = FileManagerHelpers;
184
+ });
package/license CHANGED
@@ -1,10 +1,10 @@
1
- Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
2
-
3
- To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
4
-
5
- Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
6
-
7
- Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
8
-
9
- The Syncfusion license that contains the terms and conditions can be found at
1
+ Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
2
+
3
+ To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
4
+
5
+ Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
6
+
7
+ Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
8
+
9
+ The Syncfusion license that contains the terms and conditions can be found at
10
10
  https://www.syncfusion.com/content/downloads/syncfusion_license.pdf
package/package.json CHANGED
@@ -1,72 +1,72 @@
1
- {
2
- "_from": "@syncfusion/ej2-filemanager@*",
3
- "_id": "@syncfusion/ej2-filemanager@20.1.47",
4
- "_inBundle": false,
5
- "_integrity": "sha512-X2ntzEAEsLkMwTr5MxCZGed0nFIN1Booq2Qmz6ABLlp0gQhLGO1v4ZQar0RiRjVHY0ViLasSRyCL7A3VOkvjkQ==",
6
- "_location": "/@syncfusion/ej2-filemanager",
7
- "_phantomChildren": {},
8
- "_requested": {
9
- "type": "range",
10
- "registry": true,
11
- "raw": "@syncfusion/ej2-filemanager@*",
12
- "name": "@syncfusion/ej2-filemanager",
13
- "escapedName": "@syncfusion%2fej2-filemanager",
14
- "scope": "@syncfusion",
15
- "rawSpec": "*",
16
- "saveSpec": null,
17
- "fetchSpec": "*"
18
- },
19
- "_requiredBy": [
20
- "/",
21
- "/@syncfusion/ej2",
22
- "/@syncfusion/ej2-angular-filemanager",
23
- "/@syncfusion/ej2-pdfviewer",
24
- "/@syncfusion/ej2-react-filemanager",
25
- "/@syncfusion/ej2-richtexteditor",
26
- "/@syncfusion/ej2-vue-filemanager"
27
- ],
28
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-filemanager/-/ej2-filemanager-20.1.47.tgz",
29
- "_shasum": "b533db437939ff1a76e373430a820cff89b68c87",
30
- "_spec": "@syncfusion/ej2-filemanager@*",
31
- "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
32
- "author": {
33
- "name": "Syncfusion Inc."
34
- },
35
- "bugs": {
36
- "url": "https://github.com/syncfusion/ej2-javascript-ui-controls/issues"
37
- },
38
- "bundleDependencies": false,
39
- "dependencies": {
40
- "@syncfusion/ej2-base": "~20.1.50",
41
- "@syncfusion/ej2-buttons": "~20.1.52",
42
- "@syncfusion/ej2-data": "~20.1.47",
43
- "@syncfusion/ej2-grids": "~20.1.52",
44
- "@syncfusion/ej2-inputs": "~20.1.48",
45
- "@syncfusion/ej2-layouts": "~20.1.47",
46
- "@syncfusion/ej2-lists": "~20.1.47",
47
- "@syncfusion/ej2-navigations": "20.1.51-10460",
48
- "@syncfusion/ej2-popups": "~20.1.47",
49
- "@syncfusion/ej2-splitbuttons": "~20.1.47"
50
- },
51
- "deprecated": false,
52
- "description": "Essential JS 2 FileManager Component",
53
- "devDependencies": {},
54
- "es2015": "./dist/es6/ej2-filemanager.es2015.js",
55
- "homepage": "https://github.com/syncfusion/ej2-javascript-ui-controls#readme",
56
- "keywords": [
57
- "ej2",
58
- "syncfusion",
59
- "ej2-filemanager"
60
- ],
61
- "license": "SEE LICENSE IN license",
62
- "main": "./dist/ej2-filemanager.umd.min.js",
63
- "module": "./index.js",
64
- "name": "@syncfusion/ej2-filemanager",
65
- "repository": {
66
- "type": "git",
67
- "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
68
- },
69
- "typings": "index.d.ts",
70
- "version": "20.1.52-10460",
71
- "sideEffects": false
72
- }
1
+ {
2
+ "_from": "@syncfusion/ej2-filemanager@*",
3
+ "_id": "@syncfusion/ej2-filemanager@20.1.47",
4
+ "_inBundle": false,
5
+ "_integrity": "sha512-X2ntzEAEsLkMwTr5MxCZGed0nFIN1Booq2Qmz6ABLlp0gQhLGO1v4ZQar0RiRjVHY0ViLasSRyCL7A3VOkvjkQ==",
6
+ "_location": "/@syncfusion/ej2-filemanager",
7
+ "_phantomChildren": {},
8
+ "_requested": {
9
+ "type": "range",
10
+ "registry": true,
11
+ "raw": "@syncfusion/ej2-filemanager@*",
12
+ "name": "@syncfusion/ej2-filemanager",
13
+ "escapedName": "@syncfusion%2fej2-filemanager",
14
+ "scope": "@syncfusion",
15
+ "rawSpec": "*",
16
+ "saveSpec": null,
17
+ "fetchSpec": "*"
18
+ },
19
+ "_requiredBy": [
20
+ "/",
21
+ "/@syncfusion/ej2",
22
+ "/@syncfusion/ej2-angular-filemanager",
23
+ "/@syncfusion/ej2-pdfviewer",
24
+ "/@syncfusion/ej2-react-filemanager",
25
+ "/@syncfusion/ej2-richtexteditor",
26
+ "/@syncfusion/ej2-vue-filemanager"
27
+ ],
28
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-filemanager/-/ej2-filemanager-20.1.47.tgz",
29
+ "_shasum": "b533db437939ff1a76e373430a820cff89b68c87",
30
+ "_spec": "@syncfusion/ej2-filemanager@*",
31
+ "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
32
+ "author": {
33
+ "name": "Syncfusion Inc."
34
+ },
35
+ "bugs": {
36
+ "url": "https://github.com/syncfusion/ej2-javascript-ui-controls/issues"
37
+ },
38
+ "bundleDependencies": false,
39
+ "dependencies": {
40
+ "@syncfusion/ej2-base": "~20.1.50",
41
+ "@syncfusion/ej2-buttons": "~20.1.52",
42
+ "@syncfusion/ej2-data": "~20.1.47",
43
+ "@syncfusion/ej2-grids": "~20.1.52",
44
+ "@syncfusion/ej2-inputs": "~20.1.48",
45
+ "@syncfusion/ej2-layouts": "~20.1.47",
46
+ "@syncfusion/ej2-lists": "~20.1.47",
47
+ "@syncfusion/ej2-navigations": "20.1.51-10460",
48
+ "@syncfusion/ej2-popups": "~20.1.47",
49
+ "@syncfusion/ej2-splitbuttons": "~20.1.47"
50
+ },
51
+ "deprecated": false,
52
+ "description": "Essential JS 2 FileManager Component",
53
+ "devDependencies": {},
54
+ "es2015": "./dist/es6/ej2-filemanager.es2015.js",
55
+ "homepage": "https://github.com/syncfusion/ej2-javascript-ui-controls#readme",
56
+ "keywords": [
57
+ "ej2",
58
+ "syncfusion",
59
+ "ej2-filemanager"
60
+ ],
61
+ "license": "SEE LICENSE IN license",
62
+ "main": "./dist/ej2-filemanager.umd.min.js",
63
+ "module": "./index.js",
64
+ "name": "@syncfusion/ej2-filemanager",
65
+ "repository": {
66
+ "type": "git",
67
+ "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
68
+ },
69
+ "typings": "index.d.ts",
70
+ "version": "20.1.52-10461",
71
+ "sideEffects": false
72
+ }