@wizishop/img-manager 0.2.108 → 14.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 (300) hide show
  1. package/esm2020/lib/animations/easeInOut/ease-in-out.animation.mjs +12 -0
  2. package/esm2020/lib/animations/insertRemove/insert-remove.animation.mjs +9 -0
  3. package/esm2020/lib/animations/listAnnimation/list.animation.mjs +16 -0
  4. package/esm2020/lib/components/canva-btn/canva-btn.component.mjs +67 -0
  5. package/esm2020/lib/components/images-view/images-actions-handler.mjs +151 -0
  6. package/esm2020/lib/components/images-view/images-view.component.mjs +474 -0
  7. package/esm2020/lib/components/images-view/mosaic-view/img-card/img-card.component.mjs +66 -0
  8. package/esm2020/lib/components/images-view/mosaic-view/mosaic-view.component.mjs +68 -0
  9. package/esm2020/lib/components/images-view/table-view/table-view.component.mjs +48 -0
  10. package/esm2020/lib/components/img-editor/cropper/cropper.component.mjs +307 -0
  11. package/esm2020/lib/components/img-editor/img-editor.component.mjs +109 -0
  12. package/esm2020/lib/components/img-editor/info-section/info-section.component.mjs +54 -0
  13. package/esm2020/lib/components/img-selection/img-selection.component.mjs +59 -0
  14. package/esm2020/lib/components/img-tabs/img-tabs.component.mjs +122 -0
  15. package/esm2020/lib/components/img-upload/img-upload.component.mjs +118 -0
  16. package/esm2020/lib/components/loader/loader.component.mjs +21 -0
  17. package/esm2020/lib/components/pexels-lib/pexels-lib.component.mjs +200 -0
  18. package/esm2020/lib/components/shared/alert/alert.component.mjs +27 -0
  19. package/esm2020/lib/components/shared/checkbox/checkbox.component.mjs +52 -0
  20. package/esm2020/lib/components/shared/dropdown/dropdown.component.mjs +21 -0
  21. package/esm2020/lib/components/shared/input-search/input-search.component.mjs +54 -0
  22. package/esm2020/lib/components/shared/pagination/page-selector/page-selector.component.mjs +49 -0
  23. package/esm2020/lib/components/shared/pagination/pagination.component.mjs +49 -0
  24. package/esm2020/lib/components/shared/select/call-to-action.model.mjs +2 -0
  25. package/esm2020/lib/components/shared/select/select-items.dto.mjs +2 -0
  26. package/esm2020/lib/components/shared/select/select.component.mjs +110 -0
  27. package/esm2020/lib/components/shared/table/table.component.mjs +116 -0
  28. package/esm2020/lib/components/upload-list/upload-list.component.mjs +79 -0
  29. package/esm2020/lib/directives/abstract-debounce/abstract-debounce.directive.mjs +37 -0
  30. package/esm2020/lib/directives/abstract-debounce/debounce-keyup.directive.mjs +24 -0
  31. package/esm2020/lib/directives/auto-hide.directive.mjs +48 -0
  32. package/esm2020/lib/directives/copy-to-clipboard.directive.mjs +37 -0
  33. package/esm2020/lib/directives/drag-drop.directive.mjs +57 -0
  34. package/esm2020/lib/directives/loading.directive.mjs +42 -0
  35. package/esm2020/lib/directives/table/checkBoxRow.directive.mjs +114 -0
  36. package/esm2020/lib/directives/table/column.directive.mjs +45 -0
  37. package/esm2020/lib/directives/table/columnHeader.directive.mjs +204 -0
  38. package/esm2020/lib/directives/table/raw.directive.mjs +31 -0
  39. package/esm2020/lib/directives/zindex-toggle.directive.mjs +42 -0
  40. package/esm2020/lib/dto/ImgManagerDisplayConfig.dto.mjs +2 -0
  41. package/esm2020/lib/dto/canva-create-design.dto.mjs +4 -0
  42. package/esm2020/lib/dto/canva.dto.mjs +4 -0
  43. package/esm2020/lib/dto/config/apis/api.dto.mjs +9 -0
  44. package/esm2020/lib/dto/config/external/external-config.dto.mjs +3 -0
  45. package/esm2020/lib/dto/config/image-cdn/image-cdn-config.dto.mjs +10 -0
  46. package/esm2020/lib/dto/export-dtos.api.mjs +11 -0
  47. package/esm2020/lib/dto/img-editor-config.dto.mjs +2 -0
  48. package/esm2020/lib/dto/img-manager.dto.mjs +2 -0
  49. package/esm2020/lib/dto/pexels-img.dto.mjs +2 -0
  50. package/esm2020/lib/dto/picture-name-update.dto.mjs +2 -0
  51. package/esm2020/lib/dto/stateDisplayed.dto.mjs +2 -0
  52. package/esm2020/lib/dto/tabDisplayed.dto.mjs +2 -0
  53. package/esm2020/lib/dto/wizi-block-media.dto.mjs +3 -0
  54. package/esm2020/lib/pipes/images/img-src.pipe.mjs +28 -0
  55. package/esm2020/lib/pipes/number-to-array.pipe.mjs +16 -0
  56. package/esm2020/lib/pipes/pagination/array-total-pages/array-pages.pipe.mjs +28 -0
  57. package/esm2020/lib/pipes/pagination/large-number-of-page/large-number-of-page.pipe.mjs +53 -0
  58. package/esm2020/lib/pipes/pagination/text/custom-text.pipe.mjs +35 -0
  59. package/esm2020/lib/pipes/pagination/total-pages/is-last-page.pipe.mjs +25 -0
  60. package/esm2020/lib/pipes/select/select-filters.pipe.mjs +19 -0
  61. package/esm2020/lib/services/alert.service.mjs +53 -0
  62. package/esm2020/lib/services/canva.service.mjs +159 -0
  63. package/esm2020/lib/services/config/external-config.service.mjs +49 -0
  64. package/esm2020/lib/services/config/img-cdn.service.mjs +28 -0
  65. package/esm2020/lib/services/dom.service.mjs +36 -0
  66. package/{esm2015/lib/services/img-event.service.js → esm2020/lib/services/img-event.service.mjs} +11 -12
  67. package/esm2020/lib/services/img-manager.service.mjs +138 -0
  68. package/{esm2015/lib/services/img-selection.service.js → esm2020/lib/services/img-selection.service.mjs} +11 -12
  69. package/esm2020/lib/services/pexels.service.mjs +62 -0
  70. package/esm2020/lib/services/rename-picture.service.mjs +68 -0
  71. package/esm2020/lib/services/table/filters-table.service.mjs +63 -0
  72. package/{esm2015/lib/services/user-settings.service.js → esm2020/lib/services/user-settings.service.mjs} +11 -12
  73. package/esm2020/lib/wz-img-manager.component.mjs +186 -0
  74. package/esm2020/lib/wz-img-manager.module.mjs +193 -0
  75. package/esm2020/public-api.mjs +11 -0
  76. package/esm2020/wizishop-img-manager.mjs +5 -0
  77. package/fesm2015/wizishop-img-manager.mjs +4134 -0
  78. package/fesm2015/wizishop-img-manager.mjs.map +1 -0
  79. package/fesm2020/wizishop-img-manager.mjs +4140 -0
  80. package/fesm2020/wizishop-img-manager.mjs.map +1 -0
  81. package/index.d.ts +5 -0
  82. package/lib/components/canva-btn/canva-btn.component.d.ts +9 -6
  83. package/lib/components/images-view/images-actions-handler.d.ts +3 -0
  84. package/lib/components/images-view/images-view.component.d.ts +3 -0
  85. package/lib/components/images-view/mosaic-view/img-card/img-card.component.d.ts +3 -0
  86. package/lib/components/images-view/mosaic-view/mosaic-view.component.d.ts +3 -0
  87. package/lib/components/images-view/table-view/table-view.component.d.ts +3 -0
  88. package/lib/components/img-editor/cropper/cropper.component.d.ts +6 -3
  89. package/lib/components/img-editor/img-editor.component.d.ts +3 -0
  90. package/lib/components/img-editor/info-section/info-section.component.d.ts +3 -0
  91. package/lib/components/img-selection/img-selection.component.d.ts +3 -0
  92. package/lib/components/img-tabs/img-tabs.component.d.ts +3 -0
  93. package/lib/components/img-upload/img-upload.component.d.ts +4 -1
  94. package/lib/components/loader/loader.component.d.ts +3 -0
  95. package/lib/components/pexels-lib/pexels-lib.component.d.ts +3 -0
  96. package/lib/components/shared/alert/alert.component.d.ts +3 -0
  97. package/lib/components/shared/checkbox/checkbox.component.d.ts +3 -0
  98. package/lib/components/shared/dropdown/dropdown.component.d.ts +3 -0
  99. package/lib/components/shared/input-search/input-search.component.d.ts +3 -0
  100. package/lib/components/shared/pagination/page-selector/page-selector.component.d.ts +3 -0
  101. package/lib/components/shared/pagination/pagination.component.d.ts +3 -0
  102. package/lib/components/shared/select/select.component.d.ts +3 -0
  103. package/lib/components/shared/table/table.component.d.ts +3 -0
  104. package/lib/components/upload-list/upload-list.component.d.ts +3 -0
  105. package/lib/directives/abstract-debounce/abstract-debounce.directive.d.ts +3 -0
  106. package/lib/directives/abstract-debounce/debounce-keyup.directive.d.ts +3 -0
  107. package/lib/directives/auto-hide.directive.d.ts +3 -0
  108. package/lib/directives/copy-to-clipboard.directive.d.ts +3 -0
  109. package/lib/directives/drag-drop.directive.d.ts +3 -0
  110. package/lib/directives/loading.directive.d.ts +3 -0
  111. package/lib/directives/table/checkBoxRow.directive.d.ts +3 -0
  112. package/lib/directives/table/column.directive.d.ts +3 -0
  113. package/lib/directives/table/columnHeader.directive.d.ts +3 -0
  114. package/lib/directives/table/raw.directive.d.ts +3 -0
  115. package/lib/directives/zindex-toggle.directive.d.ts +3 -0
  116. package/lib/dto/pexels-img.dto.d.ts +1 -0
  117. package/lib/pipes/images/img-src.pipe.d.ts +3 -0
  118. package/lib/pipes/number-to-array.pipe.d.ts +3 -0
  119. package/lib/pipes/pagination/array-total-pages/array-pages.pipe.d.ts +3 -0
  120. package/lib/pipes/pagination/large-number-of-page/large-number-of-page.pipe.d.ts +7 -1
  121. package/lib/pipes/pagination/text/custom-text.pipe.d.ts +3 -0
  122. package/lib/pipes/pagination/total-pages/is-last-page.pipe.d.ts +3 -0
  123. package/lib/pipes/select/select-filters.pipe.d.ts +3 -0
  124. package/lib/services/alert.service.d.ts +3 -0
  125. package/lib/services/canva.service.d.ts +3 -0
  126. package/lib/services/config/external-config.service.d.ts +3 -0
  127. package/lib/services/config/img-cdn.service.d.ts +3 -0
  128. package/lib/services/dom.service.d.ts +3 -0
  129. package/lib/services/img-event.service.d.ts +3 -0
  130. package/lib/services/img-manager.service.d.ts +5 -2
  131. package/lib/services/img-selection.service.d.ts +3 -0
  132. package/lib/services/pexels.service.d.ts +7 -4
  133. package/lib/services/rename-picture.service.d.ts +3 -0
  134. package/lib/services/table/filters-table.service.d.ts +3 -0
  135. package/lib/services/user-settings.service.d.ts +3 -0
  136. package/lib/wz-img-manager.component.d.ts +3 -0
  137. package/lib/wz-img-manager.module.d.ts +56 -0
  138. package/package.json +47 -29
  139. package/wizishop-img-manager-14.0.0.tgz +0 -0
  140. package/wz-img-manager.scss +4 -404
  141. package/bundles/wizishop-img-manager.umd.js +0 -5077
  142. package/bundles/wizishop-img-manager.umd.js.map +0 -1
  143. package/bundles/wizishop-img-manager.umd.min.js +0 -16
  144. package/bundles/wizishop-img-manager.umd.min.js.map +0 -1
  145. package/esm2015/lib/animations/easeInOut/ease-in-out.animation.js +0 -12
  146. package/esm2015/lib/animations/insertRemove/insert-remove.animation.js +0 -9
  147. package/esm2015/lib/animations/listAnnimation/list.animation.js +0 -16
  148. package/esm2015/lib/components/canva-btn/canva-btn.component.js +0 -70
  149. package/esm2015/lib/components/images-view/images-actions-handler.js +0 -180
  150. package/esm2015/lib/components/images-view/images-view.component.js +0 -492
  151. package/esm2015/lib/components/images-view/mosaic-view/img-card/img-card.component.js +0 -84
  152. package/esm2015/lib/components/images-view/mosaic-view/mosaic-view.component.js +0 -79
  153. package/esm2015/lib/components/images-view/table-view/table-view.component.js +0 -49
  154. package/esm2015/lib/components/img-editor/cropper/cropper.component.js +0 -300
  155. package/esm2015/lib/components/img-editor/img-editor.component.js +0 -112
  156. package/esm2015/lib/components/img-editor/info-section/info-section.component.js +0 -59
  157. package/esm2015/lib/components/img-selection/img-selection.component.js +0 -62
  158. package/esm2015/lib/components/img-tabs/img-tabs.component.js +0 -131
  159. package/esm2015/lib/components/img-upload/img-upload.component.js +0 -125
  160. package/esm2015/lib/components/loader/loader.component.js +0 -28
  161. package/esm2015/lib/components/pexels-lib/pexels-lib.component.js +0 -208
  162. package/esm2015/lib/components/shared/alert/alert.component.js +0 -37
  163. package/esm2015/lib/components/shared/checkbox/checkbox.component.js +0 -69
  164. package/esm2015/lib/components/shared/dropdown/dropdown.component.js +0 -26
  165. package/esm2015/lib/components/shared/input-search/input-search.component.js +0 -62
  166. package/esm2015/lib/components/shared/pagination/page-selector/page-selector.component.js +0 -55
  167. package/esm2015/lib/components/shared/pagination/pagination.component.js +0 -51
  168. package/esm2015/lib/components/shared/select/call-to-action.model.js +0 -1
  169. package/esm2015/lib/components/shared/select/select-items.dto.js +0 -1
  170. package/esm2015/lib/components/shared/select/select.component.js +0 -133
  171. package/esm2015/lib/components/shared/table/table.component.js +0 -133
  172. package/esm2015/lib/components/upload-list/upload-list.component.js +0 -87
  173. package/esm2015/lib/directives/abstract-debounce/abstract-debounce.directive.js +0 -40
  174. package/esm2015/lib/directives/abstract-debounce/debounce-keyup.directive.js +0 -26
  175. package/esm2015/lib/directives/auto-hide.directive.js +0 -55
  176. package/esm2015/lib/directives/copy-to-clipboard.directive.js +0 -40
  177. package/esm2015/lib/directives/drag-drop.directive.js +0 -68
  178. package/esm2015/lib/directives/loading.directive.js +0 -44
  179. package/esm2015/lib/directives/table/checkBoxRow.directive.js +0 -128
  180. package/esm2015/lib/directives/table/column.directive.js +0 -49
  181. package/esm2015/lib/directives/table/columnHeader.directive.js +0 -221
  182. package/esm2015/lib/directives/table/raw.directive.js +0 -33
  183. package/esm2015/lib/directives/zindex-toggle.directive.js +0 -49
  184. package/esm2015/lib/dto/ImgManagerDisplayConfig.dto.js +0 -1
  185. package/esm2015/lib/dto/canva-create-design.dto.js +0 -4
  186. package/esm2015/lib/dto/canva.dto.js +0 -4
  187. package/esm2015/lib/dto/config/apis/api.dto.js +0 -9
  188. package/esm2015/lib/dto/config/external/external-config.dto.js +0 -3
  189. package/esm2015/lib/dto/config/image-cdn/image-cdn-config.dto.js +0 -10
  190. package/esm2015/lib/dto/export-dtos.api.js +0 -5
  191. package/esm2015/lib/dto/img-editor-config.dto.js +0 -1
  192. package/esm2015/lib/dto/img-manager.dto.js +0 -1
  193. package/esm2015/lib/dto/pexels-img.dto.js +0 -1
  194. package/esm2015/lib/dto/picture-name-update.dto.js +0 -1
  195. package/esm2015/lib/dto/stateDisplayed.dto.js +0 -1
  196. package/esm2015/lib/dto/tabDisplayed.dto.js +0 -1
  197. package/esm2015/lib/dto/wizi-block-media.dto.js +0 -3
  198. package/esm2015/lib/pipes/images/img-src.pipe.js +0 -29
  199. package/esm2015/lib/pipes/number-to-array.pipe.js +0 -14
  200. package/esm2015/lib/pipes/pagination/array-total-pages/array-pages.pipe.js +0 -26
  201. package/esm2015/lib/pipes/pagination/large-number-of-page/large-number-of-page.pipe.js +0 -51
  202. package/esm2015/lib/pipes/pagination/text/custom-text.pipe.js +0 -36
  203. package/esm2015/lib/pipes/pagination/total-pages/is-last-page.pipe.js +0 -23
  204. package/esm2015/lib/pipes/select/select-filters.pipe.js +0 -17
  205. package/esm2015/lib/services/alert.service.js +0 -59
  206. package/esm2015/lib/services/canva.service.js +0 -171
  207. package/esm2015/lib/services/config/external-config.service.js +0 -55
  208. package/esm2015/lib/services/config/img-cdn.service.js +0 -29
  209. package/esm2015/lib/services/dom.service.js +0 -36
  210. package/esm2015/lib/services/img-manager.service.js +0 -142
  211. package/esm2015/lib/services/pexels.service.js +0 -70
  212. package/esm2015/lib/services/rename-picture.service.js +0 -74
  213. package/esm2015/lib/services/table/filters-table.service.js +0 -67
  214. package/esm2015/lib/wz-img-manager.component.js +0 -212
  215. package/esm2015/lib/wz-img-manager.module.js +0 -132
  216. package/esm2015/public-api.js +0 -11
  217. package/esm2015/wizishop-img-manager.js +0 -57
  218. package/esm5/lib/animations/easeInOut/ease-in-out.animation.js +0 -12
  219. package/esm5/lib/animations/insertRemove/insert-remove.animation.js +0 -9
  220. package/esm5/lib/animations/listAnnimation/list.animation.js +0 -16
  221. package/esm5/lib/components/canva-btn/canva-btn.component.js +0 -72
  222. package/esm5/lib/components/images-view/images-actions-handler.js +0 -183
  223. package/esm5/lib/components/images-view/images-view.component.js +0 -535
  224. package/esm5/lib/components/images-view/mosaic-view/img-card/img-card.component.js +0 -87
  225. package/esm5/lib/components/images-view/mosaic-view/mosaic-view.component.js +0 -82
  226. package/esm5/lib/components/images-view/table-view/table-view.component.js +0 -52
  227. package/esm5/lib/components/img-editor/cropper/cropper.component.js +0 -312
  228. package/esm5/lib/components/img-editor/img-editor.component.js +0 -115
  229. package/esm5/lib/components/img-editor/info-section/info-section.component.js +0 -64
  230. package/esm5/lib/components/img-selection/img-selection.component.js +0 -64
  231. package/esm5/lib/components/img-tabs/img-tabs.component.js +0 -133
  232. package/esm5/lib/components/img-upload/img-upload.component.js +0 -138
  233. package/esm5/lib/components/loader/loader.component.js +0 -29
  234. package/esm5/lib/components/pexels-lib/pexels-lib.component.js +0 -216
  235. package/esm5/lib/components/shared/alert/alert.component.js +0 -38
  236. package/esm5/lib/components/shared/checkbox/checkbox.component.js +0 -71
  237. package/esm5/lib/components/shared/dropdown/dropdown.component.js +0 -27
  238. package/esm5/lib/components/shared/input-search/input-search.component.js +0 -68
  239. package/esm5/lib/components/shared/pagination/page-selector/page-selector.component.js +0 -64
  240. package/esm5/lib/components/shared/pagination/pagination.component.js +0 -56
  241. package/esm5/lib/components/shared/select/call-to-action.model.js +0 -1
  242. package/esm5/lib/components/shared/select/select-items.dto.js +0 -1
  243. package/esm5/lib/components/shared/select/select.component.js +0 -136
  244. package/esm5/lib/components/shared/table/table.component.js +0 -135
  245. package/esm5/lib/components/upload-list/upload-list.component.js +0 -103
  246. package/esm5/lib/directives/abstract-debounce/abstract-debounce.directive.js +0 -42
  247. package/esm5/lib/directives/abstract-debounce/debounce-keyup.directive.js +0 -28
  248. package/esm5/lib/directives/auto-hide.directive.js +0 -57
  249. package/esm5/lib/directives/copy-to-clipboard.directive.js +0 -42
  250. package/esm5/lib/directives/drag-drop.directive.js +0 -69
  251. package/esm5/lib/directives/loading.directive.js +0 -46
  252. package/esm5/lib/directives/table/checkBoxRow.directive.js +0 -137
  253. package/esm5/lib/directives/table/column.directive.js +0 -50
  254. package/esm5/lib/directives/table/columnHeader.directive.js +0 -229
  255. package/esm5/lib/directives/table/raw.directive.js +0 -34
  256. package/esm5/lib/directives/zindex-toggle.directive.js +0 -54
  257. package/esm5/lib/dto/ImgManagerDisplayConfig.dto.js +0 -1
  258. package/esm5/lib/dto/canva-create-design.dto.js +0 -8
  259. package/esm5/lib/dto/canva.dto.js +0 -8
  260. package/esm5/lib/dto/config/apis/api.dto.js +0 -11
  261. package/esm5/lib/dto/config/external/external-config.dto.js +0 -7
  262. package/esm5/lib/dto/config/image-cdn/image-cdn-config.dto.js +0 -12
  263. package/esm5/lib/dto/export-dtos.api.js +0 -5
  264. package/esm5/lib/dto/img-editor-config.dto.js +0 -1
  265. package/esm5/lib/dto/img-manager.dto.js +0 -1
  266. package/esm5/lib/dto/pexels-img.dto.js +0 -1
  267. package/esm5/lib/dto/picture-name-update.dto.js +0 -1
  268. package/esm5/lib/dto/stateDisplayed.dto.js +0 -1
  269. package/esm5/lib/dto/tabDisplayed.dto.js +0 -1
  270. package/esm5/lib/dto/wizi-block-media.dto.js +0 -7
  271. package/esm5/lib/pipes/images/img-src.pipe.js +0 -30
  272. package/esm5/lib/pipes/number-to-array.pipe.js +0 -17
  273. package/esm5/lib/pipes/pagination/array-total-pages/array-pages.pipe.js +0 -29
  274. package/esm5/lib/pipes/pagination/large-number-of-page/large-number-of-page.pipe.js +0 -54
  275. package/esm5/lib/pipes/pagination/text/custom-text.pipe.js +0 -37
  276. package/esm5/lib/pipes/pagination/total-pages/is-last-page.pipe.js +0 -26
  277. package/esm5/lib/pipes/select/select-filters.pipe.js +0 -20
  278. package/esm5/lib/services/alert.service.js +0 -62
  279. package/esm5/lib/services/canva.service.js +0 -181
  280. package/esm5/lib/services/config/external-config.service.js +0 -56
  281. package/esm5/lib/services/config/img-cdn.service.js +0 -34
  282. package/esm5/lib/services/dom.service.js +0 -39
  283. package/esm5/lib/services/img-event.service.js +0 -46
  284. package/esm5/lib/services/img-manager.service.js +0 -143
  285. package/esm5/lib/services/img-selection.service.js +0 -143
  286. package/esm5/lib/services/pexels.service.js +0 -72
  287. package/esm5/lib/services/rename-picture.service.js +0 -88
  288. package/esm5/lib/services/table/filters-table.service.js +0 -68
  289. package/esm5/lib/services/user-settings.service.js +0 -30
  290. package/esm5/lib/wz-img-manager.component.js +0 -228
  291. package/esm5/lib/wz-img-manager.module.js +0 -131
  292. package/esm5/public-api.js +0 -11
  293. package/esm5/wizishop-img-manager.js +0 -57
  294. package/fesm2015/wizishop-img-manager.js +0 -4533
  295. package/fesm2015/wizishop-img-manager.js.map +0 -1
  296. package/fesm5/wizishop-img-manager.js +0 -4814
  297. package/fesm5/wizishop-img-manager.js.map +0 -1
  298. package/wizishop-img-manager-0.2.108.tgz +0 -0
  299. package/wizishop-img-manager.d.ts +0 -56
  300. package/wizishop-img-manager.metadata.json +0 -1
