@syncfusion/ej2-navigations 17.3.9-beta → 17.3.14-96615

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 (314) hide show
  1. package/.eslintrc.json +244 -0
  2. package/CHANGELOG.md +898 -800
  3. package/README.md +163 -163
  4. package/dist/ej2-navigations.umd.min.js +1 -10
  5. package/dist/ej2-navigations.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-navigations.es2015.js +325 -170
  7. package/dist/es6/ej2-navigations.es2015.js.map +1 -1
  8. package/dist/es6/ej2-navigations.es5.js +455 -300
  9. package/dist/es6/ej2-navigations.es5.js.map +1 -1
  10. package/dist/global/ej2-navigations.min.js +1 -10
  11. package/dist/global/ej2-navigations.min.js.map +1 -1
  12. package/dist/global/index.d.ts +0 -9
  13. package/dist/ts/accordion/accordion.ts +1312 -0
  14. package/dist/ts/common/h-scroll.ts +459 -0
  15. package/dist/ts/common/menu-base.ts +2131 -0
  16. package/dist/ts/common/v-scroll.ts +430 -0
  17. package/dist/ts/context-menu/context-menu.ts +119 -0
  18. package/dist/ts/menu/menu.ts +270 -0
  19. package/dist/ts/sidebar/sidebar.ts +817 -0
  20. package/dist/ts/tab/tab.ts +1761 -0
  21. package/dist/ts/toolbar/toolbar.ts +2076 -0
  22. package/dist/ts/treeview/treeview.ts +5050 -0
  23. package/helpers/e2e/index.js +3 -3
  24. package/license +10 -10
  25. package/package.json +135 -149
  26. package/src/accordion/accordion-model.d.ts +156 -156
  27. package/src/accordion/accordion.d.ts +1 -0
  28. package/src/accordion/accordion.js +40 -41
  29. package/src/common/h-scroll-model.d.ts +5 -5
  30. package/src/common/h-scroll.js +19 -20
  31. package/src/common/menu-base-model.d.ts +157 -157
  32. package/src/common/menu-base.d.ts +19 -0
  33. package/src/common/menu-base.js +94 -24
  34. package/src/common/v-scroll-model.d.ts +5 -5
  35. package/src/common/v-scroll.js +19 -19
  36. package/src/context-menu/context-menu-model.d.ts +15 -15
  37. package/src/context-menu/context-menu.js +19 -19
  38. package/src/menu/menu-model.d.ts +30 -30
  39. package/src/menu/menu.js +19 -19
  40. package/src/sidebar/sidebar-model.d.ts +136 -136
  41. package/src/sidebar/sidebar.js +19 -19
  42. package/src/tab/tab-model.d.ts +215 -215
  43. package/src/tab/tab.d.ts +3 -0
  44. package/src/tab/tab.js +117 -82
  45. package/src/toolbar/toolbar-model.d.ts +175 -175
  46. package/src/toolbar/toolbar.d.ts +1 -0
  47. package/src/toolbar/toolbar.js +30 -24
  48. package/src/treeview/treeview-model.d.ts +323 -323
  49. package/src/treeview/treeview.js +79 -33
  50. package/styles/accordion/_all.scss +2 -2
  51. package/styles/accordion/_bootstrap-dark-definition.scss +69 -69
  52. package/styles/accordion/_bootstrap-definition.scss +76 -76
  53. package/styles/accordion/_bootstrap4-definition.scss +82 -82
  54. package/styles/accordion/_fabric-dark-definition.scss +74 -74
  55. package/styles/accordion/_fabric-definition.scss +78 -78
  56. package/styles/accordion/_highcontrast-definition.scss +106 -106
  57. package/styles/accordion/_highcontrast-light-definition.scss +104 -104
  58. package/styles/accordion/_layout.scss +447 -447
  59. package/styles/accordion/_material-dark-definition.scss +75 -75
  60. package/styles/accordion/_material-definition.scss +72 -72
  61. package/styles/accordion/_theme.scss +479 -479
  62. package/styles/accordion/icons/_bootstrap-dark.scss +17 -17
  63. package/styles/accordion/icons/_bootstrap.scss +17 -17
  64. package/styles/accordion/icons/_bootstrap4.scss +17 -17
  65. package/styles/accordion/icons/_fabric-dark.scss +17 -17
  66. package/styles/accordion/icons/_fabric.scss +17 -17
  67. package/styles/accordion/icons/_highcontrast-light.scss +17 -17
  68. package/styles/accordion/icons/_highcontrast.scss +17 -17
  69. package/styles/accordion/icons/_material-dark.scss +17 -17
  70. package/styles/accordion/icons/_material.scss +17 -17
  71. package/styles/bootstrap-dark.css +7 -9
  72. package/styles/bootstrap.css +7 -9
  73. package/styles/bootstrap4.css +7 -9
  74. package/styles/bootstrap5-dark.css +0 -0
  75. package/styles/bootstrap5-dark.scss +0 -0
  76. package/styles/bootstrap5.css +0 -0
  77. package/styles/bootstrap5.scss +0 -0
  78. package/styles/context-menu/_all.scss +2 -2
  79. package/styles/context-menu/_bootstrap-dark-definition.scss +54 -54
  80. package/styles/context-menu/_bootstrap-definition.scss +52 -52
  81. package/styles/context-menu/_bootstrap4-definition.scss +52 -52
  82. package/styles/context-menu/_fabric-dark-definition.scss +54 -54
  83. package/styles/context-menu/_fabric-definition.scss +52 -52
  84. package/styles/context-menu/_highcontrast-definition.scss +52 -52
  85. package/styles/context-menu/_highcontrast-light-definition.scss +54 -54
  86. package/styles/context-menu/_layout-mixin.scss +175 -175
  87. package/styles/context-menu/_layout.scss +70 -70
  88. package/styles/context-menu/_material-dark-definition.scss +54 -54
  89. package/styles/context-menu/_material-definition.scss +52 -52
  90. package/styles/context-menu/_theme-mixin.scss +59 -59
  91. package/styles/context-menu/_theme.scss +36 -36
  92. package/styles/context-menu/bootstrap-dark.css +0 -1
  93. package/styles/context-menu/bootstrap.css +0 -1
  94. package/styles/context-menu/bootstrap4.css +0 -1
  95. package/styles/context-menu/fabric-dark.css +0 -1
  96. package/styles/context-menu/fabric.css +0 -1
  97. package/styles/context-menu/highcontrast-light.css +0 -1
  98. package/styles/context-menu/highcontrast.css +0 -1
  99. package/styles/context-menu/icons/_bootstrap-dark.scss +30 -30
  100. package/styles/context-menu/icons/_bootstrap.scss +30 -30
  101. package/styles/context-menu/icons/_bootstrap4.scss +30 -30
  102. package/styles/context-menu/icons/_fabric-dark.scss +30 -30
  103. package/styles/context-menu/icons/_fabric.scss +30 -30
  104. package/styles/context-menu/icons/_highcontrast-light.scss +30 -30
  105. package/styles/context-menu/icons/_highcontrast.scss +30 -30
  106. package/styles/context-menu/icons/_material-dark.scss +30 -30
  107. package/styles/context-menu/icons/_material.scss +30 -30
  108. package/styles/context-menu/material-dark.css +0 -1
  109. package/styles/context-menu/material.css +3 -4
  110. package/styles/fabric-dark.css +7 -9
  111. package/styles/fabric.css +7 -9
  112. package/styles/h-scroll/_all.scss +2 -2
  113. package/styles/h-scroll/_bootstrap-dark-definition.scss +49 -49
  114. package/styles/h-scroll/_bootstrap-definition.scss +50 -50
  115. package/styles/h-scroll/_bootstrap4-definition.scss +49 -49
  116. package/styles/h-scroll/_fabric-dark-definition.scss +50 -50
  117. package/styles/h-scroll/_fabric-definition.scss +48 -48
  118. package/styles/h-scroll/_highcontrast-definition.scss +52 -52
  119. package/styles/h-scroll/_highcontrast-light-definition.scss +54 -54
  120. package/styles/h-scroll/_layout.scss +198 -198
  121. package/styles/h-scroll/_material-dark-definition.scss +77 -77
  122. package/styles/h-scroll/_material-definition.scss +77 -77
  123. package/styles/h-scroll/_theme.scss +157 -157
  124. package/styles/h-scroll/icons/_bootstrap-dark.scss +49 -49
  125. package/styles/h-scroll/icons/_bootstrap.scss +49 -49
  126. package/styles/h-scroll/icons/_bootstrap4.scss +49 -49
  127. package/styles/h-scroll/icons/_fabric-dark.scss +49 -49
  128. package/styles/h-scroll/icons/_fabric.scss +49 -49
  129. package/styles/h-scroll/icons/_highcontrast-light.scss +49 -49
  130. package/styles/h-scroll/icons/_highcontrast.scss +49 -49
  131. package/styles/h-scroll/icons/_material-dark.scss +49 -49
  132. package/styles/h-scroll/icons/_material.scss +49 -49
  133. package/styles/highcontrast-light.css +7 -9
  134. package/styles/highcontrast.css +7 -9
  135. package/styles/material-dark.css +7 -9
  136. package/styles/material.css +21 -14
  137. package/styles/menu/_all.scss +2 -2
  138. package/styles/menu/_bootstrap-dark-definition.scss +63 -63
  139. package/styles/menu/_bootstrap-definition.scss +65 -65
  140. package/styles/menu/_bootstrap4-definition.scss +64 -64
  141. package/styles/menu/_fabric-dark-definition.scss +63 -63
  142. package/styles/menu/_fabric-definition.scss +64 -64
  143. package/styles/menu/_highcontrast-definition.scss +65 -65
  144. package/styles/menu/_highcontrast-light-definition.scss +61 -61
  145. package/styles/menu/_layout.scss +638 -638
  146. package/styles/menu/_material-dark-definition.scss +63 -63
  147. package/styles/menu/_material-definition.scss +64 -64
  148. package/styles/menu/_theme.scss +243 -243
  149. package/styles/menu/bootstrap-dark.css +0 -1
  150. package/styles/menu/bootstrap.css +0 -1
  151. package/styles/menu/bootstrap.scss +1 -0
  152. package/styles/menu/bootstrap4.css +0 -1
  153. package/styles/menu/fabric-dark.css +0 -1
  154. package/styles/menu/fabric.css +0 -1
  155. package/styles/menu/fabric.scss +1 -0
  156. package/styles/menu/highcontrast-light.css +0 -1
  157. package/styles/menu/highcontrast.css +0 -1
  158. package/styles/menu/highcontrast.scss +1 -0
  159. package/styles/menu/icons/_bootstrap-dark.scss +127 -127
  160. package/styles/menu/icons/_bootstrap.scss +127 -127
  161. package/styles/menu/icons/_bootstrap4.scss +127 -127
  162. package/styles/menu/icons/_fabric-dark.scss +127 -127
  163. package/styles/menu/icons/_fabric.scss +127 -127
  164. package/styles/menu/icons/_highcontrast-light.scss +127 -127
  165. package/styles/menu/icons/_highcontrast.scss +127 -127
  166. package/styles/menu/icons/_material-dark.scss +127 -127
  167. package/styles/menu/icons/_material.scss +127 -127
  168. package/styles/menu/material-dark.css +0 -1
  169. package/styles/menu/material.css +2 -3
  170. package/styles/menu/material.scss +1 -0
  171. package/styles/sidebar/_all.scss +3 -3
  172. package/styles/sidebar/_bootstrap-dark-definition.scss +4 -4
  173. package/styles/sidebar/_bootstrap-definition.scss +4 -4
  174. package/styles/sidebar/_bootstrap4-definition.scss +4 -4
  175. package/styles/sidebar/_fabric-dark-definition.scss +4 -4
  176. package/styles/sidebar/_fabric-definition.scss +6 -6
  177. package/styles/sidebar/_highcontrast-definition.scss +4 -4
  178. package/styles/sidebar/_highcontrast-light-definition.scss +4 -4
  179. package/styles/sidebar/_icons.scss +1 -1
  180. package/styles/sidebar/_material-dark-definition.scss +4 -4
  181. package/styles/sidebar/_material-definition.scss +6 -6
  182. package/styles/sidebar/_theme.scss +168 -168
  183. package/styles/sidebar/bootstrap-dark.css +0 -1
  184. package/styles/sidebar/bootstrap.css +0 -1
  185. package/styles/sidebar/bootstrap4.css +0 -1
  186. package/styles/sidebar/fabric-dark.css +0 -1
  187. package/styles/sidebar/fabric.css +0 -1
  188. package/styles/sidebar/highcontrast-light.css +0 -1
  189. package/styles/sidebar/highcontrast.css +0 -1
  190. package/styles/sidebar/material-dark.css +0 -1
  191. package/styles/sidebar/material.css +0 -1
  192. package/styles/tab/_all.scss +2 -2
  193. package/styles/tab/_bootstrap-dark-definition.scss +386 -386
  194. package/styles/tab/_bootstrap-definition.scss +396 -396
  195. package/styles/tab/_bootstrap4-definition.scss +401 -401
  196. package/styles/tab/_fabric-dark-definition.scss +394 -394
  197. package/styles/tab/_fabric-definition.scss +410 -410
  198. package/styles/tab/_highcontrast-definition.scss +434 -434
  199. package/styles/tab/_highcontrast-light-definition.scss +423 -423
  200. package/styles/tab/_icons.scss +43 -43
  201. package/styles/tab/_layout.scss +3528 -3521
  202. package/styles/tab/_material-dark-definition.scss +407 -407
  203. package/styles/tab/_material-definition.scss +416 -416
  204. package/styles/tab/_theme.scss +1751 -1751
  205. package/styles/tab/bootstrap-dark.css +7 -2
  206. package/styles/tab/bootstrap.css +7 -2
  207. package/styles/tab/bootstrap4.css +7 -2
  208. package/styles/tab/fabric-dark.css +7 -2
  209. package/styles/tab/fabric.css +7 -2
  210. package/styles/tab/highcontrast-light.css +7 -2
  211. package/styles/tab/highcontrast.css +7 -2
  212. package/styles/tab/icons/_bootstrap-dark.scss +132 -132
  213. package/styles/tab/icons/_bootstrap.scss +132 -132
  214. package/styles/tab/icons/_bootstrap4.scss +132 -132
  215. package/styles/tab/icons/_fabric-dark.scss +132 -132
  216. package/styles/tab/icons/_fabric.scss +132 -132
  217. package/styles/tab/icons/_highcontrast-light.scss +132 -132
  218. package/styles/tab/icons/_highcontrast.scss +132 -132
  219. package/styles/tab/icons/_material-dark.scss +132 -132
  220. package/styles/tab/icons/_material.scss +132 -132
  221. package/styles/tab/material-dark.css +7 -2
  222. package/styles/tab/material.css +7 -2
  223. package/styles/tailwind-dark.css +0 -0
  224. package/styles/tailwind-dark.scss +0 -0
  225. package/styles/tailwind.css +0 -0
  226. package/styles/tailwind.scss +0 -0
  227. package/styles/toolbar/_all.scss +2 -2
  228. package/styles/toolbar/_bootstrap-dark-definition.scss +135 -135
  229. package/styles/toolbar/_bootstrap-definition.scss +134 -134
  230. package/styles/toolbar/_bootstrap4-definition.scss +139 -139
  231. package/styles/toolbar/_fabric-dark-definition.scss +155 -155
  232. package/styles/toolbar/_fabric-definition.scss +139 -139
  233. package/styles/toolbar/_highcontrast-definition.scss +149 -149
  234. package/styles/toolbar/_highcontrast-light-definition.scss +164 -164
  235. package/styles/toolbar/_layout.scss +1460 -1460
  236. package/styles/toolbar/_material-dark-definition.scss +180 -180
  237. package/styles/toolbar/_material-definition.scss +164 -164
  238. package/styles/toolbar/_theme.scss +451 -451
  239. package/styles/toolbar/bootstrap-dark.css +0 -1
  240. package/styles/toolbar/bootstrap.css +0 -1
  241. package/styles/toolbar/bootstrap.scss +1 -0
  242. package/styles/toolbar/bootstrap4.css +0 -1
  243. package/styles/toolbar/fabric-dark.css +0 -1
  244. package/styles/toolbar/fabric.css +0 -1
  245. package/styles/toolbar/fabric.scss +1 -0
  246. package/styles/toolbar/highcontrast-light.css +0 -1
  247. package/styles/toolbar/highcontrast.css +0 -1
  248. package/styles/toolbar/highcontrast.scss +1 -0
  249. package/styles/toolbar/icons/_bootstrap-dark.scss +16 -16
  250. package/styles/toolbar/icons/_bootstrap.scss +16 -16
  251. package/styles/toolbar/icons/_bootstrap4.scss +16 -16
  252. package/styles/toolbar/icons/_fabric-dark.scss +16 -16
  253. package/styles/toolbar/icons/_fabric.scss +16 -16
  254. package/styles/toolbar/icons/_highcontrast-light.scss +16 -16
  255. package/styles/toolbar/icons/_highcontrast.scss +16 -16
  256. package/styles/toolbar/icons/_material-dark.scss +16 -16
  257. package/styles/toolbar/icons/_material.scss +16 -16
  258. package/styles/toolbar/material-dark.css +0 -1
  259. package/styles/toolbar/material.css +0 -1
  260. package/styles/toolbar/material.scss +1 -0
  261. package/styles/treeview/_all.scss +2 -2
  262. package/styles/treeview/_bootstrap-dark-definition.scss +131 -131
  263. package/styles/treeview/_bootstrap-definition.scss +127 -127
  264. package/styles/treeview/_bootstrap4-definition.scss +153 -153
  265. package/styles/treeview/_fabric-dark-definition.scss +130 -130
  266. package/styles/treeview/_fabric-definition.scss +126 -126
  267. package/styles/treeview/_highcontrast-definition.scss +132 -132
  268. package/styles/treeview/_highcontrast-light-definition.scss +137 -137
  269. package/styles/treeview/_layout.scss +551 -551
  270. package/styles/treeview/_material-dark-definition.scss +126 -126
  271. package/styles/treeview/_material-definition.scss +126 -126
  272. package/styles/treeview/_theme.scss +331 -331
  273. package/styles/treeview/bootstrap-dark.css +0 -3
  274. package/styles/treeview/bootstrap.css +0 -3
  275. package/styles/treeview/bootstrap4.css +0 -3
  276. package/styles/treeview/fabric-dark.css +0 -3
  277. package/styles/treeview/fabric.css +0 -3
  278. package/styles/treeview/highcontrast-light.css +0 -3
  279. package/styles/treeview/highcontrast.css +0 -3
  280. package/styles/treeview/icons/_bootstrap-dark.scss +39 -39
  281. package/styles/treeview/icons/_bootstrap.scss +39 -39
  282. package/styles/treeview/icons/_bootstrap4.scss +39 -39
  283. package/styles/treeview/icons/_fabric-dark.scss +43 -43
  284. package/styles/treeview/icons/_fabric.scss +43 -43
  285. package/styles/treeview/icons/_highcontrast-light.scss +43 -43
  286. package/styles/treeview/icons/_highcontrast.scss +43 -43
  287. package/styles/treeview/icons/_material-dark.scss +43 -43
  288. package/styles/treeview/icons/_material.scss +43 -43
  289. package/styles/treeview/material-dark.css +0 -3
  290. package/styles/treeview/material.css +9 -3
  291. package/styles/v-scroll/_all.scss +2 -2
  292. package/styles/v-scroll/_bootstrap-dark-definition.scss +50 -50
  293. package/styles/v-scroll/_bootstrap-definition.scss +49 -49
  294. package/styles/v-scroll/_bootstrap4-definition.scss +49 -49
  295. package/styles/v-scroll/_fabric-dark-definition.scss +51 -51
  296. package/styles/v-scroll/_fabric-definition.scss +50 -50
  297. package/styles/v-scroll/_highcontrast-definition.scss +51 -51
  298. package/styles/v-scroll/_highcontrast-light-definition.scss +52 -52
  299. package/styles/v-scroll/_layout.scss +162 -162
  300. package/styles/v-scroll/_material-dark-definition.scss +78 -78
  301. package/styles/v-scroll/_material-definition.scss +77 -77
  302. package/styles/v-scroll/_theme.scss +133 -133
  303. package/styles/v-scroll/icons/_bootstrap-dark.scss +26 -26
  304. package/styles/v-scroll/icons/_bootstrap.scss +26 -26
  305. package/styles/v-scroll/icons/_bootstrap4.scss +26 -26
  306. package/styles/v-scroll/icons/_fabric-dark.scss +26 -26
  307. package/styles/v-scroll/icons/_fabric.scss +26 -26
  308. package/styles/v-scroll/icons/_highcontrast-light.scss +26 -26
  309. package/styles/v-scroll/icons/_highcontrast.scss +26 -26
  310. package/styles/v-scroll/icons/_material-dark.scss +26 -26
  311. package/styles/v-scroll/icons/_material.scss +26 -26
  312. package/tslint.json +111 -0
  313. package/.gitlab/merge_request_templates/Bug.md +0 -63
  314. package/.gitlab/merge_request_templates/feature.md +0 -39
