angular-slickgrid 8.14.1 → 9.0.0

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 (419) hide show
  1. package/.gitbook.yaml +5 -0
  2. package/CHANGELOG.md +1691 -0
  3. package/CONTRIBUTING.md +17 -0
  4. package/README.md +13 -50
  5. package/angular.json +133 -0
  6. package/coverage/base.css +224 -0
  7. package/coverage/block-navigation.js +87 -0
  8. package/coverage/clover.xml +1620 -0
  9. package/coverage/coverage-final.json +9 -0
  10. package/coverage/favicon.png +0 -0
  11. package/coverage/index.html +176 -0
  12. package/coverage/library/components/angular-slickgrid.component.ts.html +5074 -0
  13. package/coverage/library/components/index.html +116 -0
  14. package/coverage/library/constants.ts.html +397 -0
  15. package/coverage/library/extensions/index.html +116 -0
  16. package/coverage/library/extensions/slickRowDetailView.ts.html +1261 -0
  17. package/coverage/library/index.html +116 -0
  18. package/coverage/library/modules/angular-slickgrid.module.ts.html +166 -0
  19. package/coverage/library/modules/index.html +116 -0
  20. package/coverage/library/services/angularUtil.service.ts.html +445 -0
  21. package/coverage/library/services/container.service.ts.html +163 -0
  22. package/coverage/library/services/index.html +161 -0
  23. package/coverage/library/services/translater.service.ts.html +199 -0
  24. package/coverage/library/services/utilities.ts.html +142 -0
  25. package/coverage/prettify.css +1 -0
  26. package/coverage/prettify.js +2 -0
  27. package/coverage/sort-arrow-sprite.png +0 -0
  28. package/coverage/sorter.js +196 -0
  29. package/dist/LICENSE +21 -0
  30. package/dist/README.md +142 -0
  31. package/{fesm2022 → dist/fesm2022}/angular-slickgrid.mjs +168 -194
  32. package/dist/fesm2022/angular-slickgrid.mjs.map +1 -0
  33. package/{i18n → dist/i18n}/en.json +2 -1
  34. package/{i18n → dist/i18n}/fr.json +2 -1
  35. package/{app/modules/angular-slickgrid → dist/library}/components/angular-slickgrid.component.d.ts +9 -9
  36. package/{app/modules/angular-slickgrid → dist/library}/extensions/slickRowDetailView.d.ts +4 -4
  37. package/{app/modules/angular-slickgrid → dist/library}/models/angularGridInstance.interface.d.ts +0 -2
  38. package/dist/library/models/index.d.ts +5 -0
  39. package/{app/modules/angular-slickgrid → dist/library}/models/rowDetailView.interface.d.ts +1 -1
  40. package/{app/modules/angular-slickgrid → dist/library}/modules/angular-slickgrid.module.d.ts +1 -1
  41. package/dist/public_api.d.ts +1 -0
  42. package/docs/README.md +5 -0
  43. package/docs/TOC.md +105 -0
  44. package/docs/backend-services/Custom-Backend-Service.md +50 -0
  45. package/docs/backend-services/GraphQL.md +276 -0
  46. package/docs/backend-services/OData.md +245 -0
  47. package/docs/backend-services/graphql/GraphQL-Filtering.md +156 -0
  48. package/docs/backend-services/graphql/GraphQL-JSON-Result.md +85 -0
  49. package/docs/backend-services/graphql/GraphQL-Pagination.md +77 -0
  50. package/docs/backend-services/graphql/GraphQL-Sorting.md +78 -0
  51. package/docs/column-functionalities/cell-menu.md +212 -0
  52. package/docs/column-functionalities/editors/autocomplete-editor.md +466 -0
  53. package/docs/column-functionalities/editors/date-editor-flatpickr.md +71 -0
  54. package/docs/column-functionalities/editors/date-editor-vanilla-calendar.md +91 -0
  55. package/docs/column-functionalities/editors/longtext-editor-textarea.md +80 -0
  56. package/docs/column-functionalities/editors/select-dropdown-editor.md +227 -0
  57. package/docs/column-functionalities/editors.md +604 -0
  58. package/docs/column-functionalities/filters/autocomplete-filter.md +183 -0
  59. package/docs/column-functionalities/filters/compound-filters.md +234 -0
  60. package/docs/column-functionalities/filters/custom-filter.md +117 -0
  61. package/docs/column-functionalities/filters/filter-intro.md +81 -0
  62. package/docs/column-functionalities/filters/input-filter.md +260 -0
  63. package/docs/column-functionalities/filters/range-filters.md +188 -0
  64. package/docs/column-functionalities/filters/select-filter.md +695 -0
  65. package/docs/column-functionalities/filters/single-search-filter.md +77 -0
  66. package/docs/column-functionalities/filters/styling-filled-filters.md +45 -0
  67. package/docs/column-functionalities/formatters.md +325 -0
  68. package/docs/column-functionalities/sorting.md +200 -0
  69. package/docs/developer-guides/csp-compliance.md +64 -0
  70. package/docs/events/Available-Events.md +223 -0
  71. package/docs/events/Grid-&-DataView-Events.md +211 -0
  72. package/docs/getting-started/quick-start.md +230 -0
  73. package/docs/getting-started/troubleshooting.md +80 -0
  74. package/docs/grid-functionalities/Column-Picker.md +22 -0
  75. package/docs/grid-functionalities/Composite-Editor-Modal.md +627 -0
  76. package/docs/grid-functionalities/Context-Menu.md +226 -0
  77. package/docs/grid-functionalities/Custom-Footer.md +80 -0
  78. package/docs/grid-functionalities/Custom-Tooltip-(plugin).md +258 -0
  79. package/docs/grid-functionalities/Export-to-Excel.md +457 -0
  80. package/docs/grid-functionalities/Export-to-Text-File.md +165 -0
  81. package/docs/grid-functionalities/FAQ.md +53 -0
  82. package/docs/grid-functionalities/Global-Options.md +29 -0
  83. package/docs/grid-functionalities/Grid-Auto-Resize.md +218 -0
  84. package/docs/grid-functionalities/Grid-Menu.md +134 -0
  85. package/docs/grid-functionalities/Grid-State-&-Preset.md +245 -0
  86. package/docs/grid-functionalities/Header-Menu-&-Header-Buttons.md +125 -0
  87. package/docs/grid-functionalities/Resize-by-Cell-Content.md +138 -0
  88. package/docs/grid-functionalities/Row-Selection.md +247 -0
  89. package/docs/grid-functionalities/Row-based-edit.md +71 -0
  90. package/docs/grid-functionalities/add-update-highlight.md +258 -0
  91. package/docs/grid-functionalities/column-row-spanning.md +74 -0
  92. package/docs/grid-functionalities/dynamic-item-metadata.md +124 -0
  93. package/docs/grid-functionalities/excel-copy-buffer.md +145 -0
  94. package/docs/grid-functionalities/frozen-columns-rows.md +164 -0
  95. package/docs/grid-functionalities/grouping-and-aggregators.md +269 -0
  96. package/docs/grid-functionalities/header-footer-slots.md +22 -0
  97. package/docs/grid-functionalities/infinite-scroll.md +150 -0
  98. package/docs/grid-functionalities/providing-grid-data.md +61 -0
  99. package/docs/grid-functionalities/row-detail.md +530 -0
  100. package/docs/grid-functionalities/tree-data-grid.md +391 -0
  101. package/docs/localization/Localization---Component-Sample.md +87 -0
  102. package/docs/localization/Localization-with-Custom-Locales.md +66 -0
  103. package/docs/localization/Localization-with-ngx-translate.md +148 -0
  104. package/docs/migrations/migration-to-2.x.md +304 -0
  105. package/docs/migrations/migration-to-3.x.md +295 -0
  106. package/docs/migrations/migration-to-4.x.md +83 -0
  107. package/docs/migrations/migration-to-5.x.md +160 -0
  108. package/docs/migrations/migration-to-6.x.md +128 -0
  109. package/docs/migrations/migration-to-7.x.md +294 -0
  110. package/docs/migrations/migration-to-8.x.md +316 -0
  111. package/docs/migrations/migration-to-9.x.md +219 -0
  112. package/docs/slick-grid-dataview-objects/slickgrid-dataview-objects.md +79 -0
  113. package/docs/styling/dark-mode.md +100 -0
  114. package/docs/styling/styling.md +250 -0
  115. package/docs/testing/testing-patterns.md +73 -0
  116. package/eslint.config.mjs +60 -0
  117. package/ng-package.json +10 -0
  118. package/package.json +24 -48
  119. package/src/assets/angular-logo.png +0 -0
  120. package/src/assets/angular-logo2.png +0 -0
  121. package/src/assets/data/collection_100_numbers.json +12 -0
  122. package/src/assets/data/collection_500_numbers.json +52 -0
  123. package/src/assets/data/countries.json +245 -0
  124. package/src/assets/data/country_names.json +245 -0
  125. package/src/assets/data/customers_100.json +102 -0
  126. package/src/assets/data/users.csv +5 -0
  127. package/src/assets/i18n/en.json +102 -0
  128. package/src/assets/i18n/fr.json +103 -0
  129. package/src/demos/app-routing.module.ts +108 -0
  130. package/src/demos/app.component.html +187 -0
  131. package/src/demos/app.component.scss +79 -0
  132. package/src/demos/app.component.ts +11 -0
  133. package/src/demos/app.module.ts +196 -0
  134. package/src/demos/environments/environment.dev.ts +3 -0
  135. package/src/demos/environments/environment.prod.ts +3 -0
  136. package/src/demos/environments/environment.ts +8 -0
  137. package/src/demos/examples/custom-angularComponentEditor.ts +187 -0
  138. package/src/demos/examples/custom-angularComponentFilter.ts +123 -0
  139. package/src/demos/examples/custom-buttonFormatter.component.ts +13 -0
  140. package/src/demos/examples/custom-inputEditor.ts +132 -0
  141. package/src/demos/examples/custom-inputFilter.ts +134 -0
  142. package/src/demos/examples/custom-titleFormatter.component.ts +9 -0
  143. package/src/demos/examples/data/collection_100_numbers.json +12 -0
  144. package/src/demos/examples/data/collection_500_numbers.json +52 -0
  145. package/src/demos/examples/data/countries.json +245 -0
  146. package/src/demos/examples/data/country_names.json +245 -0
  147. package/src/demos/examples/data/customers_100.json +102 -0
  148. package/src/demos/examples/data/users.csv +5 -0
  149. package/src/demos/examples/editor-ng-select.component.ts +38 -0
  150. package/src/demos/examples/example01.component.html +48 -0
  151. package/src/demos/examples/example01.component.ts +109 -0
  152. package/src/demos/examples/example02.component.html +45 -0
  153. package/src/demos/examples/example02.component.ts +218 -0
  154. package/src/demos/examples/example03.component.html +118 -0
  155. package/src/demos/examples/example03.component.ts +694 -0
  156. package/src/demos/examples/example04.component.html +87 -0
  157. package/src/demos/examples/example04.component.ts +326 -0
  158. package/src/demos/examples/example05.component.html +151 -0
  159. package/src/demos/examples/example05.component.ts +474 -0
  160. package/src/demos/examples/example06.component.html +163 -0
  161. package/src/demos/examples/example06.component.ts +446 -0
  162. package/src/demos/examples/example07.component.html +56 -0
  163. package/src/demos/examples/example07.component.scss +10 -0
  164. package/src/demos/examples/example07.component.ts +216 -0
  165. package/src/demos/examples/example08.component.html +51 -0
  166. package/src/demos/examples/example08.component.scss +23 -0
  167. package/src/demos/examples/example08.component.ts +195 -0
  168. package/src/demos/examples/example09.component.html +55 -0
  169. package/src/demos/examples/example09.component.scss +22 -0
  170. package/src/demos/examples/example09.component.ts +302 -0
  171. package/src/demos/examples/example10.component.html +103 -0
  172. package/src/demos/examples/example10.component.ts +309 -0
  173. package/src/demos/examples/example11.component.html +91 -0
  174. package/src/demos/examples/example11.component.ts +276 -0
  175. package/src/demos/examples/example12.component.html +98 -0
  176. package/src/demos/examples/example12.component.ts +317 -0
  177. package/src/demos/examples/example13.component.html +96 -0
  178. package/src/demos/examples/example13.component.ts +370 -0
  179. package/src/demos/examples/example14.component.html +50 -0
  180. package/src/demos/examples/example14.component.scss +11 -0
  181. package/src/demos/examples/example14.component.ts +156 -0
  182. package/src/demos/examples/example15.component.html +56 -0
  183. package/src/demos/examples/example15.component.ts +304 -0
  184. package/src/demos/examples/example16.component.html +77 -0
  185. package/src/demos/examples/example16.component.ts +277 -0
  186. package/src/demos/examples/example17.component.html +50 -0
  187. package/src/demos/examples/example17.component.ts +109 -0
  188. package/src/demos/examples/example18.component.html +132 -0
  189. package/src/demos/examples/example18.component.ts +445 -0
  190. package/src/demos/examples/example19-rowdetail.component.html +40 -0
  191. package/src/demos/examples/example19-rowdetail.component.ts +54 -0
  192. package/src/demos/examples/example19.component.html +79 -0
  193. package/src/demos/examples/example19.component.ts +316 -0
  194. package/src/demos/examples/example20.component.html +76 -0
  195. package/src/demos/examples/example20.component.scss +11 -0
  196. package/src/demos/examples/example20.component.ts +341 -0
  197. package/src/demos/examples/example21.component.html +86 -0
  198. package/src/demos/examples/example21.component.scss +16 -0
  199. package/src/demos/examples/example21.component.ts +140 -0
  200. package/src/demos/examples/example22.component.html +41 -0
  201. package/src/demos/examples/example22.component.ts +117 -0
  202. package/src/demos/examples/example23.component.html +111 -0
  203. package/src/demos/examples/example23.component.ts +323 -0
  204. package/src/demos/examples/example24.component.html +120 -0
  205. package/src/demos/examples/example24.component.scss +62 -0
  206. package/src/demos/examples/example24.component.ts +641 -0
  207. package/src/demos/examples/example25.component.html +60 -0
  208. package/src/demos/examples/example25.component.scss +8 -0
  209. package/src/demos/examples/example25.component.ts +255 -0
  210. package/src/demos/examples/example26.component.html +98 -0
  211. package/src/demos/examples/example26.component.scss +42 -0
  212. package/src/demos/examples/example26.component.ts +383 -0
  213. package/src/demos/examples/example27.component.html +138 -0
  214. package/src/demos/examples/example27.component.scss +10 -0
  215. package/src/demos/examples/example27.component.ts +369 -0
  216. package/src/demos/examples/example28.component.html +143 -0
  217. package/src/demos/examples/example28.component.scss +54 -0
  218. package/src/demos/examples/example28.component.ts +453 -0
  219. package/src/demos/examples/example29.component.html +30 -0
  220. package/src/demos/examples/example29.component.ts +70 -0
  221. package/src/demos/examples/example30.component.html +116 -0
  222. package/src/demos/examples/example30.component.scss +20 -0
  223. package/src/demos/examples/example30.component.ts +1070 -0
  224. package/src/demos/examples/example32.component.html +77 -0
  225. package/src/demos/examples/example32.component.scss +8 -0
  226. package/src/demos/examples/example32.component.ts +905 -0
  227. package/src/demos/examples/example33.component.html +50 -0
  228. package/src/demos/examples/example33.component.scss +46 -0
  229. package/src/demos/examples/example33.component.ts +571 -0
  230. package/src/demos/examples/example34.component.html +82 -0
  231. package/src/demos/examples/example34.component.scss +77 -0
  232. package/src/demos/examples/example34.component.ts +434 -0
  233. package/src/demos/examples/example35.component.html +77 -0
  234. package/src/demos/examples/example35.component.scss +18 -0
  235. package/src/demos/examples/example35.component.ts +264 -0
  236. package/src/demos/examples/example36.component.html +56 -0
  237. package/src/demos/examples/example36.component.scss +26 -0
  238. package/src/demos/examples/example36.component.ts +504 -0
  239. package/src/demos/examples/example37.component.html +30 -0
  240. package/src/demos/examples/example37.component.ts +123 -0
  241. package/src/demos/examples/example38.component.html +104 -0
  242. package/src/demos/examples/example38.component.scss +8 -0
  243. package/src/demos/examples/example38.component.ts +420 -0
  244. package/src/demos/examples/example39.component.html +112 -0
  245. package/src/demos/examples/example39.component.scss +8 -0
  246. package/src/demos/examples/example39.component.ts +371 -0
  247. package/src/demos/examples/example40.component.html +76 -0
  248. package/src/demos/examples/example40.component.ts +226 -0
  249. package/src/demos/examples/example41.component.html +50 -0
  250. package/src/demos/examples/example41.component.scss +42 -0
  251. package/src/demos/examples/example41.component.ts +229 -0
  252. package/src/demos/examples/example42.component.html +47 -0
  253. package/src/demos/examples/example42.component.ts +203 -0
  254. package/src/demos/examples/example43.component.html +94 -0
  255. package/src/demos/examples/example43.component.scss +30 -0
  256. package/src/demos/examples/example43.component.ts +449 -0
  257. package/src/demos/examples/example44.component.html +78 -0
  258. package/src/demos/examples/example44.component.scss +50 -0
  259. package/src/demos/examples/example44.component.ts +375 -0
  260. package/src/demos/examples/example45-detail.component.html +15 -0
  261. package/src/demos/examples/example45-detail.component.ts +97 -0
  262. package/src/demos/examples/example45.component.html +110 -0
  263. package/src/demos/examples/example45.component.scss +50 -0
  264. package/src/demos/examples/example45.component.ts +243 -0
  265. package/src/demos/examples/filter-ng-select.component.ts +33 -0
  266. package/src/demos/examples/grid-custom-pager.component.html +60 -0
  267. package/src/demos/examples/grid-custom-pager.component.scss +57 -0
  268. package/src/demos/examples/grid-custom-pager.component.ts +107 -0
  269. package/src/demos/examples/grid-remote.component.html +44 -0
  270. package/src/demos/examples/grid-remote.component.ts +164 -0
  271. package/src/demos/examples/home.component.html +39 -0
  272. package/src/demos/examples/home.component.ts +10 -0
  273. package/src/demos/examples/jsonp.ts +89 -0
  274. package/src/demos/examples/rowdetail-preload.component.ts +10 -0
  275. package/src/demos/examples/swt-common-grid-pagination.component.ts +160 -0
  276. package/src/demos/examples/swt-common-grid-test.component.html +37 -0
  277. package/src/demos/examples/swt-common-grid-test.component.ts +214 -0
  278. package/src/demos/examples/swt-common-grid.component.ts +436 -0
  279. package/src/demos/examples/swt-logger.service.ts +173 -0
  280. package/src/demos/examples/utilities.ts +9 -0
  281. package/src/favicon.ico +0 -0
  282. package/src/index.html +17 -0
  283. package/src/library/components/__tests__/angular-slickgrid.component.spec.ts +2638 -0
  284. package/src/library/components/angular-slickgrid.component.html +5 -0
  285. package/src/library/components/angular-slickgrid.component.ts +1662 -0
  286. package/src/library/constants.ts +105 -0
  287. package/src/library/extensions/__tests__/slickRowDetailView.spec.ts +751 -0
  288. package/src/library/extensions/index.ts +1 -0
  289. package/src/library/extensions/slickRowDetailView.ts +395 -0
  290. package/src/library/global-grid-options.ts +273 -0
  291. package/src/library/index.ts +11 -0
  292. package/src/library/models/angularComponentOutput.interface.ts +6 -0
  293. package/src/library/models/angularGridInstance.interface.ts +76 -0
  294. package/src/library/models/externalTestingDependencies.interface.ts +37 -0
  295. package/src/library/models/gridOption.interface.ts +15 -0
  296. package/src/library/models/index.ts +5 -0
  297. package/src/library/models/rowDetailView.interface.ts +16 -0
  298. package/src/library/modules/angular-slickgrid.module.spec.ts +25 -0
  299. package/src/library/modules/angular-slickgrid.module.ts +27 -0
  300. package/src/library/services/__tests__/angularUtilService.spec.ts +156 -0
  301. package/src/library/services/__tests__/container.service.spec.ts +25 -0
  302. package/src/library/services/__tests__/translater.service.spec.ts +43 -0
  303. package/src/library/services/__tests__/utilities.spec.ts +22 -0
  304. package/src/library/services/angularUtil.service.ts +120 -0
  305. package/src/library/services/container.service.ts +26 -0
  306. package/src/library/services/index.ts +4 -0
  307. package/src/library/services/translater.service.ts +38 -0
  308. package/src/library/services/utilities.ts +19 -0
  309. package/src/library/slickgrid-config.ts +10 -0
  310. package/src/main.ts +13 -0
  311. package/src/public_api.ts +1 -0
  312. package/src/styles.scss +178 -0
  313. package/test/cypress/e2e/example01.cy.ts +367 -0
  314. package/test/cypress/e2e/example02.cy.ts +60 -0
  315. package/test/cypress/e2e/example03.cy.ts +268 -0
  316. package/test/cypress/e2e/example04.cy.ts +254 -0
  317. package/test/cypress/e2e/example05.cy.ts +804 -0
  318. package/test/cypress/e2e/example06.cy.ts +890 -0
  319. package/test/cypress/e2e/example07.cy.ts +384 -0
  320. package/test/cypress/e2e/example08.cy.ts +190 -0
  321. package/test/cypress/e2e/example09.cy.ts +392 -0
  322. package/test/cypress/e2e/example10.cy.ts +650 -0
  323. package/test/cypress/e2e/example11.cy.ts +86 -0
  324. package/test/cypress/e2e/example12.cy.ts +269 -0
  325. package/test/cypress/e2e/example13.cy.ts +246 -0
  326. package/test/cypress/e2e/example14.cy.ts +122 -0
  327. package/test/cypress/e2e/example15.cy.ts +598 -0
  328. package/test/cypress/e2e/example16.cy.ts +427 -0
  329. package/test/cypress/e2e/example17.cy.ts +83 -0
  330. package/test/cypress/e2e/example18.cy.ts +431 -0
  331. package/test/cypress/e2e/example19.cy.ts +263 -0
  332. package/test/cypress/e2e/example20.cy.ts +264 -0
  333. package/test/cypress/e2e/example21.cy.ts +77 -0
  334. package/test/cypress/e2e/example22.cy.ts +94 -0
  335. package/test/cypress/e2e/example23.cy.ts +259 -0
  336. package/test/cypress/e2e/example24.cy.ts +707 -0
  337. package/test/cypress/e2e/example25.cy.ts +193 -0
  338. package/test/cypress/e2e/example26.cy.ts +111 -0
  339. package/test/cypress/e2e/example27.cy.ts +261 -0
  340. package/test/cypress/e2e/example28.cy.ts +740 -0
  341. package/test/cypress/e2e/example29.cy.ts +30 -0
  342. package/test/cypress/e2e/example30.cy.ts +757 -0
  343. package/test/cypress/e2e/example31.cy.ts +69 -0
  344. package/test/cypress/e2e/example32.cy.ts +272 -0
  345. package/test/cypress/e2e/example33.cy.ts +278 -0
  346. package/test/cypress/e2e/example34.cy.ts +84 -0
  347. package/test/cypress/e2e/example35.cy.ts +178 -0
  348. package/test/cypress/e2e/example36.cy.ts +219 -0
  349. package/test/cypress/e2e/example37.cy.ts +52 -0
  350. package/test/cypress/e2e/example38.cy.ts +160 -0
  351. package/test/cypress/e2e/example39.cy.ts +150 -0
  352. package/test/cypress/e2e/example40.cy.ts +126 -0
  353. package/test/cypress/e2e/example41.cy.ts +90 -0
  354. package/test/cypress/e2e/example42.cy.ts +82 -0
  355. package/test/cypress/e2e/example43.cy.ts +482 -0
  356. package/test/cypress/e2e/example44.cy.ts +458 -0
  357. package/test/cypress/e2e/example45.cy.ts +455 -0
  358. package/test/cypress/e2e/home.cy.ts +7 -0
  359. package/test/cypress/fixtures/example.json +5 -0
  360. package/test/cypress/plugins/index.ts +17 -0
  361. package/test/cypress/plugins/utilities.ts +28 -0
  362. package/test/cypress/support/commands.ts +88 -0
  363. package/test/cypress/support/common.ts +47 -0
  364. package/test/cypress/support/drag.ts +101 -0
  365. package/test/cypress/support/index.ts +20 -0
  366. package/test/cypress/tsconfig.json +9 -0
  367. package/test/cypress.config.ts +34 -0
  368. package/test/mockSlickEvent.ts +77 -0
  369. package/test/rxjsResourceStub.ts +69 -0
  370. package/test/test-setup.ts +6 -0
  371. package/test/translateServiceStub.ts +230 -0
  372. package/test/translaterServiceStub.ts +239 -0
  373. package/test/tsconfig.json +17 -0
  374. package/test/vitest-global-mocks.ts +41 -0
  375. package/test/vitest-global-setup.ts +3 -0
  376. package/test/vitest-pretest.ts +5 -0
  377. package/tsconfig.app.json +14 -0
  378. package/tsconfig.json +31 -0
  379. package/tsconfig.spec.json +11 -0
  380. package/types/sortablejs.d.ts +4 -0
  381. package/vite.config.mts +51 -0
  382. package/app/modules/angular-slickgrid/models/index.d.ts +0 -5
  383. package/esm2022/angular-slickgrid.mjs +0 -5
  384. package/esm2022/app/modules/angular-slickgrid/components/angular-slickgrid.component.mjs +0 -1407
  385. package/esm2022/app/modules/angular-slickgrid/constants.mjs +0 -96
  386. package/esm2022/app/modules/angular-slickgrid/extensions/index.mjs +0 -2
  387. package/esm2022/app/modules/angular-slickgrid/extensions/slickRowDetailView.mjs +0 -304
  388. package/esm2022/app/modules/angular-slickgrid/global-grid-options.mjs +0 -263
  389. package/esm2022/app/modules/angular-slickgrid/index.mjs +0 -8
  390. package/esm2022/app/modules/angular-slickgrid/models/angularComponentOutput.interface.mjs +0 -2
  391. package/esm2022/app/modules/angular-slickgrid/models/angularGridInstance.interface.mjs +0 -2
  392. package/esm2022/app/modules/angular-slickgrid/models/externalTestingDependencies.interface.mjs +0 -2
  393. package/esm2022/app/modules/angular-slickgrid/models/gridOption.interface.mjs +0 -2
  394. package/esm2022/app/modules/angular-slickgrid/models/index.mjs +0 -6
  395. package/esm2022/app/modules/angular-slickgrid/models/rowDetailView.interface.mjs +0 -2
  396. package/esm2022/app/modules/angular-slickgrid/modules/angular-slickgrid.module.mjs +0 -32
  397. package/esm2022/app/modules/angular-slickgrid/services/angularUtil.service.mjs +0 -88
  398. package/esm2022/app/modules/angular-slickgrid/services/container.service.mjs +0 -27
  399. package/esm2022/app/modules/angular-slickgrid/services/index.mjs +0 -5
  400. package/esm2022/app/modules/angular-slickgrid/services/translater.service.mjs +0 -45
  401. package/esm2022/app/modules/angular-slickgrid/services/utilities.mjs +0 -19
  402. package/esm2022/app/modules/angular-slickgrid/slickgrid-config.mjs +0 -8
  403. package/esm2022/public_api.mjs +0 -2
  404. package/fesm2022/angular-slickgrid.mjs.map +0 -1
  405. package/public_api.d.ts +0 -1
  406. /package/{index.d.ts → dist/index.d.ts} +0 -0
  407. /package/{app/modules/angular-slickgrid → dist/library}/constants.d.ts +0 -0
  408. /package/{app/modules/angular-slickgrid → dist/library}/extensions/index.d.ts +0 -0
  409. /package/{app/modules/angular-slickgrid → dist/library}/global-grid-options.d.ts +0 -0
  410. /package/{app/modules/angular-slickgrid → dist/library}/index.d.ts +0 -0
  411. /package/{app/modules/angular-slickgrid → dist/library}/models/angularComponentOutput.interface.d.ts +0 -0
  412. /package/{app/modules/angular-slickgrid → dist/library}/models/externalTestingDependencies.interface.d.ts +0 -0
  413. /package/{app/modules/angular-slickgrid → dist/library}/models/gridOption.interface.d.ts +0 -0
  414. /package/{app/modules/angular-slickgrid → dist/library}/services/angularUtil.service.d.ts +0 -0
  415. /package/{app/modules/angular-slickgrid → dist/library}/services/container.service.d.ts +0 -0
  416. /package/{app/modules/angular-slickgrid → dist/library}/services/index.d.ts +0 -0
  417. /package/{app/modules/angular-slickgrid → dist/library}/services/translater.service.d.ts +0 -0
  418. /package/{app/modules/angular-slickgrid → dist/library}/services/utilities.d.ts +0 -0
  419. /package/{app/modules/angular-slickgrid → dist/library}/slickgrid-config.d.ts +0 -0