@@ -1,5 +1,6 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import { TranslateService } from '@ngx-translate/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class PagniationText implements PipeTransform {
4
5
  private translateService;
5
6
  constructor(translateService: TranslateService);
@@ -10,4 +11,6 @@ export declare class PagniationText implements PipeTransform {
10
11
  * @param itemsPerPage
11
12
  */
12
13
  transform(currentPage: number, totalItems: number, itemsPerPage: number): any;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<PagniationText, never>;
15
+ static ɵpipe: i0.ɵɵPipeDeclaration<PagniationText, "customPagniationText", false>;
13
16
  }
@@ -1,4 +1,5 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class PagniationIsLastPage implements PipeTransform {
3
4
  /**
4
5
  * Return true, if the current page is the last page. Otherwise, return false.
@@ -7,4 +8,6 @@ export declare class PagniationIsLastPage implements PipeTransform {
7
8
  * @param itemsPerPage
8
9
  */
9
10
  transform(currentPage: number, totalItems: number, itemsPerPage: number): boolean;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<PagniationIsLastPage, never>;
12
+ static ɵpipe: i0.ɵɵPipeDeclaration<PagniationIsLastPage, "IsLastPage", false>;
10
13
  }
@@ -1,5 +1,8 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import { SelectItem } from '../../components/shared/select/select-items.dto';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class SelectFiltersPipe implements PipeTransform {
4
5
  transform(items: SelectItem[], filterName: string): any;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectFiltersPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<SelectFiltersPipe, "selectFilters", false>;
5
8
  }