@@ -1,22 +1,22 @@
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
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
- 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;
18
- return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
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
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
+ 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;
18
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
19
+ };
20
20
  import { Touch, Component, EventHandler, selectAll, getUniqueID, removeClass } from '@syncfusion/ej2-base';
21
21
  import { NotifyPropertyChanges, Property, Browser, detach, createElement as buildTag } from '@syncfusion/ej2-base';
22
22
  import { classList, isNullOrUndefined } from '@syncfusion/ej2-base';
@@ -1,4 +1,4 @@
1
- import { attributes, getUniqueID, Collection, NotifyPropertyChanges, INotifyPropertyChanged, Property } from '@syncfusion/ej2-base';import { getZindexPartial } from '@syncfusion/ej2-popups';import { MenuBase, MenuItem } from '../common/menu-base';import { MenuItemModel } from './../common/menu-base-model';
1
+ import { attributes, getUniqueID, Collection, NotifyPropertyChanges, INotifyPropertyChanged, Property } from '@syncfusion/ej2-base';
2
2
  import {MenuBaseModel} from "../common/menu-base-model";
3
3
 
4
4
  /**
@@ -7,23 +7,23 @@ import {MenuBaseModel} from "../common/menu-base-model";
7
7
  export interface ContextMenuModel extends MenuBaseModel{
8
8
 
9
9
  /**
10
- * Specifies target element selector in which the ContextMenu should be opened.
11
- * @default ''
12
- */
13
- target?: string;
10
+ * Specifies target element selector in which the ContextMenu should be opened.
11
+ * @default ''
12
+ */
13
+ target?: string;
14
14
 