@@ -0,0 +1,86 @@
1
+ describe('Example 11 - Add / Update / Highlight a Datagrid Item', () => {
2
+ const GRID_ROW_HEIGHT = 35;
3
+ const fullTitles = ['', 'Title', 'Duration (days)', '% Complete', 'Start', 'Finish', 'Effort Driven'];
4
+
5
+ it('should display Example title', () => {
6
+ cy.visit(`${Cypress.config('baseUrl')}/example11`);
7
+ cy.get('h2').should('contain', 'Example 11: Add / Update / Highlight a Datagrid Item');
8
+ });
9
+
10
+ it('should have exact column titles on 1st grid', () => {
11
+ cy.get('#slickGridContainer-grid11')
12
+ .find('.slick-header-columns')
13
+ .children()
14
+ .each(($child, index) => expect($child.text()).to.eq(fullTitles[index]));
15
+ });
16
+
17
+ it('should expect Task 0 to Task 4 on first 5 rows', () => {
18
+ const expectedTasks = ['Task 0', 'Task 1', 'Task 2', 'Task 3', 'Task 4'];
19
+
20
+ cy.get('#grid11')
21
+ .find('.slick-row')
22
+ .each(($row, index) => {
23
+ if (index > expectedTasks.length - 1) {
24
+ return;
25
+ }
26
+ cy.wrap($row).children('.slick-cell:nth(1)').should('contain', expectedTasks[index]);
27
+ });
28
+ });
29
+
30
+ it('should delete first row Task 0 from the grid', () => {
31
+ const expectedTasks = ['Task 1', 'Task 2', 'Task 3', 'Task 4'];
32
+
33
+ cy.get('#grid11').find('.slick-row').first().children('.slick-cell:nth(0)').click();
34
+
35
+ cy.get('#grid11')
36
+ .find('.slick-row')
37
+ .each(($row, index) => {
38
+ if (index > expectedTasks.length - 1) {
39
+ return;
40
+ }
41
+ cy.wrap($row).children('.slick-cell:nth(1)').should('contain', expectedTasks[index]);
42
+ });
43
+ });
44
+
45
+ it('should add 2 rows on the top of the grid', () => {
46
+ const expectedTasks = ['Task 1001', 'Task 1000', 'Task 1', 'Task 2', 'Task 3', 'Task 4'];
47
+
48
+ cy.get('[data-test="add-new-item-top-btn"]').click().click();
49
+
50
+ cy.get('#grid11')
51
+ .find('.slick-row')
52
+ .each(($row, index) => {
53
+ if (index > expectedTasks.length - 1) {
54
+ return;
55
+ }
56
+ cy.wrap($row).children('.slick-cell:nth(1)').should('contain', expectedTasks[index]);
57
+ });
58
+ });
59
+
60
+ it('should add 2 rows on the bottom of the grid', () => {
61
+ cy.get('[data-test="add-new-item-bottom-btn"]').click();
62
+
63
+ cy.get('#grid11').find('.slick-row').last().should('contain.text', 'Task 1002');
64
+ });
65
+
66
+ it('should click on highlight "Duration over 40" and expect few rows being highlighted in purple', () => {
67
+ cy.get('[data-test="highlight-duration40-btn"]').click();
68
+
69
+ cy.get('.slick-row.duration-bg').should('have.length.greaterThan', 1);
70
+ });
71
+
72
+ it('should scroll to bottom and expect last row to be "Task 1002"', () => {
73
+ cy.get('[data-test="scroll-bottom-btn"]').click();
74
+
75
+ cy.get('#grid11').find('.slick-row').last().should('contain.text', 'Task 1002');
76
+ });
77
+
78
+ it('should scroll to top and expect certain rows on top', () => {
79
+ // cy.get('[data-test="scroll-top-btn"]').click();
80
+ cy.get('.slick-viewport.slick-viewport-top.slick-viewport-left').scrollTo('top');
81
+
82
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 0}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 1001');
83
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 1}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 100');
84
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 2}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 1');
85
+ });
86
+ });
@@ -0,0 +1,269 @@
1
+ import { format } from '@formkit/tempo';
2
+
3
+ import { removeExtraSpaces } from '../plugins/utilities';
4
+
5
+ describe('Example 12: Localization (i18n)', () => {
6
+ const fullEnglishTitles = ['', 'Title', 'Description', 'Duration', 'Start', 'Finish', 'Completed', 'Completed'];
7
+ const fullFrenchTitles = ['', 'Titre', 'Description', 'Durée', 'Début', 'Fin', 'Terminé', 'Terminé'];
8
+
9
+ beforeEach(() => {
10
+ cy.restoreLocalStorage();
11
+
12
+ // create a console.log spy for later use
13
+ cy.window().then((win) => {
14
+ cy.spy(win.console, 'log');
15
+ });
16
+ });
17
+
18
+ afterEach(() => {
19
+ cy.saveLocalStorage();
20
+ });
21
+
22
+ it('should display Example title', () => {
23
+ cy.visit(`${Cypress.config('baseUrl')}/example12`);
24
+ cy.get('h2').should('contain', 'Example 12: Localization (i18n)');
25
+ });
26
+
27
+ describe('English Locale', () => {
28
+ it('should have exact English Column Titles in the grid', () => {
29
+ cy.get('#grid12')
30
+ .find('.slick-header-columns')
31
+ .children()
32
+ .each(($child, index) => expect($child.text()).to.eq(fullEnglishTitles[index]));
33
+ });
34
+
35
+ it('should have 0 row selection count shown in the grid left footer', () => {
36
+ cy.get('#slickGridContainer-grid12')
37
+ .find('.slick-custom-footer')
38
+ .find('div.left-footer')
39
+ .should(($span) => {
40
+ const text = removeExtraSpaces($span.text()); // remove all white spaces
41
+ expect(text).to.eq(`0 items selected`);
42
+ });
43
+ });
44
+
45
+ it('should have some metrics shown in the grid right footer', () => {
46
+ cy.get('#slickGridContainer-grid12')
47
+ .find('.slick-custom-footer')
48
+ .find('.right-footer')
49
+ .should(($span) => {
50
+ const text = removeExtraSpaces($span.text()); // remove all white spaces
51
+ const dateFormatted = format(new Date(), 'YYYY-MM-DD, hh:mm a');
52
+ expect(text).to.eq(`Last Update ${dateFormatted} | 1500 of 1500 items`);
53
+ });
54
+ });
55
+
56
+ it('should filter certain tasks with the word "ask 1" and expect filter to use contain/include text', () => {
57
+ const tasks = ['Task 1', 'Task 10', 'Task 11', 'Task 12'];
58
+
59
+ cy.get('.grid-canvas').find('.slick-row').should('be.visible');
60
+
61
+ cy.get('input.filter-title').type('ask 1');
62
+
63
+ cy.get('#grid12')
64
+ .find('.slick-row')
65
+ .each(($row, index) => {
66
+ if (index > tasks.length - 1) {
67
+ return;
68
+ }
69
+ cy.wrap($row).children('.slick-cell:nth(1)').should('contain', tasks[index]);
70
+ });
71
+ });
72
+ });
73
+
74
+ describe('French locale', () => {
75
+ it('should reset filters and switch locale to French', () => {
76
+ cy.get('#grid12').find('button.slick-grid-menu-button').click();
77
+
78
+ cy.get(`.slick-grid-menu:visible`).find('.slick-menu-item').first().find('span').contains('Clear all Filters').click();
79
+
80
+ cy.get('[data-test=language-button]').click();
81
+
82
+ cy.get('[data-test=selected-locale]').should('contain', 'fr.json');
83
+ });
84
+
85
+ it('should have French Column Titles in the grid after switching locale', () => {
86
+ cy.get('#grid12')
87
+ .find('.slick-header-columns')
88
+ .children()
89
+ .each(($child, index) => expect($child.text()).to.eq(fullFrenchTitles[index]));
90
+ });
91
+
92
+ it('should have 0 row selection count shown in the grid left footer', () => {
93
+ cy.get('#slickGridContainer-grid12')
94
+ .find('.slick-custom-footer')
95
+ .find('div.left-footer')
96
+ .should(($span) => {
97
+ const text = removeExtraSpaces($span.text()); // remove all white spaces
98
+ expect(text).to.eq(`0 éléments sélectionnés`);
99
+ });
100
+ });
101
+
102
+ it('should have some metrics shown in the grid right footer', () => {
103
+ cy.get('#slickGridContainer-grid12')
104
+ .find('.slick-custom-footer')
105
+ .find('.right-footer')
106
+ .should(($span) => {
107
+ const text = removeExtraSpaces($span.text()); // remove all white spaces
108
+ const dateFormatted = format(new Date(), 'YYYY-MM-DD, hh:mm a');
109
+ expect(text).to.eq(`Dernière mise à jour ${dateFormatted} | 1500 de 1500 éléments`);
110
+ });
111
+ });
112
+
113
+ it('should filter certain tasks', () => {
114
+ const tasks = ['Tâche 1', 'Tâche 10', 'Tâche 11', 'Tâche 12'];
115
+
116
+ cy.get('.grid-canvas').find('.slick-row').should('be.visible');
117
+
118
+ cy.get('input.filter-title').type('âche 1');
119
+
120
+ cy.get('#grid12')
121
+ .find('.slick-row')
122
+ .each(($row, index) => {
123
+ if (index > tasks.length - 1) {
124
+ return;
125
+ }
126
+ cy.wrap($row).children('.slick-cell:nth(1)').should('contain', tasks[index]);
127
+ });
128
+ });
129
+
130
+ it('should reset filters before filtering duration', () => {
131
+ cy.get('#grid12').find('button.slick-grid-menu-button').click();
132
+
133
+ cy.get(`.slick-grid-menu:visible`).find('.slick-menu-item').first().find('span').contains('Supprimer tous les filtres').click();
134
+ });
135
+
136
+ it('should filter duration with slider filter', () => {
137
+ cy.get('.filter-duration input[type=range]').as('range').invoke('val', 30).trigger('change', { force: true });
138
+
139
+ cy.wait(10);
140
+
141
+ cy.get('#grid12')
142
+ .find('.slick-row')
143
+ .each(($row, index) => {
144
+ let fullCellWidth: number;
145
+
146
+ // only checks first 5 rows
147
+ if (index > 5) {
148
+ return;
149
+ }
150
+
151
+ // get full cell width of the first cell, then return
152
+ cy.wrap($row)
153
+ .children('.slick-cell:nth(3)')
154
+ .first()
155
+ .then(($cell) => (fullCellWidth = $cell.width() as number));
156
+
157
+ cy.wrap($row)
158
+ .children('.slick-cell:nth(3)')
159
+ .children()
160
+ .should('not.have.css', 'background-color', 'rgb(255, 0, 0)')
161
+ .should(($el) => {
162
+ // calculate 25% and expect the element width to be about the calculated size with a (+/-)1px precision
163
+ const expectedWidth = fullCellWidth * 0.3;
164
+ expect(($el.width() as number) + 1).greaterThan(expectedWidth);
165
+ });
166
+ });
167
+ });
168
+ });
169
+
170
+ describe('Row Selection', () => {
171
+ it('should switch locale back to English and reset all Filters', () => {
172
+ cy.get('[data-test=language-button]').click();
173
+
174
+ cy.get('[data-test=selected-locale]').should('contain', 'en.json');
175
+
176
+ cy.get('#grid12').find('button.slick-grid-menu-button').click();
177
+
178
+ cy.get(`.slick-grid-menu:visible`).find('.slick-menu-item').first().find('span').contains('Clear all Filters').click();
179
+ });
180
+
181
+ it('should hover over the Title column and click on "Sort Descending" command', () => {
182
+ cy.get('#slickGridContainer-grid12')
183
+ .find('.slick-header-column:nth(1)')
184
+ .trigger('mouseover')
185
+ .children('.slick-header-menu-button')
186
+ .should('be.hidden')
187
+ .invoke('show')
188
+ .click();
189
+
190
+ cy.get('.slick-header-menu .slick-menu-command-list')
191
+ .should('be.visible')
192
+ .children('.slick-menu-item:nth-of-type(4)')
193
+ .children('.slick-menu-content')
194
+ .should('contain', 'Sort Descending')
195
+ .click();
196
+
197
+ cy.get('.slick-row').children('.slick-cell:nth(1)').first().should('contain', 'Task 1499');
198
+ });
199
+
200
+ it('should select the row with "Task 1497" and expect the Grid State to be called with it in the console', () => {
201
+ cy.get('#slickGridContainer-grid12').as('grid12');
202
+
203
+ cy.get('#grid12')
204
+ .contains('Task 1497')
205
+ .parent()
206
+ .children('.slick-cell-checkboxsel')
207
+ .find('input[type=checkbox]')
208
+ .click({ force: true });
209
+
210
+ cy.window().then((win) => {
211
+ expect(win.console.log).to.have.callCount(2);
212
+ expect(win.console.log).to.be.calledWith('Grid State changed:: ', {
213
+ newValues: { gridRowIndexes: [2], dataContextIds: [1497], filteredDataContextIds: [1497] },
214
+ type: 'rowSelection',
215
+ });
216
+ });
217
+ });
218
+
219
+ it('should scroll to bottom of the grid then select "Task 4"', () => {
220
+ cy.get('#slickGridContainer-grid12').as('grid12');
221
+
222
+ cy.get('@grid12').find('.slick-viewport-top.slick-viewport-left').scrollTo('bottom').wait(10);
223
+
224
+ cy.get('#grid12').contains('Task 4').parent().children('.slick-cell-checkboxsel').find('input[type=checkbox]').click({ force: true });
225
+
226
+ cy.window().then((win) => {
227
+ expect(win.console.log).to.have.callCount(2);
228
+ expect(win.console.log).to.be.calledWith('Grid State changed:: ', {
229
+ newValues: { gridRowIndexes: [1495, 2], dataContextIds: [1497, 4], filteredDataContextIds: [1497, 4] },
230
+ type: 'rowSelection',
231
+ });
232
+ });
233
+ });
234
+
235
+ it('should filter the Tasks column with number 4 and expect only "Task 4" visible in the grid', () => {
236
+ cy.get('#slickGridContainer-grid12').as('grid12');
237
+
238
+ cy.get('.grid-canvas').find('.slick-row').should('be.visible');
239
+
240
+ cy.get('input.filter-title').type('4');
241
+
242
+ cy.get('@grid12').find('.slick-row').children().filter('.slick-cell-checkboxsel.selected').should('have.length', 1);
243
+
244
+ cy.get('@grid12').find('.slick-row').children().filter('.slick-cell.selected:nth(1)').contains('Task 4');
245
+ });
246
+
247
+ it('should scroll back to the top and expect to see "Task 1497" still selected', () => {
248
+ cy.get('#slickGridContainer-grid12').as('grid12');
249
+
250
+ cy.get('.grid-canvas').find('.slick-row').should('be.visible');
251
+
252
+ cy.get('@grid12').find('.slick-viewport-top.slick-viewport-left').scrollTo('top').wait(10);
253
+
254
+ cy.get('@grid12').find('.slick-row').children().filter('.slick-cell-checkboxsel.selected').should('have.length', 1);
255
+
256
+ cy.get('@grid12').find('.slick-row').children().filter('.slick-cell.selected:nth(1)').contains('Task 1497');
257
+ });
258
+
259
+ it('should have 2 row selection count shown in the grid left footer', () => {
260
+ cy.get('#slickGridContainer-grid12')
261
+ .find('.slick-custom-footer')
262
+ .find('div.left-footer')
263
+ .should(($span) => {
264
+ const text = removeExtraSpaces($span.text()); // remove all white spaces
265
+ expect(text).to.eq(`2 items selected`);
266
+ });
267
+ });
268
+ });
269
+ });
@@ -0,0 +1,246 @@
1
+ describe('Example 13 - Grouping & Aggregators', () => {
2
+ const fullTitles = ['Id Click me', 'Title', 'Duration', '% Complete', 'Start', 'Finish', 'Cost', 'Effort Driven'];
3
+ const GRID_ROW_HEIGHT = 35;
4
+
5
+ it('should display Example title', () => {
6
+ cy.visit(`${Cypress.config('baseUrl')}/example13`);
7
+ cy.get('h2').should('contain', 'Example 13: Grouping & Aggregators');
8
+ });
9
+
10
+ it('should have exact column titles on 1st grid', () => {
11
+ cy.get('#grid14')
12
+ .find('.slick-header-columns')
13
+ .children()
14
+ .each(($child, index) => expect($child.text()).to.eq(fullTitles[index]));
15
+ });
16
+
17
+ describe('Grouping Tests', () => {
18
+ it('should "Group by Duration & sort groups by value" then Collapse All and expect only group titles', () => {
19
+ cy.get('[data-test="add-50k-rows-btn"]').click();
20
+ cy.get('[data-test="group-duration-sort-value-btn"]').click();
21
+ cy.get('[data-test="collapse-all-btn"]').click();
22
+
23
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 0}px);"] > .slick-cell:nth(0) .slick-group-toggle.collapsed`).should(
24
+ 'have.length',
25
+ 1
26
+ );
27
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 0}px);"] > .slick-cell:nth(0) .slick-group-title`).should(
28
+ 'contain',
29
+ 'Duration: 0'
30
+ );
31
+
32
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 1}px);"] > .slick-cell:nth(0) .slick-group-title`).should(
33
+ 'contain',
34
+ 'Duration: 1'
35
+ );
36
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 2}px);"] > .slick-cell:nth(0) .slick-group-title`).should(
37
+ 'contain',
38
+ 'Duration: 2'
39
+ );
40
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 3}px);"] > .slick-cell:nth(0) .slick-group-title`).should(
41
+ 'contain',
42
+ 'Duration: 3'
43
+ );
44
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 4}px);"] > .slick-cell:nth(0) .slick-group-title`).should(
45
+ 'contain',
46
+ 'Duration: 4'
47
+ );
48
+ });
49
+
50
+ it('should click on Expand All columns and expect 1st row as grouping title and 2nd row as a regular row', () => {
51
+ cy.get('[data-test="add-50k-rows-btn"]').click();
52
+ cy.get('[data-test="group-duration-sort-value-btn"]').click();
53
+ cy.get('[data-test="expand-all-btn"]').click();
54
+
55
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 0}px);"] > .slick-cell:nth(0) .slick-group-toggle.expanded`).should(
56
+ 'have.length',
57
+ 1
58
+ );
59
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 0}px);"] > .slick-cell:nth(0) .slick-group-title`).should(
60
+ 'contain',
61
+ 'Duration: 0'
62
+ );
63
+
64
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 1}px);"] > .slick-cell:nth(1)`).should('contain', 'Task');
65
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 1}px);"] > .slick-cell:nth(2)`).should('contain', '0');
66
+ });
67
+
68
+ it('should "Group by Duration then Effort-Driven" and expect 1st row to be expanded, 2nd row to be collapsed and 3rd row to have group totals', () => {
69
+ cy.get('[data-test="group-duration-effort-btn"]').click();
70
+
71
+ cy.get(
72
+ `[style="transform: translateY(${GRID_ROW_HEIGHT * 0}px);"].slick-group-level-0 > .slick-cell:nth(0) .slick-group-toggle.expanded`
73
+ ).should('have.length', 1);
74
+ cy.get(
75
+ `[style="transform: translateY(${GRID_ROW_HEIGHT * 0}px);"].slick-group-level-0 > .slick-cell:nth(0) .slick-group-title`
76
+ ).should('contain', 'Duration: 0');
77
+
78
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 1}px);"].slick-group-level-1 .slick-group-toggle.collapsed`).should(
79
+ 'have.length',
80
+ 1
81
+ );
82
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 1}px);"].slick-group-level-1 .slick-group-title`).should(
83
+ 'contain',
84
+ 'Effort-Driven: False'
85
+ );
86
+
87
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 2}px);"].slick-group-level-1 .slick-group-toggle.collapsed`).should(
88
+ 'have.length',
89
+ 1
90
+ );
91
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 2}px);"].slick-group-level-1 .slick-group-title`).should(
92
+ 'contain',
93
+ 'Effort-Driven: True'
94
+ );
95
+
96
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 3}px);"].slick-group-totals.slick-group-level-0 .slick-cell:nth(2)`).should(
97
+ 'contain',
98
+ 'Total: 0'
99
+ );
100
+ });
101
+
102
+ it('should "Group by Duration then Effort-Driven then Percent" and expect fist 2 rows to be expanded, 3rd row to be collapsed then 4th row to have group total', () => {
103
+ cy.get('[data-test="group-duration-effort-percent-btn"]').click();
104
+
105
+ cy.get(
106
+ `[style="transform: translateY(${GRID_ROW_HEIGHT * 0}px);"].slick-group-level-0 > .slick-cell:nth(0) .slick-group-toggle.expanded`
107
+ ).should('have.length', 1);
108
+ cy.get(
109
+ `[style="transform: translateY(${GRID_ROW_HEIGHT * 0}px);"].slick-group-level-0 > .slick-cell:nth(0) .slick-group-title`
110
+ ).should('contain', 'Duration: 0');
111
+
112
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 1}px);"].slick-group-level-1 .slick-group-toggle.expanded`).should(
113
+ 'have.length',
114
+ 1
115
+ );
116
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 1}px);"].slick-group-level-1 .slick-group-title`).should(
117
+ 'contain',
118
+ 'Effort-Driven: False'
119
+ );
120
+
121
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 2}px);"].slick-group-level-2 .slick-group-toggle.collapsed`).should(
122
+ 'have.length',
123
+ 1
124
+ );
125
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 2}px);"].slick-group-level-2 .slick-group-title`).contains(
126
+ /^% Complete: [0-9]/
127
+ );
128
+
129
+ cy.get(
130
+ `[style="transform: translateY(${GRID_ROW_HEIGHT * 3}px);"].slick-group-totals.slick-group-level-2 .slick-cell:nth(3)`
131
+ ).contains(/^Avg: [0-9]%$/);
132
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 3}px);"].slick-group-totals.slick-group-level-2`)
133
+ .find('.slick-cell:nth(3)')
134
+ .contains('Avg: ');
135
+ });
136
+ });
137
+
138
+ describe('Diverse Input Text Filters with multiple symbol variances', () => {
139
+ it('should clear all Groupings', () => {
140
+ cy.get('[data-test="clear-grouping-btn"]').click();
141
+ });
142
+
143
+ it('should return 500 rows using "Ta*33" (starts with "Ta" + ends with 33)', () => {
144
+ cy.get('.search-filter.filter-title').clear().type('Ta*3');
145
+
146
+ cy.get('.item-count').should('contain', 5000);
147
+
148
+ cy.get('.search-filter.filter-title').clear().type('Ta*33');
149
+
150
+ cy.get('.item-count').should('contain', 500);
151
+
152
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 0}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 33');
153
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 1}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 133');
154
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 2}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 233');
155
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 3}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 333');
156
+ });
157
+
158
+ it('should return 40000 rows using "Ta*" (starts with "Ta")', () => {
159
+ cy.get('.search-filter.filter-title').clear().type('Ta*');
160
+
161
+ cy.get('.item-count').should('contain', 50000);
162
+
163
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 0}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 0');
164
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 1}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 1');
165
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 2}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 2');
166
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 3}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 3');
167
+ });
168
+
169
+ it('should return 500 rows using "*11" (ends with "11")', () => {
170
+ cy.get('.search-filter.filter-title').clear().type('*11');
171
+
172
+ cy.get('.item-count').should('contain', 500);
173
+
174
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 0}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 1');
175
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 1}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 11');
176
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 2}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 21');
177
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 3}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 31');
178
+ });
179
+
180
+ it('should return 497 rows using ">222" (greater than 222)', () => {
181
+ cy.get('.search-filter.filter-sel').clear().type('>222');
182
+
183
+ cy.get('.item-count').should('contain', 497);
184
+
185
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 0}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 311');
186
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 1}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 411');
187
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 2}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 511');
188
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 3}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 611');
189
+ });
190
+
191
+ it('should return 499 rows using "<>311" (not equal to 311)', () => {
192
+ cy.get('.search-filter.filter-sel').clear().type('<>311');
193
+
194
+ cy.get('.item-count').should('contain', 499);
195
+
196
+ cy.get('.search-filter.filter-sel').clear().type('!=311');
197
+
198
+ cy.get('.item-count').should('contain', 499);
199
+
200
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 0}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 11');
201
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 1}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 111');
202
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 2}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 211');
203
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 3}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 411');
204
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 4}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 511');
205
+ });
206
+
207
+ it('should return 1 rows using "=311" or "==311" (equal to 311)', () => {
208
+ cy.get('.search-filter.filter-sel').clear().type('=311');
209
+
210
+ cy.get('.item-count').should('contain', 1);
211
+
212
+ cy.get('.search-filter.filter-sel').clear().type('==311');
213
+
214
+ cy.get('.item-count').should('contain', 1);
215
+
216
+ cy.get(`[style="transform: translateY(${GRID_ROW_HEIGHT * 0}px);"] > .slick-cell:nth(1)`).should('contain', 'Task 311');
217
+ });
218
+ });
219
+
220
+ describe('Column Header with HTML Elements', () => {
221
+ it('should trigger an alert when clicking on the 1st column button inside its header', () => {
222
+ const stub = cy.stub();
223
+ cy.on('window:alert', stub);
224
+
225
+ cy.get('button[data-test=col1-hello-btn]')
226
+ .click({ force: true })
227
+ .then(() => expect(stub.getCall(0)).to.be.calledWith('Hello World'));
228
+ });
229
+
230
+ it('should open Column Picker and have a "Custom Label" as the 1st column label', () => {
231
+ cy.get('#grid14').find('.slick-header-column').first().trigger('mouseover').trigger('contextmenu').invoke('show');
232
+
233
+ cy.get('.slick-column-picker').find('.slick-column-picker-list li:nth-child(1) .checkbox-label').should('have.text', 'Custom Label');
234
+ });
235
+
236
+ it('should open Grid Menu and have a "Custom Label" as the 1st column label', () => {
237
+ cy.get('#grid14').find('button.slick-grid-menu-button').trigger('click').click({ force: true });
238
+
239
+ cy.get(`.slick-grid-menu:visible`)
240
+ .find('.slick-column-picker-list li:nth-child(1) .checkbox-label')
241
+ .should('have.text', 'Custom Label');
242
+
243
+ cy.get('[data-dismiss="slick-grid-menu"]').click();
244
+ });
245
+ });
246
+ });