@@ -1,6 +1,7 @@
1
1
  import { NwbAlertConfig } from '@wizishop/ng-wizi-bulma';
2
2
  import { TranslateService } from '@ngx-translate/core';
3
3
  import { NwbAlertService } from '@wizishop/ng-wizi-bulma';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class AlertService {
5
6
  private nwbAlertService;
6
7
  private translateService;
@@ -12,4 +13,6 @@ export declare class AlertService {
12
13
  openAlertWithBackendRespons(msgKey: string, msgBackend: string): void;
13
14
  private closePreviousAlert;
14
15
  private setAlertColor;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<AlertService, never>;
17
+ static ɵprov: i0.ɵɵInjectableDeclaration<AlertService>;
15
18
  }
@@ -6,6 +6,7 @@ import { AlertService } from './alert.service';
6
6
  import { ImgManagerService } from './img-manager.service';
7
7
  import { ImgEventService } from './img-event.service';
8
8
  import { TranslateService } from '@ngx-translate/core';
9
+ import * as i0 from "@angular/core";
9
10
  export declare class CanvaService {
10
11
  private externalConfigService;
11
12
  private imgManager;
@@ -38,4 +39,6 @@ export declare class CanvaService {
38
39
  private removeOverflowBody;
39
40
  private createDesign;
40
41
  private designPublished;
42
+ static ɵfac: i0.ɵɵFactoryDeclaration<CanvaService, never>;
43
+ static ɵprov: i0.ɵɵInjectableDeclaration<CanvaService>;
41
44
  }
@@ -1,6 +1,7 @@
1
1
  import { ImgManagerConfigDto } from '../../dto/config/external/external-config.dto';
2
2
  import { ImgManagerService } from '../img-manager.service';
3
3
  import { ImgCDNService } from './img-cdn.service';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class ImgManagerConfigService {
5
6
  private imgManagerService;
6
7
  private imgCDNService;
@@ -18,4 +19,6 @@ export declare class ImgManagerConfigService {
18
19
  getPexelsApiURL(): string;
19
20
  getPexelsApiToken(): string;
20
21
  getShopCategory(): string;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImgManagerConfigService, never>;
23
+ static ɵprov: i0.ɵɵInjectableDeclaration<ImgManagerConfigService>;
21
24
  }
@@ -1,8 +1,11 @@
1
1
  import { ImgCDNConfigDTO } from '../../dto/config/image-cdn/image-cdn-config.dto';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class ImgCDNService {
3
4
  imgCDNConfig: ImgCDNConfigDTO;
4
5
  constructor();
5
6
  setImgCDNConfig(imgCDNConfig: ImgCDNConfigDTO): void;
6
7
  getUrlImg(size: '100' | '200' | '400' | '800' | 'raw' | string): any;
7
8
  getAllSize(): string[];
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImgCDNService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<ImgCDNService>;
8
11
  }
@@ -1,3 +1,4 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class DomService {
2
3
  private documentEventSource;
3
4
  private documentEventDone;
@@ -7,4 +8,6 @@ export declare class DomService {
7
8
  setDocumentEventListener(): void;
8
9
  documentScroll(): import("rxjs").Observable<unknown>;
9
10
  setScrollEventListener(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<DomService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<DomService>;
10
13
  }
@@ -1,4 +1,5 @@
1
1
  import { ImgPictureDTO } from '../dto/img-manager.dto';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class ImgEventService {
3
4
  constructor();
4
5
  private imgToEditEvent;
@@ -13,4 +14,6 @@ export declare class ImgEventService {
13
14
  getImgAddedEventListner(): import("rxjs").Observable<string>;
14
15
  emitlistDisplayedChange(value: boolean): void;
15
16
  getlistDisplayedChange(): import("rxjs").Observable<boolean>;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImgEventService, never>;
18
+ static ɵprov: i0.ɵɵInjectableDeclaration<ImgEventService>;
16
19
  }
@@ -1,7 +1,8 @@
1
1
  import { HttpClient, HttpParams } from '@angular/common/http';
2
2
  import { Observable } from "rxjs";
3
- import { ParamsImgManagerDTO } from '../dto/img-manager.dto';
3
+ import { ImgPictureDTO, ParamsImgManagerDTO } from '../dto/img-manager.dto';
4
4
  import { ImgManagerDisplayConfig } from '../dto/export-dtos.api';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class ImgManagerService {
6
7
  private http;
7
8
  imgManagerRoute: string;
@@ -20,11 +21,13 @@ export declare class ImgManagerService {
20
21
  getShopImg(idFile: string): Observable<any>;
21
22
  getParams(params: ParamsImgManagerDTO): void;
22
23
  uploadFile(formData: FormData): Observable<Object>;
23
- uploadFileByUrl(url: string, fileName?: string): Observable<Object>;
24
+ uploadFileByUrl(url: string, fileName?: string): Observable<ImgPictureDTO>;
24
25
  replaceImg(imageBase64: string, id_file: string): Observable<Object>;
25
26
  changeImgName(fileName: string, id_file: string): Observable<Object>;
26
27
  removeImg(id_file: string): Observable<Object>;
27
28
  removeMultipleImg(id_array: string[]): Observable<Object>;
28
29
  getImgManagerDisplayConfig(displayName: "window" | "wizi-block" | "fiche-product" | "simple-with-button" | 'angular-fiche-product'): ImgManagerDisplayConfig;
29
30
  getAllImgManagerDisplayConfig(): ImgManagerDisplayConfig[];
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImgManagerService, never>;
32
+ static ɵprov: i0.ɵɵInjectableDeclaration<ImgManagerService>;
30
33
  }
@@ -1,6 +1,7 @@
1
1
  import { ImgPictureDTO } from '../dto/img-manager.dto';
2
2
  import { Observable } from 'rxjs';
3
3
  import { CdkDragDrop } from '@angular/cdk/drag-drop';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class ImgSelectionService {
5
6
  imgSelectedList: ImgPictureDTO[];
6
7
  multipleImgMode: boolean;
@@ -34,4 +35,6 @@ export declare class ImgSelectionService {
34
35
  * @param event
35
36
  */
36
37
  moveImgOrder(event: CdkDragDrop<string[]>): void;
38
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImgSelectionService, never>;
39
+ static ɵprov: i0.ɵɵInjectableDeclaration<ImgSelectionService>;
37
40
  }
@@ -3,6 +3,7 @@ import { Observable } from "rxjs";
3
3
  import { WzImgLibDto } from "../dto/pexels-img.dto";
4
4
  import { ImgManagerConfigService } from './config/external-config.service';
5
5
  import { TranslateService } from '@ngx-translate/core';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class PexelsService {
7
8
  private http;
8
9
  private externalConfigService;
@@ -11,12 +12,14 @@ export declare class PexelsService {
11
12
  apiKey: any;
12
13
  lang: string;
13
14
  languages: {
14
- 'fr': string;
15
- 'en': string;
16
- 'it': string;
17
- 'es': string;
15
+ fr: string;
16
+ en: string;
17
+ it: string;
18
+ es: string;
18
19
  };
19
20
  constructor(http: HttpClient, externalConfigService: ImgManagerConfigService, translateService: TranslateService);
20
21
  setLang(lang: string): void;
21
22
  searchOnPexels(toSearch: string, perPage: number, page: number): Observable<WzImgLibDto>;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<PexelsService, never>;
24
+ static ɵprov: i0.ɵɵInjectableDeclaration<PexelsService>;
22
25
  }
@@ -2,6 +2,7 @@ import { ImgManagerService } from './img-manager.service';
2
2
  import { AlertService } from './alert.service';
3
3
  import { ImgPictureDTO } from '../dto/img-manager.dto';
4
4
  import { PictureNameUpdate } from '../dto/picture-name-update.dto';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class RenamePictureService {
6
7
  private imgManager;
7
8
  private alertService;
@@ -16,4 +17,6 @@ export declare class RenamePictureService {
16
17
  private setEvents;
17
18
  private renamePicture;
18
19
  private getPictureById;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<RenamePictureService, never>;
21
+ static ɵprov: i0.ɵɵInjectableDeclaration<RenamePictureService>;
19
22
  }
@@ -1,5 +1,6 @@
1
1
  import { NwbFilterGroup, NwbFilterRoutingBuilder } from '@wizishop/ng-wizi-bulma';
2
2
  import { PaginationFilters } from '../../components/shared/pagination/pagination.component';
3
+ import * as i0 from "@angular/core";
3
4
  export interface TableFilters extends PaginationFilters {
4
5
  sort: string;
5
6
  order: boolean;
@@ -22,4 +23,6 @@ export declare class FiltersTableService {
22
23
  getSortChangeListner(): import("rxjs").Observable<any>;
23
24
  setPaginationFilters(dataTableName: string, totalItems: number, itemsPerPage: number, currentPage: number): void;
24
25
  setInitialPaginationFiltersIfNotExist(dataTableName: string, itemsPerPage: number, currentPage: number): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<FiltersTableService, never>;
27
+ static ɵprov: i0.ɵɵInjectableDeclaration<FiltersTableService>;
25
28
  }
@@ -1,3 +1,4 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class UserSettingsService {
2
3
  private userdisplayPreference;
3
4
  constructor();
@@ -8,4 +9,6 @@ export declare class UserSettingsService {
8
9
  */
9
10
  setUserDisplayPreference(value: boolean): void;
10
11
  getUserDisplayPreference(): boolean;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserSettingsService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<UserSettingsService>;
11
14
  }
@@ -9,6 +9,7 @@ import { ImgEventService } from './services/img-event.service';
9
9
  import { DomService } from './services/dom.service';
10
10
  import { stateDisplayed } from '../public-api';
11
11
  import { WiziBlockMediaDto } from './dto/wizi-block-media.dto';
12
+ import * as i0 from "@angular/core";
12
13
  export declare class WzImgManagerComponent implements OnInit {
13
14
  private imgSelectionService;
14
15
  private externalConfigService;
@@ -54,4 +55,6 @@ export declare class WzImgManagerComponent implements OnInit {
54
55
  removeBodyBottomPaddingForModule(): void;
55
56
  changeDisplayTab(): void;
56
57
  ngOnDestroy(): void;
58
+ static ɵfac: i0.ɵɵFactoryDeclaration<WzImgManagerComponent, never>;
59
+ static ɵcmp: i0.ɵɵComponentDeclaration<WzImgManagerComponent, "wz-img-manager", never, { "stateDisplayed": "stateDisplayed"; "showSelection": "showSelection"; "externalConfig": "externalConfig"; "forceToOpenCanva": "forceToOpenCanva"; "multipleImgMode": "multipleImgMode"; "showImgManagerModule": "showImgManagerModule"; }, { "imgManagerClosed": "imgManagerClosed"; }, never, never, false>;
57
60
  }
@@ -1,2 +1,58 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./wz-img-manager.component";
3
+ import * as i2 from "./components/img-tabs/img-tabs.component";
4
+ import * as i3 from "./components/img-upload/img-upload.component";
5
+ import * as i4 from "./components/pexels-lib/pexels-lib.component";
6
+ import * as i5 from "./components/images-view/mosaic-view/img-card/img-card.component";
7
+ import * as i6 from "./components/upload-list/upload-list.component";
8
+ import * as i7 from "./components/img-editor/img-editor.component";
9
+ import * as i8 from "./components/img-editor/info-section/info-section.component";
10
+ import * as i9 from "./components/canva-btn/canva-btn.component";
11
+ import * as i10 from "./components/img-selection/img-selection.component";
12
+ import * as i11 from "./components/loader/loader.component";
13
+ import * as i12 from "./components/shared/dropdown/dropdown.component";
14
+ import * as i13 from "./components/img-editor/cropper/cropper.component";
15
+ import * as i14 from "./components/images-view/images-view.component";
16
+ import * as i15 from "./components/images-view/mosaic-view/mosaic-view.component";
17
+ import * as i16 from "./components/images-view/table-view/table-view.component";
18
+ import * as i17 from "./components/shared/table/table.component";
19
+ import * as i18 from "./components/shared/input-search/input-search.component";
20
+ import * as i19 from "./components/shared/pagination/pagination.component";
21
+ import * as i20 from "./components/shared/checkbox/checkbox.component";
22
+ import * as i21 from "./components/shared/alert/alert.component";
23
+ import * as i22 from "./components/shared/pagination/page-selector/page-selector.component";
24
+ import * as i23 from "./components/shared/select/select.component";
25
+ import * as i24 from "./directives/drag-drop.directive";
26
+ import * as i25 from "./directives/loading.directive";
27
+ import * as i26 from "./directives/auto-hide.directive";
28
+ import * as i27 from "./directives/copy-to-clipboard.directive";
29
+ import * as i28 from "./directives/table/column.directive";
30
+ import * as i29 from "./directives/table/checkBoxRow.directive";
31
+ import * as i30 from "./directives/table/columnHeader.directive";
32
+ import * as i31 from "./directives/table/raw.directive";
33
+ import * as i32 from "./directives/abstract-debounce/abstract-debounce.directive";
34
+ import * as i33 from "./directives/abstract-debounce/debounce-keyup.directive";
35
+ import * as i34 from "./directives/zindex-toggle.directive";
36
+ import * as i35 from "./pipes/pagination/array-total-pages/array-pages.pipe";
37
+ import * as i36 from "./pipes/pagination/total-pages/is-last-page.pipe";
38
+ import * as i37 from "./pipes/pagination/text/custom-text.pipe";
39
+ import * as i38 from "./pipes/images/img-src.pipe";
40
+ import * as i39 from "./pipes/number-to-array.pipe";
41
+ import * as i40 from "./pipes/pagination/large-number-of-page/large-number-of-page.pipe";
42
+ import * as i41 from "./pipes/select/select-filters.pipe";
43
+ import * as i42 from "@angular/common";
44
+ import * as i43 from "@angular/common/http";
45
+ import * as i44 from "@angular/forms";
46
+ import * as i45 from "ngx-scrollbar";
47
+ import * as i46 from "ngx-scrollbar/reached-event";
48
+ import * as i47 from "@wizishop/ng-wizi-bulma";
49
+ import * as i48 from "ngx-image-cropper";
50
+ import * as i49 from "@angular/cdk/table";
51
+ import * as i50 from "@angular/cdk/drag-drop";
52
+ import * as i51 from "@ngx-translate/core";
53
+ import * as i52 from "ngx-perfect-scrollbar";
1
54
  export declare class WzImgManagerModule {
55
+ static ɵfac: i0.ɵɵFactoryDeclaration<WzImgManagerModule, never>;
56
+ static ɵmod: i0.ɵɵNgModuleDeclaration<WzImgManagerModule, [typeof i1.WzImgManagerComponent, typeof i2.ImgTabsComponent, typeof i3.ImgUploadComponent, typeof i4.PexelLibComponent, typeof i5.ImgCardComponent, typeof i6.UploadListComponent, typeof i7.ImgEditorComponent, typeof i8.EditorInfoSectionComponent, typeof i9.CanvaBtnComponent, typeof i10.ImgSelectionComponent, typeof i11.LoaderComponent, typeof i12.DropdownComponent, typeof i13.CropperComponent, typeof i14.ImagesViewComponent, typeof i15.MosaicViewComponent, typeof i16.TableViewComponent, typeof i17.TableComponent, typeof i18.InputSearchComponent, typeof i19.PaginationComponent, typeof i20.CheckboxComponent, typeof i21.AlertComponent, typeof i22.PageSelectorComponent, typeof i23.SelectComponent, typeof i24.DragDropDirective, typeof i25.LoadingDirective, typeof i26.AutoHideDirective, typeof i27.CopyClipboardDirective, typeof i28.TableColumn, typeof i29.CheckBoxRow, typeof i30.TableColumnHeader, typeof i31.TableRow, typeof i32.AbstractDebounceDirective, typeof i33.DebounceKeyupDirective, typeof i34.ZindexToggleDirective, typeof i35.PagniationArrayTotalPages, typeof i36.PagniationIsLastPage, typeof i37.PagniationText, typeof i38.ImageSrcPipe, typeof i39.NumberToArray, typeof i40.LargeNumberOfPagePipe, typeof i41.SelectFiltersPipe], [typeof i42.CommonModule, typeof i43.HttpClientModule, typeof i44.FormsModule, typeof i45.NgScrollbarModule, typeof i46.NgScrollbarReachedModule, typeof i47.NwbAllModule, typeof i48.ImageCropperModule, typeof i49.CdkTableModule, typeof i50.DragDropModule, typeof i51.TranslateModule, typeof i52.PerfectScrollbarModule], [typeof i1.WzImgManagerComponent]>;
57
+ static ɵinj: i0.ɵɵInjectorDeclaration<WzImgManagerModule>;
2
58
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wizishop/img-manager",
3
- "version": "0.2.108",
3
+ "version": "14.0.0",
4
4
  "description": "The best and the most beautiful image manager.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,37 +15,55 @@
15
15
  ],
16
16
  "author": "Geffrault Romain",
17
17
  "license": "UNLICENSED",
18
+ "dependencies": {
19
+ "tslib": "^2.0.0"
20
+ },
18
21
  "peerDependencies": {
19
- "@angular/common": "^9.0.3",
20
- "@angular/core": "^9.0.3",
21
- "@angular/animations": "~9.0.3",
22
- "@angular/cdk": "^9.2.4",
23
- "@angular/compiler": "~9.0.3",
24
- "@angular/forms": "~9.0.3",
25
- "@ngx-translate/core": "^13.0.0",
26
- "@wizishop/ng-wizi-bulma": "^9.1.4",
22
+ "@angular/animations": "~14.0.5",
23
+ "@angular/cdk": "^14.0.4",
24
+ "@angular/common": "~14.0.5",
25
+ "@angular/core": "~14.0.5",
26
+ "@angular/forms": "~14.0.5",
27
+ "@angular/platform-browser": "~14.0.5",
28
+ "@angular/platform-browser-dynamic": "~14.0.5",
29
+ "@angular/router": "~14.0.5",
30
+ "@ngx-translate/core": "^14.0.0",
31
+ "@ngx-translate/http-loader": "^7.0.0",
32
+ "@wizishop/img-manager": "^0.2.101",
33
+ "@wizishop/ng-wizi-bulma": "^14.0.0",
27
34
  "bourbon": "^7.0.0",
28
- "bulma": "^0.8.2",
35
+ "bulma": "^0.9.4",
36
+ "bulma-checkradio": "^2.1.3",
29
37
  "bulma-extensions": "^6.2.7",
30
38
  "bundle-scss": "^1.4.17",
31
- "include-media": "^1.4.9",
32
- "ngx-image-cropper": "^3.1.9",
33
- "ngx-scrollbar": "^7.2.3",
39
+ "include-media": "^1.4.10",
40
+ "ngx-image-cropper": "^6.2.1",
34
41
  "ngx-perfect-scrollbar": "^10.1.1",
35
- "rxjs": "~6.5.4",
36
- "sass-flex-mixin": "^1.0.3"
42
+ "ngx-scrollbar": "^10.0.0",
43
+ "nodemon": "^2.0.4",
44
+ "rxjs": "^7.5.5",
45
+ "sass": "^1.54.4",
46
+ "sass-flex-mixin": "^1.0.3",
47
+ "zone.js": "~0.11.4"
37
48
  },
38
- "main": "bundles/wizishop-img-manager.umd.js",
39
- "module": "fesm5/wizishop-img-manager.js",
40
- "es2015": "fesm2015/wizishop-img-manager.js",
41
- "esm5": "esm5/wizishop-img-manager.js",
42
- "esm2015": "esm2015/wizishop-img-manager.js",
43
- "fesm5": "fesm5/wizishop-img-manager.js",
44
- "fesm2015": "fesm2015/wizishop-img-manager.js",
45
- "typings": "wizishop-img-manager.d.ts",
46
- "metadata": "wizishop-img-manager.metadata.json",
47
- "sideEffects": false,
48
- "dependencies": {
49
- "tslib": "^1.10.0"
50
- }
51
- }
49
+ "module": "fesm2015/wizishop-img-manager.mjs",
50
+ "es2020": "fesm2020/wizishop-img-manager.mjs",
51
+ "esm2020": "esm2020/wizishop-img-manager.mjs",
52
+ "fesm2020": "fesm2020/wizishop-img-manager.mjs",
53
+ "fesm2015": "fesm2015/wizishop-img-manager.mjs",
54
+ "typings": "index.d.ts",
55
+ "exports": {
56
+ "./package.json": {
57
+ "default": "./package.json"
58
+ },
59
+ ".": {
60
+ "types": "./index.d.ts",
61
+ "esm2020": "./esm2020/wizishop-img-manager.mjs",
62
+ "es2020": "./fesm2020/wizishop-img-manager.mjs",
63
+ "es2015": "./fesm2015/wizishop-img-manager.mjs",
64
+ "node": "./fesm2015/wizishop-img-manager.mjs",
65
+ "default": "./fesm2020/wizishop-img-manager.mjs"
66
+ }
67
+ },
68
+ "sideEffects": false
69
+ }
Binary file