15
15
  /**
16
- * Specifies the filter selector for elements inside the target in that the context menu will be opened.
17
- * @default ''
18
- */
19
- filter?: string;
16
+ * Specifies the filter selector for elements inside the target in that the context menu will be opened.
17
+ * @default ''
18
+ */
19
+ filter?: string;
20
20
 
21
21
  /**
22
- * Specifies menu items with its properties which will be rendered as ContextMenu.
23
- * @default []
24
- * @aspType object
25
- * @blazorType object
26
- */
27
- items?: MenuItemModel[];
22
+ * Specifies menu items with its properties which will be rendered as ContextMenu.
23
+ * @default []
24
+ * @aspType object
25
+ * @blazorType object
26
+ */
27
+ items?: MenuItemModel[];
28
28
 
29
29
  }
@@ -1,22 +1,22 @@
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
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
- 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;
18
- return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
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
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
+ 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;
18
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
19
+ };
20
20
  /// <reference path='../common/menu-base-model.d.ts'/>
21
21
  import { attributes, getUniqueID, Collection, NotifyPropertyChanges, Property } from '@syncfusion/ej2-base';
22
22
  import { getZindexPartial } from '@syncfusion/ej2-popups';
@@ -1,4 +1,4 @@
1
- import { attributes, NotifyPropertyChanges, INotifyPropertyChanged, Property } from '@syncfusion/ej2-base';import { Browser, Complex, getUniqueID } from '@syncfusion/ej2-base';import { MenuBase, FieldSettings } from '../common/menu-base';import { MenuItemModel, FieldSettingsModel } from '../common/menu-base-model';
1
+ import { attributes, NotifyPropertyChanges, INotifyPropertyChanged, Property } from '@syncfusion/ej2-base';
2
2
  import {Orientation} from "./menu";
3
3
  import {MenuBaseModel} from "../common/menu-base-model";
4
4
 
@@ -8,46 +8,46 @@ import {MenuBaseModel} from "../common/menu-base-model";
8
8
  export interface MenuModel extends MenuBaseModel{
9
9
 
10
10
  /**
11
- * Specified the orientation of Menu whether it can be horizontal or vertical.
12
- * @default 'Horizontal'
13
- */
14
- orientation?: Orientation;
11
+ * Specified the orientation of Menu whether it can be horizontal or vertical.
12
+ * @default 'Horizontal'
13
+ */
14
+ orientation?: Orientation;
15
15
 
16
16
  /**
17
- * Specifies target element to open/close Menu while click in Hamburger mode.
18
- * @default ''
19
- */
20
- target?: string;
17
+ * Specifies target element to open/close Menu while click in Hamburger mode.
18
+ * @default ''
19
+ */
20
+ target?: string;
21
21
 
22
22
  /**
23
- * Specifies the template for Menu item.
24
- * @default null
25
- */
26
- template?: string;
23
+ * Specifies the template for Menu item.
24
+ * @default null
25
+ */
26
+ template?: string;
27
27
 
28
28
  /**
29
- * Specifies whether to enable / disable the scrollable option in Menu.
30
- * @default false
31
- */
32
- enableScrolling?: boolean;
29
+ * Specifies whether to enable / disable the scrollable option in Menu.
30
+ * @default false
31
+ */
32
+ enableScrolling?: boolean;
33
33
 
34
34
  /**
35
- * Specifies whether to enable / disable the hamburger mode in Menu.
36
- * @default false
37
- */
38
- hamburgerMode?: boolean;
35
+ * Specifies whether to enable / disable the hamburger mode in Menu.
36
+ * @default false
37
+ */
38
+ hamburgerMode?: boolean;
39
39
 
40
40
  /**
41
- * Specifies the title text for hamburger mode in Menu.
42
- * @default 'Menu'
43
- */
44
- title?: string;
41
+ * Specifies the title text for hamburger mode in Menu.
42
+ * @default 'Menu'
43
+ */
44
+ title?: string;
45
45
 
46
46
  /**
47
- * Specifies mapping fields from the dataSource.
48
- * @default { itemId: "id", text: "text", parentId: "parentId", iconCss: "iconCss", url: "url", separator: "separator",
49
- * children: "items" }
50
- */
51
- fields?: FieldSettingsModel;
47
+ * Specifies mapping fields from the dataSource.
48
+ * @default { itemId: "id", text: "text", parentId: "parentId", iconCss: "iconCss", url: "url", separator: "separator",
49
+ * children: "items" }
50
+ */
51
+ fields?: FieldSettingsModel;
52
52
 
53
53
  }
package/src/menu/menu.js CHANGED
@@ -1,22 +1,22 @@
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
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
- 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;
18
- return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
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
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
+ 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;
18
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
19
+ };
20
20
  /// <reference path='../common/menu-base-model.d.ts'/>
21
21
  import { attributes, NotifyPropertyChanges, Property } from '@syncfusion/ej2-base';
22
22
  import { Browser, Complex, getUniqueID } from '@syncfusion/ej2-base';
@@ -1,4 +1,4 @@
1
- import { Component, formatUnit, EventHandler, Event, isNullOrUndefined, closest, isBlazor } from '@syncfusion/ej2-base';import { Property, EmitType, NotifyPropertyChanges, INotifyPropertyChanged, Browser } from '@syncfusion/ej2-base';import { setStyleAttribute as setStyle, addClass, removeClass, createElement, Touch, SwipeEventArgs } from '@syncfusion/ej2-base';
1
+ import { Component, formatUnit, EventHandler, Event, isNullOrUndefined, closest, isBlazor } from '@syncfusion/ej2-base';
2
2
  import {SidebarPosition,SidebarType,EventArgs,ChangeEventArgs} from "./sidebar";
3
3
  import {ComponentModel} from '@syncfusion/ej2-base';
4
4
 
@@ -8,178 +8,178 @@ import {ComponentModel} from '@syncfusion/ej2-base';
8
8
  export interface SidebarModel extends ComponentModel{
9
9
 
10
10
  /**
11
- * Specifies the size of the Sidebar in dock state.
12
- * > For more details about dockSize refer to
13
- * [`Dock`](https://ej2.syncfusion.com/documentation/sidebar/docking-sidebar/) documentation.
14
- * @default 'auto'
15
- */
16
- dockSize?: string | number;
11
+ * Specifies the size of the Sidebar in dock state.
12
+ * > For more details about dockSize refer to
13
+ * [`Dock`](https://ej2.syncfusion.com/documentation/sidebar/docking-sidebar/) documentation.
14
+ * @default 'auto'
15
+ */
16
+ dockSize?: string | number;
17
17
 
18
18
  /**
19
- * Specifies the media query string for resolution, which when met opens the Sidebar.
20
- * ```typescript
21
- * let defaultSidebar: Sidebar = new Sidebar({
22
- * mediaQuery:'(min-width: 600px)'
23
- * });
24
- * ```
25
- * > For more details about mediaQuery refer to
26
- * [`Auto Close`](https://ej2.syncfusion.com/documentation/sidebar/auto-close/) documentation.
27
- * @default null
28
- * @aspType string
29
- * @blazorType string
30
- */
31
- mediaQuery?: string | MediaQueryList;
19
+ * Specifies the media query string for resolution, which when met opens the Sidebar.
20
+ * ```typescript
21
+ * let defaultSidebar: Sidebar = new Sidebar({
22
+ * mediaQuery:'(min-width: 600px)'
23
+ * });
24
+ * ```
25
+ * > For more details about mediaQuery refer to
26
+ * [`Auto Close`](https://ej2.syncfusion.com/documentation/sidebar/auto-close/) documentation.
27
+ * @default null
28
+ * @aspType string
29
+ * @blazorType string
30
+ */
31
+ mediaQuery?: string | MediaQueryList;
32
32
 
33
33
  /**
34
- * Specifies the docking state of the component.
35
- * > For more details about enableDock refer to
36
- * [`Dock`](https://ej2.syncfusion.com/documentation/sidebar/docking-sidebar/) documentation.
37
- * @default false
38
- */
39
- enableDock?: boolean;
34
+ * Specifies the docking state of the component.
35
+ * > For more details about enableDock refer to
36
+ * [`Dock`](https://ej2.syncfusion.com/documentation/sidebar/docking-sidebar/) documentation.
37
+ * @default false
38
+ */
39
+ enableDock?: boolean;
40
40
 
41
41
  /**
42
- * Enables the expand or collapse while swiping in touch devices.
43
- * This is not a sidebar property.
44
- * @default 'en-US'
45
- * @private
46
- */
47
- locale?: string;
42
+ * Enables the expand or collapse while swiping in touch devices.
43
+ * This is not a sidebar property.
44
+ * @default 'en-US'
45
+ * @private
46
+ */
47
+ locale?: string;
48
48
 
49
49
  /**
50
- * Enable or disable persisting component's state between page reloads. If enabled, following list of states will be persisted.
51
- * 1. Position
52
- * 2. Type
53
- * @default false
54
- */
55
- enablePersistence?: boolean;
50
+ * Enable or disable persisting component's state between page reloads. If enabled, following list of states will be persisted.
51
+ * 1. Position
52
+ * 2. Type
53
+ * @default false
54
+ */
55
+ enablePersistence?: boolean;
56
56
 
57
57
  /**
58
- * Enables the expand or collapse while swiping in touch devices.
59
- * @default true
60
- */
61
- enableGestures?: boolean;
58
+ * Enables the expand or collapse while swiping in touch devices.
59
+ * @default true
60
+ */
61
+ enableGestures?: boolean;
62
62
 
63
63
  /**
64
- * Gets or sets the Sidebar component is open or close.
65
- * > When the Sidebar type is set to `Auto`,
66
- * the component will be expanded in the desktop and collapsed in the mobile mode regardless of the isOpen property.
67
- * @default false
68
- */
69
- isOpen?: boolean;
64
+ * Gets or sets the Sidebar component is open or close.
65
+ * > When the Sidebar type is set to `Auto`,
66
+ * the component will be expanded in the desktop and collapsed in the mobile mode regardless of the isOpen property.
67
+ * @default false
68
+ */
69
+ isOpen?: boolean;
70
70
 
71
71
  /**
72
- * Specifies the Sidebar in RTL mode that displays the content in the right-to-left direction.
73
- * @default false
74
- */
75
- enableRtl?: boolean;
72
+ * Specifies the Sidebar in RTL mode that displays the content in the right-to-left direction.
73
+ * @default false
74
+ */
75
+ enableRtl?: boolean;
76
76
 
77
77
  /**
78
- * Enable or disable the animation transitions on expanding or collapsing the Sidebar.
79
- * @default true
80
- */
81
- animate?: boolean;
78
+ * Enable or disable the animation transitions on expanding or collapsing the Sidebar.
79
+ * @default true
80
+ */
81
+ animate?: boolean;
82
82
 
83
83
  /**
84
- * Specifies the height of the Sidebar.
85
- * @default 'auto'
86
- * @private
87
- */
88
- height?: string | number;
84
+ * Specifies the height of the Sidebar.
85
+ * @default 'auto'
86
+ * @private
87
+ */
88
+ height?: string | number;
89
89
 
90
90
  /**
91
- * Specifies whether the Sidebar need to be closed or not when document area is clicked.
92
- * @default false
93
- */
94
- closeOnDocumentClick?: boolean;
91
+ * Specifies whether the Sidebar need to be closed or not when document area is clicked.
92
+ * @default false
93
+ */
94
+ closeOnDocumentClick?: boolean;
95
95
 
96
96
  /**
97
- * Specifies the position of the Sidebar (Left/Right) corresponding to the main content.
98
- * > For more details about SidebarPosition refer to
99
- * [`position`](https://ej2.syncfusion.com/documentation/sidebar/getting-started/#position) documentation.
100
- * @default 'Left'
101
- */
102
- position?: SidebarPosition;
97
+ * Specifies the position of the Sidebar (Left/Right) corresponding to the main content.
98
+ * > For more details about SidebarPosition refer to
99
+ * [`position`](https://ej2.syncfusion.com/documentation/sidebar/getting-started/#position) documentation.
100
+ * @default 'Left'
101
+ */
102
+ position?: SidebarPosition;
103
103
 
104
104
  /**
105
- * Allows to place the sidebar inside the target element.
106
- * > For more details about target refer to
107
- * [`Custom Context`](https://ej2.syncfusion.com/documentation/sidebar/custom-context/) documentation.
108
- * @default null
109
- */
110
- target?: HTMLElement | string;
111
-
112
- /**
113
- * Specifies the whether to apply overlay options to main content when the Sidebar is in an open state.
114
- * > For more details about showBackdrop refer to
115
- * [`Backdrop`](https://ej2.syncfusion.com/documentation/sidebar/getting-started/#enable-backdrop) documentation.
116
- * @default false
117
- */
118
- showBackdrop?: boolean;
119
-
120
- /**
121
- * Specifies the expanding types of the Sidebar.
122
- * * `Over` - The sidebar floats over the main content area.
123
- * * `Push` - The sidebar pushes the main content area to appear side-by-side, and shrinks the main content within the screen width.
124
- * * `Slide` - The sidebar translates the x and y positions of main content area based on the sidebar width.
125
- * The main content area will not be adjusted within the screen width.
126
- * * `Auto` - Sidebar with `Over` type in mobile resolution and `Push` type in other higher resolutions.
127
- * > For more details about SidebarType refer to
128
- * [`SidebarType`](./variations.html#types) documentation.
129
- * @default 'Auto'
130
- */
131
- type?: SidebarType;
105
+ * Allows to place the sidebar inside the target element.
106
+ * > For more details about target refer to
107
+ * [`Custom Context`](https://ej2.syncfusion.com/documentation/sidebar/custom-context/) documentation.
108
+ * @default null
109
+ */
110
+ target?: HTMLElement | string;
111
+
112
+ /**
113
+ * Specifies the whether to apply overlay options to main content when the Sidebar is in an open state.
114
+ * > For more details about showBackdrop refer to
115
+ * [`Backdrop`](https://ej2.syncfusion.com/documentation/sidebar/getting-started/#enable-backdrop) documentation.
116
+ * @default false
117
+ */
118
+ showBackdrop?: boolean;
119
+
120
+ /**
121
+ * Specifies the expanding types of the Sidebar.
122
+ * * `Over` - The sidebar floats over the main content area.
123
+ * * `Push` - The sidebar pushes the main content area to appear side-by-side, and shrinks the main content within the screen width.
124
+ * * `Slide` - The sidebar translates the x and y positions of main content area based on the sidebar width.
125
+ * The main content area will not be adjusted within the screen width.
126
+ * * `Auto` - Sidebar with `Over` type in mobile resolution and `Push` type in other higher resolutions.
127
+ * > For more details about SidebarType refer to
128
+ * [`SidebarType`](./variations.html#types) documentation.
129
+ * @default 'Auto'
130
+ */
131
+ type?: SidebarType;
132
132
 
133
133
  /**
134
- * Specifies the width of the Sidebar. By default, the width of the Sidebar sets based on the size of its content.
135
- * Width can also be set in pixel values.
136
- * @default 'auto'
137
- */
138
- width?: string | number;
134
+ * Specifies the width of the Sidebar. By default, the width of the Sidebar sets based on the size of its content.
135
+ * Width can also be set in pixel values.
136
+ * @default 'auto'
137
+ */
138
+ width?: string | number;
139
139
 
140
140
  /**
141
- * Specifies the z-index of the Sidebar. It is applicable only when sidebar act as overlay type.
142
- * @default 1000
143
- * @aspType double
144
- * @blazorType double
145
- */
146
- zIndex?: string | number;
141
+ * Specifies the z-index of the Sidebar. It is applicable only when sidebar act as overlay type.
142
+ * @default 1000
143
+ * @aspType double
144
+ * @blazorType double
145
+ */
146
+ zIndex?: string | number;
147
147
 
148
148
  /**
149
- * Triggers when component is created.
150
- * @event
151
- * @blazorproperty 'Created'
152
- */
153
- created?: EmitType<Object>;
149
+ * Triggers when component is created.
150
+ * @event
151
+ * @blazorproperty 'Created'
152
+ */
153
+ created?: EmitType<Object>;
154
154
 
155
155
  /**
156
- * Triggers when component is closed.
157
- * @event
158
- * @blazorproperty 'OnClose'
159
- * @blazorType Syncfusion.EJ2.Blazor.Navigations.EventArgs
160
- */
161
- close?: EmitType<EventArgs>;
156
+ * Triggers when component is closed.
157
+ * @event
158
+ * @blazorproperty 'OnClose'
159
+ * @blazorType Syncfusion.EJ2.Blazor.Navigations.EventArgs
160
+ */
161
+ close?: EmitType<EventArgs>;
162
162
 
163
163
  /**
164
- * Triggers when component is opened.
165
- * @event
166
- * @blazorproperty 'OnOpen'
167
- * @blazorType Syncfusion.EJ2.Blazor.Navigations.EventArgs
168
- */
169
- open?: EmitType<EventArgs>;
164
+ * Triggers when component is opened.
165
+ * @event
166
+ * @blazorproperty 'OnOpen'
167
+ * @blazorType Syncfusion.EJ2.Blazor.Navigations.EventArgs
168
+ */
169
+ open?: EmitType<EventArgs>;
170
170
 
171
171
  /**
172
- * Triggers when the state(expand/collapse) of the component is changed.
173
- * @event
174
- * @blazorproperty 'Changed'
175
- */
176
- change?: EmitType<ChangeEventArgs>;
172
+ * Triggers when the state(expand/collapse) of the component is changed.
173
+ * @event
174
+ * @blazorproperty 'Changed'
175
+ */
176
+ change?: EmitType<ChangeEventArgs>;
177
177
 
178
178
  /**
179
- * Triggers when component gets destroyed.
180
- * @event
181
- * @blazorproperty 'Destroyed'
182
- */
183
- destroyed?: EmitType<Object>;
179
+ * Triggers when component gets destroyed.
180
+ * @event
181
+ * @blazorproperty 'Destroyed'
182
+ */
183
+ destroyed?: EmitType<Object>;
184
184
 
185
185
  }
@@ -1,22 +1,22 @@
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
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
- 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;
18
- return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
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
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
+ 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;
18
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
19
+ };
20
20
  import { Component, formatUnit, EventHandler, Event, isNullOrUndefined, closest, isBlazor } from '@syncfusion/ej2-base';
21
21
  import { Property, NotifyPropertyChanges, Browser } from '@syncfusion/ej2-base';
22
22
  import { setStyleAttribute as setStyle, addClass, removeClass, Touch } from '@syncfusion/ej2-base';